diff --git a/README.md b/README.md index 9b477f615..533ce30d2 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ pacman -S --needed git base-devel yay set `PAGER` to override the default (`less`, or `cat` if less is unavailable). Example: `yay.opt.pager = "delta"` or `export PAGER=less`. -- **yay is not asking me to edit PKGBUILDS, and I don't like the diff menu! What can I do?** +- **yay is not asking me to edit PKGBUILDs, and I don't like the diff menu! What can I do?** `yay --editmenu --diffmenu=false --save` diff --git a/cmd.go b/cmd.go index c1f5d6b71..aa3e6c1fb 100644 --- a/cmd.go +++ b/cmd.go @@ -63,7 +63,7 @@ Permanent configuration options: --aururl Set an alternative AUR URL --aurrpcurl Set an alternative URL for the AUR /rpc endpoint - --builddir Directory used to download and run PKGBUILDS + --builddir Directory used to download and run PKGBUILDs --editor Editor to use when editing PKGBUILDs --editorflags Pass arguments to editor --makepkg makepkg command to use @@ -83,17 +83,17 @@ Permanent configuration options: --searchby Search for packages using a specified field --answerclean Set a predetermined answer for the clean build menu --answerdiff Set a predetermined answer for the diff menu - --answeredit Set a predetermined answer for the edit pkgbuild menu + --answeredit Set a predetermined answer for the edit PKGBUILD menu --answerupgrade Set a predetermined answer for the upgrade menu --noanswerclean Unset the answer for the clean build menu - --noanswerdiff Unset the answer for the edit diff menu - --noansweredit Unset the answer for the edit pkgbuild menu + --noanswerdiff Unset the answer for the diff menu + --noansweredit Unset the answer for the edit PKGBUILD menu --noanswerupgrade Unset the answer for the upgrade menu - --cleanmenu Give the option to clean build PKGBUILDS + --cleanmenu Give the option to clean build PKGBUILDs --diffmenu Give the option to show diffs for build files - --editmenu Give the option to edit/view PKGBUILDS + --editmenu Give the option to edit/view PKGBUILDs --askremovemake Ask to remove makedepends after install - --askyesremovemake Ask to remove makedepends after install("Y" as default) + --askyesremovemake Ask to remove makedepends after install ("Y" as default) --removemake Remove makedepends after install --noremovemake Don't remove makedepends after install @@ -109,9 +109,9 @@ Permanent configuration options: --rebuildall Always build all AUR packages --norebuild Skip package build if in cache and up to date --rebuildtree Always build all AUR packages even if installed - --redownload Always download pkgbuilds of targets - --noredownload Skip pkgbuild download if in cache and up to date - --redownloadall Always download pkgbuilds of all AUR packages + --redownload Always download PKGBUILDs of targets + --noredownload Skip PKGBUILD download if in cache and up to date + --redownloadall Always download PKGBUILDs of all AUR packages --provides Look for matching providers when searching for packages --pgpfetch Prompt to import PGP keys from PKGBUILDs --useask Automatically resolve conflicts using pacman's ask flag @@ -125,7 +125,7 @@ show specific options (used with -P): -d --defaultconfig Print default yay configuration -g --currentconfig Print current yay configuration -s --stats Display system package statistics - -w --news Print arch news + -w --news Print Arch news yay specific options (used with -Y): -c --clean Remove unneeded dependencies (-cc to ignore optdepends) @@ -133,7 +133,7 @@ yay specific options (used with -Y): getpkgbuild specific options (used with -G): -f --force Force download for existing ABS packages - -p --print Print pkgbuild of packages`) + -p --print Print PKGBUILD of packages`) } func handleCmd(ctx context.Context, run *runtime.Runtime, diff --git a/completions/fish b/completions/fish index 0bde2f124..50609b760 100644 --- a/completions/fish +++ b/completions/fish @@ -213,16 +213,16 @@ complete -c $progname -n "not $noopt" -l answeredit -d 'Set a predetermined answ complete -c $progname -n "not $noopt" -l answerupgrade -d 'Set a predetermined answer for the upgrade menu' -x complete -c $progname -n "not $noopt" -l noanswerclean -d 'Unset the answer for the clean build menu' -f complete -c $progname -n "not $noopt" -l noanswerdiff -d 'Unset the answer for the diff menu' -f -complete -c $progname -n "not $noopt" -l noansweredit -d 'Unset the answer for the edit pkgbuild menu' -f +complete -c $progname -n "not $noopt" -l noansweredit -d 'Unset the answer for the edit PKGBUILD menu' -f complete -c $progname -n "not $noopt" -l noanswerupgrade -d 'Unset the answer for the upgrade menu' -f -complete -c $progname -n "not $noopt" -l cleanmenu -d 'Give the option to clean build PKGBUILDS' -f +complete -c $progname -n "not $noopt" -l cleanmenu -d 'Give the option to clean build PKGBUILDs' -f complete -c $progname -n "not $noopt" -l diffmenu -d 'Give the option to show diffs for build files' -f -complete -c $progname -n "not $noopt" -l editmenu -d 'Give the option to edit/view PKGBUILDS' -f +complete -c $progname -n "not $noopt" -l editmenu -d 'Give the option to edit/view PKGBUILDs' -f complete -c $progname -n "not $noopt" -l askremovemake -d 'Ask to remove make deps after install' -f -complete -c $progname -n "not $noopt" -l askyesremovemake -d 'Ask to remove make deps after install(with "Y" as default)' -f +complete -c $progname -n "not $noopt" -l askyesremovemake -d 'Ask to remove make deps after install (with "Y" as default)' -f complete -c $progname -n "not $noopt" -l removemake -d 'Remove make deps after install' -f complete -c $progname -n "not $noopt" -l noremovemake -d 'Do not remove make deps after install' -f -complete -c $progname -n "not $noopt" -l topdown -d 'Shows repository packages first and then aur' -f +complete -c $progname -n "not $noopt" -l topdown -d 'Shows repository packages first and then AUR' -f complete -c $progname -n "not $noopt" -l bottomup -d 'Shows aur packages first and then repository' -f complete -c $progname -n "not $noopt" -l singlelineresults -d 'List each search result on its own line' -f complete -c $progname -n "not $noopt" -l doublelineresults -d 'List each search result on two lines, like pacman' -f diff --git a/completions/zsh b/completions/zsh index bf4b51c25..ee866a4fc 100644 --- a/completions/zsh +++ b/completions/zsh @@ -66,17 +66,17 @@ _pacman_opts_common=( '--searchby[Search for packages using a specified field]:query' '(--noanswerclean)--answerclean[Set a predetermined answer for the clean build menu]:answer' '(--noanswerdiff)--answerdiff[Set a predetermined answer for the diff menu]:answer' - '(--noansweredit)--answeredit[Set a predetermined answer for the edit pkgbuild menu]:answer' + '(--noansweredit)--answeredit[Set a predetermined answer for the edit PKGBUILD menu]:answer' '(--noanswerupgrade)--answerupgrade[Set a predetermined answer for the upgrade menu]:answer' '(--answerclean)--noanswerclean[Unset the answer for the clean build menu]' '(--answerdiff)--noanswerdiff[Unset the answer for the diff menu]' - '(--answeredit)--noansweredit[Unset the answer for the edit pkgbuild menu]' + '(--answeredit)--noansweredit[Unset the answer for the edit PKGBUILD menu]' '(--answerupgrade)--noanswerupgrade[Unset the answer for the upgrade menu]' - '--cleanmenu[Give the option to clean build PKGBUILDS]' + '--cleanmenu[Give the option to clean build PKGBUILDs]' '--diffmenu[Give the option to show diffs for build files]' - '--editmenu[Give the option to edit/view PKGBUILDS]' + '--editmenu[Give the option to edit/view PKGBUILDs]' '(--askyesremovemake --removemake --noremovemake)--askremovemake[Ask to remove makedepends after install]' - '(--askremovemake --removemake --noremovemake)--askyesremovemake[Ask to remove makedepends after install(with "Y" as default)]' + '(--askremovemake --removemake --noremovemake)--askyesremovemake[Ask to remove makedepends after install (with "Y" as default)]' '(--askremovemake --askyesremovemake --noremovemake)--removemake[Remove makedepends after install]' "(--askremovemake --askyesremovemake --removemake)--noremovemake[Don't remove makedepends after install]" diff --git a/doc/yay.8 b/doc/yay.8 index fc897bb94..70bda6544 100644 --- a/doc/yay.8 +++ b/doc/yay.8 @@ -539,7 +539,7 @@ Overridden by \-\-builddir. .TP .B VISUAL, EDITOR When editor is not configured, use these variables to pick what editor -to use when editing PKGBUILDS. +to use when editing PKGBUILDs. .TP .B PAGER diff --git a/pkg/cmd/graph/main.go b/pkg/cmd/graph/main.go index df636113e..d6e903500 100644 --- a/pkg/cmd/graph/main.go +++ b/pkg/cmd/graph/main.go @@ -43,7 +43,7 @@ func handleCmd(logger *text.Logger) error { metadata.WithCacheFilePath( filepath.Join(cfg.BuildDir, "aur.json"))) if err != nil { - return fmt.Errorf("%s: %w", gotext.Get("failed to retrieve aur Cache"), err) + return fmt.Errorf("%s: %w", gotext.Get("failed to retrieve AUR cache"), err) } grapher := dep.NewGrapher(dbExecutor, aurCache, true, settings.NoConfirm, diff --git a/pkg/menus/menu.go b/pkg/menus/menu.go index 2d2c754a2..b64826152 100644 --- a/pkg/menus/menu.go +++ b/pkg/menus/menu.go @@ -47,7 +47,7 @@ func selectionMenu(logger *text.Logger, pkgbuildDirs map[string]string, bases [] pkgbuildNumberMenu(logger, pkgbuildDirs, bases, installed) logger.Infoln(message) - logger.Infoln(gotext.Get("%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)", text.Cyan(gotext.Get("[N]one")))) + logger.Infoln(gotext.Get("%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)", text.Cyan(gotext.Get("[N]one")))) selectInput, err := logger.GetInput(defaultAnswer, noConfirm) if err != nil { @@ -81,7 +81,7 @@ func selectionMenu(logger *text.Logger, pkgbuildDirs map[string]string, bases [] continue } - if !anyInstalled && (eOtherInclude.Contains("no") || eOtherInclude.Contains("notinstalled")) { + if !anyInstalled && (eOtherInclude.Contains("no") || eOtherInclude.Contains("notinstalled") || eOtherInclude.Contains("not")) { selected = append(selected, pkgBase) continue } diff --git a/pkg/runtime/runtime.go b/pkg/runtime/runtime.go index c10fdff3d..dba0f5002 100644 --- a/pkg/runtime/runtime.go +++ b/pkg/runtime/runtime.go @@ -94,7 +94,7 @@ func NewRuntime(cfg *settings.Configuration, cmdArgs *parser.Arguments, version metadata.WithDebugLogger(logger.Debugln), ) if errAURCache != nil { - return nil, fmt.Errorf(gotext.Get("failed to retrieve aur Cache")+": %w", errAURCache) + return nil, fmt.Errorf(gotext.Get("failed to retrieve AUR cache")+": %w", errAURCache) } aurClient, errAUR := rpc.NewClient( diff --git a/po/ca.po b/po/ca.po index 0b3bb96f6..bc9b4c278 100644 --- a/po/ca.po +++ b/po/ca.po @@ -46,7 +46,7 @@ msgid " there is nothing to do" msgstr "No hi ha res per fer." #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [T]ot [Av]orta [I]nstal·lat [No] instal·lat o (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -369,7 +369,7 @@ msgid "Packages not in AUR:" msgstr "Paquets no a l'AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Paquets per a la neteja de la construcció?" #: pkg/dep/dep_graph.go:202 @@ -619,7 +619,7 @@ msgid "failed to read config file '%s': %s" msgstr "ha fallat llegir el fitxer de configuració %s: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "ha fallat obtenir la cau de l'AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/ca_ES.po b/po/ca_ES.po index 6ba282c6d..75a702004 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -46,7 +46,7 @@ msgid " there is nothing to do" msgstr "No hi ha res per fer." #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [T]ot [Av]orta [I]nstal·lat [No] instal·lat o (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -369,7 +369,7 @@ msgid "Packages not in AUR:" msgstr "Paquets no a l'AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Paquets per a la neteja de la construcció?" #: pkg/dep/dep_graph.go:202 @@ -619,7 +619,7 @@ msgid "failed to read config file '%s': %s" msgstr "ha fallat llegir el fitxer de configuració %s: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "ha fallat obtenir la cau de l'AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/cs.po b/po/cs.po index 85ae39352..4f9cbce50 100644 --- a/po/cs.po +++ b/po/cs.po @@ -49,7 +49,7 @@ msgid " there is nothing to do" msgstr "není co dělat" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Vše [Ab]Zrušit [I]Nainstalováno [No]Nenainstalováno nebo (1 2 3, 1-3, " "^4)" @@ -372,7 +372,7 @@ msgid "Packages not in AUR:" msgstr "Balíčky mimo AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Balíčky ke cleanBuild?" #: pkg/dep/dep_graph.go:202 @@ -620,7 +620,7 @@ msgid "failed to read config file '%s': %s" msgstr "nepodařilo se přečíst konfigurační soubor '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "nepodařilo se získat aur Cache" #: pkg/upgrade/sources.go:27 diff --git a/po/da.po b/po/da.po index cb011bf5a..7513f6b73 100644 --- a/po/da.po +++ b/po/da.po @@ -51,7 +51,7 @@ msgid " there is nothing to do" msgstr "der er intet at gøre" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]lle [Ab]afbryd [I]nstalleret [No]Ikke installeret eller (1 2 3, 1-3, " "^4)" @@ -376,7 +376,7 @@ msgid "Packages not in AUR:" msgstr "Pakker er ikke i AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Hvilke pakker til cleanBuild?" #: pkg/dep/dep_graph.go:202 @@ -626,7 +626,7 @@ msgid "failed to read config file '%s': %s" msgstr "mislykkedes med at læse konfigurationsfil '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "mislykkedes med at hente aur Cache" #: pkg/upgrade/sources.go:27 diff --git a/po/da_DK.po b/po/da_DK.po index a3f0e203f..4e8fca647 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -51,7 +51,7 @@ msgid " there is nothing to do" msgstr "der er intet at gøre" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]lle [Ab]afbryd [I]nstalleret [No]Ikke installeret eller (1 2 3, 1-3, " "^4)" @@ -376,7 +376,7 @@ msgid "Packages not in AUR:" msgstr "Pakker er ikke i AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Hvilke pakker til cleanBuild?" #: pkg/dep/dep_graph.go:202 @@ -626,7 +626,7 @@ msgid "failed to read config file '%s': %s" msgstr "mislykkedes med at læse konfigurationsfil '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "mislykkedes med at hente aur Cache" #: pkg/upgrade/sources.go:27 diff --git a/po/de.po b/po/de.po index 68b2d738c..5705df497 100644 --- a/po/de.po +++ b/po/de.po @@ -60,7 +60,7 @@ msgid " there is nothing to do" msgstr " es gibt nichts zu tun" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]lle [Ab]brechen [I]nstalliert [No]nicht installiert oder (1 2 3, 1-3, " "^4)" @@ -388,7 +388,7 @@ msgid "Packages not in AUR:" msgstr "Pakete nicht im AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Pakete neu erstellen?" #: pkg/dep/dep_graph.go:202 @@ -636,7 +636,7 @@ msgid "failed to read config file '%s': %s" msgstr "Fehler beim Lesen der Konfigurationsdatei '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "Erhalten des AUR Caches ist fehlgeschlagen" #: pkg/upgrade/sources.go:27 diff --git a/po/en.po b/po/en.po index cea30451c..3eed2e46f 100644 --- a/po/en.po +++ b/po/en.po @@ -38,7 +38,7 @@ msgid " there is nothing to do" msgstr "" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" #: pkg/sync/build/installer.go:308 @@ -361,7 +361,7 @@ msgid "Packages not in AUR:" msgstr "" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "" #: pkg/dep/dep_graph.go:202 @@ -621,7 +621,7 @@ msgstr "" #: pkg/cmd/graph/main.go:46 #: pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "" #: pkg/upgrade/sources.go:27 diff --git a/po/es.po b/po/es.po index a5c7c6b51..edd355ccc 100644 --- a/po/es.po +++ b/po/es.po @@ -55,7 +55,7 @@ msgid " there is nothing to do" msgstr " no hay nada que hacer" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [A]Todos [Ab]ortar [I]nstalados [No]Instalados o (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -383,7 +383,7 @@ msgid "Packages not in AUR:" msgstr "Paquetes que no están en el AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "¿Paquetes a limpiar antes de compilar?" #: pkg/dep/dep_graph.go:202 @@ -635,7 +635,7 @@ msgid "failed to read config file '%s': %s" msgstr "no se pudo al leer archivo de configuración «%s»: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "no se pudo recuperar el aur Cache" #: pkg/upgrade/sources.go:27 diff --git a/po/eu.po b/po/eu.po index de55f01ea..c35893a06 100644 --- a/po/eu.po +++ b/po/eu.po @@ -32,7 +32,7 @@ msgid " there is nothing to do" msgstr " ez dago ezer egiteko" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s Guzti[A]k [Ab]ortatu [I]nstalatuak [No]Ez instalatuak edo (1 2 3, 1-3, ^4)" @@ -359,7 +359,7 @@ msgid "Packages not in AUR:" msgstr "" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Konpilatu aurretik garbitzeko paketeak?" #: pkg/dep/dep_graph.go:202 @@ -635,7 +635,7 @@ msgid "failed to read config file '%s': %s" msgstr "'%s' konfigurazio fitxategia irakurtzeak huts egin du: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "" #: pkg/upgrade/sources.go:27 diff --git a/po/fi.po b/po/fi.po index cf798f6fe..5fc3a9c26 100644 --- a/po/fi.po +++ b/po/fi.po @@ -45,7 +45,7 @@ msgid " there is nothing to do" msgstr "ei tehtävää" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Kaikki [Ab]Keskeytä [I]Asennettu [No]Ei asennettu tai (1 2 3, 1-3, ^4)" " " @@ -372,7 +372,7 @@ msgid "Packages not in AUR:" msgstr "Paketit joita ei löydy AUR:ista:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Paketit jotka haluat asentaa puhtaasti (cleanBuild)?" #: pkg/dep/dep_graph.go:202 @@ -622,7 +622,7 @@ msgid "failed to read config file '%s': %s" msgstr "asetustiedostoa '%s' ei voitu lukea: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "AUR-välimuistia ei voitu noutaa" #: pkg/upgrade/sources.go:27 diff --git a/po/fr.po b/po/fr.po index 70fc99b89..22cd2b42b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -52,7 +52,7 @@ msgid " there is nothing to do" msgstr " il n'y a rien à faire" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [A]Tous [Ab]Annuler [I]nstallés [No]nInstallés ou (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -381,7 +381,7 @@ msgid "Packages not in AUR:" msgstr "Paquets absents de l'AUR :" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Paquets à cleanBuild ?" #: pkg/dep/dep_graph.go:202 @@ -635,7 +635,7 @@ msgid "failed to read config file '%s': %s" msgstr "échec de la lecture du fichier de configuration '%s' : %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "échec de la récupération du cache AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/fr_FR.po b/po/fr_FR.po index f69bf29ad..f563348c9 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -53,7 +53,7 @@ msgid " there is nothing to do" msgstr " il n'y a rien à faire" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [A]Tous [Ab]Annuler [I]nstallés [No]nInstallés ou (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -382,7 +382,7 @@ msgid "Packages not in AUR:" msgstr "Paquets absents de l'AUR :" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Paquets à cleanBuild ?" #: pkg/dep/dep_graph.go:202 @@ -636,7 +636,7 @@ msgid "failed to read config file '%s': %s" msgstr "échec de la lecture du fichier de configuration '%s' : %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "échec de la récupération du cache AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/he.po b/po/he.po index 10422ec76..ac4f5bc84 100644 --- a/po/he.po +++ b/po/he.po @@ -31,7 +31,7 @@ msgid " there is nothing to do" msgstr "אין מטרות לביצוע" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]-הכול [Ab]-ביטול [I]-מותקנות [No]-לא מותקנות או (1 2 3, 1-3, ‎^4)" @@ -347,7 +347,7 @@ msgid "Packages not in AUR:" msgstr "חבילות שאינן ב־AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "חבילות לבנייה מההתחלה (cleanBuild)?" #: pkg/dep/dep_graph.go:202 @@ -611,7 +611,7 @@ msgid "failed to read config file '%s': %s" msgstr "קריאת קובץ ההגדרות ‚%s’ נכשלה: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "משיכת המטמון של ה־aur נכשלה" #: pkg/upgrade/sources.go:27 diff --git a/po/he_IL.po b/po/he_IL.po index 494e3d9da..6eb187528 100644 --- a/po/he_IL.po +++ b/po/he_IL.po @@ -31,7 +31,7 @@ msgid " there is nothing to do" msgstr "אין מטרות לביצוע" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]-הכול [Ab]-ביטול [I]-מותקנות [No]-לא מותקנות או (1 2 3, 1-3, ‎^4)" @@ -347,7 +347,7 @@ msgid "Packages not in AUR:" msgstr "חבילות שאינן ב־AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "חבילות לבנייה מההתחלה (cleanBuild)?" #: pkg/dep/dep_graph.go:202 @@ -611,7 +611,7 @@ msgid "failed to read config file '%s': %s" msgstr "קריאת קובץ ההגדרות ‚%s’ נכשלה: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "משיכת המטמון של ה־aur נכשלה" #: pkg/upgrade/sources.go:27 diff --git a/po/hu.po b/po/hu.po index 266d5d632..9d85d3833 100644 --- a/po/hu.po +++ b/po/hu.po @@ -47,7 +47,7 @@ msgid " there is nothing to do" msgstr " nincs tennivaló" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Összes [Ab]Megszakítás [I]Telepített [No]Nem telepített, vagy (1 2 3, " "1-3, ^4)" @@ -374,7 +374,7 @@ msgid "Packages not in AUR:" msgstr "A következő csomag nincs az AUR-ban:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Csomagok a tiszta összeállításhoz?" #: pkg/dep/dep_graph.go:202 @@ -626,7 +626,7 @@ msgid "failed to read config file '%s': %s" msgstr "nem sikerült olvasni a következő konfigurációs fájlt: „%s”: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "nem sikerült lekérni az AUR-gyorsítótárát" #: pkg/upgrade/sources.go:27 diff --git a/po/id.po b/po/id.po index ebb5df48a..5c60f8fcb 100644 --- a/po/id.po +++ b/po/id.po @@ -48,7 +48,7 @@ msgid " there is nothing to do" msgstr "tidak ada yang dapat dilakukan" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Semua [Ab]Batalkan [I]Terpasang [No]Belum terpasang atau (1 2 3, 1-3, " "^4)" @@ -373,7 +373,7 @@ msgid "Packages not in AUR:" msgstr "Paket yang tidak ada di AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Paket-paket di bangunBersih?" #: pkg/dep/dep_graph.go:202 @@ -623,7 +623,7 @@ msgid "failed to read config file '%s': %s" msgstr "gagal untuk membaca file konfigurasi '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "gagal mendapatkan Cache aur" #: pkg/upgrade/sources.go:27 diff --git a/po/it_IT.po b/po/it_IT.po index 77588ae64..e882335a5 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -50,7 +50,7 @@ msgid " there is nothing to do" msgstr " non c'è nulla da fare" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Tutti [Ab]Annulla [I]nstallati [No]nInstallati oppure (1 2 3, 1-3, ^4)" @@ -377,7 +377,7 @@ msgid "Packages not in AUR:" msgstr "Pacchetti non in AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Pacchetti da compilare in modo pulito?" #: pkg/dep/dep_graph.go:202 @@ -629,7 +629,7 @@ msgid "failed to read config file '%s': %s" msgstr "lettura del file di configurazione '%s' non riuscita: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "recupero della cache di AUR non riuscito" #: pkg/upgrade/sources.go:27 diff --git a/po/ja.po b/po/ja.po index 56248df86..f7d8869bc 100644 --- a/po/ja.po +++ b/po/ja.po @@ -32,7 +32,7 @@ msgid " there is nothing to do" msgstr " 何もすることがありません" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]全て [Ab]中止 [I]インストール済み [No]未インストール または (1 2 3, " "1-3, ^4)" @@ -360,7 +360,7 @@ msgid "Packages not in AUR:" msgstr "" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "パッケージをクリーンビルドしますか?" #: pkg/dep/dep_graph.go:202 @@ -636,7 +636,7 @@ msgid "failed to read config file '%s': %s" msgstr "設定ファイル '%s' の読み込みに失敗: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "" #: pkg/upgrade/sources.go:27 diff --git a/po/ko.po b/po/ko.po index df8f4a422..477b7c2bb 100644 --- a/po/ko.po +++ b/po/ko.po @@ -47,7 +47,7 @@ msgid " there is nothing to do" msgstr " 할 작업 없음" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [A]모두 [Ab]중단 [I]설치됨 [No]설치안함 / (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -366,7 +366,7 @@ msgid "Packages not in AUR:" msgstr "AUR에 없는 패키지:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "cleanBuild할 패키지는 무엇인가요?" #: pkg/dep/dep_graph.go:202 @@ -614,7 +614,7 @@ msgid "failed to read config file '%s': %s" msgstr "'%s' 구성 파일 읽기 실패함: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "AUR 캐시를 검색하지 못했습니다" #: pkg/upgrade/sources.go:27 diff --git a/po/nl.po b/po/nl.po index b590be681..2497d9e32 100644 --- a/po/nl.po +++ b/po/nl.po @@ -50,7 +50,7 @@ msgid " there is nothing to do" msgstr "er valt niets te doen" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "[A]lle [An]nuleren [G]eïnstalleerd [N]iet geïnstalleerd of (1 2 3, 1-3, ^4)" @@ -378,7 +378,7 @@ msgid "Packages not in AUR:" msgstr "Pakketten niet in AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Te herbouwen pakketten?" #: pkg/dep/dep_graph.go:202 @@ -627,7 +627,7 @@ msgid "failed to read config file '%s': %s" msgstr "‘%s’ kan niet worden uitgelezen: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "De AUR-cache kan niet worden opgehaald" #: pkg/upgrade/sources.go:27 diff --git a/po/pl.po b/po/pl.po index 25b1d0128..1a8b40e9f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -56,7 +56,7 @@ msgid " there is nothing to do" msgstr " nic nie pozostało do zrobienia" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Wszystkie [Ab]Anuluj [I]Już zainstalowane [No]Nie zainstalowane lub (1" " 2 3, 1-3, ^4)" @@ -384,7 +384,7 @@ msgid "Packages not in AUR:" msgstr "Pakiety nie występujace w AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Paczki do zbudowania od zera?" #: pkg/dep/dep_graph.go:202 @@ -632,7 +632,7 @@ msgid "failed to read config file '%s': %s" msgstr "nie udało się odczytać pliku konfiguracyjnego '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "Nie udało się pozyskać pamięci podręcznej AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/pl_PL.po b/po/pl_PL.po index 69be7c8da..63aa20da3 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -54,7 +54,7 @@ msgid " there is nothing to do" msgstr " nic nie pozostało do zrobienia" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Wszystkie [Ab]Anuluj [I]Zainstalowane [No]Nie zainstalowane lub (1 2 " "3, 1-3, ^4)" @@ -382,7 +382,7 @@ msgid "Packages not in AUR:" msgstr "Pakiety nie występujace w AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Paczki do zbudowania od zera?" #: pkg/dep/dep_graph.go:202 @@ -630,7 +630,7 @@ msgid "failed to read config file '%s': %s" msgstr "nie udało się odczytać pliku konfiguracyjnego '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "Nie udało się pozyskać pamięci podręcznej AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/pt.po b/po/pt.po index 8b2e10124..7a4616c2d 100644 --- a/po/pt.po +++ b/po/pt.po @@ -49,7 +49,7 @@ msgid " there is nothing to do" msgstr " não há nada a fazer" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Todos [Ab]ortar [I]nstalado [No]Não instalado or (1 2 3, 1-3, ^4)" @@ -370,7 +370,7 @@ msgid "Packages not in AUR:" msgstr "Pacotes que não estão no AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Pacotes a compilar a limpo?" #: pkg/dep/dep_graph.go:202 @@ -619,7 +619,7 @@ msgid "failed to read config file '%s': %s" msgstr "falha ao ler ficheiro de configuração '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "falha ao recuperar cache aur" #: pkg/upgrade/sources.go:27 diff --git a/po/pt_BR.po b/po/pt_BR.po index 154000438..dedddefda 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -54,7 +54,7 @@ msgid " there is nothing to do" msgstr " não há nada a ser feito" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Todos [Ab]Abortar [I]Instalados [No]Não Instalados ou (1 2 3, 1-3, ^4)" @@ -380,7 +380,7 @@ msgid "Packages not in AUR:" msgstr "Pacotes que não estão no AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Limpar e construir quais pacotes?" #: pkg/dep/dep_graph.go:202 @@ -628,7 +628,7 @@ msgid "failed to read config file '%s': %s" msgstr "falha ao ler o arquivo de configuração '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "falha ao recuperar cache aur" #: pkg/upgrade/sources.go:27 diff --git a/po/ru.po b/po/ru.po index 51d360840..311abe5cb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -55,7 +55,7 @@ msgid " there is nothing to do" msgstr "делать больше нечего" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [В]се [От]менить [У]становленные [Не]установленные или (1 2 3, 1-3, ^4)" @@ -379,7 +379,7 @@ msgid "Packages not in AUR:" msgstr "Пакет не найден в AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Пакеты для чистой сборки?" #: pkg/dep/dep_graph.go:202 @@ -627,7 +627,7 @@ msgid "failed to read config file '%s': %s" msgstr "не удалось прочитать файл конфигурации '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "не удалось получить кэш AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/ru_RU.po b/po/ru_RU.po index 0c30188dd..cb99c957d 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -60,7 +60,7 @@ msgid " there is nothing to do" msgstr "делать нечего" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Все [Ab]Прервать [I]Установленные [No]Неустановленные или (1 2 3, 1-3," " ^4)" @@ -385,7 +385,7 @@ msgid "Packages not in AUR:" msgstr "Пакет не найден в AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Пакеты, для которых требуется очистить кэш сборки?" #: pkg/dep/dep_graph.go:202 @@ -633,7 +633,7 @@ msgid "failed to read config file '%s': %s" msgstr "ошибка чтения файла конфигурации '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "не удалось получить кэш AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/sk.po b/po/sk.po index 942f98a7d..59c0407e2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -48,7 +48,7 @@ msgid " there is nothing to do" msgstr "nie je čo robiť" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Všetko [Ab]Zrušiť [I]Nainštalované [No]Nenainštalované alebo (1 2 3, " "1-3, ^4)" @@ -370,7 +370,7 @@ msgid "Packages not in AUR:" msgstr "Balíčky, ktoré nie sú v AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Balíčky, ktoré vybudovať nanovo?" #: pkg/dep/dep_graph.go:202 @@ -621,7 +621,7 @@ msgid "failed to read config file '%s': %s" msgstr "nepodarilo sa prečítať konfiguračný súbor '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "nepodarilo sa získať aur cache" #: pkg/upgrade/sources.go:27 diff --git a/po/sv.po b/po/sv.po index 5b3e4207e..6bcde4271 100644 --- a/po/sv.po +++ b/po/sv.po @@ -48,7 +48,7 @@ msgid " there is nothing to do" msgstr " inget behöver göras" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]lla [Ab]Avbryt [I]nstallerade [No]EjInstallerade eller (1 2 3, 1-3, " "^4)" @@ -372,7 +372,7 @@ msgid "Packages not in AUR:" msgstr "Paket som inte finns i AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Bygg paket rent (cleanBuild)?" #: pkg/dep/dep_graph.go:202 @@ -622,7 +622,7 @@ msgid "failed to read config file '%s': %s" msgstr "misslyckades med att läsa konfigurationsfilen '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "misslyckades med att hämta aur Cache" #: pkg/upgrade/sources.go:27 diff --git a/po/tr.po b/po/tr.po index 7a9f1b8d2..19acb4ce3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -33,7 +33,7 @@ msgid " there is nothing to do" msgstr "yapılacak bir şey yok" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [A]Hepsi [Ab]İptal [I]Kurulmuş [No]Kurulmamış veya (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -354,7 +354,7 @@ msgid "Packages not in AUR:" msgstr "AUR'da bulunmayan paketler:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "cleanBuild yapılacak paketler?" #: pkg/dep/dep_graph.go:202 @@ -618,7 +618,7 @@ msgid "failed to read config file '%s': %s" msgstr "'%s' yapılandırma dosyası okunurken hata: %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "aur Cache alınamadı" #: pkg/upgrade/sources.go:27 diff --git a/po/uk.po b/po/uk.po index abab64eb7..3cf552501 100644 --- a/po/uk.po +++ b/po/uk.po @@ -50,7 +50,7 @@ msgid " there is nothing to do" msgstr "тут нічого робити" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A]Всі [Ab]Скасувати [I]Встановлені [No]Невстановлені чи (1 2 3, 1-3, ^4)" @@ -369,7 +369,7 @@ msgid "Packages not in AUR:" msgstr "Пакети не в AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Пакунки для чистої збірки?" #: pkg/dep/dep_graph.go:202 @@ -619,7 +619,7 @@ msgid "failed to read config file '%s': %s" msgstr "не вдалося прочитати конфігураційний файл '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "не вдалося отримати кеш AUR" #: pkg/upgrade/sources.go:27 diff --git a/po/vi.po b/po/vi.po index 7d41daffc..1ccc9f7c3 100644 --- a/po/vi.po +++ b/po/vi.po @@ -50,7 +50,7 @@ msgid " there is nothing to do" msgstr "không có tác vụ cần làm" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "" "%s [A] Tất cả [Ab] Hủy [I] Đã được cài đặt [No] Chưa được cài đặt hoặc (1" " 2 3, 1-3, ^4)" @@ -370,7 +370,7 @@ msgid "Packages not in AUR:" msgstr "Gói không ở trong AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Những gói để chạy cleanBuild (xây dựng từ nguồn)?" #: pkg/dep/dep_graph.go:202 @@ -618,7 +618,7 @@ msgid "failed to read config file '%s': %s" msgstr "thất bại khi đọc tệp cài đặt '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "tải kho nhớ AUR thất bại" #: pkg/upgrade/sources.go:27 diff --git a/po/vi_VN.po b/po/vi_VN.po index 3608358cf..9cc9d09d3 100644 --- a/po/vi_VN.po +++ b/po/vi_VN.po @@ -50,7 +50,7 @@ msgid " there is nothing to do" msgstr "không còn gì " #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [A] Tất cả [Ab] Hủy [I] Đã cài [No] Chưa cài hoặc (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -368,7 +368,7 @@ msgid "Packages not in AUR:" msgstr "Gói không ở trong AUR:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "Những gói để chạy cleanBuild?" #: pkg/dep/dep_graph.go:202 @@ -616,7 +616,7 @@ msgid "failed to read config file '%s': %s" msgstr "thất bại khi đọc tệp cài đặt '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "tải kho nhớ AUR thất bại" #: pkg/upgrade/sources.go:27 diff --git a/po/zh_CN.po b/po/zh_CN.po index 049c03e55..e34e5620e 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -56,7 +56,7 @@ msgid " there is nothing to do" msgstr " 今日无事可做" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [A]全部 [Ab]中止 [I]已安装 [No]未安装 或 (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -375,7 +375,7 @@ msgid "Packages not in AUR:" msgstr "不在 AUR 中的软件包:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "清理哪些包的构建文件?" #: pkg/dep/dep_graph.go:202 @@ -623,7 +623,7 @@ msgid "failed to read config file '%s': %s" msgstr "无法读取配置文件 '%s': %s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "无法获取 AUR 缓存" #: pkg/upgrade/sources.go:27 diff --git a/po/zh_TW.po b/po/zh_TW.po index ebeef86ef..4c643b33d 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -50,7 +50,7 @@ msgid " there is nothing to do" msgstr " 無事可做" #: pkg/menus/menu.go:49 -msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)" +msgid "%s [A]ll [Ab]ort [I]nstalled [No]t Installed or (1 2 3, 1-3, ^4)" msgstr "%s [A]全部 [Ab]中止 [I]已安裝 [No]未安裝 或 (1 2 3, 1-3, ^4)" #: pkg/sync/build/installer.go:308 @@ -369,7 +369,7 @@ msgid "Packages not in AUR:" msgstr "不在 AUR 裡的套件包:" #: pkg/menus/clean_menu.go:54 -msgid "Packages to cleanBuild?" +msgid "Packages to clean build?" msgstr "清理哪些套件包的編譯檔案?" #: pkg/dep/dep_graph.go:202 @@ -617,7 +617,7 @@ msgid "failed to read config file '%s': %s" msgstr "無法讀取設定檔案 '%s':%s" #: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73 -msgid "failed to retrieve aur Cache" +msgid "failed to retrieve AUR cache" msgstr "無法取得 AUR 快取" #: pkg/upgrade/sources.go:27