From mboxrd@z Thu Jan 1 00:00:00 1970 From: Justus Winter Subject: [PATCH] gnu: Add genometools. Date: Sun, 14 Feb 2016 18:49:30 +0100 Message-ID: <1455472171-7237-1-git-send-email-justus@gnupg.org> References: <20160214154710.GA8633@debian> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40293) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aV0oB-00075g-Bb for guix-devel@gnu.org; Sun, 14 Feb 2016 12:55:07 -0500 Received: from cryptobitch.de ([88.198.7.68]:34465 helo=mail.cryptobitch.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aV0o5-00019n-2B for guix-devel@gnu.org; Sun, 14 Feb 2016 12:50:07 -0500 Received: from mail.jade-hamburg.de (unknown [85.183.43.52]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.cryptobitch.de (Postfix) with ESMTPSA id 4BA8C99752D for ; Sun, 14 Feb 2016 18:49:51 +0100 (CET) In-Reply-To: <20160214154710.GA8633@debian> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu-system.am (dist_patch_DATA): Add new patch. * gnu/packages/bioinformatics.scm (genometools): New variable. * gnu/packages/patches/genometools-fix-testsuite.patch: New file. --- gnu-system.am | 1 + gnu/packages/bioinformatics.scm | 44 + .../patches/genometools-fix-testsuite.patch | 18 + po/guix/cs.po | 2081 ++- po/guix/da.po | 998 +- po/guix/de.po | 960 +- po/guix/eo.po | 1757 ++- po/guix/fr.po | 2125 +++- po/guix/hu.po | 2064 ++- po/guix/pl.po | 902 +- po/guix/pt_BR.po | 2156 +++- po/guix/sr.po | 2621 +++- po/guix/vi.po | 1886 ++- po/packages/da.po | 5777 +++++---- po/packages/de.po | 11718 +++++++++++++= +++- po/packages/eo.po | 12092 +++++++++++++= +++-- po/packages/fr.po | 12598 +++++++++++++= ++++-- po/packages/hu.po | 11644 +++++++++++++= ++-- po/packages/pl.po | 5761 +++++---- po/packages/pt_BR.po | 11595 +++++++++++++= +++- po/packages/sr.po | 11759 +++++++++++++= +++- po/packages/vi.po | 11490 +++++++++++++= +++- 22 files changed, 99064 insertions(+), 12983 deletions(-) create mode 100644 gnu/packages/patches/genometools-fix-testsuite.patch diff --git a/gnu-system.am b/gnu-system.am index fd9795e..a03d4a5 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -479,6 +479,7 @@ dist_patch_DATA =3D \ gnu/packages/patches/gcc-cross-environment-variables.patch \ gnu/packages/patches/gcc-libvtv-runpath.patch \ gnu/packages/patches/gcc-5.0-libvtv-runpath.patch \ + gnu/packages/patches/genometools-fix-testsuite.patch \ gnu/packages/patches/geoclue-config.patch \ gnu/packages/patches/ghostscript-CVE-2015-3228.patch \ gnu/packages/patches/ghostscript-runpath.patch \ diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatic= s.scm index 74761c0..36af792 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -3,6 +3,7 @@ ;;; Copyright =C2=A9 2015, 2016 Ben Woodcroft ;;; Copyright =C2=A9 2015 Pjotr Prins ;;; Copyright =C2=A9 2015 Andreas Enge +;;; Copyright =C2=A9 2016 Justus Winter ;;; ;;; This file is part of GNU Guix. ;;; @@ -42,6 +43,8 @@ #:use-module (gnu packages file) #:use-module (gnu packages gawk) #:use-module (gnu packages gcc) + #:use-module (gnu packages glib) + #:use-module (gnu packages gtk) #:use-module (gnu packages java) #:use-module (gnu packages linux) #:use-module (gnu packages machine-learning) @@ -1610,6 +1613,47 @@ the sequence of each record but can also be told t= o look in the header, comment or quality sections.") (license license:expat)))) =20 +(define-public genometools + (package + (name "genometools") + (version "1.5.8") + (source (origin + (method url-fetch) + (uri (string-append "http://genometools.org/pub/genometools-= " + version + ".tar.gz")) + (sha256 + (base32 + "1sq60y8blnl19229siprhz9dv5jzk42v0ihalncrdb1vvzklr1n1")) + (patches (list + ;; This patch is already merged upstream, so it + ;; can be dropped with the next release. + (search-patch "genometools-fix-testsuite.patch")))= )) + (build-system gnu-build-system) + (arguments + '(#:make-flags (list "CC=3Dgcc" + (string-append "prefix=3D" + (assoc-ref %outputs "out"))) + #:test-target "test" + #:phases (modify-phases %standard-phases + (delete 'configure)))) + (inputs `(("ruby" ,ruby) + ("python-2" ,python-2) + ("cairo" ,cairo) + ("pango" ,pango) + ("glib" ,glib))) + (native-inputs `(("pkg-config" ,pkg-config))) + (synopsis "Versatile genome analysis software") + (description + "The GenomeTools genome analysis system is a large collection of +bioinformatics tools (in the realm of genome informatics). It offers va= rious +matching and filtering algorithms, an assembler, conversion between popu= lar +file formats, as well as AnnotationSketch, a drawing library for genomic +annotations. The functionality is available as a multi-purpose binary a= s well +as a library.") + (home-page "http://www.genometools.org/") + (license license:isc))) + (define-public grit (package (name "grit") diff --git a/gnu/packages/patches/genometools-fix-testsuite.patch b/gnu/p= ackages/patches/genometools-fix-testsuite.patch new file mode 100644 index 0000000..e898900 --- /dev/null +++ b/gnu/packages/patches/genometools-fix-testsuite.patch @@ -0,0 +1,18 @@ +diff --git a/testsuite/testsuite.rb b/testsuite/testsuite.rb +index fcda4a8..f5e3906 100755 +--- a/testsuite/testsuite.rb ++++ b/testsuite/testsuite.rb +@@ -127,9 +127,10 @@ def with_environment(variables=3D{}) + end +=20 + def python_tests_runnable? +- if `which python`.empty? then +- return false +- end ++ return false unless ++ ENV['PATH'].split(File::PATH_SEPARATOR).any? do |directory| ++ File.executable?(File.join(directory, "python")) ++ end + require "open3" + runline =3D "python #{$gtpython}/gt/dlload.py" + with_environment({"PYTHONPATH" =3D> $gtpython, \ diff --git a/po/guix/cs.po b/po/guix/cs.po index b744dc4..41e0291 100644 --- a/po/guix/cs.po +++ b/po/guix/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.7-pre1\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-07-13 17:06+0200\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2014-07-26 18:06+0200\n" "Last-Translator: Pavel Fric \n" "Language-Team: Czech \n" @@ -18,37 +18,166 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Lokalize 1.5\n" =20 -#: gnu/packages.scm:95 +#: gnu/packages.scm:76 +#, fuzzy, scheme-format +msgid "~a: patch not found" +msgstr "~a: Bal=C3=AD=C4=8Dek nenalezen~%" + +#: gnu/packages.scm:87 +#, scheme-format +msgid "could not find bootstrap binary '~a' for system '~a'" +msgstr "" + +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "Nelze p=C5=99istupovat k =C2=BB~a=C2=AB: ~a~%" =20 -#: guix/scripts/build.scm:54 guix/scripts/package.scm:349 +#: gnu/packages.scm:327 +#, scheme-format +msgid "looking for the latest release of GNU ~a..." +msgstr "Hled=C3=A1 se posledn=C3=AD vyd=C3=A1n=C3=AD GNU ~a =E2=80=A6" + +#: gnu/packages.scm:334 +#, scheme-format +msgid "~a: note: using ~a but ~a is available upstream~%" +msgstr "" + +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "" =20 -#: guix/scripts/build.scm:55 guix/scripts/package.scm:351 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "" =20 -#: guix/scripts/build.scm:61 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: Bal=C3=AD=C4=8Dek nenalezen pro verzi ~a~%" =20 -#: guix/scripts/build.scm:63 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: Nezn=C3=A1m=C3=BD bal=C3=AD=C4=8Dek~%" =20 -#: guix/scripts/build.scm:86 +#: gnu/packages.scm:381 +#, scheme-format +msgid "package `~a' lacks output `~a'~%" +msgstr "" + +#: gnu/packages.scm:398 +#, scheme-format +msgid "~a: package not found~%" +msgstr "~a: Bal=C3=AD=C4=8Dek nenalezen~%" + +#: gnu/services.scm:527 +#, scheme-format +msgid "no target of type '~a' for service ~s" +msgstr "" + +#: gnu/services.scm:538 gnu/services.scm:599 +#, scheme-format +msgid "more than one target service of type '~a'" +msgstr "" + +#: gnu/services.scm:589 +#, scheme-format +msgid "service of type '~a' not found" +msgstr "" + +#: gnu/system.scm:545 +#, scheme-format +msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" +msgstr "" + +#: gnu/system.scm:561 +#, scheme-format +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" + +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: Neplatn=C3=A9 =C4=8D=C3=ADslo~%" + +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "Nerozpoznan=C3=A9 spou=C5=A1t=C4=9Bc=C3=AD parametry pro =C2=BB~= a=C2=AB~%" + +#: gnu/services/shepherd.scm:166 +#, scheme-format +msgid "service '~a' provided more than once" +msgstr "" + +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + +#: gnu/system/shadow.scm:213 +#, scheme-format +msgid "supplementary group '~a' of user '~a' is undeclared" +msgstr "" + +#: gnu/system/shadow.scm:223 +#, scheme-format +msgid "primary group '~a' of user '~a' is undeclared" +msgstr "" + +#: guix/scripts.scm:52 +#, scheme-format +msgid "invalid argument: ~a~%" +msgstr "Neplatn=C3=BD argument: ~a~%" + +#: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 +#: guix/scripts/publish.scm:355 +#, scheme-format +msgid "~A: unrecognized option~%" +msgstr "~A: Nerozpoznan=C3=A1 volba~%" + +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "Nepoda=C5=99ilo se vytvo=C5=99it GC root `~a': ~a~%" =20 -#: guix/scripts/build.scm:123 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "Neplatn=C3=A1 hodnota pam=C4=9Bti: ~a~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 +msgid "" +"\n" +" -L, --load-path=3DDIR prepend DIR to the package module search pat= h" +msgstr "" + +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" @@ -56,120 +185,171 @@ msgstr "" "\n" " -K, --keep-failed Zachovat sestavovac=C3=AD strom nezda=C5=99en=C3= =BDch sestaven=C3=AD" =20 -#: guix/scripts/build.scm:125 +#: guix/scripts/build.scm:286 +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" msgstr "" =20 -#: guix/scripts/build.scm:127 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" msgstr "" =20 -#: guix/scripts/build.scm:129 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" msgstr "" =20 -#: guix/scripts/build.scm:131 +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" fetch substitute from URLS if they are authori= zed" +msgstr "" + +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" msgstr "" =20 -#: guix/scripts/build.scm:133 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" " mark the build as failed after SECONDS of sile= nce" msgstr "" =20 -#: guix/scripts/build.scm:136 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" msgstr "" =20 -#: guix/scripts/build.scm:138 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" msgstr "" =20 -#: guix/scripts/build.scm:140 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" msgstr "" =20 -#: guix/scripts/build.scm:206 -#, scheme-format -msgid "~a: not a number~%" -msgstr "~a: Nen=C3=AD =C4=8D=C3=ADslo~%" +#: guix/scripts/build.scm:310 +msgid "" +"\n" +" -M, --max-jobs=3DN allow at most N build jobs" +msgstr "" + +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 +#, fuzzy, scheme-format +msgid "not a number: '~a' option argument: ~a~%" +msgstr "Nespr=C3=A1vn=C3=BD po=C4=8Det argument=C5=AF~%" =20 -#: guix/scripts/build.scm:223 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" msgstr "" =20 -#: guix/scripts/build.scm:225 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" msgstr "" =20 -#: guix/scripts/build.scm:227 +#: guix/scripts/build.scm:441 +msgid "" +"\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" +" FILE evaluates to" +msgstr "" + +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" msgstr "" =20 -#: guix/scripts/build.scm:229 +#: guix/scripts/build.scm:446 +msgid "" +"\n" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" +" of \"package\", \"all\" (default), or \"transi= tive\"" +msgstr "" + +#: guix/scripts/build.scm:449 msgid "" "\n" " -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" msgstr "" =20 -#: guix/scripts/build.scm:231 +#: guix/scripts/build.scm:451 msgid "" "\n" " --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" msgstr "" =20 -#: guix/scripts/build.scm:233 +#: guix/scripts/build.scm:453 msgid "" "\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" +" --no-grafts do not graft packages" msgstr "" =20 -#: guix/scripts/build.scm:236 +#: guix/scripts/build.scm:455 msgid "" "\n" " -d, --derivations return the derivation paths of the given packa= ges" msgstr "" =20 -#: guix/scripts/build.scm:238 +#: guix/scripts/build.scm:457 +msgid "" +"\n" +" --check rebuild items to check for non-determinism iss= ues" +msgstr "" + +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" =20 -#: guix/scripts/build.scm:241 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" msgstr "" =20 -#: guix/scripts/build.scm:246 guix/scripts/download.scm:53 -#: guix/scripts/package.scm:523 guix/scripts/gc.scm:58 -#: guix/scripts/hash.scm:55 guix/scripts/pull.scm:82 -#: guix/scripts/substitute-binary.scm:564 guix/scripts/system.scm:334 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 +#: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -177,10 +357,15 @@ msgstr "" "\n" " -h, --help Uk=C3=A1zat tuto n=C3=A1pov=C4=9Bdu a ukon=C4=8D= it" =20 -#: guix/scripts/build.scm:248 guix/scripts/download.scm:55 -#: guix/scripts/package.scm:525 guix/scripts/gc.scm:60 -#: guix/scripts/hash.scm:57 guix/scripts/pull.scm:84 -#: guix/scripts/substitute-binary.scm:566 guix/scripts/system.scm:336 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 +#: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -188,24 +373,24 @@ msgstr "" "\n" " -V, --version Uk=C3=A1zat informace o verzi a ukon=C4=8Dit" =20 -#: guix/scripts/build.scm:368 +#: guix/scripts/build.scm:498 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" +msgid "" +"invalid argument: '~a' option argument: ~a, ~\n" +"must be one of 'package', 'all', or 'transitive'~%" msgstr "" =20 -#: guix/scripts/build.scm:397 guix/scripts/download.scm:96 -#: guix/scripts/package.scm:756 guix/scripts/gc.scm:122 -#: guix/scripts/pull.scm:115 guix/scripts/system.scm:386 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "~A: unrecognized option~%" -msgstr "~A: Nerozpoznan=C3=A1 volba~%" +msgid "~s: not something we can build~%" +msgstr "" =20 -#: guix/scripts/build.scm:425 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "=C5=BD=C3=A1dn=C3=BD z=C3=A1znam o sestaven=C3=AD pro =C2=BB~a=C2= =AB~%" =20 -#: guix/scripts/download.scm:44 +#: guix/scripts/download.scm:45 msgid "" "Usage: guix download [OPTION] URL\n" "Download the file at URL, add it to the store, and print its store path= \n" @@ -215,307 +400,343 @@ msgid "" "('hex' and 'hexadecimal' can be used as well).\n" msgstr "" =20 -#: guix/scripts/download.scm:50 guix/scripts/hash.scm:50 +#: guix/scripts/download.scm:51 guix/scripts/hash.scm:51 msgid "" "\n" " -f, --format=3DFMT write the hash in the given format" msgstr "" =20 -#: guix/scripts/download.scm:73 guix/scripts/hash.scm:75 +#: guix/scripts/download.scm:74 guix/scripts/hash.scm:76 #, scheme-format msgid "unsupported hash format: ~a~%" msgstr "Nepodporovan=C3=BD form=C3=A1t kontroln=C3=ADho sou=C4=8Dtu: ~a~= %" =20 -#: guix/scripts/download.scm:106 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 +#, scheme-format +msgid "~A: extraneous argument~%" +msgstr "" + +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" +msgstr "~a: Sta=C5=BEen=C3=AD se nezda=C5=99ilo~%" + +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "~a: URI~% se nepoda=C5=99ilo zpracovat" =20 -#: guix/scripts/download.scm:117 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "~a: Sta=C5=BEen=C3=AD se nezda=C5=99ilo~%" =20 -#: guix/scripts/package.scm:88 -#, scheme-format -msgid "failed to build the empty profile~%" -msgstr "Nepoda=C5=99ilo se vytvo=C5=99it pr=C3=A1zdn=C3=BD profil~%" - -#: guix/scripts/package.scm:97 +#: guix/scripts/package.scm:102 #, scheme-format -msgid "switching from generation ~a to ~a~%" +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" msgstr "" =20 -#: guix/scripts/package.scm:108 guix/scripts/package.scm:866 -#: guix/scripts/package.scm:978 -#, scheme-format -msgid "profile '~a' does not exist~%" -msgstr "Profil =C2=BB~a=C2=AB neexistuje~%" - -#: guix/scripts/package.scm:112 +#: guix/scripts/package.scm:124 #, scheme-format -msgid "nothing to do: already at the empty profile~%" +msgid "error: while creating directory `~a': ~a~%" msgstr "" =20 -#: guix/scripts/package.scm:197 +#: guix/scripts/package.scm:128 #, scheme-format -msgid "The following package would be removed:~%~{~a~%~}~%" +msgid "Please create the `~a' directory, with you as the owner.~%" msgstr "" =20 -#: guix/scripts/package.scm:202 +#: guix/scripts/package.scm:135 #, scheme-format -msgid "The following package will be removed:~%~{~a~%~}~%" +msgid "error: directory `~a' is not owned by you~%" msgstr "" =20 -#: guix/scripts/package.scm:214 +#: guix/scripts/package.scm:138 #, scheme-format -msgid "The following package would be installed:~%~{~a~%~}~%" +msgid "Please change the owner of `~a' to user ~s.~%" msgstr "" =20 -#: guix/scripts/package.scm:219 +#: guix/scripts/package.scm:173 #, scheme-format -msgid "The following package will be installed:~%~{~a~%~}~%" -msgstr "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4=8D= ek:~%~{~a~%~}~%" +msgid "not removing generation ~a, which is current~%" +msgstr "" =20 -#: guix/scripts/package.scm:339 +#: guix/scripts/package.scm:180 #, scheme-format -msgid "package `~a' lacks output `~a'~%" +msgid "no matching generation~%" msgstr "" =20 -#: guix/scripts/package.scm:356 +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format -msgid "~a: package not found~%" -msgstr "~a: Bal=C3=AD=C4=8Dek nenalezen~%" +msgid "invalid syntax: ~a~%" +msgstr "Neplatn=C3=A1 skladba: ~a~%" =20 -#: guix/scripts/package.scm:391 +#: guix/scripts/package.scm:208 #, scheme-format -msgid "looking for the latest release of GNU ~a..." -msgstr "Hled=C3=A1 se posledn=C3=AD vyd=C3=A1n=C3=AD GNU ~a =E2=80=A6" +msgid "nothing to be done~%" +msgstr "Nic k d=C4=9Bl=C3=A1n=C3=AD~%" =20 -#: guix/scripts/package.scm:395 -#, scheme-format -msgid "~a: note: using ~a but ~a is available upstream~%" -msgstr "" +#: guix/scripts/package.scm:222 +#, fuzzy, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "~a bal=C3=AD=C4=8Dek v profilu~%" +msgstr[1] "~a bal=C3=AD=C4=8Dek v profilu~%" =20 -#: guix/scripts/package.scm:467 +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" msgstr "" =20 -#: guix/scripts/package.scm:483 +#: guix/scripts/package.scm:325 msgid "" -"Usage: guix package [OPTION]... PACKAGES...\n" -"Install, remove, or upgrade PACKAGES in a single transaction.\n" +"Usage: guix package [OPTION]...\n" +"Install, remove, or upgrade packages in a single transaction.\n" msgstr "" =20 -#: guix/scripts/package.scm:485 +#: guix/scripts/package.scm:327 +#, fuzzy msgid "" "\n" -" -i, --install=3DPACKAGE install PACKAGE" +" -i, --install PACKAGE ...\n" +" install PACKAGEs" msgstr "" "\n" " -i, --install=3DPAKET Instalovat BAL=C3=8D=C4=8CEK" =20 -#: guix/scripts/package.scm:487 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" " install the package EXP evaluates to" msgstr "" =20 -#: guix/scripts/package.scm:490 +#: guix/scripts/package.scm:333 +msgid "" +"\n" +" -f, --install-from-file=3DFILE\n" +" install the package that the code within FILE\= n" +" evaluates to" +msgstr "" + +#: guix/scripts/package.scm:337 +#, fuzzy msgid "" "\n" -" -r, --remove=3DPACKAGE remove PACKAGE" +" -r, --remove PACKAGE ...\n" +" remove PACKAGEs" msgstr "" "\n" " -r, --remove=3DPAKET Odstranit BAL=C3=8D=C4=8CEK" =20 -#: guix/scripts/package.scm:492 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:342 +msgid "" +"\n" +" -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" +" from FILE" +msgstr "" + +#: guix/scripts/package.scm:345 +msgid "" +"\n" +" --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" +msgstr "" + +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" =20 -#: guix/scripts/package.scm:496 +#: guix/scripts/package.scm:349 msgid "" "\n" -" --search-paths display needed environment variable definition= s" +" --search-paths[=3DKIND]\n" +" display needed environment variable definition= s" msgstr "" =20 -#: guix/scripts/package.scm:498 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" " list generations matching PATTERN" msgstr "" =20 -#: guix/scripts/package.scm:501 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" " delete generations matching PATTERN" msgstr "" =20 -#: guix/scripts/package.scm:504 +#: guix/scripts/package.scm:358 +msgid "" +"\n" +" -S, --switch-generation=3DPATTERN\n" +" switch to a generation matching PATTERN" +msgstr "" + +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" msgstr "" =20 -#: guix/scripts/package.scm:507 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" =20 -#: guix/scripts/package.scm:509 guix/scripts/pull.scm:75 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" msgstr "" =20 -#: guix/scripts/package.scm:512 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" msgstr "" =20 -#: guix/scripts/package.scm:514 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" " list installed packages matching REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:517 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" " list available packages matching REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:760 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "" - -#: guix/scripts/package.scm:775 -#, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "" - -#: guix/scripts/package.scm:797 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "" - -#: guix/scripts/package.scm:801 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" +#: guix/scripts/package.scm:377 +#, fuzzy +msgid "" +"\n" +" --show=3DPACKAGE show details about PACKAGE" msgstr "" +"\n" +" -i, --install=3DPAKET Instalovat BAL=C3=8D=C4=8CEK" =20 -#: guix/scripts/package.scm:808 +#: guix/scripts/package.scm:472 #, scheme-format -msgid "error: directory `~a' is not owned by you~%" +msgid "~a: unsupported kind of search path~%" msgstr "" =20 -#: guix/scripts/package.scm:811 +#: guix/scripts/package.scm:755 #, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" +msgid "cannot switch to generation '~a'~%" msgstr "" =20 -#: guix/scripts/package.scm:836 +#: guix/scripts/package.scm:771 #, scheme-format -msgid "deleting ~a~%" +msgid "would install new manifest from '~a' with ~d entries~%" msgstr "" =20 -#: guix/scripts/package.scm:889 guix/scripts/package.scm:994 +#: guix/scripts/package.scm:773 #, scheme-format -msgid "invalid syntax: ~a~%" -msgstr "Neplatn=C3=A1 skladba: ~a~%" - -#: guix/scripts/package.scm:918 -#, scheme-format -msgid "nothing to be done~%" -msgstr "Nic k d=C4=9Bl=C3=A1n=C3=AD~%" - -#: guix/scripts/package.scm:941 -#, scheme-format -msgid "~a package in profile~%" -msgstr "~a bal=C3=AD=C4=8Dek v profilu~%" - -#: guix/scripts/package.scm:956 -#, scheme-format -msgid "Generation ~a\t~a" +msgid "installing new manifest from '~a' with ~d entries~%" msgstr "" =20 -#: guix/scripts/package.scm:963 -#, scheme-format -msgid "~a\t(current)~%" -msgstr "~a\t(aktu=C3=A1ln=C3=AD)~%" - -#: guix/scripts/gc.scm:39 +#: guix/scripts/gc.scm:40 msgid "" "Usage: guix gc [OPTION]... PATHS...\n" "Invoke the garbage collector.\n" msgstr "" =20 -#: guix/scripts/gc.scm:41 +#: guix/scripts/gc.scm:42 msgid "" "\n" " -C, --collect-garbage[=3DMIN]\n" " collect at least MIN bytes of garbage" msgstr "" =20 -#: guix/scripts/gc.scm:44 +#: guix/scripts/gc.scm:45 msgid "" "\n" " -d, --delete attempt to delete PATHS" msgstr "" =20 -#: guix/scripts/gc.scm:46 +#: guix/scripts/gc.scm:47 +msgid "" +"\n" +" --optimize optimize the store by deduplicating identical = files" +msgstr "" + +#: guix/scripts/gc.scm:49 msgid "" "\n" " --list-dead list dead paths" msgstr "" =20 -#: guix/scripts/gc.scm:48 +#: guix/scripts/gc.scm:51 msgid "" "\n" " --list-live list live paths" msgstr "" =20 -#: guix/scripts/gc.scm:51 +#: guix/scripts/gc.scm:54 msgid "" "\n" " --references list the references of PATHS" msgstr "" =20 -#: guix/scripts/gc.scm:53 +#: guix/scripts/gc.scm:56 msgid "" "\n" " -R, --requisites list the requisites of PATHS" msgstr "" =20 -#: guix/scripts/gc.scm:55 +#: guix/scripts/gc.scm:58 msgid "" "\n" " --referrers list the referrers of PATHS" msgstr "" =20 -#: guix/scripts/gc.scm:84 +#: guix/scripts/gc.scm:61 +msgid "" +"\n" +" --verify[=3DOPTS] verify the integrity of the store; OPTS is a= \n" +" comma-separated combination of 'repair' and\n" +" 'contents'" +msgstr "" + +#: guix/scripts/gc.scm:65 +msgid "" +"\n" +" --list-failures list cached build failures" +msgstr "" + +#: guix/scripts/gc.scm:67 +msgid "" +"\n" +" --clear-failures remove PATHS from the set of cached failures" +msgstr "" + +#: guix/scripts/gc.scm:96 #, scheme-format msgid "invalid amount of storage: ~a~%" msgstr "Neplatn=C3=A1 hodnota pam=C4=9Bti: ~a~%" =20 -#: guix/scripts/hash.scm:45 +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "Neplatn=C3=BD argument: ~a~%" + +#: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" "Return the cryptographic hash of FILE.\n" @@ -524,7 +745,7 @@ msgid "" "and 'hexadecimal' can be used as well).\n" msgstr "" =20 -#: guix/scripts/hash.scm:52 +#: guix/scripts/hash.scm:53 msgid "" "\n" " -r, --recursive compute the hash on FILE recursively" @@ -532,156 +753,260 @@ msgstr "" "\n" " -r, --recursive Spo=C4=8D=C3=ADtat kontroln=C3=AD sou=C4=8Det = SOUBORU rekursivn=C4=9B" =20 -#: guix/scripts/hash.scm:103 +#: guix/scripts/hash.scm:104 #, scheme-format msgid "unrecognized option: ~a~%" msgstr "Nerozpoznan=C3=A1 volba: ~a~%" =20 -#: guix/scripts/hash.scm:134 guix/ui.scm:233 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "Nespr=C3=A1vn=C3=BD po=C4=8Det argument=C5=AF~%" =20 -#: guix/scripts/pull.scm:73 +#: guix/scripts/import.scm:85 +#, fuzzy msgid "" -"Usage: guix pull [OPTION]...\n" -"Download and deploy the latest version of Guix.\n" +"Usage: guix import IMPORTER ARGS ...\n" +"Run IMPORTER with ARGS.\n" +msgstr "" +"Pou=C5=BEit=C3=AD: guix P=C5=98=C3=8DKAZ ARGUMENTY =E2=80=A6\n" +"Spustit P=C5=98=C3=8DKAZ s ARGUMENTY.\n" + +#: guix/scripts/import.scm:88 +#, fuzzy +msgid "IMPORTER must be one of the importers listed below:\n" +msgstr "P=C5=98=C3=8DKAZ mus=C3=AD b=C3=BDt jeden z n=C3=AD=C5=BEe uvede= n=C3=BDch podp=C5=99=C3=ADkaz=C5=AF:\n" + +#: guix/scripts/import.scm:102 +#, fuzzy, scheme-format +msgid "guix import: missing importer name~%" +msgstr "guix: Chyb=C3=AD n=C3=A1zev p=C5=99=C3=ADkazu~%" + +#: guix/scripts/import.scm:113 +#, scheme-format +msgid "guix import: invalid importer~%" msgstr "" =20 -#: guix/scripts/pull.scm:77 +#: guix/scripts/import/cran.scm:42 msgid "" -"\n" -" --url=3DURL download the Guix tarball from URL" +"Usage: guix import cran PACKAGE-NAME\n" +"Import and convert the CRAN package for PACKAGE-NAME.\n" msgstr "" =20 -#: guix/scripts/pull.scm:79 +#: guix/scripts/import/cran.scm:44 msgid "" "\n" -" --bootstrap use the bootstrap Guile to build the new Guix" +" -a, --archive=3DARCHIVE specify the archive repository" msgstr "" =20 -#: guix/scripts/pull.scm:117 -#, scheme-format -msgid "~A: unexpected argument~%" -msgstr "~A: Neo=C4=8Dek=C3=A1van=C3=BD argument~%" +#: guix/scripts/import/cran.scm:94 +#, fuzzy, scheme-format +msgid "failed to download description for package '~a'~%" +msgstr "Nepoda=C5=99ilo se spojit s =C2=BB~a=C2=AB: ~a~%" =20 -#: guix/scripts/pull.scm:126 -msgid "failed to download up-to-date source, exiting\n" -msgstr "" +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 +#, fuzzy, scheme-format +msgid "too few arguments~%" +msgstr "Nespr=C3=A1vn=C3=BD po=C4=8Det argument=C5=AF~%" =20 -#: guix/scripts/pull.scm:145 -#, scheme-format -msgid "updated ~a successfully deployed under `~a'~%" -msgstr "" +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 +#, fuzzy, scheme-format +msgid "too many arguments~%" +msgstr "Nespr=C3=A1vn=C3=A9 argumenty" =20 -#: guix/scripts/pull.scm:148 -#, scheme-format -msgid "failed to update Guix, check the build log~%" +#: guix/scripts/import/elpa.scm:41 +msgid "" +"Usage: guix import elpa PACKAGE-NAME\n" +"Import the latest package named PACKAGE-NAME from an ELPA repository.\n= " msgstr "" =20 -#: guix/scripts/pull.scm:150 +#: guix/scripts/import/elpa.scm:43 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/elpa.scm:45 +#, fuzzy +msgid "" +"\n" +" -h, --help display this help and exit" +msgstr "" +"\n" +" -h, --help Uk=C3=A1zat tuto n=C3=A1pov=C4=9Bdu a ukon=C4=8D= it" + +#: guix/scripts/import/elpa.scm:47 +#, fuzzy +msgid "" +"\n" +" -V, --version display version information and exit" +msgstr "" +"\n" +" -V, --version Uk=C3=A1zat informace o verzi a ukon=C4=8Dit" + +#: guix/scripts/import/elpa.scm:92 +#, fuzzy, scheme-format +msgid "failed to download package '~a'~%" +msgstr "Jazyk se nepoda=C5=99ilo nainstalovat: ~a~%" + +#: guix/scripts/pull.scm:74 +msgid "" +"Usage: guix pull [OPTION]...\n" +"Download and deploy the latest version of Guix.\n" +msgstr "" + +#: guix/scripts/pull.scm:78 +msgid "" +"\n" +" --url=3DURL download the Guix tarball from URL" +msgstr "" + +#: guix/scripts/pull.scm:80 +msgid "" +"\n" +" --bootstrap use the bootstrap Guile to build the new Guix" +msgstr "" + +#: guix/scripts/pull.scm:134 +msgid "tarball did not produce a single source directory" +msgstr "" + +#: guix/scripts/pull.scm:152 +#, scheme-format +msgid "unpacking '~a'...~%" +msgstr "" + +#: guix/scripts/pull.scm:161 +msgid "failed to unpack source code" +msgstr "" + +#: guix/scripts/pull.scm:204 msgid "Guix already up to date\n" msgstr "Guix je ji=C5=BE aktu=C3=A1ln=C3=AD\n" =20 -#: guix/scripts/substitute-binary.scm:80 +#: guix/scripts/pull.scm:209 +#, scheme-format +msgid "updated ~a successfully deployed under `~a'~%" +msgstr "" + +#: guix/scripts/pull.scm:212 +#, scheme-format +msgid "failed to update Guix, check the build log~%" +msgstr "" + +#: guix/scripts/pull.scm:221 +#, scheme-format +msgid "~A: unexpected argument~%" +msgstr "~A: Neo=C4=8Dek=C3=A1van=C3=BD argument~%" + +#: guix/scripts/pull.scm:230 +msgid "failed to download up-to-date source, exiting\n" +msgstr "" + +#: guix/scripts/substitute.scm:103 #, scheme-format msgid "authentication and authorization of substitutes disabled!~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:163 +#: guix/scripts/substitute.scm:179 #, scheme-format msgid "download from '~a' failed: ~a, ~s~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:178 +#: guix/scripts/substitute.scm:191 #, scheme-format -msgid "while fetching ~a: server is unresponsive~%" +msgid "while fetching ~a: server is somewhat slow~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:180 +#: guix/scripts/substitute.scm:193 #, scheme-format msgid "try `--no-substitutes' if the problem persists~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:244 -#, scheme-format -msgid "signature version must be a number: ~a~%" +#: guix/scripts/substitute.scm:266 +#, fuzzy, scheme-format +msgid "signature version must be a number: ~s~%" msgstr "Verze podpisu mus=C3=AD b=C3=BDt =C4=8D=C3=ADslo: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:248 +#: guix/scripts/substitute.scm:270 #, scheme-format msgid "unsupported signature version: ~a~%" msgstr "Verze podpisu nen=C3=AD podporov=C3=A1na: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:256 +#: guix/scripts/substitute.scm:278 #, scheme-format msgid "signature is not a valid s-expression: ~s~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:260 +#: guix/scripts/substitute.scm:282 #, scheme-format msgid "invalid format of the signature field: ~a~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:295 +#: guix/scripts/substitute.scm:317 #, scheme-format msgid "invalid signature for '~a'~%" msgstr "Neplatn=C3=BD podpis =C2=BB~a=C2=AB~%" =20 -#: guix/scripts/substitute-binary.scm:297 +#: guix/scripts/substitute.scm:319 #, scheme-format msgid "hash mismatch for '~a'~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:299 +#: guix/scripts/substitute.scm:321 #, scheme-format msgid "'~a' is signed with an unauthorized key~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:301 +#: guix/scripts/substitute.scm:323 #, scheme-format msgid "signature on '~a' is corrupt~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:338 +#: guix/scripts/substitute.scm:361 #, scheme-format msgid "substitute at '~a' lacks a signature~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:526 +#: guix/scripts/substitute.scm:537 #, scheme-format -msgid "Downloading, please wait...~%" -msgstr "Stahuje se. Po=C4=8Dkejte, pros=C3=ADm =E2=80=A6~%" +msgid "updating list of substitutes from '~a'... ~5,1f%" +msgstr "" + +#: guix/scripts/substitute.scm:585 +#, scheme-format +msgid "~s: unsupported server URI scheme~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:528 +#: guix/scripts/substitute.scm:596 #, scheme-format -msgid "(Please consider upgrading Guile to get proper progress report.)~= %" +msgid "'~a' uses different store '~a'; ignoring it~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:545 +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:554 +#: guix/scripts/substitute.scm:748 msgid "" -"Usage: guix substitute-binary [OPTION]...\n" +"Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:556 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" " store file names passed on the standard input" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:559 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -689,16 +1014,13 @@ msgid "" " DESTINATION" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:604 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" -msgstr "" - -#: guix/scripts/substitute-binary.scm:625 -#, scheme-format -msgid "failed to look up host '~a' (~a), substituter disabled~%" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:732 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "~a: Nerozpoznan=C3=A9 volby~%" @@ -723,399 +1045,1278 @@ msgstr "Chyba: Neautorizovan=C3=BD ve=C5=99ejn=C3= =BD kl=C3=AD=C4=8D: ~a~%" msgid "error: corrupt signature data: ~a~%" msgstr "Chyba: Data podpisu po=C5=A1kozena: ~a~%" =20 -#: guix/scripts/authenticate.scm:126 +#: guix/scripts/authenticate.scm:120 msgid "" "Usage: guix authenticate OPTION...\n" "Sign or verify the signature on the given file. This tool is meant to\= n" "be used internally by 'guix-daemon'.\n" msgstr "" =20 -#: guix/scripts/authenticate.scm:132 +#: guix/scripts/authenticate.scm:126 msgid "wrong arguments" msgstr "Nespr=C3=A1vn=C3=A9 argumenty" =20 -#: guix/scripts/system.scm:74 +#: guix/scripts/system.scm:110 #, scheme-format -msgid "failed to open operating system file '~a': ~a~%" +msgid "failed to register '~a' under '~a'~%" msgstr "" =20 -#: guix/scripts/system.scm:78 guix/ui.scm:238 +#: guix/scripts/system.scm:142 #, scheme-format -msgid "~a: ~a~%" -msgstr "~a: ~a~%" +msgid "failed to install GRUB on device '~a'~%" +msgstr "" =20 -#: guix/scripts/system.scm:81 +#: guix/scripts/system.scm:160 #, scheme-format -msgid "failed to load operating system file '~a': ~s~%" +msgid "initializing the current root file system~%" msgstr "" =20 -#: guix/scripts/system.scm:111 +#: guix/scripts/system.scm:174 #, scheme-format -msgid "failed to register '~a' under '~a'~%" +msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" msgstr "" =20 -#: guix/scripts/system.scm:127 +#: guix/scripts/system.scm:219 #, scheme-format -msgid "initializing the current root file system~%" +msgid "while talking to shepherd: ~a~%" msgstr "" =20 -#: guix/scripts/system.scm:151 guix/scripts/system.scm:291 +#: guix/scripts/system.scm:265 +#, fuzzy, scheme-format +msgid "unloading service '~a'...~%" +msgstr "Stahuje se. Po=C4=8Dkejte, pros=C3=ADm =E2=80=A6~%" + +#: guix/scripts/system.scm:273 #, scheme-format -msgid "failed to install GRUB on device '~a'~%" +msgid "loading new services:~{ ~a~}...~%" msgstr "" =20 -#: guix/scripts/system.scm:176 +#: guix/scripts/system.scm:294 #, scheme-format msgid "activating system...~%" msgstr "Syst=C3=A9m se zap=C3=ADn=C3=A1 =E2=80=A6~%" =20 -#: guix/scripts/system.scm:211 +#: guix/scripts/system.scm:380 +msgid "the DAG of services" +msgstr "" + +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" +msgstr "" + +#: guix/scripts/system.scm:414 +#, fuzzy, scheme-format +msgid " file name: ~a~%" +msgstr "Neplatn=C3=A9 =C4=8D=C3=ADslo: ~a~%" + +#: guix/scripts/system.scm:415 #, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "Nerozpoznan=C3=A9 spou=C5=A1t=C4=9Bc=C3=AD parametry pro =C2=BB~= a=C2=AB~%" +msgid " canonical file name: ~a~%" +msgstr "" + +#. TRANSLATORS: Please preserve the two-space indentation. +#: guix/scripts/system.scm:417 +#, fuzzy, scheme-format +msgid " label: ~a~%" +msgstr "~a: ~a~%" + +#: guix/scripts/system.scm:418 +#, scheme-format +msgid " root device: ~a~%" +msgstr "" =20 -#: guix/scripts/system.scm:295 +#: guix/scripts/system.scm:419 +#, scheme-format +msgid " kernel: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:527 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" =20 -#: guix/scripts/system.scm:311 +#: guix/scripts/system.scm:566 msgid "" -"Usage: guix system [OPTION] ACTION FILE\n" +"Usage: guix system [OPTION] ACTION [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" msgstr "" =20 -#: guix/scripts/system.scm:314 +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 msgid "The valid values for ACTION are:\n" msgstr "Platn=C3=A9 hodnoty pro =C4=8CINNOST jsou:\n" =20 -#: guix/scripts/system.scm:315 -msgid " - 'reconfigure', switch to a new operating system configuration= \n" +#: guix/scripts/system.scm:571 +msgid " reconfigure switch to a new operating system configuratio= n\n" +msgstr "" + +#: guix/scripts/system.scm:573 +msgid " list-generations list the system generations\n" +msgstr "" + +#: guix/scripts/system.scm:575 +msgid "" +" build build the operating system without installing anyth= ing\n" +msgstr "" + +#: guix/scripts/system.scm:577 +msgid " container build a container that shares the host's stor= e\n" +msgstr "" + +#: guix/scripts/system.scm:579 +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" +msgstr "" + +#: guix/scripts/system.scm:581 +msgid " vm-image build a freestanding virtual machine image\n" +msgstr "" + +#: guix/scripts/system.scm:583 +msgid " disk-image build a disk image, suitable for a USB stick\= n" msgstr "" =20 -#: guix/scripts/system.scm:317 -msgid " - 'build', build the operating system without installing anythi= ng\n" +#: guix/scripts/system.scm:585 +msgid " init initialize a root file system to run GNU\n" msgstr "" =20 -#: guix/scripts/system.scm:319 -msgid " - 'vm', build a virtual machine image that shares the host's st= ore\n" +#: guix/scripts/system.scm:587 +msgid " extension-graph emit the service extension graph in Dot forma= t\n" msgstr "" =20 -#: guix/scripts/system.scm:321 -msgid " - 'vm-image', build a freestanding virtual machine image\n" +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" msgstr "" =20 -#: guix/scripts/system.scm:323 -msgid " - 'disk-image', build a disk image, suitable for a USB stick\n" +#: guix/scripts/system.scm:593 +msgid "" +"\n" +" -d, --derivation return the derivation of the given system" msgstr "" =20 -#: guix/scripts/system.scm:325 -msgid " - 'init', initialize a root file system to run GNU.\n" +#: guix/scripts/system.scm:595 +msgid "" +"\n" +" --on-error=3DSTRATEGY\n" +" apply STRATEGY when an error occurs while read= ing " +"FILE" msgstr "" =20 -#: guix/scripts/system.scm:329 +#: guix/scripts/system.scm:598 msgid "" "\n" " --image-size=3DSIZE for 'vm-image', produce an image of SIZE" msgstr "" =20 -#: guix/scripts/system.scm:331 +#: guix/scripts/system.scm:600 msgid "" "\n" " --no-grub for 'init', do not install GRUB" msgstr "" =20 -#: guix/scripts/system.scm:394 +#: guix/scripts/system.scm:602 +msgid "" +"\n" +" --share=3DSPEC for 'vm', share host file system according t= o SPEC" +msgstr "" + +#: guix/scripts/system.scm:604 +msgid "" +"\n" +" --expose=3DSPEC for 'vm', expose host file system according = to SPEC" +msgstr "" + +#: guix/scripts/system.scm:606 +msgid "" +"\n" +" --full-boot for 'vm', make a full boot sequence" +msgstr "" + +#: guix/scripts/system.scm:690 +#, scheme-format +msgid "no configuration file specified~%" +msgstr "Nezad=C3=A1n =C5=BE=C3=A1dn=C3=BD soubor s nastaven=C3=ADm~%" + +#: guix/scripts/system.scm:753 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: Nezn=C3=A1m=C3=A1 =C4=8Dinnost~%" =20 -#: guix/scripts/system.scm:411 +#: guix/scripts/system.scm:768 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "Nespr=C3=A1vn=C3=BD po=C4=8Det argument=C5=AF pro =C4=8Dinnost =C2= =BB~a=C2=AB~%" =20 -#: guix/scripts/system.scm:431 -#, scheme-format -msgid "no configuration file specified~%" -msgstr "Nezad=C3=A1n =C5=BE=C3=A1dn=C3=BD soubor s nastaven=C3=ADm~%" +#: guix/scripts/system.scm:773 +#, fuzzy, scheme-format +msgid "guix system: missing command name~%" +msgstr "guix: Chyb=C3=AD n=C3=A1zev p=C5=99=C3=ADkazu~%" =20 -#: guix/gnu-maintenance.scm:373 -#, scheme-format -msgid "signature verification failed for `~a'~%" -msgstr "Ov=C4=9B=C5=99en=C3=AD podpisu se nezda=C5=99ilo pro =C2=BB~a=C2= =AB~%" +#: guix/scripts/system.scm:775 +#, fuzzy, scheme-format +msgid "Try 'guix system --help' for more information.~%" +msgstr "vyvolejte =C2=BBguix --help=C2=AB pro obdr=C5=BEen=C3=AD dal=C5=A1= =C3=ADch informac=C3=AD.~%" =20 -#: guix/gnu-maintenance.scm:375 +#: guix/scripts/lint.scm:126 #, scheme-format -msgid "(could be because the public key is not in your keyring)~%" +msgid "Available checkers:~%" msgstr "" =20 -#: guix/gnu-maintenance.scm:450 -#, scheme-format -msgid "~a: could not locate source file" -msgstr "~a: Zdrojov=C3=BD soubor se nepoda=C5=99ilo naj=C3=ADt" - -#: guix/gnu-maintenance.scm:455 -#, scheme-format -msgid "~a: ~a: no `version' field in source; skipping~%" +#: guix/scripts/lint.scm:146 +msgid "description should not be empty" msgstr "" =20 -#: guix/ui.scm:131 -#, scheme-format -msgid "failed to install locale: ~a~%" -msgstr "Jazyk se nepoda=C5=99ilo nainstalovat: ~a~%" +#: guix/scripts/lint.scm:156 +msgid "Texinfo markup in description is invalid" +msgstr "" =20 -#: guix/ui.scm:150 -msgid "" -"Copyright (C) 2014 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" -"This is free software: you are free to change and redistribute it.\n" -"There is NO WARRANTY, to the extent permitted by law.\n" +#: guix/scripts/lint.scm:164 +msgid "description should start with an upper-case letter or digit" msgstr "" -"Autorsk=C3=A9 pr=C3=A1vo (C) 2014 auto=C5=99i Guixu\n" -"Povolen=C3=AD GPLv3+: GNU GPL verze 3 nebo pozd=C4=9Bj=C5=A1=C3=AD \n" -"Toto je svobodn=C3=BD software: M=C5=AF=C5=BEete jej voln=C4=9B m=C4=9B= nit a d=C3=A1l =C5=A1=C3=AD=C5=99it.\n" -"Nen=C3=AD tu =C5=BD=C3=81DN=C3=81 Z=C3=81RUKA, ve v=C3=BD=C5=A1i povole= n=C3=A9 z=C3=A1konem.\n" =20 -#: guix/ui.scm:158 +#: guix/scripts/lint.scm:180 #, scheme-format msgid "" -"\n" -"Report bugs to: ~a." +"sentences in description should be followed ~\n" +"by two spaces; possible infraction~p at ~{~a~^, ~}" msgstr "" -"\n" -"Chyby hla=C5=A1te na: ~a." =20 -#: guix/ui.scm:160 -#, scheme-format -msgid "" -"\n" -"~a home page: <~a>" +#: guix/scripts/lint.scm:204 +msgid "pkg-config should probably be a native input" msgstr "" -"\n" -"~a str=C3=A1nky: <~a>" =20 -#: guix/ui.scm:162 -msgid "" -"\n" -"General help using GNU software: " +#: guix/scripts/lint.scm:219 +msgid "synopsis should not be empty" msgstr "" -"\n" -"V=C5=A1eobecn=C3=A1 n=C3=A1pov=C4=9Bda k software GNU: " =20 -#: guix/ui.scm:169 -#, scheme-format -msgid "~a: invalid number~%" -msgstr "~a: Neplatn=C3=A9 =C4=8D=C3=ADslo~%" +#: guix/scripts/lint.scm:227 +msgid "no period allowed at the end of the synopsis" +msgstr "" =20 -#: guix/ui.scm:186 -#, scheme-format -msgid "invalid number: ~a~%" -msgstr "Neplatn=C3=A9 =C4=8D=C3=ADslo: ~a~%" +#: guix/scripts/lint.scm:239 +msgid "no article allowed at the beginning of the synopsis" +msgstr "" =20 -#: guix/ui.scm:201 -#, scheme-format -msgid "unknown unit: ~a~%" -msgstr "Nezn=C3=A1m=C3=A1 jednotka: ~a~%" +#: guix/scripts/lint.scm:246 +msgid "synopsis should be less than 80 characters long" +msgstr "" =20 -#: guix/ui.scm:212 -#, scheme-format -msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" -msgstr "~a:~a:~a: Bal=C3=AD=C4=8Dek `~a' m=C3=A1 neplatn=C3=BD vstup: ~s= ~%" +#: guix/scripts/lint.scm:252 +msgid "synopsis should start with an upper-case letter or digit" +msgstr "" =20 -#: guix/ui.scm:219 -#, scheme-format -msgid "~a: ~a: build system `~a' does not support cross builds~%" -msgstr "~a: ~a: Sestavovac=C3=AD syst=C3=A9m `~a' nepodporuje k=C5=99=C3= =AD=C5=BEov=C3=A1 sestaven=C3=AD~%" +#: guix/scripts/lint.scm:259 +msgid "synopsis should not start with the package name" +msgstr "" =20 -#: guix/ui.scm:224 +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 #, scheme-format -msgid "failed to connect to `~a': ~a~%" -msgstr "Nepoda=C5=99ilo se spojit s =C2=BB~a=C2=AB: ~a~%" +msgid "URI ~a not reachable: ~a (~s)" +msgstr "" =20 -#: guix/ui.scm:229 -#, scheme-format -msgid "build failed: ~a~%" -msgstr "Nepoda=C5=99ilo se sestavit: ~a~%" +#: guix/scripts/lint.scm:372 +#, fuzzy, scheme-format +msgid "URI ~a domain not found: ~a" +msgstr "guix: ~a: P=C5=99=C3=ADkaz nenalezen~%" =20 -#: guix/ui.scm:257 +#: guix/scripts/lint.scm:380 #, scheme-format -msgid "failed to read expression ~s: ~s~%" -msgstr "V=C3=BDraz ~s se nepoda=C5=99ilo p=C5=99e=C4=8D=C3=ADst: ~s~%" +msgid "URI ~a unreachable: ~a" +msgstr "" =20 -#: guix/ui.scm:263 -#, scheme-format -msgid "failed to evaluate expression `~a': ~s~%" +#: guix/scripts/lint.scm:406 +#, fuzzy +msgid "invalid value for home page" +msgstr "Platn=C3=A9 hodnoty pro =C4=8CINNOST jsou:\n" + +#: guix/scripts/lint.scm:409 +#, fuzzy, scheme-format +msgid "invalid home page URL: ~s" msgstr "" +"\n" +"~a str=C3=A1nky: <~a>" =20 -#: guix/ui.scm:272 -#, scheme-format -msgid "expression ~s does not evaluate to a package~%" +#: guix/scripts/lint.scm:429 +msgid "file names of patches should start with the package name" msgstr "" =20 -#: guix/ui.scm:319 +#: guix/scripts/lint.scm:466 #, scheme-format -msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" +msgid "~a: ~a: proposed synopsis: ~s~%" msgstr "" =20 -#: guix/ui.scm:324 +#: guix/scripts/lint.scm:478 #, scheme-format -msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" +msgid "~a: ~a: proposed description:~% \"~a\"~%" msgstr "" =20 -#: guix/ui.scm:330 -#, scheme-format -msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" +#: guix/scripts/lint.scm:515 +msgid "all the source URIs are unreachable:" msgstr "" =20 -#: guix/ui.scm:335 -#, scheme-format -msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" -msgstr "~:[Bude sta=C5=BEen n=C3=A1sleduj=C3=ADc=C3=AD soubor:~%~{ ~a~= %~}~;~]" +#: guix/scripts/lint.scm:538 +msgid "the source file name should contain the package name" +msgstr "" =20 -#: guix/ui.scm:352 -msgid "" -msgstr "" +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~a" +msgstr "Nepoda=C5=99ilo se vytvo=C5=99it GC root `~a': ~a~%" =20 -#: guix/ui.scm:380 -#, scheme-format -msgid "failed to create configuration directory `~a': ~a~%" -msgstr "Adres=C3=A1=C5=99 s nastaven=C3=ADm =C2=BB~a=C2=AB se nepoda=C5=99= ilo vytvo=C5=99it: ~a~%" +#: guix/scripts/lint.scm:557 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~s~%" +msgstr "V=C3=BDraz ~s se nepoda=C5=99ilo p=C5=99e=C4=8D=C3=ADst: ~s~%" =20 -#: guix/ui.scm:461 guix/ui.scm:475 -msgid "unknown" -msgstr "Nezn=C3=A1m=C3=BD" +#: guix/scripts/lint.scm:567 +msgid "invalid license field" +msgstr "" =20 -#: guix/ui.scm:584 -#, scheme-format -msgid "invalid argument: ~a~%" -msgstr "Neplatn=C3=BD argument: ~a~%" +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "Jazyk se nepoda=C5=99ilo nainstalovat: ~a~%" =20 -#: guix/ui.scm:589 +#: guix/scripts/lint.scm:598 #, scheme-format -msgid "Try `guix --help' for more information.~%" -msgstr "vyvolejte =C2=BBguix --help=C2=AB pro obdr=C5=BEen=C3=AD dal=C5=A1= =C3=ADch informac=C3=AD.~%" - -#: guix/ui.scm:619 -msgid "" -"Usage: guix COMMAND ARGS...\n" -"Run COMMAND with ARGS.\n" +msgid "assuming no CVE vulnerabilities~%" msgstr "" -"Pou=C5=BEit=C3=AD: guix P=C5=98=C3=8DKAZ ARGUMENTY =E2=80=A6\n" -"Spustit P=C5=98=C3=8DKAZ s ARGUMENTY.\n" =20 -#: guix/ui.scm:622 -msgid "COMMAND must be one of the sub-commands listed below:\n" -msgstr "P=C5=98=C3=8DKAZ mus=C3=AD b=C3=BDt jeden z n=C3=AD=C5=BEe uvede= n=C3=BDch podp=C5=99=C3=ADkaz=C5=AF:\n" - -#: guix/ui.scm:642 +#: guix/scripts/lint.scm:623 #, scheme-format -msgid "guix: ~a: command not found~%" -msgstr "guix: ~a: P=C5=99=C3=ADkaz nenalezen~%" +msgid "probably vulnerable to ~a" +msgstr "" =20 -#: guix/ui.scm:660 +#: guix/scripts/lint.scm:638 #, scheme-format -msgid "guix: missing command name~%" -msgstr "guix: Chyb=C3=AD n=C3=A1zev p=C5=99=C3=ADkazu~%" +msgid "tabulation on line ~a, column ~a" +msgstr "" =20 -#: guix/ui.scm:668 +#: guix/scripts/lint.scm:647 #, scheme-format -msgid "guix: unrecognized option '~a'~%" -msgstr "guix: Nerozpoznan=C3=A1 volba =C2=BB~a=C2=AB~%" +msgid "trailing white space on line ~a" +msgstr "" =20 -#: guix/http-client.scm:217 +#: guix/scripts/lint.scm:657 #, scheme-format -msgid "using Guile ~a, which does not support ~s encoding~%" +msgid "line ~a is way too long (~a characters)" msgstr "" =20 -#: guix/http-client.scm:220 +#: guix/scripts/lint.scm:668 #, scheme-format -msgid "download failed; use a newer Guile~%" -msgstr "Sta=C5=BEen=C3=AD se nezda=C5=99ilo. Pou=C5=BEijte nov=C4=9Bj=C5= =A1=C3=AD Guile~%" +msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" +msgstr "" =20 -#: guix/http-client.scm:232 -#, scheme-format -msgid "following redirection to `~a'...~%" +#: guix/scripts/lint.scm:723 +msgid "Validate package descriptions" msgstr "" =20 -#: guix/http-client.scm:241 -msgid "download failed" -msgstr "Sta=C5=BEen=C3=AD se nezda=C5=99ilo" +#: guix/scripts/lint.scm:727 +msgid "Validate synopsis & description of GNU packages" +msgstr "" =20 -#: guix/nar.scm:134 -msgid "unexpected executable file marker" +#: guix/scripts/lint.scm:731 +msgid "Identify inputs that should be native inputs" msgstr "" =20 -#: guix/nar.scm:141 -msgid "unsupported nar file type" +#: guix/scripts/lint.scm:735 +msgid "Validate file names and availability of patches" msgstr "" =20 -#: guix/nar.scm:209 -msgid "unsupported file type" -msgstr "Nepodporovan=C3=BD typ souboru" +#: guix/scripts/lint.scm:739 +msgid "Validate home-page URLs" +msgstr "" =20 -#: guix/nar.scm:219 -msgid "invalid nar signature" +#. TRANSLATORS: is the name of a data type and must not be +#. translated. +#: guix/scripts/lint.scm:745 +msgid "Make sure the 'license' field is a or a list thereof" msgstr "" =20 -#: guix/nar.scm:230 -msgid "invalid nar end-of-file marker" +#: guix/scripts/lint.scm:750 +msgid "Validate source URLs" msgstr "" =20 -#: guix/nar.scm:244 -msgid "invalid symlink tokens" +#: guix/scripts/lint.scm:754 +msgid "Validate file names of sources" msgstr "" =20 -#: guix/nar.scm:263 -msgid "unexpected directory entry termination" +#: guix/scripts/lint.scm:758 +msgid "Report failure to compile a package to a derivation" msgstr "" =20 -#: guix/nar.scm:272 -msgid "unexpected directory inter-entry marker" +#: guix/scripts/lint.scm:762 +msgid "Validate package synopses" msgstr "" =20 -#: guix/nar.scm:277 -msgid "unsupported nar entry type" +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" =20 -#: guix/nar.scm:376 -msgid "signature is not a valid s-expression" +#: guix/scripts/lint.scm:771 +msgid "Look for formatting issues in the source" +msgstr "" + +#: guix/scripts/lint.scm:796 +msgid "" +"Usage: guix lint [OPTION]... [PACKAGE]...\n" +"Run a set of checkers on the specified package; if none is specified,\n= " +"run the checkers on all packages.\n" +msgstr "" + +#: guix/scripts/lint.scm:799 +msgid "" +"\n" +" -c, --checkers=3DCHECKER1,CHECKER2...\n" +" only run the specified checkers" +msgstr "" + +#: guix/scripts/lint.scm:804 +msgid "" +"\n" +" -l, --list-checkers display the list of available lint checkers" +msgstr "" + +#: guix/scripts/lint.scm:824 +#, fuzzy, scheme-format +msgid "~a: invalid checker~%" +msgstr "~a: Neplatn=C3=A9 =C4=8D=C3=ADslo~%" + +#: guix/scripts/publish.scm:52 +#, scheme-format +msgid "" +"Usage: guix publish [OPTION]...\n" +"Publish ~a over HTTP.\n" +msgstr "" + +#: guix/scripts/publish.scm:54 +msgid "" +"\n" +" -p, --port=3DPORT listen on PORT" +msgstr "" + +#: guix/scripts/publish.scm:56 +msgid "" +"\n" +" --listen=3DHOST listen on the network interface for HOST" +msgstr "" + +#: guix/scripts/publish.scm:58 +msgid "" +"\n" +" -u, --user=3DUSER change privileges to USER as soon as possibl= e" +msgstr "" + +#: guix/scripts/publish.scm:60 +msgid "" +"\n" +" -r, --repl[=3DPORT] spawn REPL server on PORT" +msgstr "" + +#: guix/scripts/publish.scm:76 +#, scheme-format +msgid "lookup of host '~a' failed: ~a~%" +msgstr "" + +#: guix/scripts/publish.scm:100 +#, scheme-format +msgid "lookup of host '~a' returned nothing" +msgstr "" + +#: guix/scripts/publish.scm:343 +#, scheme-format +msgid "user '~a' not found: ~a~%" +msgstr "" + +#: guix/scripts/publish.scm:378 +#, scheme-format +msgid "server running as root; consider using the '--user' option!~%" +msgstr "" + +#: guix/scripts/publish.scm:380 +#, scheme-format +msgid "publishing ~a on ~a, port ~d~%" +msgstr "" + +#: guix/scripts/edit.scm:41 +msgid "" +"Usage: guix edit PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" +msgstr "" + +#: guix/scripts/edit.scm:62 +#, scheme-format +msgid "file '~a' not found in search path ~s~%" +msgstr "" + +#: guix/scripts/edit.scm:83 +#, scheme-format +msgid "source location of package '~a' is unknown~%" +msgstr "" + +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "Nepoda=C5=99ilo se spojit s =C2=BB~a=C2=AB: ~a~%" + +#: guix/scripts/size.scm:75 +#, scheme-format +msgid "no available substitute information for '~a'~%" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "store item" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "total" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "self" +msgstr "" + +#. TRANSLATORS: This is the title of a graph, meaning that the graph +#. represents a profile of the store (the "store" being the place where +#. packages are stored.) +#: guix/scripts/size.scm:204 +msgid "store profile" +msgstr "" + +#: guix/scripts/size.scm:213 +msgid "" +"Usage: guix size [OPTION]... PACKAGE\n" +"Report the size of PACKAGE and its dependencies.\n" +msgstr "" + +#: guix/scripts/size.scm:218 +msgid "" +"\n" +" -s, --system=3DSYSTEM consider packages for SYSTEM--e.g., \"i686-l= inux\"" +msgstr "" + +#: guix/scripts/size.scm:220 +msgid "" +"\n" +" -m, --map-file=3DFILE write to FILE a graphical map of disk usage" +msgstr "" + +#: guix/scripts/size.scm:274 +msgid "missing store item argument\n" +msgstr "" + +#: guix/scripts/size.scm:292 +#, fuzzy +msgid "too many arguments\n" +msgstr "Nespr=C3=A1vn=C3=A9 argumenty" + +#: guix/scripts/graph.scm:76 +msgid "the DAG of packages, excluding implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:132 +msgid "the DAG of packages, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:171 +msgid "same as 'bag', but without the bootstrap nodes" +msgstr "" + +#: guix/scripts/graph.scm:216 +msgid "the DAG of derivations" +msgstr "" + +#: guix/scripts/graph.scm:240 +#, scheme-format +msgid "references for '~a' are not known~%" +msgstr "" + +#: guix/scripts/graph.scm:247 +msgid "the DAG of run-time dependencies (store references)" +msgstr "" + +#: guix/scripts/graph.scm:277 +#, fuzzy, scheme-format +msgid "~a: unknown node type~%" +msgstr "~a: Nezn=C3=A1m=C3=A1 =C4=8Dinnost~%" + +#: guix/scripts/graph.scm:281 +#, fuzzy +msgid "The available node types are:\n" +msgstr "Platn=C3=A9 hodnoty pro =C4=8CINNOST jsou:\n" + +#. TRANSLATORS: Here 'dot' is the name of a program; it must not be +#. translated. +#: guix/scripts/graph.scm:317 +msgid "" +"Usage: guix graph PACKAGE...\n" +"Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" +msgstr "" + +#: guix/scripts/graph.scm:319 +msgid "" +"\n" +" -t, --type=3DTYPE represent nodes of the given TYPE" +msgstr "" + +#: guix/scripts/graph.scm:321 +msgid "" +"\n" +" --list-types list the available graph types" +msgstr "" + +#: guix/scripts/graph.scm:323 +msgid "" +"\n" +" -e, --expression=3DEXPR consider the package EXPR evaluates to" +msgstr "" + +#: guix/scripts/challenge.scm:104 +#, scheme-format +msgid "~a: no substitute at '~a'~%" +msgstr "" + +#: guix/scripts/challenge.scm:120 +#, fuzzy, scheme-format +msgid "no substitutes for '~a'~%" +msgstr "Neplatn=C3=BD podpis =C2=BB~a=C2=AB~%" + +#: guix/scripts/challenge.scm:137 guix/scripts/challenge.scm:157 +#, fuzzy, scheme-format +msgid "no local build for '~a'~%" +msgstr "=C5=BD=C3=A1dn=C3=BD z=C3=A1znam o sestaven=C3=AD pro =C2=BB~a=C2= =AB~%" + +#: guix/scripts/challenge.scm:154 +#, scheme-format +msgid "~a contents differ:~%" +msgstr "" + +#: guix/scripts/challenge.scm:156 +#, scheme-format +msgid " local hash: ~a~%" +msgstr "" + +#: guix/scripts/challenge.scm:161 +#, fuzzy, scheme-format +msgid " ~50a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/scripts/challenge.scm:165 +#, scheme-format +msgid " ~50a: unavailable~%" +msgstr "" + +#: guix/scripts/challenge.scm:175 +msgid "" +"Usage: guix challenge [PACKAGE...]\n" +"Challenge the substitutes for PACKAGE... provided by one or more server= s.\n" +msgstr "" + +#: guix/scripts/challenge.scm:177 +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" compare build results with those at URLS" +msgstr "" + +#: guix/gnu-maintenance.scm:514 +msgid "Updater for GNU packages" +msgstr "" + +#: guix/gnu-maintenance.scm:521 +msgid "Updater for GNOME packages" +msgstr "" + +#: guix/scripts/container.scm:25 +msgid "" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" +msgstr "" + +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" + +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix: Chyb=C3=AD n=C3=A1zev p=C5=99=C3=ADkazu~%" + +#: guix/scripts/container.scm:63 +#, scheme-format +msgid "guix container: invalid action~%" +msgstr "" + +#: guix/scripts/container/exec.scm:40 +msgid "" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" +msgstr "" + +#: guix/scripts/container/exec.scm:69 +#, fuzzy, scheme-format +msgid "~a: extraneous argument~%" +msgstr "~A: Neo=C4=8Dek=C3=A1van=C3=BD argument~%" + +#: guix/scripts/container/exec.scm:80 +#, fuzzy, scheme-format +msgid "no pid specified~%" +msgstr "Nezad=C3=A1n =C5=BE=C3=A1dn=C3=BD soubor s nastaven=C3=ADm~%" + +#: guix/scripts/container/exec.scm:83 +#, fuzzy, scheme-format +msgid "no command specified~%" +msgstr "Nezad=C3=A1n =C5=BE=C3=A1dn=C3=BD soubor s nastaven=C3=ADm~%" + +#: guix/scripts/container/exec.scm:86 +#, scheme-format +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" +msgstr "" + +#: guix/upstream.scm:158 +#, scheme-format +msgid "signature verification failed for `~a'~%" +msgstr "Ov=C4=9B=C5=99en=C3=AD podpisu se nezda=C5=99ilo pro =C2=BB~a=C2= =AB~%" + +#: guix/upstream.scm:160 +#, scheme-format +msgid "(could be because the public key is not in your keyring)~%" +msgstr "" + +#: guix/upstream.scm:192 +msgid "gz" +msgstr "" + +#: guix/upstream.scm:255 +#, scheme-format +msgid "~a: could not locate source file" +msgstr "~a: Zdrojov=C3=BD soubor se nepoda=C5=99ilo naj=C3=ADt" + +#: guix/upstream.scm:260 +#, scheme-format +msgid "~a: ~a: no `version' field in source; skipping~%" +msgstr "" + +#: guix/ui.scm:236 +msgid "entering debugger; type ',bt' for a backtrace\n" +msgstr "" + +#: guix/ui.scm:252 guix/ui.scm:269 +#, fuzzy, scheme-format +msgid "failed to load '~a': ~a~%" +msgstr "Nepoda=C5=99ilo se spojit s =C2=BB~a=C2=AB: ~a~%" + +#: guix/ui.scm:255 +#, fuzzy, scheme-format +msgid "~a: error: ~a~%" +msgstr "~a: ~a~%" + +#: guix/ui.scm:258 guix/ui.scm:512 +#, scheme-format +msgid "exception thrown: ~s~%" +msgstr "" + +#: guix/ui.scm:260 guix/ui.scm:278 +#, fuzzy, scheme-format +msgid "failed to load '~a':~%" +msgstr "Jazyk se nepoda=C5=99ilo nainstalovat: ~a~%" + +#: guix/ui.scm:272 +#, fuzzy, scheme-format +msgid "~a: warning: ~a~%" +msgstr "~a: ~a~%" + +#: guix/ui.scm:275 +#, fuzzy, scheme-format +msgid "failed to load '~a': exception thrown: ~s~%" +msgstr "V=C3=BDraz ~s se nepoda=C5=99ilo p=C5=99e=C4=8D=C3=ADst: ~s~%" + +#: guix/ui.scm:287 +#, scheme-format +msgid "failed to install locale: ~a~%" +msgstr "Jazyk se nepoda=C5=99ilo nainstalovat: ~a~%" + +#: guix/ui.scm:306 +#, fuzzy +msgid "" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" +"This is free software: you are free to change and redistribute it.\n" +"There is NO WARRANTY, to the extent permitted by law.\n" +msgstr "" +"Autorsk=C3=A9 pr=C3=A1vo (C) 2014 auto=C5=99i Guixu\n" +"Povolen=C3=AD GPLv3+: GNU GPL verze 3 nebo pozd=C4=9Bj=C5=A1=C3=AD \n" +"Toto je svobodn=C3=BD software: M=C5=AF=C5=BEete jej voln=C4=9B m=C4=9B= nit a d=C3=A1l =C5=A1=C3=AD=C5=99it.\n" +"Nen=C3=AD tu =C5=BD=C3=81DN=C3=81 Z=C3=81RUKA, ve v=C3=BD=C5=A1i povole= n=C3=A9 z=C3=A1konem.\n" + +#: guix/ui.scm:314 +#, scheme-format +msgid "" +"\n" +"Report bugs to: ~a." +msgstr "" +"\n" +"Chyby hla=C5=A1te na: ~a." + +#: guix/ui.scm:316 +#, scheme-format +msgid "" +"\n" +"~a home page: <~a>" +msgstr "" +"\n" +"~a str=C3=A1nky: <~a>" + +#: guix/ui.scm:318 +msgid "" +"\n" +"General help using GNU software: " +msgstr "" +"\n" +"V=C5=A1eobecn=C3=A1 n=C3=A1pov=C4=9Bda k software GNU: " + +#: guix/ui.scm:363 +#, fuzzy, scheme-format +msgid "'~a' is not a valid regular expression: ~a~%" +msgstr "Podpis nen=C3=AD platn=C3=BD s-v=C3=BDraz" + +#: guix/ui.scm:369 +#, scheme-format +msgid "~a: invalid number~%" +msgstr "~a: Neplatn=C3=A9 =C4=8D=C3=ADslo~%" + +#: guix/ui.scm:386 +#, scheme-format +msgid "invalid number: ~a~%" +msgstr "Neplatn=C3=A9 =C4=8D=C3=ADslo: ~a~%" + +#: guix/ui.scm:409 +#, scheme-format +msgid "unknown unit: ~a~%" +msgstr "Nezn=C3=A1m=C3=A1 jednotka: ~a~%" + +#: guix/ui.scm:420 +#, scheme-format +msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" +msgstr "~a:~a:~a: Bal=C3=AD=C4=8Dek `~a' m=C3=A1 neplatn=C3=BD vstup: ~s= ~%" + +#: guix/ui.scm:427 +#, scheme-format +msgid "~a: ~a: build system `~a' does not support cross builds~%" +msgstr "~a: ~a: Sestavovac=C3=AD syst=C3=A9m `~a' nepodporuje k=C5=99=C3= =AD=C5=BEov=C3=A1 sestaven=C3=AD~%" + +#: guix/ui.scm:432 +#, scheme-format +msgid "profile '~a' does not exist~%" +msgstr "Profil =C2=BB~a=C2=AB neexistuje~%" + +#: guix/ui.scm:435 +#, fuzzy, scheme-format +msgid "generation ~a of profile '~a' does not exist~%" +msgstr "Profil =C2=BB~a=C2=AB neexistuje~%" + +#: guix/ui.scm:442 +#, scheme-format +msgid "corrupt input while restoring '~a' from ~s~%" +msgstr "" + +#: guix/ui.scm:444 +#, scheme-format +msgid "corrupt input while restoring archive from ~s~%" +msgstr "" + +#: guix/ui.scm:447 +#, scheme-format +msgid "failed to connect to `~a': ~a~%" +msgstr "Nepoda=C5=99ilo se spojit s =C2=BB~a=C2=AB: ~a~%" + +#: guix/ui.scm:452 +#, scheme-format +msgid "build failed: ~a~%" +msgstr "Nepoda=C5=99ilo se sestavit: ~a~%" + +#: guix/ui.scm:455 +#, scheme-format +msgid "reference to invalid output '~a' of derivation '~a'~%" +msgstr "" + +#: guix/ui.scm:466 +#, scheme-format +msgid "~a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/ui.scm:501 +#, scheme-format +msgid "failed to read expression ~s: ~s~%" +msgstr "V=C3=BDraz ~s se nepoda=C5=99ilo p=C5=99e=C4=8D=C3=ADst: ~s~%" + +#: guix/ui.scm:507 +#, fuzzy, scheme-format +msgid "failed to evaluate expression '~a':~%" +msgstr "V=C3=BDraz ~s se nepoda=C5=99ilo p=C5=99e=C4=8D=C3=ADst: ~s~%" + +#: guix/ui.scm:510 +#, fuzzy, scheme-format +msgid "syntax error: ~a~%" +msgstr "Neplatn=C3=A1 skladba: ~a~%" + +#: guix/ui.scm:524 +#, scheme-format +msgid "expression ~s does not evaluate to a package~%" +msgstr "" + +#: guix/ui.scm:586 +#, scheme-format +msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" +msgstr[0] "" +msgstr[1] "" + +#: guix/ui.scm:591 +#, scheme-format +msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" +msgstr[0] "" +msgstr[1] "" + +#: guix/ui.scm:597 +#, scheme-format +msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" +msgstr[0] "" +msgstr[1] "" + +#: guix/ui.scm:602 +#, fuzzy, scheme-format +msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" +msgstr[0] "~:[Bude sta=C5=BEen n=C3=A1sleduj=C3=ADc=C3=AD soubor:~%~{ = ~a~%~}~;~]" +msgstr[1] "~:[Bude sta=C5=BEen n=C3=A1sleduj=C3=ADc=C3=AD soubor:~%~{ = ~a~%~}~;~]" + +#: guix/ui.scm:657 +#, scheme-format +msgid "The following package would be removed:~%~{~a~%~}~%" +msgid_plural "The following packages would be removed:~%~{~a~%~}~%" +msgstr[0] "" +msgstr[1] "" + +#: guix/ui.scm:662 +#, scheme-format +msgid "The following package will be removed:~%~{~a~%~}~%" +msgid_plural "The following packages will be removed:~%~{~a~%~}~%" +msgstr[0] "" +msgstr[1] "" + +#: guix/ui.scm:675 +#, fuzzy, scheme-format +msgid "The following package would be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" +msgstr[0] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" +msgstr[1] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" + +#: guix/ui.scm:680 +#, fuzzy, scheme-format +msgid "The following package will be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" +msgstr[0] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" +msgstr[1] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" + +#: guix/ui.scm:693 +#, fuzzy, scheme-format +msgid "The following package would be upgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" +msgstr[0] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" +msgstr[1] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" + +#: guix/ui.scm:698 +#, fuzzy, scheme-format +msgid "The following package will be upgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" +msgstr[0] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" +msgstr[1] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" + +#: guix/ui.scm:709 +#, scheme-format +msgid "The following package would be installed:~%~{~a~%~}~%" +msgid_plural "The following packages would be installed:~%~{~a~%~}~%" +msgstr[0] "" +msgstr[1] "" + +#: guix/ui.scm:714 +#, fuzzy, scheme-format +msgid "The following package will be installed:~%~{~a~%~}~%" +msgid_plural "The following packages will be installed:~%~{~a~%~}~%" +msgstr[0] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" +msgstr[1] "Bude nainstalov=C3=A1n n=C3=A1sleduj=C3=ADc=C3=AD bal=C3=AD=C4= =8Dek:~%~{~a~%~}~%" + +#: guix/ui.scm:731 +msgid "" +msgstr "" + +#: guix/ui.scm:750 +#, scheme-format +msgid "failed to create configuration directory `~a': ~a~%" +msgstr "Adres=C3=A1=C5=99 s nastaven=C3=ADm =C2=BB~a=C2=AB se nepoda=C5=99= ilo vytvo=C5=99it: ~a~%" + +#: guix/ui.scm:869 guix/ui.scm:883 +msgid "unknown" +msgstr "Nezn=C3=A1m=C3=BD" + +#: guix/ui.scm:1033 +#, scheme-format +msgid "Generation ~a\t~a" +msgstr "" + +#: guix/ui.scm:1040 +#, scheme-format +msgid "~a\t(current)~%" +msgstr "~a\t(aktu=C3=A1ln=C3=AD)~%" + +#: guix/ui.scm:1057 +#, scheme-format +msgid "switched from generation ~a to ~a~%" +msgstr "" + +#: guix/ui.scm:1073 +#, scheme-format +msgid "deleting ~a~%" +msgstr "" + +#: guix/ui.scm:1121 +#, scheme-format +msgid "Try `guix --help' for more information.~%" +msgstr "vyvolejte =C2=BBguix --help=C2=AB pro obdr=C5=BEen=C3=AD dal=C5=A1= =C3=ADch informac=C3=AD.~%" + +#: guix/ui.scm:1148 +msgid "" +"Usage: guix COMMAND ARGS...\n" +"Run COMMAND with ARGS.\n" +msgstr "" +"Pou=C5=BEit=C3=AD: guix P=C5=98=C3=8DKAZ ARGUMENTY =E2=80=A6\n" +"Spustit P=C5=98=C3=8DKAZ s ARGUMENTY.\n" + +#: guix/ui.scm:1151 +msgid "COMMAND must be one of the sub-commands listed below:\n" +msgstr "P=C5=98=C3=8DKAZ mus=C3=AD b=C3=BDt jeden z n=C3=AD=C5=BEe uvede= n=C3=BDch podp=C5=99=C3=ADkaz=C5=AF:\n" + +#: guix/ui.scm:1171 +#, scheme-format +msgid "guix: ~a: command not found~%" +msgstr "guix: ~a: P=C5=99=C3=ADkaz nenalezen~%" + +#: guix/ui.scm:1188 +#, scheme-format +msgid "guix: missing command name~%" +msgstr "guix: Chyb=C3=AD n=C3=A1zev p=C5=99=C3=ADkazu~%" + +#: guix/ui.scm:1196 +#, scheme-format +msgid "guix: unrecognized option '~a'~%" +msgstr "guix: Nerozpoznan=C3=A1 volba =C2=BB~a=C2=AB~%" + +#: guix/http-client.scm:260 +#, scheme-format +msgid "following redirection to `~a'...~%" +msgstr "" + +#: guix/http-client.scm:269 +msgid "download failed" +msgstr "Sta=C5=BEen=C3=AD se nezda=C5=99ilo" + +#: guix/nar.scm:155 +msgid "signature is not a valid s-expression" msgstr "Podpis nen=C3=AD platn=C3=BD s-v=C3=BDraz" =20 -#: guix/nar.scm:385 +#: guix/nar.scm:164 msgid "invalid signature" msgstr "Neplatn=C3=BD podpis" =20 -#: guix/nar.scm:389 +#: guix/nar.scm:168 msgid "invalid hash" msgstr "Neplatn=C3=BD kontroln=C3=AD sou=C4=8Det" =20 -#: guix/nar.scm:397 +#: guix/nar.scm:176 msgid "unauthorized public key" msgstr "Neautorizovan=C3=BD ve=C5=99ejn=C3=BD kl=C3=AD=C4=8D" =20 -#: guix/nar.scm:402 +#: guix/nar.scm:181 msgid "corrupt signature data" msgstr "data podpisu po=C5=A1kozena" =20 -#: guix/nar.scm:422 +#: guix/nar.scm:201 msgid "corrupt file set archive" msgstr "" =20 -#: guix/nar.scm:432 +#: guix/nar.scm:211 #, scheme-format msgid "importing file or directory '~a'...~%" msgstr "Zav=C3=A1d=C3=AD se soubor nebo adres=C3=A1=C5=99 =C2=BB~a=C2=AB= =E2=80=A6~%" =20 -#: guix/nar.scm:441 +#: guix/nar.scm:222 #, scheme-format msgid "found valid signature for '~a'~%" msgstr "Nalezen platn=C3=BD podpis pro =C2=BB~a=C2=AB ~%" =20 -#: guix/nar.scm:448 +#: guix/nar.scm:229 msgid "imported file lacks a signature" msgstr "Zaveden=C3=A9mu souboru chyb=C3=AD podpis" =20 -#: guix/nar.scm:487 +#: guix/nar.scm:268 msgid "invalid inter-file archive mark" msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:61 +msgid "guix-daemon -- perform derivation builds and store accesses" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:63 +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:87 +msgid "SYSTEM" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:88 +msgid "assume SYSTEM as the current system type" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 +msgid "N" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:90 +msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:93 +msgid "allow at most N build jobs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:95 +msgid "disable chroot builds" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:96 +msgid "DIR" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:97 +msgid "add DIR to the build chroot" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:98 +msgid "GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:99 +msgid "perform builds as a user of GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:101 +msgid "do not use substitutes" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:102 +msgid "URLS" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:103 +msgid "use URLS as the default list of substitute providers" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:105 +msgid "do not use the 'build hook'" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:107 +msgid "cache build failures" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 +msgid "do not keep build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:113 +msgid "disable compression of the build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:118 +msgid "disable automatic file \"deduplication\" in the store" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:128 +msgid "impersonate Linux 2.6" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:132 +msgid "tell whether the GC must keep outputs of live derivations" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:135 +msgid "tell whether the GC must keep derivations corresponding to live o= utputs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:138 +msgid "SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:139 +msgid "listen for connections on SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:141 +msgid "produce debugging output" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 +#, c-format +msgid "error: %s\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:281 +#, c-format +msgid "error: libgcrypt version mismatch\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:372 +#, c-format +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" +msgstr "" + +#~ msgid "~a: not a number~%" +#~ msgstr "~a: Nen=C3=AD =C4=8D=C3=ADslo~%" + +#~ msgid "failed to build the empty profile~%" +#~ msgstr "Nepoda=C5=99ilo se vytvo=C5=99it pr=C3=A1zdn=C3=BD profil~%" + +#~ msgid "download failed; use a newer Guile~%" +#~ msgstr "Sta=C5=BEen=C3=AD se nezda=C5=99ilo. Pou=C5=BEijte nov=C4=9Bj= =C5=A1=C3=AD Guile~%" + +#~ msgid "unsupported file type" +#~ msgstr "Nepodporovan=C3=BD typ souboru" diff --git a/po/guix/da.po b/po/guix/da.po index e9be5e9..8a87529 100644 --- a/po/guix/da.po +++ b/po/guix/da.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.9.0\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2015-10-28 16:31+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2015-10-31 19:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -19,95 +19,109 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" =20 -#: gnu/packages.scm:80 +#: gnu/packages.scm:76 #, scheme-format msgid "~a: patch not found" msgstr "~a: rettelse blev ikke fundet" =20 -#: gnu/packages.scm:91 +#: gnu/packages.scm:87 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "kunne ikke finde bootstraps bin=C3=A6re =C2=BB~a=C2=AB for syste= m =C2=BB~a=C2=AB" =20 -#: gnu/packages.scm:143 +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "kan ikke tilg=C3=A5 =C2=BB~a=C2=AB: ~a~%" =20 -#: gnu/packages.scm:388 +#: gnu/packages.scm:327 #, scheme-format msgid "looking for the latest release of GNU ~a..." msgstr "kigger efter den seneste udgivelse af GNU ~a..." =20 -#: gnu/packages.scm:395 +#: gnu/packages.scm:334 #, scheme-format msgid "~a: note: using ~a but ~a is available upstream~%" msgstr "~a: bem=C3=A6rk: bruger ~a men ~a er tilg=C3=A6ngelig opstr=C3=B8= m~%" =20 -#: gnu/packages.scm:417 gnu/packages.scm:452 +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "tvetydig pakkespecifikation =C2=BB~a=C2=AB~%" =20 -#: gnu/packages.scm:418 gnu/packages.scm:454 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "v=C3=A6lger ~a fra ~a~%" =20 -#: gnu/packages.scm:424 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: pakke ikke fundet for version ~a~%" =20 -#: gnu/packages.scm:426 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: ukendt pakke~%" =20 -#: gnu/packages.scm:442 +#: gnu/packages.scm:381 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "pakke =C2=BB~a=C2=AB mangler uddata =C2=BB~a=C2=AB~%" =20 -#: gnu/packages.scm:459 +#: gnu/packages.scm:398 #, scheme-format msgid "~a: package not found~%" msgstr "~a: pakken blev ikke fundet~%" =20 -#: gnu/services.scm:376 +#: gnu/services.scm:527 #, scheme-format msgid "no target of type '~a' for service ~s" msgstr "intet m=C3=A5l af typen =C2=BB~a=C2=AB for tjeneste ~s" =20 -#: gnu/services.scm:387 gnu/services.scm:447 +#: gnu/services.scm:538 gnu/services.scm:599 #, scheme-format msgid "more than one target service of type '~a'" msgstr "mere end en m=C3=A5ltjeneste af typen =C2=BB~a=C2=AB" =20 -#: gnu/services.scm:437 +#: gnu/services.scm:589 #, scheme-format msgid "service of type '~a' not found" msgstr "tjenste af typen =C2=BB~a=C2=AB blev ikke fundet" =20 -#: gnu/system.scm:547 +#: gnu/system.scm:545 #, scheme-format msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" -msgstr "brug af en streng for filen =C2=BB~a=C2=AB er for=C3=A6ldet; bru= g =C2=BBplain-file=C2=AB i stedet~%" +msgstr "" +"brug af en streng for filen =C2=BB~a=C2=AB er for=C3=A6ldet; brug =C2=BB= plain-file=C2=AB i stedet~%" =20 -#: gnu/system.scm:563 +#: gnu/system.scm:561 #, scheme-format -msgid "using a monadic value for '~a' is deprecated; use 'plain-file' in= stead~%" -msgstr "brug af en unik v=C3=A6rdi for =C2=BB~a=C2=AB er for=C3=A6ldet; = brug =C2=BBplain-file=C2=AB i stedet~%" +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" +"brug af en unik v=C3=A6rdi for =C2=BB~a=C2=AB er for=C3=A6ldet; brug =C2= =BBplain-file=C2=AB i stedet~%" + +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: ugyldigt nummer~%" =20 -#: gnu/system.scm:646 -msgid "system locale lacks a definition" -msgstr "systemsprog mangler en definition" +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "ikke genkendte opstartsparametre for =C2=BB~a=C2=AB~%" =20 -#: gnu/services/dmd.scm:131 +#: gnu/services/shepherd.scm:166 #, scheme-format msgid "service '~a' provided more than once" msgstr "tjeneste =C2=BB~a=C2=AB tilbudt mere end en gang" =20 +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + #: gnu/system/shadow.scm:213 #, scheme-format msgid "supplementary group '~a' of user '~a' is undeclared" @@ -124,19 +138,46 @@ msgid "invalid argument: ~a~%" msgstr "ugyldigt argument: ~a~%" =20 #: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 -#: guix/scripts/import/cran.scm:72 guix/scripts/import/elpa.scm:77 -#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:792 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 #: guix/scripts/publish.scm:355 #, scheme-format msgid "~A: unrecognized option~%" msgstr "~A: ikke genkendt tilvalg~%" =20 -#: guix/scripts/build.scm:107 +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "kunne ikke oprette GC-root =C2=BB~a=C2=AB: ~a~%" =20 -#: guix/scripts/build.scm:151 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "tvetydig pakkespecifikation =C2=BB~a=C2=AB~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" +"\n" +" --with-source=3DKILDE\n" +" brug KILDE n=C3=A5r den tilsvarende pakke bygg= es" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 msgid "" "\n" " -L, --load-path=3DDIR prepend DIR to the package module search pat= h" @@ -144,7 +185,7 @@ msgstr "" "\n" " -L, --load-path=3DMAPPE foranstil MAPPE til pakkemodulets s=C3=B8ges= ti" =20 -#: guix/scripts/build.scm:153 +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" @@ -152,7 +193,16 @@ msgstr "" "\n" " -K, --keep-failed bevar byggetr=C3=A6 for mislykkede bygninger" =20 -#: guix/scripts/build.scm:155 +#: guix/scripts/build.scm:286 +#, fuzzy +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" +"\n" +" -n, --dry-run byg ikke derivationerne" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" @@ -160,7 +210,7 @@ msgstr "" "\n" " -n, --dry-run byg ikke derivationerne" =20 -#: guix/scripts/build.scm:157 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" @@ -168,15 +218,16 @@ msgstr "" "\n" " --fallback fald tilbage til bygning n=C3=A5r erstatningen= fejler" =20 -#: guix/scripts/build.scm:159 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" msgstr "" "\n" -" --no-substitutes byg i stedet for en ny sortering af pr=C3=A6by= ggede substitutter" +" --no-substitutes byg i stedet for en ny sortering af pr=C3=A6by= ggede " +"substitutter" =20 -#: guix/scripts/build.scm:161 guix/scripts/size.scm:215 +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 msgid "" "\n" " --substitute-urls=3DURLS\n" @@ -186,7 +237,7 @@ msgstr "" " --substitute-urls=3DADRESSER\n" " hent substitut fra ADRESSER hvis de er godkend= t" =20 -#: guix/scripts/build.scm:164 +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" @@ -194,7 +245,7 @@ msgstr "" "\n" " --no-build-hook fors=C3=B8g ikke at aflaste bygninger via bygg= ekrogen" =20 -#: guix/scripts/build.scm:166 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" @@ -202,17 +253,19 @@ msgid "" msgstr "" "\n" " --max-silent-time=3DSEKUNDER\n" -" marker bygningen som mislykket efter SEKUNDER = af stilhed" +" marker bygningen som mislykket efter SEKUNDER = af " +"stilhed" =20 -#: guix/scripts/build.scm:169 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" msgstr "" "\n" -" --timeout=3DSEKUNDER marker bygningen som mislykket efter SEKUNDE= R af aktivitet" +" --timeout=3DSEKUNDER marker bygningen som mislykket efter SEKUNDE= R af " +"aktivitet" =20 -#: guix/scripts/build.scm:171 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" @@ -220,7 +273,13 @@ msgstr "" "\n" " --verbosity=3DNIVEAU brug det angivne uddybnings-NIVEAU" =20 -#: guix/scripts/build.scm:173 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" @@ -228,7 +287,7 @@ msgstr "" "\n" " -c, --cores=3DN tillad brugen af op til N CPU-kerner til byg= ningen" =20 -#: guix/scripts/build.scm:175 +#: guix/scripts/build.scm:310 msgid "" "\n" " -M, --max-jobs=3DN allow at most N build jobs" @@ -236,12 +295,12 @@ msgstr "" "\n" " -M, --max-jobs=3DN tillad h=C3=B8jest N-byggejob" =20 -#: guix/scripts/build.scm:261 guix/scripts/build.scm:268 +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 #, scheme-format msgid "not a number: '~a' option argument: ~a~%" msgstr "ikke et nummer: =C2=BB~a=C2=AB tilvalgsparameter: ~a~%" =20 -#: guix/scripts/build.scm:287 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" @@ -249,7 +308,7 @@ msgstr "" "Brug: guix build [TILVALG]... PAKKE-ELLER-AFLEDNING...\n" "Byg den angivne PAKKE-ELLER-AFLEDNING og returner deres uddatastier.\n" =20 -#: guix/scripts/build.scm:289 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" @@ -258,17 +317,19 @@ msgstr "" " -e, --expression=3DUDTRYK\n" " byg pakken eller derivationen UDTRYK evaluerer= til" =20 -#: guix/scripts/build.scm:291 +#: guix/scripts/build.scm:441 msgid "" "\n" -" -f, --file=3DFILE build the package or derivation that the cod= e within\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" " FILE evaluates to" msgstr "" "\n" -" -f, --file=3DFIL byg pakken eller derivationen som koden i FI= L evaluerer\n" +" -f, --file=3DFIL byg pakken eller derivationen som koden i FI= L " +"evaluerer\n" " til" =20 -#: guix/scripts/build.scm:294 +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" @@ -276,17 +337,18 @@ msgstr "" "\n" " -S, --source byg pakkernes kildederivationer" =20 -#: guix/scripts/build.scm:296 +#: guix/scripts/build.scm:446 msgid "" "\n" -" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be one\n" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" " of \"package\", \"all\" (default), or \"transi= tive\"" msgstr "" "\n" " --sources[=3DTYPE] bygningskildeafledninger; TYPE kan valgfrit = v=C3=A6re\n" " =C2=BBpackage=C2=AB, =C2=BBall=C2=AB (standard= ) eller =C2=BBtransitive=C2=AB" =20 -#: guix/scripts/build.scm:299 +#: guix/scripts/build.scm:449 msgid "" "\n" " -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" @@ -294,7 +356,7 @@ msgstr "" "\n" " -s, --system=3DSYSTEM fors=C3=B8ger at bygge for SYSTEM--f.eks., =C2= =BBi686-linux=C2=AB" =20 -#: guix/scripts/build.scm:301 +#: guix/scripts/build.scm:451 msgid "" "\n" " --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" @@ -302,17 +364,7 @@ msgstr "" "\n" " --target=3DTRIPLET krydsbyg for TRIPLET--f.eks., =C2=BBarmel-li= nux-gnu=C2=AB" =20 -#: guix/scripts/build.scm:303 -msgid "" -"\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" -msgstr "" -"\n" -" --with-source=3DKILDE\n" -" brug KILDE n=C3=A5r den tilsvarende pakke bygg= es" - -#: guix/scripts/build.scm:306 +#: guix/scripts/build.scm:453 msgid "" "\n" " --no-grafts do not graft packages" @@ -320,7 +372,7 @@ msgstr "" "\n" " --no-grafts pod ikke pakker" =20 -#: guix/scripts/build.scm:308 +#: guix/scripts/build.scm:455 msgid "" "\n" " -d, --derivations return the derivation paths of the given packa= ges" @@ -328,17 +380,24 @@ msgstr "" "\n" " -d, --derivations returner de afledte stier for de givne pakker" =20 -#: guix/scripts/build.scm:310 +#: guix/scripts/build.scm:457 +msgid "" +"\n" +" --check rebuild items to check for non-determinism iss= ues" +msgstr "" + +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" "\n" -" -r, --root=3DFIL g=C3=B8r FIL til en symbolsk henvisning for = resultatet, og\n" +" -r, --root=3DFIL g=C3=B8r FIL til en symbolsk henvisning for = resultatet, " +"og\n" " registrer den som en affaldsindsamlerroot" =20 -#: guix/scripts/build.scm:313 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" @@ -346,14 +405,15 @@ msgstr "" "\n" " --log-file returner logfilnavnen for de givne afledninger= " =20 -#: guix/scripts/build.scm:318 guix/scripts/download.scm:54 -#: guix/scripts/package.scm:292 guix/scripts/gc.scm:70 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 #: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 -#: guix/scripts/import/cran.scm:44 guix/scripts/pull.scm:83 -#: guix/scripts/substitute.scm:752 guix/scripts/system.scm:556 -#: guix/scripts/lint.scm:741 guix/scripts/publish.scm:63 -#: guix/scripts/edit.scm:43 guix/scripts/size.scm:223 -#: guix/scripts/graph.scm:398 guix/scripts/challenge.scm:181 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -361,14 +421,15 @@ msgstr "" "\n" " -h, --help vis denne hj=C3=A6lpetekst og afslut" =20 -#: guix/scripts/build.scm:320 guix/scripts/download.scm:56 -#: guix/scripts/package.scm:294 guix/scripts/gc.scm:72 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 #: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 -#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:85 -#: guix/scripts/substitute.scm:754 guix/scripts/system.scm:558 -#: guix/scripts/lint.scm:745 guix/scripts/publish.scm:65 -#: guix/scripts/edit.scm:45 guix/scripts/size.scm:225 -#: guix/scripts/graph.scm:400 guix/scripts/challenge.scm:183 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -376,7 +437,7 @@ msgstr "" "\n" " -V, --version vis versioninformation og afslut" =20 -#: guix/scripts/build.scm:347 +#: guix/scripts/build.scm:498 #, scheme-format msgid "" "invalid argument: '~a' option argument: ~a, ~\n" @@ -385,12 +446,12 @@ msgstr "" "ugyldigt argument: =C2=BB~a=C2=AB tilvalgsargumentet: ~a, ~\n" "skal v=C3=A6re =C2=BBpackage=C2=AB, =C2=BBall=C2=AB eller =C2=BBtransit= ive=C2=AB~%" =20 -#: guix/scripts/build.scm:478 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" -msgstr "kilder matcher ikke nogen pakke:~{ ~a~}~%" +msgid "~s: not something we can build~%" +msgstr "" =20 -#: guix/scripts/build.scm:536 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "ingen byggelog for =C2=BB~a=C2=AB~%" @@ -424,38 +485,87 @@ msgstr "" msgid "unsupported hash format: ~a~%" msgstr "ikke underst=C3=B8ttet hash-format: ~a~%" =20 -#: guix/scripts/download.scm:107 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 +#, scheme-format +msgid "~A: extraneous argument~%" +msgstr "~A: uvedkommende argument~%" + +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" +msgstr "~a: overf=C3=B8rsel mislykkede~%" + +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "~a: kunne ikke fortolke URI~%" =20 -#: guix/scripts/download.scm:118 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "~a: overf=C3=B8rsel mislykkede~%" =20 +#: guix/scripts/package.scm:102 +#, scheme-format +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "" +"Pr=C3=B8v =C2=BBinfo '(guix) Invoking guix package'=C2=AB for yderliger= e information.~%" + +#: guix/scripts/package.scm:124 +#, scheme-format +msgid "error: while creating directory `~a': ~a~%" +msgstr "fejl: under oprettelse af mappe =C2=BB~a=C2=AB: ~a~%" + #: guix/scripts/package.scm:128 #, scheme-format +msgid "Please create the `~a' directory, with you as the owner.~%" +msgstr "Opret venligst mappen =C2=BB~a=C2=AB, med dig som ejer.~%" + +#: guix/scripts/package.scm:135 +#, scheme-format +msgid "error: directory `~a' is not owned by you~%" +msgstr "fejl: mappen =C2=BB~a=C2=AB er ikke ejet af dig~%" + +#: guix/scripts/package.scm:138 +#, scheme-format +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "=C3=86ndr venligst ejeren af =C2=BB~a=C2=AB til brugeren ~s.~%" + +#: guix/scripts/package.scm:173 +#, scheme-format msgid "not removing generation ~a, which is current~%" msgstr "fjerner ikke generation ~a, som er nuv=C3=A6rende~%" =20 -#: guix/scripts/package.scm:135 +#: guix/scripts/package.scm:180 #, scheme-format msgid "no matching generation~%" msgstr "ingen matchende generation~%" =20 -#: guix/scripts/package.scm:138 guix/scripts/package.scm:734 -#: guix/scripts/system.scm:396 +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "ugyldig syntaks: ~a~%" =20 -#: guix/scripts/package.scm:219 +#: guix/scripts/package.scm:208 +#, scheme-format +msgid "nothing to be done~%" +msgstr "intet at udf=C3=B8re~%" + +#: guix/scripts/package.scm:222 +#, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "~a pakke i profil~%" +msgstr[1] "~a pakker i profil~%" + +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" msgstr "De f=C3=B8lgende milj=C3=B8variabeldefinitioner kan v=C3=A6re kr= =C3=A6vet:~%" =20 -#: guix/scripts/package.scm:235 +#: guix/scripts/package.scm:325 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -463,7 +573,7 @@ msgstr "" "Brug: guix-pakke [TILVALG] ... \n" "Installer, fjern eller opgrader pakker i en enkel transaktion.\n" =20 -#: guix/scripts/package.scm:237 +#: guix/scripts/package.scm:327 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -473,7 +583,7 @@ msgstr "" " -i, --install PAKKE ...\n" " installer PAKKER" =20 -#: guix/scripts/package.scm:240 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" @@ -483,7 +593,7 @@ msgstr "" " -e, --install-from-expression=3DUDTRYK\n" " installer pakken UDTRYK evaluerer til" =20 -#: guix/scripts/package.scm:243 +#: guix/scripts/package.scm:333 msgid "" "\n" " -f, --install-from-file=3DFILE\n" @@ -495,7 +605,7 @@ msgstr "" " installer pakken som koden i FIL evaluerer\n" " til" =20 -#: guix/scripts/package.scm:247 +#: guix/scripts/package.scm:337 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -505,7 +615,7 @@ msgstr "" " -r, --remove PAKKE ...\n" " fjern PAKKER" =20 -#: guix/scripts/package.scm:250 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" @@ -515,7 +625,7 @@ msgstr "" " opgrader alle de installerede pakker der match= er\n" " REGUDTRYK" =20 -#: guix/scripts/package.scm:252 +#: guix/scripts/package.scm:342 msgid "" "\n" " -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" @@ -525,15 +635,16 @@ msgstr "" " -m, --manifest=3DFIL opret en ny profiloprettelse med manifestet = fra\n" " FIL" =20 -#: guix/scripts/package.scm:255 +#: guix/scripts/package.scm:345 msgid "" "\n" " --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" msgstr "" "\n" -" --do-not--upgrade[=3DREGUDTRYK] opgrader ikke pakker der matcher = REGUDTRYK" +" --do-not--upgrade[=3DREGUDTRYK] opgrader ikke pakker der matcher = " +"REGUDTRYK" =20 -#: guix/scripts/package.scm:257 +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -541,7 +652,7 @@ msgstr "" "\n" " --roll-back rul tilbage til den forrige generation" =20 -#: guix/scripts/package.scm:259 +#: guix/scripts/package.scm:349 msgid "" "\n" " --search-paths[=3DKIND]\n" @@ -551,7 +662,7 @@ msgstr "" " --search-paths[=3DKIND]\n" " vis kr=C3=A6vede milj=C3=B8variabeldefinitione= r" =20 -#: guix/scripts/package.scm:262 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" @@ -561,7 +672,7 @@ msgstr "" " -l, --list-generations[=3DM=C3=98NSTER]\n" " vis generationer der matcher M=C3=98NSTER" =20 -#: guix/scripts/package.scm:265 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" @@ -571,7 +682,7 @@ msgstr "" " -d, --delete-generations[=3DM=C3=98NSTER]\n" " slet generationer der matcher M=C3=98NSTER" =20 -#: guix/scripts/package.scm:268 +#: guix/scripts/package.scm:358 msgid "" "\n" " -S, --switch-generation=3DPATTERN\n" @@ -581,7 +692,7 @@ msgstr "" " -S, --switch-generation=3DM=C3=98NSTER\n" " skift til et generationsmatchende M=C3=98NSTER= " =20 -#: guix/scripts/package.scm:271 +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" @@ -589,7 +700,7 @@ msgstr "" "\n" " -p, --profile=3DPROFIL brug PROFIL i stedet for brugerens standardp= rofil" =20 -#: guix/scripts/package.scm:274 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -597,7 +708,7 @@ msgstr "" "\n" " --bootstrap brug bootstrap Guile til at bygge profilen" =20 -#: guix/scripts/package.scm:276 guix/scripts/pull.scm:76 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" @@ -605,7 +716,7 @@ msgstr "" "\n" " --verbose lav uddybende uddata" =20 -#: guix/scripts/package.scm:279 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" @@ -613,7 +724,7 @@ msgstr "" "\n" " -s, --search=3DREGUDTRYK s=C3=B8g i synopsis og beskrivelse via REGUD= TRYK" =20 -#: guix/scripts/package.scm:281 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" @@ -623,7 +734,7 @@ msgstr "" " -I, --list-installed[=3DREGUDTRYK]\n" " vis installerede pakker der matcher REGUDTRYK" =20 -#: guix/scripts/package.scm:284 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" @@ -633,7 +744,7 @@ msgstr "" " -A, --list-available[=3DREGUDTRYK]\n" " vis tilg=C3=A6ngelige pakker der matcher REGUD= TRYK" =20 -#: guix/scripts/package.scm:287 +#: guix/scripts/package.scm:377 msgid "" "\n" " --show=3DPACKAGE show details about PACKAGE" @@ -641,64 +752,22 @@ msgstr "" "\n" " --show=3DPACKAGE vis detaljer om PAKKE" =20 -#: guix/scripts/package.scm:380 +#: guix/scripts/package.scm:472 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~a: ikke underst=C3=B8ttet type af s=C3=B8gesti%" =20 -#: guix/scripts/package.scm:550 guix/scripts/publish.scm:357 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "~A: uvedkommende argument~%" - -#: guix/scripts/package.scm:558 -#, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "Pr=C3=B8v =C2=BBinfo '(guix) Invoking guix package'=C2=AB for yd= erligere information.~%" - -#: guix/scripts/package.scm:580 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "fejl: under oprettelse af mappe =C2=BB~a=C2=AB: ~a~%" - -#: guix/scripts/package.scm:584 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "Opret venligst mappen =C2=BB~a=C2=AB, med dig som ejer.~%" - -#: guix/scripts/package.scm:591 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "fejl: mappen =C2=BB~a=C2=AB er ikke ejet af dig~%" - -#: guix/scripts/package.scm:594 -#, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "=C3=86ndr venligst ejeren af =C2=BB~a=C2=AB til brugeren ~s.~%" - -#: guix/scripts/package.scm:628 -#, scheme-format -msgid "nothing to be done~%" -msgstr "intet at udf=C3=B8re~%" - -#: guix/scripts/package.scm:644 -#, scheme-format -msgid "~a package in profile~%" -msgid_plural "~a packages in profile~%" -msgstr[0] "~a pakke i profil~%" -msgstr[1] "~a pakker i profil~%" - -#: guix/scripts/package.scm:668 +#: guix/scripts/package.scm:755 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "kan ikke skifte til generation =C2=BB~a=C2=AB~%" =20 -#: guix/scripts/package.scm:690 +#: guix/scripts/package.scm:771 #, scheme-format msgid "would install new manifest from '~a' with ~d entries~%" msgstr "vil installere nyt manifest fra =C2=BB~a=C2=AB med ~d poster~%" =20 -#: guix/scripts/package.scm:692 +#: guix/scripts/package.scm:773 #, scheme-format msgid "installing new manifest from '~a' with ~d entries~%" msgstr "installerer nyt manifest fra =C2=BB~a=C2=AB med ~d poster~%" @@ -810,6 +879,11 @@ msgstr "" msgid "invalid amount of storage: ~a~%" msgstr "ugyldig lagerm=C3=A6ngde: ~a~%" =20 +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "~A: uvedkommende argument~%" + #: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" @@ -821,7 +895,8 @@ msgstr "" "Brug: guix hash [TILVALG] FIL\n" "Returner den kryptografiske hash for FIL.\n" "\n" -"Underst=C3=B8ttede formater: =C2=BBnix-base32=C2=AB (standard), =C2=BBb= ase32=C2=AB og =C2=BBbase16=C2=AB (=C2=BBhex=C2=AB\n" +"Underst=C3=B8ttede formater: =C2=BBnix-base32=C2=AB (standard), =C2=BBb= ase32=C2=AB og " +"=C2=BBbase16=C2=AB (=C2=BBhex=C2=AB\n" "og =C2=BBhexadecimal=C2=AB kan ogs=C3=A5 bruges).\n" =20 #: guix/scripts/hash.scm:53 @@ -837,12 +912,12 @@ msgstr "" msgid "unrecognized option: ~a~%" msgstr "tilvalg blev ikke genkendt: ~a~%" =20 -#: guix/scripts/hash.scm:135 guix/ui.scm:458 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:138 guix/scripts/system.scm:685 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "forkert antal argumenter~%" @@ -877,17 +952,26 @@ msgstr "" "Usage: guix import cran PAKKENAVN\n" "Importer og konverter pakken CRAN for PAKKENAVN.\n" =20 -#: guix/scripts/import/cran.scm:87 +#: guix/scripts/import/cran.scm:44 +#, fuzzy +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" +"\n" +" -a, --archive=3DARKIV specificer arkivet" + +#: guix/scripts/import/cran.scm:94 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "kunne ikke hente beskrivelse for pakke =C2=BB~a=C2=AB:~%" =20 -#: guix/scripts/import/cran.scm:91 guix/scripts/import/elpa.scm:95 +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 #, scheme-format msgid "too few arguments~%" msgstr "for f=C3=A5 argumenter~%" =20 -#: guix/scripts/import/cran.scm:93 guix/scripts/import/elpa.scm:97 +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 #, scheme-format msgid "too many arguments~%" msgstr "for mange argumenter~%" @@ -1059,25 +1143,31 @@ msgstr "substitut p=C3=A5 =C2=BB~a=C2=AB mangler = en signatur~%" msgid "updating list of substitutes from '~a'... ~5,1f%" msgstr "opdaterer liste af substitutter fra =C2=BB~a=C2=AB... ~5,1f%" =20 -#: guix/scripts/substitute.scm:591 +#: guix/scripts/substitute.scm:585 #, scheme-format msgid "~s: unsupported server URI scheme~%" msgstr "~s: ikke underst=C3=B8ttet server-URI-skema~%" =20 -#: guix/scripts/substitute.scm:733 +#: guix/scripts/substitute.scm:596 +#, scheme-format +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" + +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "opslagsfejl for v=C3=A6rtsnavn: ~a~%" =20 -#: guix/scripts/substitute.scm:742 +#: guix/scripts/substitute.scm:748 msgid "" "Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" "Brug: guix substitute [TILVALG] ...\n" -"Internt v=C3=A6rkt=C3=B8j til at erstatte en pr=C3=A6bygget bin=C3=A6r = fil med en lokal bygning.\n" +"Internt v=C3=A6rkt=C3=B8j til at erstatte en pr=C3=A6bygget bin=C3=A6r = fil med en lokal " +"bygning.\n" =20 -#: guix/scripts/substitute.scm:744 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" @@ -1087,7 +1177,7 @@ msgstr "" " --query rapport om tilg=C3=A6ngeligheden for substitut= ter for\n" " lagerfilnavnene sendt til standardind" =20 -#: guix/scripts/substitute.scm:747 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -1099,11 +1189,15 @@ msgstr "" " hent LAGER-FIL og lagr den som en Nar i filen\= n" " DESTINATION" =20 -#: guix/scripts/substitute.scm:872 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" -msgstr "ACL for arkivimporter ser ikke ud til at v=C3=A6re initialiseret= , substitutter kan v=C3=A6re utilg=C3=A6ngelige\n" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" +msgstr "" +"ACL for arkivimporter ser ikke ud til at v=C3=A6re initialiseret, subst= itutter " +"kan v=C3=A6re utilg=C3=A6ngelige\n" =20 -#: guix/scripts/substitute.scm:954 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "~a: ikke genkendte tilvalg~%" @@ -1142,76 +1236,87 @@ msgstr "" msgid "wrong arguments" msgstr "forkerte argumenter" =20 -#: guix/scripts/system.scm:105 +#: guix/scripts/system.scm:110 #, scheme-format msgid "failed to register '~a' under '~a'~%" msgstr "kunne ikke registrere =C2=BB~a=C2=AB under =C2=BB~a=C2=AB~%" =20 -#: guix/scripts/system.scm:137 +#: guix/scripts/system.scm:142 #, scheme-format msgid "failed to install GRUB on device '~a'~%" msgstr "kunne ikke installere GRUB p=C3=A5 enhed =C2=BB~a=C2=AB~%" =20 -#: guix/scripts/system.scm:155 +#: guix/scripts/system.scm:160 #, scheme-format msgid "initializing the current root file system~%" msgstr "initialiserer det nuv=C3=A6rende root-filsystem~%" =20 -#: guix/scripts/system.scm:169 +#: guix/scripts/system.scm:174 #, scheme-format msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" msgstr "k=C3=B8rer ikke som =C2=BBroot=C2=AB, s=C3=A5 ejerskabet af =C2=BB= ~a=C2=AB kan v=C3=A6re forkert!~%" =20 #: guix/scripts/system.scm:219 #, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "ikke genkendte opstartsparametre for =C2=BB~a=C2=AB~%" +msgid "while talking to shepherd: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:265 +#, fuzzy, scheme-format +msgid "unloading service '~a'...~%" +msgstr "udpakker =C2=BB~a=C2=AB...~%" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" =20 -#: guix/scripts/system.scm:254 +#: guix/scripts/system.scm:294 #, scheme-format msgid "activating system...~%" msgstr "aktiverer system ...~%" =20 -#: guix/scripts/system.scm:338 +#: guix/scripts/system.scm:380 msgid "the DAG of services" msgstr "DAG'en for tjenester" =20 -#: guix/scripts/system.scm:351 -msgid "the dependency graph of dmd services" +#: guix/scripts/system.scm:393 +#, fuzzy +msgid "the dependency graph of shepherd services" msgstr "afh=C3=A6ngighedsgrafen for dmd-tjenester" =20 -#: guix/scripts/system.scm:369 +#: guix/scripts/system.scm:414 #, scheme-format msgid " file name: ~a~%" msgstr " filnavn: ~a~%" =20 -#: guix/scripts/system.scm:370 +#: guix/scripts/system.scm:415 #, scheme-format msgid " canonical file name: ~a~%" msgstr " kanonisk filnavn: ~a~%" =20 #. TRANSLATORS: Please preserve the two-space indentation. -#: guix/scripts/system.scm:374 +#: guix/scripts/system.scm:417 #, scheme-format msgid " label: ~a~%" msgstr " etikelt: ~a~%" =20 -#: guix/scripts/system.scm:375 +#: guix/scripts/system.scm:418 #, scheme-format msgid " root device: ~a~%" msgstr " root-enhed: ~a~%" =20 -#: guix/scripts/system.scm:376 +#: guix/scripts/system.scm:419 #, scheme-format msgid " kernel: ~a~%" msgstr " kerne: ~a~%" =20 -#: guix/scripts/system.scm:476 +#: guix/scripts/system.scm:527 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "initialiserer operativsystem under =C2=BB~a=C2=AB...~%" =20 -#: guix/scripts/system.scm:515 +#: guix/scripts/system.scm:566 msgid "" "Usage: guix system [OPTION] ACTION [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -1219,47 +1324,58 @@ msgstr "" "Brug: guix system [TILVALG] HANDLING [FIL]\n" "Byg operativsystemet dekl=C3=A6ret i FIL j=C3=A6vnf=C3=B8r HANDLING.\n" =20 -#: guix/scripts/system.scm:518 +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 msgid "The valid values for ACTION are:\n" msgstr "De gyldige v=C3=A6rdier for HANDLING er:\n" =20 -#: guix/scripts/system.scm:520 +#: guix/scripts/system.scm:571 msgid " reconfigure switch to a new operating system configuratio= n\n" msgstr " reconfigure skift til en ny operativsystemkonfiguration\= n" =20 -#: guix/scripts/system.scm:522 +#: guix/scripts/system.scm:573 msgid " list-generations list the system generations\n" msgstr " list-generations viser systemoprettelserne\n" =20 -#: guix/scripts/system.scm:524 -msgid " build build the operating system without installing= anything\n" +#: guix/scripts/system.scm:575 +msgid "" +" build build the operating system without installing anyth= ing\n" msgstr " build byg operativsystemet uden at installere noge= t\n" =20 -#: guix/scripts/system.scm:526 -msgid " vm build a virtual machine image that shares the= host's store\n" -msgstr " vm byg et virtuelt maskinaftryk som deler v=C3=A6= rtens lager\n" +#: guix/scripts/system.scm:577 +#, fuzzy +msgid " container build a container that shares the host's stor= e\n" +msgstr "" +" vm byg et virtuelt maskinaftryk som deler v=C3=A6rtens= lager\n" + +#: guix/scripts/system.scm:579 +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" +msgstr "" +" vm byg et virtuelt maskinaftryk som deler v=C3=A6rtens= lager\n" =20 -#: guix/scripts/system.scm:528 +#: guix/scripts/system.scm:581 msgid " vm-image build a freestanding virtual machine image\n" msgstr " vm-image byg et fritst=C3=A5ende virtuelt maskinaftry= k\n" =20 -#: guix/scripts/system.scm:530 +#: guix/scripts/system.scm:583 msgid " disk-image build a disk image, suitable for a USB stick\= n" msgstr " disk-image byg et diskaftryk, egnet for et USB-drev\n" =20 -#: guix/scripts/system.scm:532 +#: guix/scripts/system.scm:585 msgid " init initialize a root file system to run GNU\n" msgstr " init initialiser et rootfilsystem til at k=C3=B8r= e GNU.\n" =20 -#: guix/scripts/system.scm:534 +#: guix/scripts/system.scm:587 msgid " extension-graph emit the service extension graph in Dot forma= t\n" msgstr " extension-graph udsend tjenesteudvidelsesgrafen i Dot-format= \n" =20 -#: guix/scripts/system.scm:536 -msgid " dmd-graph emit the graph of dmd services in Dot format\= n" +#: guix/scripts/system.scm:589 +#, fuzzy +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" msgstr " dmd-graph udsend grafen for dmd-tjenester i Dot-format= \n" =20 -#: guix/scripts/system.scm:540 +#: guix/scripts/system.scm:593 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -1267,17 +1383,19 @@ msgstr "" "\n" " -d, --derivation returner de afledte stier for det givne system= " =20 -#: guix/scripts/system.scm:542 +#: guix/scripts/system.scm:595 msgid "" "\n" " --on-error=3DSTRATEGY\n" -" apply STRATEGY when an error occurs while read= ing FILE" +" apply STRATEGY when an error occurs while read= ing " +"FILE" msgstr "" "\n" " --on-error=3DSTRATEGI\n" -" brug STRATEGI n=C3=A5r den opst=C3=A5r en fejl= under l=C3=A6sning af FIL" +" brug STRATEGI n=C3=A5r den opst=C3=A5r en fejl= under l=C3=A6sning " +"af FIL" =20 -#: guix/scripts/system.scm:545 +#: guix/scripts/system.scm:598 msgid "" "\n" " --image-size=3DSIZE for 'vm-image', produce an image of SIZE" @@ -1285,7 +1403,7 @@ msgstr "" "\n" " --image-size=3DSTR for =C2=BBvm-image=C2=AB, lav et aftryk af S= TR" =20 -#: guix/scripts/system.scm:547 +#: guix/scripts/system.scm:600 msgid "" "\n" " --no-grub for 'init', do not install GRUB" @@ -1293,7 +1411,7 @@ msgstr "" "\n" " --no-grub for =C2=BBinit=C2=AB, installer ikke GRUB" =20 -#: guix/scripts/system.scm:549 +#: guix/scripts/system.scm:602 msgid "" "\n" " --share=3DSPEC for 'vm', share host file system according t= o SPEC" @@ -1301,7 +1419,7 @@ msgstr "" "\n" " --share=3DSPEC for =C2=BBvm=C2=AB, del v=C3=A6rtsfilsystem = j=C3=A6vnf=C3=B8r SPEC" =20 -#: guix/scripts/system.scm:551 +#: guix/scripts/system.scm:604 msgid "" "\n" " --expose=3DSPEC for 'vm', expose host file system according = to SPEC" @@ -1309,7 +1427,7 @@ msgstr "" "\n" " --expose=3DSPEC for =C2=BBvm=C2=AB, fremvis v=C3=A6rtsfilsys= tem j=C3=A6vnf=C3=B8r SPEC" =20 -#: guix/scripts/system.scm:553 +#: guix/scripts/system.scm:606 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -1317,50 +1435,50 @@ msgstr "" "\n" " --full-boot for =C2=BBvm=C2=AB, lav en fuld opstartssekven= s" =20 -#: guix/scripts/system.scm:637 +#: guix/scripts/system.scm:690 #, scheme-format msgid "no configuration file specified~%" msgstr "ingen konfigurationsfil angivet~%" =20 -#: guix/scripts/system.scm:700 +#: guix/scripts/system.scm:753 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: ukendt handling~%" =20 -#: guix/scripts/system.scm:715 +#: guix/scripts/system.scm:768 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "forkert antal argumenter for handling =C2=BB~a=C2=AB~%" =20 -#: guix/scripts/system.scm:720 +#: guix/scripts/system.scm:773 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system: mangler kommandonavn~%" =20 -#: guix/scripts/system.scm:722 +#: guix/scripts/system.scm:775 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Pr=C3=B8v =C2=BBguix system --help=C2=AB for yderligere informat= ion.~%" =20 -#: guix/scripts/lint.scm:124 +#: guix/scripts/lint.scm:126 #, scheme-format msgid "Available checkers:~%" msgstr "Tilg=C3=A6ngelige kontrolprogrammer:~%" =20 -#: guix/scripts/lint.scm:144 +#: guix/scripts/lint.scm:146 msgid "description should not be empty" msgstr "beskrivelse skal v=C3=A6re udfyldt" =20 -#: guix/scripts/lint.scm:154 +#: guix/scripts/lint.scm:156 msgid "Texinfo markup in description is invalid" msgstr "Texinfo-opm=C3=A6rkning i beskrivelse er ugyldig" =20 -#: guix/scripts/lint.scm:162 +#: guix/scripts/lint.scm:164 msgid "description should start with an upper-case letter or digit" msgstr "beskrivelse skal starte med et stort bogstav eller et tal" =20 # arg, hvad foreg=C3=A5r der her -#: guix/scripts/lint.scm:178 +#: guix/scripts/lint.scm:180 #, scheme-format msgid "" "sentences in description should be followed ~\n" @@ -1369,54 +1487,54 @@ msgstr "" "s=C3=A6tninger i beskrivelsen skal efterf=C3=B8lges ~\n" "af to mellemrum; mulig infraction~p ved ~{~a~^, ~}" =20 -#: guix/scripts/lint.scm:202 +#: guix/scripts/lint.scm:204 msgid "pkg-config should probably be a native input" msgstr "pkg-config skal sandsynligvis v=C3=A6re standarddata" =20 -#: guix/scripts/lint.scm:217 +#: guix/scripts/lint.scm:219 msgid "synopsis should not be empty" msgstr "synopsis skal v=C3=A6re udfyldt" =20 -#: guix/scripts/lint.scm:225 +#: guix/scripts/lint.scm:227 msgid "no period allowed at the end of the synopsis" msgstr "ingen periode er tilladt i slutningen af synopsen" =20 -#: guix/scripts/lint.scm:237 +#: guix/scripts/lint.scm:239 msgid "no article allowed at the beginning of the synopsis" msgstr "ingen artikel er tilladt i begyndelsen af synopsen" =20 -#: guix/scripts/lint.scm:244 +#: guix/scripts/lint.scm:246 msgid "synopsis should be less than 80 characters long" msgstr "synopsis skal v=C3=A6re mindre end 80 tegn lang" =20 -#: guix/scripts/lint.scm:250 +#: guix/scripts/lint.scm:252 msgid "synopsis should start with an upper-case letter or digit" msgstr "synopsis skal starte med et stort bogstav eller et tal" =20 -#: guix/scripts/lint.scm:257 +#: guix/scripts/lint.scm:259 msgid "synopsis should not start with the package name" msgstr "synopsis skal ikke starte med pakkenavnet" =20 -#: guix/scripts/lint.scm:348 guix/scripts/lint.scm:360 +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a kan ikke n=C3=A5s: ~a (~s)" =20 -#: guix/scripts/lint.scm:367 +#: guix/scripts/lint.scm:372 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "URI ~a dom=C3=A6ne blev ikke fundet: ~a" =20 -#: guix/scripts/lint.scm:375 +#: guix/scripts/lint.scm:380 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a kan ikke n=C3=A5s: ~a" =20 -#: guix/scripts/lint.scm:401 +#: guix/scripts/lint.scm:406 msgid "invalid value for home page" msgstr "ugyldig v=C3=A6rdi for hjemmeside" =20 -#: guix/scripts/lint.scm:404 +#: guix/scripts/lint.scm:409 #, scheme-format msgid "invalid home page URL: ~s" msgstr "ugyldig hjemmesideadresse: ~s" @@ -1425,115 +1543,136 @@ msgstr "ugyldig hjemmesideadresse: ~s" msgid "file names of patches should start with the package name" msgstr "filnavn for rettelser skal starte med pakkenavnet" =20 -#: guix/scripts/lint.scm:467 +#: guix/scripts/lint.scm:466 #, scheme-format msgid "~a: ~a: proposed synopsis: ~s~%" msgstr "~a: ~a: foresl=C3=A5et synopsis: ~s~%" =20 -#: guix/scripts/lint.scm:479 +#: guix/scripts/lint.scm:478 #, scheme-format msgid "~a: ~a: proposed description:~% \"~a\"~%" msgstr "~a: ~a: foresl=C3=A5et beskrivelse:~% =C2=BB~a=C2=AB~%" =20 -#: guix/scripts/lint.scm:516 +#: guix/scripts/lint.scm:515 msgid "all the source URIs are unreachable:" msgstr "alle kilde-URI'erne kan ikke n=C3=A5s:" =20 -#: guix/scripts/lint.scm:539 +#: guix/scripts/lint.scm:538 msgid "the source file name should contain the package name" msgstr "kildefilnavnet skal indeholde pakkenavnet" =20 -#: guix/scripts/lint.scm:548 guix/scripts/lint.scm:552 +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 #, scheme-format msgid "failed to create derivation: ~a" msgstr "kunne ikke oprette afledning: ~a" =20 -#: guix/scripts/lint.scm:558 +#: guix/scripts/lint.scm:557 #, scheme-format msgid "failed to create derivation: ~s~%" msgstr "kunne ikke oprette afledning: ~s~%" =20 -#: guix/scripts/lint.scm:568 +#: guix/scripts/lint.scm:567 msgid "invalid license field" msgstr "ugyldigt licensfelt" =20 -#: guix/scripts/lint.scm:582 +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "kunne ikke indl=C3=A6se =C2=BB~a=C2=AB: ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "tabulering p=C3=A5 linje ~a, kolonne ~a" =20 -#: guix/scripts/lint.scm:591 +#: guix/scripts/lint.scm:647 #, scheme-format msgid "trailing white space on line ~a" msgstr "efterstillet mellemrum p=C3=A5 linje ~a" =20 -#: guix/scripts/lint.scm:601 +#: guix/scripts/lint.scm:657 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "linjen ~a er alt for lang (~a tegn)" =20 -#: guix/scripts/lint.scm:612 +#: guix/scripts/lint.scm:668 #, scheme-format msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" -msgstr "linjen ~a: parenteser er ensomme, flyt til den forrige eller n=C3= =A6ste linje" +msgstr "" +"linjen ~a: parenteser er ensomme, flyt til den forrige eller n=C3=A6ste= linje" =20 -#: guix/scripts/lint.scm:667 +#: guix/scripts/lint.scm:723 msgid "Validate package descriptions" msgstr "Valider pakkebeskrivelser" =20 -#: guix/scripts/lint.scm:671 +#: guix/scripts/lint.scm:727 msgid "Validate synopsis & description of GNU packages" msgstr "Valider synopsis og beskrivelse for GNU-pakker" =20 -#: guix/scripts/lint.scm:675 +#: guix/scripts/lint.scm:731 msgid "Identify inputs that should be native inputs" msgstr "Identificer inddata som skal v=C3=A6re standarddata" =20 -#: guix/scripts/lint.scm:679 +#: guix/scripts/lint.scm:735 msgid "Validate file names and availability of patches" msgstr "Valider filnavne og tilg=C3=A6ngelighed for rettelser" =20 -#: guix/scripts/lint.scm:683 +#: guix/scripts/lint.scm:739 msgid "Validate home-page URLs" msgstr "Valider hjemmesiders adresser" =20 #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/scripts/lint.scm:689 +#: guix/scripts/lint.scm:745 msgid "Make sure the 'license' field is a or a list thereof" msgstr "Sikr at feltet =C2=BBlicense=C2=AB er en eller en list= e deraf" =20 -#: guix/scripts/lint.scm:694 +#: guix/scripts/lint.scm:750 msgid "Validate source URLs" msgstr "Valider kildeadresser" =20 -#: guix/scripts/lint.scm:698 +#: guix/scripts/lint.scm:754 msgid "Validate file names of sources" msgstr "Valider filnavne for kilder" =20 -#: guix/scripts/lint.scm:702 +#: guix/scripts/lint.scm:758 msgid "Report failure to compile a package to a derivation" msgstr "Rapporter mislykket kompilering af en pakke til en afledning" =20 -#: guix/scripts/lint.scm:706 +#: guix/scripts/lint.scm:762 msgid "Validate package synopses" msgstr "Valider pakkesynopser" =20 -#: guix/scripts/lint.scm:710 +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 msgid "Look for formatting issues in the source" msgstr "Kig efter formateringsproblemstillinger i kilden" =20 -#: guix/scripts/lint.scm:735 +#: guix/scripts/lint.scm:796 msgid "" "Usage: guix lint [OPTION]... [PACKAGE]...\n" "Run a set of checkers on the specified package; if none is specified,\n= " "run the checkers on all packages.\n" msgstr "" "Brug: guix lint [TILVALG]... [PAKKE]...\n" -"K=C3=B8r et s=C3=A6t af kontroller p=C3=A5 den specificerede pakke; hvi= s ingen er specificeret,\n" +"K=C3=B8r et s=C3=A6t af kontroller p=C3=A5 den specificerede pakke; hvi= s ingen er " +"specificeret,\n" "s=C3=A5 k=C3=B8r kontrollerne p=C3=A5 alle pakker.\n" =20 -#: guix/scripts/lint.scm:738 +#: guix/scripts/lint.scm:799 msgid "" "\n" " -c, --checkers=3DCHECKER1,CHECKER2...\n" @@ -1543,7 +1682,7 @@ msgstr "" " -c, --checkers=3DKONTROL1,KONTROL2...\n" " k=C3=B8r kun de specificerede kontroller" =20 -#: guix/scripts/lint.scm:743 +#: guix/scripts/lint.scm:804 msgid "" "\n" " -l, --list-checkers display the list of available lint checkers" @@ -1551,7 +1690,7 @@ msgstr "" "\n" " -l, --list-checkers vis listen med tilg=C3=A6ngelige lint-kontroll= er" =20 -#: guix/scripts/lint.scm:763 +#: guix/scripts/lint.scm:824 #, scheme-format msgid "~a: invalid checker~%" msgstr "~a: ugyldig kontrol~%" @@ -1622,24 +1761,30 @@ msgstr "server k=C3=B8rer som root; overvej at br= uge tilvalget =C2=BB--user=C2=AB!~%" msgid "publishing ~a on ~a, port ~d~%" msgstr "udgiver ~a p=C3=A5 ~a, port ~d~%" =20 -#: guix/scripts/edit.scm:40 +#: guix/scripts/edit.scm:41 +#, fuzzy msgid "" "Usage: guix edit PACKAGE...\n" -"Start $EDITOR to edit the definitions of PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" msgstr "" "Brug: guix edit PAKKE...\n" "Start $EDITOR for at redigere definitionerne for PAKKE...\n" =20 -#: guix/scripts/edit.scm:58 +#: guix/scripts/edit.scm:62 #, scheme-format msgid "file '~a' not found in search path ~s~%" msgstr "filen =C2=BB~a=C2=AB blev ikke fundet i s=C3=B8gestien ~s~%" =20 -#: guix/scripts/edit.scm:70 +#: guix/scripts/edit.scm:83 #, scheme-format msgid "source location of package '~a' is unknown~%" msgstr "kildeplacering for pakken =C2=BB~a=C2=AB er ukendt~%" =20 +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "kunne ikke indl=C3=A6se =C2=BB~a=C2=AB: ~a~%" + #: guix/scripts/size.scm:75 #, scheme-format msgid "no available substitute information for '~a'~%" @@ -1696,43 +1841,48 @@ msgstr "manglende lagerpostargument\n" msgid "too many arguments\n" msgstr "for mange argumenter\n" =20 -#: guix/scripts/graph.scm:105 +#: guix/scripts/graph.scm:76 msgid "the DAG of packages, excluding implicit inputs" msgstr "DAG'en for pakker, ekskluderende implicitte inddata" =20 -#: guix/scripts/graph.scm:155 +#: guix/scripts/graph.scm:132 msgid "the DAG of packages, including implicit inputs" msgstr "DAG'en for pakker, inkluderende implicitte inddata" =20 -#: guix/scripts/graph.scm:179 +#: guix/scripts/graph.scm:141 +#, fuzzy +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "DAG'en for pakker, inkluderende implicitte inddata" + +#: guix/scripts/graph.scm:171 msgid "same as 'bag', but without the bootstrap nodes" msgstr "samme som =C2=BBbag=C2=ABm uden bootstrap-knuder" =20 -#: guix/scripts/graph.scm:222 +#: guix/scripts/graph.scm:216 msgid "the DAG of derivations" msgstr "DAG'en for afledninger" =20 -#: guix/scripts/graph.scm:246 +#: guix/scripts/graph.scm:240 #, scheme-format msgid "references for '~a' are not known~%" msgstr "referencer for =C2=BB~a=C2=AB er ikke kendt~%" =20 -#: guix/scripts/graph.scm:253 +#: guix/scripts/graph.scm:247 msgid "the DAG of run-time dependencies (store references)" msgstr "DAG'en for k=C3=B8rselstidsafh=C3=A6ngigheder (lagerreferencer)" =20 -#: guix/scripts/graph.scm:282 +#: guix/scripts/graph.scm:277 #, scheme-format msgid "~a: unknown node type~%" msgstr "~a: ukendt knudetype~%" =20 -#: guix/scripts/graph.scm:286 +#: guix/scripts/graph.scm:281 msgid "The available node types are:\n" msgstr "De gyldige knudetyper er:\n" =20 #. TRANSLATORS: Here 'dot' is the name of a program; it must not be #. translated. -#: guix/scripts/graph.scm:389 +#: guix/scripts/graph.scm:317 msgid "" "Usage: guix graph PACKAGE...\n" "Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" @@ -1740,7 +1890,7 @@ msgstr "" "Brug: guix graph PAKKE...\n" "Udsend en Graphviz-repr=C3=A6sentation (dot) af afh=C3=A6ngighederne fo= r PAKKE...\n" =20 -#: guix/scripts/graph.scm:391 +#: guix/scripts/graph.scm:319 msgid "" "\n" " -t, --type=3DTYPE represent nodes of the given TYPE" @@ -1748,7 +1898,7 @@ msgstr "" "\n" " -t, --type=3DTYPE repr=C3=A6senter knuder for den givne TYPE" =20 -#: guix/scripts/graph.scm:393 +#: guix/scripts/graph.scm:321 msgid "" "\n" " --list-types list the available graph types" @@ -1756,7 +1906,7 @@ msgstr "" "\n" " --list-types vis de tilg=C3=A6ngelige graftyper" =20 -#: guix/scripts/graph.scm:395 +#: guix/scripts/graph.scm:323 msgid "" "\n" " -e, --expression=3DEXPR consider the package EXPR evaluates to" @@ -1817,86 +1967,146 @@ msgstr "" " --substitute-urls=3DADRESSER\n" " sammenlign byggeresultater med dem p=C3=A5 ADR= ESSER" =20 -#: guix/gnu-maintenance.scm:418 +#: guix/gnu-maintenance.scm:514 msgid "Updater for GNU packages" msgstr "Opdater for GNU-pakker" =20 -#: guix/upstream.scm:156 +#: guix/gnu-maintenance.scm:521 +#, fuzzy +msgid "Updater for GNOME packages" +msgstr "Opdater for GNU-pakker" + +#: guix/scripts/container.scm:25 +msgid "" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" +msgstr "" + +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" + +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix system: mangler kommandonavn~%" + +#: guix/scripts/container.scm:63 +#, fuzzy, scheme-format +msgid "guix container: invalid action~%" +msgstr "guix import: ugyldig import=C3=B8r~%" + +#: guix/scripts/container/exec.scm:40 +msgid "" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" +msgstr "" + +#: guix/scripts/container/exec.scm:69 +#, fuzzy, scheme-format +msgid "~a: extraneous argument~%" +msgstr "~A: uvedkommende argument~%" + +#: guix/scripts/container/exec.scm:80 +#, fuzzy, scheme-format +msgid "no pid specified~%" +msgstr "ingen konfigurationsfil angivet~%" + +#: guix/scripts/container/exec.scm:83 +#, fuzzy, scheme-format +msgid "no command specified~%" +msgstr "ingen konfigurationsfil angivet~%" + +#: guix/scripts/container/exec.scm:86 +#, scheme-format +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" +msgstr "" + +#: guix/upstream.scm:158 #, scheme-format msgid "signature verification failed for `~a'~%" msgstr "signaturverifikation mislykkedes for =C2=BB~a=C2=AB~%" =20 -#: guix/upstream.scm:158 +#: guix/upstream.scm:160 #, scheme-format msgid "(could be because the public key is not in your keyring)~%" msgstr "(kunne v=C3=A6re fordi den offentlige n=C3=B8gle ikke er i din n= =C3=B8glering)~%" =20 -#: guix/upstream.scm:190 +#: guix/upstream.scm:192 msgid "gz" msgstr "gz" =20 -#: guix/upstream.scm:253 +#: guix/upstream.scm:255 #, scheme-format msgid "~a: could not locate source file" msgstr "~a: kunne ikke lokalisere kildefil" =20 -#: guix/upstream.scm:258 +#: guix/upstream.scm:260 #, scheme-format msgid "~a: ~a: no `version' field in source; skipping~%" msgstr "~a: ~a: intet =C2=BBversionsfelt=C2=AB i kilde; udelader~%" =20 -#: guix/ui.scm:234 +#: guix/ui.scm:236 msgid "entering debugger; type ',bt' for a backtrace\n" msgstr "g=C3=A5r i fejls=C3=B8ger; tast =C2=BB,bt=C2=AB for en tilbagesp= oring\n" =20 -#: guix/ui.scm:250 guix/ui.scm:267 +#: guix/ui.scm:252 guix/ui.scm:269 #, scheme-format msgid "failed to load '~a': ~a~%" msgstr "kunne ikke indl=C3=A6se =C2=BB~a=C2=AB: ~a~%" =20 -#: guix/ui.scm:253 +#: guix/ui.scm:255 #, scheme-format msgid "~a: error: ~a~%" msgstr "~a: fejl: ~a~%" =20 -#: guix/ui.scm:256 guix/ui.scm:510 +#: guix/ui.scm:258 guix/ui.scm:512 #, scheme-format msgid "exception thrown: ~s~%" msgstr "undtagelse smidt: ~s~%" =20 -#: guix/ui.scm:258 guix/ui.scm:276 +#: guix/ui.scm:260 guix/ui.scm:278 #, scheme-format msgid "failed to load '~a':~%" msgstr "kunne ikke indl=C3=A6se =C2=BB~a=C2=AB:~%" =20 -#: guix/ui.scm:270 +#: guix/ui.scm:272 #, scheme-format msgid "~a: warning: ~a~%" msgstr "~a: advarsel: ~a~%" =20 -#: guix/ui.scm:273 +#: guix/ui.scm:275 #, scheme-format msgid "failed to load '~a': exception thrown: ~s~%" msgstr "kunne ikke indl=C3=A6se =C2=BB~a=C2=AB: undtagelse smidt: ~s~%" =20 -#: guix/ui.scm:285 +#: guix/ui.scm:287 #, scheme-format msgid "failed to install locale: ~a~%" msgstr "kunne ikke installere sprog: ~a~%" =20 -#: guix/ui.scm:304 +#: guix/ui.scm:306 +#, fuzzy msgid "" -"Copyright (C) 2015 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" "Ophavsret 2015 Guix-forfatterne\n" -"Licens GPLv3+: GNU GPL version 3 eller senere \n" -"Dette er et frit program; du kan frit =C3=A6ndre og videredistribuere p= rogrammet.\n" +"Licens GPLv3+: GNU GPL version 3 eller senere \n" +"Dette er et frit program; du kan frit =C3=A6ndre og videredistribuere " +"programmet.\n" "Der er INGEN GARANTI, inden for lovens rammer.\n" =20 -#: guix/ui.scm:312 +#: guix/ui.scm:314 #, scheme-format msgid "" "\n" @@ -1905,7 +2115,7 @@ msgstr "" "\n" "Rapporter fejl til: ~a." =20 -#: guix/ui.scm:314 +#: guix/ui.scm:316 #, scheme-format msgid "" "\n" @@ -1914,7 +2124,7 @@ msgstr "" "\n" "~a hjemmeside: <~a>" =20 -#: guix/ui.scm:316 +#: guix/ui.scm:318 msgid "" "\n" "General help using GNU software: " @@ -1922,219 +2132,219 @@ msgstr "" "\n" "Generel hj=C3=A6lp til brugen af GNU-programmer: " =20 -#: guix/ui.scm:361 +#: guix/ui.scm:363 #, scheme-format msgid "'~a' is not a valid regular expression: ~a~%" msgstr "=C2=BB~a=C2=AB er ikke et gyldigt regul=C3=A6rt udtryk: ~a~%" =20 -#: guix/ui.scm:367 +#: guix/ui.scm:369 #, scheme-format msgid "~a: invalid number~%" msgstr "~a: ugyldigt nummer~%" =20 -#: guix/ui.scm:384 +#: guix/ui.scm:386 #, scheme-format msgid "invalid number: ~a~%" msgstr "ugyldigt nummer: ~a~%" =20 -#: guix/ui.scm:407 +#: guix/ui.scm:409 #, scheme-format msgid "unknown unit: ~a~%" msgstr "ukendt enhed: ~a~%" =20 -#: guix/ui.scm:418 +#: guix/ui.scm:420 #, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "~a:~a:~a: pakken =C2=BB~a=C2=AB har ugyldige inddata: ~s~%" =20 -#: guix/ui.scm:425 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" msgstr "~a: ~a: byggesystem =C2=BB~a=C2=AB underst=C3=B8tter ikke krydsb= ygninger~%" =20 -#: guix/ui.scm:430 +#: guix/ui.scm:432 #, scheme-format msgid "profile '~a' does not exist~%" msgstr "profilen =C2=BB~a=C2=AB findes ikke~%" =20 -#: guix/ui.scm:433 +#: guix/ui.scm:435 #, scheme-format msgid "generation ~a of profile '~a' does not exist~%" msgstr "oprettelse ~a af profilen =C2=BB~a=C2=AB findes ikke~%" =20 -#: guix/ui.scm:440 +#: guix/ui.scm:442 #, scheme-format msgid "corrupt input while restoring '~a' from ~s~%" msgstr "=C3=B8delagte inddata under gendannelse af =C2=BB~a=C2=AB fra ~s= ~%" =20 -#: guix/ui.scm:442 +#: guix/ui.scm:444 #, scheme-format msgid "corrupt input while restoring archive from ~s~%" msgstr "=C3=B8delagte inddata under gendannelse af arkiv fra ~s~%" =20 -#: guix/ui.scm:445 +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "kunne ikke forbinde til =C2=BB~a=C2=AB: ~a~%" =20 -#: guix/ui.scm:450 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "bygning mislykkedes: ~a~%" =20 -#: guix/ui.scm:453 +#: guix/ui.scm:455 #, scheme-format msgid "reference to invalid output '~a' of derivation '~a'~%" msgstr "reference til ugyldige uddata =C2=BB~a=C2=AB for afledning =C2=BB= ~a=C2=AB~%" =20 -#: guix/ui.scm:464 +#: guix/ui.scm:466 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" =20 -#: guix/ui.scm:499 +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "kunne ikke l=C3=A6se udtryk ~s: ~s~%" =20 -#: guix/ui.scm:505 +#: guix/ui.scm:507 #, scheme-format msgid "failed to evaluate expression '~a':~%" msgstr "kunne ikke evaluere udtryk =C2=BB~a=C2=AB:~%" =20 -#: guix/ui.scm:508 +#: guix/ui.scm:510 #, scheme-format msgid "syntax error: ~a~%" msgstr "syntaksfejl: ~a~%" =20 -#: guix/ui.scm:522 +#: guix/ui.scm:524 #, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "udtryk ~s evaluerer ikke til en pakke~%" =20 -#: guix/ui.scm:582 +#: guix/ui.scm:586 #, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" msgstr[0] "~:[Den f=C3=B8lgende afledning ville blive bygget:~%~{ ~a~%= ~}~;~]" msgstr[1] "~:[De f=C3=B8lgende afledninger ville blive bygget:~%~{ ~a~= %~}~;~]" =20 -#: guix/ui.scm:587 +#: guix/ui.scm:591 #, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[Den f=C3=B8lgende fil ville blive hentet:~%~{ ~a~%~}~;~]= " msgstr[1] "~:[De f=C3=B8lgende filer ville blive hentet:~%~{ ~a~%~}~;~= ]" =20 -#: guix/ui.scm:593 +#: guix/ui.scm:597 #, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[Den f=C3=B8lgende afledning vil blive bygget:~%~{ ~a~%~}= ~;~]" msgstr[1] "~:[De f=C3=B8lgende afledninger vil blive bygget:~%~{ ~a~%~= }~;~]" =20 -#: guix/ui.scm:598 +#: guix/ui.scm:602 #, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" msgstr[0] "~:[Den f=C3=B8lgende fil vil blive hentet:~%~{ ~a~%~}~;~]" msgstr[1] "~:[De f=C3=B8lgende filer vil blive hentet:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:653 +#: guix/ui.scm:657 #, scheme-format msgid "The following package would be removed:~%~{~a~%~}~%" msgid_plural "The following packages would be removed:~%~{~a~%~}~%" msgstr[0] "Den f=C3=B8lgende pakke ville blive fjernet:~%~{~a~%~}~%" msgstr[1] "De f=C3=B8lgende pakker ville blive fjernet:~%~{~a~%~}~%" =20 -#: guix/ui.scm:658 +#: guix/ui.scm:662 #, scheme-format msgid "The following package will be removed:~%~{~a~%~}~%" msgid_plural "The following packages will be removed:~%~{~a~%~}~%" msgstr[0] "Den f=C3=B8lgende pakke vil blive fjernet:~%~{~a~%~}~%" msgstr[1] "De f=C3=B8lgende pakker vil blive fjernet:~%~{~a~%~}~%" =20 -#: guix/ui.scm:671 +#: guix/ui.scm:675 #, scheme-format msgid "The following package would be downgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" msgstr[0] "Den f=C3=B8lgende pakke ville blive nedgraderet:~%~{~a~%~}~%" msgstr[1] "De f=C3=B8lgende pakker ville blive nedgraderet:~%~{~a~%~}~%" =20 -#: guix/ui.scm:676 +#: guix/ui.scm:680 #, scheme-format msgid "The following package will be downgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" msgstr[0] "Den f=C3=B8lgende pakke vil blive nedgraderet:~%~{~a~%~}~%" msgstr[1] "De f=C3=B8lgende pakker vil blive nedgraderet:~%~{~a~%~}~%" =20 -#: guix/ui.scm:689 +#: guix/ui.scm:693 #, scheme-format msgid "The following package would be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" msgstr[0] "Den f=C3=B8lgende pakke ville blive opgraderet:~%~{~a~%~}~%" msgstr[1] "De f=C3=B8lgende pakker ville blive opgraderet:~%~{~a~%~}~%" =20 -#: guix/ui.scm:694 +#: guix/ui.scm:698 #, scheme-format msgid "The following package will be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" msgstr[0] "Den f=C3=B8lgende pakke vil blive opgraderet:~%~{~a~%~}~%" msgstr[1] "De f=C3=B8lgende pakker vil blive opgraderet:~%~{~a~%~}~%" =20 -#: guix/ui.scm:705 +#: guix/ui.scm:709 #, scheme-format msgid "The following package would be installed:~%~{~a~%~}~%" msgid_plural "The following packages would be installed:~%~{~a~%~}~%" msgstr[0] "Den f=C3=B8lgende pakke ville blive installeret:~%~{~a~%~}~%" msgstr[1] "De f=C3=B8lgende pakker ville blive installeret:~%~{~a~%~}~%" =20 -#: guix/ui.scm:710 +#: guix/ui.scm:714 #, scheme-format msgid "The following package will be installed:~%~{~a~%~}~%" msgid_plural "The following packages will be installed:~%~{~a~%~}~%" msgstr[0] "Den f=C3=B8lgende pakke vil blive installeret:~%~{~a~%~}~%" msgstr[1] "De f=C3=B8lgende pakker vil blive installeret:~%~{~a~%~}~%" =20 -#: guix/ui.scm:727 +#: guix/ui.scm:731 msgid "" msgstr "" =20 -#: guix/ui.scm:746 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "kunne ikke oprette konfiguratinsmappe =C2=BB~a=C2=AB: ~a~%" =20 -#: guix/ui.scm:865 guix/ui.scm:879 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "ukendt" =20 -#: guix/ui.scm:1029 +#: guix/ui.scm:1033 #, scheme-format msgid "Generation ~a\t~a" msgstr "Generation ~a\t~a" =20 -#: guix/ui.scm:1036 +#: guix/ui.scm:1040 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(nuv=C3=A6rende)~%" =20 -#: guix/ui.scm:1053 +#: guix/ui.scm:1057 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "skiftede fra generation ~a til ~a~%" =20 -#: guix/ui.scm:1069 +#: guix/ui.scm:1073 #, scheme-format msgid "deleting ~a~%" msgstr "sletter ~a~%" =20 -#: guix/ui.scm:1117 +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Pr=C3=B8v =C2=BBguix --help=C2=AB for yderligere information.~%" =20 -#: guix/ui.scm:1144 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -2142,31 +2352,31 @@ msgstr "" "Brug: guix KOMMANDO ARG...\n" "K=C3=B8r KOMMANDO med ARG.\n" =20 -#: guix/ui.scm:1147 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "KOMMANDO skal v=C3=A6re en af underkommandoerne vist nedenfor:\n= " =20 -#: guix/ui.scm:1167 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: kommando blev ikke fundet~%" =20 -#: guix/ui.scm:1184 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: mangler kommandonavn~%" =20 -#: guix/ui.scm:1192 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: ikke genkendt tilvalg =C2=BB~a=C2=AB~%" =20 -#: guix/http-client.scm:228 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "f=C3=B8lger omdirigering til =C2=BB~a=C2=AB...~%" =20 -#: guix/http-client.scm:237 +#: guix/http-client.scm:269 msgid "download failed" msgstr "overf=C3=B8rsel mislykkedes" =20 @@ -2217,116 +2427,142 @@ msgid "guix-daemon -- perform derivation builds= and store accesses" msgstr "guix-daemon - udf=C3=B8r afledningsbygninger og lageradgange" =20 #: nix/nix-daemon/guix-daemon.cc:63 -msgid "This program is a daemon meant to run in the background. It serv= es requests sent over a Unix-domain socket. It accesses the store, and b= uilds derivations on behalf of its clients." -msgstr "Dette program er en =C3=A6dmon lavet til at k=C3=B8re i baggrund= en. Den betjener foresp=C3=B8rgsler sendt over en Unix-dom=C3=A6nesokkel.= Den tilg=C3=A5r lageret, og bgyger afledninger p=C3=A5 vegne af dens kli= enter." +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." +msgstr "" +"Dette program er en =C3=A6dmon lavet til at k=C3=B8re i baggrunden. Den= betjener " +"foresp=C3=B8rgsler sendt over en Unix-dom=C3=A6nesokkel. Den tilg=C3=A5= r lageret, og bgyger " +"afledninger p=C3=A5 vegne af dens klienter." =20 -#: nix/nix-daemon/guix-daemon.cc:86 +#: nix/nix-daemon/guix-daemon.cc:87 msgid "SYSTEM" msgstr "SYSTEM" =20 -#: nix/nix-daemon/guix-daemon.cc:87 +#: nix/nix-daemon/guix-daemon.cc:88 msgid "assume SYSTEM as the current system type" msgstr "antag SYSTEM som den nuv=C3=A6rende systemtype" =20 -#: nix/nix-daemon/guix-daemon.cc:88 nix/nix-daemon/guix-daemon.cc:91 +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 msgid "N" msgstr "N" =20 -#: nix/nix-daemon/guix-daemon.cc:89 +#: nix/nix-daemon/guix-daemon.cc:90 msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" -msgstr "brug N CPU-kerner til at bygge hver afledning; 0 betyder s=C3=A5= mange som er tilg=C3=A6ngelige" +msgstr "" +"brug N CPU-kerner til at bygge hver afledning; 0 betyder s=C3=A5 mange = som er " +"tilg=C3=A6ngelige" =20 -#: nix/nix-daemon/guix-daemon.cc:92 +#: nix/nix-daemon/guix-daemon.cc:93 msgid "allow at most N build jobs" msgstr "tillad h=C3=B8jest N-byggejob" =20 -#: nix/nix-daemon/guix-daemon.cc:94 +#: nix/nix-daemon/guix-daemon.cc:95 msgid "disable chroot builds" msgstr "deaktiver chroot-bygninger" =20 -#: nix/nix-daemon/guix-daemon.cc:95 +#: nix/nix-daemon/guix-daemon.cc:96 msgid "DIR" msgstr "MAPPE" =20 -#: nix/nix-daemon/guix-daemon.cc:96 +#: nix/nix-daemon/guix-daemon.cc:97 msgid "add DIR to the build chroot" msgstr "tilf=C3=B8j MAPPE til byggechrooten" =20 -#: nix/nix-daemon/guix-daemon.cc:97 +#: nix/nix-daemon/guix-daemon.cc:98 msgid "GROUP" msgstr "GRUPPE" =20 -#: nix/nix-daemon/guix-daemon.cc:98 +#: nix/nix-daemon/guix-daemon.cc:99 msgid "perform builds as a user of GROUP" msgstr "udf=C3=B8r bygninger som en bruger i GRUPPE" =20 -#: nix/nix-daemon/guix-daemon.cc:100 +#: nix/nix-daemon/guix-daemon.cc:101 msgid "do not use substitutes" msgstr "brug ikke substitutter" =20 -#: nix/nix-daemon/guix-daemon.cc:101 +#: nix/nix-daemon/guix-daemon.cc:102 msgid "URLS" msgstr "ADRESSER" =20 -#: nix/nix-daemon/guix-daemon.cc:102 +#: nix/nix-daemon/guix-daemon.cc:103 msgid "use URLS as the default list of substitute providers" msgstr "brug ADRESSER som standardlisten for substitutleverand=C3=B8rer" =20 -#: nix/nix-daemon/guix-daemon.cc:104 +#: nix/nix-daemon/guix-daemon.cc:105 msgid "do not use the 'build hook'" msgstr "brug ikke =C2=BBbuild hook=C2=AB" =20 -#: nix/nix-daemon/guix-daemon.cc:106 +#: nix/nix-daemon/guix-daemon.cc:107 msgid "cache build failures" msgstr "mellemlagerbyggefejl" =20 -#: nix/nix-daemon/guix-daemon.cc:108 +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 msgid "do not keep build logs" msgstr "bevar ikke byggelogge" =20 -#: nix/nix-daemon/guix-daemon.cc:110 +#: nix/nix-daemon/guix-daemon.cc:113 msgid "disable compression of the build logs" msgstr "deaktiver komprimering af byggelogge" =20 -#: nix/nix-daemon/guix-daemon.cc:115 +#: nix/nix-daemon/guix-daemon.cc:118 msgid "disable automatic file \"deduplication\" in the store" msgstr "deaktiver automatisk =C2=BBfildeduplikation=C2=AB i lageret" =20 -#: nix/nix-daemon/guix-daemon.cc:125 +#: nix/nix-daemon/guix-daemon.cc:128 msgid "impersonate Linux 2.6" msgstr "udgiv Linux 2.6" =20 -#: nix/nix-daemon/guix-daemon.cc:129 +#: nix/nix-daemon/guix-daemon.cc:132 msgid "tell whether the GC must keep outputs of live derivations" msgstr "fort=C3=A6l om GC'en skal bevare uddata for live afledninger" =20 -#: nix/nix-daemon/guix-daemon.cc:132 +#: nix/nix-daemon/guix-daemon.cc:135 msgid "tell whether the GC must keep derivations corresponding to live o= utputs" msgstr "fort=C3=A6l om GC'en skal bevare afledninger svarende til live u= ddata" =20 -#: nix/nix-daemon/guix-daemon.cc:135 +#: nix/nix-daemon/guix-daemon.cc:138 msgid "SOCKET" msgstr "SOKKEL" =20 -#: nix/nix-daemon/guix-daemon.cc:136 +#: nix/nix-daemon/guix-daemon.cc:139 msgid "listen for connections on SOCKET" msgstr "lyt efter forbindelser p=C3=A5 SOKKEL" =20 -#: nix/nix-daemon/guix-daemon.cc:138 +#: nix/nix-daemon/guix-daemon.cc:141 msgid "produce debugging output" msgstr "lav fejls=C3=B8gningsinformation" =20 -#: nix/nix-daemon/guix-daemon.cc:205 nix/nix-daemon/guix-daemon.cc:381 +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 #, c-format msgid "error: %s\n" msgstr "fejl: %s\n" =20 -#: nix/nix-daemon/guix-daemon.cc:266 +#: nix/nix-daemon/guix-daemon.cc:281 #, c-format msgid "error: libgcrypt version mismatch\n" msgstr "fejl: forskellige versioner af libgcrypt\n" =20 -#: nix/nix-daemon/guix-daemon.cc:357 +#: nix/nix-daemon/guix-daemon.cc:372 #, c-format -msgid "warning: daemon is running as root, so using `--build-users-group= ' is highly recommended\n" -msgstr "advarsel: d=C3=A6mon k=C3=B8rer som root, s=C3=A5 brug af =C2=BB= --build-users-group=C2=AB anbefales\n" +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" +msgstr "" +"advarsel: d=C3=A6mon k=C3=B8rer som root, s=C3=A5 brug af =C2=BB--build= -users-group=C2=AB anbefales\n" + +#~ msgid "system locale lacks a definition" +#~ msgstr "systemsprog mangler en definition" + +#~ msgid "sources do not match any package:~{ ~a~}~%" +#~ msgstr "kilder matcher ikke nogen pakke:~{ ~a~}~%" diff --git a/po/guix/de.po b/po/guix/de.po index 1e31052..72cff5f 100644 --- a/po/guix/de.po +++ b/po/guix/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.9.0\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2015-10-28 16:31+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2015-11-29 16:01+0100\n" "Last-Translator: Mario Bl=C3=A4ttermann \= n" "Language-Team: German \n" @@ -18,95 +18,107 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Poedit 1.8.5\n" =20 -#: gnu/packages.scm:80 +#: gnu/packages.scm:76 #, scheme-format msgid "~a: patch not found" msgstr "~a: Patch nicht gefunden" =20 -#: gnu/packages.scm:91 +#: gnu/packages.scm:87 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" =20 -#: gnu/packages.scm:143 +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "Zugriff auf =C2=BB~a=C2=AB nicht m=C3=B6glich: ~a~%" =20 -#: gnu/packages.scm:388 +#: gnu/packages.scm:327 #, scheme-format msgid "looking for the latest release of GNU ~a..." msgstr "Nach der letzten Ver=C3=B6ffentlichung von GNU ~a wird gesucht =E2= =80=A6" =20 -#: gnu/packages.scm:395 +#: gnu/packages.scm:334 #, scheme-format msgid "~a: note: using ~a but ~a is available upstream~%" msgstr "" =20 -#: gnu/packages.scm:417 gnu/packages.scm:452 +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "Nicht eindeutige Paketangabe =C2=BB~a=C2=AB~%" =20 -#: gnu/packages.scm:418 gnu/packages.scm:454 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "" =20 -#: gnu/packages.scm:424 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: Paket nicht gefunden f=C3=BCr Version ~a~%" =20 -#: gnu/packages.scm:426 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: unbekanntes Paket~%" =20 -#: gnu/packages.scm:442 +#: gnu/packages.scm:381 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "" =20 -#: gnu/packages.scm:459 +#: gnu/packages.scm:398 #, scheme-format msgid "~a: package not found~%" msgstr "~a: Paket nicht gefunden~%" =20 -#: gnu/services.scm:376 +#: gnu/services.scm:527 #, scheme-format msgid "no target of type '~a' for service ~s" msgstr "" =20 -#: gnu/services.scm:387 gnu/services.scm:447 +#: gnu/services.scm:538 gnu/services.scm:599 #, scheme-format msgid "more than one target service of type '~a'" msgstr "" =20 -#: gnu/services.scm:437 +#: gnu/services.scm:589 #, scheme-format msgid "service of type '~a' not found" msgstr "Dienst des Typs =C2=BB~a=C2=AB wurde nicht gefunden" =20 -#: gnu/system.scm:547 +#: gnu/system.scm:545 #, scheme-format msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" msgstr "" =20 -#: gnu/system.scm:563 +#: gnu/system.scm:561 #, scheme-format -msgid "using a monadic value for '~a' is deprecated; use 'plain-file' in= stead~%" +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" msgstr "" =20 -#: gnu/system.scm:646 -msgid "system locale lacks a definition" -msgstr "" +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: ung=C3=BCltige Zahl~%" + +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "Nicht erkannte Startparameter f=C3=BCr =C2=BB~a=C2=AB~%" =20 -#: gnu/services/dmd.scm:131 +#: gnu/services/shepherd.scm:166 #, scheme-format msgid "service '~a' provided more than once" msgstr "" =20 +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + #: gnu/system/shadow.scm:213 #, scheme-format msgid "supplementary group '~a' of user '~a' is undeclared" @@ -123,31 +135,64 @@ msgid "invalid argument: ~a~%" msgstr "Ung=C3=BCltiges Argument: ~a~%" =20 #: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 -#: guix/scripts/import/cran.scm:72 guix/scripts/import/elpa.scm:77 -#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:792 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 #: guix/scripts/publish.scm:355 #, scheme-format msgid "~A: unrecognized option~%" msgstr "~A: nicht erkannte Option~%" =20 -#: guix/scripts/build.scm:107 +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "" =20 -#: guix/scripts/build.scm:151 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "Nicht eindeutige Paketangabe =C2=BB~a=C2=AB~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 msgid "" "\n" " -L, --load-path=3DDIR prepend DIR to the package module search pat= h" msgstr "" =20 -#: guix/scripts/build.scm:153 +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" msgstr "" =20 -#: guix/scripts/build.scm:155 +#: guix/scripts/build.scm:286 +#, fuzzy +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" +"\n" +" -n, --dry-run die Ableitungen nicht erstellen" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" @@ -155,45 +200,45 @@ msgstr "" "\n" " -n, --dry-run die Ableitungen nicht erstellen" =20 -#: guix/scripts/build.scm:157 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" msgstr "" =20 -#: guix/scripts/build.scm:159 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" msgstr "" =20 -#: guix/scripts/build.scm:161 guix/scripts/size.scm:215 +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 msgid "" "\n" " --substitute-urls=3DURLS\n" " fetch substitute from URLS if they are authori= zed" msgstr "" =20 -#: guix/scripts/build.scm:164 +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" msgstr "" =20 -#: guix/scripts/build.scm:166 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" " mark the build as failed after SECONDS of sile= nce" msgstr "" =20 -#: guix/scripts/build.scm:169 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" msgstr "" =20 -#: guix/scripts/build.scm:171 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" @@ -201,7 +246,13 @@ msgstr "" "\n" " --verbosity=3DSTUFE die angegebene Ausf=C3=BChrlichkeitsstufe ve= rwenden" =20 -#: guix/scripts/build.scm:173 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" @@ -209,101 +260,103 @@ msgstr "" "\n" " -c, --cores=3DN bis zu N Prozessorkerne f=C3=BCr die Erstell= ung nutzen" =20 -#: guix/scripts/build.scm:175 +#: guix/scripts/build.scm:310 msgid "" "\n" " -M, --max-jobs=3DN allow at most N build jobs" msgstr "" =20 -#: guix/scripts/build.scm:261 guix/scripts/build.scm:268 +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 #, scheme-format msgid "not a number: '~a' option argument: ~a~%" msgstr "" =20 -#: guix/scripts/build.scm:287 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" msgstr "" =20 -#: guix/scripts/build.scm:289 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" msgstr "" =20 -#: guix/scripts/build.scm:291 +#: guix/scripts/build.scm:441 msgid "" "\n" -" -f, --file=3DFILE build the package or derivation that the cod= e within\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" " FILE evaluates to" msgstr "" =20 -#: guix/scripts/build.scm:294 +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" msgstr "" =20 -#: guix/scripts/build.scm:296 +#: guix/scripts/build.scm:446 msgid "" "\n" -" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be one\n" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" " of \"package\", \"all\" (default), or \"transi= tive\"" msgstr "" =20 -#: guix/scripts/build.scm:299 +#: guix/scripts/build.scm:449 msgid "" "\n" " -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" msgstr "" =20 -#: guix/scripts/build.scm:301 +#: guix/scripts/build.scm:451 msgid "" "\n" " --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" msgstr "" =20 -#: guix/scripts/build.scm:303 +#: guix/scripts/build.scm:453 msgid "" "\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" +" --no-grafts do not graft packages" msgstr "" =20 -#: guix/scripts/build.scm:306 +#: guix/scripts/build.scm:455 msgid "" "\n" -" --no-grafts do not graft packages" +" -d, --derivations return the derivation paths of the given packa= ges" msgstr "" =20 -#: guix/scripts/build.scm:308 +#: guix/scripts/build.scm:457 msgid "" "\n" -" -d, --derivations return the derivation paths of the given packa= ges" +" --check rebuild items to check for non-determinism iss= ues" msgstr "" =20 -#: guix/scripts/build.scm:310 +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" =20 -#: guix/scripts/build.scm:313 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" msgstr "" =20 -#: guix/scripts/build.scm:318 guix/scripts/download.scm:54 -#: guix/scripts/package.scm:292 guix/scripts/gc.scm:70 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 #: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 -#: guix/scripts/import/cran.scm:44 guix/scripts/pull.scm:83 -#: guix/scripts/substitute.scm:752 guix/scripts/system.scm:556 -#: guix/scripts/lint.scm:741 guix/scripts/publish.scm:63 -#: guix/scripts/edit.scm:43 guix/scripts/size.scm:223 -#: guix/scripts/graph.scm:398 guix/scripts/challenge.scm:181 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -311,14 +364,15 @@ msgstr "" "\n" " -h, --help diese Hilfe anzeigen und beenden" =20 -#: guix/scripts/build.scm:320 guix/scripts/download.scm:56 -#: guix/scripts/package.scm:294 guix/scripts/gc.scm:72 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 #: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 -#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:85 -#: guix/scripts/substitute.scm:754 guix/scripts/system.scm:558 -#: guix/scripts/lint.scm:745 guix/scripts/publish.scm:65 -#: guix/scripts/edit.scm:45 guix/scripts/size.scm:225 -#: guix/scripts/graph.scm:400 guix/scripts/challenge.scm:183 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -326,19 +380,19 @@ msgstr "" "\n" " -V, --version Versionsinformation anzeigen und beenden" =20 -#: guix/scripts/build.scm:347 +#: guix/scripts/build.scm:498 #, scheme-format msgid "" "invalid argument: '~a' option argument: ~a, ~\n" "must be one of 'package', 'all', or 'transitive'~%" msgstr "" =20 -#: guix/scripts/build.scm:478 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" +msgid "~s: not something we can build~%" msgstr "" =20 -#: guix/scripts/build.scm:536 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "Kein Erstellungsprotokoll f=C3=BCr =C2=BB~a=C2=AB~%" @@ -366,38 +420,86 @@ msgstr "" msgid "unsupported hash format: ~a~%" msgstr "Nicht unterst=C3=BCtztes Pr=C3=BCfsummenformat: ~a~%" =20 -#: guix/scripts/download.scm:107 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 +#, scheme-format +msgid "~A: extraneous argument~%" +msgstr "" + +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" +msgstr "~a: Herunterladen fehlgeschlagen~%" + +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "~a: URI~% konnte nicht verarbeitet werden" =20 -#: guix/scripts/download.scm:118 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "~a: Herunterladen fehlgeschlagen~%" =20 +#: guix/scripts/package.scm:102 +#, scheme-format +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "" + +#: guix/scripts/package.scm:124 +#, scheme-format +msgid "error: while creating directory `~a': ~a~%" +msgstr "Fehler beim Anlegen des Verzeichnisses =C2=BB~a=C2=AB: ~a~%" + #: guix/scripts/package.scm:128 #, scheme-format +msgid "Please create the `~a' directory, with you as the owner.~%" +msgstr "Bitte legen Sie das Verzeichnis =C2=BB~a=C2=AB mit Ihnen als Eig= ent=C3=BCmer an.~%" + +#: guix/scripts/package.scm:135 +#, scheme-format +msgid "error: directory `~a' is not owned by you~%" +msgstr "Fehler: Das Verzeichnis =C2=BB~a=C2=AB geh=C3=B6rt Ihnen nicht~%= " + +#: guix/scripts/package.scm:138 +#, scheme-format +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "Bitte =C3=A4ndern Sie den Eigent=C3=BCmer von =C2=BB~a=C2=AB in = Benutzer ~s.~%" + +#: guix/scripts/package.scm:173 +#, scheme-format msgid "not removing generation ~a, which is current~%" msgstr "" =20 -#: guix/scripts/package.scm:135 +#: guix/scripts/package.scm:180 #, scheme-format msgid "no matching generation~%" msgstr "Keine passende Generation%" =20 -#: guix/scripts/package.scm:138 guix/scripts/package.scm:734 -#: guix/scripts/system.scm:396 +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "Unzul=C3=A4ssige Syntax: ~a~%" =20 -#: guix/scripts/package.scm:219 +#: guix/scripts/package.scm:208 +#, scheme-format +msgid "nothing to be done~%" +msgstr "Nichts zu tun~%" + +#: guix/scripts/package.scm:222 +#, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "~a Paket im Profil~%" +msgstr[1] "~a Pakete im Profil~%" + +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" msgstr "Die Definition folgender Umgebungsvariablen k=C3=B6nnte n=C3=B6t= ig sein:~%" =20 -#: guix/scripts/package.scm:235 +#: guix/scripts/package.scm:325 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -406,7 +508,7 @@ msgstr "" "Pakete in einer einzigen Transaktion installieren,\n" "entfernen oder aktualisieren.\n" =20 -#: guix/scripts/package.scm:237 +#: guix/scripts/package.scm:327 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -415,14 +517,14 @@ msgstr "" "\n" " -i, --install=3DPAKET PAKET oder PAKETE installieren" =20 -#: guix/scripts/package.scm:240 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" " install the package EXP evaluates to" msgstr "" =20 -#: guix/scripts/package.scm:243 +#: guix/scripts/package.scm:333 msgid "" "\n" " -f, --install-from-file=3DFILE\n" @@ -430,7 +532,7 @@ msgid "" " evaluates to" msgstr "" =20 -#: guix/scripts/package.scm:247 +#: guix/scripts/package.scm:337 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -439,32 +541,32 @@ msgstr "" "\n" " -r, --remove=3DPAKET PAKET oder PAKETE entfernen" =20 -#: guix/scripts/package.scm:250 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:252 +#: guix/scripts/package.scm:342 msgid "" "\n" " -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" " from FILE" msgstr "" =20 -#: guix/scripts/package.scm:255 +#: guix/scripts/package.scm:345 msgid "" "\n" " --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:257 +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" =20 -#: guix/scripts/package.scm:259 +#: guix/scripts/package.scm:349 msgid "" "\n" " --search-paths[=3DKIND]\n" @@ -472,42 +574,43 @@ msgid "" msgstr "" "\n" " --search-paths[=3DART]\n" -" ben=C3=B6tigte Definitionen von Umgebungsvaria= blen anzeigen" +" ben=C3=B6tigte Definitionen von Umgebungsvaria= blen " +"anzeigen" =20 -#: guix/scripts/package.scm:262 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" " list generations matching PATTERN" msgstr "" =20 -#: guix/scripts/package.scm:265 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" " delete generations matching PATTERN" msgstr "" =20 -#: guix/scripts/package.scm:268 +#: guix/scripts/package.scm:358 msgid "" "\n" " -S, --switch-generation=3DPATTERN\n" " switch to a generation matching PATTERN" msgstr "" =20 -#: guix/scripts/package.scm:271 +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" msgstr "" =20 -#: guix/scripts/package.scm:274 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" =20 -#: guix/scripts/package.scm:276 guix/scripts/pull.scm:76 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" @@ -515,27 +618,27 @@ msgstr "" "\n" " --verbose ausf=C3=BChrliche Ausgaben anzeigen" =20 -#: guix/scripts/package.scm:279 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" msgstr "" =20 -#: guix/scripts/package.scm:281 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" " list installed packages matching REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:284 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" " list available packages matching REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:287 +#: guix/scripts/package.scm:377 msgid "" "\n" " --show=3DPACKAGE show details about PACKAGE" @@ -543,64 +646,22 @@ msgstr "" "\n" " --show=3DPAKET Details zu PAKET anzeigen" =20 -#: guix/scripts/package.scm:380 +#: guix/scripts/package.scm:472 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" =20 -#: guix/scripts/package.scm:550 guix/scripts/publish.scm:357 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "" - -#: guix/scripts/package.scm:558 -#, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "" - -#: guix/scripts/package.scm:580 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "Fehler beim Anlegen des Verzeichnisses =C2=BB~a=C2=AB: ~a~%" - -#: guix/scripts/package.scm:584 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "Bitte legen Sie das Verzeichnis =C2=BB~a=C2=AB mit Ihnen als Eig= ent=C3=BCmer an.~%" - -#: guix/scripts/package.scm:591 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "Fehler: Das Verzeichnis =C2=BB~a=C2=AB geh=C3=B6rt Ihnen nicht~%= " - -#: guix/scripts/package.scm:594 -#, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "Bitte =C3=A4ndern Sie den Eigent=C3=BCmer von =C2=BB~a=C2=AB in = Benutzer ~s.~%" - -#: guix/scripts/package.scm:628 -#, scheme-format -msgid "nothing to be done~%" -msgstr "Nichts zu tun~%" - -#: guix/scripts/package.scm:644 -#, scheme-format -msgid "~a package in profile~%" -msgid_plural "~a packages in profile~%" -msgstr[0] "~a Paket im Profil~%" -msgstr[1] "~a Pakete im Profil~%" - -#: guix/scripts/package.scm:668 +#: guix/scripts/package.scm:755 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "Zu Generation =C2=BB~a=C2=AB kann nicht gewechselt werden~%" =20 -#: guix/scripts/package.scm:690 +#: guix/scripts/package.scm:771 #, scheme-format msgid "would install new manifest from '~a' with ~d entries~%" msgstr "" =20 -#: guix/scripts/package.scm:692 +#: guix/scripts/package.scm:773 #, scheme-format msgid "installing new manifest from '~a' with ~d entries~%" msgstr "" @@ -689,6 +750,11 @@ msgstr "" msgid "invalid amount of storage: ~a~%" msgstr "Ung=C3=BCltiger Speicher-Wert: ~a~%" =20 +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "Ung=C3=BCltiges Argument: ~a~%" + #: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" @@ -711,12 +777,12 @@ msgstr "" msgid "unrecognized option: ~a~%" msgstr "Nicht erkannte Option: ~a~%" =20 -#: guix/scripts/hash.scm:135 guix/ui.scm:458 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:138 guix/scripts/system.scm:685 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "Falsche Argumentanzahl~%" @@ -749,17 +815,23 @@ msgid "" "Import and convert the CRAN package for PACKAGE-NAME.\n" msgstr "" =20 -#: guix/scripts/import/cran.scm:87 +#: guix/scripts/import/cran.scm:44 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/cran.scm:94 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "Beschreibung f=C3=BCr Paket =C2=BB~a=C2=AB konnte nicht geladen = werden~%" =20 -#: guix/scripts/import/cran.scm:91 guix/scripts/import/elpa.scm:95 +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 #, scheme-format msgid "too few arguments~%" msgstr "Zu wenige Argumente~%" =20 -#: guix/scripts/import/cran.scm:93 guix/scripts/import/elpa.scm:97 +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 #, scheme-format msgid "too many arguments~%" msgstr "Zu viele Argumente~%" @@ -840,7 +912,8 @@ msgstr "" #: guix/scripts/pull.scm:212 #, scheme-format msgid "failed to update Guix, check the build log~%" -msgstr "Guix konnte nicht aktualisiert werden, schauen Sie in das Build-= Protokoll~%" +msgstr "" +"Guix konnte nicht aktualisiert werden, schauen Sie in das Build-Protoko= ll~%" =20 #: guix/scripts/pull.scm:221 #, scheme-format @@ -921,30 +994,35 @@ msgstr "" msgid "updating list of substitutes from '~a'... ~5,1f%" msgstr "" =20 -#: guix/scripts/substitute.scm:591 +#: guix/scripts/substitute.scm:585 #, scheme-format msgid "~s: unsupported server URI scheme~%" msgstr "" =20 -#: guix/scripts/substitute.scm:733 +#: guix/scripts/substitute.scm:596 +#, scheme-format +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" + +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "Fehler beim Nachschlagen des Rechnernamens: ~a~%" =20 -#: guix/scripts/substitute.scm:742 +#: guix/scripts/substitute.scm:748 msgid "" "Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" =20 -#: guix/scripts/substitute.scm:744 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" " store file names passed on the standard input" msgstr "" =20 -#: guix/scripts/substitute.scm:747 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -952,11 +1030,13 @@ msgid "" " DESTINATION" msgstr "" =20 -#: guix/scripts/substitute.scm:872 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" msgstr "" =20 -#: guix/scripts/substitute.scm:954 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "~a: nicht erkannte Optionen~%" @@ -964,7 +1044,9 @@ msgstr "~a: nicht erkannte Optionen~%" #: guix/scripts/authenticate.scm:58 #, scheme-format msgid "cannot find public key for secret key '~a'~%" -msgstr "=C3=96ffentlicher Schl=C3=BCssel des geheimen Schl=C3=BCssels =C2= =BB~a=C2=AB konnte nicht gefunden werden~%" +msgstr "" +"=C3=96ffentlicher Schl=C3=BCssel des geheimen Schl=C3=BCssels =C2=BB~a=C2= =AB konnte nicht gefunden " +"werden~%" =20 #: guix/scripts/authenticate.scm:78 #, scheme-format @@ -995,76 +1077,86 @@ msgstr "" msgid "wrong arguments" msgstr "Falsche Argumente" =20 -#: guix/scripts/system.scm:105 +#: guix/scripts/system.scm:110 #, scheme-format msgid "failed to register '~a' under '~a'~%" msgstr "=C2=BB~a=C2=AB konnte nicht unter =C2=BB~a=C2=AB registriert wer= den~%" =20 -#: guix/scripts/system.scm:137 +#: guix/scripts/system.scm:142 #, scheme-format msgid "failed to install GRUB on device '~a'~%" msgstr "GRUB konnte nicht auf Ger=C3=A4t =C2=BB~a=C2=AB installiert werd= en~%" =20 -#: guix/scripts/system.scm:155 +#: guix/scripts/system.scm:160 #, scheme-format msgid "initializing the current root file system~%" msgstr "Aktuelles Wurzeldateisystem wird initialisiert~%" =20 -#: guix/scripts/system.scm:169 +#: guix/scripts/system.scm:174 #, scheme-format msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" msgstr "" =20 #: guix/scripts/system.scm:219 #, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "Nicht erkannte Startparameter f=C3=BCr =C2=BB~a=C2=AB~%" +msgid "while talking to shepherd: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:265 +#, fuzzy, scheme-format +msgid "unloading service '~a'...~%" +msgstr "=C2=BB~a=C2=AB wird entpackt =E2=80=A6~%" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" =20 -#: guix/scripts/system.scm:254 +#: guix/scripts/system.scm:294 #, scheme-format msgid "activating system...~%" msgstr "System wird aktiviert =E2=80=A6~%" =20 -#: guix/scripts/system.scm:338 +#: guix/scripts/system.scm:380 msgid "the DAG of services" msgstr "" =20 -#: guix/scripts/system.scm:351 -msgid "the dependency graph of dmd services" +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" msgstr "" =20 -#: guix/scripts/system.scm:369 +#: guix/scripts/system.scm:414 #, scheme-format msgid " file name: ~a~%" msgstr " Dateiname: ~a~%" =20 -#: guix/scripts/system.scm:370 +#: guix/scripts/system.scm:415 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" =20 #. TRANSLATORS: Please preserve the two-space indentation. -#: guix/scripts/system.scm:374 +#: guix/scripts/system.scm:417 #, scheme-format msgid " label: ~a~%" msgstr " Label: ~a~%" =20 -#: guix/scripts/system.scm:375 +#: guix/scripts/system.scm:418 #, scheme-format msgid " root device: ~a~%" msgstr " Root-Ger=C3=A4t: ~a~%" =20 -#: guix/scripts/system.scm:376 +#: guix/scripts/system.scm:419 #, scheme-format msgid " kernel: ~a~%" msgstr " Kernel: ~a~%" =20 -#: guix/scripts/system.scm:476 +#: guix/scripts/system.scm:527 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "Betriebssystem unter =C2=BB~a=C2=AB wird initialisiert =E2=80=A6= ~%" =20 -#: guix/scripts/system.scm:515 +#: guix/scripts/system.scm:566 msgid "" "Usage: guix system [OPTION] ACTION [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -1072,62 +1164,81 @@ msgstr "" "Aufruf: guix system [OPTION] AKTION [DATEI]\n" "Das in DATEI deklarierte Betriebssystem entsprechend der AKTION erstell= en.\n" =20 -#: guix/scripts/system.scm:518 +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 msgid "The valid values for ACTION are:\n" msgstr "Die g=C3=BCltigen Werte f=C3=BCr AKTION sind:\n" =20 -#: guix/scripts/system.scm:520 +#: guix/scripts/system.scm:571 msgid " reconfigure switch to a new operating system configuratio= n\n" msgstr " reconfigure zur neuen Betriebssystemkonfiguration wechse= ln\n" =20 -#: guix/scripts/system.scm:522 +#: guix/scripts/system.scm:573 msgid " list-generations list the system generations\n" msgstr "" =20 -#: guix/scripts/system.scm:524 -msgid " build build the operating system without installing= anything\n" -msgstr " build das Betriebssystem erstellen, ohne etwas zu = installieren\n" +#: guix/scripts/system.scm:575 +msgid "" +" build build the operating system without installing anyth= ing\n" +msgstr "" +" build das Betriebssystem erstellen, ohne etwas zu " +"installieren\n" + +#: guix/scripts/system.scm:577 +#, fuzzy +msgid " container build a container that shares the host's stor= e\n" +msgstr "" +" vm ein Image f=C3=BCr eine virtuelle Maschine erstelle= n, das " +"den\n" +" Speicher des Rechners nutzt\n" =20 -#: guix/scripts/system.scm:526 -msgid " vm build a virtual machine image that shares the= host's store\n" +#: guix/scripts/system.scm:579 +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" msgstr "" -" vm ein Image f=C3=BCr eine virtuelle Maschine erstelle= n, das den\n" +" vm ein Image f=C3=BCr eine virtuelle Maschine erstelle= n, das " +"den\n" " Speicher des Rechners nutzt\n" =20 -#: guix/scripts/system.scm:528 +#: guix/scripts/system.scm:581 msgid " vm-image build a freestanding virtual machine image\n" -msgstr " vm-image ein unabh=C3=A4ngiges Image f=C3=BCr eine vi= rtuelle Maschine erstellen\n" +msgstr "" +" vm-image ein unabh=C3=A4ngiges Image f=C3=BCr eine virtuelle= Maschine " +"erstellen\n" =20 -#: guix/scripts/system.scm:530 +#: guix/scripts/system.scm:583 msgid " disk-image build a disk image, suitable for a USB stick\= n" msgstr " disk-image ein Disk-Image f=C3=BCr einen USB-Stick erst= ellen\n" =20 -#: guix/scripts/system.scm:532 +#: guix/scripts/system.scm:585 msgid " init initialize a root file system to run GNU\n" -msgstr " init ein Wurzeldateisystem initialisieren, um GNU= auszuf=C3=BChren.\n" +msgstr "" +" init ein Wurzeldateisystem initialisieren, um GNU " +"auszuf=C3=BChren.\n" =20 -#: guix/scripts/system.scm:534 +#: guix/scripts/system.scm:587 msgid " extension-graph emit the service extension graph in Dot forma= t\n" msgstr "" =20 -#: guix/scripts/system.scm:536 -msgid " dmd-graph emit the graph of dmd services in Dot format\= n" +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" msgstr "" =20 -#: guix/scripts/system.scm:540 +#: guix/scripts/system.scm:593 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" =20 -#: guix/scripts/system.scm:542 +#: guix/scripts/system.scm:595 msgid "" "\n" " --on-error=3DSTRATEGY\n" -" apply STRATEGY when an error occurs while read= ing FILE" +" apply STRATEGY when an error occurs while read= ing " +"FILE" msgstr "" =20 -#: guix/scripts/system.scm:545 +#: guix/scripts/system.scm:598 msgid "" "\n" " --image-size=3DSIZE for 'vm-image', produce an image of SIZE" @@ -1135,7 +1246,7 @@ msgstr "" "\n" " --image-size=3DGR=C3=96SSE f=C3=BCr =C2=BBvm-image=C2=AB, ein Ima= ge der GR=C3=96SSE erstellen" =20 -#: guix/scripts/system.scm:547 +#: guix/scripts/system.scm:600 msgid "" "\n" " --no-grub for 'init', do not install GRUB" @@ -1143,19 +1254,19 @@ msgstr "" "\n" " --no-grub f=C3=BCr =C2=BBinit=C2=AB, GRUB nicht installi= eren" =20 -#: guix/scripts/system.scm:549 +#: guix/scripts/system.scm:602 msgid "" "\n" " --share=3DSPEC for 'vm', share host file system according t= o SPEC" msgstr "" =20 -#: guix/scripts/system.scm:551 +#: guix/scripts/system.scm:604 msgid "" "\n" " --expose=3DSPEC for 'vm', expose host file system according = to SPEC" msgstr "" =20 -#: guix/scripts/system.scm:553 +#: guix/scripts/system.scm:606 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -1163,103 +1274,105 @@ msgstr "" "\n" " --full-boot f=C3=BCr =C2=BBvm=C2=AB, vollst=C3=A4ndige Boo= t-Sequenz" =20 -#: guix/scripts/system.scm:637 +#: guix/scripts/system.scm:690 #, scheme-format msgid "no configuration file specified~%" msgstr "Keine Konfigurationsdatei angegeben~%" =20 -#: guix/scripts/system.scm:700 +#: guix/scripts/system.scm:753 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: unbekannte Aktion~%" =20 -#: guix/scripts/system.scm:715 +#: guix/scripts/system.scm:768 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "Falsche Anzahl an Argumenten f=C3=BCr Aktion =C2=BB~a=C2=AB~%" =20 -#: guix/scripts/system.scm:720 +#: guix/scripts/system.scm:773 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system: Befehlsname fehlt~%" =20 -#: guix/scripts/system.scm:722 +#: guix/scripts/system.scm:775 #, scheme-format msgid "Try 'guix system --help' for more information.~%" -msgstr "Rufen Sie =C2=BBguix system --help=C2=AB auf, um weitere Informa= tionen zu erhalten.~%" +msgstr "" +"Rufen Sie =C2=BBguix system --help=C2=AB auf, um weitere Informationen = zu erhalten.~%" =20 -#: guix/scripts/lint.scm:124 +#: guix/scripts/lint.scm:126 #, scheme-format msgid "Available checkers:~%" msgstr "Verf=C3=BCgbare Pr=C3=BCfer:~%" =20 -#: guix/scripts/lint.scm:144 +#: guix/scripts/lint.scm:146 msgid "description should not be empty" msgstr "" =20 -#: guix/scripts/lint.scm:154 +#: guix/scripts/lint.scm:156 msgid "Texinfo markup in description is invalid" msgstr "" =20 -#: guix/scripts/lint.scm:162 +#: guix/scripts/lint.scm:164 msgid "description should start with an upper-case letter or digit" msgstr "" =20 -#: guix/scripts/lint.scm:178 +#: guix/scripts/lint.scm:180 #, scheme-format msgid "" "sentences in description should be followed ~\n" "by two spaces; possible infraction~p at ~{~a~^, ~}" msgstr "" =20 -#: guix/scripts/lint.scm:202 +#: guix/scripts/lint.scm:204 msgid "pkg-config should probably be a native input" msgstr "" =20 -#: guix/scripts/lint.scm:217 +#: guix/scripts/lint.scm:219 msgid "synopsis should not be empty" msgstr "" =20 -#: guix/scripts/lint.scm:225 +#: guix/scripts/lint.scm:227 msgid "no period allowed at the end of the synopsis" msgstr "Am Ende der Zusammenfassung darf kein Punkt gesetzt werden" =20 -#: guix/scripts/lint.scm:237 +#: guix/scripts/lint.scm:239 msgid "no article allowed at the beginning of the synopsis" msgstr "Am Beginn der Zusammenfassung darf kein Punkt stehen" =20 -#: guix/scripts/lint.scm:244 +#: guix/scripts/lint.scm:246 msgid "synopsis should be less than 80 characters long" msgstr "Zusammenfassung sollte nicht l=C3=A4nger als 80 Zeichen sein" =20 -#: guix/scripts/lint.scm:250 +#: guix/scripts/lint.scm:252 msgid "synopsis should start with an upper-case letter or digit" -msgstr "Zusammenfassung sollte mit einem Gro=C3=9Fbuchstaben oder einer = Zahl beginnen" +msgstr "" +"Zusammenfassung sollte mit einem Gro=C3=9Fbuchstaben oder einer Zahl be= ginnen" =20 -#: guix/scripts/lint.scm:257 +#: guix/scripts/lint.scm:259 msgid "synopsis should not start with the package name" msgstr "Zusammenfassung sollte nicht mit dem Paketnamen beginnen" =20 -#: guix/scripts/lint.scm:348 guix/scripts/lint.scm:360 +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" =20 -#: guix/scripts/lint.scm:367 +#: guix/scripts/lint.scm:372 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "URI-Domain ~a nicht gefunden: ~a" =20 -#: guix/scripts/lint.scm:375 +#: guix/scripts/lint.scm:380 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a ist nicht erreichbar: ~a" =20 -#: guix/scripts/lint.scm:401 +#: guix/scripts/lint.scm:406 msgid "invalid value for home page" msgstr "Ung=C3=BCltiger Wert f=C3=BCr Homepage" =20 -#: guix/scripts/lint.scm:404 +#: guix/scripts/lint.scm:409 #, scheme-format msgid "invalid home page URL: ~s" msgstr "Ung=C3=BCltige URL f=C3=BCr Homepage: ~s" @@ -1268,105 +1381,124 @@ msgstr "Ung=C3=BCltige URL f=C3=BCr Homepage: ~= s" msgid "file names of patches should start with the package name" msgstr "Dateinamen oder Patches sollten mit dem Paketnamen beginnen" =20 -#: guix/scripts/lint.scm:467 +#: guix/scripts/lint.scm:466 #, scheme-format msgid "~a: ~a: proposed synopsis: ~s~%" msgstr "~a: ~a: vorgeschlagene Zusammenfassung: ~s~%" =20 -#: guix/scripts/lint.scm:479 +#: guix/scripts/lint.scm:478 #, scheme-format msgid "~a: ~a: proposed description:~% \"~a\"~%" msgstr "~a: ~a: vorgeschlagene Beschreibung:~% \"~a\"~%" =20 -#: guix/scripts/lint.scm:516 +#: guix/scripts/lint.scm:515 msgid "all the source URIs are unreachable:" msgstr "Alle Quell-URIs sind nicht erreichbar:" =20 -#: guix/scripts/lint.scm:539 +#: guix/scripts/lint.scm:538 msgid "the source file name should contain the package name" msgstr "Der Name der Quelldatei sollte den Paketnamen enthalten" =20 -#: guix/scripts/lint.scm:548 guix/scripts/lint.scm:552 +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 #, scheme-format msgid "failed to create derivation: ~a" msgstr "Ableitung konnte nicht erstellt werden: ~a" =20 -#: guix/scripts/lint.scm:558 +#: guix/scripts/lint.scm:557 #, scheme-format msgid "failed to create derivation: ~s~%" msgstr "Ableitung konnte nicht erstellt werden: ~s~%" =20 -#: guix/scripts/lint.scm:568 +#: guix/scripts/lint.scm:567 msgid "invalid license field" msgstr "Ung=C3=BCltiges Lizenz-Feld" =20 -#: guix/scripts/lint.scm:582 +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "=C2=BB~a=C2=AB konnte nicht geladen werden: ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "Tabulator in Zeile ~a, Spalte ~a" =20 -#: guix/scripts/lint.scm:591 +#: guix/scripts/lint.scm:647 #, scheme-format msgid "trailing white space on line ~a" msgstr "F=C3=BChrende Leerzeichen in Zeile ~a" =20 -#: guix/scripts/lint.scm:601 +#: guix/scripts/lint.scm:657 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "Zeile ~a ist viel zu lang (~a Zeichen)" =20 -#: guix/scripts/lint.scm:612 +#: guix/scripts/lint.scm:668 #, scheme-format msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" msgstr "" =20 -#: guix/scripts/lint.scm:667 +#: guix/scripts/lint.scm:723 msgid "Validate package descriptions" msgstr "Paketbeschreibungen =C3=BCberpr=C3=BCfen" =20 -#: guix/scripts/lint.scm:671 +#: guix/scripts/lint.scm:727 msgid "Validate synopsis & description of GNU packages" msgstr "GNU-Paketzusammenfassung und -beschreibungen =C3=BCberpr=C3=BCfe= n" =20 -#: guix/scripts/lint.scm:675 +#: guix/scripts/lint.scm:731 msgid "Identify inputs that should be native inputs" msgstr "Eingaben pr=C3=BCfen, die native Eingaben sein sollten" =20 -#: guix/scripts/lint.scm:679 +#: guix/scripts/lint.scm:735 msgid "Validate file names and availability of patches" msgstr "Dateinamen und Verf=C3=BCgbarkeit der Patches =C3=BCberpr=C3=BCf= en" =20 -#: guix/scripts/lint.scm:683 +#: guix/scripts/lint.scm:739 msgid "Validate home-page URLs" msgstr "Homepage-URLs =C3=BCberpr=C3=BCfen" =20 #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/scripts/lint.scm:689 +#: guix/scripts/lint.scm:745 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" =20 -#: guix/scripts/lint.scm:694 +#: guix/scripts/lint.scm:750 msgid "Validate source URLs" msgstr "Quell-URLs =C3=BCberpr=C3=BCfen" =20 -#: guix/scripts/lint.scm:698 +#: guix/scripts/lint.scm:754 msgid "Validate file names of sources" msgstr "Dateinamen der Quellen =C3=BCberpr=C3=BCfen" =20 -#: guix/scripts/lint.scm:702 +#: guix/scripts/lint.scm:758 msgid "Report failure to compile a package to a derivation" msgstr "" =20 -#: guix/scripts/lint.scm:706 +#: guix/scripts/lint.scm:762 msgid "Validate package synopses" msgstr "Paketzusammenfassungen =C3=BCberpr=C3=BCfen" =20 -#: guix/scripts/lint.scm:710 +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 msgid "Look for formatting issues in the source" msgstr "Nach Formatierungsfehlern in der Quelle schauen" =20 -#: guix/scripts/lint.scm:735 +#: guix/scripts/lint.scm:796 msgid "" "Usage: guix lint [OPTION]... [PACKAGE]...\n" "Run a set of checkers on the specified package; if none is specified,\n= " @@ -1377,7 +1509,7 @@ msgstr "" "Falls keine angegeben sind, werden alle verf=C3=BCgbaren =C3=9Cberpr=C3= =BCfungen\n" "mit allen Paketen ausgef=C3=BChrt.\n" =20 -#: guix/scripts/lint.scm:738 +#: guix/scripts/lint.scm:799 msgid "" "\n" " -c, --checkers=3DCHECKER1,CHECKER2...\n" @@ -1387,7 +1519,7 @@ msgstr "" " -c, --checkers=3DPR=C3=9CFER1,PR=C3=9CFER2 =E2=80=A6\n" " nur die angegebenen Pr=C3=BCfer aufrufen" =20 -#: guix/scripts/lint.scm:743 +#: guix/scripts/lint.scm:804 msgid "" "\n" " -l, --list-checkers display the list of available lint checkers" @@ -1395,7 +1527,7 @@ msgstr "" "\n" " -l, --list-checkers Liste der verf=C3=BCgbaren =C3=9Cberpr=C3=BCfu= ngen anzeigen" =20 -#: guix/scripts/lint.scm:763 +#: guix/scripts/lint.scm:824 #, scheme-format msgid "~a: invalid checker~%" msgstr "~a: unzul=C3=A4ssiger Pr=C3=BCfer~%" @@ -1460,22 +1592,27 @@ msgstr "" msgid "publishing ~a on ~a, port ~d~%" msgstr "~a wird auf ~a bereitgestellt, Port ~d~%" =20 -#: guix/scripts/edit.scm:40 +#: guix/scripts/edit.scm:41 msgid "" "Usage: guix edit PACKAGE...\n" -"Start $EDITOR to edit the definitions of PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" msgstr "" =20 -#: guix/scripts/edit.scm:58 +#: guix/scripts/edit.scm:62 #, scheme-format msgid "file '~a' not found in search path ~s~%" msgstr "Datei =C2=BB~a=C2=AB im Suchpfad ~s nicht gefunden~%" =20 -#: guix/scripts/edit.scm:70 +#: guix/scripts/edit.scm:83 #, scheme-format msgid "source location of package '~a' is unknown~%" msgstr "Quellort des Pakets =C2=BB~a=C2=AB ist unbekannt~%" =20 +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "=C2=BB~a=C2=AB konnte nicht geladen werden: ~a~%" + #: guix/scripts/size.scm:75 #, scheme-format msgid "no available substitute information for '~a'~%" @@ -1520,7 +1657,8 @@ msgid "" " -m, --map-file=3DFILE write to FILE a graphical map of disk usage" msgstr "" "\n" -" -m, --map-file=3DDATEI eine grafische Darstellung des Plattenplatzv= erbrauchs\n" +" -m, --map-file=3DDATEI eine grafische Darstellung des " +"Plattenplatzverbrauchs\n" " in DATEI schreiben" =20 #: guix/scripts/size.scm:274 @@ -1531,55 +1669,59 @@ msgstr "" msgid "too many arguments\n" msgstr "Zu wenige Argumente\n" =20 -#: guix/scripts/graph.scm:105 +#: guix/scripts/graph.scm:76 msgid "the DAG of packages, excluding implicit inputs" msgstr "" =20 -#: guix/scripts/graph.scm:155 +#: guix/scripts/graph.scm:132 msgid "the DAG of packages, including implicit inputs" msgstr "" =20 -#: guix/scripts/graph.scm:179 +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:171 msgid "same as 'bag', but without the bootstrap nodes" msgstr "" =20 -#: guix/scripts/graph.scm:222 +#: guix/scripts/graph.scm:216 msgid "the DAG of derivations" msgstr "" =20 -#: guix/scripts/graph.scm:246 +#: guix/scripts/graph.scm:240 #, scheme-format msgid "references for '~a' are not known~%" msgstr "" =20 -#: guix/scripts/graph.scm:253 +#: guix/scripts/graph.scm:247 msgid "the DAG of run-time dependencies (store references)" msgstr "" =20 -#: guix/scripts/graph.scm:282 +#: guix/scripts/graph.scm:277 #, scheme-format msgid "~a: unknown node type~%" msgstr "~a: unbekannter Node-Typ~%" =20 -#: guix/scripts/graph.scm:286 +#: guix/scripts/graph.scm:281 msgid "The available node types are:\n" msgstr "Die g=C3=BCltigen Node-Typen sind:\n" =20 #. TRANSLATORS: Here 'dot' is the name of a program; it must not be #. translated. -#: guix/scripts/graph.scm:389 +#: guix/scripts/graph.scm:317 msgid "" "Usage: guix graph PACKAGE...\n" "Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" msgstr "" =20 -#: guix/scripts/graph.scm:391 +#: guix/scripts/graph.scm:319 msgid "" "\n" " -t, --type=3DTYPE represent nodes of the given TYPE" msgstr "" =20 -#: guix/scripts/graph.scm:393 +#: guix/scripts/graph.scm:321 msgid "" "\n" " --list-types list the available graph types" @@ -1587,7 +1729,7 @@ msgstr "" "\n" " --list-types verf=C3=BCgbare Diagrammtypen auflisten" =20 -#: guix/scripts/graph.scm:395 +#: guix/scripts/graph.scm:323 msgid "" "\n" " -e, --expression=3DEXPR consider the package EXPR evaluates to" @@ -1641,86 +1783,147 @@ msgid "" " compare build results with those at URLS" msgstr "" =20 -#: guix/gnu-maintenance.scm:418 +#: guix/gnu-maintenance.scm:514 msgid "Updater for GNU packages" msgstr "Aktualisierungswerkzeug f=C3=BCr GNU-Pakete" =20 -#: guix/upstream.scm:156 +#: guix/gnu-maintenance.scm:521 +#, fuzzy +msgid "Updater for GNOME packages" +msgstr "Aktualisierungswerkzeug f=C3=BCr GNU-Pakete" + +#: guix/scripts/container.scm:25 +msgid "" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" +msgstr "" + +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" + +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix system: Befehlsname fehlt~%" + +#: guix/scripts/container.scm:63 +#, scheme-format +msgid "guix container: invalid action~%" +msgstr "" + +#: guix/scripts/container/exec.scm:40 +msgid "" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" +msgstr "" + +#: guix/scripts/container/exec.scm:69 +#, fuzzy, scheme-format +msgid "~a: extraneous argument~%" +msgstr "~A: unerwartetes Argument~%" + +#: guix/scripts/container/exec.scm:80 +#, fuzzy, scheme-format +msgid "no pid specified~%" +msgstr "Keine Konfigurationsdatei angegeben~%" + +#: guix/scripts/container/exec.scm:83 +#, fuzzy, scheme-format +msgid "no command specified~%" +msgstr "Keine Konfigurationsdatei angegeben~%" + +#: guix/scripts/container/exec.scm:86 +#, scheme-format +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" +msgstr "" + +#: guix/upstream.scm:158 #, scheme-format msgid "signature verification failed for `~a'~%" msgstr "Verifizierung der Signatur fehlgeschlagen f=C3=BCr =C2=BB~a=C2=AB= ~%" =20 -#: guix/upstream.scm:158 +#: guix/upstream.scm:160 #, scheme-format msgid "(could be because the public key is not in your keyring)~%" -msgstr "(vielleicht befindet sich Ihr =C3=B6ffentlicher Schl=C3=BCssel n= icht im Schl=C3=BCsselbund)~%" +msgstr "" +"(vielleicht befindet sich Ihr =C3=B6ffentlicher Schl=C3=BCssel nicht im= " +"Schl=C3=BCsselbund)~%" =20 -#: guix/upstream.scm:190 +#: guix/upstream.scm:192 msgid "gz" msgstr "gz" =20 -#: guix/upstream.scm:253 +#: guix/upstream.scm:255 #, scheme-format msgid "~a: could not locate source file" msgstr "~a: Quelldatei konnte nicht gefunden werden" =20 -#: guix/upstream.scm:258 +#: guix/upstream.scm:260 #, scheme-format msgid "~a: ~a: no `version' field in source; skipping~%" msgstr "~a: ~a: kein =C2=BBversion=C2=AB-Feld in der Quelle; wird =C3=BC= bersprungen~%" =20 -#: guix/ui.scm:234 +#: guix/ui.scm:236 msgid "entering debugger; type ',bt' for a backtrace\n" msgstr "" =20 -#: guix/ui.scm:250 guix/ui.scm:267 +#: guix/ui.scm:252 guix/ui.scm:269 #, scheme-format msgid "failed to load '~a': ~a~%" msgstr "=C2=BB~a=C2=AB konnte nicht geladen werden: ~a~%" =20 -#: guix/ui.scm:253 +#: guix/ui.scm:255 #, scheme-format msgid "~a: error: ~a~%" msgstr "~a: Fehler: ~a~%" =20 -#: guix/ui.scm:256 guix/ui.scm:510 +#: guix/ui.scm:258 guix/ui.scm:512 #, scheme-format msgid "exception thrown: ~s~%" msgstr "" =20 -#: guix/ui.scm:258 guix/ui.scm:276 +#: guix/ui.scm:260 guix/ui.scm:278 #, scheme-format msgid "failed to load '~a':~%" msgstr "=C2=BB~a=C2=AB konnte nicht geladen werden:~%" =20 -#: guix/ui.scm:270 +#: guix/ui.scm:272 #, scheme-format msgid "~a: warning: ~a~%" msgstr "~a: Warnung: ~a~%" =20 -#: guix/ui.scm:273 +#: guix/ui.scm:275 #, scheme-format msgid "failed to load '~a': exception thrown: ~s~%" msgstr "" =20 -#: guix/ui.scm:285 +#: guix/ui.scm:287 #, scheme-format msgid "failed to install locale: ~a~%" msgstr "Locale konnte nicht installiert werden: ~a~%" =20 -#: guix/ui.scm:304 +#: guix/ui.scm:306 +#, fuzzy msgid "" -"Copyright (C) 2015 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" "Copyright (C) 2015 Die Guix-Autoren\n" -"Lizenz GPLv3+: GNU GPL Version 3 oder neuer \n" +"Lizenz GPLv3+: GNU GPL Version 3 oder neuer \n" "Dies ist freie Software: Sie k=C3=B6nnen Sie =C3=A4ndern und weitergebe= n.\n" "Es gibt keine Garantie, soweit gesetzlich zul=C3=A4ssig.\n" =20 -#: guix/ui.scm:312 +#: guix/ui.scm:314 #, scheme-format msgid "" "\n" @@ -1729,7 +1932,7 @@ msgstr "" "\n" "Melden Sie Fehler an: ~a." =20 -#: guix/ui.scm:314 +#: guix/ui.scm:316 #, scheme-format msgid "" "\n" @@ -1738,7 +1941,7 @@ msgstr "" "\n" "~a Homepage: <~a>" =20 -#: guix/ui.scm:316 +#: guix/ui.scm:318 msgid "" "\n" "General help using GNU software: " @@ -1746,219 +1949,222 @@ msgstr "" "\n" "Allgemeine Hilfe zu GNU-Software: " =20 -#: guix/ui.scm:361 +#: guix/ui.scm:363 #, scheme-format msgid "'~a' is not a valid regular expression: ~a~%" msgstr "=C2=BB~a=C2=AB ist kein g=C3=BCltiger regul=C3=A4rer Ausdruck: ~= a~%" =20 -#: guix/ui.scm:367 +#: guix/ui.scm:369 #, scheme-format msgid "~a: invalid number~%" msgstr "~a: ung=C3=BCltige Zahl~%" =20 -#: guix/ui.scm:384 +#: guix/ui.scm:386 #, scheme-format msgid "invalid number: ~a~%" msgstr "Ung=C3=BCltige Zahl: ~a~%" =20 -#: guix/ui.scm:407 +#: guix/ui.scm:409 #, scheme-format msgid "unknown unit: ~a~%" msgstr "Unbekannte Einheit: ~a~%" =20 -#: guix/ui.scm:418 +#: guix/ui.scm:420 #, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "" =20 -#: guix/ui.scm:425 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" msgstr "" =20 -#: guix/ui.scm:430 +#: guix/ui.scm:432 #, scheme-format msgid "profile '~a' does not exist~%" msgstr "Profil =C2=BB~a=C2=AB existiert nicht~%" =20 -#: guix/ui.scm:433 +#: guix/ui.scm:435 #, scheme-format msgid "generation ~a of profile '~a' does not exist~%" msgstr "Generation ~a des Profils =C2=BB~a=C2=AB existiert nicht~%" =20 -#: guix/ui.scm:440 +#: guix/ui.scm:442 #, scheme-format msgid "corrupt input while restoring '~a' from ~s~%" msgstr "Besch=C3=A4digte Eingabe, w=C3=A4hrend =C2=BB~a=C2=AB aus =C2=BB= ~s=C2=AB wiederhergestellt wurde~%" =20 -#: guix/ui.scm:442 +#: guix/ui.scm:444 #, scheme-format msgid "corrupt input while restoring archive from ~s~%" -msgstr "Besch=C3=A4digte Eingabe, w=C3=A4hrend das Archiv aus =C2=BB~s=C2= =AB wiederhergestellt wurde~%" +msgstr "" +"Besch=C3=A4digte Eingabe, w=C3=A4hrend das Archiv aus =C2=BB~s=C2=AB wi= ederhergestellt wurde~%" =20 -#: guix/ui.scm:445 +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "Verbindung zu =C2=BB~a=C2=AB fehlgeschlagen: ~a~%" =20 -#: guix/ui.scm:450 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "Erstellung fehlgeschlagen: ~a~%" =20 -#: guix/ui.scm:453 +#: guix/ui.scm:455 #, scheme-format msgid "reference to invalid output '~a' of derivation '~a'~%" msgstr "" =20 -#: guix/ui.scm:464 +#: guix/ui.scm:466 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" =20 -#: guix/ui.scm:499 +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "Ausdruck ~s konnte nicht gelesen werden: ~s~%" =20 -#: guix/ui.scm:505 +#: guix/ui.scm:507 #, scheme-format msgid "failed to evaluate expression '~a':~%" msgstr "Ausdruck =C2=BB~a=C2=AB kann nicht ausgewertet werden:~%" =20 -#: guix/ui.scm:508 +#: guix/ui.scm:510 #, scheme-format msgid "syntax error: ~a~%" msgstr "Syntaxfehler: ~a~%" =20 -#: guix/ui.scm:522 +#: guix/ui.scm:524 #, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "Ausdruck ~s ergibt kein Paket~%" =20 -#: guix/ui.scm:582 +#: guix/ui.scm:586 #, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" msgstr[0] "" msgstr[1] "" =20 -#: guix/ui.scm:587 +#: guix/ui.scm:591 #, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" msgstr[0] "" msgstr[1] "" =20 -#: guix/ui.scm:593 +#: guix/ui.scm:597 #, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" msgstr[0] "" msgstr[1] "" =20 -#: guix/ui.scm:598 +#: guix/ui.scm:602 #, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" msgstr[0] "~:[Die folgende Datei wird heruntergeladen:~%~{ ~a~%~}~;~]" msgstr[1] "~:[Die folgenden Dateien werden heruntergeladen:~%~{ ~a~%~}= ~;~]" =20 -#: guix/ui.scm:653 +#: guix/ui.scm:657 #, scheme-format msgid "The following package would be removed:~%~{~a~%~}~%" msgid_plural "The following packages would be removed:~%~{~a~%~}~%" msgstr[0] "Das folgende Paket w=C3=BCrde entfernt werden:~%~{~a~%~}~%" msgstr[1] "Die folgenden Pakete w=C3=BCrden entfernt werden:~%~{~a~%~}~%= " =20 -#: guix/ui.scm:658 +#: guix/ui.scm:662 #, scheme-format msgid "The following package will be removed:~%~{~a~%~}~%" msgid_plural "The following packages will be removed:~%~{~a~%~}~%" msgstr[0] "Das folgende Paket w=C3=BCrde entfernt werden:~%~{~a~%~}~%" msgstr[1] "Die folgenden Pakete w=C3=BCrden entfernt werden:~%~{~a~%~}~%= " =20 -#: guix/ui.scm:671 +#: guix/ui.scm:675 #, scheme-format msgid "The following package would be downgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" -msgstr[0] "Die Version des folgenden Pakets w=C3=BCrde heruntergestuft w= erden:~%~{~a~%~}~%" -msgstr[1] "Die Version der folgenden Pakete w=C3=BCrde heruntergestuft w= erden:~%~{~a~%~}~%" +msgstr[0] "" +"Die Version des folgenden Pakets w=C3=BCrde heruntergestuft werden:~%~{= ~a~%~}~%" +msgstr[1] "" +"Die Version der folgenden Pakete w=C3=BCrde heruntergestuft werden:~%~{= ~a~%~}~%" =20 -#: guix/ui.scm:676 +#: guix/ui.scm:680 #, scheme-format msgid "The following package will be downgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" msgstr[0] "Die Version des folgenden Pakets wird heruntergestuft:~%~{~a~= %~}~%" msgstr[1] "Die Version der folgenden Pakete wird heruntergestuft:~%~{~a~= %~}~%" =20 -#: guix/ui.scm:689 +#: guix/ui.scm:693 #, scheme-format msgid "The following package would be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" msgstr[0] "Das folgende Paket w=C3=BCrde aktualisiert werden:~%~{~a~%~}~= %" msgstr[1] "Die folgenden Pakete w=C3=BCrden aktualisiert werden:~%~{~a~%= ~}~%" =20 -#: guix/ui.scm:694 +#: guix/ui.scm:698 #, scheme-format msgid "The following package will be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" msgstr[0] "Das folgende Paket wird aktualisiert:~%~{~a~%~}~%" msgstr[1] "Die folgenden Pakete werden aktualisiert:~%~{~a~%~}~%" =20 -#: guix/ui.scm:705 +#: guix/ui.scm:709 #, scheme-format msgid "The following package would be installed:~%~{~a~%~}~%" msgid_plural "The following packages would be installed:~%~{~a~%~}~%" msgstr[0] "Das folgende Paket w=C3=BCrde installiert werden:~%~{~a~%~}~%= " msgstr[1] "Die folgenden Pakete w=C3=BCrden installiert werden:~%~{~a~%~= }~%" =20 -#: guix/ui.scm:710 +#: guix/ui.scm:714 #, scheme-format msgid "The following package will be installed:~%~{~a~%~}~%" msgid_plural "The following packages will be installed:~%~{~a~%~}~%" msgstr[0] "Das folgende Paket wird installiert:~%~{~a~%~}~%" msgstr[1] "Die folgenden Pakete werden installiert:~%~{~a~%~}~%" =20 -#: guix/ui.scm:727 +#: guix/ui.scm:731 msgid "" msgstr "" =20 -#: guix/ui.scm:746 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "Konfigurationsverzeichnis =C2=BB~a=C2=AB konnte nicht angelegt w= erden: ~a~%" =20 -#: guix/ui.scm:865 guix/ui.scm:879 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "unbekannt" =20 -#: guix/ui.scm:1029 +#: guix/ui.scm:1033 #, scheme-format msgid "Generation ~a\t~a" msgstr "Generation ~a\t~a" =20 -#: guix/ui.scm:1036 +#: guix/ui.scm:1040 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(aktuell)~%" =20 -#: guix/ui.scm:1053 +#: guix/ui.scm:1057 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "Von Generation =C2=BB~a=C2=AB zu =C2=BB~a=C2=AB gewechselt~%" =20 -#: guix/ui.scm:1069 +#: guix/ui.scm:1073 #, scheme-format msgid "deleting ~a~%" msgstr "~a wird gel=C3=B6scht~%" =20 -#: guix/ui.scm:1117 +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Rufen Sie =C2=BBguix --help=C2=AB auf, um weitere Informationen = zu erhalten.~%" =20 -#: guix/ui.scm:1144 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -1966,31 +2172,31 @@ msgstr "" "Aufruf: guix BEFEHL ARGUMENTE =E2=80=A6\n" "BEFEHL mit ARGUMENTEN ausf=C3=BChren.\n" =20 -#: guix/ui.scm:1147 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "BEFEHL muss einer der unten aufgelisteten Unterbefehle sein:\n" =20 -#: guix/ui.scm:1167 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: Befehl nicht gefunden~%" =20 -#: guix/ui.scm:1184 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: Befehlsname fehlt~%" =20 -#: guix/ui.scm:1192 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: nicht erkannte Option =C2=BB~a=C2=AB~%" =20 -#: guix/http-client.scm:228 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "Weiterleitung zu =C2=BB~a=C2=AB wird gefolgt =E2=80=A6~%" =20 -#: guix/http-client.scm:237 +#: guix/http-client.scm:269 msgid "download failed" msgstr "Herunterladen fehlgeschlagen" =20 @@ -2041,116 +2247,130 @@ msgid "guix-daemon -- perform derivation builds= and store accesses" msgstr "" =20 #: nix/nix-daemon/guix-daemon.cc:63 -msgid "This program is a daemon meant to run in the background. It serv= es requests sent over a Unix-domain socket. It accesses the store, and b= uilds derivations on behalf of its clients." +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:86 +#: nix/nix-daemon/guix-daemon.cc:87 msgid "SYSTEM" msgstr "SYSTEM" =20 -#: nix/nix-daemon/guix-daemon.cc:87 +#: nix/nix-daemon/guix-daemon.cc:88 msgid "assume SYSTEM as the current system type" msgstr "SYSTEM als aktuellen Systemtyp annehmen" =20 -#: nix/nix-daemon/guix-daemon.cc:88 nix/nix-daemon/guix-daemon.cc:91 +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 msgid "N" msgstr "N" =20 -#: nix/nix-daemon/guix-daemon.cc:89 +#: nix/nix-daemon/guix-daemon.cc:90 msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:92 +#: nix/nix-daemon/guix-daemon.cc:93 msgid "allow at most N build jobs" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:94 +#: nix/nix-daemon/guix-daemon.cc:95 msgid "disable chroot builds" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:95 +#: nix/nix-daemon/guix-daemon.cc:96 msgid "DIR" msgstr "VERZ" =20 -#: nix/nix-daemon/guix-daemon.cc:96 +#: nix/nix-daemon/guix-daemon.cc:97 msgid "add DIR to the build chroot" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:97 +#: nix/nix-daemon/guix-daemon.cc:98 msgid "GROUP" msgstr "GRUPPE" =20 -#: nix/nix-daemon/guix-daemon.cc:98 +#: nix/nix-daemon/guix-daemon.cc:99 msgid "perform builds as a user of GROUP" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:100 +#: nix/nix-daemon/guix-daemon.cc:101 msgid "do not use substitutes" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:101 +#: nix/nix-daemon/guix-daemon.cc:102 msgid "URLS" msgstr "URLS" =20 -#: nix/nix-daemon/guix-daemon.cc:102 +#: nix/nix-daemon/guix-daemon.cc:103 msgid "use URLS as the default list of substitute providers" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:104 +#: nix/nix-daemon/guix-daemon.cc:105 msgid "do not use the 'build hook'" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:106 +#: nix/nix-daemon/guix-daemon.cc:107 msgid "cache build failures" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:108 +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 msgid "do not keep build logs" msgstr "Erstellungsprotokolle nicht behalten" =20 -#: nix/nix-daemon/guix-daemon.cc:110 +#: nix/nix-daemon/guix-daemon.cc:113 msgid "disable compression of the build logs" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:115 +#: nix/nix-daemon/guix-daemon.cc:118 msgid "disable automatic file \"deduplication\" in the store" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:125 +#: nix/nix-daemon/guix-daemon.cc:128 msgid "impersonate Linux 2.6" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:129 +#: nix/nix-daemon/guix-daemon.cc:132 msgid "tell whether the GC must keep outputs of live derivations" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:132 +#: nix/nix-daemon/guix-daemon.cc:135 msgid "tell whether the GC must keep derivations corresponding to live o= utputs" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:135 +#: nix/nix-daemon/guix-daemon.cc:138 msgid "SOCKET" msgstr "SOCKET" =20 -#: nix/nix-daemon/guix-daemon.cc:136 +#: nix/nix-daemon/guix-daemon.cc:139 msgid "listen for connections on SOCKET" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:138 +#: nix/nix-daemon/guix-daemon.cc:141 msgid "produce debugging output" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:205 nix/nix-daemon/guix-daemon.cc:381 +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 #, c-format msgid "error: %s\n" msgstr "Fehler: %s\n" =20 -#: nix/nix-daemon/guix-daemon.cc:266 +#: nix/nix-daemon/guix-daemon.cc:281 #, c-format msgid "error: libgcrypt version mismatch\n" msgstr "Fehler: libgcrypt-Version passt nicht\n" =20 -#: nix/nix-daemon/guix-daemon.cc:357 +#: nix/nix-daemon/guix-daemon.cc:372 #, c-format -msgid "warning: daemon is running as root, so using `--build-users-group= ' is highly recommended\n" +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" msgstr "" diff --git a/po/guix/eo.po b/po/guix/eo.po index 049bdf2..25f4794 100644 --- a/po/guix/eo.po +++ b/po/guix/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.8.2\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2015-05-10 14:02+0200\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2015-06-19 21:09-0300\n" "Last-Translator: Felipe Castro \n" "Language-Team: Esperanto \n" @@ -18,66 +18,163 @@ msgstr "" "X-Generator: Poedit 1.7.7\n" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" =20 -#: gnu/packages.scm:78 +#: gnu/packages.scm:76 #, scheme-format msgid "~a: patch not found" msgstr "~a: flika=C4=B5o ne trovita" =20 -#: gnu/packages.scm:89 +#: gnu/packages.scm:87 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "ne eblis trovi ek=C5=9Dargilan ciferec-dosieron '~a' por la sist= emo '~a'" =20 -#: gnu/packages.scm:141 +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "ne eblas atingi '~a': ~a~%" =20 -#: gnu/packages.scm:382 +#: gnu/packages.scm:327 #, scheme-format msgid "looking for the latest release of GNU ~a..." msgstr "ni ser=C4=89as la lastan eldonon de GNU ~a..." =20 -#: gnu/packages.scm:389 +#: gnu/packages.scm:334 #, scheme-format msgid "~a: note: using ~a but ~a is available upstream~%" msgstr "~a: rimarko: ni uzas ~a sed ~a disponeblas unuanivele~%" =20 -#: gnu/packages.scm:411 guix/scripts/package.scm:350 +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "plursenca pak-specifigo '~a'~%" =20 -#: gnu/packages.scm:412 guix/scripts/package.scm:352 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "ni elektas ~a el ~a~%" =20 -#: gnu/packages.scm:418 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: pako ne trovita por versio ~a~%" =20 -#: gnu/packages.scm:420 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: nekonata pako~%" =20 -#: gnu/system.scm:811 -msgid "system locale lacks a definition" -msgstr "sistema loka=C4=B5aro malhavas difinon" +#: gnu/packages.scm:381 +#, scheme-format +msgid "package `~a' lacks output `~a'~%" +msgstr "pako '~a' malhavas eligon '~a'~%" + +#: gnu/packages.scm:398 +#, scheme-format +msgid "~a: package not found~%" +msgstr "~a: pako ne trovita~%" + +#: gnu/services.scm:527 +#, scheme-format +msgid "no target of type '~a' for service ~s" +msgstr "" + +#: gnu/services.scm:538 gnu/services.scm:599 +#, scheme-format +msgid "more than one target service of type '~a'" +msgstr "" + +#: gnu/services.scm:589 +#, scheme-format +msgid "service of type '~a' not found" +msgstr "" =20 -#: gnu/services/dmd.scm:51 +#: gnu/system.scm:545 +#, scheme-format +msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" +msgstr "" + +#: gnu/system.scm:561 +#, scheme-format +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" + +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: malvalida numero~%" + +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "nerekonataj ek=C5=9Dargaj parametroj por '~a'~%" + +#: gnu/services/shepherd.scm:166 #, scheme-format msgid "service '~a' provided more than once" msgstr "servo '~a' estas provizata pli ol unu foje" =20 -#: guix/scripts/build.scm:65 +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + +#: gnu/system/shadow.scm:213 +#, scheme-format +msgid "supplementary group '~a' of user '~a' is undeclared" +msgstr "" + +#: gnu/system/shadow.scm:223 +#, scheme-format +msgid "primary group '~a' of user '~a' is undeclared" +msgstr "" + +#: guix/scripts.scm:52 +#, scheme-format +msgid "invalid argument: ~a~%" +msgstr "malvalida argumento: ~a~%" + +#: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 +#: guix/scripts/publish.scm:355 +#, scheme-format +msgid "~A: unrecognized option~%" +msgstr "~A: nerekonata modifilo~%" + +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "fiasko dum kreo de radiko GC '~a': ~a~%" =20 -#: guix/scripts/build.scm:102 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "plursenca pak-specifigo '~a'~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" +"\n" +" --with-source=3DFONTO\n" +" uzi FONTOn dum konstruo de la koresponda pako" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 msgid "" "\n" " -L, --load-path=3DDIR prepend DIR to the package module search pat= h" @@ -85,7 +182,7 @@ msgstr "" "\n" " -L, --load-path=3DUJO anta=C5=ADmedi UJOn al la modula ser=C4=89vo= jo de la pako" =20 -#: guix/scripts/build.scm:104 +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" @@ -93,7 +190,16 @@ msgstr "" "\n" " -K, --keep-failed teni konstru-arbon el fiaskintaj konstruoj" =20 -#: guix/scripts/build.scm:106 +#: guix/scripts/build.scm:286 +#, fuzzy +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" +"\n" +" -n, --dry-run ne konstrui deriva=C4=B5ojn" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" @@ -101,23 +207,32 @@ msgstr "" "\n" " -n, --dry-run ne konstrui deriva=C4=B5ojn" =20 -#: guix/scripts/build.scm:108 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" msgstr "" "\n" -" --fallback retropa=C5=9Di al konstruado kiam la anstata=C5= =ADiganto fiaskas" +" --fallback retropa=C5=9Di al konstruado kiam la anstata=C5= =ADiganto " +"fiaskas" =20 -#: guix/scripts/build.scm:110 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" msgstr "" "\n" -" --no-substitutes konstrui anstata=C5=AD uzi jam-konstruitajn an= stata=C5=ADigantojn" +" --no-substitutes konstrui anstata=C5=AD uzi jam-konstruitajn " +"anstata=C5=ADigantojn" + +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" fetch substitute from URLS if they are authori= zed" +msgstr "" =20 -#: guix/scripts/build.scm:112 +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" @@ -125,7 +240,7 @@ msgstr "" "\n" " --no-build-hook ne provi dis=C5=9Dar=C4=9Di konstruojn per la = konstru-hoko" =20 -#: guix/scripts/build.scm:114 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" @@ -133,17 +248,19 @@ msgid "" msgstr "" "\n" " --max-silent-time=3DSEKUNDOJ\n" -" marki la konstruon kiel fiaskintan post SEKUND= OJ da silento" +" marki la konstruon kiel fiaskintan post SEKUND= OJ da " +"silento" =20 -#: guix/scripts/build.scm:117 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" msgstr "" "\n" -" --timeout=3DSEKUNDOJ marki la konstruon kiel fiaskintan post SEKU= NDOJ da aktivado" +" --timeout=3DSEKUNDOJ marki la konstruon kiel fiaskintan post SEKU= NDOJ da " +"aktivado" =20 -#: guix/scripts/build.scm:119 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" @@ -151,7 +268,13 @@ msgstr "" "\n" " --verbosity=3DNIVELO uzi la indikitan detaligan NIVELOn" =20 -#: guix/scripts/build.scm:121 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" @@ -159,7 +282,7 @@ msgstr "" "\n" " -c, --cores=3DN permesigi uzon de =C4=9Dis N CPU-nukleojn po= r la konstruo" =20 -#: guix/scripts/build.scm:123 +#: guix/scripts/build.scm:310 msgid "" "\n" " -M, --max-jobs=3DN allow at most N build jobs" @@ -167,12 +290,12 @@ msgstr "" "\n" " -M, --max-jobs=3DN permesi maksimume N konstru-taskojn" =20 -#: guix/scripts/build.scm:198 guix/scripts/build.scm:205 +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 #, scheme-format msgid "not a number: '~a' option argument: ~a~%" msgstr "ne estas numero: '~a' modifil-argumento: ~a~%" =20 -#: guix/scripts/build.scm:224 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" @@ -180,7 +303,7 @@ msgstr "" "Uzado: guix build [MODIFILO]... PAKO-A=C5=AC-DERIVA=C4=B4O...\n" "Konstrui la indikitan PAKO-A=C5=AC-DERIVA=C4=B4On kaj montri iliajn eli= gajn vojojn.\n" =20 -#: guix/scripts/build.scm:226 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" @@ -188,7 +311,18 @@ msgstr "" "\n" " -e, --expression=3DESPR konstrui la pakon a=C5=AD deriva=C4=B5on kiu= rezultas de ESPR" =20 -#: guix/scripts/build.scm:228 +#: guix/scripts/build.scm:441 +#, fuzzy +msgid "" +"\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" +" FILE evaluates to" +msgstr "" +"\n" +" -e, --expression=3DESPR konstrui la pakon a=C5=AD deriva=C4=B5on kiu= rezultas de ESPR" + +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" @@ -196,17 +330,20 @@ msgstr "" "\n" " -S, --source konstrui la font-deriva=C4=B5ojn de la pakoj" =20 -#: guix/scripts/build.scm:230 +#: guix/scripts/build.scm:446 msgid "" "\n" -" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be one\n" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" " of \"package\", \"all\" (default), or \"transi= tive\"" msgstr "" "\n" -" --sources[=3DTIPO] konstrui fontajn deriva=C4=B5ojn; TIPO povas= la=C5=ADelekte esti\n" -" unu el \"package\", \"all\" (aprioras), a=C5=AD= \"transitive\"" +" --sources[=3DTIPO] konstrui fontajn deriva=C4=B5ojn; TIPO povas= la=C5=ADelekte " +"esti\n" +" unu el \"package\", \"all\" (aprioras), a=C5=AD= " +"\"transitive\"" =20 -#: guix/scripts/build.scm:233 +#: guix/scripts/build.scm:449 msgid "" "\n" " -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" @@ -214,7 +351,7 @@ msgstr "" "\n" " -s, --system=3DSISTEMO provi konstrui por SISTEMO--ekz., \"i686-lin= ux\"" =20 -#: guix/scripts/build.scm:235 +#: guix/scripts/build.scm:451 msgid "" "\n" " --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" @@ -222,17 +359,7 @@ msgstr "" "\n" " --target=3DTRIOPO cruc-konstrui por TRIOPO--ekz., \"armel-linu= x-gnu\"" =20 -#: guix/scripts/build.scm:237 -msgid "" -"\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" -msgstr "" -"\n" -" --with-source=3DFONTO\n" -" uzi FONTOn dum konstruo de la koresponda pako" - -#: guix/scripts/build.scm:240 +#: guix/scripts/build.scm:453 msgid "" "\n" " --no-grafts do not graft packages" @@ -240,7 +367,7 @@ msgstr "" "\n" " --no-grafts ne kunmetu pakojn" =20 -#: guix/scripts/build.scm:242 +#: guix/scripts/build.scm:455 msgid "" "\n" " -d, --derivations return the derivation paths of the given packa= ges" @@ -248,30 +375,41 @@ msgstr "" "\n" " -d, --derivations liveri la deriva=C4=B5ajn vojojn de la indikit= aj pakoj" =20 -#: guix/scripts/build.scm:244 +#: guix/scripts/build.scm:457 +msgid "" +"\n" +" --check rebuild items to check for non-determinism iss= ues" +msgstr "" + +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" "\n" -" -r, --root=3DDOSIERO igi DOSIEROn simbola ligo al la rezulto, kaj= registri\n" +" -r, --root=3DDOSIERO igi DOSIEROn simbola ligo al la rezulto, kaj= " +"registri\n" " =C4=9Din kiel radikon de ruba=C4=B5-kolektanto= " =20 -#: guix/scripts/build.scm:247 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" msgstr "" "\n" -" --log-file liveri la protokol-dosierajn nomojn por la ind= ikitaj deriva=C4=B5oj" +" --log-file liveri la protokol-dosierajn nomojn por la " +"indikitaj deriva=C4=B5oj" =20 -#: guix/scripts/build.scm:252 guix/scripts/download.scm:53 -#: guix/scripts/package.scm:464 guix/scripts/gc.scm:58 -#: guix/scripts/hash.scm:55 guix/scripts/import.scm:90 -#: guix/scripts/pull.scm:81 guix/scripts/substitute.scm:682 -#: guix/scripts/system.scm:400 guix/scripts/lint.scm:534 -#: guix/scripts/publish.scm:56 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 +#: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -279,12 +417,15 @@ msgstr "" "\n" " -h, --help montri =C4=89i tiun helpon kaj eliri" =20 -#: guix/scripts/build.scm:254 guix/scripts/download.scm:55 -#: guix/scripts/package.scm:466 guix/scripts/gc.scm:60 -#: guix/scripts/hash.scm:57 guix/scripts/import.scm:92 -#: guix/scripts/pull.scm:83 guix/scripts/substitute.scm:684 -#: guix/scripts/system.scm:402 guix/scripts/lint.scm:538 -#: guix/scripts/publish.scm:58 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 +#: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -292,7 +433,7 @@ msgstr "" "\n" " -V, --version montri informon pri versio kaj eliri" =20 -#: guix/scripts/build.scm:281 +#: guix/scripts/build.scm:498 #, scheme-format msgid "" "invalid argument: '~a' option argument: ~a, ~\n" @@ -301,17 +442,17 @@ msgstr "" "malvalida argumento: '~a' modifila argumento: ~a, ~\n" "devas esti unu el 'package', 'all', a=C5=AD=C2=A0'transitive'~%" =20 -#: guix/scripts/build.scm:404 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" -msgstr "fontoj ne kongruas al iu ajn pako:~{ ~a~}~%" +msgid "~s: not something we can build~%" +msgstr "" =20 -#: guix/scripts/build.scm:453 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "neniu konstruita protokolo por '~a'~%" =20 -#: guix/scripts/download.scm:44 +#: guix/scripts/download.scm:45 msgid "" "Usage: guix download [OPTION] URL\n" "Download the file at URL, add it to the store, and print its store path= \n" @@ -327,7 +468,7 @@ msgstr "" "Subtenataj formoj: 'nix-base32' (aprioras), 'base32', kaj 'base16'\n" "('hex' kaj 'hexadecimal' anka=C5=AD uzeblas, por deksesumo).\n" =20 -#: guix/scripts/download.scm:50 guix/scripts/hash.scm:50 +#: guix/scripts/download.scm:51 guix/scripts/hash.scm:51 msgid "" "\n" " -f, --format=3DFMT write the hash in the given format" @@ -335,95 +476,110 @@ msgstr "" "\n" " -f, --format=3DFRM skribi la haketon la=C5=AD la indikita formo= " =20 -#: guix/scripts/download.scm:73 guix/scripts/hash.scm:75 +#: guix/scripts/download.scm:74 guix/scripts/hash.scm:76 #, scheme-format msgid "unsupported hash format: ~a~%" msgstr "nesubtenata haket-formo: ~a~%" =20 -#: guix/scripts/download.scm:96 guix/scripts/gc.scm:122 -#: guix/scripts/pull.scm:217 guix/scripts/lint.scm:585 -#: guix/scripts/publish.scm:233 guix/ui.scm:829 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 #, scheme-format -msgid "~A: unrecognized option~%" -msgstr "~A: nerekonata modifilo~%" +msgid "~A: extraneous argument~%" +msgstr "~A: fremda argumento~%" + +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" +msgstr "~a: el=C5=9Duto fiaskis~%" =20 -#: guix/scripts/download.scm:106 +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "~a: analizo de URI fiaskis~%" =20 -#: guix/scripts/download.scm:117 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "~a: el=C5=9Duto fiaskis~%" =20 -#: guix/scripts/package.scm:108 +#: guix/scripts/package.scm:102 #, scheme-format -msgid "failed to build the empty profile~%" -msgstr "fiasko dum konstruo de malplena profilo~%" +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "Provu \"info '(guix) Invoking guix package'\" por pli da informo= .'%" =20 #: guix/scripts/package.scm:124 #, scheme-format -msgid "switching from generation ~a to ~a~%" -msgstr "alterno el generacio ~a al ~a~%" +msgid "error: while creating directory `~a': ~a~%" +msgstr "eraro: dum kreo de dosierujo '~a': ~a~%" =20 -#: guix/scripts/package.scm:143 +#: guix/scripts/package.scm:128 #, scheme-format -msgid "nothing to do: already at the empty profile~%" -msgstr "nenio por fari: jam estas =C4=89e la malplena profilo~%" +msgid "Please create the `~a' directory, with you as the owner.~%" +msgstr "Bonvolu krei la dosierujon '~a', kun vi kiel posedanto.~%" =20 -#: guix/scripts/package.scm:155 +#: guix/scripts/package.scm:135 #, scheme-format -msgid "deleting ~a~%" -msgstr "ni forigas ~a~%" +msgid "error: directory `~a' is not owned by you~%" +msgstr "eraro: dosierujo '~a' ne estas posedata de vi~%" + +#: guix/scripts/package.scm:138 +#, scheme-format +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "Bonvole =C5=9Dan=C4=9Du la posedanton de '~a' al la uzanto ~s.~%= " =20 -#: guix/scripts/package.scm:268 +#: guix/scripts/package.scm:173 #, scheme-format msgid "not removing generation ~a, which is current~%" msgstr "ni ne forigas generacion ~a, kiu estas la nuna~%" =20 -#: guix/scripts/package.scm:275 +#: guix/scripts/package.scm:180 #, scheme-format msgid "no matching generation~%" msgstr "neniu kongrua generacio~%" =20 -#: guix/scripts/package.scm:278 guix/scripts/package.scm:917 +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "malvalida sintakso: ~a~%" =20 -#: guix/scripts/package.scm:340 +#: guix/scripts/package.scm:208 #, scheme-format -msgid "package `~a' lacks output `~a'~%" -msgstr "pako '~a' malhavas eligon '~a'~%" +msgid "nothing to be done~%" +msgstr "nenio por fari~%" =20 -#: guix/scripts/package.scm:357 +#: guix/scripts/package.scm:222 #, scheme-format -msgid "~a: package not found~%" -msgstr "~a: pako ne trovita~%" +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "pako ~a en profilo~%" +msgstr[1] "pakoj ~a en profilo~%" =20 -#: guix/scripts/package.scm:401 +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" msgstr "La jenaj medi-variablaj difinoj povos esti necesaj:~%" =20 -#: guix/scripts/package.scm:417 +#: guix/scripts/package.scm:325 +#, fuzzy msgid "" -"Usage: guix package [OPTION]... PACKAGES...\n" -"Install, remove, or upgrade PACKAGES in a single transaction.\n" +"Usage: guix package [OPTION]...\n" +"Install, remove, or upgrade packages in a single transaction.\n" msgstr "" "Uzmaniero: guix package [MODIFILO]... PAKOJ...\n" "Instalas, forigas, a=C5=AD =C4=9Disdatigas PAKOJn en ununura ago.\n" =20 -#: guix/scripts/package.scm:419 +#: guix/scripts/package.scm:327 +#, fuzzy msgid "" "\n" -" -i, --install=3DPACKAGE install PACKAGE" +" -i, --install PACKAGE ...\n" +" install PACKAGEs" msgstr "" "\n" " -i, --install=3DPAKO instali PAKOn" =20 -#: guix/scripts/package.scm:421 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" @@ -433,31 +589,54 @@ msgstr "" " -e, --install-from-expression=3DESP\n" " instali la pakon ESP rezultas al" =20 -#: guix/scripts/package.scm:424 +#: guix/scripts/package.scm:333 +#, fuzzy +msgid "" +"\n" +" -f, --install-from-file=3DFILE\n" +" install the package that the code within FILE\= n" +" evaluates to" +msgstr "" +"\n" +" -e, --install-from-expression=3DESP\n" +" instali la pakon ESP rezultas al" + +#: guix/scripts/package.scm:337 +#, fuzzy msgid "" "\n" -" -r, --remove=3DPACKAGE remove PACKAGE" +" -r, --remove PACKAGE ...\n" +" remove PACKAGEs" msgstr "" "\n" " -r, --remove=3DPAKO forigi PAKOn" =20 -#: guix/scripts/package.scm:426 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" msgstr "" "\n" -" -u, --upgrade[=3DREGESP] =C4=9Disdatigi =C4=89iujn instalitajn pakojn= kongruantajn al REGESP" +" -u, --upgrade[=3DREGESP] =C4=9Disdatigi =C4=89iujn instalitajn pakojn= kongruantajn al " +"REGESP" + +#: guix/scripts/package.scm:342 +msgid "" +"\n" +" -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" +" from FILE" +msgstr "" =20 -#: guix/scripts/package.scm:428 +#: guix/scripts/package.scm:345 msgid "" "\n" " --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" msgstr "" "\n" -" --do-not-upgrade[=3DREGESP] ne =C4=9Disdatigi iun ajn instalitan= pakon kongruantan al REGESP" +" --do-not-upgrade[=3DREGESP] ne =C4=9Disdatigi iun ajn instalitan= pakon " +"kongruantan al REGESP" =20 -#: guix/scripts/package.scm:430 +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -465,15 +644,17 @@ msgstr "" "\n" " --roll-back retropa=C5=9Di al la anta=C5=ADa generacio" =20 -#: guix/scripts/package.scm:432 +#: guix/scripts/package.scm:349 +#, fuzzy msgid "" "\n" -" --search-paths display needed environment variable definition= s" +" --search-paths[=3DKIND]\n" +" display needed environment variable definition= s" msgstr "" "\n" " --search-paths montri necesajn medi-variablajn difinojn" =20 -#: guix/scripts/package.scm:434 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" @@ -483,7 +664,7 @@ msgstr "" " -I, --list-generations[=3D=C5=9CABLONO]\n" " listigi generaciojn kongruantajn al =C5=9CABLO= NO" =20 -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" @@ -493,7 +674,7 @@ msgstr "" " -d, --delete-generations[=3D=C5=9CABLONO]\n" " forigi generaciojn kongruantajn al =C5=9CABLON= O" =20 -#: guix/scripts/package.scm:440 +#: guix/scripts/package.scm:358 msgid "" "\n" " -S, --switch-generation=3DPATTERN\n" @@ -503,15 +684,16 @@ msgstr "" " -S, --switch-generations=3D=C5=9CABLONO\n" " =C5=9Dalti al generacio kongruanta al =C5=9CAB= LONO" =20 -#: guix/scripts/package.scm:443 +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" msgstr "" "\n" -" -p, --profile=3DPROFILO uzi PROFILOn anstata=C5=AD la apriora profil= o de la uzanto" +" -p, --profile=3DPROFILO uzi PROFILOn anstata=C5=AD la apriora profil= o de la " +"uzanto" =20 -#: guix/scripts/package.scm:446 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -519,7 +701,7 @@ msgstr "" "\n" " --bootstrap uzi la pra=C5=9Dargilon Guile por konstrui la = profilon" =20 -#: guix/scripts/package.scm:448 guix/scripts/pull.scm:74 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" @@ -527,7 +709,7 @@ msgstr "" "\n" " --verbose produkti detalplenan eligon" =20 -#: guix/scripts/package.scm:451 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" @@ -535,7 +717,7 @@ msgstr "" "\n" " -s, --search=3DREGESP ser=C4=89i en resumo kaj priskribo uzante RE= GESP" =20 -#: guix/scripts/package.scm:453 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" @@ -545,7 +727,7 @@ msgstr "" " -I, --list-installed[=3DREGESP]\n" " listigi instalitajn pakojn kongruantajn al REG= ESP" =20 -#: guix/scripts/package.scm:456 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" @@ -555,72 +737,36 @@ msgstr "" " -A, --list-available[=3DREGESP]\n" " listigi disponeblajn pakojn kongruantajn al RE= GESP" =20 -#: guix/scripts/package.scm:459 +#: guix/scripts/package.scm:377 +#, fuzzy msgid "" "\n" -" --show=3DPACKAGE show details about PACKAGE" +" --show=3DPACKAGE show details about PACKAGE" msgstr "" "\n" " --show=3DPAKO montri detalojn pri PAKO" =20 -#: guix/scripts/package.scm:730 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "~A: fremda argumento~%" - -#: guix/scripts/package.scm:738 -#, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "Provu \"info '(guix) Invoking guix package'\" por pli da informo= .'%" - -#: guix/scripts/package.scm:760 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "eraro: dum kreo de dosierujo '~a': ~a~%" - -#: guix/scripts/package.scm:764 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "Bonvolu krei la dosierujon '~a', kun vi kiel posedanto.~%" - -#: guix/scripts/package.scm:771 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "eraro: dosierujo '~a' ne estas posedata de vi~%" - -#: guix/scripts/package.scm:774 -#, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "Bonvole =C5=9Dan=C4=9Du la posedanton de '~a' al la uzanto ~s.~%= " +#: guix/scripts/package.scm:472 +#, fuzzy, scheme-format +msgid "~a: unsupported kind of search path~%" +msgstr "~s: nesubtenata URI-skemo de servo~%" =20 -#: guix/scripts/package.scm:804 +#: guix/scripts/package.scm:755 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "ne eblas =C5=9Dalti al generacio '~a'~%" =20 -#: guix/scripts/package.scm:852 -#, scheme-format -msgid "nothing to be done~%" -msgstr "nenio por fari~%" - -#: guix/scripts/package.scm:868 -#, scheme-format -msgid "~a package in profile~%" -msgid_plural "~a packages in profile~%" -msgstr[0] "pako ~a en profilo~%" -msgstr[1] "pakoj ~a en profilo~%" - -#: guix/scripts/package.scm:883 +#: guix/scripts/package.scm:771 #, scheme-format -msgid "Generation ~a\t~a" -msgstr "Generacio ~a\t~a" +msgid "would install new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/package.scm:890 +#: guix/scripts/package.scm:773 #, scheme-format -msgid "~a\t(current)~%" -msgstr "~a\t(nuna)~%" +msgid "installing new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/gc.scm:39 +#: guix/scripts/gc.scm:40 msgid "" "Usage: guix gc [OPTION]... PATHS...\n" "Invoke the garbage collector.\n" @@ -628,7 +774,7 @@ msgstr "" "Uzmaniero: guix gc [MODIFILO]... VOJOJ...\n" "Voki la ruba=C4=B5-kolektanton.\n" =20 -#: guix/scripts/gc.scm:41 +#: guix/scripts/gc.scm:42 msgid "" "\n" " -C, --collect-garbage[=3DMIN]\n" @@ -638,7 +784,7 @@ msgstr "" " -C, --collect-garbage[=3DMIN]\n" " kolekti minimume MIN bajtojn da ruba=C4=B5o" =20 -#: guix/scripts/gc.scm:44 +#: guix/scripts/gc.scm:45 msgid "" "\n" " -d, --delete attempt to delete PATHS" @@ -646,7 +792,13 @@ msgstr "" "\n" " -d, --delete provi forigi VOJOJn" =20 -#: guix/scripts/gc.scm:46 +#: guix/scripts/gc.scm:47 +msgid "" +"\n" +" --optimize optimize the store by deduplicating identical = files" +msgstr "" + +#: guix/scripts/gc.scm:49 msgid "" "\n" " --list-dead list dead paths" @@ -654,7 +806,7 @@ msgstr "" "\n" " --list-dead listigi mortajn vojojn" =20 -#: guix/scripts/gc.scm:48 +#: guix/scripts/gc.scm:51 msgid "" "\n" " --list-live list live paths" @@ -662,7 +814,7 @@ msgstr "" "\n" " --list-live listigi aktivajn vojojn" =20 -#: guix/scripts/gc.scm:51 +#: guix/scripts/gc.scm:54 msgid "" "\n" " --references list the references of PATHS" @@ -670,7 +822,7 @@ msgstr "" "\n" " --references listigi la referencojn de VOJOJ" =20 -#: guix/scripts/gc.scm:53 +#: guix/scripts/gc.scm:56 msgid "" "\n" " -R, --requisites list the requisites of PATHS" @@ -678,7 +830,7 @@ msgstr "" "\n" " -R, --requisites listigi la anta=C5=ADbezonojn de VOJOJ" =20 -#: guix/scripts/gc.scm:55 +#: guix/scripts/gc.scm:58 msgid "" "\n" " --referrers list the referrers of PATHS" @@ -686,12 +838,40 @@ msgstr "" "\n" " --referrers listigi la referencantojn de VOJOJ" =20 -#: guix/scripts/gc.scm:84 +#: guix/scripts/gc.scm:61 +msgid "" +"\n" +" --verify[=3DOPTS] verify the integrity of the store; OPTS is a= \n" +" comma-separated combination of 'repair' and\n" +" 'contents'" +msgstr "" + +#: guix/scripts/gc.scm:65 +#, fuzzy +msgid "" +"\n" +" --list-failures list cached build failures" +msgstr "" +"\n" +" --list-dead listigi mortajn vojojn" + +#: guix/scripts/gc.scm:67 +msgid "" +"\n" +" --clear-failures remove PATHS from the set of cached failures" +msgstr "" + +#: guix/scripts/gc.scm:96 #, scheme-format msgid "invalid amount of storage: ~a~%" msgstr "malvalida kvanto da konserv-spaco: ~a~%" =20 -#: guix/scripts/hash.scm:45 +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "~A: fremda argumento~%" + +#: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" "Return the cryptographic hash of FILE.\n" @@ -705,7 +885,7 @@ msgstr "" "Subtenataj formoj: 'nix-base32' (aprioras), 'base32', kaj 'base16' ('he= x'\n" "kaj 'hexadecimal' anka=C5=AD povas esti uzataj, por deksesumo).\n" =20 -#: guix/scripts/hash.scm:52 +#: guix/scripts/hash.scm:53 msgid "" "\n" " -r, --recursive compute the hash on FILE recursively" @@ -713,17 +893,17 @@ msgstr "" "\n" " -r, --recursive komputi la haketon =C4=89e DOSIERO rikure" =20 -#: guix/scripts/hash.scm:103 +#: guix/scripts/hash.scm:104 #, scheme-format msgid "unrecognized option: ~a~%" msgstr "nerekonata modifilo: ~a~%" =20 -#: guix/scripts/hash.scm:134 guix/ui.scm:318 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "mal=C4=9Dusta nombro da argumentoj~%" @@ -740,17 +920,79 @@ msgstr "" msgid "IMPORTER must be one of the importers listed below:\n" msgstr "IMPORTILO devas esti unu el la importiloj sube listataj:\n" =20 -#: guix/scripts/import.scm:101 +#: guix/scripts/import.scm:102 #, scheme-format msgid "guix import: missing importer name~%" msgstr "guix import: mankas importila nomo~%" =20 -#: guix/scripts/import.scm:112 +#: guix/scripts/import.scm:113 #, scheme-format msgid "guix import: invalid importer~%" msgstr "guix importo: malvalida importilo~%" =20 -#: guix/scripts/pull.scm:72 +#: guix/scripts/import/cran.scm:42 +msgid "" +"Usage: guix import cran PACKAGE-NAME\n" +"Import and convert the CRAN package for PACKAGE-NAME.\n" +msgstr "" + +#: guix/scripts/import/cran.scm:44 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/cran.scm:94 +#, fuzzy, scheme-format +msgid "failed to download description for package '~a'~%" +msgstr "fiasko dum =C5=9Dargo je operaci-sistema dosiero '~a':~%" + +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 +#, fuzzy, scheme-format +msgid "too few arguments~%" +msgstr "mal=C4=9Dusta nombro da argumentoj~%" + +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 +#, fuzzy, scheme-format +msgid "too many arguments~%" +msgstr "mal=C4=9Dustaj argumentoj" + +#: guix/scripts/import/elpa.scm:41 +msgid "" +"Usage: guix import elpa PACKAGE-NAME\n" +"Import the latest package named PACKAGE-NAME from an ELPA repository.\n= " +msgstr "" + +#: guix/scripts/import/elpa.scm:43 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/elpa.scm:45 +#, fuzzy +msgid "" +"\n" +" -h, --help display this help and exit" +msgstr "" +"\n" +" -h, --help montri =C4=89i tiun helpon kaj eliri" + +#: guix/scripts/import/elpa.scm:47 +#, fuzzy +msgid "" +"\n" +" -V, --version display version information and exit" +msgstr "" +"\n" +" -V, --version montri informon pri versio kaj eliri" + +#: guix/scripts/import/elpa.scm:92 +#, fuzzy, scheme-format +msgid "failed to download package '~a'~%" +msgstr "fiasko dum =C5=9Dargo de '~a':~%" + +#: guix/scripts/pull.scm:74 msgid "" "Usage: guix pull [OPTION]...\n" "Download and deploy the latest version of Guix.\n" @@ -758,7 +1000,7 @@ msgstr "" "Uzmaniero: guix pull [MODIFILO]...\n" "El=C5=9Duti kaj liveri la lastan version de Guix.\n" =20 -#: guix/scripts/pull.scm:76 +#: guix/scripts/pull.scm:78 msgid "" "\n" " --url=3DURL download the Guix tarball from URL" @@ -766,7 +1008,7 @@ msgstr "" "\n" " --url=3DURL el=C5=9Duti la tar-dosiero de Guix el URL" =20 -#: guix/scripts/pull.scm:78 +#: guix/scripts/pull.scm:80 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the new Guix" @@ -774,128 +1016,128 @@ msgstr "" "\n" " --bootstrap uzi 'bootstrap Guile' por konstrui novan Guix" =20 -#: guix/scripts/pull.scm:132 +#: guix/scripts/pull.scm:134 msgid "tarball did not produce a single source directory" msgstr "tarball ne produktis ununuran fontan dosierujon" =20 -#: guix/scripts/pull.scm:150 +#: guix/scripts/pull.scm:152 #, scheme-format msgid "unpacking '~a'...~%" msgstr "malpakado de '~a'...~%" =20 -#: guix/scripts/pull.scm:159 +#: guix/scripts/pull.scm:161 msgid "failed to unpack source code" msgstr "ni malsukcesis malpaki font-kodon" =20 -#: guix/scripts/pull.scm:202 +#: guix/scripts/pull.scm:204 msgid "Guix already up to date\n" msgstr "Guix jam estas =C4=9Disdata\n" =20 -#: guix/scripts/pull.scm:207 +#: guix/scripts/pull.scm:209 #, scheme-format msgid "updated ~a successfully deployed under `~a'~%" msgstr "ni =C4=9Disdatigis ~a sukcese, liverita sur '~a'~%" =20 -#: guix/scripts/pull.scm:210 +#: guix/scripts/pull.scm:212 #, scheme-format msgid "failed to update Guix, check the build log~%" msgstr "fiasko dum =C4=9Disdatigo de Guix, kontrolu la konstru-protokolo= n~%" =20 -#: guix/scripts/pull.scm:219 +#: guix/scripts/pull.scm:221 #, scheme-format msgid "~A: unexpected argument~%" msgstr "~A: neatendita argumento~%" =20 -#: guix/scripts/pull.scm:228 +#: guix/scripts/pull.scm:230 msgid "failed to download up-to-date source, exiting\n" msgstr "fiasko dum el=C5=9Duto de aktuala fonto, ni =C4=89esas\n" =20 -#: guix/scripts/substitute.scm:81 +#: guix/scripts/substitute.scm:103 #, scheme-format msgid "authentication and authorization of substitutes disabled!~%" msgstr "a=C5=ADtentikigo kaj permeso de anstata=C5=ADantoj estas malebli= gataj!~%" =20 -#: guix/scripts/substitute.scm:157 +#: guix/scripts/substitute.scm:179 #, scheme-format msgid "download from '~a' failed: ~a, ~s~%" msgstr "el=C5=9Duto el '~a' fiaskis: ~a, ~s~%" =20 -#: guix/scripts/substitute.scm:169 +#: guix/scripts/substitute.scm:191 #, scheme-format msgid "while fetching ~a: server is somewhat slow~%" msgstr "dum havigo de ~a: servilo iom malrapidas~%" =20 -#: guix/scripts/substitute.scm:171 +#: guix/scripts/substitute.scm:193 #, scheme-format msgid "try `--no-substitutes' if the problem persists~%" msgstr "provu '--no-substituse' se la problemo persistos~%" =20 -#: guix/scripts/substitute.scm:214 -#, scheme-format -msgid "updating list of substitutes from '~a'...\r" -msgstr "ni =C4=9Disdatigas liston de anstata=C5=ADigantoj el '~a'...\r" - -#: guix/scripts/substitute.scm:246 +#: guix/scripts/substitute.scm:266 #, scheme-format msgid "signature version must be a number: ~s~%" msgstr "subskriba versio devas esti numero: ~s~%" =20 -#: guix/scripts/substitute.scm:250 +#: guix/scripts/substitute.scm:270 #, scheme-format msgid "unsupported signature version: ~a~%" msgstr "nesubtenata subskriba versio: ~a~%" =20 -#: guix/scripts/substitute.scm:258 +#: guix/scripts/substitute.scm:278 #, scheme-format msgid "signature is not a valid s-expression: ~s~%" msgstr "subskribo ne estas valida s-esprimo: ~s~%" =20 -#: guix/scripts/substitute.scm:262 +#: guix/scripts/substitute.scm:282 #, scheme-format msgid "invalid format of the signature field: ~a~%" msgstr "malvalida formo de subskriba kampo: ~a~%" =20 -#: guix/scripts/substitute.scm:297 +#: guix/scripts/substitute.scm:317 #, scheme-format msgid "invalid signature for '~a'~%" msgstr "malvalida subskribo por '~a'~%" =20 -#: guix/scripts/substitute.scm:299 +#: guix/scripts/substitute.scm:319 #, scheme-format msgid "hash mismatch for '~a'~%" msgstr "haketa malkongruo por '~a'~%" =20 -#: guix/scripts/substitute.scm:301 +#: guix/scripts/substitute.scm:321 #, scheme-format msgid "'~a' is signed with an unauthorized key~%" msgstr "'~a' estas subskribita sen rajtigita =C5=9Dlosilo~%" =20 -#: guix/scripts/substitute.scm:303 +#: guix/scripts/substitute.scm:323 #, scheme-format msgid "signature on '~a' is corrupt~%" msgstr "subskribo en '~a' estas difektita~%" =20 -#: guix/scripts/substitute.scm:341 +#: guix/scripts/substitute.scm:361 #, scheme-format msgid "substitute at '~a' lacks a signature~%" msgstr "anstata=C5=ADigo =C4=89e '~a' malhavas subskribon~%" =20 -#: guix/scripts/substitute.scm:504 +#: guix/scripts/substitute.scm:537 #, scheme-format msgid "updating list of substitutes from '~a'... ~5,1f%" msgstr "ni =C4=9Disdatigas liston de anstata=C5=ADigantoj el '~a'... ~5,= 1f%" =20 -#: guix/scripts/substitute.scm:552 +#: guix/scripts/substitute.scm:585 #, scheme-format msgid "~s: unsupported server URI scheme~%" msgstr "~s: nesubtenata URI-skemo de servo~%" =20 -#: guix/scripts/substitute.scm:663 +#: guix/scripts/substitute.scm:596 +#, scheme-format +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" + +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "eraro en ser=C4=89ado de gastigant-nomo: ~a~%" =20 -#: guix/scripts/substitute.scm:672 +#: guix/scripts/substitute.scm:748 msgid "" "Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" @@ -903,7 +1145,7 @@ msgstr "" "Uzmaniero: guix substitute [MODIFILO]...\n" "Interna ilo por anstata=C5=ADigi anta=C5=AD-konstruitan duuma=C4=B5on a= l loka kompila=C4=B5o.\n" =20 -#: guix/scripts/substitute.scm:674 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" @@ -913,7 +1155,7 @@ msgstr "" " --query raporti pri la disponebleco de anstata=C5=ADig= oj por la\n" " konservaj dosier-nomoj indikitaj per la =C4=89= efenigujo" =20 -#: guix/scripts/substitute.scm:677 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -922,27 +1164,22 @@ msgid "" msgstr "" "\n" " --substitute KONSERV-DOSIERO CELO\n" -" el=C5=9Duti KONSERV-DOSIEROn kaj konservi =C4=9D= in kiel Nar en la\n" +" el=C5=9Duti KONSERV-DOSIEROn kaj konservi =C4=9D= in kiel Nar " +"en la\n" " dosiero CELO" =20 -#: guix/scripts/substitute.scm:712 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" -msgstr "ACL por importo de ar=C4=A5ivoj =C5=9Dajnas esti ne-ekigita, ans= tata=C5=ADoj eble ne disponeblos\n" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" +msgstr "" +"ACL por importo de ar=C4=A5ivoj =C5=9Dajnas esti ne-ekigita, anstata=C5= =ADoj eble ne " +"disponeblos\n" =20 -#: guix/scripts/substitute.scm:750 +#: guix/scripts/substitute.scm:960 #, scheme-format -msgid "these substitute URLs will not be used:~{ ~a~}~%" -msgstr "tiuj =C4=89i anstata=C5=ADigaj URL-oj ne estos uzataj:~{ ~a~}~%" - -#: guix/scripts/substitute.scm:776 -#, scheme-format -msgid "failed to look up host '~a' (~a), substituter disabled~%" -msgstr "ni malsukcesis ser=C4=89i gastiganton '~a' (~a), anstata=C5=ADig= anto estas malebligata~%" - -#: guix/scripts/substitute.scm:883 -#, scheme-format -msgid "~a: unrecognized options~%" -msgstr "~a: nerekonata modifiloj~%" +msgid "~a: unrecognized options~%" +msgstr "~a: nerekonata modifiloj~%" =20 #: guix/scripts/authenticate.scm:58 #, scheme-format @@ -978,73 +1215,174 @@ msgstr "" msgid "wrong arguments" msgstr "mal=C4=9Dustaj argumentoj" =20 -#: guix/scripts/system.scm:106 +#: guix/scripts/system.scm:110 #, scheme-format msgid "failed to register '~a' under '~a'~%" msgstr "fiasko dum registro de '~a' sub '~a'~%" =20 -#: guix/scripts/system.scm:138 +#: guix/scripts/system.scm:142 #, scheme-format msgid "failed to install GRUB on device '~a'~%" msgstr "fiasko dum instalo de GRUB en la aparato '~a'~%" =20 -#: guix/scripts/system.scm:155 +#: guix/scripts/system.scm:160 #, scheme-format msgid "initializing the current root file system~%" msgstr "ekigado de la nuna radika dosiersistemo~%" =20 -#: guix/scripts/system.scm:209 +#: guix/scripts/system.scm:174 +#, scheme-format +msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" +msgstr "" + +#: guix/scripts/system.scm:219 +#, scheme-format +msgid "while talking to shepherd: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:265 +#, fuzzy, scheme-format +msgid "unloading service '~a'...~%" +msgstr "malpakado de '~a'...~%" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" + +#: guix/scripts/system.scm:294 #, scheme-format msgid "activating system...~%" msgstr "ni aktivas la sistemon...~%" =20 -#: guix/scripts/system.scm:259 +#: guix/scripts/system.scm:380 +msgid "the DAG of services" +msgstr "" + +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" +msgstr "" + +#: guix/scripts/system.scm:414 +#, fuzzy, scheme-format +msgid " file name: ~a~%" +msgstr "malvalida numero: ~a~%" + +#: guix/scripts/system.scm:415 #, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "nerekonataj ek=C5=9Dargaj parametroj por '~a'~%" +msgid " canonical file name: ~a~%" +msgstr "" + +#. TRANSLATORS: Please preserve the two-space indentation. +#: guix/scripts/system.scm:417 +#, fuzzy, scheme-format +msgid " label: ~a~%" +msgstr "~a: ~a~%" =20 -#: guix/scripts/system.scm:355 +#: guix/scripts/system.scm:418 +#, scheme-format +msgid " root device: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:419 +#, fuzzy, scheme-format +msgid " kernel: ~a~%" +msgstr "~a: eraro: ~a~%" + +#: guix/scripts/system.scm:527 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "ni ekigas la operaci-sistemon sub '~a'...~%" =20 -#: guix/scripts/system.scm:371 +#: guix/scripts/system.scm:566 +#, fuzzy msgid "" -"Usage: guix system [OPTION] ACTION FILE\n" +"Usage: guix system [OPTION] ACTION [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" msgstr "" "Uzmaniero: guix system [MODIFILO] AGO DOSIERO\n" "Konstrui la operaci-sistemon deklarita en DOSIERO akorde al AGO.\n" =20 -#: guix/scripts/system.scm:374 +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 msgid "The valid values for ACTION are:\n" msgstr "La validaj valoroj por AGO estas:\n" =20 -#: guix/scripts/system.scm:375 -msgid " - 'reconfigure', switch to a new operating system configuration= \n" +#: guix/scripts/system.scm:571 +#, fuzzy +msgid " reconfigure switch to a new operating system configuratio= n\n" msgstr " - 'reconfigure', alterni al nova operaci-sistema agordaro\n" =20 -#: guix/scripts/system.scm:377 -msgid " - 'build', build the operating system without installing anythi= ng\n" +#: guix/scripts/system.scm:573 +msgid " list-generations list the system generations\n" +msgstr "" + +#: guix/scripts/system.scm:575 +#, fuzzy +msgid "" +" build build the operating system without installing anyth= ing\n" msgstr " - 'build', konstrui la operaci-sistemon sen instali ion ajn\n" =20 -#: guix/scripts/system.scm:379 -msgid " - 'vm', build a virtual machine image that shares the host's st= ore\n" -msgstr " - 'vm', konstrui virtual-ma=C5=9Dinan bildon kiu kundividas la= gastigantan memoron\n" +#: guix/scripts/system.scm:577 +#, fuzzy +msgid " container build a container that shares the host's stor= e\n" +msgstr "" +" - 'vm', konstrui virtual-ma=C5=9Dinan bildon kiu kundividas la gastig= antan " +"memoron\n" + +#: guix/scripts/system.scm:579 +#, fuzzy +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" +msgstr "" +" - 'vm', konstrui virtual-ma=C5=9Dinan bildon kiu kundividas la gastig= antan " +"memoron\n" =20 -#: guix/scripts/system.scm:381 -msgid " - 'vm-image', build a freestanding virtual machine image\n" +#: guix/scripts/system.scm:581 +#, fuzzy +msgid " vm-image build a freestanding virtual machine image\n" msgstr " - 'vm-image', konstrui memstaran virtual-ma=C5=9Dinan bildon\n= " =20 -#: guix/scripts/system.scm:383 -msgid " - 'disk-image', build a disk image, suitable for a USB stick\n" +#: guix/scripts/system.scm:583 +#, fuzzy +msgid " disk-image build a disk image, suitable for a USB stick\= n" msgstr " - 'disk-image', konstrui disk-bildon, ta=C5=ADga por USB-memor= o\n" =20 -#: guix/scripts/system.scm:385 -msgid " - 'init', initialize a root file system to run GNU.\n" +#: guix/scripts/system.scm:585 +#, fuzzy +msgid " init initialize a root file system to run GNU\n" msgstr " - 'init', ekigi radikan dosiersistemon por lan=C4=89i GNU-on.\= n" =20 -#: guix/scripts/system.scm:389 +#: guix/scripts/system.scm:587 +msgid " extension-graph emit the service extension graph in Dot forma= t\n" +msgstr "" + +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" +msgstr "" + +#: guix/scripts/system.scm:593 +#, fuzzy +msgid "" +"\n" +" -d, --derivation return the derivation of the given system" +msgstr "" +"\n" +" -d, --derivations liveri la deriva=C4=B5ajn vojojn de la indikit= aj pakoj" + +#: guix/scripts/system.scm:595 +#, fuzzy +msgid "" +"\n" +" --on-error=3DSTRATEGY\n" +" apply STRATEGY when an error occurs while read= ing " +"FILE" +msgstr "" +"\n" +" --with-source=3DFONTO\n" +" uzi FONTOn dum konstruo de la koresponda pako" + +#: guix/scripts/system.scm:598 msgid "" "\n" " --image-size=3DSIZE for 'vm-image', produce an image of SIZE" @@ -1052,7 +1390,7 @@ msgstr "" "\n" " --image-size=3DGRANDO por 'vm-image', produkti bildon je GRANDO" =20 -#: guix/scripts/system.scm:391 +#: guix/scripts/system.scm:600 msgid "" "\n" " --no-grub for 'init', do not install GRUB" @@ -1060,23 +1398,25 @@ msgstr "" "\n" " --no-grub por 'init', ne instali GRUB" =20 -#: guix/scripts/system.scm:393 +#: guix/scripts/system.scm:602 msgid "" "\n" " --share=3DSPEC for 'vm', share host file system according t= o SPEC" msgstr "" "\n" -" --share=3DSPEC por 'vm', kundividi gastigan dosiersistemon = akorde al SPEC" +" --share=3DSPEC por 'vm', kundividi gastigan dosiersistemon = akorde " +"al SPEC" =20 -#: guix/scripts/system.scm:395 +#: guix/scripts/system.scm:604 msgid "" "\n" " --expose=3DSPEC for 'vm', expose host file system according = to SPEC" msgstr "" "\n" -" --expose=3DSPEC for 'vm', elmontri gastigan dosiersistemon a= korde al SPEC" +" --expose=3DSPEC for 'vm', elmontri gastigan dosiersistemon a= korde " +"al SPEC" =20 -#: guix/scripts/system.scm:397 +#: guix/scripts/system.scm:606 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -1084,35 +1424,49 @@ msgstr "" "\n" " --full-boot por 'vm', fari kompletan ek=C5=9Dargan sekvon" =20 -#: guix/scripts/system.scm:484 +#: guix/scripts/system.scm:690 +#, scheme-format +msgid "no configuration file specified~%" +msgstr "neniu agorda dosiero estis indikata~%" + +#: guix/scripts/system.scm:753 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: nekonata pako~%" =20 -#: guix/scripts/system.scm:499 +#: guix/scripts/system.scm:768 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "mal=C4=9Dusta nombro da argumentoj por la ago '~a'~%" =20 -#: guix/scripts/system.scm:522 -#, scheme-format -msgid "no configuration file specified~%" -msgstr "neniu agorda dosiero estis indikata~%" +#: guix/scripts/system.scm:773 +#, fuzzy, scheme-format +msgid "guix system: missing command name~%" +msgstr "guix: mankas komanda nomo~%" + +#: guix/scripts/system.scm:775 +#, fuzzy, scheme-format +msgid "Try 'guix system --help' for more information.~%" +msgstr "Provu 'guix --help' por pli da informo.~%" =20 -#: guix/scripts/lint.scm:90 +#: guix/scripts/lint.scm:126 #, scheme-format msgid "Available checkers:~%" msgstr "Disponeblaj kontroliloj:~%" =20 -#: guix/scripts/lint.scm:110 +#: guix/scripts/lint.scm:146 msgid "description should not be empty" msgstr "priskribo ne devos esti malplena" =20 -#: guix/scripts/lint.scm:117 +#: guix/scripts/lint.scm:156 +msgid "Texinfo markup in description is invalid" +msgstr "" + +#: guix/scripts/lint.scm:164 msgid "description should start with an upper-case letter or digit" msgstr "priskribo devos komenci per majuskla litero a=C5=AD cifero" =20 -#: guix/scripts/lint.scm:133 +#: guix/scripts/lint.scm:180 #, scheme-format msgid "" "sentences in description should be followed ~\n" @@ -1121,133 +1475,206 @@ msgstr "" "frazoj en la priskribo devos esti sekvataj de ~\n" "du spacoj; ebla malobeo~p =C4=89e ~{~a~^, ~}" =20 -#: guix/scripts/lint.scm:154 +#: guix/scripts/lint.scm:204 msgid "pkg-config should probably be a native input" msgstr "pkg-config probable devos esti originala enigo" =20 -#: guix/scripts/lint.scm:169 +#: guix/scripts/lint.scm:219 msgid "synopsis should not be empty" msgstr "resumo ne devos esti malplena" =20 -#: guix/scripts/lint.scm:177 +#: guix/scripts/lint.scm:227 msgid "no period allowed at the end of the synopsis" msgstr "punkto ne estas permesata =C4=89e la fino de la resumo" =20 -#: guix/scripts/lint.scm:189 +#: guix/scripts/lint.scm:239 msgid "no article allowed at the beginning of the synopsis" msgstr "artikolo ne estas permesata =C4=89e komenco de la resumo" =20 -#: guix/scripts/lint.scm:196 +#: guix/scripts/lint.scm:246 msgid "synopsis should be less than 80 characters long" msgstr "resumo devos havi malpli ol 80 signoj" =20 -#: guix/scripts/lint.scm:202 +#: guix/scripts/lint.scm:252 msgid "synopsis should start with an upper-case letter or digit" msgstr "resumo devos komenci per majuskla litero a=C5=AD cifero" =20 -#: guix/scripts/lint.scm:209 +#: guix/scripts/lint.scm:259 msgid "synopsis should not start with the package name" msgstr "resumo ne devos komenci per la pak-nomo" =20 -#: guix/scripts/lint.scm:299 guix/scripts/lint.scm:310 +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a ne estas alirebla: ~a (~s)" =20 -#: guix/scripts/lint.scm:316 +#: guix/scripts/lint.scm:372 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "URI ~a domajno ne trovita: ~a" =20 -#: guix/scripts/lint.scm:324 +#: guix/scripts/lint.scm:380 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a nealirebla: ~a" =20 -#: guix/scripts/lint.scm:350 +#: guix/scripts/lint.scm:406 msgid "invalid value for home page" msgstr "malvalida valoroj por hejmpa=C4=9Do" =20 -#: guix/scripts/lint.scm:353 +#: guix/scripts/lint.scm:409 #, scheme-format msgid "invalid home page URL: ~s" msgstr "malvalida hejmpa=C4=9Da URL: ~s" =20 -#: guix/scripts/lint.scm:378 +#: guix/scripts/lint.scm:429 msgid "file names of patches should start with the package name" msgstr "dosiernomoj de flika=C4=B5oj devos komenci per la pak-nomo" =20 -#: guix/scripts/lint.scm:416 +#: guix/scripts/lint.scm:466 #, scheme-format msgid "~a: ~a: proposed synopsis: ~s~%" msgstr "~a: ~a: proponita resumo: ~s~%" =20 -#: guix/scripts/lint.scm:428 +#: guix/scripts/lint.scm:478 #, scheme-format msgid "~a: ~a: proposed description:~% \"~a\"~%" msgstr "~a: ~a: proponita priskribo:~% \"~a\"~%" =20 -#: guix/scripts/lint.scm:453 guix/scripts/lint.scm:457 +#: guix/scripts/lint.scm:515 +#, fuzzy +msgid "all the source URIs are unreachable:" +msgstr "URI ~a nealirebla: ~a" + +#: guix/scripts/lint.scm:538 +#, fuzzy +msgid "the source file name should contain the package name" +msgstr "dosiernomoj de flika=C4=B5oj devos komenci per la pak-nomo" + +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 #, scheme-format msgid "failed to create derivation: ~a" msgstr "fiasko dum kreo de deriva=C4=B5o: ~a" =20 -#: guix/scripts/lint.scm:463 +#: guix/scripts/lint.scm:557 #, scheme-format msgid "failed to create derivation: ~s~%" msgstr "fiasko dum kreo de deriva=C4=B5o: ~s~%" =20 -#: guix/scripts/lint.scm:476 +#: guix/scripts/lint.scm:567 +#, fuzzy +msgid "invalid license field" +msgstr "malvalidaj simbol-ligaj =C4=B5etonoj" + +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "fiasko dum =C5=9Dargo de '~a': ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 +#, scheme-format +msgid "tabulation on line ~a, column ~a" +msgstr "" + +#: guix/scripts/lint.scm:647 +#, scheme-format +msgid "trailing white space on line ~a" +msgstr "" + +#: guix/scripts/lint.scm:657 +#, scheme-format +msgid "line ~a is way too long (~a characters)" +msgstr "" + +#: guix/scripts/lint.scm:668 +#, scheme-format +msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" +msgstr "" + +#: guix/scripts/lint.scm:723 msgid "Validate package descriptions" msgstr "Validigi pak-priskribojn" =20 -#: guix/scripts/lint.scm:480 +#: guix/scripts/lint.scm:727 msgid "Validate synopsis & description of GNU packages" msgstr "Validigi resumon kaj priskribon de GNU-pakoj" =20 -#: guix/scripts/lint.scm:484 +#: guix/scripts/lint.scm:731 msgid "Identify inputs that should be native inputs" msgstr "Identigi enigojn kiuj devus esti originalaj enigoj" =20 -#: guix/scripts/lint.scm:488 +#: guix/scripts/lint.scm:735 msgid "Validate file names and availability of patches" msgstr "Validigi dosiernomojn kaj disponeblon de flika=C4=B5oj" =20 -#: guix/scripts/lint.scm:492 +#: guix/scripts/lint.scm:739 msgid "Validate home-page URLs" msgstr "Validigi heimpa=C4=9Dajn URL" =20 -#: guix/scripts/lint.scm:496 +#. TRANSLATORS: is the name of a data type and must not be +#. translated. +#: guix/scripts/lint.scm:745 +msgid "Make sure the 'license' field is a or a list thereof" +msgstr "" + +#: guix/scripts/lint.scm:750 msgid "Validate source URLs" msgstr "Validigi fontajn URL" =20 -#: guix/scripts/lint.scm:500 +#: guix/scripts/lint.scm:754 +#, fuzzy +msgid "Validate file names of sources" +msgstr "Validigi dosiernomojn kaj disponeblon de flika=C4=B5oj" + +#: guix/scripts/lint.scm:758 msgid "Report failure to compile a package to a derivation" msgstr "Raporti fiaskon kompili pakon al deriva=C4=B5o" =20 -#: guix/scripts/lint.scm:504 +#: guix/scripts/lint.scm:762 msgid "Validate package synopses" msgstr "Validigi pak-resumojn" =20 -#: guix/scripts/lint.scm:529 +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 +msgid "Look for formatting issues in the source" +msgstr "" + +#: guix/scripts/lint.scm:796 +#, fuzzy msgid "" "Usage: guix lint [OPTION]... [PACKAGE]...\n" -"Run a set of checkers on the specified package; if none is specified, r= un the checkers on all packages.\n" +"Run a set of checkers on the specified package; if none is specified,\n= " +"run the checkers on all packages.\n" msgstr "" "Uzmaniero: guix lint [MODIFILO]... [PAKO]...\n" -"Lan=C4=89i aron da kontroliloj por la indikita pako; se neniu estas ind= ikita, lan=C4=89i la konstrolilojn por =C4=89iuj pakoj.\n" +"Lan=C4=89i aron da kontroliloj por la indikita pako; se neniu estas ind= ikita, " +"lan=C4=89i la konstrolilojn por =C4=89iuj pakoj.\n" =20 -#: guix/scripts/lint.scm:531 +#: guix/scripts/lint.scm:799 +#, fuzzy msgid "" "\n" " -c, --checkers=3DCHECKER1,CHECKER2...\n" -" only run the specificed checkers" +" only run the specified checkers" msgstr "" "\n" " -c, --checkers=3DKONTROL1,KONTROL2...\n" " nur lan=C4=89i la indikitajn kontrolilojn" =20 -#: guix/scripts/lint.scm:536 +#: guix/scripts/lint.scm:804 msgid "" "\n" " -l, --list-checkers display the list of available lint checkers" @@ -1255,12 +1682,12 @@ msgstr "" "\n" " -l, --list-checkers montri la liston de disponeblaj kontroliloj" =20 -#: guix/scripts/lint.scm:556 +#: guix/scripts/lint.scm:824 #, scheme-format msgid "~a: invalid checker~%" msgstr "~a: malvalida kontrolilo~%" =20 -#: guix/scripts/publish.scm:49 +#: guix/scripts/publish.scm:52 #, scheme-format msgid "" "Usage: guix publish [OPTION]...\n" @@ -1269,7 +1696,7 @@ msgstr "" "Uzmaniero: guix publish [MODIFILO]...\n" "Publikigas ~a sur HTTP.\n" =20 -#: guix/scripts/publish.scm:51 +#: guix/scripts/publish.scm:54 msgid "" "\n" " -p, --port=3DPORT listen on PORT" @@ -1277,7 +1704,22 @@ msgstr "" "\n" " -p, --port=3DPORDO a=C5=ADskulti =C4=89e PORDOn" =20 -#: guix/scripts/publish.scm:53 +#: guix/scripts/publish.scm:56 +#, fuzzy +msgid "" +"\n" +" --listen=3DHOST listen on the network interface for HOST" +msgstr "" +"\n" +" --references listigi la referencojn de VOJOJ" + +#: guix/scripts/publish.scm:58 +msgid "" +"\n" +" -u, --user=3DUSER change privileges to USER as soon as possibl= e" +msgstr "" + +#: guix/scripts/publish.scm:60 msgid "" "\n" " -r, --repl[=3DPORT] spawn REPL server on PORT" @@ -1285,74 +1727,372 @@ msgstr "" "\n" " -r, --repl[=3DPORDO] renaskigi REPL-servilo =C4=89e PORDO" =20 -#: guix/scripts/publish.scm:235 +#: guix/scripts/publish.scm:76 +#, fuzzy, scheme-format +msgid "lookup of host '~a' failed: ~a~%" +msgstr "el=C5=9Duto el '~a' fiaskis: ~a, ~s~%" + +#: guix/scripts/publish.scm:100 #, scheme-format -msgid "~A: extraneuous argument~%" -msgstr "~A: fremda argumento~%" +msgid "lookup of host '~a' returned nothing" +msgstr "" + +#: guix/scripts/publish.scm:343 +#, fuzzy, scheme-format +msgid "user '~a' not found: ~a~%" +msgstr "URI ~a domajno ne trovita: ~a" =20 -#: guix/scripts/publish.scm:239 +#: guix/scripts/publish.scm:378 #, scheme-format -msgid "publishing ~a on port ~d~%" +msgid "server running as root; consider using the '--user' option!~%" +msgstr "" + +#: guix/scripts/publish.scm:380 +#, fuzzy, scheme-format +msgid "publishing ~a on ~a, port ~d~%" msgstr "ni publikigas ~a sur pordo ~d~%" =20 -#: guix/gnu-maintenance.scm:447 +#: guix/scripts/edit.scm:41 +msgid "" +"Usage: guix edit PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" +msgstr "" + +#: guix/scripts/edit.scm:62 +#, scheme-format +msgid "file '~a' not found in search path ~s~%" +msgstr "" + +#: guix/scripts/edit.scm:83 +#, scheme-format +msgid "source location of package '~a' is unknown~%" +msgstr "" + +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "fiasko dum =C5=9Dargo de '~a': ~a~%" + +#: guix/scripts/size.scm:75 +#, scheme-format +msgid "no available substitute information for '~a'~%" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "store item" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "total" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "self" +msgstr "" + +#. TRANSLATORS: This is the title of a graph, meaning that the graph +#. represents a profile of the store (the "store" being the place where +#. packages are stored.) +#: guix/scripts/size.scm:204 +msgid "store profile" +msgstr "" + +#: guix/scripts/size.scm:213 +#, fuzzy +msgid "" +"Usage: guix size [OPTION]... PACKAGE\n" +"Report the size of PACKAGE and its dependencies.\n" +msgstr "" +"Uzmaniero: guix package [MODIFILO]... PAKOJ...\n" +"Instalas, forigas, a=C5=AD =C4=9Disdatigas PAKOJn en ununura ago.\n" + +#: guix/scripts/size.scm:218 +#, fuzzy +msgid "" +"\n" +" -s, --system=3DSYSTEM consider packages for SYSTEM--e.g., \"i686-l= inux\"" +msgstr "" +"\n" +" -s, --system=3DSISTEMO provi konstrui por SISTEMO--ekz., \"i686-lin= ux\"" + +#: guix/scripts/size.scm:220 +msgid "" +"\n" +" -m, --map-file=3DFILE write to FILE a graphical map of disk usage" +msgstr "" + +#: guix/scripts/size.scm:274 +msgid "missing store item argument\n" +msgstr "" + +#: guix/scripts/size.scm:292 +#, fuzzy +msgid "too many arguments\n" +msgstr "mal=C4=9Dustaj argumentoj" + +#: guix/scripts/graph.scm:76 +msgid "the DAG of packages, excluding implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:132 +msgid "the DAG of packages, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:171 +msgid "same as 'bag', but without the bootstrap nodes" +msgstr "" + +#: guix/scripts/graph.scm:216 +msgid "the DAG of derivations" +msgstr "" + +#: guix/scripts/graph.scm:240 +#, scheme-format +msgid "references for '~a' are not known~%" +msgstr "" + +#: guix/scripts/graph.scm:247 +msgid "the DAG of run-time dependencies (store references)" +msgstr "" + +#: guix/scripts/graph.scm:277 +#, fuzzy, scheme-format +msgid "~a: unknown node type~%" +msgstr "~a: nekonata pako~%" + +#: guix/scripts/graph.scm:281 +#, fuzzy +msgid "The available node types are:\n" +msgstr "La validaj valoroj por AGO estas:\n" + +#. TRANSLATORS: Here 'dot' is the name of a program; it must not be +#. translated. +#: guix/scripts/graph.scm:317 +msgid "" +"Usage: guix graph PACKAGE...\n" +"Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" +msgstr "" + +#: guix/scripts/graph.scm:319 +msgid "" +"\n" +" -t, --type=3DTYPE represent nodes of the given TYPE" +msgstr "" + +#: guix/scripts/graph.scm:321 +#, fuzzy +msgid "" +"\n" +" --list-types list the available graph types" +msgstr "" +"\n" +" --list-dead listigi mortajn vojojn" + +#: guix/scripts/graph.scm:323 +#, fuzzy +msgid "" +"\n" +" -e, --expression=3DEXPR consider the package EXPR evaluates to" +msgstr "" +"\n" +" -e, --expression=3DESPR konstrui la pakon a=C5=AD deriva=C4=B5on kiu= rezultas de ESPR" + +#: guix/scripts/challenge.scm:104 +#, fuzzy, scheme-format +msgid "~a: no substitute at '~a'~%" +msgstr "anstata=C5=ADigo =C4=89e '~a' malhavas subskribon~%" + +#: guix/scripts/challenge.scm:120 +#, fuzzy, scheme-format +msgid "no substitutes for '~a'~%" +msgstr "malvalida subskribo por '~a'~%" + +#: guix/scripts/challenge.scm:137 guix/scripts/challenge.scm:157 +#, fuzzy, scheme-format +msgid "no local build for '~a'~%" +msgstr "neniu konstruita protokolo por '~a'~%" + +#: guix/scripts/challenge.scm:154 +#, scheme-format +msgid "~a contents differ:~%" +msgstr "" + +#: guix/scripts/challenge.scm:156 +#, fuzzy, scheme-format +msgid " local hash: ~a~%" +msgstr "fiasko dum =C5=9Dargo de '~a': ~a~%" + +#: guix/scripts/challenge.scm:161 +#, fuzzy, scheme-format +msgid " ~50a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/scripts/challenge.scm:165 +#, scheme-format +msgid " ~50a: unavailable~%" +msgstr "" + +#: guix/scripts/challenge.scm:175 +msgid "" +"Usage: guix challenge [PACKAGE...]\n" +"Challenge the substitutes for PACKAGE... provided by one or more server= s.\n" +msgstr "" + +#: guix/scripts/challenge.scm:177 +#, fuzzy +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" compare build results with those at URLS" +msgstr "" +"\n" +" --max-silent-time=3DSEKUNDOJ\n" +" marki la konstruon kiel fiaskintan post SEKUND= OJ da " +"silento" + +#: guix/gnu-maintenance.scm:514 +msgid "Updater for GNU packages" +msgstr "" + +#: guix/gnu-maintenance.scm:521 +msgid "Updater for GNOME packages" +msgstr "" + +#: guix/scripts/container.scm:25 +msgid "" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" +msgstr "" + +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" + +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix import: mankas importila nomo~%" + +#: guix/scripts/container.scm:63 +#, fuzzy, scheme-format +msgid "guix container: invalid action~%" +msgstr "guix importo: malvalida importilo~%" + +#: guix/scripts/container/exec.scm:40 +msgid "" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" +msgstr "" + +#: guix/scripts/container/exec.scm:69 +#, scheme-format +msgid "~a: extraneous argument~%" +msgstr "~a: fremda argumento~%" + +#: guix/scripts/container/exec.scm:80 +#, fuzzy, scheme-format +msgid "no pid specified~%" +msgstr "neniu agorda dosiero estis indikata~%" + +#: guix/scripts/container/exec.scm:83 +#, fuzzy, scheme-format +msgid "no command specified~%" +msgstr "neniu agorda dosiero estis indikata~%" + +#: guix/scripts/container/exec.scm:86 +#, scheme-format +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" +msgstr "" + +#: guix/upstream.scm:158 #, scheme-format msgid "signature verification failed for `~a'~%" msgstr "subskriba kontrolo fiaskis por '~a'~%" =20 -#: guix/gnu-maintenance.scm:449 +#: guix/upstream.scm:160 #, scheme-format msgid "(could be because the public key is not in your keyring)~%" msgstr "(eble =C4=89ar la publika =C5=9Dlosilo ne estas en via =C5=9Dlos= ilringo)~%" =20 -#: guix/gnu-maintenance.scm:524 +#: guix/upstream.scm:192 +msgid "gz" +msgstr "" + +#: guix/upstream.scm:255 #, scheme-format msgid "~a: could not locate source file" msgstr "~a: ne eblis trovi fontan dosieron" =20 -#: guix/gnu-maintenance.scm:529 +#: guix/upstream.scm:260 #, scheme-format msgid "~a: ~a: no `version' field in source; skipping~%" msgstr "~a: ~a: neniu kampo 'version' en la fonto; ni saltas~%" =20 -#: guix/ui.scm:142 guix/ui.scm:159 +#: guix/ui.scm:236 +msgid "entering debugger; type ',bt' for a backtrace\n" +msgstr "" + +#: guix/ui.scm:252 guix/ui.scm:269 #, scheme-format msgid "failed to load '~a': ~a~%" msgstr "fiasko dum =C5=9Dargo de '~a': ~a~%" =20 -#: guix/ui.scm:145 +#: guix/ui.scm:255 #, scheme-format msgid "~a: error: ~a~%" msgstr "~a: eraro: ~a~%" =20 -#: guix/ui.scm:149 guix/ui.scm:165 +#: guix/ui.scm:258 guix/ui.scm:512 +#, scheme-format +msgid "exception thrown: ~s~%" +msgstr "" + +#: guix/ui.scm:260 guix/ui.scm:278 #, scheme-format msgid "failed to load '~a':~%" msgstr "fiasko dum =C5=9Dargo de '~a':~%" =20 -#: guix/ui.scm:162 +#: guix/ui.scm:272 #, scheme-format msgid "~a: warning: ~a~%" msgstr "~a: averto: ~a~%" =20 -#: guix/ui.scm:174 +#: guix/ui.scm:275 +#, fuzzy, scheme-format +msgid "failed to load '~a': exception thrown: ~s~%" +msgstr "fiasko dum =C5=9Dargo de '~a': ~a~%" + +#: guix/ui.scm:287 #, scheme-format msgid "failed to install locale: ~a~%" msgstr "fiasko dum instalo de loka=C4=B5aro: ~a~%" =20 -#: guix/ui.scm:193 +#: guix/ui.scm:306 +#, fuzzy msgid "" -"Copyright (C) 2015 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" "Kopirajto (C) 2015 la a=C5=ADtoroj de Guix\n" -"Permeso GPLv3+: GNU GPL versio 3 a=C5=AD posta \n" -"Tio =C4=89i estas libera programaro: vi estas libera por modifi kaj red= isdoni =C4=9Din.\n" +"Permeso GPLv3+: GNU GPL versio 3 a=C5=AD posta \n" +"Tio =C4=89i estas libera programaro: vi estas libera por modifi kaj red= isdoni " +"=C4=9Din.\n" "Estas NENIU GARANTIO, plejamplekse permesate de le=C4=9Doj.\n" =20 -#: guix/ui.scm:201 +#: guix/ui.scm:314 #, scheme-format msgid "" "\n" @@ -1361,7 +2101,7 @@ msgstr "" "\n" "Raportu program-misojn al: ~a." =20 -#: guix/ui.scm:203 +#: guix/ui.scm:316 #, scheme-format msgid "" "\n" @@ -1370,7 +2110,7 @@ msgstr "" "\n" "hejm-pa=C4=9Do de ~a: <~a>" =20 -#: guix/ui.scm:205 +#: guix/ui.scm:318 msgid "" "\n" "General help using GNU software: " @@ -1378,194 +2118,219 @@ msgstr "" "\n" "=C4=9Cenerala helpo por uzi programaron de GNU: " =20 -#: guix/ui.scm:227 +#: guix/ui.scm:363 +#, fuzzy, scheme-format +msgid "'~a' is not a valid regular expression: ~a~%" +msgstr "subskribo ne estas valida s-esprimo: ~s~%" + +#: guix/ui.scm:369 #, scheme-format msgid "~a: invalid number~%" msgstr "~a: malvalida numero~%" =20 -#: guix/ui.scm:244 +#: guix/ui.scm:386 #, scheme-format msgid "invalid number: ~a~%" msgstr "malvalida numero: ~a~%" =20 -#: guix/ui.scm:267 +#: guix/ui.scm:409 #, scheme-format msgid "unknown unit: ~a~%" msgstr "nekonata unuo: ~a~%" =20 -#: guix/ui.scm:278 +#: guix/ui.scm:420 #, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "~a:~a:~a: pako '~a' havas malvalidan enigon: ~s~%" =20 -#: guix/ui.scm:285 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" msgstr "~a: ~a: konstrui sistemon '~a' ne subtenas crucajn konstruojn~%" =20 -#: guix/ui.scm:290 +#: guix/ui.scm:432 #, scheme-format msgid "profile '~a' does not exist~%" msgstr "profilo '~a' ne ekzistas~%" =20 -#: guix/ui.scm:293 +#: guix/ui.scm:435 #, scheme-format msgid "generation ~a of profile '~a' does not exist~%" msgstr "generacio ~a de la profilo '~a' ne ekzistas~%" =20 -#: guix/ui.scm:300 +#: guix/ui.scm:442 #, scheme-format msgid "corrupt input while restoring '~a' from ~s~%" msgstr "difektita enigo dum restarigo de '~a' el ~s~%" =20 -#: guix/ui.scm:302 +#: guix/ui.scm:444 #, scheme-format msgid "corrupt input while restoring archive from ~s~%" msgstr "difektita enigo dum restarigo de ar=C4=A5ivo el ~s~%" =20 -#: guix/ui.scm:305 +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "fiasko dum konekto al '~a': ~a~%" =20 -#: guix/ui.scm:310 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "konstruo fiakis: ~a~%" =20 -#: guix/ui.scm:313 +#: guix/ui.scm:455 #, scheme-format msgid "reference to invalid output '~a' of derivation '~a'~%" msgstr "referenco al malvalida eligo '~a' de la deriva=C4=B5o '~a'~%" =20 -#: guix/ui.scm:324 +#: guix/ui.scm:466 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" =20 -#: guix/ui.scm:343 +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "fiasko dum lego de esprimo ~s: ~s~%" =20 -#: guix/ui.scm:349 -#, scheme-format -msgid "failed to evaluate expression `~a': ~s~%" +#: guix/ui.scm:507 +#, fuzzy, scheme-format +msgid "failed to evaluate expression '~a':~%" msgstr "fiasko dum analizo de esprimo '~a': ~a~%" =20 -#: guix/ui.scm:358 +#: guix/ui.scm:510 +#, fuzzy, scheme-format +msgid "syntax error: ~a~%" +msgstr "~a: eraro: ~a~%" + +#: guix/ui.scm:524 #, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "la esprimo ~s ne rezultas pakon~%" =20 -#: guix/ui.scm:410 +#: guix/ui.scm:586 #, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" msgstr[0] "~:[La jena derivo estus konstruata:~%~{ ~a~%~}~;~]" msgstr[1] "~:[La jenaj derivoj estus konstruataj:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:415 +#: guix/ui.scm:591 #, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[La jena derivo estus el=C5=9Dutata:~%~{ ~a~%~}~;~]" msgstr[1] "~:[La jenaj derivoj estus el=C5=9Dutataj:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:421 +#: guix/ui.scm:597 #, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[La jena derivo estos konstruata:~%~{ ~a~%~}~;~]" msgstr[1] "~:[La jenaj derivoj estos konstruataj:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:426 +#: guix/ui.scm:602 #, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" msgstr[0] "~:[La jena derivo estos el=C5=9Dutata:~%~{ ~a~%~}~;~]" msgstr[1] "~:[La jenaj derivoj estos el=C5=9Dutataj:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:478 +#: guix/ui.scm:657 #, scheme-format msgid "The following package would be removed:~%~{~a~%~}~%" msgid_plural "The following packages would be removed:~%~{~a~%~}~%" msgstr[0] "La jena pako estus forigata:~%~{~a~%~}~%" msgstr[1] "La jenaj pakoj estus forigataj:~%~{~a~%~}~%" =20 -#: guix/ui.scm:483 +#: guix/ui.scm:662 #, scheme-format msgid "The following package will be removed:~%~{~a~%~}~%" msgid_plural "The following packages will be removed:~%~{~a~%~}~%" msgstr[0] "La jena pako estos forigata:~%~{~a~%~}~%" msgstr[1] "La jenaj pakoj estos forigataj:~%~{~a~%~}~%" =20 -#: guix/ui.scm:496 +#: guix/ui.scm:675 #, scheme-format msgid "The following package would be downgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" msgstr[0] "La jena pako estus malpromociata:~%~{~a~%~}~%" msgstr[1] "La jenaj pakoj estus malpromociataj:~%~{~a~%~}~%" =20 -#: guix/ui.scm:501 +#: guix/ui.scm:680 #, scheme-format msgid "The following package will be downgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" msgstr[0] "La jena pako estos malpromociata:~%~{~a~%~}~%" msgstr[1] "La jenaj pakoj estos malpromociataj:~%~{~a~%~}~%" =20 -#: guix/ui.scm:514 +#: guix/ui.scm:693 #, scheme-format msgid "The following package would be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" msgstr[0] "La jena pako estus =C4=9Disdatigata:~%~{~a~%~}~%" msgstr[1] "La jenaj pakoj estus =C4=9Disdatigataj:~%~{~a~%~}~%" =20 -#: guix/ui.scm:519 +#: guix/ui.scm:698 #, scheme-format msgid "The following package will be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" msgstr[0] "La jena pako estos =C4=9Disdatigata:~%~{~a~%~}~%" msgstr[1] "La jenaj pakoj estos =C4=9Disdatigataj:~%~{~a~%~}~%" =20 -#: guix/ui.scm:530 +#: guix/ui.scm:709 #, scheme-format msgid "The following package would be installed:~%~{~a~%~}~%" msgid_plural "The following packages would be installed:~%~{~a~%~}~%" msgstr[0] "La jena pako estus instalata:~% ~{~a~%~}~%" msgstr[1] "La jenaj pakoj estus instalataj:~% ~{~a~%~}~%" =20 -#: guix/ui.scm:535 +#: guix/ui.scm:714 #, scheme-format msgid "The following package will be installed:~%~{~a~%~}~%" msgid_plural "The following packages will be installed:~%~{~a~%~}~%" msgstr[0] "La jena pako estos instalata:~% ~{~a~%~}~%" msgstr[1] "La jenaj pakoj estos instalataj:~% ~{~a~%~}~%" =20 -#: guix/ui.scm:552 +#: guix/ui.scm:731 msgid "" msgstr "" =20 -#: guix/ui.scm:578 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "fiasko dum kreo de agorda dosierujo '~a': ~a~%" =20 -#: guix/ui.scm:680 guix/ui.scm:694 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "nekonata" =20 -#: guix/ui.scm:803 +#: guix/ui.scm:1033 #, scheme-format -msgid "invalid argument: ~a~%" -msgstr "malvalida argumento: ~a~%" +msgid "Generation ~a\t~a" +msgstr "Generacio ~a\t~a" + +#: guix/ui.scm:1040 +#, scheme-format +msgid "~a\t(current)~%" +msgstr "~a\t(nuna)~%" + +#: guix/ui.scm:1057 +#, fuzzy, scheme-format +msgid "switched from generation ~a to ~a~%" +msgstr "alterno el generacio ~a al ~a~%" + +#: guix/ui.scm:1073 +#, scheme-format +msgid "deleting ~a~%" +msgstr "ni forigas ~a~%" =20 -#: guix/ui.scm:842 +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Provu 'guix --help' por pli da informo.~%" =20 -#: guix/ui.scm:869 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -1573,31 +2338,31 @@ msgstr "" "Uzmaniero: guix KOMANDO ARGj...\n" "Lan=C4=89as KOMANDOn kun ARGj.\n" =20 -#: guix/ui.scm:872 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "KOMANDO devas esti unu el la sub-komandoj sube listataj:\n" =20 -#: guix/ui.scm:892 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: komando ne trovita~%" =20 -#: guix/ui.scm:910 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: mankas komanda nomo~%" =20 -#: guix/ui.scm:918 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: nerekonata modifilo: '~a'~%" =20 -#: guix/http-client.scm:211 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "ni sekvas la redirektigon al '~a'...~%" =20 -#: guix/http-client.scm:220 +#: guix/http-client.scm:269 msgid "download failed" msgstr "el=C5=9Duto fiaskis" =20 @@ -1643,18 +2408,179 @@ msgstr "importita dosiero malhavas subskribon" msgid "invalid inter-file archive mark" msgstr "malvalida inter-dosiera ar=C4=A5iva marko" =20 +#: nix/nix-daemon/guix-daemon.cc:61 +msgid "guix-daemon -- perform derivation builds and store accesses" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:63 +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:87 +msgid "SYSTEM" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:88 +msgid "assume SYSTEM as the current system type" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 +msgid "N" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:90 +msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:93 +#, fuzzy +msgid "allow at most N build jobs" +msgstr "" +"\n" +" -M, --max-jobs=3DN permesi maksimume N konstru-taskojn" + +#: nix/nix-daemon/guix-daemon.cc:95 +msgid "disable chroot builds" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:96 +msgid "DIR" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:97 +msgid "add DIR to the build chroot" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:98 +msgid "GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:99 +msgid "perform builds as a user of GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:101 +msgid "do not use substitutes" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:102 +msgid "URLS" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:103 +msgid "use URLS as the default list of substitute providers" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:105 +msgid "do not use the 'build hook'" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:107 +msgid "cache build failures" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 +msgid "do not keep build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:113 +msgid "disable compression of the build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:118 +msgid "disable automatic file \"deduplication\" in the store" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:128 +msgid "impersonate Linux 2.6" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:132 +msgid "tell whether the GC must keep outputs of live derivations" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:135 +msgid "tell whether the GC must keep derivations corresponding to live o= utputs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:138 +msgid "SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:139 +msgid "listen for connections on SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:141 +msgid "produce debugging output" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 +#, fuzzy, c-format +msgid "error: %s\n" +msgstr "~a: eraro: ~a~%" + +#: nix/nix-daemon/guix-daemon.cc:281 +#, c-format +msgid "error: libgcrypt version mismatch\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:372 +#, c-format +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" +msgstr "" + +#~ msgid "system locale lacks a definition" +#~ msgstr "sistema loka=C4=B5aro malhavas difinon" + +#~ msgid "sources do not match any package:~{ ~a~}~%" +#~ msgstr "fontoj ne kongruas al iu ajn pako:~{ ~a~}~%" + +#~ msgid "failed to build the empty profile~%" +#~ msgstr "fiasko dum konstruo de malplena profilo~%" + +#~ msgid "nothing to do: already at the empty profile~%" +#~ msgstr "nenio por fari: jam estas =C4=89e la malplena profilo~%" + +#~ msgid "updating list of substitutes from '~a'...\r" +#~ msgstr "ni =C4=9Disdatigas liston de anstata=C5=ADigantoj el '~a'...\= r" + +#~ msgid "these substitute URLs will not be used:~{ ~a~}~%" +#~ msgstr "tiuj =C4=89i anstata=C5=ADigaj URL-oj ne estos uzataj:~{ ~a~}= ~%" + +#~ msgid "failed to look up host '~a' (~a), substituter disabled~%" +#~ msgstr "" +#~ "ni malsukcesis ser=C4=89i gastiganton '~a' (~a), anstata=C5=ADiganto= estas " +#~ "malebligata~%" + +#~ msgid "~A: extraneuous argument~%" +#~ msgstr "~A: fremda argumento~%" + #~ msgid "Downloading, please wait...~%" #~ msgstr "Ni el=C5=9Dutas, bonvolu atendi...~%" =20 #~ msgid "(Please consider upgrading Guile to get proper progress report= .)~%" -#~ msgstr "(Bonvolu konsideri pri =C4=9Disdatigo de Guile por havigi =C4= =9Dustan progres-raporton.)~%" +#~ msgstr "" +#~ "(Bonvolu konsideri pri =C4=9Disdatigo de Guile por havigi =C4=9Dusta= n progres-" +#~ "raporton.)~%" =20 #~ msgid "failed to open operating system file '~a': ~a~%" #~ msgstr "fiasko dum malfermo de la operaci-sistema dosiero '~a': ~a~%" =20 -#~ msgid "failed to load operating system file '~a':~%" -#~ msgstr "fiasko dum =C5=9Dargo je operaci-sistema dosiero '~a':~%" - #~ msgid "using Guile ~a, which does not support ~s encoding~%" #~ msgstr "ni uzas Guile ~a, kiu ne subtenas enkodigon ~s~%" =20 @@ -1679,9 +2605,6 @@ msgstr "malvalida inter-dosiera ar=C4=A5iva marko" #~ msgid "invalid nar end-of-file marker" #~ msgstr "malvalida dosierfina markilo nar" =20 -#~ msgid "invalid symlink tokens" -#~ msgstr "malvalidaj simbol-ligaj =C4=B5etonoj" - #~ msgid "unexpected directory entry termination" #~ msgstr "neatendita fino de dosieruja enigo" =20 @@ -1696,11 +2619,13 @@ msgstr "malvalida inter-dosiera ar=C4=A5iva marko= " =20 #~ msgid "" #~ "GNU Hello prints the message \"Hello, world!\" and then exits. It\n= " -#~ "serves as an example of standard GNU coding practices. As such, it = supports\n" +#~ "serves as an example of standard GNU coding practices. As such, it = " +#~ "supports\n" #~ "command-line arguments, multiple languages, and so on." #~ msgstr "" #~ "GNU Hello montras la mesa=C4=9Don \"Hello, world!\" kaj fini=C4=9Das= . =C4=9Ci\n" -#~ "funkcias kiel ekzemplo de norma kodumada tradicio de GNU. Tiel, =C4= =9Di subtenas\n" +#~ "funkcias kiel ekzemplo de norma kodumada tradicio de GNU. Tiel, =C4= =9Di " +#~ "subtenas\n" #~ "komand-liniajn argumentojn, plurajn lingvojn, kaj tiel plu." =20 #~ msgid "Print lines matching a pattern" @@ -1708,19 +2633,24 @@ msgstr "malvalida inter-dosiera ar=C4=A5iva marko= " =20 #~ msgid "" #~ "grep is a tool for finding text inside files. Text is found by\n" -#~ "matching a pattern provided by the user in one or many files. The p= attern\n" +#~ "matching a pattern provided by the user in one or many files. The " +#~ "pattern\n" #~ "may be provided as a basic or extended regular expression, or as fix= ed\n" #~ "strings. By default, the matching text is simply printed to the scr= een,\n" -#~ "however the output can be greatly customized to include, for example= , line\n" +#~ "however the output can be greatly customized to include, for example= , " +#~ "line\n" #~ "numbers. GNU grep offers many extensions over the standard utility,= \n" #~ "including, for example, recursive directory searching." #~ msgstr "" -#~ "grep estas ilo por trovi tekstojn interne de dosieroj. Teksto estas= trovita\n" +#~ "grep estas ilo por trovi tekstojn interne de dosieroj. Teksto estas= " +#~ "trovita\n" #~ "per kongruo al =C5=9Dablono indikita de la uzanto en unu a=C5=AD plu= raj dosieroj.\n" -#~ "La =C5=9Dablono povas esti indikata kiel bazan a=C5=AD etenditan reg= ul-esprimon, a=C5=AD\n" +#~ "La =C5=9Dablono povas esti indikata kiel bazan a=C5=AD etenditan reg= ul-esprimon, " +#~ "a=C5=AD\n" #~ "kiel fiksajn =C4=89enojn. Apriore, la kongruita teksto estas simple= montrata\n" #~ "en la ekrano, tamen la eligo povas esti ege personigita por inkluziv= igi,\n" -#~ "ekzemple, lini-numerojn. GNU grep oferaj multajn kroma=C4=B5ojn kom= pare al la\n" +#~ "ekzemple, lini-numerojn. GNU grep oferaj multajn kroma=C4=B5ojn kom= pare al " +#~ "la\n" #~ "originala aplika=C4=B5o, inkluzive, ekzemple, rikuran ser=C4=89adon = en dosierujoj." =20 #~ msgid "Stream editor" @@ -1790,9 +2720,6 @@ msgstr "malvalida inter-dosiera ar=C4=A5iva marko" #~ "Momente la nura valida valoro por AGO estas 'vm', kio konstruas\n" #~ "virtualan ma=C5=9Dinon por la indikita operaci-sistemo.\n" =20 -#~ msgid "~a: extraneous argument~%" -#~ msgstr "~a: fremda argumento~%" - #~ msgid "Guile bindings to libssh" #~ msgstr "Bindoj de Guile por libssh" =20 @@ -1820,15 +2747,21 @@ msgstr "malvalida inter-dosiera ar=C4=A5iva marko= " =20 #~ msgid "" #~ "Sed (stream editor) isn't really a true text editor or text processo= r.\n" -#~ "Instead, it is used to filter text, i.e., it takes text input and pe= rforms\n" -#~ "some operation (or set of operations) on it and outputs the modified= text.\n" -#~ "Sed is typically used for extracting part of a file using pattern ma= tching or\n" +#~ "Instead, it is used to filter text, i.e., it takes text input and " +#~ "performs\n" +#~ "some operation (or set of operations) on it and outputs the modified= " +#~ "text.\n" +#~ "Sed is typically used for extracting part of a file using pattern " +#~ "matching or\n" #~ "substituting multiple occurrences of a string within a file." #~ msgstr "" -#~ "Sed (flu-redaktilo) ne estas fakte vera tekst-redaktilo a=C5=AD teks= t-procezilo.\n" -#~ "Anstata=C5=ADe, =C4=9Di estas uzata por filtri tekston, t.e., =C4=9D= i prenas tekston kaj\n" +#~ "Sed (flu-redaktilo) ne estas fakte vera tekst-redaktilo a=C5=AD teks= t-" +#~ "procezilo.\n" +#~ "Anstata=C5=ADe, =C4=9Di estas uzata por filtri tekston, t.e., =C4=9D= i prenas tekston " +#~ "kaj\n" #~ "aplikas iun operacion (a=C5=AD aron) al =C4=9Di kaj eligas la modifi= tan tekston.\n" -#~ "Sed ordinare estas uzata por eltiri parton de dosiero per =C5=9Dablo= n-kongruon a=C5=AD\n" +#~ "Sed ordinare estas uzata por eltiri parton de dosiero per =C5=9Dablo= n-kongruon " +#~ "a=C5=AD\n" #~ "por anstata=C5=ADigi multoblajn aperojn de =C4=89eno interne de dosi= ero." =20 #~ msgid "profile `~a' does not exist~%" diff --git a/po/guix/fr.po b/po/guix/fr.po index d1a4907..a3ad090 100644 --- a/po/guix/fr.po +++ b/po/guix/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.8\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-11-09 22:32+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2014-12-09 09:42+0100\n" "Last-Translator: R=C3=A9my Chevalier \n" "Language-Team: French \n" @@ -17,47 +17,164 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" =20 -#: gnu/packages.scm:120 +#: gnu/packages.scm:76 +#, fuzzy, scheme-format +msgid "~a: patch not found" +msgstr "~a: paquet introuvable~%" + +#: gnu/packages.scm:87 +#, scheme-format +msgid "could not find bootstrap binary '~a' for system '~a'" +msgstr "" + +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "impossible d'acc=C3=A9der =C3=A0 \"~a\": ~a~%" =20 -#: gnu/packages.scm:350 +#: gnu/packages.scm:327 #, scheme-format msgid "looking for the latest release of GNU ~a..." msgstr "recherche de la derni=C3=A8re version de GNU ~a..." =20 -#: gnu/packages.scm:354 +#: gnu/packages.scm:334 #, scheme-format msgid "~a: note: using ~a but ~a is available upstream~%" msgstr "~a: note: utilisation de ~a mais ~a est disponible en amont" =20 -#: gnu/packages.scm:376 guix/scripts/package.scm:305 +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "sp=C3=A9cification du paquet \"~a\" ambigu=C3=AB~%" =20 -#: gnu/packages.scm:377 guix/scripts/package.scm:307 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "choix de ~a parmi ~a~%" =20 -#: gnu/packages.scm:383 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: paquet introuvable pour la version ~a~%" =20 -#: gnu/packages.scm:385 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: paquet inconnu~%" =20 -#: guix/scripts/build.scm:65 +#: gnu/packages.scm:381 +#, scheme-format +msgid "package `~a' lacks output `~a'~%" +msgstr "le paquet \"~a\" requiert la sortie \"~a\"~%" + +#: gnu/packages.scm:398 +#, scheme-format +msgid "~a: package not found~%" +msgstr "~a: paquet introuvable~%" + +#: gnu/services.scm:527 +#, scheme-format +msgid "no target of type '~a' for service ~s" +msgstr "" + +#: gnu/services.scm:538 gnu/services.scm:599 +#, scheme-format +msgid "more than one target service of type '~a'" +msgstr "" + +#: gnu/services.scm:589 +#, scheme-format +msgid "service of type '~a' not found" +msgstr "" + +#: gnu/system.scm:545 +#, scheme-format +msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" +msgstr "" + +#: gnu/system.scm:561 +#, scheme-format +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" + +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: v=C3=A9rificateur non valide" + +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "param=C3=A8tres de d=C3=A9marrage non reconus pour \"~a\"~%" + +#: gnu/services/shepherd.scm:166 +#, scheme-format +msgid "service '~a' provided more than once" +msgstr "" + +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + +#: gnu/system/shadow.scm:213 +#, scheme-format +msgid "supplementary group '~a' of user '~a' is undeclared" +msgstr "" + +#: gnu/system/shadow.scm:223 +#, scheme-format +msgid "primary group '~a' of user '~a' is undeclared" +msgstr "" + +#: guix/scripts.scm:52 +#, scheme-format +msgid "invalid argument: ~a~%" +msgstr "argument non valide: ~a~%" + +#: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 +#: guix/scripts/publish.scm:355 +#, scheme-format +msgid "~A: unrecognized option~%" +msgstr "~A: option non reconnue~%" + +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "impossible de cr=C3=A9er la racine du GC \"~a\": ~a~%" =20 -#: guix/scripts/build.scm:102 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "sp=C3=A9cification du paquet \"~a\" ambigu=C3=AB~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" +"\n" +" --with-source=3DSOURCE\n" +" utiliser la SOURCE donn=C3=A9e pour compiler l= e paquet " +"correspondant" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 msgid "" "\n" " -L, --load-path=3DDIR prepend DIR to the package module search pat= h" @@ -65,15 +182,25 @@ msgstr "" "\n" " -L, --load-path=3DREP pr=C3=A9fixer le chemin de recherche par REP= " =20 -#: guix/scripts/build.scm:104 +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" msgstr "" "\n" -" -K, --keep-failed garder l'arbre de compilation pour les compila= tions ayant =C3=A9chou=C3=A9" +" -K, --keep-failed garder l'arbre de compilation pour les compila= tions " +"ayant =C3=A9chou=C3=A9" =20 -#: guix/scripts/build.scm:106 +#: guix/scripts/build.scm:286 +#, fuzzy +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" +"\n" +" -n, --dry-run ne pas compiler les d=C3=A9rivations" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" @@ -81,7 +208,7 @@ msgstr "" "\n" " -n, --dry-run ne pas compiler les d=C3=A9rivations" =20 -#: guix/scripts/build.scm:108 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" @@ -89,23 +216,32 @@ msgstr "" "\n" " --fallback revenir =C3=A0 la compilation quand le substit= ut =C3=A9choue" =20 -#: guix/scripts/build.scm:110 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" msgstr "" "\n" -" --no-substitutes compiler plutot que recourir =C3=A0 des substi= tuts pr=C3=A9-compil=C3=A9s" +" --no-substitutes compiler plutot que recourir =C3=A0 des substi= tuts pr=C3=A9-" +"compil=C3=A9s" + +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" fetch substitute from URLS if they are authori= zed" +msgstr "" =20 -#: guix/scripts/build.scm:112 +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" msgstr "" "\n" -" --no-build-hook ne pas essayer de d=C3=A9charger les compilati= ons via le hook de compilation" +" --no-build-hook ne pas essayer de d=C3=A9charger les compilati= ons via le " +"hook de compilation" =20 -#: guix/scripts/build.scm:114 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" @@ -113,17 +249,19 @@ msgid "" msgstr "" "\n" " --max-silent-time=3DN\n" -" marquer la compilation comme ayant =C3=A9chou=C3= =A9e apr=C3=A8s N secondes de silence" +" marquer la compilation comme ayant =C3=A9chou=C3= =A9e apr=C3=A8s N " +"secondes de silence" =20 -#: guix/scripts/build.scm:117 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" msgstr "" "\n" -" --timeout=3DN marquer la compilation comme ayant =C3=A9chou=C3=A9= e apr=C3=A8s N secondes d'activit=C3=A9" +" --timeout=3DN marquer la compilation comme ayant =C3=A9chou=C3=A9= e apr=C3=A8s N " +"secondes d'activit=C3=A9" =20 -#: guix/scripts/build.scm:119 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" @@ -131,7 +269,13 @@ msgstr "" "\n" " --verbosity=3DNIVEAU utiliser le NIVEAU de verbosit=C3=A9 donn=C3= =A9" =20 -#: guix/scripts/build.scm:121 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" @@ -139,12 +283,18 @@ msgstr "" "\n" " -c, --cores=3DN utiliser jusqu'=C3=A0 N coeurs CPU pour la c= ompilation" =20 -#: guix/scripts/build.scm:195 -#, scheme-format -msgid "~a: not a number~%" -msgstr "~a: pas un nombre~%" +#: guix/scripts/build.scm:310 +msgid "" +"\n" +" -M, --max-jobs=3DN allow at most N build jobs" +msgstr "" + +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 +#, fuzzy, scheme-format +msgid "not a number: '~a' option argument: ~a~%" +msgstr "nombre d'arguments incorrect~%" =20 -#: guix/scripts/build.scm:213 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" @@ -152,7 +302,7 @@ msgstr "" "Usage: guix build [OPTION]... PAQUET-OU-DERIVATION...\n" "Compiler le PAQUET-OU-DERIVATION donn=C3=A9 et retourner leur chemin de= sortie.\n" =20 -#: guix/scripts/build.scm:215 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" @@ -160,7 +310,18 @@ msgstr "" "\n" " -e, --expression=3DEXPR compiler le paquet ou la d=C3=A9rivation =C3= =A9valu=C3=A9 par EXPR" =20 -#: guix/scripts/build.scm:217 +#: guix/scripts/build.scm:441 +#, fuzzy +msgid "" +"\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" +" FILE evaluates to" +msgstr "" +"\n" +" -e, --expression=3DEXPR compiler le paquet ou la d=C3=A9rivation =C3= =A9valu=C3=A9 par EXPR" + +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" @@ -168,33 +329,33 @@ msgstr "" "\n" " -S, --source compiler les d=C3=A9rivations de source du paq= uet" =20 -#: guix/scripts/build.scm:219 +#: guix/scripts/build.scm:446 msgid "" "\n" -" -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" +" of \"package\", \"all\" (default), or \"transi= tive\"" msgstr "" -"\n" -" -s, --system=3DSYSTEME essayer de compiler pour le SYSTEME donn=C3= =A9, par exemple \"i686-linux\"" =20 -#: guix/scripts/build.scm:221 +#: guix/scripts/build.scm:449 msgid "" "\n" -" --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" +" -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" msgstr "" "\n" -" --target=3DTRIPLET effectuer une compilation crois=C3=A9e pour = TRIPLET, par exemple \"armel-linux-gnu\"" +" -s, --system=3DSYSTEME essayer de compiler pour le SYSTEME donn=C3= =A9, par " +"exemple \"i686-linux\"" =20 -#: guix/scripts/build.scm:223 +#: guix/scripts/build.scm:451 msgid "" "\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" +" --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" msgstr "" "\n" -" --with-source=3DSOURCE\n" -" utiliser la SOURCE donn=C3=A9e pour compiler l= e paquet correspondant" +" --target=3DTRIPLET effectuer une compilation crois=C3=A9e pour = TRIPLET, par " +"exemple \"armel-linux-gnu\"" =20 -#: guix/scripts/build.scm:226 +#: guix/scripts/build.scm:453 msgid "" "\n" " --no-grafts do not graft packages" @@ -202,37 +363,51 @@ msgstr "" "\n" " --no-grafts ne pas greffer kes paquets" =20 -#: guix/scripts/build.scm:228 +#: guix/scripts/build.scm:455 msgid "" "\n" " -d, --derivations return the derivation paths of the given packa= ges" msgstr "" "\n" -" -d, --derivations retourner les chemins de d=C3=A9rivation pour = les paquets donn=C3=A9s" +" -d, --derivations retourner les chemins de d=C3=A9rivation pour = les " +"paquets donn=C3=A9s" + +#: guix/scripts/build.scm:457 +msgid "" +"\n" +" --check rebuild items to check for non-determinism iss= ues" +msgstr "" =20 -#: guix/scripts/build.scm:230 +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" "\n" -" -r, --root=3DFICHIER faire de FICHIER un lien symbolique pointant= sur le r=C3=A9sultat\n" -" et l'enregistrer en tant que racine du garbage= collector" +" -r, --root=3DFICHIER faire de FICHIER un lien symbolique pointant= sur le " +"r=C3=A9sultat\n" +" et l'enregistrer en tant que racine du garbage= " +"collector" =20 -#: guix/scripts/build.scm:233 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" msgstr "" "\n" -" --log-file retourner les fichiers de journalisation pour = les d=C3=A9rivations donn=C3=A9es" +" --log-file retourner les fichiers de journalisation pour = les " +"d=C3=A9rivations donn=C3=A9es" =20 -#: guix/scripts/build.scm:238 guix/scripts/download.scm:53 -#: guix/scripts/package.scm:451 guix/scripts/gc.scm:58 -#: guix/scripts/hash.scm:55 guix/scripts/pull.scm:81 -#: guix/scripts/substitute-binary.scm:560 guix/scripts/system.scm:371 -#: guix/scripts/lint.scm:262 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 +#: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -240,11 +415,15 @@ msgstr "" "\n" " -h, --help afficher cette aide et quitter" =20 -#: guix/scripts/build.scm:240 guix/scripts/download.scm:55 -#: guix/scripts/package.scm:453 guix/scripts/gc.scm:60 -#: guix/scripts/hash.scm:57 guix/scripts/pull.scm:83 -#: guix/scripts/substitute-binary.scm:562 guix/scripts/system.scm:373 -#: guix/scripts/lint.scm:266 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 +#: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -252,25 +431,24 @@ msgstr "" "\n" " -V, --version afficher les informations sur la version et qu= itter" =20 -#: guix/scripts/build.scm:366 +#: guix/scripts/build.scm:498 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" -msgstr "les sources ne correspondent =C3=A0 aucun paquet:~{ ~a~}~%" +msgid "" +"invalid argument: '~a' option argument: ~a, ~\n" +"must be one of 'package', 'all', or 'transitive'~%" +msgstr "" =20 -#: guix/scripts/build.scm:395 guix/scripts/download.scm:96 -#: guix/scripts/package.scm:673 guix/scripts/gc.scm:122 -#: guix/scripts/pull.scm:213 guix/scripts/system.scm:426 -#: guix/scripts/lint.scm:313 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "~A: unrecognized option~%" -msgstr "~A: option non reconnue~%" +msgid "~s: not something we can build~%" +msgstr "" =20 -#: guix/scripts/build.scm:423 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "aucun journal de compilation pour \"~a\"~%" =20 -#: guix/scripts/download.scm:44 +#: guix/scripts/download.scm:45 msgid "" "Usage: guix download [OPTION] URL\n" "Download the file at URL, add it to the store, and print its store path= \n" @@ -286,7 +464,7 @@ msgstr "" "Formats support=C3=A9s: 'nix-base32' (d=C3=A9faut), 'base32', et 'base1= 6'\n" "('hex' et 'hexadecimal' peuvent aussi =C3=AAtre utilis=C3=A9s).\n" =20 -#: guix/scripts/download.scm:50 guix/scripts/hash.scm:50 +#: guix/scripts/download.scm:51 guix/scripts/hash.scm:51 msgid "" "\n" " -f, --format=3DFMT write the hash in the given format" @@ -294,73 +472,114 @@ msgstr "" "\n" " -f, --format=3DFORMAT =C3=A9crire l'empreinte dans le FORMAT do= nn=C3=A9" =20 -#: guix/scripts/download.scm:73 guix/scripts/hash.scm:75 +#: guix/scripts/download.scm:74 guix/scripts/hash.scm:76 #, scheme-format msgid "unsupported hash format: ~a~%" msgstr "format d'empreinte non support=C3=A9: ~a~%" =20 -#: guix/scripts/download.scm:106 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 +#, scheme-format +msgid "~A: extraneous argument~%" +msgstr "~A: argument superflu~%" + +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" +msgstr "~a: le t=C3=A9l=C3=A9chargement a =C3=A9chou=C3=A9~%" + +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "~a: impossible d'=C3=A9valuer l'URI~%" =20 -#: guix/scripts/download.scm:117 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "~a: le t=C3=A9l=C3=A9chargement a =C3=A9chou=C3=A9~%" =20 -#: guix/scripts/package.scm:97 +#: guix/scripts/package.scm:102 #, scheme-format -msgid "failed to build the empty profile~%" -msgstr "=C3=A9chec de la compilation du profil vide~%" +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "" +"Essayez \"info '(guix) Invoking guix package'\" pour plus d'information= .~%" =20 -#: guix/scripts/package.scm:113 +#: guix/scripts/package.scm:124 #, scheme-format -msgid "switching from generation ~a to ~a~%" -msgstr "passage de la g=C3=A9n=C3=A9ration ~a =C3=A0 ~a~%" +msgid "error: while creating directory `~a': ~a~%" +msgstr "erreur: pendant la cr=C3=A9ation du r=C3=A9pertoire \"~a\": ~a~%= " + +#: guix/scripts/package.scm:128 +#, scheme-format +msgid "Please create the `~a' directory, with you as the owner.~%" +msgstr "Veuillez cr=C3=A9er un r=C3=A9pertoire \"~a\" dont vous =C3=AAte= s le propri=C3=A9taire.~%" =20 -#: guix/scripts/package.scm:132 +#: guix/scripts/package.scm:135 #, scheme-format -msgid "nothing to do: already at the empty profile~%" -msgstr "aucune action =C3=A0 faire: profil courant vide" +msgid "error: directory `~a' is not owned by you~%" +msgstr "erreur: vous de poss=C3=A9dez pas le r=C3=A9pertoire \"~a\"" =20 -#: guix/scripts/package.scm:144 +#: guix/scripts/package.scm:138 #, scheme-format -msgid "deleting ~a~%" -msgstr "suppression de ~a~%" +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "Veuillez d=C3=A9finir ~s comme propri=C3=A9taire de \"~a\".~%" =20 -#: guix/scripts/package.scm:295 +#: guix/scripts/package.scm:173 #, scheme-format -msgid "package `~a' lacks output `~a'~%" -msgstr "le paquet \"~a\" requiert la sortie \"~a\"~%" +msgid "not removing generation ~a, which is current~%" +msgstr "" + +#: guix/scripts/package.scm:180 +#, fuzzy, scheme-format +msgid "no matching generation~%" +msgstr "impossible de passer =C3=A0 la g=C3=A9n=C3=A9ration \"~a\"~%" =20 -#: guix/scripts/package.scm:312 +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format -msgid "~a: package not found~%" -msgstr "~a: paquet introuvable~%" +msgid "invalid syntax: ~a~%" +msgstr "syntaxe non valide: ~a~%" + +#: guix/scripts/package.scm:208 +#, scheme-format +msgid "nothing to be done~%" +msgstr "aucune action =C3=A0 faire~%" + +#: guix/scripts/package.scm:222 +#, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "~a paquet dans le profile~%" +msgstr[1] "~a paquets dans le profile~%" =20 -#: guix/scripts/package.scm:390 +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" -msgstr "Il pourrait =C3=AAtre n=C3=A9cessaire de d=C3=A9finir les variab= les d'environnement suivantes:~%" +msgstr "" +"Il pourrait =C3=AAtre n=C3=A9cessaire de d=C3=A9finir les variables d'e= nvironnement " +"suivantes:~%" =20 -#: guix/scripts/package.scm:406 +#: guix/scripts/package.scm:325 +#, fuzzy msgid "" -"Usage: guix package [OPTION]... PACKAGES...\n" -"Install, remove, or upgrade PACKAGES in a single transaction.\n" +"Usage: guix package [OPTION]...\n" +"Install, remove, or upgrade packages in a single transaction.\n" msgstr "" "Usage: guix package [OPTION]... PAQUETS...\n" -"Installer, supprimer ou mettre =C3=A0 jour les PAQUETS sp=C3=A9cifi=C3=A9= s en une seule transaction.\n" +"Installer, supprimer ou mettre =C3=A0 jour les PAQUETS sp=C3=A9cifi=C3=A9= s en une seule " +"transaction.\n" =20 -#: guix/scripts/package.scm:408 +#: guix/scripts/package.scm:327 +#, fuzzy msgid "" "\n" -" -i, --install=3DPACKAGE install PACKAGE" +" -i, --install PACKAGE ...\n" +" install PACKAGEs" msgstr "" "\n" " -i, --install=3DPAQUET installer PAQUET" =20 -#: guix/scripts/package.scm:410 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" @@ -370,23 +589,55 @@ msgstr "" " -e, --install-from-expression=3DEXP\n" " installer le paquet =C3=A9valu=C3=A9 par EXP" =20 -#: guix/scripts/package.scm:413 +#: guix/scripts/package.scm:333 +#, fuzzy +msgid "" +"\n" +" -f, --install-from-file=3DFILE\n" +" install the package that the code within FILE\= n" +" evaluates to" +msgstr "" +"\n" +" -e, --install-from-expression=3DEXP\n" +" installer le paquet =C3=A9valu=C3=A9 par EXP" + +#: guix/scripts/package.scm:337 +#, fuzzy msgid "" "\n" -" -r, --remove=3DPACKAGE remove PACKAGE" +" -r, --remove PACKAGE ...\n" +" remove PACKAGEs" msgstr "" "\n" " -r, --remove=3DPAQUET supprimer PAQUET" =20 -#: guix/scripts/package.scm:415 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" msgstr "" "\n" -" -u, --upgrade[=3DREGEXP] mettre =C3=A0 jour tous les paquets install=C3= =A9s correspondant =C3=A0 REGEXP" +" -u, --upgrade[=3DREGEXP] mettre =C3=A0 jour tous les paquets install=C3= =A9s " +"correspondant =C3=A0 REGEXP" + +#: guix/scripts/package.scm:342 +msgid "" +"\n" +" -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" +" from FILE" +msgstr "" + +#: guix/scripts/package.scm:345 +#, fuzzy +msgid "" +"\n" +" --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" +msgstr "" +"\n" +" -u, --upgrade[=3DREGEXP] mettre =C3=A0 jour tous les paquets install=C3= =A9s " +"correspondant =C3=A0 REGEXP" =20 -#: guix/scripts/package.scm:417 +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -394,15 +645,18 @@ msgstr "" "\n" " --roll-back revenir =C3=A0 la g=C3=A9n=C3=A9ration ant=C3=A9= rieure" =20 -#: guix/scripts/package.scm:419 +#: guix/scripts/package.scm:349 +#, fuzzy msgid "" "\n" -" --search-paths display needed environment variable definition= s" +" --search-paths[=3DKIND]\n" +" display needed environment variable definition= s" msgstr "" "\n" -" --search-paths afficher les d=C3=A9finitions de variable d'en= vironnement requises" +" --search-paths afficher les d=C3=A9finitions de variable " +"d'environnement requises" =20 -#: guix/scripts/package.scm:421 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" @@ -412,7 +666,7 @@ msgstr "" " -l, --list-generations[=3DPATTERN]\n" " lister les g=C3=A9n=C3=A9rations correspondant= =C3=A0 PATTERN" =20 -#: guix/scripts/package.scm:424 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" @@ -422,7 +676,7 @@ msgstr "" " -d, --delete-generations[=3DPATTERN]\n" " supprimer les g=C3=A9n=C3=A9rations correspond= ant =C3=A0 PATTERN" =20 -#: guix/scripts/package.scm:427 +#: guix/scripts/package.scm:358 msgid "" "\n" " -S, --switch-generation=3DPATTERN\n" @@ -432,23 +686,25 @@ msgstr "" " -d, --delete-generations[=3DPATTERN]\n" " basculer vers une g=C3=A9n=C3=A9ration corresp= ondant =C3=A0 PATTERN" =20 -#: guix/scripts/package.scm:430 +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" msgstr "" "\n" -" -p, --profile=3DPROFIL utiliser PROFIL au lieu du profil par d=C3=A9= faut de l'utilisateur" +" -p, --profile=3DPROFIL utiliser PROFIL au lieu du profil par d=C3=A9= faut de " +"l'utilisateur" =20 -#: guix/scripts/package.scm:433 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" "\n" -" --bootstrap utiliser le programme d'amor=C3=A7age Guile po= ur compiler le profil" +" --bootstrap utiliser le programme d'amor=C3=A7age Guile po= ur " +"compiler le profil" =20 -#: guix/scripts/package.scm:435 guix/scripts/pull.scm:74 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" @@ -456,15 +712,16 @@ msgstr "" "\n" " --verbose utiliser le mode verbeux" =20 -#: guix/scripts/package.scm:438 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" msgstr "" "\n" -" -s, --search=3DREGEXP chercher dans le synopsis et la description = en utilisant REGEXP" +" -s, --search=3DREGEXP chercher dans le synopsis et la description = en " +"utilisant REGEXP" =20 -#: guix/scripts/package.scm:440 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" @@ -474,7 +731,7 @@ msgstr "" " -I, --list-installed[=3DREGEXP]\n" " lister les paquets install=C3=A9s correspondan= t =C3=A0 REGEXP" =20 -#: guix/scripts/package.scm:443 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" @@ -482,79 +739,39 @@ msgid "" msgstr "" "\n" " -A, --list-available[=3DREGEXP]\n" -" lister les paquets disponibles correspondant =C3= =A0 REGEXP" +" lister les paquets disponibles correspondant =C3= =A0 " +"REGEXP" =20 -#: guix/scripts/package.scm:446 +#: guix/scripts/package.scm:377 +#, fuzzy msgid "" "\n" -" --show=3DPACKAGE show details about PACKAGE" +" --show=3DPACKAGE show details about PACKAGE" msgstr "" "\n" " --show=3DPAQUET montrer des d=C3=A9tails sur le PAQUET" =20 -#: guix/scripts/package.scm:677 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "~A: argument superflu~%" - -#: guix/scripts/package.scm:687 +#: guix/scripts/package.scm:472 #, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "Essayez \"info '(guix) Invoking guix package'\" pour plus d'info= rmation.~%" - -#: guix/scripts/package.scm:709 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "erreur: pendant la cr=C3=A9ation du r=C3=A9pertoire \"~a\": ~a~%= " - -#: guix/scripts/package.scm:713 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "Veuillez cr=C3=A9er un r=C3=A9pertoire \"~a\" dont vous =C3=AAte= s le propri=C3=A9taire.~%" - -#: guix/scripts/package.scm:720 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "erreur: vous de poss=C3=A9dez pas le r=C3=A9pertoire \"~a\"" - -#: guix/scripts/package.scm:723 -#, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "Veuillez d=C3=A9finir ~s comme propri=C3=A9taire de \"~a\".~%" +msgid "~a: unsupported kind of search path~%" +msgstr "" =20 -#: guix/scripts/package.scm:756 +#: guix/scripts/package.scm:755 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "impossible de passer =C3=A0 la g=C3=A9n=C3=A9ration \"~a\"~%" =20 -#: guix/scripts/package.scm:788 guix/scripts/package.scm:889 -#, scheme-format -msgid "invalid syntax: ~a~%" -msgstr "syntaxe non valide: ~a~%" - -#: guix/scripts/package.scm:825 -#, scheme-format -msgid "nothing to be done~%" -msgstr "aucune action =C3=A0 faire~%" - -#: guix/scripts/package.scm:840 -#, scheme-format -msgid "~a package in profile~%" -msgid_plural "~a packages in profile~%" -msgstr[0] "~a paquet dans le profile~%" -msgstr[1] "~a paquets dans le profile~%" - -#: guix/scripts/package.scm:855 +#: guix/scripts/package.scm:771 #, scheme-format -msgid "Generation ~a\t~a" -msgstr "G=C3=A9n=C3=A9ration ~a\t~a" +msgid "would install new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/package.scm:862 +#: guix/scripts/package.scm:773 #, scheme-format -msgid "~a\t(current)~%" -msgstr "~a\t(actuel)~%" +msgid "installing new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/gc.scm:39 +#: guix/scripts/gc.scm:40 msgid "" "Usage: guix gc [OPTION]... PATHS...\n" "Invoke the garbage collector.\n" @@ -562,7 +779,7 @@ msgstr "" "Usage: guix gc [OPTION]... CHEMINS...\n" "Appeller le garbage collector.\n" =20 -#: guix/scripts/gc.scm:41 +#: guix/scripts/gc.scm:42 msgid "" "\n" " -C, --collect-garbage[=3DMIN]\n" @@ -570,9 +787,10 @@ msgid "" msgstr "" "\n" " -C, --collect-garbage[=3DMIN]\n" -" collecter au moins MIN octets dans le garbage-= collector" +" collecter au moins MIN octets dans le garbage-= " +"collector" =20 -#: guix/scripts/gc.scm:44 +#: guix/scripts/gc.scm:45 msgid "" "\n" " -d, --delete attempt to delete PATHS" @@ -580,7 +798,13 @@ msgstr "" "\n" " -d, --delete supprimer les CHEMINS" =20 -#: guix/scripts/gc.scm:46 +#: guix/scripts/gc.scm:47 +msgid "" +"\n" +" --optimize optimize the store by deduplicating identical = files" +msgstr "" + +#: guix/scripts/gc.scm:49 msgid "" "\n" " --list-dead list dead paths" @@ -588,7 +812,7 @@ msgstr "" "\n" " --list-dead lister les chemins non valides" =20 -#: guix/scripts/gc.scm:48 +#: guix/scripts/gc.scm:51 msgid "" "\n" " --list-live list live paths" @@ -596,7 +820,7 @@ msgstr "" "\n" " --list-live lister les chemins valides" =20 -#: guix/scripts/gc.scm:51 +#: guix/scripts/gc.scm:54 msgid "" "\n" " --references list the references of PATHS" @@ -604,7 +828,7 @@ msgstr "" "\n" " --references lister les r=C3=A9f=C3=A9rences de CHEMINS" =20 -#: guix/scripts/gc.scm:53 +#: guix/scripts/gc.scm:56 msgid "" "\n" " -R, --requisites list the requisites of PATHS" @@ -612,7 +836,7 @@ msgstr "" "\n" " -R, --requisites lister les pr=C3=A9requis de CHEMINS" =20 -#: guix/scripts/gc.scm:55 +#: guix/scripts/gc.scm:58 msgid "" "\n" " --referrers list the referrers of PATHS" @@ -620,12 +844,40 @@ msgstr "" "\n" " --referrers lister les r=C3=A9f=C3=A9rents de CHEMINS" =20 -#: guix/scripts/gc.scm:84 +#: guix/scripts/gc.scm:61 +msgid "" +"\n" +" --verify[=3DOPTS] verify the integrity of the store; OPTS is a= \n" +" comma-separated combination of 'repair' and\n" +" 'contents'" +msgstr "" + +#: guix/scripts/gc.scm:65 +#, fuzzy +msgid "" +"\n" +" --list-failures list cached build failures" +msgstr "" +"\n" +" --list-dead lister les chemins non valides" + +#: guix/scripts/gc.scm:67 +msgid "" +"\n" +" --clear-failures remove PATHS from the set of cached failures" +msgstr "" + +#: guix/scripts/gc.scm:96 #, scheme-format msgid "invalid amount of storage: ~a~%" msgstr "quantit=C3=A9 de stockage non valide: ~a~%" =20 -#: guix/scripts/hash.scm:45 +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "~A: argument superflu~%" + +#: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" "Return the cryptographic hash of FILE.\n" @@ -639,7 +891,7 @@ msgstr "" "Formats support=C3=A9s: 'nix-base32' (d=C3=A9faut), 'base32', et 'base1= 6' ('hex'\n" "et 'hexadecimal' peuvent =C3=A9galement =C3=AAtre utilis=C3=A9s).\n" =20 -#: guix/scripts/hash.scm:52 +#: guix/scripts/hash.scm:53 msgid "" "\n" " -r, --recursive compute the hash on FILE recursively" @@ -647,170 +899,265 @@ msgstr "" "\n" " -r, --recursive calculer l'empreinte de FICHIER de mani=C3=A8r= e r=C3=A9cursive" =20 -#: guix/scripts/hash.scm:103 +#: guix/scripts/hash.scm:104 #, scheme-format msgid "unrecognized option: ~a~%" msgstr "option non reconnue: ~a~%" =20 -#: guix/scripts/hash.scm:134 guix/ui.scm:252 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "nombre d'arguments incorrect~%" =20 -#: guix/scripts/pull.scm:72 +#: guix/scripts/import.scm:85 +#, fuzzy msgid "" -"Usage: guix pull [OPTION]...\n" -"Download and deploy the latest version of Guix.\n" +"Usage: guix import IMPORTER ARGS ...\n" +"Run IMPORTER with ARGS.\n" +msgstr "" +"Usage: guix COMMANDE ARGS...\n" +"Lance la COMMANDE avec les arguments ARGS.\n" + +#: guix/scripts/import.scm:88 +#, fuzzy +msgid "IMPORTER must be one of the importers listed below:\n" +msgstr "COMMANDE doit =C3=AAtre une des sous-commandes list=C3=A9es ci-d= essous:\n" + +#: guix/scripts/import.scm:102 +#, fuzzy, scheme-format +msgid "guix import: missing importer name~%" +msgstr "guix: nom de commande manquant~%" + +#: guix/scripts/import.scm:113 +#, scheme-format +msgid "guix import: invalid importer~%" msgstr "" -"Usage: guix pull [OPTION]...\n" -"T=C3=A9l=C3=A9charger et d=C3=A9ployer la derni=C3=A8re version de Guix= .\n" =20 -#: guix/scripts/pull.scm:76 +#: guix/scripts/import/cran.scm:42 msgid "" -"\n" -" --url=3DURL download the Guix tarball from URL" +"Usage: guix import cran PACKAGE-NAME\n" +"Import and convert the CRAN package for PACKAGE-NAME.\n" msgstr "" -"\n" -" --url=3DURL t=C3=A9l=C3=A9charger le tarball de Guix dep= uis URL" =20 -#: guix/scripts/pull.scm:78 +#: guix/scripts/import/cran.scm:44 msgid "" "\n" -" --bootstrap use the bootstrap Guile to build the new Guix" +" -a, --archive=3DARCHIVE specify the archive repository" msgstr "" -"\n" -" --bootstrap utiliser le programme d'amor=C3=A7age Guile po= ur compiler le nouveau Guix" =20 -#: guix/scripts/pull.scm:132 +#: guix/scripts/import/cran.scm:94 +#, fuzzy, scheme-format +msgid "failed to download description for package '~a'~%" +msgstr "" +"impossible de charger le fichier du syst=C3=A8me d'exploitation \"~a\":= ~s~%" + +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 +#, fuzzy, scheme-format +msgid "too few arguments~%" +msgstr "nombre d'arguments incorrect~%" + +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 +#, fuzzy, scheme-format +msgid "too many arguments~%" +msgstr "arguments non valides" + +#: guix/scripts/import/elpa.scm:41 +msgid "" +"Usage: guix import elpa PACKAGE-NAME\n" +"Import the latest package named PACKAGE-NAME from an ELPA repository.\n= " +msgstr "" + +#: guix/scripts/import/elpa.scm:43 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/elpa.scm:45 +#, fuzzy +msgid "" +"\n" +" -h, --help display this help and exit" +msgstr "" +"\n" +" -h, --help afficher cette aide et quitter" + +#: guix/scripts/import/elpa.scm:47 +#, fuzzy +msgid "" +"\n" +" -V, --version display version information and exit" +msgstr "" +"\n" +" -V, --version afficher les informations sur la version et qu= itter" + +#: guix/scripts/import/elpa.scm:92 +#, fuzzy, scheme-format +msgid "failed to download package '~a'~%" +msgstr "impossible d'installer la locale: ~a~%" + +#: guix/scripts/pull.scm:74 +msgid "" +"Usage: guix pull [OPTION]...\n" +"Download and deploy the latest version of Guix.\n" +msgstr "" +"Usage: guix pull [OPTION]...\n" +"T=C3=A9l=C3=A9charger et d=C3=A9ployer la derni=C3=A8re version de Guix= .\n" + +#: guix/scripts/pull.scm:78 +msgid "" +"\n" +" --url=3DURL download the Guix tarball from URL" +msgstr "" +"\n" +" --url=3DURL t=C3=A9l=C3=A9charger le tarball de Guix dep= uis URL" + +#: guix/scripts/pull.scm:80 +msgid "" +"\n" +" --bootstrap use the bootstrap Guile to build the new Guix" +msgstr "" +"\n" +" --bootstrap utiliser le programme d'amor=C3=A7age Guile po= ur " +"compiler le nouveau Guix" + +#: guix/scripts/pull.scm:134 msgid "tarball did not produce a single source directory" msgstr "la tarball n'a produit aucun r=C3=A9pertoire source" =20 -#: guix/scripts/pull.scm:150 +#: guix/scripts/pull.scm:152 #, scheme-format msgid "unpacking '~a'...~%" msgstr "d=C3=A9paquetage \"~a\"...~%" =20 -#: guix/scripts/pull.scm:159 +#: guix/scripts/pull.scm:161 msgid "failed to unpack source code" msgstr "=C3=A9chec du d=C3=A9paquetage du code source" =20 -#: guix/scripts/pull.scm:200 +#: guix/scripts/pull.scm:204 +msgid "Guix already up to date\n" +msgstr "Guix est d=C3=A9ja =C3=A0 jour\n" + +#: guix/scripts/pull.scm:209 #, scheme-format msgid "updated ~a successfully deployed under `~a'~%" msgstr "~a a =C3=A9t=C3=A9 mis =C3=A0 jour et d=C3=A9ploy=C3=A9 avec suc= c=C3=A8s sous \"~a\"~%" =20 -#: guix/scripts/pull.scm:203 +#: guix/scripts/pull.scm:212 #, scheme-format msgid "failed to update Guix, check the build log~%" msgstr "=C3=A9chec de la mise =C3=A0 jour de Guix; consultez le journal = de compilation~%" =20 -#: guix/scripts/pull.scm:205 -msgid "Guix already up to date\n" -msgstr "Guix est d=C3=A9ja =C3=A0 jour\n" - -#: guix/scripts/pull.scm:215 +#: guix/scripts/pull.scm:221 #, scheme-format msgid "~A: unexpected argument~%" msgstr "~A: argument inattendu~%" =20 -#: guix/scripts/pull.scm:224 +#: guix/scripts/pull.scm:230 msgid "failed to download up-to-date source, exiting\n" msgstr "impossible de t=C3=A9l=C3=A9charger une source =C3=A0 jour; fin\= n" =20 -#: guix/scripts/substitute-binary.scm:80 +#: guix/scripts/substitute.scm:103 #, scheme-format msgid "authentication and authorization of substitutes disabled!~%" msgstr "authentification et autorisation des substituts d=C3=A9sactiv=C3= =A9es !~%" =20 -#: guix/scripts/substitute-binary.scm:163 +#: guix/scripts/substitute.scm:179 #, scheme-format msgid "download from '~a' failed: ~a, ~s~%" msgstr "le t=C3=A9l=C3=A9chargement depuis '~a' a =C3=A9chou=C3=A9: ~a, = ~s~%" =20 -#: guix/scripts/substitute-binary.scm:178 -#, scheme-format -msgid "while fetching ~a: server is unresponsive~%" +#: guix/scripts/substitute.scm:191 +#, fuzzy, scheme-format +msgid "while fetching ~a: server is somewhat slow~%" msgstr "pendant la recherche de ~a: le serveur ne r=C3=A9pond pas~%" =20 -#: guix/scripts/substitute-binary.scm:180 +#: guix/scripts/substitute.scm:193 #, scheme-format msgid "try `--no-substitutes' if the problem persists~%" msgstr "essayez l'option \"--no-substitutes\" si le probl=C3=A8me persis= te~%" =20 -#: guix/scripts/substitute-binary.scm:244 -#, scheme-format -msgid "signature version must be a number: ~a~%" +#: guix/scripts/substitute.scm:266 +#, fuzzy, scheme-format +msgid "signature version must be a number: ~s~%" msgstr "la version de la signature doit =C3=AAtre un nombre: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:248 +#: guix/scripts/substitute.scm:270 #, scheme-format msgid "unsupported signature version: ~a~%" msgstr "version de signature non support=C3=A9e: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:256 +#: guix/scripts/substitute.scm:278 #, scheme-format msgid "signature is not a valid s-expression: ~s~%" msgstr "la signature n'est pas une s-expression valide: ~s~%" =20 -#: guix/scripts/substitute-binary.scm:260 +#: guix/scripts/substitute.scm:282 #, scheme-format msgid "invalid format of the signature field: ~a~%" msgstr "signature non valide pour \"~a\"~%" =20 -#: guix/scripts/substitute-binary.scm:295 +#: guix/scripts/substitute.scm:317 #, scheme-format msgid "invalid signature for '~a'~%" msgstr "signature non valide pour \"~a\"~%" =20 -#: guix/scripts/substitute-binary.scm:297 +#: guix/scripts/substitute.scm:319 #, scheme-format msgid "hash mismatch for '~a'~%" msgstr "empreinte non valide pour \"~a\"~%" =20 -#: guix/scripts/substitute-binary.scm:299 +#: guix/scripts/substitute.scm:321 #, scheme-format msgid "'~a' is signed with an unauthorized key~%" msgstr "\"~a\" est sign=C3=A9 avec une cl=C3=A9 non autoris=C3=A9e~%" =20 -#: guix/scripts/substitute-binary.scm:301 +#: guix/scripts/substitute.scm:323 #, scheme-format msgid "signature on '~a' is corrupt~%" msgstr "la signature de \"~a\" est corrompue~%" =20 -#: guix/scripts/substitute-binary.scm:338 +#: guix/scripts/substitute.scm:361 #, scheme-format msgid "substitute at '~a' lacks a signature~%" msgstr "le substitut =C3=A0 \"~a\" requiert une signature~%" =20 -#: guix/scripts/substitute-binary.scm:526 +#: guix/scripts/substitute.scm:537 #, scheme-format -msgid "Downloading, please wait...~%" -msgstr "T=C3=A9l=C3=A9chargement en cours..." +msgid "updating list of substitutes from '~a'... ~5,1f%" +msgstr "" + +#: guix/scripts/substitute.scm:585 +#, scheme-format +msgid "~s: unsupported server URI scheme~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:528 +#: guix/scripts/substitute.scm:596 #, scheme-format -msgid "(Please consider upgrading Guile to get proper progress report.)~= %" -msgstr "(Veuillez mettre Guile =C3=A0 jour pour obtenir le rapport de pr= ogression appropri=C3=A9.)~%" +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:541 +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "erreur lors de la consultation du nom d'h=C3=B4te: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:550 +#: guix/scripts/substitute.scm:748 +#, fuzzy msgid "" -"Usage: guix substitute-binary [OPTION]...\n" +"Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" "Usage: guix substitute-binary [OPTION]...\n" -"Outil interne pour substituer un binaire pr=C3=A9-compil=C3=A9 =C3=A0 u= ne compilation locale.\n" +"Outil interne pour substituer un binaire pr=C3=A9-compil=C3=A9 =C3=A0 u= ne compilation " +"locale.\n" =20 -#: guix/scripts/substitute-binary.scm:552 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" @@ -821,7 +1168,7 @@ msgstr "" " noms de fichier de d=C3=A9p=C3=B4t pass=C3=A9s= sur l'entr=C3=A9e\n" " standard" =20 -#: guix/scripts/substitute-binary.scm:555 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -830,24 +1177,19 @@ msgid "" msgstr "" "\n" " --substitute FICHIER-DEPOT DESTINATION\n" -" t=C3=A9l=C3=A9charger FICHIER-DEPOT et l'enreg= istrer comme un Nar\n" +" t=C3=A9l=C3=A9charger FICHIER-DEPOT et l'enreg= istrer comme un " +"Nar\n" " dans le fichier DESTINATION" =20 -#: guix/scripts/substitute-binary.scm:600 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" -msgstr "l'ACL pour l'import d'archives ne semble pas initialis=C3=A9e ; = les substituts pourraient =C3=AAtre indisponibles\n" - -#: guix/scripts/substitute-binary.scm:634 -#, scheme-format -msgid "these substitute URLs will not be used:~{ ~a~}~%" -msgstr "ces URL de substitution ne seront pas utilis=C3=A9es:~{ ~a~}~%" - -#: guix/scripts/substitute-binary.scm:660 -#, scheme-format -msgid "failed to look up host '~a' (~a), substituter disabled~%" -msgstr "impossible de trouver l'h=C3=B4te \"~a\" (~a), substitution d=C3= =A9sactiv=C3=A9e~%" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" +msgstr "" +"l'ACL pour l'import d'archives ne semble pas initialis=C3=A9e ; les sub= stituts " +"pourraient =C3=AAtre indisponibles\n" =20 -#: guix/scripts/substitute-binary.scm:767 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "~a: options non reconnues~%" @@ -855,7 +1197,8 @@ msgstr "~a: options non reconnues~%" #: guix/scripts/authenticate.scm:58 #, scheme-format msgid "cannot find public key for secret key '~a'~%" -msgstr "impossible de trouver la cl=C3=A9 publique correspondant =C3=A0 = la cl=C3=A9 secr=C3=A8te \"~a\"~%" +msgstr "" +"impossible de trouver la cl=C3=A9 publique correspondant =C3=A0 la cl=C3= =A9 secr=C3=A8te \"~a\"~%" =20 #: guix/scripts/authenticate.scm:78 #, scheme-format @@ -872,7 +1215,7 @@ msgstr "error: cl=C3=A9 publique non autoris=C3=A9e:= ~a~%" msgid "error: corrupt signature data: ~a~%" msgstr "erreur: signature corrompue: ~a~%" =20 -#: guix/scripts/authenticate.scm:126 +#: guix/scripts/authenticate.scm:120 msgid "" "Usage: guix authenticate OPTION...\n" "Sign or verify the signature on the given file. This tool is meant to\= n" @@ -882,225 +1225,884 @@ msgstr "" "Signer ou v=C3=A9rifier la signature du fichier donn=C3=A9. Cet outil = est destin=C3=A9\n" "=C3=A0 =C3=AAtre utilis=C3=A9 en interne par \"guix-daemon\".\n" =20 -#: guix/scripts/authenticate.scm:132 +#: guix/scripts/authenticate.scm:126 msgid "wrong arguments" msgstr "arguments non valides" =20 -#: guix/scripts/system.scm:74 +#: guix/scripts/system.scm:110 #, scheme-format -msgid "failed to open operating system file '~a': ~a~%" -msgstr "impossible d'ouvrir le fichier du syst=C3=A8me d'exploitation \"= ~a\": ~a~%" +msgid "failed to register '~a' under '~a'~%" +msgstr "impossible d'enregistrer \"~a\" sous \"~a\"~%" =20 -#: guix/scripts/system.scm:78 guix/ui.scm:258 +#: guix/scripts/system.scm:142 #, scheme-format -msgid "~a: ~a~%" +msgid "failed to install GRUB on device '~a'~%" +msgstr "=C3=A9chec de l'installation de GRUB sur le p=C3=A9riph=C3=A9riq= ue \"~a\"~%" + +#: guix/scripts/system.scm:160 +#, scheme-format +msgid "initializing the current root file system~%" +msgstr "initialisation du syst=C3=A8me de fichier racine courant~%" + +#: guix/scripts/system.scm:174 +#, scheme-format +msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" +msgstr "" + +#: guix/scripts/system.scm:219 +#, scheme-format +msgid "while talking to shepherd: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:265 +#, fuzzy, scheme-format +msgid "unloading service '~a'...~%" +msgstr "d=C3=A9paquetage \"~a\"...~%" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" + +#: guix/scripts/system.scm:294 +#, scheme-format +msgid "activating system...~%" +msgstr "activation du syst=C3=A8me...~%" + +#: guix/scripts/system.scm:380 +msgid "the DAG of services" +msgstr "" + +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" +msgstr "" + +#: guix/scripts/system.scm:414 +#, fuzzy, scheme-format +msgid " file name: ~a~%" +msgstr "nombre non valide: ~a~%" + +#: guix/scripts/system.scm:415 +#, scheme-format +msgid " canonical file name: ~a~%" +msgstr "" + +#. TRANSLATORS: Please preserve the two-space indentation. +#: guix/scripts/system.scm:417 +#, fuzzy, scheme-format +msgid " label: ~a~%" msgstr "~a: ~a~%" =20 -#: guix/scripts/system.scm:81 +#: guix/scripts/system.scm:418 #, scheme-format -msgid "failed to load operating system file '~a': ~s~%" -msgstr "impossible de charger le fichier du syst=C3=A8me d'exploitation = \"~a\": ~s~%" +msgid " root device: ~a~%" +msgstr "" =20 -#: guix/scripts/system.scm:116 +#: guix/scripts/system.scm:419 #, scheme-format -msgid "failed to register '~a' under '~a'~%" -msgstr "impossible d'enregistrer \"~a\" sous \"~a\"~%" +msgid " kernel: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:527 +#, scheme-format +msgid "initializing operating system under '~a'...~%" +msgstr "initialisation du syst=C3=A8me d'exploitation sous \"~a\"...~%" + +#: guix/scripts/system.scm:566 +#, fuzzy +msgid "" +"Usage: guix system [OPTION] ACTION [FILE]\n" +"Build the operating system declared in FILE according to ACTION.\n" +msgstr "" +"Usage: guix system [OPTION] ACTION FICHIER\n" +"Compiler le syst=C3=A8me d'exploitation d=C3=A9clar=C3=A9 dans FICHER e= n suivant ACTION.\n" + +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 +msgid "The valid values for ACTION are:\n" +msgstr "Les valeurs possibles pour ACTION sont: \n" + +#: guix/scripts/system.scm:571 +#, fuzzy +msgid " reconfigure switch to a new operating system configuratio= n\n" +msgstr "" +" - 'reconfigure', changer la configuration du syst=C3=A8me d'exploitat= ion\n" + +#: guix/scripts/system.scm:573 +msgid " list-generations list the system generations\n" +msgstr "" + +#: guix/scripts/system.scm:575 +#, fuzzy +msgid "" +" build build the operating system without installing anyth= ing\n" +msgstr " - 'build', compiler le syst=C3=A8me d'exploitation sans rien i= nstaller\n" + +#: guix/scripts/system.scm:577 +#, fuzzy +msgid " container build a container that shares the host's stor= e\n" +msgstr "" +" - 'vm', compiler une machine virtuelle partageant le d=C3=A9p=C3=B4t = de l'h=C3=B4te\n" + +#: guix/scripts/system.scm:579 +#, fuzzy +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" +msgstr "" +" - 'vm', compiler une machine virtuelle partageant le d=C3=A9p=C3=B4t = de l'h=C3=B4te\n" + +#: guix/scripts/system.scm:581 +#, fuzzy +msgid " vm-image build a freestanding virtual machine image\n" +msgstr " - 'vm-image', compiler une image autonome de machine virtuelle= \n" + +#: guix/scripts/system.scm:583 +#, fuzzy +msgid " disk-image build a disk image, suitable for a USB stick\= n" +msgstr " - 'disk-image', compiler une image disque adapt=C3=A9e pour un= e cl=C3=A9 USB\n" + +#: guix/scripts/system.scm:585 +#, fuzzy +msgid " init initialize a root file system to run GNU\n" +msgstr "" +" - 'init', initialiser un syst=C3=A8me de fichier racine pour lancer G= NU.\n" + +#: guix/scripts/system.scm:587 +msgid " extension-graph emit the service extension graph in Dot forma= t\n" +msgstr "" + +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" +msgstr "" + +#: guix/scripts/system.scm:593 +#, fuzzy +msgid "" +"\n" +" -d, --derivation return the derivation of the given system" +msgstr "" +"\n" +" -d, --derivations retourner les chemins de d=C3=A9rivation pour = les " +"paquets donn=C3=A9s" + +#: guix/scripts/system.scm:595 +#, fuzzy +msgid "" +"\n" +" --on-error=3DSTRATEGY\n" +" apply STRATEGY when an error occurs while read= ing " +"FILE" +msgstr "" +"\n" +" --with-source=3DSOURCE\n" +" utiliser la SOURCE donn=C3=A9e pour compiler l= e paquet " +"correspondant" + +#: guix/scripts/system.scm:598 +msgid "" +"\n" +" --image-size=3DSIZE for 'vm-image', produce an image of SIZE" +msgstr "" +"\n" +" --image-size=3DTAILLE pour 'vm-image', produire une image de TAI= LLE" + +#: guix/scripts/system.scm:600 +msgid "" +"\n" +" --no-grub for 'init', do not install GRUB" +msgstr "" +"\n" +" --no-grub pour 'init', ne pas installer GRUB" + +#: guix/scripts/system.scm:602 +msgid "" +"\n" +" --share=3DSPEC for 'vm', share host file system according t= o SPEC" +msgstr "" + +#: guix/scripts/system.scm:604 +msgid "" +"\n" +" --expose=3DSPEC for 'vm', expose host file system according = to SPEC" +msgstr "" + +#: guix/scripts/system.scm:606 +msgid "" +"\n" +" --full-boot for 'vm', make a full boot sequence" +msgstr "" +"\n" +" --full-boot pour 'vm', accomplire une s=C3=A9quence compl=C3= =A8te de " +"d=C3=A9marrage" + +#: guix/scripts/system.scm:690 +#, scheme-format +msgid "no configuration file specified~%" +msgstr "aucun fichier de configuration sp=C3=A9cifi=C3=A9~%" + +#: guix/scripts/system.scm:753 +#, scheme-format +msgid "~a: unknown action~%" +msgstr "~a: action inconnue~%" + +#: guix/scripts/system.scm:768 +#, scheme-format +msgid "wrong number of arguments for action '~a'~%" +msgstr "nombre d'arguments incorrect pour l'action \"~a\"~%" + +#: guix/scripts/system.scm:773 +#, fuzzy, scheme-format +msgid "guix system: missing command name~%" +msgstr "guix: nom de commande manquant~%" + +#: guix/scripts/system.scm:775 +#, fuzzy, scheme-format +msgid "Try 'guix system --help' for more information.~%" +msgstr "Essayez \"guix --help\" pour plus d'informations.~%" + +#: guix/scripts/lint.scm:126 +#, scheme-format +msgid "Available checkers:~%" +msgstr "V=C3=A9rificateurs disponibles:~%" + +#: guix/scripts/lint.scm:146 +msgid "description should not be empty" +msgstr "" + +#: guix/scripts/lint.scm:156 +msgid "Texinfo markup in description is invalid" +msgstr "" + +#: guix/scripts/lint.scm:164 +msgid "description should start with an upper-case letter or digit" +msgstr "" + +#: guix/scripts/lint.scm:180 +#, scheme-format +msgid "" +"sentences in description should be followed ~\n" +"by two spaces; possible infraction~p at ~{~a~^, ~}" +msgstr "" + +#: guix/scripts/lint.scm:204 +msgid "pkg-config should probably be a native input" +msgstr "" + +#: guix/scripts/lint.scm:219 +msgid "synopsis should not be empty" +msgstr "" + +#: guix/scripts/lint.scm:227 +msgid "no period allowed at the end of the synopsis" +msgstr "" + +#: guix/scripts/lint.scm:239 +msgid "no article allowed at the beginning of the synopsis" +msgstr "" + +#: guix/scripts/lint.scm:246 +msgid "synopsis should be less than 80 characters long" +msgstr "" + +#: guix/scripts/lint.scm:252 +msgid "synopsis should start with an upper-case letter or digit" +msgstr "" + +#: guix/scripts/lint.scm:259 +msgid "synopsis should not start with the package name" +msgstr "" + +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 +#, scheme-format +msgid "URI ~a not reachable: ~a (~s)" +msgstr "" + +#: guix/scripts/lint.scm:372 +#, fuzzy, scheme-format +msgid "URI ~a domain not found: ~a" +msgstr "guix: ~a: commande introuvable~%" + +#: guix/scripts/lint.scm:380 +#, scheme-format +msgid "URI ~a unreachable: ~a" +msgstr "" + +#: guix/scripts/lint.scm:406 +#, fuzzy +msgid "invalid value for home page" +msgstr "Les valeurs possibles pour ACTION sont: \n" + +#: guix/scripts/lint.scm:409 +#, fuzzy, scheme-format +msgid "invalid home page URL: ~s" +msgstr "" +"\n" +"~a page d'accueil: <~a>" + +#: guix/scripts/lint.scm:429 +msgid "file names of patches should start with the package name" +msgstr "" + +#: guix/scripts/lint.scm:466 +#, scheme-format +msgid "~a: ~a: proposed synopsis: ~s~%" +msgstr "" + +#: guix/scripts/lint.scm:478 +#, scheme-format +msgid "~a: ~a: proposed description:~% \"~a\"~%" +msgstr "" + +#: guix/scripts/lint.scm:515 +msgid "all the source URIs are unreachable:" +msgstr "" + +#: guix/scripts/lint.scm:538 +msgid "the source file name should contain the package name" +msgstr "" + +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~a" +msgstr "impossible de cr=C3=A9er la racine du GC \"~a\": ~a~%" + +#: guix/scripts/lint.scm:557 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~s~%" +msgstr "impossible de lire l'expression ~s: ~s~%" + +#: guix/scripts/lint.scm:567 +msgid "invalid license field" +msgstr "" + +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "impossible d'installer la locale: ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 +#, scheme-format +msgid "tabulation on line ~a, column ~a" +msgstr "" + +#: guix/scripts/lint.scm:647 +#, scheme-format +msgid "trailing white space on line ~a" +msgstr "" + +#: guix/scripts/lint.scm:657 +#, scheme-format +msgid "line ~a is way too long (~a characters)" +msgstr "" + +#: guix/scripts/lint.scm:668 +#, scheme-format +msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" +msgstr "" + +#: guix/scripts/lint.scm:723 +msgid "Validate package descriptions" +msgstr "Validers des descriptions de paquets" + +#: guix/scripts/lint.scm:727 +#, fuzzy +msgid "Validate synopsis & description of GNU packages" +msgstr "Validers des descriptions de paquets" + +#: guix/scripts/lint.scm:731 +msgid "Identify inputs that should be native inputs" +msgstr "Identifier les entr=C3=A9es qui devraient =C3=AAtre natives" + +#: guix/scripts/lint.scm:735 +#, fuzzy +msgid "Validate file names and availability of patches" +msgstr "Valider les noms de patches" + +#: guix/scripts/lint.scm:739 +#, fuzzy +msgid "Validate home-page URLs" +msgstr "Valider les synopsis de paquets" + +#. TRANSLATORS: is the name of a data type and must not be +#. translated. +#: guix/scripts/lint.scm:745 +msgid "Make sure the 'license' field is a or a list thereof" +msgstr "" + +#: guix/scripts/lint.scm:750 +msgid "Validate source URLs" +msgstr "" + +#: guix/scripts/lint.scm:754 +#, fuzzy +msgid "Validate file names of sources" +msgstr "Valider les noms de patches" + +#: guix/scripts/lint.scm:758 +msgid "Report failure to compile a package to a derivation" +msgstr "" + +#: guix/scripts/lint.scm:762 +#, fuzzy +msgid "Validate package synopses" +msgstr "Valider les synopsis de paquets" + +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 +msgid "Look for formatting issues in the source" +msgstr "" + +#: guix/scripts/lint.scm:796 +#, fuzzy +msgid "" +"Usage: guix lint [OPTION]... [PACKAGE]...\n" +"Run a set of checkers on the specified package; if none is specified,\n= " +"run the checkers on all packages.\n" +msgstr "" +"Usage: guix lint [OPTION]... [PAQUET]...\n" +"Lancer un ensemble de v=C3=A9rificateurs sur le paquet sp=C3=A9cifi=C3=A9= ; si aucun n'est " +"sp=C3=A9cifi=C3=A9, lancer les v=C3=A9rificateurs sur tous les paquets.= \n" + +#: guix/scripts/lint.scm:799 +#, fuzzy +msgid "" +"\n" +" -c, --checkers=3DCHECKER1,CHECKER2...\n" +" only run the specified checkers" +msgstr "" +"\n" +" -c, --checkers=3DCHECKER1,CHECKER2...\n" +" lancer uniquement les v=C3=A9rificateurs sp=C3= =A9cifi=C3=A9s" + +#: guix/scripts/lint.scm:804 +msgid "" +"\n" +" -l, --list-checkers display the list of available lint checkers" +msgstr "" +"\n" +" -l, --list-checkers affiche la liste des v=C3=A9rificateurs dispon= ibles" + +#: guix/scripts/lint.scm:824 +#, fuzzy, scheme-format +msgid "~a: invalid checker~%" +msgstr "~a: v=C3=A9rificateur non valide" + +#: guix/scripts/publish.scm:52 +#, scheme-format +msgid "" +"Usage: guix publish [OPTION]...\n" +"Publish ~a over HTTP.\n" +msgstr "" + +#: guix/scripts/publish.scm:54 +msgid "" +"\n" +" -p, --port=3DPORT listen on PORT" +msgstr "" + +#: guix/scripts/publish.scm:56 +#, fuzzy +msgid "" +"\n" +" --listen=3DHOST listen on the network interface for HOST" +msgstr "" +"\n" +" --references lister les r=C3=A9f=C3=A9rences de CHEMINS" + +#: guix/scripts/publish.scm:58 +msgid "" +"\n" +" -u, --user=3DUSER change privileges to USER as soon as possibl= e" +msgstr "" + +#: guix/scripts/publish.scm:60 +msgid "" +"\n" +" -r, --repl[=3DPORT] spawn REPL server on PORT" +msgstr "" + +#: guix/scripts/publish.scm:76 +#, fuzzy, scheme-format +msgid "lookup of host '~a' failed: ~a~%" +msgstr "le t=C3=A9l=C3=A9chargement depuis '~a' a =C3=A9chou=C3=A9: ~a, = ~s~%" + +#: guix/scripts/publish.scm:100 +#, scheme-format +msgid "lookup of host '~a' returned nothing" +msgstr "" + +#: guix/scripts/publish.scm:343 +#, scheme-format +msgid "user '~a' not found: ~a~%" +msgstr "" + +#: guix/scripts/publish.scm:378 +#, scheme-format +msgid "server running as root; consider using the '--user' option!~%" +msgstr "" + +#: guix/scripts/publish.scm:380 +#, scheme-format +msgid "publishing ~a on ~a, port ~d~%" +msgstr "" + +#: guix/scripts/edit.scm:41 +msgid "" +"Usage: guix edit PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" +msgstr "" + +#: guix/scripts/edit.scm:62 +#, scheme-format +msgid "file '~a' not found in search path ~s~%" +msgstr "" + +#: guix/scripts/edit.scm:83 +#, scheme-format +msgid "source location of package '~a' is unknown~%" +msgstr "" + +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "impossible de se connecter =C3=A0 \"~a\": ~a~%" + +#: guix/scripts/size.scm:75 +#, scheme-format +msgid "no available substitute information for '~a'~%" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "store item" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "total" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "self" +msgstr "" + +#. TRANSLATORS: This is the title of a graph, meaning that the graph +#. represents a profile of the store (the "store" being the place where +#. packages are stored.) +#: guix/scripts/size.scm:204 +msgid "store profile" +msgstr "" + +#: guix/scripts/size.scm:213 +#, fuzzy +msgid "" +"Usage: guix size [OPTION]... PACKAGE\n" +"Report the size of PACKAGE and its dependencies.\n" +msgstr "" +"Usage: guix package [OPTION]... PAQUETS...\n" +"Installer, supprimer ou mettre =C3=A0 jour les PAQUETS sp=C3=A9cifi=C3=A9= s en une seule " +"transaction.\n" =20 -#: guix/scripts/system.scm:144 -#, scheme-format -msgid "initializing the current root file system~%" -msgstr "initialisation du syst=C3=A8me de fichier racine courant~%" +#: guix/scripts/size.scm:218 +#, fuzzy +msgid "" +"\n" +" -s, --system=3DSYSTEM consider packages for SYSTEM--e.g., \"i686-l= inux\"" +msgstr "" +"\n" +" -s, --system=3DSYSTEME essayer de compiler pour le SYSTEME donn=C3= =A9, par " +"exemple \"i686-linux\"" =20 -#: guix/scripts/system.scm:162 guix/scripts/system.scm:325 -#, scheme-format -msgid "failed to install GRUB on device '~a'~%" -msgstr "=C3=A9chec de l'installation de GRUB sur le p=C3=A9riph=C3=A9riq= ue \"~a\"~%" +#: guix/scripts/size.scm:220 +msgid "" +"\n" +" -m, --map-file=3DFILE write to FILE a graphical map of disk usage" +msgstr "" =20 -#: guix/scripts/system.scm:197 -#, scheme-format -msgid "activating system...~%" -msgstr "activation du syst=C3=A8me...~%" +#: guix/scripts/size.scm:274 +msgid "missing store item argument\n" +msgstr "" =20 -#: guix/scripts/system.scm:239 -#, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "param=C3=A8tres de d=C3=A9marrage non reconus pour \"~a\"~%" +#: guix/scripts/size.scm:292 +#, fuzzy +msgid "too many arguments\n" +msgstr "arguments non valides" =20 -#: guix/scripts/system.scm:330 -#, scheme-format -msgid "initializing operating system under '~a'...~%" -msgstr "initialisation du syst=C3=A8me d'exploitation sous \"~a\"...~%" +#: guix/scripts/graph.scm:76 +msgid "the DAG of packages, excluding implicit inputs" +msgstr "" =20 -#: guix/scripts/system.scm:346 -msgid "" -"Usage: guix system [OPTION] ACTION FILE\n" -"Build the operating system declared in FILE according to ACTION.\n" +#: guix/scripts/graph.scm:132 +msgid "the DAG of packages, including implicit inputs" msgstr "" -"Usage: guix system [OPTION] ACTION FICHIER\n" -"Compiler le syst=C3=A8me d'exploitation d=C3=A9clar=C3=A9 dans FICHER e= n suivant ACTION.\n" =20 -#: guix/scripts/system.scm:349 -msgid "The valid values for ACTION are:\n" -msgstr "Les valeurs possibles pour ACTION sont: \n" +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "" =20 -#: guix/scripts/system.scm:350 -msgid " - 'reconfigure', switch to a new operating system configuration= \n" -msgstr " - 'reconfigure', changer la configuration du syst=C3=A8me d'ex= ploitation\n" +#: guix/scripts/graph.scm:171 +msgid "same as 'bag', but without the bootstrap nodes" +msgstr "" =20 -#: guix/scripts/system.scm:352 -msgid " - 'build', build the operating system without installing anythi= ng\n" -msgstr " - 'build', compiler le syst=C3=A8me d'exploitation sans rien i= nstaller\n" +#: guix/scripts/graph.scm:216 +msgid "the DAG of derivations" +msgstr "" =20 -#: guix/scripts/system.scm:354 -msgid " - 'vm', build a virtual machine image that shares the host's st= ore\n" -msgstr " - 'vm', compiler une machine virtuelle partageant le d=C3=A9p=C3= =B4t de l'h=C3=B4te\n" +#: guix/scripts/graph.scm:240 +#, scheme-format +msgid "references for '~a' are not known~%" +msgstr "" =20 -#: guix/scripts/system.scm:356 -msgid " - 'vm-image', build a freestanding virtual machine image\n" -msgstr " - 'vm-image', compiler une image autonome de machine virtuelle= \n" +#: guix/scripts/graph.scm:247 +msgid "the DAG of run-time dependencies (store references)" +msgstr "" =20 -#: guix/scripts/system.scm:358 -msgid " - 'disk-image', build a disk image, suitable for a USB stick\n" -msgstr " - 'disk-image', compiler une image disque adapt=C3=A9e pour un= e cl=C3=A9 USB\n" +#: guix/scripts/graph.scm:277 +#, fuzzy, scheme-format +msgid "~a: unknown node type~%" +msgstr "~a: action inconnue~%" =20 -#: guix/scripts/system.scm:360 -msgid " - 'init', initialize a root file system to run GNU.\n" -msgstr " - 'init', initialiser un syst=C3=A8me de fichier racine pour l= ancer GNU.\n" +#: guix/scripts/graph.scm:281 +#, fuzzy +msgid "The available node types are:\n" +msgstr "Les valeurs possibles pour ACTION sont: \n" =20 -#: guix/scripts/system.scm:364 +#. TRANSLATORS: Here 'dot' is the name of a program; it must not be +#. translated. +#: guix/scripts/graph.scm:317 msgid "" -"\n" -" --image-size=3DSIZE for 'vm-image', produce an image of SIZE" +"Usage: guix graph PACKAGE...\n" +"Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" msgstr "" + +#: guix/scripts/graph.scm:319 +msgid "" "\n" -" --image-size=3DTAILLE pour 'vm-image', produire une image de TAI= LLE" +" -t, --type=3DTYPE represent nodes of the given TYPE" +msgstr "" =20 -#: guix/scripts/system.scm:366 +#: guix/scripts/graph.scm:321 +#, fuzzy msgid "" "\n" -" --no-grub for 'init', do not install GRUB" +" --list-types list the available graph types" msgstr "" "\n" -" --no-grub pour 'init', ne pas installer GRUB" +" --list-dead lister les chemins non valides" =20 -#: guix/scripts/system.scm:368 +#: guix/scripts/graph.scm:323 +#, fuzzy msgid "" "\n" -" --full-boot for 'vm', make a full boot sequence" +" -e, --expression=3DEXPR consider the package EXPR evaluates to" msgstr "" "\n" -" --full-boot pour 'vm', accomplire une s=C3=A9quence compl=C3= =A8te de d=C3=A9marrage" +" -e, --expression=3DEXPR compiler le paquet ou la d=C3=A9rivation =C3= =A9valu=C3=A9 par EXPR" =20 -#: guix/scripts/system.scm:434 -#, scheme-format -msgid "~a: unknown action~%" -msgstr "~a: action inconnue~%" +#: guix/scripts/challenge.scm:104 +#, fuzzy, scheme-format +msgid "~a: no substitute at '~a'~%" +msgstr "le substitut =C3=A0 \"~a\" requiert une signature~%" =20 -#: guix/scripts/system.scm:451 -#, scheme-format -msgid "wrong number of arguments for action '~a'~%" -msgstr "nombre d'arguments incorrect pour l'action \"~a\"~%" +#: guix/scripts/challenge.scm:120 +#, fuzzy, scheme-format +msgid "no substitutes for '~a'~%" +msgstr "signature non valide pour \"~a\"~%" =20 -#: guix/scripts/system.scm:471 -#, scheme-format -msgid "no configuration file specified~%" -msgstr "aucun fichier de configuration sp=C3=A9cifi=C3=A9~%" +#: guix/scripts/challenge.scm:137 guix/scripts/challenge.scm:157 +#, fuzzy, scheme-format +msgid "no local build for '~a'~%" +msgstr "aucun journal de compilation pour \"~a\"~%" =20 -#: guix/scripts/lint.scm:51 +#: guix/scripts/challenge.scm:154 #, scheme-format -msgid "~a: ~a: ~a~%" +msgid "~a contents differ:~%" +msgstr "" + +#: guix/scripts/challenge.scm:156 +#, fuzzy, scheme-format +msgid " local hash: ~a~%" msgstr "~a: ~a: ~a~%" =20 -#: guix/scripts/lint.scm:72 +#: guix/scripts/challenge.scm:161 +#, fuzzy, scheme-format +msgid " ~50a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/scripts/challenge.scm:165 #, scheme-format -msgid "Available checkers:~%" -msgstr "V=C3=A9rificateurs disponibles:~%" +msgid " ~50a: unavailable~%" +msgstr "" =20 -#: guix/scripts/lint.scm:226 -msgid "Validate package descriptions" -msgstr "Validers des descriptions de paquets" +#: guix/scripts/challenge.scm:175 +msgid "" +"Usage: guix challenge [PACKAGE...]\n" +"Challenge the substitutes for PACKAGE... provided by one or more server= s.\n" +msgstr "" =20 -#: guix/scripts/lint.scm:230 -msgid "Identify inputs that should be native inputs" -msgstr "Identifier les entr=C3=A9es qui devraient =C3=AAtre natives" +#: guix/scripts/challenge.scm:177 +#, fuzzy +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" compare build results with those at URLS" +msgstr "" +"\n" +" --max-silent-time=3DN\n" +" marquer la compilation comme ayant =C3=A9chou=C3= =A9e apr=C3=A8s N " +"secondes de silence" =20 -#: guix/scripts/lint.scm:234 -msgid "Validate filenames of patches" -msgstr "Valider les noms de patches" +#: guix/gnu-maintenance.scm:514 +msgid "Updater for GNU packages" +msgstr "" =20 -#: guix/scripts/lint.scm:238 -msgid "Validate package synopsis" -msgstr "Valider les synopsis de paquets" +#: guix/gnu-maintenance.scm:521 +msgid "Updater for GNOME packages" +msgstr "" =20 -#: guix/scripts/lint.scm:257 +#: guix/scripts/container.scm:25 msgid "" -"Usage: guix lint [OPTION]... [PACKAGE]...\n" -"Run a set of checkers on the specified package; if none is specified, r= un the checkers on all packages.\n" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" msgstr "" -"Usage: guix lint [OPTION]... [PAQUET]...\n" -"Lancer un ensemble de v=C3=A9rificateurs sur le paquet sp=C3=A9cifi=C3=A9= ; si aucun n'est sp=C3=A9cifi=C3=A9, lancer les v=C3=A9rificateurs sur to= us les paquets.\n" =20 -#: guix/scripts/lint.scm:259 -msgid "" -"\n" -" -c, --checkers=3DCHECKER1,CHECKER2...\n" -" only run the specificed checkers" +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" + +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix: nom de commande manquant~%" + +#: guix/scripts/container.scm:63 +#, scheme-format +msgid "guix container: invalid action~%" msgstr "" -"\n" -" -c, --checkers=3DCHECKER1,CHECKER2...\n" -" lancer uniquement les v=C3=A9rificateurs sp=C3= =A9cifi=C3=A9s" =20 -#: guix/scripts/lint.scm:264 +#: guix/scripts/container/exec.scm:40 msgid "" -"\n" -" -l, --list-checkers display the list of available lint checkers" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" msgstr "" -"\n" -" -l, --list-checkers affiche la liste des v=C3=A9rificateurs dispon= ibles" =20 -#: guix/scripts/lint.scm:283 +#: guix/scripts/container/exec.scm:69 +#, fuzzy, scheme-format +msgid "~a: extraneous argument~%" +msgstr "~A: argument superflu~%" + +#: guix/scripts/container/exec.scm:80 +#, fuzzy, scheme-format +msgid "no pid specified~%" +msgstr "aucun fichier de configuration sp=C3=A9cifi=C3=A9~%" + +#: guix/scripts/container/exec.scm:83 +#, fuzzy, scheme-format +msgid "no command specified~%" +msgstr "aucun fichier de configuration sp=C3=A9cifi=C3=A9~%" + +#: guix/scripts/container/exec.scm:86 #, scheme-format -msgid "~a: invalid checker" -msgstr "~a: v=C3=A9rificateur non valide" +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" +msgstr "" =20 -#: guix/gnu-maintenance.scm:373 +#: guix/upstream.scm:158 #, scheme-format msgid "signature verification failed for `~a'~%" msgstr "la v=C3=A9rification de la signature a =C3=A9chou=C3=A9 pour \"~= a\"~%" =20 -#: guix/gnu-maintenance.scm:375 +#: guix/upstream.scm:160 #, scheme-format msgid "(could be because the public key is not in your keyring)~%" -msgstr "(il est possible que la cl=C3=A9 publique ne soit pas dans dans = votre trousseau)~%" +msgstr "" +"(il est possible que la cl=C3=A9 publique ne soit pas dans dans votre t= rousseau)~%" + +#: guix/upstream.scm:192 +msgid "gz" +msgstr "" =20 -#: guix/gnu-maintenance.scm:450 +#: guix/upstream.scm:255 #, scheme-format msgid "~a: could not locate source file" msgstr "~a: le fichier source est introuvable" =20 -#: guix/gnu-maintenance.scm:455 +#: guix/upstream.scm:260 #, scheme-format msgid "~a: ~a: no `version' field in source; skipping~%" msgstr "~a: ~a: aucun champ \"version\" dans la source; ignor=C3=A9~%" =20 -#: guix/ui.scm:135 +#: guix/ui.scm:236 +msgid "entering debugger; type ',bt' for a backtrace\n" +msgstr "" + +#: guix/ui.scm:252 guix/ui.scm:269 +#, fuzzy, scheme-format +msgid "failed to load '~a': ~a~%" +msgstr "impossible de se connecter =C3=A0 \"~a\": ~a~%" + +#: guix/ui.scm:255 +#, fuzzy, scheme-format +msgid "~a: error: ~a~%" +msgstr "~a: ~a: ~a~%" + +#: guix/ui.scm:258 guix/ui.scm:512 +#, scheme-format +msgid "exception thrown: ~s~%" +msgstr "" + +#: guix/ui.scm:260 guix/ui.scm:278 +#, fuzzy, scheme-format +msgid "failed to load '~a':~%" +msgstr "impossible d'installer la locale: ~a~%" + +#: guix/ui.scm:272 +#, fuzzy, scheme-format +msgid "~a: warning: ~a~%" +msgstr "~a: ~a: ~a~%" + +#: guix/ui.scm:275 +#, fuzzy, scheme-format +msgid "failed to load '~a': exception thrown: ~s~%" +msgstr "impossible de lire l'expression ~s: ~s~%" + +#: guix/ui.scm:287 #, scheme-format msgid "failed to install locale: ~a~%" msgstr "impossible d'installer la locale: ~a~%" =20 -#: guix/ui.scm:154 +#: guix/ui.scm:306 +#, fuzzy msgid "" -"Copyright (C) 2014 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" "Copyright (C) 2014 les auteurs de Guix\n" -"Licence GPLv3+: GNU GPL version 3 ou ult=C3=A9rieure \n" -"Ceci est un logiciel libre: vous =C3=AAtes libre de le modifier et de l= e redistribuer.\n" +"Licence GPLv3+: GNU GPL version 3 ou ult=C3=A9rieure \n" +"Ceci est un logiciel libre: vous =C3=AAtes libre de le modifier et de l= e " +"redistribuer.\n" "Il n'y a AUCUNE GARANTIE, dans la limite de ce qui est autoris=C3=A9 pa= r la loi.\n" =20 -#: guix/ui.scm:162 +#: guix/ui.scm:314 #, scheme-format msgid "" "\n" @@ -1109,7 +2111,7 @@ msgstr "" "\n" "Signalez toute anomalie =C3=A0 : ~a." =20 -#: guix/ui.scm:164 +#: guix/ui.scm:316 #, scheme-format msgid "" "\n" @@ -1118,168 +2120,230 @@ msgstr "" "\n" "~a page d'accueil: <~a>" =20 -#: guix/ui.scm:166 +#: guix/ui.scm:318 msgid "" "\n" "General help using GNU software: " msgstr "" "\n" -"Aide g=C3=A9n=C3=A9rale sur l'utilisation des logiciels GNU: " +"Aide g=C3=A9n=C3=A9rale sur l'utilisation des logiciels GNU: " =20 -#: guix/ui.scm:173 +#: guix/ui.scm:363 +#, fuzzy, scheme-format +msgid "'~a' is not a valid regular expression: ~a~%" +msgstr "la signature n'est pas une s-expression valide: ~s~%" + +#: guix/ui.scm:369 #, scheme-format msgid "~a: invalid number~%" msgstr "~a: nombre non valide~%" =20 -#: guix/ui.scm:190 +#: guix/ui.scm:386 #, scheme-format msgid "invalid number: ~a~%" msgstr "nombre non valide: ~a~%" =20 -#: guix/ui.scm:213 +#: guix/ui.scm:409 #, scheme-format msgid "unknown unit: ~a~%" msgstr "unit=C3=A9 inconnue: ~a~%" =20 -#: guix/ui.scm:224 +#: guix/ui.scm:420 #, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "~a:~a:~a: le paquet \"~a\" a une entr=C3=A9e non valide: ~s~%" =20 -#: guix/ui.scm:231 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" -msgstr "~a: ~a: le syst=C3=A8me de compilation \"~a\" ne supporte pas la= compilation crois=C3=A9e~%" +msgstr "" +"~a: ~a: le syst=C3=A8me de compilation \"~a\" ne supporte pas la compil= ation " +"crois=C3=A9e~%" =20 -#: guix/ui.scm:236 +#: guix/ui.scm:432 #, scheme-format msgid "profile '~a' does not exist~%" msgstr "le profile \"~a\" n'existe pas~%" =20 -#: guix/ui.scm:239 +#: guix/ui.scm:435 #, scheme-format msgid "generation ~a of profile '~a' does not exist~%" msgstr "la g=C3=A9n=C3=A9ration ~a du profile \"~a\" n'existe pas~%" =20 -#: guix/ui.scm:243 +#: guix/ui.scm:442 +#, scheme-format +msgid "corrupt input while restoring '~a' from ~s~%" +msgstr "" + +#: guix/ui.scm:444 +#, fuzzy, scheme-format +msgid "corrupt input while restoring archive from ~s~%" +msgstr "archive corrompue" + +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "impossible de se connecter =C3=A0 \"~a\": ~a~%" =20 -#: guix/ui.scm:248 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "la compilation a =C3=A9chou=C3=A9: ~a~%" =20 -#: guix/ui.scm:277 +#: guix/ui.scm:455 +#, scheme-format +msgid "reference to invalid output '~a' of derivation '~a'~%" +msgstr "" + +#: guix/ui.scm:466 +#, scheme-format +msgid "~a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "impossible de lire l'expression ~s: ~s~%" =20 -#: guix/ui.scm:283 -#, scheme-format -msgid "failed to evaluate expression `~a': ~s~%" +#: guix/ui.scm:507 +#, fuzzy, scheme-format +msgid "failed to evaluate expression '~a':~%" msgstr "impossible d'=C3=A9valuer l'expression `~a': ~s~%" =20 -#: guix/ui.scm:292 +#: guix/ui.scm:510 +#, fuzzy, scheme-format +msgid "syntax error: ~a~%" +msgstr "erreur lors de la consultation du nom d'h=C3=B4te: ~a~%" + +#: guix/ui.scm:524 #, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "l'expression ~s ne correspond =C3=A0 aucun paquet~%" =20 -#: guix/ui.scm:339 +#: guix/ui.scm:586 #, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" msgstr[0] "~:[La d=C3=A9rivation suivante serait compil=C3=A9e:~%~{ ~a= ~%~}~;~]" msgstr[1] "~:[Les d=C3=A9rivations suivantes seraient compil=C3=A9es:~%~= { ~a~%~}~;~]" =20 -#: guix/ui.scm:344 +#: guix/ui.scm:591 #, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[Le fichier suivant serait t=C3=A9l=C3=A9charg=C3=A9:~%~{ = ~a~%~}~;~]" msgstr[1] "~:[Les fichiers suivants seraient t=C3=A9l=C3=A9charg=C3=A9s:= ~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:350 +#: guix/ui.scm:597 #, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[La d=C3=A9rivation suivante sera compil=C3=A9e:~%~{ ~a~%= ~}~;~]" msgstr[1] "~:[Les d=C3=A9rivations suivantes seront compil=C3=A9es:~%~{ = ~a~%~}~;~]" =20 -#: guix/ui.scm:355 +#: guix/ui.scm:602 #, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" msgstr[0] "~:[Le fichier suivant sera t=C3=A9l=C3=A9charg=C3=A9:~%~{ ~= a~%~}~;~]" msgstr[1] "~:[Les fichiers suivants seront t=C3=A9l=C3=A9charg=C3=A9s:~%= ~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:407 +#: guix/ui.scm:657 #, scheme-format msgid "The following package would be removed:~%~{~a~%~}~%" msgid_plural "The following packages would be removed:~%~{~a~%~}~%" msgstr[0] "Le paquet suivant serait supprim=C3=A9:~%~{~a~%~}~%" msgstr[1] "Les paquets suivants seraient supprim=C3=A9s:~%~{~a~%~}~%" =20 -#: guix/ui.scm:412 +#: guix/ui.scm:662 #, scheme-format msgid "The following package will be removed:~%~{~a~%~}~%" msgid_plural "The following packages will be removed:~%~{~a~%~}~%" msgstr[0] "Le paquet suivant sera supprim=C3=A9:~%~{~a~%~}~%" msgstr[1] "Les paquets suivants seront supprim=C3=A9s:~%~{~a~%~}~%" =20 -#: guix/ui.scm:425 +#: guix/ui.scm:675 +#, fuzzy, scheme-format +msgid "The following package would be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" +msgstr[0] "Le paquet suivant serait mis =C3=A0 jour:~%~{~a~%~}~%" +msgstr[1] "Les paquets suivants seraient mis =C3=A0 jour:~%~{~a~%~}~%" + +#: guix/ui.scm:680 +#, fuzzy, scheme-format +msgid "The following package will be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" +msgstr[0] "Le paquet suivant sera mis =C3=A0 jour:~%~{~a~%~}~%" +msgstr[1] "Les paquets suivants seront mis =C3=A0 jour:~%~{~a~%~}~%" + +#: guix/ui.scm:693 #, scheme-format msgid "The following package would be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" msgstr[0] "Le paquet suivant serait mis =C3=A0 jour:~%~{~a~%~}~%" msgstr[1] "Les paquets suivants seraient mis =C3=A0 jour:~%~{~a~%~}~%" =20 -#: guix/ui.scm:430 +#: guix/ui.scm:698 #, scheme-format msgid "The following package will be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" msgstr[0] "Le paquet suivant sera mis =C3=A0 jour:~%~{~a~%~}~%" msgstr[1] "Les paquets suivants seront mis =C3=A0 jour:~%~{~a~%~}~%" =20 -#: guix/ui.scm:441 +#: guix/ui.scm:709 #, scheme-format msgid "The following package would be installed:~%~{~a~%~}~%" msgid_plural "The following packages would be installed:~%~{~a~%~}~%" msgstr[0] "Le paquet suivant serait install=C3=A9:~%~{~a~%~}~%" msgstr[1] "Les paquets suivants seraient install=C3=A9s:~%~{~a~%~}~%" =20 -#: guix/ui.scm:446 +#: guix/ui.scm:714 #, scheme-format msgid "The following package will be installed:~%~{~a~%~}~%" msgid_plural "The following packages will be installed:~%~{~a~%~}~%" msgstr[0] "Le paquet suivant sera install=C3=A9:~%~{~a~%~}~%" msgstr[1] "Les paquets suivants seront install=C3=A9s:~%~{~a~%~}~%" =20 -#: guix/ui.scm:463 +#: guix/ui.scm:731 msgid "" msgstr "" =20 -#: guix/ui.scm:489 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "impossible de cr=C3=A9er le r=C3=A9pertoire de configuration \"~= a\": ~a~%" =20 -#: guix/ui.scm:589 guix/ui.scm:603 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "inconnu" =20 -#: guix/ui.scm:712 +#: guix/ui.scm:1033 #, scheme-format -msgid "invalid argument: ~a~%" -msgstr "argument non valide: ~a~%" +msgid "Generation ~a\t~a" +msgstr "G=C3=A9n=C3=A9ration ~a\t~a" + +#: guix/ui.scm:1040 +#, scheme-format +msgid "~a\t(current)~%" +msgstr "~a\t(actuel)~%" + +#: guix/ui.scm:1057 +#, fuzzy, scheme-format +msgid "switched from generation ~a to ~a~%" +msgstr "passage de la g=C3=A9n=C3=A9ration ~a =C3=A0 ~a~%" + +#: guix/ui.scm:1073 +#, scheme-format +msgid "deleting ~a~%" +msgstr "suppression de ~a~%" =20 -#: guix/ui.scm:717 +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Essayez \"guix --help\" pour plus d'informations.~%" =20 -#: guix/ui.scm:747 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -1287,41 +2351,31 @@ msgstr "" "Usage: guix COMMANDE ARGS...\n" "Lance la COMMANDE avec les arguments ARGS.\n" =20 -#: guix/ui.scm:750 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "COMMANDE doit =C3=AAtre une des sous-commandes list=C3=A9es ci-d= essous:\n" =20 -#: guix/ui.scm:770 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: commande introuvable~%" =20 -#: guix/ui.scm:788 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: nom de commande manquant~%" =20 -#: guix/ui.scm:796 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: option \"~a\" non reconnue ~%" =20 -#: guix/http-client.scm:217 -#, scheme-format -msgid "using Guile ~a, which does not support ~s encoding~%" -msgstr "utilisation de Guile ~a, qui ne supporte pas l'encodage ~s~%" - -#: guix/http-client.scm:220 -#, scheme-format -msgid "download failed; use a newer Guile~%" -msgstr "le t=C3=A9l=C3=A9chargement a =C3=A9chou=C3=A9; veuillez utilise= r une version plus r=C3=A9cente de Guile~%" - -#: guix/http-client.scm:232 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "redirection vers \"~a\"...~%" =20 -#: guix/http-client.scm:241 +#: guix/http-client.scm:269 msgid "download failed" msgstr "le t=C3=A9l=C3=A9chargement a =C3=A9chou=C3=A9" =20 @@ -1354,15 +2408,186 @@ msgstr "archive corrompue" msgid "importing file or directory '~a'...~%" msgstr "import du fichier ou r=C3=A9pertoire \"~a\"...~%" =20 -#: guix/nar.scm:220 +#: guix/nar.scm:222 #, scheme-format msgid "found valid signature for '~a'~%" msgstr "signature valide trouv=C3=A9e pour \"~a\"~%" =20 -#: guix/nar.scm:227 +#: guix/nar.scm:229 msgid "imported file lacks a signature" msgstr "les fichiers import=C3=A9s requi=C3=A8rent une signature" =20 -#: guix/nar.scm:266 +#: guix/nar.scm:268 msgid "invalid inter-file archive mark" msgstr "marque d'archive inter-fichier non valide" + +#: nix/nix-daemon/guix-daemon.cc:61 +msgid "guix-daemon -- perform derivation builds and store accesses" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:63 +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:87 +msgid "SYSTEM" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:88 +msgid "assume SYSTEM as the current system type" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 +msgid "N" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:90 +msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:93 +msgid "allow at most N build jobs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:95 +msgid "disable chroot builds" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:96 +msgid "DIR" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:97 +msgid "add DIR to the build chroot" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:98 +msgid "GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:99 +msgid "perform builds as a user of GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:101 +msgid "do not use substitutes" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:102 +msgid "URLS" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:103 +msgid "use URLS as the default list of substitute providers" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:105 +msgid "do not use the 'build hook'" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:107 +msgid "cache build failures" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 +msgid "do not keep build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:113 +msgid "disable compression of the build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:118 +msgid "disable automatic file \"deduplication\" in the store" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:128 +msgid "impersonate Linux 2.6" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:132 +msgid "tell whether the GC must keep outputs of live derivations" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:135 +msgid "tell whether the GC must keep derivations corresponding to live o= utputs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:138 +msgid "SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:139 +msgid "listen for connections on SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:141 +msgid "produce debugging output" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 +#, c-format +msgid "error: %s\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:281 +#, c-format +msgid "error: libgcrypt version mismatch\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:372 +#, c-format +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" +msgstr "" + +#~ msgid "~a: not a number~%" +#~ msgstr "~a: pas un nombre~%" + +#~ msgid "sources do not match any package:~{ ~a~}~%" +#~ msgstr "les sources ne correspondent =C3=A0 aucun paquet:~{ ~a~}~%" + +#~ msgid "failed to build the empty profile~%" +#~ msgstr "=C3=A9chec de la compilation du profil vide~%" + +#~ msgid "nothing to do: already at the empty profile~%" +#~ msgstr "aucune action =C3=A0 faire: profil courant vide" + +#~ msgid "Downloading, please wait...~%" +#~ msgstr "T=C3=A9l=C3=A9chargement en cours..." + +#~ msgid "(Please consider upgrading Guile to get proper progress report= .)~%" +#~ msgstr "" +#~ "(Veuillez mettre Guile =C3=A0 jour pour obtenir le rapport de progre= ssion " +#~ "appropri=C3=A9.)~%" + +#~ msgid "these substitute URLs will not be used:~{ ~a~}~%" +#~ msgstr "ces URL de substitution ne seront pas utilis=C3=A9es:~{ ~a~}~= %" + +#~ msgid "failed to look up host '~a' (~a), substituter disabled~%" +#~ msgstr "impossible de trouver l'h=C3=B4te \"~a\" (~a), substitution d= =C3=A9sactiv=C3=A9e~%" + +#~ msgid "failed to open operating system file '~a': ~a~%" +#~ msgstr "" +#~ "impossible d'ouvrir le fichier du syst=C3=A8me d'exploitation \"~a\"= : ~a~%" + +#~ msgid "using Guile ~a, which does not support ~s encoding~%" +#~ msgstr "utilisation de Guile ~a, qui ne supporte pas l'encodage ~s~%" + +#~ msgid "download failed; use a newer Guile~%" +#~ msgstr "" +#~ "le t=C3=A9l=C3=A9chargement a =C3=A9chou=C3=A9; veuillez utiliser un= e version plus r=C3=A9cente de " +#~ "Guile~%" diff --git a/po/guix/hu.po b/po/guix/hu.po index 7d4322c..aa204d6 100644 --- a/po/guix/hu.po +++ b/po/guix/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.8\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-11-09 22:32+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2014-12-03 21:49+0100\n" "Last-Translator: Bal=C3=A1zs =C3=9Ar \n" "Language-Team: Hungarian \n" @@ -18,47 +18,164 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Lokalize 1.5\n" =20 -#: gnu/packages.scm:120 +#: gnu/packages.scm:76 +#, fuzzy, scheme-format +msgid "~a: patch not found" +msgstr "~a: a csomag nem tal=C3=A1lhat=C3=B3~%" + +#: gnu/packages.scm:87 +#, scheme-format +msgid "could not find bootstrap binary '~a' for system '~a'" +msgstr "" + +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "nem siker=C3=BClt el=C3=A9rni: =E2=80=9E~a=E2=80=9D: ~a~%" =20 -#: gnu/packages.scm:350 +#: gnu/packages.scm:327 #, scheme-format msgid "looking for the latest release of GNU ~a..." msgstr "a GNU ~a legut=C3=B3bbi kiad=C3=A1s=C3=A1nak keres=C3=A9se=E2=80= =A6" =20 -#: gnu/packages.scm:354 +#: gnu/packages.scm:334 #, scheme-format msgid "~a: note: using ~a but ~a is available upstream~%" msgstr "~a: megjegyz=C3=A9s: ~a haszn=C3=A1lata, de ~a el=C3=A9rhet=C5=91= a t=C3=A1rol=C3=B3ban~%" =20 -#: gnu/packages.scm:376 guix/scripts/package.scm:305 +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "nem egy=C3=A9rtelm=C5=B1 csomag specifik=C3=A1ci=C3=B3: =E2=80=9E= ~a=E2=80=9D~%" =20 -#: gnu/packages.scm:377 guix/scripts/package.scm:307 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "~a v=C3=A1laszt=C3=A1sa innen: ~a~%" =20 -#: gnu/packages.scm:383 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: nem tal=C3=A1lhat=C3=B3 csomag ehhez a verzi=C3=B3hoz: ~a~%" =20 -#: gnu/packages.scm:385 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: ismeretlen csomag~%" =20 -#: guix/scripts/build.scm:65 +#: gnu/packages.scm:381 +#, scheme-format +msgid "package `~a' lacks output `~a'~%" +msgstr "a(z) =E2=80=9E~a=E2=80=9D csomag hi=C3=A1nyolja a kimenetet: =E2= =80=9E~a=E2=80=9D~%" + +#: gnu/packages.scm:398 +#, scheme-format +msgid "~a: package not found~%" +msgstr "~a: a csomag nem tal=C3=A1lhat=C3=B3~%" + +#: gnu/services.scm:527 +#, scheme-format +msgid "no target of type '~a' for service ~s" +msgstr "" + +#: gnu/services.scm:538 gnu/services.scm:599 +#, scheme-format +msgid "more than one target service of type '~a'" +msgstr "" + +#: gnu/services.scm:589 +#, scheme-format +msgid "service of type '~a' not found" +msgstr "" + +#: gnu/system.scm:545 +#, scheme-format +msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" +msgstr "" + +#: gnu/system.scm:561 +#, scheme-format +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" + +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: =C3=A9rv=C3=A9nytelen ellen=C5=91rz=C5=91" + +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "azonos=C3=ADtatlan ind=C3=ADt=C3=A1si param=C3=A9terek ehhez: =E2= =80=9E~a=E2=80=9D~%" + +#: gnu/services/shepherd.scm:166 +#, scheme-format +msgid "service '~a' provided more than once" +msgstr "" + +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + +#: gnu/system/shadow.scm:213 +#, scheme-format +msgid "supplementary group '~a' of user '~a' is undeclared" +msgstr "" + +#: gnu/system/shadow.scm:223 +#, scheme-format +msgid "primary group '~a' of user '~a' is undeclared" +msgstr "" + +#: guix/scripts.scm:52 +#, scheme-format +msgid "invalid argument: ~a~%" +msgstr "=C3=A9rv=C3=A9nytelen argumentum: ~a~%" + +#: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 +#: guix/scripts/publish.scm:355 +#, scheme-format +msgid "~A: unrecognized option~%" +msgstr "~A: ismeretlen kapcsol=C3=B3~%" + +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "nem siker=C3=BClt a GC gy=C3=B6k=C3=A9r l=C3=A9trehoz=C3=A1sa: =E2= =80=9E~a=E2=80=9D: ~a~%" =20 -#: guix/scripts/build.scm:102 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "nem egy=C3=A9rtelm=C5=B1 csomag specifik=C3=A1ci=C3=B3: =E2=80=9E= ~a=E2=80=9D~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" +"\n" +" --with-source=3DFORR=C3=81S\n" +" FORR=C3=81S haszn=C3=A1lata a megfelel=C5=91 c= somag " +"=C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sakor" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 msgid "" "\n" " -L, --load-path=3DDIR prepend DIR to the package module search pat= h" @@ -66,7 +183,7 @@ msgstr "" "\n" " -L, --load-path=3DKVT KVT besz=C3=BAr=C3=A1sa a csomag modul keres= =C3=A9si =C3=BAtvonalhoz" =20 -#: guix/scripts/build.scm:104 +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" @@ -75,7 +192,16 @@ msgstr "" " -K, --keep-failed sikertelen =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sok = =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1si f=C3=A1j=C3=A1nak\n" " megtart=C3=A1sa" =20 -#: guix/scripts/build.scm:106 +#: guix/scripts/build.scm:286 +#, fuzzy +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" +"\n" +" -n, --dry-run ne =C3=A1ll=C3=ADtsa =C3=B6ssze a sz=C3=A1rmaz= =C3=A9kokat" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" @@ -83,7 +209,7 @@ msgstr "" "\n" " -n, --dry-run ne =C3=A1ll=C3=ADtsa =C3=B6ssze a sz=C3=A1rmaz= =C3=A9kokat" =20 -#: guix/scripts/build.scm:108 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" @@ -92,7 +218,7 @@ msgstr "" " --fallback t=C3=A9rjen vissza az =C3=B6ssze=C3=A1ll=C3=AD= t=C3=A1sra, ha a helyettes=C3=ADt=C5=91\n" " sikertelen" =20 -#: guix/scripts/build.scm:110 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" @@ -101,7 +227,14 @@ msgstr "" " --no-substitutes =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1s az el=C5=91re= =C3=B6ssze=C3=A1ll=C3=ADtott helyettes=C3=ADt=C5=91k\n" " felhaszn=C3=A1l=C3=A1sa helyett" =20 -#: guix/scripts/build.scm:112 +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" fetch substitute from URLS if they are authori= zed" +msgstr "" + +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" @@ -110,7 +243,7 @@ msgstr "" " --no-build-hook ne pr=C3=B3b=C3=A1ljon meg =C3=B6ssze=C3=A1ll=C3= =ADt=C3=A1sokat tehermentes=C3=ADteni\n" " az =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1si hurkon ke= reszt=C3=BCl" =20 -#: guix/scripts/build.scm:114 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" @@ -121,7 +254,7 @@ msgstr "" " az =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1s sikertelen= nek jel=C3=B6l=C3=A9se M=C3=81SODPERC\n" " hallgat=C3=A1s ut=C3=A1n" =20 -#: guix/scripts/build.scm:117 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" @@ -130,7 +263,7 @@ msgstr "" " --timeout=3DM=C3=81SODPERC az =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1s s= ikertelennek jel=C3=B6l=C3=A9se M=C3=81SODPERC\n" " aktivit=C3=A1s ut=C3=A1n" =20 -#: guix/scripts/build.scm:119 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" @@ -138,7 +271,13 @@ msgstr "" "\n" " --verbosity=3DSZINT a megadott b=C5=91besz=C3=A9d=C5=B1s=C3=A9gi= SZINT haszn=C3=A1lata" =20 -#: guix/scripts/build.scm:121 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" @@ -147,12 +286,18 @@ msgstr "" " -c, --cores=3DN legfeljebb N CPU-mag haszn=C3=A1lat=C3=A1nak= enged=C3=A9lyez=C3=A9se\n" " az =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1shoz" =20 -#: guix/scripts/build.scm:195 -#, scheme-format -msgid "~a: not a number~%" -msgstr "~a: nem sz=C3=A1m~%" +#: guix/scripts/build.scm:310 +msgid "" +"\n" +" -M, --max-jobs=3DN allow at most N build jobs" +msgstr "" + +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 +#, fuzzy, scheme-format +msgid "not a number: '~a' option argument: ~a~%" +msgstr "nem megfelel=C5=91 sz=C3=A1m=C3=BA argumentum~%" =20 -#: guix/scripts/build.scm:213 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" @@ -161,7 +306,7 @@ msgstr "" "A megadott CSOMAG-VAGY-SZ=C3=81RMAZTATOTT =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1= sa, =C3=A9s a kimeneti el=C3=A9r=C3=A9si\n" "=C3=BAtjaik visszaad=C3=A1sa.\n" =20 -#: guix/scripts/build.scm:215 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" @@ -170,7 +315,19 @@ msgstr "" " -e, --expression=3DKIF a csomag vagy a ki=C3=A9rt=C3=A9kelt sz=C3=A1= rmaztatott KIF\n" " =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa" =20 -#: guix/scripts/build.scm:217 +#: guix/scripts/build.scm:441 +#, fuzzy +msgid "" +"\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" +" FILE evaluates to" +msgstr "" +"\n" +" -e, --expression=3DKIF a csomag vagy a ki=C3=A9rt=C3=A9kelt sz=C3=A1= rmaztatott KIF\n" +" =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa" + +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" @@ -178,7 +335,15 @@ msgstr "" "\n" " -S, --source a csomagok forr=C3=A1ssz=C3=A1rmaz=C3=A9kainak= =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa" =20 -#: guix/scripts/build.scm:219 +#: guix/scripts/build.scm:446 +msgid "" +"\n" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" +" of \"package\", \"all\" (default), or \"transi= tive\"" +msgstr "" + +#: guix/scripts/build.scm:449 msgid "" "\n" " -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" @@ -187,7 +352,7 @@ msgstr "" " -s, --system=3DRENDSZER k=C3=ADs=C3=A9rlet a RENDSZERRE t=C3=B6rt=C3= =A9n=C5=91 =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sra,\n" " p=C3=A9ld=C3=A1ul =E2=80=9Ei686-linux=E2=80=9D= " =20 -#: guix/scripts/build.scm:221 +#: guix/scripts/build.scm:451 msgid "" "\n" " --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" @@ -196,33 +361,30 @@ msgstr "" " --target=3DH=C3=81RMAS kereszt =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1= s a H=C3=81RMASRA, p=C3=A9ld=C3=A1ul\n" " =E2=80=9Earmel-linux-gnu=E2=80=9D" =20 -#: guix/scripts/build.scm:223 +#: guix/scripts/build.scm:453 msgid "" "\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" +" --no-grafts do not graft packages" msgstr "" "\n" -" --with-source=3DFORR=C3=81S\n" -" FORR=C3=81S haszn=C3=A1lata a megfelel=C5=91 c= somag =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sakor" +" --no-grafts ne oltsa be a csomagokat" =20 -#: guix/scripts/build.scm:226 +#: guix/scripts/build.scm:455 msgid "" "\n" -" --no-grafts do not graft packages" +" -d, --derivations return the derivation paths of the given packa= ges" msgstr "" "\n" -" --no-grafts ne oltsa be a csomagokat" +" -d, --derivations a megadott csomagok sz=C3=A1rmaz=C3=A9k-=C3=BA= tvonal=C3=A1nak " +"visszaad=C3=A1sa" =20 -#: guix/scripts/build.scm:228 +#: guix/scripts/build.scm:457 msgid "" "\n" -" -d, --derivations return the derivation paths of the given packa= ges" +" --check rebuild items to check for non-determinism iss= ues" msgstr "" -"\n" -" -d, --derivations a megadott csomagok sz=C3=A1rmaz=C3=A9k-=C3=BA= tvonal=C3=A1nak visszaad=C3=A1sa" =20 -#: guix/scripts/build.scm:230 +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" @@ -232,19 +394,24 @@ msgstr "" " -r, --root=3DF=C3=81JL a F=C3=81JL az eredm=C3=A9ny egy szimbo= likus linkje legyen,\n" " =C3=A9s regisztr=C3=A1lja gy=C3=B6k=C3=A9r sze= m=C3=A9tgy=C5=B1jt=C5=91k=C3=A9nt" =20 -#: guix/scripts/build.scm:233 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" msgstr "" "\n" -" --log-file a megadott sz=C3=A1rmaz=C3=A9kok napl=C3=B3f=C3= =A1jl-neveinek visszaad=C3=A1sa" +" --log-file a megadott sz=C3=A1rmaz=C3=A9kok napl=C3=B3f=C3= =A1jl-neveinek " +"visszaad=C3=A1sa" =20 -#: guix/scripts/build.scm:238 guix/scripts/download.scm:53 -#: guix/scripts/package.scm:451 guix/scripts/gc.scm:58 -#: guix/scripts/hash.scm:55 guix/scripts/pull.scm:81 -#: guix/scripts/substitute-binary.scm:560 guix/scripts/system.scm:371 -#: guix/scripts/lint.scm:262 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 +#: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -252,11 +419,15 @@ msgstr "" "\n" " -h, --help ezen s=C3=BAg=C3=B3 megjelen=C3=ADt=C3=A9se =C3= =A9s kil=C3=A9p=C3=A9s" =20 -#: guix/scripts/build.scm:240 guix/scripts/download.scm:55 -#: guix/scripts/package.scm:453 guix/scripts/gc.scm:60 -#: guix/scripts/hash.scm:57 guix/scripts/pull.scm:83 -#: guix/scripts/substitute-binary.scm:562 guix/scripts/system.scm:373 -#: guix/scripts/lint.scm:266 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 +#: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -264,25 +435,24 @@ msgstr "" "\n" " -V, --version verzi=C3=B3inform=C3=A1ci=C3=B3k megjelen=C3=AD= t=C3=A9se =C3=A9s kil=C3=A9p=C3=A9s" =20 -#: guix/scripts/build.scm:366 +#: guix/scripts/build.scm:498 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" -msgstr "a forr=C3=A1sok nem illeszkednek semmilyen csomagra:~{ ~a~}~%" +msgid "" +"invalid argument: '~a' option argument: ~a, ~\n" +"must be one of 'package', 'all', or 'transitive'~%" +msgstr "" =20 -#: guix/scripts/build.scm:395 guix/scripts/download.scm:96 -#: guix/scripts/package.scm:673 guix/scripts/gc.scm:122 -#: guix/scripts/pull.scm:213 guix/scripts/system.scm:426 -#: guix/scripts/lint.scm:313 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "~A: unrecognized option~%" -msgstr "~A: ismeretlen kapcsol=C3=B3~%" +msgid "~s: not something we can build~%" +msgstr "" =20 -#: guix/scripts/build.scm:423 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "nincs =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1si napl=C3=B3 ehhez: =E2=80= =9E~a=E2=80=9D~%" =20 -#: guix/scripts/download.scm:44 +#: guix/scripts/download.scm:45 msgid "" "Usage: guix download [OPTION] URL\n" "Download the file at URL, add it to the store, and print its store path= \n" @@ -298,7 +468,7 @@ msgstr "" "T=C3=A1mogatott form=C3=A1tumok: =E2=80=9Enix-base32=E2=80=9D (alap=C3=A9= rtelmezett), =E2=80=9Ebase32=E2=80=9D =C3=A9s =E2=80=9Ebase16=E2=80=9D\n" "(=E2=80=9Ehex=E2=80=9D =C3=A9s =E2=80=9Ehexadecimal=E2=80=9D is haszn=C3= =A1lhat=C3=B3).\n" =20 -#: guix/scripts/download.scm:50 guix/scripts/hash.scm:50 +#: guix/scripts/download.scm:51 guix/scripts/hash.scm:51 msgid "" "\n" " -f, --format=3DFMT write the hash in the given format" @@ -306,73 +476,112 @@ msgstr "" "\n" " -f, --format=3DFMT a hash ki=C3=ADr=C3=A1sa a megadott form=C3=A1= tumban" =20 -#: guix/scripts/download.scm:73 guix/scripts/hash.scm:75 +#: guix/scripts/download.scm:74 guix/scripts/hash.scm:76 #, scheme-format msgid "unsupported hash format: ~a~%" msgstr "nem t=C3=A1mogatott hash-form=C3=A1tum: ~a~%" =20 -#: guix/scripts/download.scm:106 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 +#, scheme-format +msgid "~A: extraneous argument~%" +msgstr "~A: nem odatartoz=C3=B3 argumentum~%" + +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" +msgstr "~a: let=C3=B6lt=C3=A9s sikertelen~%" + +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "~a: az URI feldolgoz=C3=A1sa sikertelen~%" =20 -#: guix/scripts/download.scm:117 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "~a: let=C3=B6lt=C3=A9s sikertelen~%" =20 -#: guix/scripts/package.scm:97 +#: guix/scripts/package.scm:102 +#, scheme-format +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "" +"Tov=C3=A1bbi inform=C3=A1ci=C3=B3k=C3=A9rt pr=C3=B3b=C3=A1lja az =E2=80= =9Einfo '(guix) Invoking guix package'=E2=80=9D\n" +"parancsot.~%" + +#: guix/scripts/package.scm:124 #, scheme-format -msgid "failed to build the empty profile~%" -msgstr "az =C3=BCres profil =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa sikertelen= ~%" +msgid "error: while creating directory `~a': ~a~%" +msgstr "hiba: a(z) =E2=80=9E~a=E2=80=9D k=C3=B6nyvt=C3=A1r l=C3=A9trehoz= =C3=A1sa k=C3=B6zben: ~a~%" =20 -#: guix/scripts/package.scm:113 +#: guix/scripts/package.scm:128 #, scheme-format -msgid "switching from generation ~a to ~a~%" -msgstr "=C3=A1tv=C3=A1lt=C3=A1s a(z) ~a gener=C3=A1ci=C3=B3r=C3=B3l erre= : ~a~%" +msgid "Please create the `~a' directory, with you as the owner.~%" +msgstr "Hozza l=C3=A9tre a(z) =E2=80=9E~a=E2=80=9D k=C3=B6nyvt=C3=A1rat = az =C3=B6n nev=C3=A9ben, tulajdonosk=C3=A9nt.~%" =20 -#: guix/scripts/package.scm:132 +#: guix/scripts/package.scm:135 #, scheme-format -msgid "nothing to do: already at the empty profile~%" -msgstr "nincs mit tenni: m=C3=A1r az =C3=BCres profiln=C3=A1l van~%" +msgid "error: directory `~a' is not owned by you~%" +msgstr "hiba: a(z) =E2=80=9E~a=E2=80=9D k=C3=B6nyvt=C3=A1rnak nem =C3=B6= n a tulajdonosa~%" =20 -#: guix/scripts/package.scm:144 +#: guix/scripts/package.scm:138 #, scheme-format -msgid "deleting ~a~%" -msgstr "~a t=C3=B6rl=C3=A9se~%" +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "V=C3=A1ltoztassa meg a(z) =E2=80=9E~a=E2=80=9D tulajdonos=C3=A1t= erre a felhaszn=C3=A1l=C3=B3ra: ~s.~%" =20 -#: guix/scripts/package.scm:295 +#: guix/scripts/package.scm:173 #, scheme-format -msgid "package `~a' lacks output `~a'~%" -msgstr "a(z) =E2=80=9E~a=E2=80=9D csomag hi=C3=A1nyolja a kimenetet: =E2= =80=9E~a=E2=80=9D~%" +msgid "not removing generation ~a, which is current~%" +msgstr "" =20 -#: guix/scripts/package.scm:312 +#: guix/scripts/package.scm:180 +#, fuzzy, scheme-format +msgid "no matching generation~%" +msgstr "nem siker=C3=BClt =C3=A1tv=C3=A1ltani erre a gener=C3=A1ci=C3=B3= ra: =E2=80=9E~a=E2=80=9D~%" + +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format -msgid "~a: package not found~%" -msgstr "~a: a csomag nem tal=C3=A1lhat=C3=B3~%" +msgid "invalid syntax: ~a~%" +msgstr "=C3=A9rv=C3=A9nytelen szintaxis: ~a~%" + +#: guix/scripts/package.scm:208 +#, scheme-format +msgid "nothing to be done~%" +msgstr "nincs mit tenni~%" + +#: guix/scripts/package.scm:222 +#, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "~a csomag a profilban~%" +msgstr[1] "~a csomag a profilban~%" =20 -#: guix/scripts/package.scm:390 +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" msgstr "A k=C3=B6vetkez=C5=91 k=C3=B6rnyezeti v=C3=A1ltoz=C3=B3 meghat=C3= =A1roz=C3=A1sok lehetnek sz=C3=BCks=C3=A9gesek:~%" =20 -#: guix/scripts/package.scm:406 +#: guix/scripts/package.scm:325 +#, fuzzy msgid "" -"Usage: guix package [OPTION]... PACKAGES...\n" -"Install, remove, or upgrade PACKAGES in a single transaction.\n" +"Usage: guix package [OPTION]...\n" +"Install, remove, or upgrade packages in a single transaction.\n" msgstr "" "Haszn=C3=A1lat: guix package [KAPCSOL=C3=93]=E2=80=A6 CSOMAGOK=E2=80=A6= \n" "CSOMAGOK telep=C3=ADt=C3=A9se, elt=C3=A1vol=C3=ADt=C3=A1sa vagy friss=C3= =ADt=C3=A9se egyetlen tranzakci=C3=B3ban.\n" =20 -#: guix/scripts/package.scm:408 +#: guix/scripts/package.scm:327 +#, fuzzy msgid "" "\n" -" -i, --install=3DPACKAGE install PACKAGE" +" -i, --install PACKAGE ...\n" +" install PACKAGEs" msgstr "" "\n" " -i, --install=3DCSOMAG CSOMAG telep=C3=ADt=C3=A9se" =20 -#: guix/scripts/package.scm:410 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" @@ -382,15 +591,29 @@ msgstr "" " -e, --install-from-expression=3DKIF\n" " a ki=C3=A9rt=C3=A9kelt KIF csomag telep=C3=ADt= =C3=A9se" =20 -#: guix/scripts/package.scm:413 +#: guix/scripts/package.scm:333 +#, fuzzy msgid "" "\n" -" -r, --remove=3DPACKAGE remove PACKAGE" +" -f, --install-from-file=3DFILE\n" +" install the package that the code within FILE\= n" +" evaluates to" +msgstr "" +"\n" +" -e, --install-from-expression=3DKIF\n" +" a ki=C3=A9rt=C3=A9kelt KIF csomag telep=C3=ADt= =C3=A9se" + +#: guix/scripts/package.scm:337 +#, fuzzy +msgid "" +"\n" +" -r, --remove PACKAGE ...\n" +" remove PACKAGEs" msgstr "" "\n" " -r, --remove=3DCSOMAG CSOMAG elt=C3=A1vol=C3=ADt=C3=A1sa" =20 -#: guix/scripts/package.scm:415 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" @@ -399,7 +622,24 @@ msgstr "" " -u, --upgrade[=3DREGKIF] az =C3=B6sszes REGKIF-re illeszked=C5=91 tel= ep=C3=ADtett csomag\n" " friss=C3=ADt=C3=A9se" =20 -#: guix/scripts/package.scm:417 +#: guix/scripts/package.scm:342 +msgid "" +"\n" +" -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" +" from FILE" +msgstr "" + +#: guix/scripts/package.scm:345 +#, fuzzy +msgid "" +"\n" +" --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" +msgstr "" +"\n" +" -u, --upgrade[=3DREGKIF] az =C3=B6sszes REGKIF-re illeszked=C5=91 tel= ep=C3=ADtett csomag\n" +" friss=C3=ADt=C3=A9se" + +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -407,16 +647,18 @@ msgstr "" "\n" " --roll-back visszag=C3=B6rget=C3=A9s az el=C5=91z=C5=91 ge= ner=C3=A1ci=C3=B3ra" =20 -#: guix/scripts/package.scm:419 +#: guix/scripts/package.scm:349 +#, fuzzy msgid "" "\n" -" --search-paths display needed environment variable definition= s" +" --search-paths[=3DKIND]\n" +" display needed environment variable definition= s" msgstr "" "\n" " --search-paths a sz=C3=BCks=C3=A9ges k=C3=B6rnyezeti v=C3=A1l= toz=C3=B3 meghat=C3=A1roz=C3=A1sok\n" " megjelen=C3=ADt=C3=A9se" =20 -#: guix/scripts/package.scm:421 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" @@ -426,7 +668,7 @@ msgstr "" " -l, --list-generations[=3DMINTA]\n" " a MINT=C3=81RA illeszked=C5=91 gener=C3=A1ci=C3= =B3k list=C3=A1z=C3=A1sa" =20 -#: guix/scripts/package.scm:424 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" @@ -436,7 +678,7 @@ msgstr "" " -d, --delete-generations[=3DMINTA]\n" " a MINT=C3=81RA illeszked=C5=91 gener=C3=A1ci=C3= =B3k t=C3=B6rl=C3=A9se" =20 -#: guix/scripts/package.scm:427 +#: guix/scripts/package.scm:358 msgid "" "\n" " -S, --switch-generation=3DPATTERN\n" @@ -446,7 +688,7 @@ msgstr "" " -S, --switch-generation=3DMINTA\n" " =C3=A1tv=C3=A1lt=C3=A1s a MINT=C3=81RA illeszk= ed=C5=91 gener=C3=A1ci=C3=B3ra" =20 -#: guix/scripts/package.scm:430 +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" @@ -455,7 +697,7 @@ msgstr "" " -p, --profile=3DPROFIL a PROFIL haszn=C3=A1lata a felhaszn=C3=A1l=C3= =B3 alap=C3=A9rtelmezett\n" " profilja helyett" =20 -#: guix/scripts/package.scm:433 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -464,7 +706,7 @@ msgstr "" " --bootstrap a Guile rendszert=C3=B6lt=C5=91 haszn=C3=A1lat= a a profil\n" " =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1s=C3=A1hoz" =20 -#: guix/scripts/package.scm:435 guix/scripts/pull.scm:74 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" @@ -472,7 +714,7 @@ msgstr "" "\n" " --verbose b=C5=91besz=C3=A9d=C5=B1 kimenet el=C5=91=C3=A1= ll=C3=ADt=C3=A1sa" =20 -#: guix/scripts/package.scm:438 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" @@ -481,7 +723,7 @@ msgstr "" " -s, --search=3DREGKIF keres=C3=A9s az =C3=B6sszegz=C3=A9sben =C3=A9= s a le=C3=ADr=C3=A1sban REGKIF\n" " haszn=C3=A1lat=C3=A1val" =20 -#: guix/scripts/package.scm:440 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" @@ -491,7 +733,7 @@ msgstr "" " -I, --list-installed[=3DREGKIF]\n" " a REGKIF-re illeszked=C5=91 telep=C3=ADtett cs= omagok list=C3=A1z=C3=A1sa" =20 -#: guix/scripts/package.scm:443 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" @@ -501,79 +743,36 @@ msgstr "" " -A, --list-available[=3DREGKIF]\n" " a REGKIF-re illeszked=C5=91 el=C3=A9rhet=C5=91= csomagok list=C3=A1z=C3=A1sa" =20 -#: guix/scripts/package.scm:446 +#: guix/scripts/package.scm:377 +#, fuzzy msgid "" "\n" -" --show=3DPACKAGE show details about PACKAGE" +" --show=3DPACKAGE show details about PACKAGE" msgstr "" "\n" " --show=3DCSOMAG a CSOMAG r=C3=A9szleteinek megjelen=C3=ADt=C3= =A9se" =20 -#: guix/scripts/package.scm:677 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "~A: nem odatartoz=C3=B3 argumentum~%" - -#: guix/scripts/package.scm:687 +#: guix/scripts/package.scm:472 #, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgid "~a: unsupported kind of search path~%" msgstr "" -"Tov=C3=A1bbi inform=C3=A1ci=C3=B3k=C3=A9rt pr=C3=B3b=C3=A1lja az =E2=80= =9Einfo '(guix) Invoking guix package'=E2=80=9D\n" -"parancsot.~%" - -#: guix/scripts/package.scm:709 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "hiba: a(z) =E2=80=9E~a=E2=80=9D k=C3=B6nyvt=C3=A1r l=C3=A9trehoz= =C3=A1sa k=C3=B6zben: ~a~%" - -#: guix/scripts/package.scm:713 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "Hozza l=C3=A9tre a(z) =E2=80=9E~a=E2=80=9D k=C3=B6nyvt=C3=A1rat = az =C3=B6n nev=C3=A9ben, tulajdonosk=C3=A9nt.~%" - -#: guix/scripts/package.scm:720 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "hiba: a(z) =E2=80=9E~a=E2=80=9D k=C3=B6nyvt=C3=A1rnak nem =C3=B6= n a tulajdonosa~%" - -#: guix/scripts/package.scm:723 -#, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "V=C3=A1ltoztassa meg a(z) =E2=80=9E~a=E2=80=9D tulajdonos=C3=A1t= erre a felhaszn=C3=A1l=C3=B3ra: ~s.~%" =20 -#: guix/scripts/package.scm:756 +#: guix/scripts/package.scm:755 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "nem siker=C3=BClt =C3=A1tv=C3=A1ltani erre a gener=C3=A1ci=C3=B3= ra: =E2=80=9E~a=E2=80=9D~%" =20 -#: guix/scripts/package.scm:788 guix/scripts/package.scm:889 -#, scheme-format -msgid "invalid syntax: ~a~%" -msgstr "=C3=A9rv=C3=A9nytelen szintaxis: ~a~%" - -#: guix/scripts/package.scm:825 -#, scheme-format -msgid "nothing to be done~%" -msgstr "nincs mit tenni~%" - -#: guix/scripts/package.scm:840 -#, scheme-format -msgid "~a package in profile~%" -msgid_plural "~a packages in profile~%" -msgstr[0] "~a csomag a profilban~%" -msgstr[1] "~a csomag a profilban~%" - -#: guix/scripts/package.scm:855 +#: guix/scripts/package.scm:771 #, scheme-format -msgid "Generation ~a\t~a" -msgstr "~a gener=C3=A1ci=C3=B3\t~a" +msgid "would install new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/package.scm:862 +#: guix/scripts/package.scm:773 #, scheme-format -msgid "~a\t(current)~%" -msgstr "~a\t(jelenlegi)~%" +msgid "installing new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/gc.scm:39 +#: guix/scripts/gc.scm:40 msgid "" "Usage: guix gc [OPTION]... PATHS...\n" "Invoke the garbage collector.\n" @@ -581,7 +780,7 @@ msgstr "" "Haszn=C3=A1lat: guix gc [KAPCSOL=C3=93]=E2=80=A6 =C3=9ATVONALAK=E2=80=A6= \n" "A szem=C3=A9tgy=C5=B1jt=C5=91 megh=C3=ADv=C3=A1sa.\n" =20 -#: guix/scripts/gc.scm:41 +#: guix/scripts/gc.scm:42 msgid "" "\n" " -C, --collect-garbage[=3DMIN]\n" @@ -591,7 +790,7 @@ msgstr "" " -C, --collect-garbage[=3DMIN]\n" " legal=C3=A1bb MIN b=C3=A1jt szem=C3=A9t =C3=B6= sszegy=C5=B1jt=C3=A9se" =20 -#: guix/scripts/gc.scm:44 +#: guix/scripts/gc.scm:45 msgid "" "\n" " -d, --delete attempt to delete PATHS" @@ -599,7 +798,13 @@ msgstr "" "\n" " -d, --delete =C3=9ATVONALAK t=C3=B6rl=C3=A9s=C3=A9nek k=C3=AD= s=C3=A9rlete" =20 -#: guix/scripts/gc.scm:46 +#: guix/scripts/gc.scm:47 +msgid "" +"\n" +" --optimize optimize the store by deduplicating identical = files" +msgstr "" + +#: guix/scripts/gc.scm:49 msgid "" "\n" " --list-dead list dead paths" @@ -607,7 +812,7 @@ msgstr "" "\n" " --list-dead halott =C3=BAtvonalak list=C3=A1z=C3=A1sa" =20 -#: guix/scripts/gc.scm:48 +#: guix/scripts/gc.scm:51 msgid "" "\n" " --list-live list live paths" @@ -615,7 +820,7 @@ msgstr "" "\n" " --list-live =C3=A9l=C5=91 =C3=BAtvonalak list=C3=A1z=C3=A1= sa" =20 -#: guix/scripts/gc.scm:51 +#: guix/scripts/gc.scm:54 msgid "" "\n" " --references list the references of PATHS" @@ -623,7 +828,7 @@ msgstr "" "\n" " --references az =C3=9ATVONALAK hivatkoz=C3=A1sainak list=C3= =A1z=C3=A1sa" =20 -#: guix/scripts/gc.scm:53 +#: guix/scripts/gc.scm:56 msgid "" "\n" " -R, --requisites list the requisites of PATHS" @@ -631,7 +836,7 @@ msgstr "" "\n" " -R, --requisites az =C3=9ATVONALAK k=C3=B6vetelm=C3=A9nyeinek l= ist=C3=A1z=C3=A1sa" =20 -#: guix/scripts/gc.scm:55 +#: guix/scripts/gc.scm:58 msgid "" "\n" " --referrers list the referrers of PATHS" @@ -639,12 +844,40 @@ msgstr "" "\n" " --referrers az =C3=9ATVONALAK aj=C3=A1nl=C3=B3inak list=C3= =A1z=C3=A1sa" =20 -#: guix/scripts/gc.scm:84 +#: guix/scripts/gc.scm:61 +msgid "" +"\n" +" --verify[=3DOPTS] verify the integrity of the store; OPTS is a= \n" +" comma-separated combination of 'repair' and\n" +" 'contents'" +msgstr "" + +#: guix/scripts/gc.scm:65 +#, fuzzy +msgid "" +"\n" +" --list-failures list cached build failures" +msgstr "" +"\n" +" --list-dead halott =C3=BAtvonalak list=C3=A1z=C3=A1sa" + +#: guix/scripts/gc.scm:67 +msgid "" +"\n" +" --clear-failures remove PATHS from the set of cached failures" +msgstr "" + +#: guix/scripts/gc.scm:96 #, scheme-format msgid "invalid amount of storage: ~a~%" msgstr "=C3=A9rv=C3=A9nytelen t=C3=A1rol=C3=B3mennyis=C3=A9g: ~a~%" =20 -#: guix/scripts/hash.scm:45 +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "~A: nem odatartoz=C3=B3 argumentum~%" + +#: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" "Return the cryptographic hash of FILE.\n" @@ -658,7 +891,7 @@ msgstr "" "T=C3=A1mogatott form=C3=A1tumok: =E2=80=9Enix-base32=E2=80=9D (alap=C3=A9= rtelmezett), =E2=80=9Ebase32=E2=80=9D =C3=A9s =E2=80=9Ebase16=E2=80=9D\n" "(=E2=80=9Ehex=E2=80=9D =C3=A9s =E2=80=9Ehexadecimal=E2=80=9D is haszn=C3= =A1lhat=C3=B3).\n" =20 -#: guix/scripts/hash.scm:52 +#: guix/scripts/hash.scm:53 msgid "" "\n" " -r, --recursive compute the hash on FILE recursively" @@ -666,39 +899,126 @@ msgstr "" "\n" " -r, --recursive a FILE hash-=C3=A9nek rekurz=C3=ADv sz=C3=A1m=C3= =ADt=C3=A1sa" =20 -#: guix/scripts/hash.scm:103 +#: guix/scripts/hash.scm:104 #, scheme-format msgid "unrecognized option: ~a~%" msgstr "ismeretlen kapcsol=C3=B3: ~a~%" =20 -#: guix/scripts/hash.scm:134 guix/ui.scm:252 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "nem megfelel=C5=91 sz=C3=A1m=C3=BA argumentum~%" =20 -#: guix/scripts/pull.scm:72 +#: guix/scripts/import.scm:85 +#, fuzzy msgid "" -"Usage: guix pull [OPTION]...\n" -"Download and deploy the latest version of Guix.\n" +"Usage: guix import IMPORTER ARGS ...\n" +"Run IMPORTER with ARGS.\n" msgstr "" -"Haszn=C3=A1lat: guix pull [KAPCSOL=C3=93]=E2=80=A6\n" -"A Guix leg=C3=BAjabb verzi=C3=B3j=C3=A1nak let=C3=B6lt=C3=A9se =C3=A9s = telep=C3=ADt=C3=A9se.\n" +"Haszn=C3=A1lat: guix PARANCS ARGUMENTUMOK=E2=80=A6\n" +"A PARANCS futtat=C3=A1sa ARGUMENTUMOKKAL.\n" =20 -#: guix/scripts/pull.scm:76 -msgid "" -"\n" -" --url=3DURL download the Guix tarball from URL" +#: guix/scripts/import.scm:88 +#, fuzzy +msgid "IMPORTER must be one of the importers listed below:\n" msgstr "" -"\n" -" --url=3DURL a Guix tarball let=C3=B6lt=C3=A9se az URL-r=C5= =91l" +"A PARANCSNAK a lenti list=C3=A1ban l=C3=A9v=C5=91 alparancsok egyik=C3=A9= nek kell lennie:\n" =20 -#: guix/scripts/pull.scm:78 -msgid "" +#: guix/scripts/import.scm:102 +#, fuzzy, scheme-format +msgid "guix import: missing importer name~%" +msgstr "guix: hi=C3=A1nyz=C3=B3 parancsn=C3=A9v~%" + +#: guix/scripts/import.scm:113 +#, scheme-format +msgid "guix import: invalid importer~%" +msgstr "" + +#: guix/scripts/import/cran.scm:42 +msgid "" +"Usage: guix import cran PACKAGE-NAME\n" +"Import and convert the CRAN package for PACKAGE-NAME.\n" +msgstr "" + +#: guix/scripts/import/cran.scm:44 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/cran.scm:94 +#, fuzzy, scheme-format +msgid "failed to download description for package '~a'~%" +msgstr "a(z) =E2=80=9E~a=E2=80=9D oper=C3=A1ci=C3=B3s rendszer f=C3=A1jl= bet=C3=B6lt=C3=A9se sikertelen: ~s~%" + +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 +#, fuzzy, scheme-format +msgid "too few arguments~%" +msgstr "nem megfelel=C5=91 sz=C3=A1m=C3=BA argumentum~%" + +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 +#, fuzzy, scheme-format +msgid "too many arguments~%" +msgstr "hib=C3=A1s argumentumok" + +#: guix/scripts/import/elpa.scm:41 +msgid "" +"Usage: guix import elpa PACKAGE-NAME\n" +"Import the latest package named PACKAGE-NAME from an ELPA repository.\n= " +msgstr "" + +#: guix/scripts/import/elpa.scm:43 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/elpa.scm:45 +#, fuzzy +msgid "" +"\n" +" -h, --help display this help and exit" +msgstr "" +"\n" +" -h, --help ezen s=C3=BAg=C3=B3 megjelen=C3=ADt=C3=A9se =C3= =A9s kil=C3=A9p=C3=A9s" + +#: guix/scripts/import/elpa.scm:47 +#, fuzzy +msgid "" +"\n" +" -V, --version display version information and exit" +msgstr "" +"\n" +" -V, --version verzi=C3=B3inform=C3=A1ci=C3=B3k megjelen=C3=AD= t=C3=A9se =C3=A9s kil=C3=A9p=C3=A9s" + +#: guix/scripts/import/elpa.scm:92 +#, fuzzy, scheme-format +msgid "failed to download package '~a'~%" +msgstr "a ter=C3=BCleti be=C3=A1ll=C3=ADt=C3=A1s telep=C3=ADt=C3=A9se si= kertelen: ~a~%" + +#: guix/scripts/pull.scm:74 +msgid "" +"Usage: guix pull [OPTION]...\n" +"Download and deploy the latest version of Guix.\n" +msgstr "" +"Haszn=C3=A1lat: guix pull [KAPCSOL=C3=93]=E2=80=A6\n" +"A Guix leg=C3=BAjabb verzi=C3=B3j=C3=A1nak let=C3=B6lt=C3=A9se =C3=A9s = telep=C3=ADt=C3=A9se.\n" + +#: guix/scripts/pull.scm:78 +msgid "" +"\n" +" --url=3DURL download the Guix tarball from URL" +msgstr "" +"\n" +" --url=3DURL a Guix tarball let=C3=B6lt=C3=A9se az URL-r=C5= =91l" + +#: guix/scripts/pull.scm:80 +msgid "" "\n" " --bootstrap use the bootstrap Guile to build the new Guix" msgstr "" @@ -706,132 +1026,139 @@ msgstr "" " --bootstrap a Guile rendszert=C3=B6lt=C5=91 haszn=C3=A1lat= a az =C3=BAj Guix\n" " =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1s=C3=A1hoz" =20 -#: guix/scripts/pull.scm:132 +#: guix/scripts/pull.scm:134 msgid "tarball did not produce a single source directory" msgstr "a tarball nem hozott l=C3=A9tre egyed=C3=BCli forr=C3=A1sk=C3=B6= nyvt=C3=A1rat" =20 -#: guix/scripts/pull.scm:150 +#: guix/scripts/pull.scm:152 #, scheme-format msgid "unpacking '~a'...~%" msgstr "kibont=C3=A1s: =E2=80=9E~a=E2=80=9D...~%" =20 -#: guix/scripts/pull.scm:159 +#: guix/scripts/pull.scm:161 msgid "failed to unpack source code" msgstr "nem siker=C3=BClt a forr=C3=A1sk=C3=B3d kibont=C3=A1sa" =20 -#: guix/scripts/pull.scm:200 +#: guix/scripts/pull.scm:204 +msgid "Guix already up to date\n" +msgstr "A Guix m=C3=A1r naprak=C3=A9sz\n" + +#: guix/scripts/pull.scm:209 #, scheme-format msgid "updated ~a successfully deployed under `~a'~%" msgstr "a(z) ~a friss=C3=ADt=C3=A9se sikeresen telep=C3=ADtve ez al=C3=A1= : =E2=80=9E~a=E2=80=9D~%" =20 -#: guix/scripts/pull.scm:203 +#: guix/scripts/pull.scm:212 #, scheme-format msgid "failed to update Guix, check the build log~%" msgstr "a Guix friss=C3=ADt=C3=A9se sikertelen, n=C3=A9zze meg az =C3=B6= ssze=C3=A1ll=C3=ADt=C3=A1si napl=C3=B3t~%" =20 -#: guix/scripts/pull.scm:205 -msgid "Guix already up to date\n" -msgstr "A Guix m=C3=A1r naprak=C3=A9sz\n" - -#: guix/scripts/pull.scm:215 +#: guix/scripts/pull.scm:221 #, scheme-format msgid "~A: unexpected argument~%" msgstr "~A: nem v=C3=A1rt argumentum~%" =20 -#: guix/scripts/pull.scm:224 +#: guix/scripts/pull.scm:230 msgid "failed to download up-to-date source, exiting\n" msgstr "a legfrissebb forr=C3=A1s let=C3=B6lt=C3=A9se sikertelen, kil=C3= =A9p=C3=A9s\n" =20 -#: guix/scripts/substitute-binary.scm:80 +#: guix/scripts/substitute.scm:103 #, scheme-format msgid "authentication and authorization of substitutes disabled!~%" msgstr "a helyettes=C3=ADt=C5=91k hiteles=C3=ADt=C3=A9se =C3=A9s felhata= lmaz=C3=A1sa letiltva!~%" =20 -#: guix/scripts/substitute-binary.scm:163 +#: guix/scripts/substitute.scm:179 #, scheme-format msgid "download from '~a' failed: ~a, ~s~%" msgstr "a let=C3=B6lt=C3=A9s sikertelen innen: =E2=80=9E~a=E2=80=9D: ~a,= ~s~%" =20 -#: guix/scripts/substitute-binary.scm:178 -#, scheme-format -msgid "while fetching ~a: server is unresponsive~%" +#: guix/scripts/substitute.scm:191 +#, fuzzy, scheme-format +msgid "while fetching ~a: server is somewhat slow~%" msgstr "~a lek=C3=A9r=C3=A9se k=C3=B6zben: a kiszolg=C3=A1l=C3=B3 nem v=C3= =A1laszol~%" =20 -#: guix/scripts/substitute-binary.scm:180 +#: guix/scripts/substitute.scm:193 #, scheme-format msgid "try `--no-substitutes' if the problem persists~%" -msgstr "pr=C3=B3b=C3=A1lja a =E2=80=9E--no-substitutes=E2=80=9D kapcsol=C3= =B3t, ha a probl=C3=A9ma tov=C3=A1bbra is fenn=C3=A1ll~%" +msgstr "" +"pr=C3=B3b=C3=A1lja a =E2=80=9E--no-substitutes=E2=80=9D kapcsol=C3=B3t,= ha a probl=C3=A9ma tov=C3=A1bbra is fenn=C3=A1ll~%" =20 -#: guix/scripts/substitute-binary.scm:244 -#, scheme-format -msgid "signature version must be a number: ~a~%" +#: guix/scripts/substitute.scm:266 +#, fuzzy, scheme-format +msgid "signature version must be a number: ~s~%" msgstr "az al=C3=A1=C3=ADr=C3=A1s verzi=C3=B3j=C3=A1nak sz=C3=A1mnak kel= l lennie: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:248 +#: guix/scripts/substitute.scm:270 #, scheme-format msgid "unsupported signature version: ~a~%" msgstr "nem t=C3=A1mogatott al=C3=A1=C3=ADr=C3=A1s verzi=C3=B3: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:256 +#: guix/scripts/substitute.scm:278 #, scheme-format msgid "signature is not a valid s-expression: ~s~%" msgstr "az al=C3=A1=C3=ADr=C3=A1s nem =C3=A9rv=C3=A9nyes s-kifejez=C3=A9= s: ~s~%" =20 -#: guix/scripts/substitute-binary.scm:260 +#: guix/scripts/substitute.scm:282 #, scheme-format msgid "invalid format of the signature field: ~a~%" msgstr "az al=C3=A1=C3=ADr=C3=A1smez=C5=91 form=C3=A1tuma =C3=A9rv=C3=A9= nytelen: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:295 +#: guix/scripts/substitute.scm:317 #, scheme-format msgid "invalid signature for '~a'~%" msgstr "=C3=A9rv=C3=A9nytelen al=C3=A1=C3=ADr=C3=A1s ehhez: =E2=80=9E~a=E2= =80=9D~%" =20 -#: guix/scripts/substitute-binary.scm:297 +#: guix/scripts/substitute.scm:319 #, scheme-format msgid "hash mismatch for '~a'~%" msgstr "hash elt=C3=A9r=C3=A9s enn=C3=A9l: =E2=80=9E~a=E2=80=9D~%" =20 -#: guix/scripts/substitute-binary.scm:299 +#: guix/scripts/substitute.scm:321 #, scheme-format msgid "'~a' is signed with an unauthorized key~%" msgstr "a(z) =E2=80=9E~a=E2=80=9D egy jogosulatlan kulccsal van al=C3=A1= =C3=ADrva~%" =20 -#: guix/scripts/substitute-binary.scm:301 +#: guix/scripts/substitute.scm:323 #, scheme-format msgid "signature on '~a' is corrupt~%" msgstr "a(z) =E2=80=9E~a=E2=80=9D al=C3=A1=C3=ADr=C3=A1sa s=C3=A9r=C3=BC= lt~%" =20 -#: guix/scripts/substitute-binary.scm:338 +#: guix/scripts/substitute.scm:361 #, scheme-format msgid "substitute at '~a' lacks a signature~%" msgstr "a helyettes=C3=ADt=C5=91 enn=C3=A9l: =E2=80=9E~a=E2=80=9D hi=C3=A1= nyol egy al=C3=A1=C3=ADr=C3=A1st~%" =20 -#: guix/scripts/substitute-binary.scm:526 +#: guix/scripts/substitute.scm:537 #, scheme-format -msgid "Downloading, please wait...~%" -msgstr "Let=C3=B6lt=C3=A9s, k=C3=A9rem v=C3=A1rjon=E2=80=A6~%" +msgid "updating list of substitutes from '~a'... ~5,1f%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:528 +#: guix/scripts/substitute.scm:585 #, scheme-format -msgid "(Please consider upgrading Guile to get proper progress report.)~= %" -msgstr "(Fontolja meg a Guile friss=C3=ADt=C3=A9s=C3=A9t a megfelel=C5=91= =C3=A1llapotjelent=C3=A9s beszerz=C3=A9s=C3=A9hez.)~%" +msgid "~s: unsupported server URI scheme~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:541 +#: guix/scripts/substitute.scm:596 +#, scheme-format +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" + +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "g=C3=A9pn=C3=A9v keres=C3=A9si hiba: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:550 +#: guix/scripts/substitute.scm:748 +#, fuzzy msgid "" -"Usage: guix substitute-binary [OPTION]...\n" +"Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" "Haszn=C3=A1lat: guix substitute-binary [KAPCSOL=C3=93]=E2=80=A6\n" "Bels=C5=91 eszk=C3=B6z egy el=C5=91re =C3=B6ssze=C3=A1ll=C3=ADtott bin=C3= =A1risnak egy helyi =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1ssal\n" "val=C3=B3 helyettes=C3=ADt=C3=A9s=C3=A9hez.\n" =20 -#: guix/scripts/substitute-binary.scm:552 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" @@ -841,7 +1168,7 @@ msgstr "" " --query a helyettes=C3=ADt=C5=91k el=C3=A9rhet=C5=91s=C3= =A9g=C3=A9nek jelent=C3=A9se a\n" " szabv=C3=A1nyos bemeneten =C3=A1tadott t=C3=A1= rol=C3=B3 f=C3=A1jlnevekhez" =20 -#: guix/scripts/substitute-binary.scm:555 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -850,26 +1177,19 @@ msgid "" msgstr "" "\n" " --substitute T=C3=81ROL=C3=93-F=C3=81JL C=C3=89L\n" -" T=C3=81ROL=C3=93-F=C3=81JL let=C3=B6lt=C3=A9se= =C3=A9s elt=C3=A1rol=C3=A1sa Nar form=C3=A1tumban\n" +" T=C3=81ROL=C3=93-F=C3=81JL let=C3=B6lt=C3=A9se= =C3=A9s elt=C3=A1rol=C3=A1sa Nar " +"form=C3=A1tumban\n" " a C=C3=89L f=C3=A1jlban" =20 -#: guix/scripts/substitute-binary.scm:600 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" msgstr "" "Az ACL el=C5=91k=C3=A9sz=C3=ADtetlennek t=C5=B1nik az arch=C3=ADvum imp= ortokhoz, a helyettes=C3=ADt=C5=91k\n" "el=C3=A9rhetetlenek lehetnek\n" =20 -#: guix/scripts/substitute-binary.scm:634 -#, scheme-format -msgid "these substitute URLs will not be used:~{ ~a~}~%" -msgstr "ezek a helyettes=C3=ADt=C5=91 URL-ek nem lesznek haszn=C3=A1lva:= ~{ ~a~}~%" - -#: guix/scripts/substitute-binary.scm:660 -#, scheme-format -msgid "failed to look up host '~a' (~a), substituter disabled~%" -msgstr "a(z) =E2=80=9E~a=E2=80=9D (~a) g=C3=A9p keres=C3=A9se sikertelen= , a helyettes=C3=ADt=C5=91 letiltva~%" - -#: guix/scripts/substitute-binary.scm:767 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "~a: ismeretlen kapcsol=C3=B3k~%" @@ -894,7 +1214,7 @@ msgstr "hiba: jogosulatlan nyilv=C3=A1nos kulcs: ~a~= %" msgid "error: corrupt signature data: ~a~%" msgstr "hiba: s=C3=A9r=C3=BClt al=C3=A1=C3=ADr=C3=A1s adatok: ~a~%" =20 -#: guix/scripts/authenticate.scm:126 +#: guix/scripts/authenticate.scm:120 msgid "" "Usage: guix authenticate OPTION...\n" "Sign or verify the signature on the given file. This tool is meant to\= n" @@ -904,228 +1224,886 @@ msgstr "" "Al=C3=A1=C3=ADr=C3=A1s vagy a megadott f=C3=A1jl al=C3=A1=C3=ADr=C3=A1s= =C3=A1nak ellen=C5=91rz=C3=A9se. Az eszk=C3=B6z c=C3=A9lja, hogy\n" "a =E2=80=9Eguix-daemon=E2=80=9D bels=C5=91leg felhaszn=C3=A1lja.\n" =20 -#: guix/scripts/authenticate.scm:132 +#: guix/scripts/authenticate.scm:126 msgid "wrong arguments" msgstr "hib=C3=A1s argumentumok" =20 -#: guix/scripts/system.scm:74 +#: guix/scripts/system.scm:110 #, scheme-format -msgid "failed to open operating system file '~a': ~a~%" -msgstr "a(z) =E2=80=9E~a=E2=80=9D oper=C3=A1ci=C3=B3s rendszer f=C3=A1jl= megnyit=C3=A1sa sikertelen: ~a~%" +msgid "failed to register '~a' under '~a'~%" +msgstr "a(z) =E2=80=9E~a=E2=80=9D regisztr=C3=A1l=C3=A1sa sikertelen ez = al=C3=A1: =E2=80=9E~a=E2=80=9D~%" =20 -#: guix/scripts/system.scm:78 guix/ui.scm:258 +#: guix/scripts/system.scm:142 #, scheme-format -msgid "~a: ~a~%" +msgid "failed to install GRUB on device '~a'~%" +msgstr "a GRUB telep=C3=ADt=C3=A9se sikertelen a(z) =E2=80=9E~a=E2=80=9D= eszk=C3=B6zre~%" + +#: guix/scripts/system.scm:160 +#, scheme-format +msgid "initializing the current root file system~%" +msgstr "a jelenlegi gy=C3=B6k=C3=A9r f=C3=A1jlrendszer el=C5=91k=C3=A9sz= =C3=ADt=C3=A9se~%" + +#: guix/scripts/system.scm:174 +#, scheme-format +msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" +msgstr "" + +#: guix/scripts/system.scm:219 +#, scheme-format +msgid "while talking to shepherd: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:265 +#, fuzzy, scheme-format +msgid "unloading service '~a'...~%" +msgstr "kibont=C3=A1s: =E2=80=9E~a=E2=80=9D...~%" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" + +#: guix/scripts/system.scm:294 +#, scheme-format +msgid "activating system...~%" +msgstr "a rendszer aktiv=C3=A1l=C3=A1sa=E2=80=A6~%" + +#: guix/scripts/system.scm:380 +msgid "the DAG of services" +msgstr "" + +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" +msgstr "" + +#: guix/scripts/system.scm:414 +#, fuzzy, scheme-format +msgid " file name: ~a~%" +msgstr "=C3=A9rv=C3=A9nytelen sz=C3=A1m: ~a~%" + +#: guix/scripts/system.scm:415 +#, scheme-format +msgid " canonical file name: ~a~%" +msgstr "" + +#. TRANSLATORS: Please preserve the two-space indentation. +#: guix/scripts/system.scm:417 +#, fuzzy, scheme-format +msgid " label: ~a~%" msgstr "~a: ~a~%" =20 -#: guix/scripts/system.scm:81 +#: guix/scripts/system.scm:418 #, scheme-format -msgid "failed to load operating system file '~a': ~s~%" -msgstr "a(z) =E2=80=9E~a=E2=80=9D oper=C3=A1ci=C3=B3s rendszer f=C3=A1jl= bet=C3=B6lt=C3=A9se sikertelen: ~s~%" +msgid " root device: ~a~%" +msgstr "" =20 -#: guix/scripts/system.scm:116 +#: guix/scripts/system.scm:419 #, scheme-format -msgid "failed to register '~a' under '~a'~%" -msgstr "a(z) =E2=80=9E~a=E2=80=9D regisztr=C3=A1l=C3=A1sa sikertelen ez = al=C3=A1: =E2=80=9E~a=E2=80=9D~%" +msgid " kernel: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:527 +#, scheme-format +msgid "initializing operating system under '~a'...~%" +msgstr "az oper=C3=A1ci=C3=B3s rendszer el=C5=91k=C3=A9sz=C3=ADt=C3=A9se= =E2=80=9E~a=E2=80=9D al=C3=A1=E2=80=A6~%" + +#: guix/scripts/system.scm:566 +#, fuzzy +msgid "" +"Usage: guix system [OPTION] ACTION [FILE]\n" +"Build the operating system declared in FILE according to ACTION.\n" +msgstr "" +"Haszn=C3=A1lat: guix system [KAPCSOL=C3=93] M=C5=B0VELET F=C3=81JL\n" +"A F=C3=81JLBAN meghat=C3=A1rozott oper=C3=A1ci=C3=B3s rendszer =C3=B6ss= ze=C3=A1ll=C3=ADt=C3=A1sa a M=C5=B0VELET szerint.\n" + +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 +msgid "The valid values for ACTION are:\n" +msgstr "A M=C5=B0VELET =C3=A9rv=C3=A9nyes =C3=A9rt=C3=A9kei a k=C3=B6vet= kez=C5=91k:\n" + +#: guix/scripts/system.scm:571 +#, fuzzy +msgid " reconfigure switch to a new operating system configuratio= n\n" +msgstr " - =E2=80=9Ereconfigure=E2=80=9D, =C3=A1tv=C3=A1lt=C3=A1s egy =C3= =BAj oper=C3=A1ci=C3=B3s rendszer be=C3=A1ll=C3=ADt=C3=A1sra\n" + +#: guix/scripts/system.scm:573 +msgid " list-generations list the system generations\n" +msgstr "" + +#: guix/scripts/system.scm:575 +#, fuzzy +msgid "" +" build build the operating system without installing anyth= ing\n" +msgstr "" +" - =E2=80=9Ebuild=E2=80=9D, az oper=C3=A1ci=C3=B3s rendszer =C3=B6ssze= =C3=A1ll=C3=ADt=C3=A1sa b=C3=A1rmi telep=C3=ADt=C3=A9se n=C3=A9lk=C3=BCl\= n" + +#: guix/scripts/system.scm:577 +#, fuzzy +msgid " container build a container that shares the host's stor= e\n" +msgstr "" +" - =E2=80=9Evm=E2=80=9D, egy virtu=C3=A1lis g=C3=A9p lemezk=C3=A9p =C3= =B6ssze=C3=A1ll=C3=ADt=C3=A1sa, amely megosztja a gazda\n" +" t=C3=A1rol=C3=B3j=C3=A1t\n" + +#: guix/scripts/system.scm:579 +#, fuzzy +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" +msgstr "" +" - =E2=80=9Evm=E2=80=9D, egy virtu=C3=A1lis g=C3=A9p lemezk=C3=A9p =C3= =B6ssze=C3=A1ll=C3=ADt=C3=A1sa, amely megosztja a gazda\n" +" t=C3=A1rol=C3=B3j=C3=A1t\n" + +#: guix/scripts/system.scm:581 +#, fuzzy +msgid " vm-image build a freestanding virtual machine image\n" +msgstr "" +" - =E2=80=9Evm-image=E2=80=9D, egy szabadon =C3=A1ll=C3=B3 virtu=C3=A1= lis g=C3=A9p lemezk=C3=A9p =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa\n" + +#: guix/scripts/system.scm:583 +#, fuzzy +msgid " disk-image build a disk image, suitable for a USB stick\= n" +msgstr "" +" - =E2=80=9Edisk-image=E2=80=9D, egy USB-meghajt=C3=B3hoz megfelel=C5=91= lemezk=C3=A9p =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa\n" + +#: guix/scripts/system.scm:585 +#, fuzzy +msgid " init initialize a root file system to run GNU\n" +msgstr " - =E2=80=9Einit=E2=80=9D, a gy=C3=B6k=C3=A9r f=C3=A1jlrendszer= el=C5=91k=C3=A9sz=C3=ADt=C3=A9se a GNU futtat=C3=A1s=C3=A1hoz.\n" + +#: guix/scripts/system.scm:587 +msgid " extension-graph emit the service extension graph in Dot forma= t\n" +msgstr "" + +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" +msgstr "" + +#: guix/scripts/system.scm:593 +#, fuzzy +msgid "" +"\n" +" -d, --derivation return the derivation of the given system" +msgstr "" +"\n" +" -d, --derivations a megadott csomagok sz=C3=A1rmaz=C3=A9k-=C3=BA= tvonal=C3=A1nak " +"visszaad=C3=A1sa" + +#: guix/scripts/system.scm:595 +#, fuzzy +msgid "" +"\n" +" --on-error=3DSTRATEGY\n" +" apply STRATEGY when an error occurs while read= ing " +"FILE" +msgstr "" +"\n" +" --with-source=3DFORR=C3=81S\n" +" FORR=C3=81S haszn=C3=A1lata a megfelel=C5=91 c= somag " +"=C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sakor" + +#: guix/scripts/system.scm:598 +msgid "" +"\n" +" --image-size=3DSIZE for 'vm-image', produce an image of SIZE" +msgstr "" +"\n" +" --image-size=3DM=C3=89RET a =E2=80=9Evm-image=E2=80=9D-hez, adot= t M=C3=89RET=C5=B0 lemezk=C3=A9p el=C5=91=C3=A1ll=C3=ADt=C3=A1sa" + +#: guix/scripts/system.scm:600 +msgid "" +"\n" +" --no-grub for 'init', do not install GRUB" +msgstr "" +"\n" +" --no-grub az =E2=80=9Einit=E2=80=9D-hez, ne telep=C3=ADt= se a GRUB rendszerbet=C3=B6lt=C5=91t" + +#: guix/scripts/system.scm:602 +msgid "" +"\n" +" --share=3DSPEC for 'vm', share host file system according t= o SPEC" +msgstr "" + +#: guix/scripts/system.scm:604 +msgid "" +"\n" +" --expose=3DSPEC for 'vm', expose host file system according = to SPEC" +msgstr "" + +#: guix/scripts/system.scm:606 +msgid "" +"\n" +" --full-boot for 'vm', make a full boot sequence" +msgstr "" +"\n" +" --full-boot =E2=80=9Evm=E2=80=9D eset=C3=A9n, teljes ind=C3= =ADt=C3=A1si sorozat k=C3=A9sz=C3=ADt=C3=A9se" + +#: guix/scripts/system.scm:690 +#, scheme-format +msgid "no configuration file specified~%" +msgstr "nincs be=C3=A1ll=C3=ADt=C3=B3f=C3=A1jl megadva~%" + +#: guix/scripts/system.scm:753 +#, scheme-format +msgid "~a: unknown action~%" +msgstr "~a: ismeretlen m=C5=B1velet~%" + +#: guix/scripts/system.scm:768 +#, scheme-format +msgid "wrong number of arguments for action '~a'~%" +msgstr "nem megfelel=C5=91 sz=C3=A1m=C3=BA argumentum a(z) =E2=80=9E~a=E2= =80=9D m=C5=B1velethez~%" + +#: guix/scripts/system.scm:773 +#, fuzzy, scheme-format +msgid "guix system: missing command name~%" +msgstr "guix: hi=C3=A1nyz=C3=B3 parancsn=C3=A9v~%" + +#: guix/scripts/system.scm:775 +#, fuzzy, scheme-format +msgid "Try 'guix system --help' for more information.~%" +msgstr "Tov=C3=A1bbi inform=C3=A1ci=C3=B3k=C3=A9rt pr=C3=B3b=C3=A1lja a = =E2=80=9Eguix --help=E2=80=9D parancsot.~%" + +#: guix/scripts/lint.scm:126 +#, scheme-format +msgid "Available checkers:~%" +msgstr "El=C3=A9rhet=C5=91 ellen=C5=91rz=C5=91k:~%" + +#: guix/scripts/lint.scm:146 +msgid "description should not be empty" +msgstr "" + +#: guix/scripts/lint.scm:156 +msgid "Texinfo markup in description is invalid" +msgstr "" + +#: guix/scripts/lint.scm:164 +msgid "description should start with an upper-case letter or digit" +msgstr "" + +#: guix/scripts/lint.scm:180 +#, scheme-format +msgid "" +"sentences in description should be followed ~\n" +"by two spaces; possible infraction~p at ~{~a~^, ~}" +msgstr "" + +#: guix/scripts/lint.scm:204 +msgid "pkg-config should probably be a native input" +msgstr "" + +#: guix/scripts/lint.scm:219 +msgid "synopsis should not be empty" +msgstr "" + +#: guix/scripts/lint.scm:227 +msgid "no period allowed at the end of the synopsis" +msgstr "" + +#: guix/scripts/lint.scm:239 +msgid "no article allowed at the beginning of the synopsis" +msgstr "" + +#: guix/scripts/lint.scm:246 +msgid "synopsis should be less than 80 characters long" +msgstr "" + +#: guix/scripts/lint.scm:252 +msgid "synopsis should start with an upper-case letter or digit" +msgstr "" + +#: guix/scripts/lint.scm:259 +msgid "synopsis should not start with the package name" +msgstr "" + +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 +#, scheme-format +msgid "URI ~a not reachable: ~a (~s)" +msgstr "" + +#: guix/scripts/lint.scm:372 +#, fuzzy, scheme-format +msgid "URI ~a domain not found: ~a" +msgstr "guix: ~a: a parancs nem tal=C3=A1lhat=C3=B3~%" + +#: guix/scripts/lint.scm:380 +#, scheme-format +msgid "URI ~a unreachable: ~a" +msgstr "" + +#: guix/scripts/lint.scm:406 +#, fuzzy +msgid "invalid value for home page" +msgstr "A M=C5=B0VELET =C3=A9rv=C3=A9nyes =C3=A9rt=C3=A9kei a k=C3=B6vet= kez=C5=91k:\n" + +#: guix/scripts/lint.scm:409 +#, fuzzy, scheme-format +msgid "invalid home page URL: ~s" +msgstr "" +"\n" +"~a honlap: <~a>" + +#: guix/scripts/lint.scm:429 +msgid "file names of patches should start with the package name" +msgstr "" + +#: guix/scripts/lint.scm:466 +#, scheme-format +msgid "~a: ~a: proposed synopsis: ~s~%" +msgstr "" + +#: guix/scripts/lint.scm:478 +#, scheme-format +msgid "~a: ~a: proposed description:~% \"~a\"~%" +msgstr "" + +#: guix/scripts/lint.scm:515 +msgid "all the source URIs are unreachable:" +msgstr "" + +#: guix/scripts/lint.scm:538 +msgid "the source file name should contain the package name" +msgstr "" + +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~a" +msgstr "nem siker=C3=BClt a GC gy=C3=B6k=C3=A9r l=C3=A9trehoz=C3=A1sa: =E2= =80=9E~a=E2=80=9D: ~a~%" + +#: guix/scripts/lint.scm:557 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~s~%" +msgstr "a(z) ~s kifejez=C3=A9s olvas=C3=A1sa sikertelen: ~s~%" + +#: guix/scripts/lint.scm:567 +#, fuzzy +msgid "invalid license field" +msgstr "=C3=A9rv=C3=A9nytelen szimbolikus link jelsorok" + +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "a ter=C3=BCleti be=C3=A1ll=C3=ADt=C3=A1s telep=C3=ADt=C3=A9se si= kertelen: ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 +#, scheme-format +msgid "tabulation on line ~a, column ~a" +msgstr "" + +#: guix/scripts/lint.scm:647 +#, scheme-format +msgid "trailing white space on line ~a" +msgstr "" + +#: guix/scripts/lint.scm:657 +#, scheme-format +msgid "line ~a is way too long (~a characters)" +msgstr "" + +#: guix/scripts/lint.scm:668 +#, scheme-format +msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" +msgstr "" + +#: guix/scripts/lint.scm:723 +msgid "Validate package descriptions" +msgstr "Csomagle=C3=ADr=C3=A1sok ellen=C5=91rz=C3=A9se" + +#: guix/scripts/lint.scm:727 +#, fuzzy +msgid "Validate synopsis & description of GNU packages" +msgstr "Csomagle=C3=ADr=C3=A1sok ellen=C5=91rz=C3=A9se" + +#: guix/scripts/lint.scm:731 +msgid "Identify inputs that should be native inputs" +msgstr "Bemenetek azonos=C3=ADt=C3=A1sa, amelyek nat=C3=ADv bemenetek le= hetnek" + +#: guix/scripts/lint.scm:735 +#, fuzzy +msgid "Validate file names and availability of patches" +msgstr "Jav=C3=ADt=C3=B3csomagok f=C3=A1jlneveinek ellen=C5=91rz=C3=A9se= " + +#: guix/scripts/lint.scm:739 +#, fuzzy +msgid "Validate home-page URLs" +msgstr "Csomag=C3=A1ttekint=C3=A9s ellen=C5=91rz=C3=A9se" + +#. TRANSLATORS: is the name of a data type and must not be +#. translated. +#: guix/scripts/lint.scm:745 +msgid "Make sure the 'license' field is a or a list thereof" +msgstr "" + +#: guix/scripts/lint.scm:750 +msgid "Validate source URLs" +msgstr "" + +#: guix/scripts/lint.scm:754 +#, fuzzy +msgid "Validate file names of sources" +msgstr "Jav=C3=ADt=C3=B3csomagok f=C3=A1jlneveinek ellen=C5=91rz=C3=A9se= " + +#: guix/scripts/lint.scm:758 +msgid "Report failure to compile a package to a derivation" +msgstr "" + +#: guix/scripts/lint.scm:762 +#, fuzzy +msgid "Validate package synopses" +msgstr "Csomag=C3=A1ttekint=C3=A9s ellen=C5=91rz=C3=A9se" + +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 +msgid "Look for formatting issues in the source" +msgstr "" + +#: guix/scripts/lint.scm:796 +#, fuzzy +msgid "" +"Usage: guix lint [OPTION]... [PACKAGE]...\n" +"Run a set of checkers on the specified package; if none is specified,\n= " +"run the checkers on all packages.\n" +msgstr "" +"Haszn=C3=A1lat: guix lint [KAPCSOL=C3=93]=E2=80=A6 [CSOMAG]=E2=80=A6\n" +"Sz=C3=A1mos ellen=C5=91rz=C5=91 futtat=C3=A1sa a megadott csomagon. Ha = semmi sincs megadva, az " +"ellen=C5=91rz=C5=91k futtat=C3=A1sa minden csomagon.\n" + +#: guix/scripts/lint.scm:799 +#, fuzzy +msgid "" +"\n" +" -c, --checkers=3DCHECKER1,CHECKER2...\n" +" only run the specified checkers" +msgstr "" +"\n" +" -c, --checkers=3DELLEN=C5=90RZ=C5=901,ELLEN=C5=90RZ=C5=902=E2=80=A6\n= " +" csak a megadott ellen=C5=91rz=C5=91k futtat=C3= =A1sa" + +#: guix/scripts/lint.scm:804 +msgid "" +"\n" +" -l, --list-checkers display the list of available lint checkers" +msgstr "" +"\n" +" -l, --list-checkers az el=C3=A9rhet=C5=91 lint ellen=C5=91rz=C5=91= k list=C3=A1j=C3=A1nak megjelen=C3=ADt=C3=A9se" + +#: guix/scripts/lint.scm:824 +#, fuzzy, scheme-format +msgid "~a: invalid checker~%" +msgstr "~a: =C3=A9rv=C3=A9nytelen ellen=C5=91rz=C5=91" + +#: guix/scripts/publish.scm:52 +#, scheme-format +msgid "" +"Usage: guix publish [OPTION]...\n" +"Publish ~a over HTTP.\n" +msgstr "" + +#: guix/scripts/publish.scm:54 +msgid "" +"\n" +" -p, --port=3DPORT listen on PORT" +msgstr "" + +#: guix/scripts/publish.scm:56 +#, fuzzy +msgid "" +"\n" +" --listen=3DHOST listen on the network interface for HOST" +msgstr "" +"\n" +" --references az =C3=9ATVONALAK hivatkoz=C3=A1sainak list=C3= =A1z=C3=A1sa" + +#: guix/scripts/publish.scm:58 +msgid "" +"\n" +" -u, --user=3DUSER change privileges to USER as soon as possibl= e" +msgstr "" + +#: guix/scripts/publish.scm:60 +msgid "" +"\n" +" -r, --repl[=3DPORT] spawn REPL server on PORT" +msgstr "" + +#: guix/scripts/publish.scm:76 +#, fuzzy, scheme-format +msgid "lookup of host '~a' failed: ~a~%" +msgstr "a let=C3=B6lt=C3=A9s sikertelen innen: =E2=80=9E~a=E2=80=9D: ~a,= ~s~%" + +#: guix/scripts/publish.scm:100 +#, scheme-format +msgid "lookup of host '~a' returned nothing" +msgstr "" + +#: guix/scripts/publish.scm:343 +#, scheme-format +msgid "user '~a' not found: ~a~%" +msgstr "" + +#: guix/scripts/publish.scm:378 +#, scheme-format +msgid "server running as root; consider using the '--user' option!~%" +msgstr "" + +#: guix/scripts/publish.scm:380 +#, scheme-format +msgid "publishing ~a on ~a, port ~d~%" +msgstr "" + +#: guix/scripts/edit.scm:41 +msgid "" +"Usage: guix edit PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" +msgstr "" + +#: guix/scripts/edit.scm:62 +#, scheme-format +msgid "file '~a' not found in search path ~s~%" +msgstr "" + +#: guix/scripts/edit.scm:83 +#, scheme-format +msgid "source location of package '~a' is unknown~%" +msgstr "" + +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "sikertelen csatlakoz=C3=A1s ehhez: =E2=80=9E~a=E2=80=9D: ~a~%" + +#: guix/scripts/size.scm:75 +#, scheme-format +msgid "no available substitute information for '~a'~%" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "store item" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "total" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "self" +msgstr "" + +#. TRANSLATORS: This is the title of a graph, meaning that the graph +#. represents a profile of the store (the "store" being the place where +#. packages are stored.) +#: guix/scripts/size.scm:204 +msgid "store profile" +msgstr "" + +#: guix/scripts/size.scm:213 +#, fuzzy +msgid "" +"Usage: guix size [OPTION]... PACKAGE\n" +"Report the size of PACKAGE and its dependencies.\n" +msgstr "" +"Haszn=C3=A1lat: guix package [KAPCSOL=C3=93]=E2=80=A6 CSOMAGOK=E2=80=A6= \n" +"CSOMAGOK telep=C3=ADt=C3=A9se, elt=C3=A1vol=C3=ADt=C3=A1sa vagy friss=C3= =ADt=C3=A9se egyetlen tranzakci=C3=B3ban.\n" + +#: guix/scripts/size.scm:218 +#, fuzzy +msgid "" +"\n" +" -s, --system=3DSYSTEM consider packages for SYSTEM--e.g., \"i686-l= inux\"" +msgstr "" +"\n" +" -s, --system=3DRENDSZER k=C3=ADs=C3=A9rlet a RENDSZERRE t=C3=B6rt=C3= =A9n=C5=91 =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sra,\n" +" p=C3=A9ld=C3=A1ul =E2=80=9Ei686-linux=E2=80=9D= " =20 -#: guix/scripts/system.scm:144 -#, scheme-format -msgid "initializing the current root file system~%" -msgstr "a jelenlegi gy=C3=B6k=C3=A9r f=C3=A1jlrendszer el=C5=91k=C3=A9sz= =C3=ADt=C3=A9se~%" +#: guix/scripts/size.scm:220 +msgid "" +"\n" +" -m, --map-file=3DFILE write to FILE a graphical map of disk usage" +msgstr "" =20 -#: guix/scripts/system.scm:162 guix/scripts/system.scm:325 -#, scheme-format -msgid "failed to install GRUB on device '~a'~%" -msgstr "a GRUB telep=C3=ADt=C3=A9se sikertelen a(z) =E2=80=9E~a=E2=80=9D= eszk=C3=B6zre~%" +#: guix/scripts/size.scm:274 +msgid "missing store item argument\n" +msgstr "" =20 -#: guix/scripts/system.scm:197 -#, scheme-format -msgid "activating system...~%" -msgstr "a rendszer aktiv=C3=A1l=C3=A1sa=E2=80=A6~%" +#: guix/scripts/size.scm:292 +#, fuzzy +msgid "too many arguments\n" +msgstr "hib=C3=A1s argumentumok" =20 -#: guix/scripts/system.scm:239 -#, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "azonos=C3=ADtatlan ind=C3=ADt=C3=A1si param=C3=A9terek ehhez: =E2= =80=9E~a=E2=80=9D~%" +#: guix/scripts/graph.scm:76 +msgid "the DAG of packages, excluding implicit inputs" +msgstr "" =20 -#: guix/scripts/system.scm:330 -#, scheme-format -msgid "initializing operating system under '~a'...~%" -msgstr "az oper=C3=A1ci=C3=B3s rendszer el=C5=91k=C3=A9sz=C3=ADt=C3=A9se= =E2=80=9E~a=E2=80=9D al=C3=A1=E2=80=A6~%" +#: guix/scripts/graph.scm:132 +msgid "the DAG of packages, including implicit inputs" +msgstr "" =20 -#: guix/scripts/system.scm:346 -msgid "" -"Usage: guix system [OPTION] ACTION FILE\n" -"Build the operating system declared in FILE according to ACTION.\n" +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" msgstr "" -"Haszn=C3=A1lat: guix system [KAPCSOL=C3=93] M=C5=B0VELET F=C3=81JL\n" -"A F=C3=81JLBAN meghat=C3=A1rozott oper=C3=A1ci=C3=B3s rendszer =C3=B6ss= ze=C3=A1ll=C3=ADt=C3=A1sa a M=C5=B0VELET szerint.\n" =20 -#: guix/scripts/system.scm:349 -msgid "The valid values for ACTION are:\n" -msgstr "A M=C5=B0VELET =C3=A9rv=C3=A9nyes =C3=A9rt=C3=A9kei a k=C3=B6vet= kez=C5=91k:\n" +#: guix/scripts/graph.scm:171 +msgid "same as 'bag', but without the bootstrap nodes" +msgstr "" =20 -#: guix/scripts/system.scm:350 -msgid " - 'reconfigure', switch to a new operating system configuration= \n" -msgstr " - =E2=80=9Ereconfigure=E2=80=9D, =C3=A1tv=C3=A1lt=C3=A1s egy =C3= =BAj oper=C3=A1ci=C3=B3s rendszer be=C3=A1ll=C3=ADt=C3=A1sra\n" +#: guix/scripts/graph.scm:216 +msgid "the DAG of derivations" +msgstr "" =20 -#: guix/scripts/system.scm:352 -msgid " - 'build', build the operating system without installing anythi= ng\n" -msgstr " - =E2=80=9Ebuild=E2=80=9D, az oper=C3=A1ci=C3=B3s rendszer =C3= =B6ssze=C3=A1ll=C3=ADt=C3=A1sa b=C3=A1rmi telep=C3=ADt=C3=A9se n=C3=A9lk=C3= =BCl\n" +#: guix/scripts/graph.scm:240 +#, scheme-format +msgid "references for '~a' are not known~%" +msgstr "" =20 -#: guix/scripts/system.scm:354 -msgid " - 'vm', build a virtual machine image that shares the host's st= ore\n" +#: guix/scripts/graph.scm:247 +msgid "the DAG of run-time dependencies (store references)" msgstr "" -" - =E2=80=9Evm=E2=80=9D, egy virtu=C3=A1lis g=C3=A9p lemezk=C3=A9p =C3= =B6ssze=C3=A1ll=C3=ADt=C3=A1sa, amely megosztja a gazda\n" -" t=C3=A1rol=C3=B3j=C3=A1t\n" =20 -#: guix/scripts/system.scm:356 -msgid " - 'vm-image', build a freestanding virtual machine image\n" -msgstr " - =E2=80=9Evm-image=E2=80=9D, egy szabadon =C3=A1ll=C3=B3 virt= u=C3=A1lis g=C3=A9p lemezk=C3=A9p =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa\n" +#: guix/scripts/graph.scm:277 +#, fuzzy, scheme-format +msgid "~a: unknown node type~%" +msgstr "~a: ismeretlen m=C5=B1velet~%" =20 -#: guix/scripts/system.scm:358 -msgid " - 'disk-image', build a disk image, suitable for a USB stick\n" -msgstr " - =E2=80=9Edisk-image=E2=80=9D, egy USB-meghajt=C3=B3hoz megfe= lel=C5=91 lemezk=C3=A9p =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa\n" +#: guix/scripts/graph.scm:281 +#, fuzzy +msgid "The available node types are:\n" +msgstr "A M=C5=B0VELET =C3=A9rv=C3=A9nyes =C3=A9rt=C3=A9kei a k=C3=B6vet= kez=C5=91k:\n" =20 -#: guix/scripts/system.scm:360 -msgid " - 'init', initialize a root file system to run GNU.\n" -msgstr " - =E2=80=9Einit=E2=80=9D, a gy=C3=B6k=C3=A9r f=C3=A1jlrendszer= el=C5=91k=C3=A9sz=C3=ADt=C3=A9se a GNU futtat=C3=A1s=C3=A1hoz.\n" +#. TRANSLATORS: Here 'dot' is the name of a program; it must not be +#. translated. +#: guix/scripts/graph.scm:317 +msgid "" +"Usage: guix graph PACKAGE...\n" +"Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" +msgstr "" =20 -#: guix/scripts/system.scm:364 +#: guix/scripts/graph.scm:319 msgid "" "\n" -" --image-size=3DSIZE for 'vm-image', produce an image of SIZE" +" -t, --type=3DTYPE represent nodes of the given TYPE" msgstr "" -"\n" -" --image-size=3DM=C3=89RET a =E2=80=9Evm-image=E2=80=9D-hez, adot= t M=C3=89RET=C5=B0 lemezk=C3=A9p el=C5=91=C3=A1ll=C3=ADt=C3=A1sa" =20 -#: guix/scripts/system.scm:366 +#: guix/scripts/graph.scm:321 +#, fuzzy msgid "" "\n" -" --no-grub for 'init', do not install GRUB" +" --list-types list the available graph types" msgstr "" "\n" -" --no-grub az =E2=80=9Einit=E2=80=9D-hez, ne telep=C3=ADt= se a GRUB rendszerbet=C3=B6lt=C5=91t" +" --list-dead halott =C3=BAtvonalak list=C3=A1z=C3=A1sa" =20 -#: guix/scripts/system.scm:368 +#: guix/scripts/graph.scm:323 +#, fuzzy msgid "" "\n" -" --full-boot for 'vm', make a full boot sequence" +" -e, --expression=3DEXPR consider the package EXPR evaluates to" msgstr "" "\n" -" --full-boot =E2=80=9Evm=E2=80=9D eset=C3=A9n, teljes ind=C3= =ADt=C3=A1si sorozat k=C3=A9sz=C3=ADt=C3=A9se" +" -e, --expression=3DKIF a csomag vagy a ki=C3=A9rt=C3=A9kelt sz=C3=A1= rmaztatott KIF\n" +" =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa" =20 -#: guix/scripts/system.scm:434 -#, scheme-format -msgid "~a: unknown action~%" -msgstr "~a: ismeretlen m=C5=B1velet~%" +#: guix/scripts/challenge.scm:104 +#, fuzzy, scheme-format +msgid "~a: no substitute at '~a'~%" +msgstr "a helyettes=C3=ADt=C5=91 enn=C3=A9l: =E2=80=9E~a=E2=80=9D hi=C3=A1= nyol egy al=C3=A1=C3=ADr=C3=A1st~%" =20 -#: guix/scripts/system.scm:451 -#, scheme-format -msgid "wrong number of arguments for action '~a'~%" -msgstr "nem megfelel=C5=91 sz=C3=A1m=C3=BA argumentum a(z) =E2=80=9E~a=E2= =80=9D m=C5=B1velethez~%" +#: guix/scripts/challenge.scm:120 +#, fuzzy, scheme-format +msgid "no substitutes for '~a'~%" +msgstr "=C3=A9rv=C3=A9nytelen al=C3=A1=C3=ADr=C3=A1s ehhez: =E2=80=9E~a=E2= =80=9D~%" =20 -#: guix/scripts/system.scm:471 -#, scheme-format -msgid "no configuration file specified~%" -msgstr "nincs be=C3=A1ll=C3=ADt=C3=B3f=C3=A1jl megadva~%" +#: guix/scripts/challenge.scm:137 guix/scripts/challenge.scm:157 +#, fuzzy, scheme-format +msgid "no local build for '~a'~%" +msgstr "nincs =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1si napl=C3=B3 ehhez: =E2=80= =9E~a=E2=80=9D~%" =20 -#: guix/scripts/lint.scm:51 +#: guix/scripts/challenge.scm:154 #, scheme-format -msgid "~a: ~a: ~a~%" +msgid "~a contents differ:~%" +msgstr "" + +#: guix/scripts/challenge.scm:156 +#, fuzzy, scheme-format +msgid " local hash: ~a~%" msgstr "~a: ~a: ~a~%" =20 -#: guix/scripts/lint.scm:72 +#: guix/scripts/challenge.scm:161 +#, fuzzy, scheme-format +msgid " ~50a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/scripts/challenge.scm:165 #, scheme-format -msgid "Available checkers:~%" -msgstr "El=C3=A9rhet=C5=91 ellen=C5=91rz=C5=91k:~%" +msgid " ~50a: unavailable~%" +msgstr "" =20 -#: guix/scripts/lint.scm:226 -msgid "Validate package descriptions" -msgstr "Csomagle=C3=ADr=C3=A1sok ellen=C5=91rz=C3=A9se" +#: guix/scripts/challenge.scm:175 +msgid "" +"Usage: guix challenge [PACKAGE...]\n" +"Challenge the substitutes for PACKAGE... provided by one or more server= s.\n" +msgstr "" =20 -#: guix/scripts/lint.scm:230 -msgid "Identify inputs that should be native inputs" -msgstr "Bemenetek azonos=C3=ADt=C3=A1sa, amelyek nat=C3=ADv bemenetek le= hetnek" +#: guix/scripts/challenge.scm:177 +#, fuzzy +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" compare build results with those at URLS" +msgstr "" +"\n" +" --max-silent-time=3DM=C3=81SODPERC\n" +" az =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1s sikertelen= nek jel=C3=B6l=C3=A9se M=C3=81SODPERC\n" +" hallgat=C3=A1s ut=C3=A1n" =20 -#: guix/scripts/lint.scm:234 -msgid "Validate filenames of patches" -msgstr "Jav=C3=ADt=C3=B3csomagok f=C3=A1jlneveinek ellen=C5=91rz=C3=A9se= " +#: guix/gnu-maintenance.scm:514 +msgid "Updater for GNU packages" +msgstr "" =20 -#: guix/scripts/lint.scm:238 -msgid "Validate package synopsis" -msgstr "Csomag=C3=A1ttekint=C3=A9s ellen=C5=91rz=C3=A9se" +#: guix/gnu-maintenance.scm:521 +msgid "Updater for GNOME packages" +msgstr "" =20 -#: guix/scripts/lint.scm:257 +#: guix/scripts/container.scm:25 msgid "" -"Usage: guix lint [OPTION]... [PACKAGE]...\n" -"Run a set of checkers on the specified package; if none is specified, r= un the checkers on all packages.\n" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" msgstr "" -"Haszn=C3=A1lat: guix lint [KAPCSOL=C3=93]=E2=80=A6 [CSOMAG]=E2=80=A6\n" -"Sz=C3=A1mos ellen=C5=91rz=C5=91 futtat=C3=A1sa a megadott csomagon. Ha = semmi sincs megadva, az ellen=C5=91rz=C5=91k futtat=C3=A1sa minden csomag= on.\n" =20 -#: guix/scripts/lint.scm:259 -msgid "" -"\n" -" -c, --checkers=3DCHECKER1,CHECKER2...\n" -" only run the specificed checkers" +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" msgstr "" -"\n" -" -c, --checkers=3DELLEN=C5=90RZ=C5=901,ELLEN=C5=90RZ=C5=902=E2=80=A6\n= " -" csak a megadott ellen=C5=91rz=C5=91k futtat=C3= =A1sa" =20 -#: guix/scripts/lint.scm:264 +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix: hi=C3=A1nyz=C3=B3 parancsn=C3=A9v~%" + +#: guix/scripts/container.scm:63 +#, scheme-format +msgid "guix container: invalid action~%" +msgstr "" + +#: guix/scripts/container/exec.scm:40 msgid "" -"\n" -" -l, --list-checkers display the list of available lint checkers" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" msgstr "" -"\n" -" -l, --list-checkers az el=C3=A9rhet=C5=91 lint ellen=C5=91rz=C5=91= k list=C3=A1j=C3=A1nak megjelen=C3=ADt=C3=A9se" =20 -#: guix/scripts/lint.scm:283 +#: guix/scripts/container/exec.scm:69 +#, fuzzy, scheme-format +msgid "~a: extraneous argument~%" +msgstr "~A: nem odatartoz=C3=B3 argumentum~%" + +#: guix/scripts/container/exec.scm:80 +#, fuzzy, scheme-format +msgid "no pid specified~%" +msgstr "nincs be=C3=A1ll=C3=ADt=C3=B3f=C3=A1jl megadva~%" + +#: guix/scripts/container/exec.scm:83 +#, fuzzy, scheme-format +msgid "no command specified~%" +msgstr "nincs be=C3=A1ll=C3=ADt=C3=B3f=C3=A1jl megadva~%" + +#: guix/scripts/container/exec.scm:86 #, scheme-format -msgid "~a: invalid checker" -msgstr "~a: =C3=A9rv=C3=A9nytelen ellen=C5=91rz=C5=91" +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" +msgstr "" =20 -#: guix/gnu-maintenance.scm:373 +#: guix/upstream.scm:158 #, scheme-format msgid "signature verification failed for `~a'~%" msgstr "az al=C3=A1=C3=ADr=C3=A1s-ellen=C5=91rz=C3=A9s sikertelen enn=C3= =A9l: =E2=80=9E~a=E2=80=9D~%" =20 -#: guix/gnu-maintenance.scm:375 +#: guix/upstream.scm:160 #, scheme-format msgid "(could be because the public key is not in your keyring)~%" msgstr "(az=C3=A9rt lehet, mert a nyilv=C3=A1nos kulcs nincs a kulcstart= =C3=B3n)~%" =20 -#: guix/gnu-maintenance.scm:450 +#: guix/upstream.scm:192 +msgid "gz" +msgstr "" + +#: guix/upstream.scm:255 #, scheme-format msgid "~a: could not locate source file" msgstr "~a: nem tal=C3=A1lhat=C3=B3 a forr=C3=A1sf=C3=A1jl" =20 -#: guix/gnu-maintenance.scm:455 +#: guix/upstream.scm:260 #, scheme-format msgid "~a: ~a: no `version' field in source; skipping~%" msgstr "~a: ~a: nincs =E2=80=9Eversion=E2=80=9D mez=C5=91 a forr=C3=A1sb= an; kihagy=C3=A1s~%" =20 -#: guix/ui.scm:135 +#: guix/ui.scm:236 +msgid "entering debugger; type ',bt' for a backtrace\n" +msgstr "" + +#: guix/ui.scm:252 guix/ui.scm:269 +#, fuzzy, scheme-format +msgid "failed to load '~a': ~a~%" +msgstr "sikertelen csatlakoz=C3=A1s ehhez: =E2=80=9E~a=E2=80=9D: ~a~%" + +#: guix/ui.scm:255 +#, fuzzy, scheme-format +msgid "~a: error: ~a~%" +msgstr "~a: ~a: ~a~%" + +#: guix/ui.scm:258 guix/ui.scm:512 +#, scheme-format +msgid "exception thrown: ~s~%" +msgstr "" + +#: guix/ui.scm:260 guix/ui.scm:278 +#, fuzzy, scheme-format +msgid "failed to load '~a':~%" +msgstr "a ter=C3=BCleti be=C3=A1ll=C3=ADt=C3=A1s telep=C3=ADt=C3=A9se si= kertelen: ~a~%" + +#: guix/ui.scm:272 +#, fuzzy, scheme-format +msgid "~a: warning: ~a~%" +msgstr "~a: ~a: ~a~%" + +#: guix/ui.scm:275 +#, fuzzy, scheme-format +msgid "failed to load '~a': exception thrown: ~s~%" +msgstr "a(z) ~s kifejez=C3=A9s olvas=C3=A1sa sikertelen: ~s~%" + +#: guix/ui.scm:287 #, scheme-format msgid "failed to install locale: ~a~%" msgstr "a ter=C3=BCleti be=C3=A1ll=C3=ADt=C3=A1s telep=C3=ADt=C3=A9se si= kertelen: ~a~%" =20 -#: guix/ui.scm:154 +#: guix/ui.scm:306 +#, fuzzy msgid "" -"Copyright (C) 2014 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" "Copyright =C2=A9 2014 a Guix szerz=C5=91i\n" -"Licenc GPLv3+: GNU GPL 3. vagy =C3=BAjabb verzi=C3=B3 \n" +"Licenc GPLv3+: GNU GPL 3. vagy =C3=BAjabb verzi=C3=B3 \n" "\n" "Ez egy szabad szoftver, terjesztheti =C3=A9s/vagy m=C3=B3dos=C3=ADthatj= a.\n" "NINCS GARANCIA, a t=C3=B6rv=C3=A9ny =C3=A1ltal enged=C3=A9lyezett m=C3=A9= rt=C3=A9kig.\n" =20 -#: guix/ui.scm:162 +#: guix/ui.scm:314 #, scheme-format msgid "" "\n" @@ -1134,7 +2112,7 @@ msgstr "" "\n" "A hib=C3=A1kat ide jelentse: ~a." =20 -#: guix/ui.scm:164 +#: guix/ui.scm:316 #, scheme-format msgid "" "\n" @@ -1143,168 +2121,230 @@ msgstr "" "\n" "~a honlap: <~a>" =20 -#: guix/ui.scm:166 +#: guix/ui.scm:318 msgid "" "\n" "General help using GNU software: " msgstr "" "\n" -"=C3=81ltal=C3=A1nos seg=C3=ADts=C3=A9g a GNU szoftverek haszn=C3=A1lat=C3= =A1hoz: " +"=C3=81ltal=C3=A1nos seg=C3=ADts=C3=A9g a GNU szoftverek haszn=C3=A1lat=C3= =A1hoz: " + +#: guix/ui.scm:363 +#, fuzzy, scheme-format +msgid "'~a' is not a valid regular expression: ~a~%" +msgstr "az al=C3=A1=C3=ADr=C3=A1s nem =C3=A9rv=C3=A9nyes s-kifejez=C3=A9= s: ~s~%" =20 -#: guix/ui.scm:173 +#: guix/ui.scm:369 #, scheme-format msgid "~a: invalid number~%" msgstr "~a: =C3=A9rv=C3=A9nytelen sz=C3=A1m~%" =20 -#: guix/ui.scm:190 +#: guix/ui.scm:386 #, scheme-format msgid "invalid number: ~a~%" msgstr "=C3=A9rv=C3=A9nytelen sz=C3=A1m: ~a~%" =20 -#: guix/ui.scm:213 +#: guix/ui.scm:409 #, scheme-format msgid "unknown unit: ~a~%" msgstr "ismeretlen egys=C3=A9g: ~a~%" =20 -#: guix/ui.scm:224 +#: guix/ui.scm:420 #, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "~a:~a:~a: a(z) =E2=80=9E~a=E2=80=9D csomagnak =C3=A9rv=C3=A9nyte= len bemenete van: ~s~%" =20 -#: guix/ui.scm:231 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" -msgstr "~a: ~a: a(z) =E2=80=9E~a=E2=80=9D =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1= si rendszer nem t=C3=A1mogatja a kereszt =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1s= okat~%" +msgstr "" +"~a: ~a: a(z) =E2=80=9E~a=E2=80=9D =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1si ren= dszer nem t=C3=A1mogatja a kereszt " +"=C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sokat~%" =20 -#: guix/ui.scm:236 +#: guix/ui.scm:432 #, scheme-format msgid "profile '~a' does not exist~%" msgstr "a(z) =E2=80=9E~a=E2=80=9D profil nem l=C3=A9tezik~%" =20 -#: guix/ui.scm:239 +#: guix/ui.scm:435 #, scheme-format msgid "generation ~a of profile '~a' does not exist~%" msgstr "a(z) ~a gener=C3=A1ci=C3=B3 a(z) =E2=80=9E~a=E2=80=9D profilhoz = nem l=C3=A9tezik~%" =20 -#: guix/ui.scm:243 +#: guix/ui.scm:442 +#, scheme-format +msgid "corrupt input while restoring '~a' from ~s~%" +msgstr "" + +#: guix/ui.scm:444 +#, fuzzy, scheme-format +msgid "corrupt input while restoring archive from ~s~%" +msgstr "s=C3=A9r=C3=BClt f=C3=A1jlhalmaz arch=C3=ADvum" + +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "sikertelen csatlakoz=C3=A1s ehhez: =E2=80=9E~a=E2=80=9D: ~a~%" =20 -#: guix/ui.scm:248 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "az =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1s sikertelen: ~a~%" =20 -#: guix/ui.scm:277 +#: guix/ui.scm:455 +#, scheme-format +msgid "reference to invalid output '~a' of derivation '~a'~%" +msgstr "" + +#: guix/ui.scm:466 +#, scheme-format +msgid "~a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "a(z) ~s kifejez=C3=A9s olvas=C3=A1sa sikertelen: ~s~%" =20 -#: guix/ui.scm:283 -#, scheme-format -msgid "failed to evaluate expression `~a': ~s~%" +#: guix/ui.scm:507 +#, fuzzy, scheme-format +msgid "failed to evaluate expression '~a':~%" msgstr "a(z) =E2=80=9E~a=E2=80=9D kifejez=C3=A9s ki=C3=A9rt=C3=A9kel=C3=A9= se sikertelen: ~s~%" =20 -#: guix/ui.scm:292 +#: guix/ui.scm:510 +#, fuzzy, scheme-format +msgid "syntax error: ~a~%" +msgstr "g=C3=A9pn=C3=A9v keres=C3=A9si hiba: ~a~%" + +#: guix/ui.scm:524 #, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "a(z) ~s kifejez=C3=A9s nem =C3=A9rt=C3=A9kelhet=C5=91 ki a csoma= ghoz~%" =20 -#: guix/ui.scm:339 +#: guix/ui.scm:586 #, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" msgstr[0] "~:[A k=C3=B6vetkez=C5=91 sz=C3=A1rmaz=C3=A9kot kellene =C3=B6= ssze=C3=A1ll=C3=ADtani:~%~{ ~a~%~}~;~]" msgstr[1] "~:[A k=C3=B6vetkez=C5=91 sz=C3=A1rmaz=C3=A9kokat kellene =C3=B6= ssze=C3=A1ll=C3=ADtani:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:344 +#: guix/ui.scm:591 #, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[A k=C3=B6vetkez=C5=91 f=C3=A1jlt kellene let=C3=B6lteni:~%= ~{ ~a~%~}~;~]" msgstr[1] "~:[A k=C3=B6vetkez=C5=91 f=C3=A1jlokat kellene let=C3=B6lteni= :~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:350 +#: guix/ui.scm:597 #, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[A k=C3=B6vetkez=C5=91 sz=C3=A1rmaz=C3=A9k lesz =C3=B6ssze=C3= =A1ll=C3=ADtva:~%~{ ~a~%~}~;~]" msgstr[1] "~:[A k=C3=B6vetkez=C5=91 sz=C3=A1rmaz=C3=A9kok lesznek =C3=B6= ssze=C3=A1ll=C3=ADtva:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:355 +#: guix/ui.scm:602 #, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" msgstr[0] "~:[A k=C3=B6vetkez=C5=91 f=C3=A1jl lesz let=C3=B6ltve:~%~{ = ~a~%~}~;~]" msgstr[1] "~:[A k=C3=B6vetkez=C5=91 f=C3=A1jlok lesznek let=C3=B6ltve:~%= ~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:407 +#: guix/ui.scm:657 #, scheme-format msgid "The following package would be removed:~%~{~a~%~}~%" msgid_plural "The following packages would be removed:~%~{~a~%~}~%" msgstr[0] "A k=C3=B6vetkez=C5=91 csomagot el kellene t=C3=A1vol=C3=ADtan= i:~%~{~a~%~}~%" msgstr[1] "A k=C3=B6vetkez=C5=91 csomagokat el kellene t=C3=A1vol=C3=ADt= ani:~%~{~a~%~}~%" =20 -#: guix/ui.scm:412 +#: guix/ui.scm:662 #, scheme-format msgid "The following package will be removed:~%~{~a~%~}~%" msgid_plural "The following packages will be removed:~%~{~a~%~}~%" msgstr[0] "A k=C3=B6vetkez=C5=91 csomag el lesz t=C3=A1vol=C3=ADtva:~%~{= ~a~%~}~%" msgstr[1] "A k=C3=B6vetkez=C5=91 csomagok el lesznek t=C3=A1vol=C3=ADtva= :~%~{~a~%~}~%" =20 -#: guix/ui.scm:425 +#: guix/ui.scm:675 +#, fuzzy, scheme-format +msgid "The following package would be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" +msgstr[0] "A k=C3=B6vetkez=C5=91 csomagot kellene friss=C3=ADteni:~%~{~a= ~%~}~%" +msgstr[1] "A k=C3=B6vetkez=C5=91 csomagokat kellene friss=C3=ADteni:~%~{= ~a~%~}~%" + +#: guix/ui.scm:680 +#, fuzzy, scheme-format +msgid "The following package will be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" +msgstr[0] "A k=C3=B6vetkez=C5=91 csomag lesz friss=C3=ADtve:~%~{~a~%~}~%= " +msgstr[1] "A k=C3=B6vetkez=C5=91 csomagok lesznek friss=C3=ADtve:~%~{~a~= %~}~%" + +#: guix/ui.scm:693 #, scheme-format msgid "The following package would be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" msgstr[0] "A k=C3=B6vetkez=C5=91 csomagot kellene friss=C3=ADteni:~%~{~a= ~%~}~%" msgstr[1] "A k=C3=B6vetkez=C5=91 csomagokat kellene friss=C3=ADteni:~%~{= ~a~%~}~%" =20 -#: guix/ui.scm:430 +#: guix/ui.scm:698 #, scheme-format msgid "The following package will be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" msgstr[0] "A k=C3=B6vetkez=C5=91 csomag lesz friss=C3=ADtve:~%~{~a~%~}~%= " msgstr[1] "A k=C3=B6vetkez=C5=91 csomagok lesznek friss=C3=ADtve:~%~{~a~= %~}~%" =20 -#: guix/ui.scm:441 +#: guix/ui.scm:709 #, scheme-format msgid "The following package would be installed:~%~{~a~%~}~%" msgid_plural "The following packages would be installed:~%~{~a~%~}~%" msgstr[0] "A k=C3=B6vetkez=C5=91 csomagot kellene telep=C3=ADteni:~%~{~a= ~%~}~%" msgstr[1] "A k=C3=B6vetkez=C5=91 csomagokat kellene telep=C3=ADteni:~%~{= ~a~%~}~%" =20 -#: guix/ui.scm:446 +#: guix/ui.scm:714 #, scheme-format msgid "The following package will be installed:~%~{~a~%~}~%" msgid_plural "The following packages will be installed:~%~{~a~%~}~%" msgstr[0] "A k=C3=B6vetkez=C5=91 csomag lesz telep=C3=ADtve:~%~{~a~%~}~%= " msgstr[1] "A k=C3=B6vetkez=C5=91 csomagok lesznek telep=C3=ADtve:~%~{~a~= %~}~%" =20 -#: guix/ui.scm:463 +#: guix/ui.scm:731 msgid "" msgstr "" =20 -#: guix/ui.scm:489 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "a(z) =E2=80=9E~a=E2=80=9D be=C3=A1ll=C3=ADt=C3=A1si k=C3=B6nyvt=C3= =A1r l=C3=A9trehoz=C3=A1sa sikertelen: ~a~%" =20 -#: guix/ui.scm:589 guix/ui.scm:603 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "ismeretlen" =20 -#: guix/ui.scm:712 +#: guix/ui.scm:1033 #, scheme-format -msgid "invalid argument: ~a~%" -msgstr "=C3=A9rv=C3=A9nytelen argumentum: ~a~%" +msgid "Generation ~a\t~a" +msgstr "~a gener=C3=A1ci=C3=B3\t~a" + +#: guix/ui.scm:1040 +#, scheme-format +msgid "~a\t(current)~%" +msgstr "~a\t(jelenlegi)~%" =20 -#: guix/ui.scm:717 +#: guix/ui.scm:1057 +#, fuzzy, scheme-format +msgid "switched from generation ~a to ~a~%" +msgstr "=C3=A1tv=C3=A1lt=C3=A1s a(z) ~a gener=C3=A1ci=C3=B3r=C3=B3l erre= : ~a~%" + +#: guix/ui.scm:1073 +#, scheme-format +msgid "deleting ~a~%" +msgstr "~a t=C3=B6rl=C3=A9se~%" + +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Tov=C3=A1bbi inform=C3=A1ci=C3=B3k=C3=A9rt pr=C3=B3b=C3=A1lja a = =E2=80=9Eguix --help=E2=80=9D parancsot.~%" =20 -#: guix/ui.scm:747 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -1312,41 +2352,32 @@ msgstr "" "Haszn=C3=A1lat: guix PARANCS ARGUMENTUMOK=E2=80=A6\n" "A PARANCS futtat=C3=A1sa ARGUMENTUMOKKAL.\n" =20 -#: guix/ui.scm:750 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" -msgstr "A PARANCSNAK a lenti list=C3=A1ban l=C3=A9v=C5=91 alparancsok eg= yik=C3=A9nek kell lennie:\n" +msgstr "" +"A PARANCSNAK a lenti list=C3=A1ban l=C3=A9v=C5=91 alparancsok egyik=C3=A9= nek kell lennie:\n" =20 -#: guix/ui.scm:770 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: a parancs nem tal=C3=A1lhat=C3=B3~%" =20 -#: guix/ui.scm:788 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: hi=C3=A1nyz=C3=B3 parancsn=C3=A9v~%" =20 -#: guix/ui.scm:796 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: ismeretlen kapcsol=C3=B3: =E2=80=9E~a=E2=80=9D~%" =20 -#: guix/http-client.scm:217 -#, scheme-format -msgid "using Guile ~a, which does not support ~s encoding~%" -msgstr "a Guile ~a haszn=C3=A1lata, amely nem t=C3=A1mogatja a(z) ~s k=C3= =B3dol=C3=A1st~%" - -#: guix/http-client.scm:220 -#, scheme-format -msgid "download failed; use a newer Guile~%" -msgstr "let=C3=B6lt=C3=A9s sikertelen; haszn=C3=A1lja a Guile =C3=BAjabb= verzi=C3=B3j=C3=A1t~%" - -#: guix/http-client.scm:232 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "=C3=A1tir=C3=A1ny=C3=ADt=C3=A1s k=C3=B6vet=C3=A9se ide: =E2=80=9E= ~a=E2=80=9D=E2=80=A6~%" =20 -#: guix/http-client.scm:241 +#: guix/http-client.scm:269 msgid "download failed" msgstr "let=C3=B6lt=C3=A9s sikertelen" =20 @@ -1379,19 +2410,187 @@ msgstr "s=C3=A9r=C3=BClt f=C3=A1jlhalmaz arch=C3= =ADvum" msgid "importing file or directory '~a'...~%" msgstr "f=C3=A1jl vagy k=C3=B6nyvt=C3=A1r import=C3=A1l=C3=A1sa: =E2=80=9E= ~a=E2=80=9D=E2=80=A6~%" =20 -#: guix/nar.scm:220 +#: guix/nar.scm:222 #, scheme-format msgid "found valid signature for '~a'~%" msgstr "=C3=A9rv=C3=A9nyes al=C3=A1=C3=ADr=C3=A1s tal=C3=A1lhat=C3=B3 eh= hez: =E2=80=9E~a=E2=80=9D~%" =20 -#: guix/nar.scm:227 +#: guix/nar.scm:229 msgid "imported file lacks a signature" msgstr "az import=C3=A1lt f=C3=A1jl egy al=C3=A1=C3=ADr=C3=A1st hi=C3=A1= nyol" =20 -#: guix/nar.scm:266 +#: guix/nar.scm:268 msgid "invalid inter-file archive mark" msgstr "=C3=A9rv=C3=A9nytelen bels=C5=91-f=C3=A1jl arch=C3=ADvum jel=C3=B6= l=C5=91" =20 +#: nix/nix-daemon/guix-daemon.cc:61 +msgid "guix-daemon -- perform derivation builds and store accesses" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:63 +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:87 +msgid "SYSTEM" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:88 +msgid "assume SYSTEM as the current system type" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 +msgid "N" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:90 +msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:93 +msgid "allow at most N build jobs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:95 +msgid "disable chroot builds" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:96 +msgid "DIR" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:97 +msgid "add DIR to the build chroot" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:98 +msgid "GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:99 +msgid "perform builds as a user of GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:101 +msgid "do not use substitutes" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:102 +msgid "URLS" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:103 +msgid "use URLS as the default list of substitute providers" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:105 +msgid "do not use the 'build hook'" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:107 +msgid "cache build failures" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 +msgid "do not keep build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:113 +msgid "disable compression of the build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:118 +msgid "disable automatic file \"deduplication\" in the store" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:128 +msgid "impersonate Linux 2.6" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:132 +msgid "tell whether the GC must keep outputs of live derivations" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:135 +msgid "tell whether the GC must keep derivations corresponding to live o= utputs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:138 +msgid "SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:139 +msgid "listen for connections on SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:141 +msgid "produce debugging output" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 +#, c-format +msgid "error: %s\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:281 +#, c-format +msgid "error: libgcrypt version mismatch\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:372 +#, c-format +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" +msgstr "" + +#~ msgid "~a: not a number~%" +#~ msgstr "~a: nem sz=C3=A1m~%" + +#~ msgid "sources do not match any package:~{ ~a~}~%" +#~ msgstr "a forr=C3=A1sok nem illeszkednek semmilyen csomagra:~{ ~a~}~%= " + +#~ msgid "failed to build the empty profile~%" +#~ msgstr "az =C3=BCres profil =C3=B6ssze=C3=A1ll=C3=ADt=C3=A1sa sikerte= len~%" + +#~ msgid "nothing to do: already at the empty profile~%" +#~ msgstr "nincs mit tenni: m=C3=A1r az =C3=BCres profiln=C3=A1l van~%" + +#~ msgid "Downloading, please wait...~%" +#~ msgstr "Let=C3=B6lt=C3=A9s, k=C3=A9rem v=C3=A1rjon=E2=80=A6~%" + +#~ msgid "(Please consider upgrading Guile to get proper progress report= .)~%" +#~ msgstr "" +#~ "(Fontolja meg a Guile friss=C3=ADt=C3=A9s=C3=A9t a megfelel=C5=91 =C3= =A1llapotjelent=C3=A9s " +#~ "beszerz=C3=A9s=C3=A9hez.)~%" + +#~ msgid "these substitute URLs will not be used:~{ ~a~}~%" +#~ msgstr "ezek a helyettes=C3=ADt=C5=91 URL-ek nem lesznek haszn=C3=A1l= va:~{ ~a~}~%" + +#~ msgid "failed to look up host '~a' (~a), substituter disabled~%" +#~ msgstr "a(z) =E2=80=9E~a=E2=80=9D (~a) g=C3=A9p keres=C3=A9se sikerte= len, a helyettes=C3=ADt=C5=91 letiltva~%" + +#~ msgid "failed to open operating system file '~a': ~a~%" +#~ msgstr "a(z) =E2=80=9E~a=E2=80=9D oper=C3=A1ci=C3=B3s rendszer f=C3=A1= jl megnyit=C3=A1sa sikertelen: ~a~%" + +#~ msgid "using Guile ~a, which does not support ~s encoding~%" +#~ msgstr "a Guile ~a haszn=C3=A1lata, amely nem t=C3=A1mogatja a(z) ~s = k=C3=B3dol=C3=A1st~%" + +#~ msgid "download failed; use a newer Guile~%" +#~ msgstr "let=C3=B6lt=C3=A9s sikertelen; haszn=C3=A1lja a Guile =C3=BAj= abb verzi=C3=B3j=C3=A1t~%" + #~ msgid "unexpected executable file marker" #~ msgstr "nem v=C3=A1rt v=C3=A9grehajthat=C3=B3 f=C3=A1jljel=C3=B6l=C5=91= " =20 @@ -1407,9 +2606,6 @@ msgstr "=C3=A9rv=C3=A9nytelen bels=C5=91-f=C3=A1jl = arch=C3=ADvum jel=C3=B6l=C5=91" #~ msgid "invalid nar end-of-file marker" #~ msgstr "=C3=A9rv=C3=A9nytelen nar f=C3=A1jlv=C3=A9ge jel=C3=B6l=C5=91= " =20 -#~ msgid "invalid symlink tokens" -#~ msgstr "=C3=A9rv=C3=A9nytelen szimbolikus link jelsorok" - #~ msgid "unexpected directory entry termination" #~ msgstr "nem v=C3=A1rt k=C3=B6nyvt=C3=A1rbejegyz=C3=A9s v=C3=A9gz=C5=91= d=C3=A9s" =20 diff --git a/po/guix/pl.po b/po/guix/pl.po index 71c7fc3..e4b6f6a 100644 --- a/po/guix/pl.po +++ b/po/guix/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.9.0\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2015-10-28 16:31+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2015-12-05 18:58+0100\n" "Last-Translator: Daniel Ko=C4=87 \n" "Language-Team: Polish \n" @@ -15,98 +15,111 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=3DUTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n=3D=3D1 ? 0 : n%10>=3D2 && n%10<= =3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3D3; plural=3D(n=3D=3D1 ? 0 : n%10>=3D2 && n%10<= =3D4 && (n%100<10 " +"|| n%100>=3D20) ? 1 : 2);\n" "X-Generator: Poedit 1.8.4\n" =20 -#: gnu/packages.scm:80 +#: gnu/packages.scm:76 #, scheme-format msgid "~a: patch not found" msgstr "" =20 -#: gnu/packages.scm:91 +#: gnu/packages.scm:87 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" =20 -#: gnu/packages.scm:143 +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "" =20 -#: gnu/packages.scm:388 +#: gnu/packages.scm:327 #, scheme-format msgid "looking for the latest release of GNU ~a..." msgstr "" =20 -#: gnu/packages.scm:395 +#: gnu/packages.scm:334 #, scheme-format msgid "~a: note: using ~a but ~a is available upstream~%" msgstr "" =20 -#: gnu/packages.scm:417 gnu/packages.scm:452 +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "" =20 -#: gnu/packages.scm:418 gnu/packages.scm:454 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "" =20 -#: gnu/packages.scm:424 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "" =20 -#: gnu/packages.scm:426 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "" =20 -#: gnu/packages.scm:442 +#: gnu/packages.scm:381 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "" =20 -#: gnu/packages.scm:459 +#: gnu/packages.scm:398 #, scheme-format msgid "~a: package not found~%" msgstr "" =20 -#: gnu/services.scm:376 +#: gnu/services.scm:527 #, scheme-format msgid "no target of type '~a' for service ~s" msgstr "" =20 -#: gnu/services.scm:387 gnu/services.scm:447 +#: gnu/services.scm:538 gnu/services.scm:599 #, scheme-format msgid "more than one target service of type '~a'" msgstr "" =20 -#: gnu/services.scm:437 +#: gnu/services.scm:589 #, scheme-format msgid "service of type '~a' not found" msgstr "" =20 -#: gnu/system.scm:547 +#: gnu/system.scm:545 #, scheme-format msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" msgstr "" =20 -#: gnu/system.scm:563 +#: gnu/system.scm:561 #, scheme-format -msgid "using a monadic value for '~a' is deprecated; use 'plain-file' in= stead~%" +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" + +#: gnu/system.scm:678 +#, scheme-format +msgid "~a: invalid locale name" msgstr "" =20 -#: gnu/system.scm:646 -msgid "system locale lacks a definition" +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" msgstr "" =20 -#: gnu/services/dmd.scm:131 +#: gnu/services/shepherd.scm:166 #, scheme-format msgid "service '~a' provided more than once" msgstr "" =20 +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + #: gnu/system/shadow.scm:213 #, scheme-format msgid "supplementary group '~a' of user '~a' is undeclared" @@ -123,212 +136,251 @@ msgid "invalid argument: ~a~%" msgstr "" =20 #: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 -#: guix/scripts/import/cran.scm:72 guix/scripts/import/elpa.scm:77 -#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:792 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 #: guix/scripts/publish.scm:355 #, scheme-format msgid "~A: unrecognized option~%" msgstr "" =20 -#: guix/scripts/build.scm:107 +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "" =20 -#: guix/scripts/build.scm:151 +#: guix/scripts/build.scm:188 +#, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 msgid "" "\n" " -L, --load-path=3DDIR prepend DIR to the package module search pat= h" msgstr "" =20 -#: guix/scripts/build.scm:153 +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" msgstr "" =20 -#: guix/scripts/build.scm:155 +#: guix/scripts/build.scm:286 +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" msgstr "" =20 -#: guix/scripts/build.scm:157 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" msgstr "" =20 -#: guix/scripts/build.scm:159 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" msgstr "" =20 -#: guix/scripts/build.scm:161 guix/scripts/size.scm:215 +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 msgid "" "\n" " --substitute-urls=3DURLS\n" " fetch substitute from URLS if they are authori= zed" msgstr "" =20 -#: guix/scripts/build.scm:164 +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" msgstr "" =20 -#: guix/scripts/build.scm:166 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" " mark the build as failed after SECONDS of sile= nce" msgstr "" =20 -#: guix/scripts/build.scm:169 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" msgstr "" =20 -#: guix/scripts/build.scm:171 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" msgstr "" =20 -#: guix/scripts/build.scm:173 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" msgstr "" =20 -#: guix/scripts/build.scm:175 +#: guix/scripts/build.scm:310 msgid "" "\n" " -M, --max-jobs=3DN allow at most N build jobs" msgstr "" =20 -#: guix/scripts/build.scm:261 guix/scripts/build.scm:268 +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 #, scheme-format msgid "not a number: '~a' option argument: ~a~%" msgstr "" =20 -#: guix/scripts/build.scm:287 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" msgstr "" =20 -#: guix/scripts/build.scm:289 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" msgstr "" =20 -#: guix/scripts/build.scm:291 +#: guix/scripts/build.scm:441 msgid "" "\n" -" -f, --file=3DFILE build the package or derivation that the cod= e within\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" " FILE evaluates to" msgstr "" =20 -#: guix/scripts/build.scm:294 +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" msgstr "" =20 -#: guix/scripts/build.scm:296 +#: guix/scripts/build.scm:446 msgid "" "\n" -" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be one\n" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" " of \"package\", \"all\" (default), or \"transi= tive\"" msgstr "" =20 -#: guix/scripts/build.scm:299 +#: guix/scripts/build.scm:449 msgid "" "\n" " -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" msgstr "" =20 -#: guix/scripts/build.scm:301 +#: guix/scripts/build.scm:451 msgid "" "\n" " --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" msgstr "" =20 -#: guix/scripts/build.scm:303 +#: guix/scripts/build.scm:453 msgid "" "\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" +" --no-grafts do not graft packages" msgstr "" =20 -#: guix/scripts/build.scm:306 +#: guix/scripts/build.scm:455 msgid "" "\n" -" --no-grafts do not graft packages" +" -d, --derivations return the derivation paths of the given packa= ges" msgstr "" =20 -#: guix/scripts/build.scm:308 +#: guix/scripts/build.scm:457 msgid "" "\n" -" -d, --derivations return the derivation paths of the given packa= ges" +" --check rebuild items to check for non-determinism iss= ues" msgstr "" =20 -#: guix/scripts/build.scm:310 +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" =20 -#: guix/scripts/build.scm:313 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" msgstr "" =20 -#: guix/scripts/build.scm:318 guix/scripts/download.scm:54 -#: guix/scripts/package.scm:292 guix/scripts/gc.scm:70 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 #: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 -#: guix/scripts/import/cran.scm:44 guix/scripts/pull.scm:83 -#: guix/scripts/substitute.scm:752 guix/scripts/system.scm:556 -#: guix/scripts/lint.scm:741 guix/scripts/publish.scm:63 -#: guix/scripts/edit.scm:43 guix/scripts/size.scm:223 -#: guix/scripts/graph.scm:398 guix/scripts/challenge.scm:181 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" msgstr "" =20 -#: guix/scripts/build.scm:320 guix/scripts/download.scm:56 -#: guix/scripts/package.scm:294 guix/scripts/gc.scm:72 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 #: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 -#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:85 -#: guix/scripts/substitute.scm:754 guix/scripts/system.scm:558 -#: guix/scripts/lint.scm:745 guix/scripts/publish.scm:65 -#: guix/scripts/edit.scm:45 guix/scripts/size.scm:225 -#: guix/scripts/graph.scm:400 guix/scripts/challenge.scm:183 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" msgstr "" =20 -#: guix/scripts/build.scm:347 +#: guix/scripts/build.scm:498 #, scheme-format msgid "" "invalid argument: '~a' option argument: ~a, ~\n" "must be one of 'package', 'all', or 'transitive'~%" msgstr "" =20 -#: guix/scripts/build.scm:478 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" +msgid "~s: not something we can build~%" msgstr "" =20 -#: guix/scripts/build.scm:536 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "" @@ -354,58 +406,107 @@ msgstr "" msgid "unsupported hash format: ~a~%" msgstr "" =20 -#: guix/scripts/download.scm:107 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 +#, scheme-format +msgid "~A: extraneous argument~%" +msgstr "" + +#: guix/scripts/download.scm:109 +#, scheme-format +msgid "no download URI was specified~%" +msgstr "" + +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "" =20 -#: guix/scripts/download.scm:118 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "" =20 +#: guix/scripts/package.scm:102 +#, scheme-format +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "" + +#: guix/scripts/package.scm:124 +#, scheme-format +msgid "error: while creating directory `~a': ~a~%" +msgstr "" + #: guix/scripts/package.scm:128 #, scheme-format -msgid "not removing generation ~a, which is current~%" +msgid "Please create the `~a' directory, with you as the owner.~%" msgstr "" =20 #: guix/scripts/package.scm:135 #, scheme-format +msgid "error: directory `~a' is not owned by you~%" +msgstr "" + +#: guix/scripts/package.scm:138 +#, scheme-format +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "" + +#: guix/scripts/package.scm:173 +#, scheme-format +msgid "not removing generation ~a, which is current~%" +msgstr "" + +#: guix/scripts/package.scm:180 +#, scheme-format msgid "no matching generation~%" msgstr "" =20 -#: guix/scripts/package.scm:138 guix/scripts/package.scm:734 -#: guix/scripts/system.scm:396 +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "" =20 -#: guix/scripts/package.scm:219 +#: guix/scripts/package.scm:208 +#, scheme-format +msgid "nothing to be done~%" +msgstr "" + +#: guix/scripts/package.scm:222 +#, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" msgstr "" =20 -#: guix/scripts/package.scm:235 +#: guix/scripts/package.scm:325 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" =20 -#: guix/scripts/package.scm:237 +#: guix/scripts/package.scm:327 msgid "" "\n" " -i, --install PACKAGE ...\n" " install PACKAGEs" msgstr "" =20 -#: guix/scripts/package.scm:240 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" " install the package EXP evaluates to" msgstr "" =20 -#: guix/scripts/package.scm:243 +#: guix/scripts/package.scm:333 msgid "" "\n" " -f, --install-from-file=3DFILE\n" @@ -413,169 +514,126 @@ msgid "" " evaluates to" msgstr "" =20 -#: guix/scripts/package.scm:247 +#: guix/scripts/package.scm:337 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" =20 -#: guix/scripts/package.scm:250 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:252 +#: guix/scripts/package.scm:342 msgid "" "\n" " -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" " from FILE" msgstr "" =20 -#: guix/scripts/package.scm:255 +#: guix/scripts/package.scm:345 msgid "" "\n" " --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:257 +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" =20 -#: guix/scripts/package.scm:259 +#: guix/scripts/package.scm:349 msgid "" "\n" " --search-paths[=3DKIND]\n" " display needed environment variable definition= s" msgstr "" =20 -#: guix/scripts/package.scm:262 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" " list generations matching PATTERN" msgstr "" =20 -#: guix/scripts/package.scm:265 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" " delete generations matching PATTERN" msgstr "" =20 -#: guix/scripts/package.scm:268 +#: guix/scripts/package.scm:358 msgid "" "\n" " -S, --switch-generation=3DPATTERN\n" " switch to a generation matching PATTERN" msgstr "" =20 -#: guix/scripts/package.scm:271 +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" msgstr "" =20 -#: guix/scripts/package.scm:274 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" =20 -#: guix/scripts/package.scm:276 guix/scripts/pull.scm:76 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" msgstr "" =20 -#: guix/scripts/package.scm:279 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" msgstr "" =20 -#: guix/scripts/package.scm:281 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" " list installed packages matching REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:284 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" " list available packages matching REGEXP" msgstr "" =20 -#: guix/scripts/package.scm:287 +#: guix/scripts/package.scm:377 msgid "" "\n" " --show=3DPACKAGE show details about PACKAGE" msgstr "" =20 -#: guix/scripts/package.scm:380 +#: guix/scripts/package.scm:472 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" =20 -#: guix/scripts/package.scm:550 guix/scripts/publish.scm:357 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "" - -#: guix/scripts/package.scm:558 -#, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "" - -#: guix/scripts/package.scm:580 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "" - -#: guix/scripts/package.scm:584 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "" - -#: guix/scripts/package.scm:591 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "" - -#: guix/scripts/package.scm:594 -#, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "" - -#: guix/scripts/package.scm:628 -#, scheme-format -msgid "nothing to be done~%" -msgstr "" - -#: guix/scripts/package.scm:644 -#, scheme-format -msgid "~a package in profile~%" -msgid_plural "~a packages in profile~%" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: guix/scripts/package.scm:668 +#: guix/scripts/package.scm:755 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" =20 -#: guix/scripts/package.scm:690 +#: guix/scripts/package.scm:771 #, scheme-format msgid "would install new manifest from '~a' with ~d entries~%" msgstr "" =20 -#: guix/scripts/package.scm:692 +#: guix/scripts/package.scm:773 #, scheme-format msgid "installing new manifest from '~a' with ~d entries~%" msgstr "" @@ -660,6 +718,11 @@ msgstr "" msgid "invalid amount of storage: ~a~%" msgstr "" =20 +#: guix/scripts/gc.scm:187 +#, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "" + #: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" @@ -680,12 +743,12 @@ msgstr "" msgid "unrecognized option: ~a~%" msgstr "" =20 -#: guix/scripts/hash.scm:135 guix/ui.scm:458 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "" =20 -#: guix/scripts/hash.scm:138 guix/scripts/system.scm:685 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "" @@ -716,17 +779,23 @@ msgid "" "Import and convert the CRAN package for PACKAGE-NAME.\n" msgstr "" =20 -#: guix/scripts/import/cran.scm:87 +#: guix/scripts/import/cran.scm:44 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/cran.scm:94 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "" =20 -#: guix/scripts/import/cran.scm:91 guix/scripts/import/elpa.scm:95 +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 #, scheme-format msgid "too few arguments~%" msgstr "" =20 -#: guix/scripts/import/cran.scm:93 guix/scripts/import/elpa.scm:97 +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 #, scheme-format msgid "too many arguments~%" msgstr "" @@ -884,30 +953,35 @@ msgstr "" msgid "updating list of substitutes from '~a'... ~5,1f%" msgstr "" =20 -#: guix/scripts/substitute.scm:591 +#: guix/scripts/substitute.scm:585 #, scheme-format msgid "~s: unsupported server URI scheme~%" msgstr "" =20 -#: guix/scripts/substitute.scm:733 +#: guix/scripts/substitute.scm:596 +#, scheme-format +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" + +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "" =20 -#: guix/scripts/substitute.scm:742 +#: guix/scripts/substitute.scm:748 msgid "" "Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" =20 -#: guix/scripts/substitute.scm:744 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" " store file names passed on the standard input" msgstr "" =20 -#: guix/scripts/substitute.scm:747 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -915,11 +989,13 @@ msgid "" " DESTINATION" msgstr "" =20 -#: guix/scripts/substitute.scm:872 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" msgstr "" =20 -#: guix/scripts/substitute.scm:954 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "" @@ -955,261 +1031,279 @@ msgstr "" msgid "wrong arguments" msgstr "" =20 -#: guix/scripts/system.scm:105 +#: guix/scripts/system.scm:110 #, scheme-format msgid "failed to register '~a' under '~a'~%" msgstr "" =20 -#: guix/scripts/system.scm:137 +#: guix/scripts/system.scm:142 #, scheme-format msgid "failed to install GRUB on device '~a'~%" msgstr "" =20 -#: guix/scripts/system.scm:155 +#: guix/scripts/system.scm:160 #, scheme-format msgid "initializing the current root file system~%" msgstr "" =20 -#: guix/scripts/system.scm:169 +#: guix/scripts/system.scm:174 #, scheme-format msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" msgstr "" =20 #: guix/scripts/system.scm:219 #, scheme-format -msgid "unrecognized boot parameters for '~a'~%" +msgid "while talking to shepherd: ~a~%" msgstr "" =20 -#: guix/scripts/system.scm:254 +#: guix/scripts/system.scm:265 +#, scheme-format +msgid "unloading service '~a'...~%" +msgstr "" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" + +#: guix/scripts/system.scm:294 #, scheme-format msgid "activating system...~%" msgstr "" =20 -#: guix/scripts/system.scm:338 +#: guix/scripts/system.scm:380 msgid "the DAG of services" msgstr "" =20 -#: guix/scripts/system.scm:351 -msgid "the dependency graph of dmd services" +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" msgstr "" =20 -#: guix/scripts/system.scm:369 +#: guix/scripts/system.scm:414 #, scheme-format msgid " file name: ~a~%" msgstr "" =20 -#: guix/scripts/system.scm:370 +#: guix/scripts/system.scm:415 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" =20 #. TRANSLATORS: Please preserve the two-space indentation. -#: guix/scripts/system.scm:374 +#: guix/scripts/system.scm:417 #, scheme-format msgid " label: ~a~%" msgstr "" =20 -#: guix/scripts/system.scm:375 +#: guix/scripts/system.scm:418 #, scheme-format msgid " root device: ~a~%" msgstr "" =20 -#: guix/scripts/system.scm:376 +#: guix/scripts/system.scm:419 #, scheme-format msgid " kernel: ~a~%" msgstr "" =20 -#: guix/scripts/system.scm:476 +#: guix/scripts/system.scm:527 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" =20 -#: guix/scripts/system.scm:515 +#: guix/scripts/system.scm:566 msgid "" "Usage: guix system [OPTION] ACTION [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" msgstr "" =20 -#: guix/scripts/system.scm:518 +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 msgid "The valid values for ACTION are:\n" msgstr "" =20 -#: guix/scripts/system.scm:520 +#: guix/scripts/system.scm:571 msgid " reconfigure switch to a new operating system configuratio= n\n" msgstr "" =20 -#: guix/scripts/system.scm:522 +#: guix/scripts/system.scm:573 msgid " list-generations list the system generations\n" msgstr "" =20 -#: guix/scripts/system.scm:524 -msgid " build build the operating system without installing= anything\n" +#: guix/scripts/system.scm:575 +msgid "" +" build build the operating system without installing anyth= ing\n" +msgstr "" + +#: guix/scripts/system.scm:577 +msgid " container build a container that shares the host's stor= e\n" msgstr "" =20 -#: guix/scripts/system.scm:526 -msgid " vm build a virtual machine image that shares the= host's store\n" +#: guix/scripts/system.scm:579 +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" msgstr "" =20 -#: guix/scripts/system.scm:528 +#: guix/scripts/system.scm:581 msgid " vm-image build a freestanding virtual machine image\n" msgstr "" =20 -#: guix/scripts/system.scm:530 +#: guix/scripts/system.scm:583 msgid " disk-image build a disk image, suitable for a USB stick\= n" msgstr "" =20 -#: guix/scripts/system.scm:532 +#: guix/scripts/system.scm:585 msgid " init initialize a root file system to run GNU\n" msgstr "" =20 -#: guix/scripts/system.scm:534 +#: guix/scripts/system.scm:587 msgid " extension-graph emit the service extension graph in Dot forma= t\n" msgstr "" =20 -#: guix/scripts/system.scm:536 -msgid " dmd-graph emit the graph of dmd services in Dot format\= n" +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" msgstr "" =20 -#: guix/scripts/system.scm:540 +#: guix/scripts/system.scm:593 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" =20 -#: guix/scripts/system.scm:542 +#: guix/scripts/system.scm:595 msgid "" "\n" " --on-error=3DSTRATEGY\n" -" apply STRATEGY when an error occurs while read= ing FILE" +" apply STRATEGY when an error occurs while read= ing " +"FILE" msgstr "" =20 -#: guix/scripts/system.scm:545 +#: guix/scripts/system.scm:598 msgid "" "\n" " --image-size=3DSIZE for 'vm-image', produce an image of SIZE" msgstr "" =20 -#: guix/scripts/system.scm:547 +#: guix/scripts/system.scm:600 msgid "" "\n" " --no-grub for 'init', do not install GRUB" msgstr "" =20 -#: guix/scripts/system.scm:549 +#: guix/scripts/system.scm:602 msgid "" "\n" " --share=3DSPEC for 'vm', share host file system according t= o SPEC" msgstr "" =20 -#: guix/scripts/system.scm:551 +#: guix/scripts/system.scm:604 msgid "" "\n" " --expose=3DSPEC for 'vm', expose host file system according = to SPEC" msgstr "" =20 -#: guix/scripts/system.scm:553 +#: guix/scripts/system.scm:606 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" =20 -#: guix/scripts/system.scm:637 +#: guix/scripts/system.scm:690 #, scheme-format msgid "no configuration file specified~%" msgstr "" =20 -#: guix/scripts/system.scm:700 +#: guix/scripts/system.scm:753 #, scheme-format msgid "~a: unknown action~%" msgstr "" =20 -#: guix/scripts/system.scm:715 +#: guix/scripts/system.scm:768 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" =20 -#: guix/scripts/system.scm:720 +#: guix/scripts/system.scm:773 #, scheme-format msgid "guix system: missing command name~%" msgstr "" =20 -#: guix/scripts/system.scm:722 +#: guix/scripts/system.scm:775 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Wpisz 'guix system --help' aby uzyska=C4=87 wi=C4=99cej informac= ji.~%" =20 -#: guix/scripts/lint.scm:124 +#: guix/scripts/lint.scm:126 #, scheme-format msgid "Available checkers:~%" msgstr "" =20 -#: guix/scripts/lint.scm:144 +#: guix/scripts/lint.scm:146 msgid "description should not be empty" msgstr "" =20 -#: guix/scripts/lint.scm:154 +#: guix/scripts/lint.scm:156 msgid "Texinfo markup in description is invalid" msgstr "" =20 -#: guix/scripts/lint.scm:162 +#: guix/scripts/lint.scm:164 msgid "description should start with an upper-case letter or digit" msgstr "" =20 -#: guix/scripts/lint.scm:178 +#: guix/scripts/lint.scm:180 #, scheme-format msgid "" "sentences in description should be followed ~\n" "by two spaces; possible infraction~p at ~{~a~^, ~}" msgstr "" =20 -#: guix/scripts/lint.scm:202 +#: guix/scripts/lint.scm:204 msgid "pkg-config should probably be a native input" msgstr "" =20 -#: guix/scripts/lint.scm:217 +#: guix/scripts/lint.scm:219 msgid "synopsis should not be empty" msgstr "" =20 -#: guix/scripts/lint.scm:225 +#: guix/scripts/lint.scm:227 msgid "no period allowed at the end of the synopsis" msgstr "" =20 -#: guix/scripts/lint.scm:237 +#: guix/scripts/lint.scm:239 msgid "no article allowed at the beginning of the synopsis" msgstr "" =20 -#: guix/scripts/lint.scm:244 +#: guix/scripts/lint.scm:246 msgid "synopsis should be less than 80 characters long" msgstr "" =20 -#: guix/scripts/lint.scm:250 +#: guix/scripts/lint.scm:252 msgid "synopsis should start with an upper-case letter or digit" msgstr "" =20 -#: guix/scripts/lint.scm:257 +#: guix/scripts/lint.scm:259 msgid "synopsis should not start with the package name" msgstr "" =20 -#: guix/scripts/lint.scm:348 guix/scripts/lint.scm:360 +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" =20 -#: guix/scripts/lint.scm:367 +#: guix/scripts/lint.scm:372 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" =20 -#: guix/scripts/lint.scm:375 +#: guix/scripts/lint.scm:380 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" =20 -#: guix/scripts/lint.scm:401 +#: guix/scripts/lint.scm:406 msgid "invalid value for home page" msgstr "" =20 -#: guix/scripts/lint.scm:404 +#: guix/scripts/lint.scm:409 #, scheme-format msgid "invalid home page URL: ~s" msgstr "" @@ -1218,125 +1312,144 @@ msgstr "" msgid "file names of patches should start with the package name" msgstr "" =20 -#: guix/scripts/lint.scm:467 +#: guix/scripts/lint.scm:466 #, scheme-format msgid "~a: ~a: proposed synopsis: ~s~%" msgstr "" =20 -#: guix/scripts/lint.scm:479 +#: guix/scripts/lint.scm:478 #, scheme-format msgid "~a: ~a: proposed description:~% \"~a\"~%" msgstr "" =20 -#: guix/scripts/lint.scm:516 +#: guix/scripts/lint.scm:515 msgid "all the source URIs are unreachable:" msgstr "" =20 -#: guix/scripts/lint.scm:539 +#: guix/scripts/lint.scm:538 msgid "the source file name should contain the package name" msgstr "" =20 -#: guix/scripts/lint.scm:548 guix/scripts/lint.scm:552 +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 #, scheme-format msgid "failed to create derivation: ~a" msgstr "" =20 -#: guix/scripts/lint.scm:558 +#: guix/scripts/lint.scm:557 #, scheme-format msgid "failed to create derivation: ~s~%" msgstr "" =20 -#: guix/scripts/lint.scm:568 +#: guix/scripts/lint.scm:567 msgid "invalid license field" msgstr "" =20 -#: guix/scripts/lint.scm:582 +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "instalacja t=C5=82umacze=C5=84 nie powiod=C5=82a si=C4=99: ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" =20 -#: guix/scripts/lint.scm:591 +#: guix/scripts/lint.scm:647 #, scheme-format msgid "trailing white space on line ~a" msgstr "" =20 -#: guix/scripts/lint.scm:601 +#: guix/scripts/lint.scm:657 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" =20 -#: guix/scripts/lint.scm:612 +#: guix/scripts/lint.scm:668 #, scheme-format msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" msgstr "" =20 -#: guix/scripts/lint.scm:667 +#: guix/scripts/lint.scm:723 msgid "Validate package descriptions" msgstr "" =20 -#: guix/scripts/lint.scm:671 +#: guix/scripts/lint.scm:727 msgid "Validate synopsis & description of GNU packages" msgstr "" =20 -#: guix/scripts/lint.scm:675 +#: guix/scripts/lint.scm:731 msgid "Identify inputs that should be native inputs" msgstr "" =20 -#: guix/scripts/lint.scm:679 +#: guix/scripts/lint.scm:735 msgid "Validate file names and availability of patches" msgstr "" =20 -#: guix/scripts/lint.scm:683 +#: guix/scripts/lint.scm:739 msgid "Validate home-page URLs" msgstr "" =20 #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/scripts/lint.scm:689 +#: guix/scripts/lint.scm:745 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" =20 -#: guix/scripts/lint.scm:694 +#: guix/scripts/lint.scm:750 msgid "Validate source URLs" msgstr "" =20 -#: guix/scripts/lint.scm:698 +#: guix/scripts/lint.scm:754 msgid "Validate file names of sources" msgstr "" =20 -#: guix/scripts/lint.scm:702 +#: guix/scripts/lint.scm:758 msgid "Report failure to compile a package to a derivation" msgstr "" =20 -#: guix/scripts/lint.scm:706 +#: guix/scripts/lint.scm:762 msgid "Validate package synopses" msgstr "" =20 -#: guix/scripts/lint.scm:710 +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 msgid "Look for formatting issues in the source" msgstr "" =20 -#: guix/scripts/lint.scm:735 +#: guix/scripts/lint.scm:796 msgid "" "Usage: guix lint [OPTION]... [PACKAGE]...\n" "Run a set of checkers on the specified package; if none is specified,\n= " "run the checkers on all packages.\n" msgstr "" =20 -#: guix/scripts/lint.scm:738 +#: guix/scripts/lint.scm:799 msgid "" "\n" " -c, --checkers=3DCHECKER1,CHECKER2...\n" " only run the specified checkers" msgstr "" =20 -#: guix/scripts/lint.scm:743 +#: guix/scripts/lint.scm:804 msgid "" "\n" " -l, --list-checkers display the list of available lint checkers" msgstr "" =20 -#: guix/scripts/lint.scm:763 +#: guix/scripts/lint.scm:824 #, scheme-format msgid "~a: invalid checker~%" msgstr "" @@ -1397,22 +1510,27 @@ msgstr "" msgid "publishing ~a on ~a, port ~d~%" msgstr "" =20 -#: guix/scripts/edit.scm:40 +#: guix/scripts/edit.scm:41 msgid "" "Usage: guix edit PACKAGE...\n" -"Start $EDITOR to edit the definitions of PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" msgstr "" =20 -#: guix/scripts/edit.scm:58 +#: guix/scripts/edit.scm:62 #, scheme-format msgid "file '~a' not found in search path ~s~%" msgstr "" =20 -#: guix/scripts/edit.scm:70 +#: guix/scripts/edit.scm:83 #, scheme-format msgid "source location of package '~a' is unknown~%" msgstr "" =20 +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "instalacja t=C5=82umacze=C5=84 nie powiod=C5=82a si=C4=99: ~a~%" + #: guix/scripts/size.scm:75 #, scheme-format msgid "no available substitute information for '~a'~%" @@ -1463,61 +1581,65 @@ msgstr "" msgid "too many arguments\n" msgstr "" =20 -#: guix/scripts/graph.scm:105 +#: guix/scripts/graph.scm:76 msgid "the DAG of packages, excluding implicit inputs" msgstr "" =20 -#: guix/scripts/graph.scm:155 +#: guix/scripts/graph.scm:132 msgid "the DAG of packages, including implicit inputs" msgstr "" =20 -#: guix/scripts/graph.scm:179 +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:171 msgid "same as 'bag', but without the bootstrap nodes" msgstr "" =20 -#: guix/scripts/graph.scm:222 +#: guix/scripts/graph.scm:216 msgid "the DAG of derivations" msgstr "" =20 -#: guix/scripts/graph.scm:246 +#: guix/scripts/graph.scm:240 #, scheme-format msgid "references for '~a' are not known~%" msgstr "" =20 -#: guix/scripts/graph.scm:253 +#: guix/scripts/graph.scm:247 msgid "the DAG of run-time dependencies (store references)" msgstr "" =20 -#: guix/scripts/graph.scm:282 +#: guix/scripts/graph.scm:277 #, scheme-format msgid "~a: unknown node type~%" msgstr "" =20 -#: guix/scripts/graph.scm:286 +#: guix/scripts/graph.scm:281 msgid "The available node types are:\n" msgstr "" =20 #. TRANSLATORS: Here 'dot' is the name of a program; it must not be #. translated. -#: guix/scripts/graph.scm:389 +#: guix/scripts/graph.scm:317 msgid "" "Usage: guix graph PACKAGE...\n" "Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" msgstr "" =20 -#: guix/scripts/graph.scm:391 +#: guix/scripts/graph.scm:319 msgid "" "\n" " -t, --type=3DTYPE represent nodes of the given TYPE" msgstr "" =20 -#: guix/scripts/graph.scm:393 +#: guix/scripts/graph.scm:321 msgid "" "\n" " --list-types list the available graph types" msgstr "" =20 -#: guix/scripts/graph.scm:395 +#: guix/scripts/graph.scm:323 msgid "" "\n" " -e, --expression=3DEXPR consider the package EXPR evaluates to" @@ -1571,192 +1693,248 @@ msgid "" " compare build results with those at URLS" msgstr "" =20 -#: guix/gnu-maintenance.scm:418 +#: guix/gnu-maintenance.scm:514 msgid "Updater for GNU packages" msgstr "" =20 -#: guix/upstream.scm:156 +#: guix/gnu-maintenance.scm:521 +msgid "Updater for GNOME packages" +msgstr "" + +#: guix/scripts/container.scm:25 +msgid "" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" +msgstr "" + +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" + +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix: brakuj=C4=85ca nazwa polecenia~%" + +#: guix/scripts/container.scm:63 +#, scheme-format +msgid "guix container: invalid action~%" +msgstr "" + +#: guix/scripts/container/exec.scm:40 +msgid "" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" +msgstr "" + +#: guix/scripts/container/exec.scm:69 #, scheme-format -msgid "signature verification failed for `~a'~%" +msgid "~a: extraneous argument~%" +msgstr "" + +#: guix/scripts/container/exec.scm:80 +#, scheme-format +msgid "no pid specified~%" +msgstr "" + +#: guix/scripts/container/exec.scm:83 +#, scheme-format +msgid "no command specified~%" +msgstr "" + +#: guix/scripts/container/exec.scm:86 +#, scheme-format +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" msgstr "" =20 #: guix/upstream.scm:158 #, scheme-format +msgid "signature verification failed for `~a'~%" +msgstr "" + +#: guix/upstream.scm:160 +#, scheme-format msgid "(could be because the public key is not in your keyring)~%" msgstr "" =20 -#: guix/upstream.scm:190 +#: guix/upstream.scm:192 msgid "gz" msgstr "" =20 -#: guix/upstream.scm:253 +#: guix/upstream.scm:255 #, scheme-format msgid "~a: could not locate source file" msgstr "" =20 -#: guix/upstream.scm:258 +#: guix/upstream.scm:260 #, scheme-format msgid "~a: ~a: no `version' field in source; skipping~%" msgstr "" =20 -#: guix/ui.scm:234 +#: guix/ui.scm:236 msgid "entering debugger; type ',bt' for a backtrace\n" msgstr "" =20 -#: guix/ui.scm:250 guix/ui.scm:267 +#: guix/ui.scm:252 guix/ui.scm:269 #, scheme-format msgid "failed to load '~a': ~a~%" msgstr "" =20 -#: guix/ui.scm:253 +#: guix/ui.scm:255 #, scheme-format msgid "~a: error: ~a~%" msgstr "" =20 -#: guix/ui.scm:256 guix/ui.scm:510 +#: guix/ui.scm:258 guix/ui.scm:512 #, scheme-format msgid "exception thrown: ~s~%" msgstr "" =20 -#: guix/ui.scm:258 guix/ui.scm:276 +#: guix/ui.scm:260 guix/ui.scm:278 #, scheme-format msgid "failed to load '~a':~%" msgstr "" =20 -#: guix/ui.scm:270 +#: guix/ui.scm:272 #, scheme-format msgid "~a: warning: ~a~%" msgstr "~a: ostrze=C5=BCenie: ~a~%" =20 -#: guix/ui.scm:273 +#: guix/ui.scm:275 #, scheme-format msgid "failed to load '~a': exception thrown: ~s~%" msgstr "" =20 -#: guix/ui.scm:285 +#: guix/ui.scm:287 #, scheme-format msgid "failed to install locale: ~a~%" msgstr "instalacja t=C5=82umacze=C5=84 nie powiod=C5=82a si=C4=99: ~a~%" =20 -#: guix/ui.scm:304 +#: guix/ui.scm:306 msgid "" -"Copyright (C) 2015 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" =20 -#: guix/ui.scm:312 +#: guix/ui.scm:314 #, scheme-format msgid "" "\n" "Report bugs to: ~a." msgstr "" =20 -#: guix/ui.scm:314 +#: guix/ui.scm:316 #, scheme-format msgid "" "\n" "~a home page: <~a>" msgstr "" =20 -#: guix/ui.scm:316 +#: guix/ui.scm:318 msgid "" "\n" "General help using GNU software: " msgstr "" =20 -#: guix/ui.scm:361 +#: guix/ui.scm:363 #, scheme-format msgid "'~a' is not a valid regular expression: ~a~%" msgstr "" =20 -#: guix/ui.scm:367 +#: guix/ui.scm:369 #, scheme-format msgid "~a: invalid number~%" msgstr "" =20 -#: guix/ui.scm:384 +#: guix/ui.scm:386 #, scheme-format msgid "invalid number: ~a~%" msgstr "" =20 -#: guix/ui.scm:407 +#: guix/ui.scm:409 #, scheme-format msgid "unknown unit: ~a~%" msgstr "" =20 -#: guix/ui.scm:418 +#: guix/ui.scm:420 #, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "" =20 -#: guix/ui.scm:425 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" msgstr "" =20 -#: guix/ui.scm:430 +#: guix/ui.scm:432 #, scheme-format msgid "profile '~a' does not exist~%" msgstr "" =20 -#: guix/ui.scm:433 +#: guix/ui.scm:435 #, scheme-format msgid "generation ~a of profile '~a' does not exist~%" msgstr "" =20 -#: guix/ui.scm:440 +#: guix/ui.scm:442 #, scheme-format msgid "corrupt input while restoring '~a' from ~s~%" msgstr "" =20 -#: guix/ui.scm:442 +#: guix/ui.scm:444 #, scheme-format msgid "corrupt input while restoring archive from ~s~%" msgstr "" =20 -#: guix/ui.scm:445 +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "" =20 -#: guix/ui.scm:450 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "" =20 -#: guix/ui.scm:453 +#: guix/ui.scm:455 #, scheme-format msgid "reference to invalid output '~a' of derivation '~a'~%" msgstr "" =20 -#: guix/ui.scm:464 +#: guix/ui.scm:466 #, scheme-format msgid "~a: ~a~%" msgstr "" =20 -#: guix/ui.scm:499 +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "" =20 -#: guix/ui.scm:505 +#: guix/ui.scm:507 #, scheme-format msgid "failed to evaluate expression '~a':~%" msgstr "" =20 -#: guix/ui.scm:508 +#: guix/ui.scm:510 #, scheme-format msgid "syntax error: ~a~%" msgstr "" =20 -#: guix/ui.scm:522 +#: guix/ui.scm:524 #, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "" =20 -#: guix/ui.scm:582 +#: guix/ui.scm:586 #, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" @@ -1764,7 +1942,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:587 +#: guix/ui.scm:591 #, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" @@ -1772,7 +1950,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:593 +#: guix/ui.scm:597 #, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" @@ -1780,7 +1958,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:598 +#: guix/ui.scm:602 #, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" @@ -1788,7 +1966,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:653 +#: guix/ui.scm:657 #, scheme-format msgid "The following package would be removed:~%~{~a~%~}~%" msgid_plural "The following packages would be removed:~%~{~a~%~}~%" @@ -1796,7 +1974,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:658 +#: guix/ui.scm:662 #, scheme-format msgid "The following package will be removed:~%~{~a~%~}~%" msgid_plural "The following packages will be removed:~%~{~a~%~}~%" @@ -1804,7 +1982,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:671 +#: guix/ui.scm:675 #, scheme-format msgid "The following package would be downgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" @@ -1812,7 +1990,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:676 +#: guix/ui.scm:680 #, scheme-format msgid "The following package will be downgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" @@ -1820,7 +1998,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:689 +#: guix/ui.scm:693 #, scheme-format msgid "The following package would be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" @@ -1828,7 +2006,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:694 +#: guix/ui.scm:698 #, scheme-format msgid "The following package will be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" @@ -1836,7 +2014,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:705 +#: guix/ui.scm:709 #, scheme-format msgid "The following package would be installed:~%~{~a~%~}~%" msgid_plural "The following packages would be installed:~%~{~a~%~}~%" @@ -1844,7 +2022,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:710 +#: guix/ui.scm:714 #, scheme-format msgid "The following package will be installed:~%~{~a~%~}~%" msgid_plural "The following packages will be installed:~%~{~a~%~}~%" @@ -1852,45 +2030,45 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" =20 -#: guix/ui.scm:727 +#: guix/ui.scm:731 msgid "" msgstr "" =20 -#: guix/ui.scm:746 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "" =20 -#: guix/ui.scm:865 guix/ui.scm:879 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "" =20 -#: guix/ui.scm:1029 +#: guix/ui.scm:1033 #, scheme-format msgid "Generation ~a\t~a" msgstr "" =20 -#: guix/ui.scm:1036 +#: guix/ui.scm:1040 #, scheme-format msgid "~a\t(current)~%" msgstr "" =20 -#: guix/ui.scm:1053 +#: guix/ui.scm:1057 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" =20 -#: guix/ui.scm:1069 +#: guix/ui.scm:1073 #, scheme-format msgid "deleting ~a~%" msgstr "" =20 -#: guix/ui.scm:1117 +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "" =20 -#: guix/ui.scm:1144 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -1898,31 +2076,31 @@ msgstr "" "U=C5=BCycie: guix POLECENIE ARGUMENTY...\n" "Podaj POLECENIE i jego ARGUMENTY.\n" =20 -#: guix/ui.scm:1147 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "" =20 -#: guix/ui.scm:1167 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "" =20 -#: guix/ui.scm:1184 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: brakuj=C4=85ca nazwa polecenia~%" =20 -#: guix/ui.scm:1192 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "" =20 -#: guix/http-client.scm:228 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "" =20 -#: guix/http-client.scm:237 +#: guix/http-client.scm:269 msgid "download failed" msgstr "" =20 @@ -1973,116 +2151,130 @@ msgid "guix-daemon -- perform derivation builds= and store accesses" msgstr "" =20 #: nix/nix-daemon/guix-daemon.cc:63 -msgid "This program is a daemon meant to run in the background. It serv= es requests sent over a Unix-domain socket. It accesses the store, and b= uilds derivations on behalf of its clients." +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:86 +#: nix/nix-daemon/guix-daemon.cc:87 msgid "SYSTEM" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:87 +#: nix/nix-daemon/guix-daemon.cc:88 msgid "assume SYSTEM as the current system type" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:88 nix/nix-daemon/guix-daemon.cc:91 +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 msgid "N" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:89 +#: nix/nix-daemon/guix-daemon.cc:90 msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:92 +#: nix/nix-daemon/guix-daemon.cc:93 msgid "allow at most N build jobs" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:94 +#: nix/nix-daemon/guix-daemon.cc:95 msgid "disable chroot builds" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:95 +#: nix/nix-daemon/guix-daemon.cc:96 msgid "DIR" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:96 +#: nix/nix-daemon/guix-daemon.cc:97 msgid "add DIR to the build chroot" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:97 +#: nix/nix-daemon/guix-daemon.cc:98 msgid "GROUP" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:98 +#: nix/nix-daemon/guix-daemon.cc:99 msgid "perform builds as a user of GROUP" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:100 +#: nix/nix-daemon/guix-daemon.cc:101 msgid "do not use substitutes" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:101 +#: nix/nix-daemon/guix-daemon.cc:102 msgid "URLS" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:102 +#: nix/nix-daemon/guix-daemon.cc:103 msgid "use URLS as the default list of substitute providers" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:104 +#: nix/nix-daemon/guix-daemon.cc:105 msgid "do not use the 'build hook'" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:106 +#: nix/nix-daemon/guix-daemon.cc:107 msgid "cache build failures" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:108 +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 msgid "do not keep build logs" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:110 +#: nix/nix-daemon/guix-daemon.cc:113 msgid "disable compression of the build logs" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:115 +#: nix/nix-daemon/guix-daemon.cc:118 msgid "disable automatic file \"deduplication\" in the store" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:125 +#: nix/nix-daemon/guix-daemon.cc:128 msgid "impersonate Linux 2.6" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:129 +#: nix/nix-daemon/guix-daemon.cc:132 msgid "tell whether the GC must keep outputs of live derivations" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:132 +#: nix/nix-daemon/guix-daemon.cc:135 msgid "tell whether the GC must keep derivations corresponding to live o= utputs" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:135 +#: nix/nix-daemon/guix-daemon.cc:138 msgid "SOCKET" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:136 +#: nix/nix-daemon/guix-daemon.cc:139 msgid "listen for connections on SOCKET" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:138 +#: nix/nix-daemon/guix-daemon.cc:141 msgid "produce debugging output" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:205 nix/nix-daemon/guix-daemon.cc:381 +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 #, c-format msgid "error: %s\n" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:266 +#: nix/nix-daemon/guix-daemon.cc:281 #, c-format msgid "error: libgcrypt version mismatch\n" msgstr "" =20 -#: nix/nix-daemon/guix-daemon.cc:357 +#: nix/nix-daemon/guix-daemon.cc:372 #, c-format -msgid "warning: daemon is running as root, so using `--build-users-group= ' is highly recommended\n" +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" msgstr "" diff --git a/po/guix/pt_BR.po b/po/guix/pt_BR.po index 664cf24..acbf96c 100644 --- a/po/guix/pt_BR.po +++ b/po/guix/pt_BR.po @@ -8,10 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.4-pre2\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-07-25 00:55+0200\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2013-09-28 21:29-0300\n" "Last-Translator: Rafael Ferreira \n" -"Language-Team: Brazilian Portuguese \n" +"Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=3DUTF-8\n" @@ -19,37 +20,166 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" "X-Generator: Poedit 1.5.7\n" =20 -#: gnu/packages.scm:102 +#: gnu/packages.scm:76 +#, fuzzy, scheme-format +msgid "~a: patch not found" +msgstr "~a: pacote n=C3=A3o encontrado~%" + +#: gnu/packages.scm:87 +#, scheme-format +msgid "could not find bootstrap binary '~a' for system '~a'" +msgstr "" + +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "n=C3=A3o foi poss=C3=ADvel acessar \"~a\": ~a~%" =20 -#: guix/scripts/build.scm:54 guix/scripts/package.scm:349 +#: gnu/packages.scm:327 +#, scheme-format +msgid "looking for the latest release of GNU ~a..." +msgstr "procurando pelo =C3=BAltimo lan=C3=A7amento do GNU ~a..." + +#: gnu/packages.scm:334 +#, scheme-format +msgid "~a: note: using ~a but ~a is available upstream~%" +msgstr "~a: nota: usando ~a, mas ~a est=C3=A1 dispon=C3=ADvel no upstrea= m~%" + +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "especifica=C3=A7=C3=A3o amb=C3=ADgua de pacote \"~a\"~%" =20 -#: guix/scripts/build.scm:55 guix/scripts/package.scm:351 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "escolhendo ~a de ~a~%" =20 -#: guix/scripts/build.scm:61 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: pacote n=C3=A3o encontrado para vers=C3=A3o ~a~%" =20 -#: guix/scripts/build.scm:63 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: pacote desconhecido~%" =20 -#: guix/scripts/build.scm:86 +#: gnu/packages.scm:381 +#, scheme-format +msgid "package `~a' lacks output `~a'~%" +msgstr "pacote \"~a\" carece de mensagem de sa=C3=ADda \"~a\"~%" + +#: gnu/packages.scm:398 +#, scheme-format +msgid "~a: package not found~%" +msgstr "~a: pacote n=C3=A3o encontrado~%" + +#: gnu/services.scm:527 +#, scheme-format +msgid "no target of type '~a' for service ~s" +msgstr "" + +#: gnu/services.scm:538 gnu/services.scm:599 +#, scheme-format +msgid "more than one target service of type '~a'" +msgstr "" + +#: gnu/services.scm:589 +#, scheme-format +msgid "service of type '~a' not found" +msgstr "" + +#: gnu/system.scm:545 +#, scheme-format +msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" +msgstr "" + +#: gnu/system.scm:561 +#, scheme-format +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" + +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: n=C3=BAmero inv=C3=A1lido~%" + +#: gnu/system.scm:797 +#, fuzzy, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "op=C3=A7=C3=A3o desconhecida: ~a~%" + +#: gnu/services/shepherd.scm:166 +#, scheme-format +msgid "service '~a' provided more than once" +msgstr "" + +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + +#: gnu/system/shadow.scm:213 +#, scheme-format +msgid "supplementary group '~a' of user '~a' is undeclared" +msgstr "" + +#: gnu/system/shadow.scm:223 +#, scheme-format +msgid "primary group '~a' of user '~a' is undeclared" +msgstr "" + +#: guix/scripts.scm:52 +#, scheme-format +msgid "invalid argument: ~a~%" +msgstr "argumento inv=C3=A1lido: ~a~%" + +#: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 +#: guix/scripts/publish.scm:355 +#, scheme-format +msgid "~A: unrecognized option~%" +msgstr "~A: op=C3=A7=C3=A3o desconhecida~%" + +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "falha ao criar raiz de GC \"~a\": ~a~%" =20 -#: guix/scripts/build.scm:123 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "especifica=C3=A7=C3=A3o amb=C3=ADgua de pacote \"~a\"~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 +msgid "" +"\n" +" -L, --load-path=3DDIR prepend DIR to the package module search pat= h" +msgstr "" + +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" @@ -57,7 +187,16 @@ msgstr "" "\n" " -K, --keep-failed mant=C3=A9m a =C3=A1rvore de compilado de paco= tes falhos" =20 -#: guix/scripts/build.scm:125 +#: guix/scripts/build.scm:286 +#, fuzzy +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" +"\n" +" -n, --dry-run n=C3=A3o compila as deriva=C3=A7=C3=B5es" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" @@ -65,7 +204,7 @@ msgstr "" "\n" " -n, --dry-run n=C3=A3o compila as deriva=C3=A7=C3=B5es" =20 -#: guix/scripts/build.scm:127 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" @@ -73,7 +212,7 @@ msgstr "" "\n" " --fallback volta para compila=C3=A7=C3=A3o quando o subst= ituto falhar" =20 -#: guix/scripts/build.scm:129 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" @@ -82,13 +221,20 @@ msgstr "" " --no-substitutes compila, em vez de recorrer a substitutos\n" " pr=C3=A9-constru=C3=ADdos" =20 -#: guix/scripts/build.scm:131 +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" fetch substitute from URLS if they are authori= zed" +msgstr "" + +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" msgstr "" =20 -#: guix/scripts/build.scm:133 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" @@ -96,9 +242,10 @@ msgid "" msgstr "" "\n" " --max-silent-time=3DSEGUNDOS\n" -" marca compila=C3=A7=C3=A3o como falha ap=C3=B3= s SEGUNDOS de sil=C3=AAncio" +" marca compila=C3=A7=C3=A3o como falha ap=C3=B3= s SEGUNDOS de " +"sil=C3=AAncio" =20 -#: guix/scripts/build.scm:136 +#: guix/scripts/build.scm:302 #, fuzzy msgid "" "\n" @@ -106,9 +253,10 @@ msgid "" msgstr "" "\n" " --max-silent-time=3DSEGUNDOS\n" -" marca compila=C3=A7=C3=A3o como falha ap=C3=B3= s SEGUNDOS de sil=C3=AAncio" +" marca compila=C3=A7=C3=A3o como falha ap=C3=B3= s SEGUNDOS de " +"sil=C3=AAncio" =20 -#: guix/scripts/build.scm:138 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" @@ -116,20 +264,33 @@ msgstr "" "\n" " --verbosity=3DN=C3=8DVEL usa o N=C3=8DVEL de detalhamento dado" =20 -#: guix/scripts/build.scm:140 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" msgstr "" "\n" -" -c, --cores=3DN permite o uso de at=C3=A9 N n=C3=BAcleos de = CPU para compila=C3=A7=C3=A3o" +" -c, --cores=3DN permite o uso de at=C3=A9 N n=C3=BAcleos de = CPU para " +"compila=C3=A7=C3=A3o" =20 -#: guix/scripts/build.scm:206 -#, scheme-format -msgid "~a: not a number~%" -msgstr "~a: n=C3=A3o =C3=A9 um n=C3=BAmero~%" +#: guix/scripts/build.scm:310 +msgid "" +"\n" +" -M, --max-jobs=3DN allow at most N build jobs" +msgstr "" + +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 +#, fuzzy, scheme-format +msgid "not a number: '~a' option argument: ~a~%" +msgstr "n=C3=BAmero errado de argumentos~%" =20 -#: guix/scripts/build.scm:223 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" @@ -137,7 +298,7 @@ msgstr "" "Uso: guix build [OP=C3=87=C3=83O]... PACOTE-OU-DERIVA=C3=87=C3=83O...\n= " "Compila o PACOTE-OU-DERIVA=C3=87=C3=83O dado e returna seus caminhos de= sa=C3=ADda.\n" =20 -#: guix/scripts/build.scm:225 +#: guix/scripts/build.scm:439 #, fuzzy msgid "" "\n" @@ -146,7 +307,18 @@ msgstr "" "\n" " -e, --expression=3DEXPR compila o pacote que EXPR corresponder" =20 -#: guix/scripts/build.scm:227 +#: guix/scripts/build.scm:441 +#, fuzzy +msgid "" +"\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" +" FILE evaluates to" +msgstr "" +"\n" +" -e, --expression=3DEXPR compila o pacote que EXPR corresponder" + +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" @@ -154,7 +326,15 @@ msgstr "" "\n" " -S, --source compila as deriva=C3=A7=C3=B5es de fontes do p= acote" =20 -#: guix/scripts/build.scm:229 +#: guix/scripts/build.scm:446 +msgid "" +"\n" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" +" of \"package\", \"all\" (default), or \"transi= tive\"" +msgstr "" + +#: guix/scripts/build.scm:449 msgid "" "\n" " -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" @@ -162,22 +342,22 @@ msgstr "" "\n" " -s, --system=3DSISTEMA tenta compilar para SISTEMA. ex.: \"i686-lin= ux\"" =20 -#: guix/scripts/build.scm:231 +#: guix/scripts/build.scm:451 msgid "" "\n" " --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" msgstr "" "\n" -" --target=3DTRIO compila=C3=A7=C3=A3o cruzada para TRIO. ex.:= \"armel-linux-gnu\"" +" --target=3DTRIO compila=C3=A7=C3=A3o cruzada para TRIO. ex.:= \"armel-linux-gnu" +"\"" =20 -#: guix/scripts/build.scm:233 +#: guix/scripts/build.scm:453 msgid "" "\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" +" --no-grafts do not graft packages" msgstr "" =20 -#: guix/scripts/build.scm:236 +#: guix/scripts/build.scm:455 msgid "" "\n" " -d, --derivations return the derivation paths of the given packa= ges" @@ -185,26 +365,38 @@ msgstr "" "\n" " -d, --derivations retorna os caminhos de deriva=C3=A7=C3=A3o dos= pacotes dados" =20 -#: guix/scripts/build.scm:238 +#: guix/scripts/build.scm:457 +msgid "" +"\n" +" --check rebuild items to check for non-determinism iss= ues" +msgstr "" + +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" "\n" -" -r, --root=3DARQUIVO faz do ARQUIVO um link simb=C3=B3lico para o= resultado e\n" +" -r, --root=3DARQUIVO faz do ARQUIVO um link simb=C3=B3lico para o= resultado " +"e\n" " registra-o, como um coletor de lixo" =20 -#: guix/scripts/build.scm:241 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" msgstr "" =20 -#: guix/scripts/build.scm:246 guix/scripts/download.scm:53 -#: guix/scripts/package.scm:525 guix/scripts/gc.scm:58 -#: guix/scripts/hash.scm:55 guix/scripts/pull.scm:82 -#: guix/scripts/substitute-binary.scm:564 guix/scripts/system.scm:362 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 +#: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -212,10 +404,15 @@ msgstr "" "\n" " -h, --help exibe esta ajuda e sai" =20 -#: guix/scripts/build.scm:248 guix/scripts/download.scm:55 -#: guix/scripts/package.scm:527 guix/scripts/gc.scm:60 -#: guix/scripts/hash.scm:57 guix/scripts/pull.scm:84 -#: guix/scripts/substitute-binary.scm:566 guix/scripts/system.scm:364 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 +#: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -223,24 +420,24 @@ msgstr "" "\n" " -V, --version exibe informa=C3=A7=C3=B5es da vers=C3=A3o e s= ai" =20 -#: guix/scripts/build.scm:368 +#: guix/scripts/build.scm:498 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" +msgid "" +"invalid argument: '~a' option argument: ~a, ~\n" +"must be one of 'package', 'all', or 'transitive'~%" msgstr "" =20 -#: guix/scripts/build.scm:397 guix/scripts/download.scm:96 -#: guix/scripts/package.scm:763 guix/scripts/gc.scm:122 -#: guix/scripts/pull.scm:115 guix/scripts/system.scm:414 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "~A: unrecognized option~%" -msgstr "~A: op=C3=A7=C3=A3o desconhecida~%" +msgid "~s: not something we can build~%" +msgstr "" =20 -#: guix/scripts/build.scm:425 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "" =20 -#: guix/scripts/download.scm:44 +#: guix/scripts/download.scm:45 msgid "" "Usage: guix download [OPTION] URL\n" "Download the file at URL, add it to the store, and print its store path= \n" @@ -256,7 +453,7 @@ msgstr "" "Suporte a formatos: \"nix-base32\" (padr=C3=A3o), \"base32\" e \"base16= \"\n" "(\"hex\" e \"hexadecimal\" tamb=C3=A9m podem ser usados).\n" =20 -#: guix/scripts/download.scm:50 guix/scripts/hash.scm:50 +#: guix/scripts/download.scm:51 guix/scripts/hash.scm:51 msgid "" "\n" " -f, --format=3DFMT write the hash in the given format" @@ -264,105 +461,112 @@ msgstr "" "\n" " -f, --format=3DFMT escreve o hash no formato FMT dado" =20 -#: guix/scripts/download.scm:73 guix/scripts/hash.scm:75 +#: guix/scripts/download.scm:74 guix/scripts/hash.scm:76 #, scheme-format msgid "unsupported hash format: ~a~%" msgstr "sem suporte ao formato de hash: ~a~%" =20 -#: guix/scripts/download.scm:106 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 +#, scheme-format +msgid "~A: extraneous argument~%" +msgstr "~A: argumento estranho~%" + +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" +msgstr "~a: falha no download~%" + +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "~a: falha ao analisar URI~%" =20 -#: guix/scripts/download.scm:117 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "~a: falha no download~%" =20 -#: guix/scripts/package.scm:88 +#: guix/scripts/package.scm:102 #, scheme-format -msgid "failed to build the empty profile~%" -msgstr "falha ao compilar o perfil vazio~%" +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "Tente \"info '(guix) Invoking guix package'\" para mais informa=C3= =A7=C3=B5es.~%" =20 -# gera=C3=A7=C3=A3o, cria=C3=A7=C3=A3o? -#: guix/scripts/package.scm:97 +#: guix/scripts/package.scm:124 #, scheme-format -msgid "switching from generation ~a to ~a~%" -msgstr "trocando para gera=C3=A7=C3=A3o de ~a para ~a~%" +msgid "error: while creating directory `~a': ~a~%" +msgstr "erro: ao criar diret=C3=B3rio \"~a\": ~a~%" =20 -#: guix/scripts/package.scm:108 guix/scripts/package.scm:873 -#: guix/scripts/package.scm:985 +#: guix/scripts/package.scm:128 #, scheme-format -msgid "profile '~a' does not exist~%" -msgstr "perfil \"~a\" n=C3=A3o existe~%" +msgid "Please create the `~a' directory, with you as the owner.~%" +msgstr "Por favor, crie o diret=C3=B3rio \"~a\", com voc=C3=AA sendo o p= ropriet=C3=A1rio.~%" =20 -#: guix/scripts/package.scm:112 +#: guix/scripts/package.scm:135 #, scheme-format -msgid "nothing to do: already at the empty profile~%" -msgstr "nada a ser feito: j=C3=A1 est=C3=A1 no perfil vazio~%" - -#: guix/scripts/package.scm:197 -#, fuzzy, scheme-format -msgid "The following package would be removed:~%~{~a~%~}~%" -msgstr "O seguinte pacote seria removido:~% ~{~a~%~}~%" - -#: guix/scripts/package.scm:202 -#, fuzzy, scheme-format -msgid "The following package will be removed:~%~{~a~%~}~%" -msgstr "O seguinte pacote ser=C3=A1 removido:~% ~{~a~%~}~%" +msgid "error: directory `~a' is not owned by you~%" +msgstr "erro: diret=C3=B3rio \"~a\" n=C3=A3o tem voc=C3=AA como propriet= =C3=A1rio~%" =20 -#: guix/scripts/package.scm:214 +#: guix/scripts/package.scm:138 #, scheme-format -msgid "The following package would be installed:~%~{~a~%~}~%" -msgstr "O seguinte pacote seria instalado:~%~{~a~%~}~%" +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "Por favor, altere o propriet=C3=A1rio d \"~a\" para o usu=C3=A1r= io ~s.~%" =20 -#: guix/scripts/package.scm:219 +#: guix/scripts/package.scm:173 #, scheme-format -msgid "The following package will be installed:~%~{~a~%~}~%" -msgstr "O seguinte pacote ser=C3=A1 instalado:~%~{~a~%~}~%" +msgid "not removing generation ~a, which is current~%" +msgstr "" =20 -#: guix/scripts/package.scm:339 -#, scheme-format -msgid "package `~a' lacks output `~a'~%" -msgstr "pacote \"~a\" carece de mensagem de sa=C3=ADda \"~a\"~%" +# gera=C3=A7=C3=A3o, cria=C3=A7=C3=A3o? +#: guix/scripts/package.scm:180 +#, fuzzy, scheme-format +msgid "no matching generation~%" +msgstr "trocando para gera=C3=A7=C3=A3o de ~a para ~a~%" =20 -#: guix/scripts/package.scm:356 +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format -msgid "~a: package not found~%" -msgstr "~a: pacote n=C3=A3o encontrado~%" +msgid "invalid syntax: ~a~%" +msgstr "sintaxe inv=C3=A1lida: ~a~%" =20 -#: guix/scripts/package.scm:391 +#: guix/scripts/package.scm:208 #, scheme-format -msgid "looking for the latest release of GNU ~a..." -msgstr "procurando pelo =C3=BAltimo lan=C3=A7amento do GNU ~a..." +msgid "nothing to be done~%" +msgstr "nada para ser feito~%" =20 -#: guix/scripts/package.scm:395 -#, scheme-format -msgid "~a: note: using ~a but ~a is available upstream~%" -msgstr "~a: nota: usando ~a, mas ~a est=C3=A1 dispon=C3=ADvel no upstrea= m~%" +#: guix/scripts/package.scm:222 +#, fuzzy, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "pacote ~a no perfil~%" +msgstr[1] "pacote ~a no perfil~%" =20 -#: guix/scripts/package.scm:467 +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" -msgstr "As seguintes defini=C3=A7=C3=B5es de vari=C3=A1vel de ambiente p= odem ser necess=C3=A1rias:~%" +msgstr "" +"As seguintes defini=C3=A7=C3=B5es de vari=C3=A1vel de ambiente podem se= r necess=C3=A1rias:~%" =20 -#: guix/scripts/package.scm:483 +#: guix/scripts/package.scm:325 +#, fuzzy msgid "" -"Usage: guix package [OPTION]... PACKAGES...\n" -"Install, remove, or upgrade PACKAGES in a single transaction.\n" +"Usage: guix package [OPTION]...\n" +"Install, remove, or upgrade packages in a single transaction.\n" msgstr "" "Uso: guix package [OP=C3=87=C3=83O]... PACOTES...\n" "Instala, remove ou atualiza PACOTES em uma =C3=BAnica transa=C3=A7=C3=A3= o.\n" =20 -#: guix/scripts/package.scm:485 +#: guix/scripts/package.scm:327 +#, fuzzy msgid "" "\n" -" -i, --install=3DPACKAGE install PACKAGE" +" -i, --install PACKAGE ...\n" +" install PACKAGEs" msgstr "" "\n" " -i, --install=3DPACOTE instala PACOTE" =20 -#: guix/scripts/package.scm:487 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" @@ -372,24 +576,57 @@ msgstr "" " -e, --install-from-expression=3DEXP\n" " instala o pacote que EXPR corresponder" =20 -#: guix/scripts/package.scm:490 +#: guix/scripts/package.scm:333 +#, fuzzy +msgid "" +"\n" +" -f, --install-from-file=3DFILE\n" +" install the package that the code within FILE\= n" +" evaluates to" +msgstr "" +"\n" +" -e, --install-from-expression=3DEXP\n" +" instala o pacote que EXPR corresponder" + +#: guix/scripts/package.scm:337 +#, fuzzy msgid "" "\n" -" -r, --remove=3DPACKAGE remove PACKAGE" +" -r, --remove PACKAGE ...\n" +" remove PACKAGEs" msgstr "" "\n" " -r, --remove=3DPACOTE remove PACOTE" =20 -#: guix/scripts/package.scm:492 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" msgstr "" "\n" -" -u, --upgrade[=3DREGEXP] atualiza todos os pacotes instalados corresp= ondendo\n" +" -u, --upgrade[=3DREGEXP] atualiza todos os pacotes instalados " +"correspondendo\n" +" =C3=A0 REGEXP" + +#: guix/scripts/package.scm:342 +msgid "" +"\n" +" -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" +" from FILE" +msgstr "" + +#: guix/scripts/package.scm:345 +#, fuzzy +msgid "" +"\n" +" --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" +msgstr "" +"\n" +" -u, --upgrade[=3DREGEXP] atualiza todos os pacotes instalados " +"correspondendo\n" " =C3=A0 REGEXP" =20 -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -397,15 +634,17 @@ msgstr "" "\n" " --roll-back Reverte para a gera=C3=A7=C3=A3o anterior" =20 -#: guix/scripts/package.scm:496 +#: guix/scripts/package.scm:349 +#, fuzzy msgid "" "\n" -" --search-paths display needed environment variable definition= s" +" --search-paths[=3DKIND]\n" +" display needed environment variable definition= s" msgstr "" "\n" " --search-paths exibe defini=C3=A7=C3=B5es necess=C3=A1rias de= vari=C3=A1vel de ambiente" =20 -#: guix/scripts/package.scm:498 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" @@ -415,7 +654,7 @@ msgstr "" " -I, --list-generations[=3DPADR=C3=83O]\n" " lista cria=C3=A7=C3=B5es correspondendo ao PAD= R=C3=83O" =20 -#: guix/scripts/package.scm:501 +#: guix/scripts/package.scm:355 #, fuzzy msgid "" "\n" @@ -426,7 +665,18 @@ msgstr "" " -I, --list-generations[=3DPADR=C3=83O]\n" " lista cria=C3=A7=C3=B5es correspondendo ao PAD= R=C3=83O" =20 -#: guix/scripts/package.scm:504 +#: guix/scripts/package.scm:358 +#, fuzzy +msgid "" +"\n" +" -S, --switch-generation=3DPATTERN\n" +" switch to a generation matching PATTERN" +msgstr "" +"\n" +" -I, --list-generations[=3DPADR=C3=83O]\n" +" lista cria=C3=A7=C3=B5es correspondendo ao PAD= R=C3=83O" + +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" @@ -434,7 +684,7 @@ msgstr "" "\n" " -p, --profile=3DPERFIL usa PERFIL em vez do perfil padr=C3=A3o do u= su=C3=A1rio" =20 -#: guix/scripts/package.scm:507 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -442,7 +692,7 @@ msgstr "" "\n" " --bootstrap usa a inicializa=C3=A7=C3=A3o do Guile para co= mpilar o perfil" =20 -#: guix/scripts/package.scm:509 guix/scripts/pull.scm:75 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" @@ -450,7 +700,7 @@ msgstr "" "\n" " --verbose produz uma sa=C3=ADda mais detalhada" =20 -#: guix/scripts/package.scm:512 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" @@ -458,7 +708,7 @@ msgstr "" "\n" " -s, --search=3DREGEXP pesquisa na sinopse e descri=C3=A7=C3=A3o us= ando REGEXP" =20 -#: guix/scripts/package.scm:514 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" @@ -468,7 +718,7 @@ msgstr "" " -I, --list-installed[=3DREGEXP]\n" " lista pacotes instalados correspondentes a REG= EXP" =20 -#: guix/scripts/package.scm:517 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" @@ -478,76 +728,37 @@ msgstr "" " -A, --list-available[=3DREGEXP]\n" " lista pacotes dispon=C3=ADveis correspondentes= a REGEXP" =20 -#: guix/scripts/package.scm:520 +#: guix/scripts/package.scm:377 #, fuzzy msgid "" "\n" -" --show=3DPACKAGE show details about PACKAGE" +" --show=3DPACKAGE show details about PACKAGE" msgstr "" "\n" " -i, --install=3DPACOTE instala PACOTE" =20 -#: guix/scripts/package.scm:767 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "~A: argumento estranho~%" - -#: guix/scripts/package.scm:782 -#, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "Tente \"info '(guix) Invoking guix package'\" para mais informa=C3= =A7=C3=B5es.~%" - -#: guix/scripts/package.scm:804 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "erro: ao criar diret=C3=B3rio \"~a\": ~a~%" - -#: guix/scripts/package.scm:808 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "Por favor, crie o diret=C3=B3rio \"~a\", com voc=C3=AA sendo o p= ropriet=C3=A1rio.~%" - -#: guix/scripts/package.scm:815 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "erro: diret=C3=B3rio \"~a\" n=C3=A3o tem voc=C3=AA como propriet= =C3=A1rio~%" - -#: guix/scripts/package.scm:818 +#: guix/scripts/package.scm:472 #, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "Por favor, altere o propriet=C3=A1rio d \"~a\" para o usu=C3=A1r= io ~s.~%" +msgid "~a: unsupported kind of search path~%" +msgstr "" =20 -#: guix/scripts/package.scm:843 +# gera=C3=A7=C3=A3o, cria=C3=A7=C3=A3o? +#: guix/scripts/package.scm:755 #, fuzzy, scheme-format -msgid "deleting ~a~%" -msgstr "Cria=C3=A7=C3=A3o ~a\t~a~%" - -#: guix/scripts/package.scm:896 guix/scripts/package.scm:1001 -#, scheme-format -msgid "invalid syntax: ~a~%" -msgstr "sintaxe inv=C3=A1lida: ~a~%" - -#: guix/scripts/package.scm:925 -#, scheme-format -msgid "nothing to be done~%" -msgstr "nada para ser feito~%" +msgid "cannot switch to generation '~a'~%" +msgstr "trocando para gera=C3=A7=C3=A3o de ~a para ~a~%" =20 -#: guix/scripts/package.scm:948 +#: guix/scripts/package.scm:771 #, scheme-format -msgid "~a package in profile~%" -msgstr "pacote ~a no perfil~%" - -#: guix/scripts/package.scm:963 -#, fuzzy, scheme-format -msgid "Generation ~a\t~a" -msgstr "Cria=C3=A7=C3=A3o ~a\t~a~%" +msgid "would install new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/package.scm:970 +#: guix/scripts/package.scm:773 #, scheme-format -msgid "~a\t(current)~%" +msgid "installing new manifest from '~a' with ~d entries~%" msgstr "" =20 -#: guix/scripts/gc.scm:39 +#: guix/scripts/gc.scm:40 msgid "" "Usage: guix gc [OPTION]... PATHS...\n" "Invoke the garbage collector.\n" @@ -555,7 +766,7 @@ msgstr "" "Uso: guix gc [OP=C3=87=C3=83O]... CAMINHOS...\n" "Chama o coletor de lixo.\n" =20 -#: guix/scripts/gc.scm:41 +#: guix/scripts/gc.scm:42 msgid "" "\n" " -C, --collect-garbage[=3DMIN]\n" @@ -565,7 +776,7 @@ msgstr "" " -C, --collect-garbage[=3DM=C3=8DN]\n" " coleta pelo menos M=C3=8DN bytes de lixo" =20 -#: guix/scripts/gc.scm:44 +#: guix/scripts/gc.scm:45 msgid "" "\n" " -d, --delete attempt to delete PATHS" @@ -573,17 +784,23 @@ msgstr "" "\n" " -d, --delete tente excluir CAMINHOS" =20 -# s=C3=A3o "arquivos inalcan=C3=A7=C3=A1veis", segundo 'info guix', sobr= e o 'gc' -#: guix/scripts/gc.scm:46 +#: guix/scripts/gc.scm:47 msgid "" "\n" -" --list-dead list dead paths" +" --optimize optimize the store by deduplicating identical = files" msgstr "" -"\n" + +# s=C3=A3o "arquivos inalcan=C3=A7=C3=A1veis", segundo 'info guix', sobr= e o 'gc' +#: guix/scripts/gc.scm:49 +msgid "" +"\n" +" --list-dead list dead paths" +msgstr "" +"\n" " --list-dead lista caminhos mortos (inalcan=C3=A7=C3=A1veis= )" =20 # s=C3=A3o arquivos no armazenamento alcan=C3=A7=C3=A1veis, segundo 'inf= o guix', sobre o 'gc' -#: guix/scripts/gc.scm:48 +#: guix/scripts/gc.scm:51 msgid "" "\n" " --list-live list live paths" @@ -591,7 +808,7 @@ msgstr "" "\n" " --list-live lista caminhos vivos (ativos)" =20 -#: guix/scripts/gc.scm:51 +#: guix/scripts/gc.scm:54 msgid "" "\n" " --references list the references of PATHS" @@ -599,7 +816,7 @@ msgstr "" "\n" " --references lista as refer=C3=AAncias de CAMINHOS" =20 -#: guix/scripts/gc.scm:53 +#: guix/scripts/gc.scm:56 msgid "" "\n" " -R, --requisites list the requisites of PATHS" @@ -607,7 +824,7 @@ msgstr "" "\n" " -R, --requisites lista os requisitos de CAMINHOS" =20 -#: guix/scripts/gc.scm:55 +#: guix/scripts/gc.scm:58 msgid "" "\n" " --referrers list the referrers of PATHS" @@ -615,12 +832,41 @@ msgstr "" "\n" " --referrers lista as refer=C3=AAncias de CAMINHOS" =20 -#: guix/scripts/gc.scm:84 +#: guix/scripts/gc.scm:61 +msgid "" +"\n" +" --verify[=3DOPTS] verify the integrity of the store; OPTS is a= \n" +" comma-separated combination of 'repair' and\n" +" 'contents'" +msgstr "" + +# s=C3=A3o "arquivos inalcan=C3=A7=C3=A1veis", segundo 'info guix', sobr= e o 'gc' +#: guix/scripts/gc.scm:65 +#, fuzzy +msgid "" +"\n" +" --list-failures list cached build failures" +msgstr "" +"\n" +" --list-dead lista caminhos mortos (inalcan=C3=A7=C3=A1veis= )" + +#: guix/scripts/gc.scm:67 +msgid "" +"\n" +" --clear-failures remove PATHS from the set of cached failures" +msgstr "" + +#: guix/scripts/gc.scm:96 #, scheme-format msgid "invalid amount of storage: ~a~%" msgstr "quantidade inv=C3=A1lida de armazenamento: ~a~%" =20 -#: guix/scripts/hash.scm:45 +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "~A: argumento estranho~%" + +#: guix/scripts/hash.scm:46 #, fuzzy msgid "" "Usage: guix hash [OPTION] FILE\n" @@ -635,28 +881,114 @@ msgstr "" "Suporte a formatos: \"nix-base32\" (padr=C3=A3o), \"base32\" e \"base16= \"\n" "(\"hex\" e \"hexadecimal\" tamb=C3=A9m podem ser usados).\n" =20 -#: guix/scripts/hash.scm:52 +#: guix/scripts/hash.scm:53 msgid "" "\n" " -r, --recursive compute the hash on FILE recursively" msgstr "" =20 -#: guix/scripts/hash.scm:103 +#: guix/scripts/hash.scm:104 #, scheme-format msgid "unrecognized option: ~a~%" msgstr "op=C3=A7=C3=A3o desconhecida: ~a~%" =20 -#: guix/scripts/hash.scm:134 guix/ui.scm:233 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "n=C3=BAmero errado de argumentos~%" =20 -#: guix/scripts/pull.scm:73 +#: guix/scripts/import.scm:85 +#, fuzzy +msgid "" +"Usage: guix import IMPORTER ARGS ...\n" +"Run IMPORTER with ARGS.\n" +msgstr "" +"Uso: guix COMANDO ARGUMENTOS...\n" +"Executa COMANDO com ARGUMENTOS.\n" + +#: guix/scripts/import.scm:88 +#, fuzzy +msgid "IMPORTER must be one of the importers listed below:\n" +msgstr "COMANDO deve ser um dos subcomandos listados abaixo:\n" + +#: guix/scripts/import.scm:102 +#, fuzzy, scheme-format +msgid "guix import: missing importer name~%" +msgstr "guix: faltando um nome de comando~%" + +#: guix/scripts/import.scm:113 +#, scheme-format +msgid "guix import: invalid importer~%" +msgstr "" + +#: guix/scripts/import/cran.scm:42 +msgid "" +"Usage: guix import cran PACKAGE-NAME\n" +"Import and convert the CRAN package for PACKAGE-NAME.\n" +msgstr "" + +#: guix/scripts/import/cran.scm:44 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/cran.scm:94 +#, fuzzy, scheme-format +msgid "failed to download description for package '~a'~%" +msgstr "falha ao conectar em \"~a\": ~a~%" + +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 +#, fuzzy, scheme-format +msgid "too few arguments~%" +msgstr "n=C3=BAmero errado de argumentos~%" + +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 +#, fuzzy, scheme-format +msgid "too many arguments~%" +msgstr "n=C3=BAmero errado de argumentos~%" + +#: guix/scripts/import/elpa.scm:41 +msgid "" +"Usage: guix import elpa PACKAGE-NAME\n" +"Import the latest package named PACKAGE-NAME from an ELPA repository.\n= " +msgstr "" + +#: guix/scripts/import/elpa.scm:43 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/elpa.scm:45 +#, fuzzy +msgid "" +"\n" +" -h, --help display this help and exit" +msgstr "" +"\n" +" -h, --help exibe esta ajuda e sai" + +#: guix/scripts/import/elpa.scm:47 +#, fuzzy +msgid "" +"\n" +" -V, --version display version information and exit" +msgstr "" +"\n" +" -V, --version exibe informa=C3=A7=C3=B5es da vers=C3=A3o e s= ai" + +#: guix/scripts/import/elpa.scm:92 +#, fuzzy, scheme-format +msgid "failed to download package '~a'~%" +msgstr "falha ao conectar em \"~a\": ~a~%" + +#: guix/scripts/pull.scm:74 msgid "" "Usage: guix pull [OPTION]...\n" "Download and deploy the latest version of Guix.\n" @@ -664,143 +996,165 @@ msgstr "" "Uso: guix pull [OP=C3=87=C3=83O]...\n" "Baixa e implanta a =C3=BAltima vers=C3=A3o do Guix.\n" =20 -#: guix/scripts/pull.scm:77 +#: guix/scripts/pull.scm:78 msgid "" "\n" " --url=3DURL download the Guix tarball from URL" msgstr "" =20 -#: guix/scripts/pull.scm:79 +#: guix/scripts/pull.scm:80 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the new Guix" msgstr "" "\n" -" --bootstrap usa a inicializa=C3=A7=C3=A3o do Guile para co= mpilar o novo Guix" +" --bootstrap usa a inicializa=C3=A7=C3=A3o do Guile para co= mpilar o novo " +"Guix" + +#: guix/scripts/pull.scm:134 +msgid "tarball did not produce a single source directory" +msgstr "" =20 -#: guix/scripts/pull.scm:117 +#: guix/scripts/pull.scm:152 #, scheme-format -msgid "~A: unexpected argument~%" -msgstr "~A: argumento inesperado~%" +msgid "unpacking '~a'...~%" +msgstr "" =20 -#: guix/scripts/pull.scm:126 -msgid "failed to download up-to-date source, exiting\n" -msgstr "falha ao baixar fonte atualizada; saindo\n" +#: guix/scripts/pull.scm:161 +msgid "failed to unpack source code" +msgstr "" + +#: guix/scripts/pull.scm:204 +msgid "Guix already up to date\n" +msgstr "Guix j=C3=A1 est=C3=A1 atualizado\n" =20 -#: guix/scripts/pull.scm:145 +#: guix/scripts/pull.scm:209 #, scheme-format msgid "updated ~a successfully deployed under `~a'~%" msgstr "~a atualizado foi implantado com sucesso em \"~a\"~%" =20 -#: guix/scripts/pull.scm:148 +#: guix/scripts/pull.scm:212 #, scheme-format msgid "failed to update Guix, check the build log~%" msgstr "falha ao atualizar Guix; verifique o log de compila=C3=A7=C3=A3o= ~%" =20 -#: guix/scripts/pull.scm:150 -msgid "Guix already up to date\n" -msgstr "Guix j=C3=A1 est=C3=A1 atualizado\n" +#: guix/scripts/pull.scm:221 +#, scheme-format +msgid "~A: unexpected argument~%" +msgstr "~A: argumento inesperado~%" + +#: guix/scripts/pull.scm:230 +msgid "failed to download up-to-date source, exiting\n" +msgstr "falha ao baixar fonte atualizada; saindo\n" =20 -#: guix/scripts/substitute-binary.scm:80 +#: guix/scripts/substitute.scm:103 #, scheme-format msgid "authentication and authorization of substitutes disabled!~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:163 +#: guix/scripts/substitute.scm:179 #, fuzzy, scheme-format msgid "download from '~a' failed: ~a, ~s~%" msgstr "~a: falha no download~%" =20 -#: guix/scripts/substitute-binary.scm:178 -#, scheme-format -msgid "while fetching ~a: server is unresponsive~%" +#: guix/scripts/substitute.scm:191 +#, fuzzy, scheme-format +msgid "while fetching ~a: server is somewhat slow~%" msgstr "enquanto obtinha ~a: servidor n=C3=A3o est=C3=A1 respondendo~%" =20 -#: guix/scripts/substitute-binary.scm:180 +#: guix/scripts/substitute.scm:193 #, scheme-format msgid "try `--no-substitutes' if the problem persists~%" msgstr "Tente \"--no-substitutes\" se o problema persistir~%" =20 -#: guix/scripts/substitute-binary.scm:244 +#: guix/scripts/substitute.scm:266 #, fuzzy, scheme-format -msgid "signature version must be a number: ~a~%" +msgid "signature version must be a number: ~s~%" msgstr "Falha na verifica=C3=A7=C3=A3o de assinatura de \"~a\"~%" =20 -#: guix/scripts/substitute-binary.scm:248 +#: guix/scripts/substitute.scm:270 #, fuzzy, scheme-format msgid "unsupported signature version: ~a~%" msgstr "sem suporte ao formato de hash: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:256 +#: guix/scripts/substitute.scm:278 #, fuzzy, scheme-format msgid "signature is not a valid s-expression: ~s~%" msgstr "falha ao ler a express=C3=A3o ~s: ~s~%" =20 -#: guix/scripts/substitute-binary.scm:260 +#: guix/scripts/substitute.scm:282 #, fuzzy, scheme-format msgid "invalid format of the signature field: ~a~%" msgstr "quantidade inv=C3=A1lida de armazenamento: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:295 +#: guix/scripts/substitute.scm:317 #, fuzzy, scheme-format msgid "invalid signature for '~a'~%" msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:297 +#: guix/scripts/substitute.scm:319 #, scheme-format msgid "hash mismatch for '~a'~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:299 +#: guix/scripts/substitute.scm:321 #, scheme-format msgid "'~a' is signed with an unauthorized key~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:301 +#: guix/scripts/substitute.scm:323 #, scheme-format msgid "signature on '~a' is corrupt~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:338 +#: guix/scripts/substitute.scm:361 #, scheme-format msgid "substitute at '~a' lacks a signature~%" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:526 +#: guix/scripts/substitute.scm:537 #, scheme-format -msgid "Downloading, please wait...~%" -msgstr "Baixando, por favor aguarde...~%" +msgid "updating list of substitutes from '~a'... ~5,1f%" +msgstr "" + +#: guix/scripts/substitute.scm:585 +#, scheme-format +msgid "~s: unsupported server URI scheme~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:528 +#: guix/scripts/substitute.scm:596 #, scheme-format -msgid "(Please consider upgrading Guile to get proper progress report.)~= %" -msgstr "(Por favor, considere atualizar o Guile para obter o relat=C3=B3= rio adequado do progresso.)~%" +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:545 +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "erro na busca pelo nome da m=C3=A1quina: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:554 +#: guix/scripts/substitute.scm:748 +#, fuzzy msgid "" -"Usage: guix substitute-binary [OPTION]...\n" +"Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" "Uso: guix substitute-binary [OP=C3=87=C3=83O]...\n" -"Ferramenta interna para substituir um bin=C3=A1rio pr=C3=A9-compilado p= ara uma compila=C3=A7=C3=A3o local.\n" +"Ferramenta interna para substituir um bin=C3=A1rio pr=C3=A9-compilado p= ara uma " +"compila=C3=A7=C3=A3o local.\n" =20 -#: guix/scripts/substitute-binary.scm:556 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" " store file names passed on the standard input" msgstr "" "\n" -" --query relata a disponibilidade de substitutos para o= s nomes\n" +" --query relata a disponibilidade de substitutos para o= s " +"nomes\n" " de arquivos de armazenamento passados na entra= da\n" " padr=C3=A3o" =20 -#: guix/scripts/substitute-binary.scm:559 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -809,19 +1163,17 @@ msgid "" msgstr "" "\n" " --substitute ARQUIVO-ARMAZENAMENTO DESTINO\n" -" baixa ARQUIVO-ARMAZENAMENTO e armazena-o como = um Nar\n" +" baixa ARQUIVO-ARMAZENAMENTO e armazena-o como = um " +"Nar\n" " no arquivo DESTINO" =20 -#: guix/scripts/substitute-binary.scm:604 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" -msgstr "" - -#: guix/scripts/substitute-binary.scm:625 -#, scheme-format -msgid "failed to look up host '~a' (~a), substituter disabled~%" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" msgstr "" =20 -#: guix/scripts/substitute-binary.scm:732 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "~a: op=C3=A7=C3=B5es desconhecidas~%" @@ -846,277 +1198,1081 @@ msgstr "" msgid "error: corrupt signature data: ~a~%" msgstr "" =20 -#: guix/scripts/authenticate.scm:126 +#: guix/scripts/authenticate.scm:120 msgid "" "Usage: guix authenticate OPTION...\n" "Sign or verify the signature on the given file. This tool is meant to\= n" "be used internally by 'guix-daemon'.\n" msgstr "" =20 -#: guix/scripts/authenticate.scm:132 +#: guix/scripts/authenticate.scm:126 #, fuzzy msgid "wrong arguments" msgstr "n=C3=BAmero errado de argumentos~%" =20 -#: guix/scripts/system.scm:74 +#: guix/scripts/system.scm:110 #, fuzzy, scheme-format -msgid "failed to open operating system file '~a': ~a~%" -msgstr "falha ao conectar em \"~a\": ~a~%" +msgid "failed to register '~a' under '~a'~%" +msgstr "falha ao criar raiz de GC \"~a\": ~a~%" =20 -#: guix/scripts/system.scm:78 guix/ui.scm:238 +#: guix/scripts/system.scm:142 #, fuzzy, scheme-format -msgid "~a: ~a~%" -msgstr "~a~%" +msgid "failed to install GRUB on device '~a'~%" +msgstr "falha ao instalar local: ~a~%" =20 -#: guix/scripts/system.scm:81 -#, fuzzy, scheme-format -msgid "failed to load operating system file '~a': ~s~%" -msgstr "falha ao conectar em \"~a\": ~a~%" +#: guix/scripts/system.scm:160 +#, scheme-format +msgid "initializing the current root file system~%" +msgstr "" =20 -#: guix/scripts/system.scm:116 -#, fuzzy, scheme-format -msgid "failed to register '~a' under '~a'~%" -msgstr "falha ao criar raiz de GC \"~a\": ~a~%" +#: guix/scripts/system.scm:174 +#, scheme-format +msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" +msgstr "" =20 -#: guix/scripts/system.scm:144 +#: guix/scripts/system.scm:219 #, scheme-format -msgid "initializing the current root file system~%" +msgid "while talking to shepherd: ~a~%" msgstr "" =20 -#: guix/scripts/system.scm:162 guix/scripts/system.scm:318 +#: guix/scripts/system.scm:265 #, fuzzy, scheme-format -msgid "failed to install GRUB on device '~a'~%" -msgstr "falha ao instalar local: ~a~%" +msgid "unloading service '~a'...~%" +msgstr "Baixando, por favor aguarde...~%" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" =20 -#: guix/scripts/system.scm:197 +#: guix/scripts/system.scm:294 #, scheme-format msgid "activating system...~%" msgstr "" =20 -#: guix/scripts/system.scm:236 +#: guix/scripts/system.scm:380 +msgid "the DAG of services" +msgstr "" + +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" +msgstr "" + +#: guix/scripts/system.scm:414 #, fuzzy, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "op=C3=A7=C3=A3o desconhecida: ~a~%" +msgid " file name: ~a~%" +msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" + +#: guix/scripts/system.scm:415 +#, scheme-format +msgid " canonical file name: ~a~%" +msgstr "" + +#. TRANSLATORS: Please preserve the two-space indentation. +#: guix/scripts/system.scm:417 +#, fuzzy, scheme-format +msgid " label: ~a~%" +msgstr "~a~%" + +#: guix/scripts/system.scm:418 +#, scheme-format +msgid " root device: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:419 +#, scheme-format +msgid " kernel: ~a~%" +msgstr "" =20 -#: guix/scripts/system.scm:323 +#: guix/scripts/system.scm:527 #, fuzzy, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "falha ao conectar em \"~a\": ~a~%" =20 -#: guix/scripts/system.scm:339 +#: guix/scripts/system.scm:566 msgid "" -"Usage: guix system [OPTION] ACTION FILE\n" +"Usage: guix system [OPTION] ACTION [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" msgstr "" =20 -#: guix/scripts/system.scm:342 +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 msgid "The valid values for ACTION are:\n" msgstr "" =20 -#: guix/scripts/system.scm:343 -msgid " - 'reconfigure', switch to a new operating system configuration= \n" +#: guix/scripts/system.scm:571 +msgid " reconfigure switch to a new operating system configuratio= n\n" msgstr "" =20 -#: guix/scripts/system.scm:345 -msgid " - 'build', build the operating system without installing anythi= ng\n" +#: guix/scripts/system.scm:573 +msgid " list-generations list the system generations\n" msgstr "" =20 -#: guix/scripts/system.scm:347 -msgid " - 'vm', build a virtual machine image that shares the host's st= ore\n" +#: guix/scripts/system.scm:575 +msgid "" +" build build the operating system without installing anyth= ing\n" +msgstr "" + +#: guix/scripts/system.scm:577 +msgid " container build a container that shares the host's stor= e\n" +msgstr "" + +#: guix/scripts/system.scm:579 +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" +msgstr "" + +#: guix/scripts/system.scm:581 +msgid " vm-image build a freestanding virtual machine image\n" msgstr "" =20 -#: guix/scripts/system.scm:349 -msgid " - 'vm-image', build a freestanding virtual machine image\n" +#: guix/scripts/system.scm:583 +msgid " disk-image build a disk image, suitable for a USB stick\= n" msgstr "" =20 -#: guix/scripts/system.scm:351 -msgid " - 'disk-image', build a disk image, suitable for a USB stick\n" +#: guix/scripts/system.scm:585 +msgid " init initialize a root file system to run GNU\n" +msgstr "" + +#: guix/scripts/system.scm:587 +msgid " extension-graph emit the service extension graph in Dot forma= t\n" +msgstr "" + +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" +msgstr "" + +#: guix/scripts/system.scm:593 +#, fuzzy +msgid "" +"\n" +" -d, --derivation return the derivation of the given system" msgstr "" +"\n" +" -d, --derivations retorna os caminhos de deriva=C3=A7=C3=A3o dos= pacotes dados" =20 -#: guix/scripts/system.scm:353 -msgid " - 'init', initialize a root file system to run GNU.\n" +#: guix/scripts/system.scm:595 +msgid "" +"\n" +" --on-error=3DSTRATEGY\n" +" apply STRATEGY when an error occurs while read= ing " +"FILE" msgstr "" =20 -#: guix/scripts/system.scm:357 +#: guix/scripts/system.scm:598 msgid "" "\n" " --image-size=3DSIZE for 'vm-image', produce an image of SIZE" msgstr "" =20 -#: guix/scripts/system.scm:359 +#: guix/scripts/system.scm:600 msgid "" "\n" " --no-grub for 'init', do not install GRUB" msgstr "" =20 -#: guix/scripts/system.scm:422 +#: guix/scripts/system.scm:602 +msgid "" +"\n" +" --share=3DSPEC for 'vm', share host file system according t= o SPEC" +msgstr "" + +#: guix/scripts/system.scm:604 +msgid "" +"\n" +" --expose=3DSPEC for 'vm', expose host file system according = to SPEC" +msgstr "" + +#: guix/scripts/system.scm:606 +msgid "" +"\n" +" --full-boot for 'vm', make a full boot sequence" +msgstr "" + +#: guix/scripts/system.scm:690 +#, scheme-format +msgid "no configuration file specified~%" +msgstr "" + +#: guix/scripts/system.scm:753 #, fuzzy, scheme-format msgid "~a: unknown action~%" msgstr "~A: pacote desconhecido~%" =20 -#: guix/scripts/system.scm:439 +#: guix/scripts/system.scm:768 #, fuzzy, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "n=C3=BAmero errado de argumentos~%" =20 -#: guix/scripts/system.scm:459 +#: guix/scripts/system.scm:773 +#, fuzzy, scheme-format +msgid "guix system: missing command name~%" +msgstr "guix: faltando um nome de comando~%" + +#: guix/scripts/system.scm:775 +#, fuzzy, scheme-format +msgid "Try 'guix system --help' for more information.~%" +msgstr "Tente \"guix --help\" para mais informa=C3=A7=C3=B5es.~%" + +#: guix/scripts/lint.scm:126 #, scheme-format -msgid "no configuration file specified~%" +msgid "Available checkers:~%" msgstr "" =20 -#: guix/gnu-maintenance.scm:373 -#, scheme-format -msgid "signature verification failed for `~a'~%" -msgstr "Falha na verifica=C3=A7=C3=A3o de assinatura de \"~a\"~%" +#: guix/scripts/lint.scm:146 +msgid "description should not be empty" +msgstr "" =20 -#: guix/gnu-maintenance.scm:375 -#, scheme-format -msgid "(could be because the public key is not in your keyring)~%" -msgstr "(poderia ser porque a chave p=C3=BAblica n=C3=A3o est=C3=A1 no s= eu chaveiro)~%" +#: guix/scripts/lint.scm:156 +msgid "Texinfo markup in description is invalid" +msgstr "" =20 -#: guix/gnu-maintenance.scm:450 -#, scheme-format -msgid "~a: could not locate source file" -msgstr "~a: n=C3=A3o foi poss=C3=ADvel localizar um arquivo fonte" +#: guix/scripts/lint.scm:164 +msgid "description should start with an upper-case letter or digit" +msgstr "" =20 -#: guix/gnu-maintenance.scm:455 +#: guix/scripts/lint.scm:180 #, scheme-format -msgid "~a: ~a: no `version' field in source; skipping~%" -msgstr "~a: ~a: sem o campo \"version\" no fonte; pulando~%" +msgid "" +"sentences in description should be followed ~\n" +"by two spaces; possible infraction~p at ~{~a~^, ~}" +msgstr "" =20 -#: guix/ui.scm:131 -#, scheme-format -msgid "failed to install locale: ~a~%" -msgstr "falha ao instalar local: ~a~%" +#: guix/scripts/lint.scm:204 +msgid "pkg-config should probably be a native input" +msgstr "" =20 -#: guix/ui.scm:150 -msgid "" -"Copyright (C) 2014 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" -"This is free software: you are free to change and redistribute it.\n" -"There is NO WARRANTY, to the extent permitted by law.\n" +#: guix/scripts/lint.scm:219 +msgid "synopsis should not be empty" msgstr "" =20 -#: guix/ui.scm:158 -#, scheme-format -msgid "" -"\n" -"Report bugs to: ~a." +#: guix/scripts/lint.scm:227 +msgid "no period allowed at the end of the synopsis" msgstr "" -"\n" -"Relate erros para: ~a." =20 -#: guix/ui.scm:160 -#, scheme-format -msgid "" -"\n" -"~a home page: <~a>" +#: guix/scripts/lint.scm:239 +msgid "no article allowed at the beginning of the synopsis" msgstr "" -"\n" -"Site do ~a: <~a>" =20 -#: guix/ui.scm:162 -msgid "" -"\n" -"General help using GNU software: " +#: guix/scripts/lint.scm:246 +msgid "synopsis should be less than 80 characters long" msgstr "" -"\n" -"Ajuda em geral usando softwares GNU: " =20 -#: guix/ui.scm:169 -#, scheme-format -msgid "~a: invalid number~%" -msgstr "~a: n=C3=BAmero inv=C3=A1lido~%" +#: guix/scripts/lint.scm:252 +msgid "synopsis should start with an upper-case letter or digit" +msgstr "" =20 -#: guix/ui.scm:186 -#, scheme-format -msgid "invalid number: ~a~%" -msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" +#: guix/scripts/lint.scm:259 +msgid "synopsis should not start with the package name" +msgstr "" =20 -#: guix/ui.scm:201 +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 #, scheme-format -msgid "unknown unit: ~a~%" -msgstr "unidade desconhecida: ~a~%" +msgid "URI ~a not reachable: ~a (~s)" +msgstr "" =20 -#: guix/ui.scm:212 -#, scheme-format +#: guix/scripts/lint.scm:372 +#, fuzzy, scheme-format +msgid "URI ~a domain not found: ~a" +msgstr "guix: ~a: comando n=C3=A3o encontrado~%" + +#: guix/scripts/lint.scm:380 +#, scheme-format +msgid "URI ~a unreachable: ~a" +msgstr "" + +#: guix/scripts/lint.scm:406 +#, fuzzy +msgid "invalid value for home page" +msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" + +#: guix/scripts/lint.scm:409 +#, fuzzy, scheme-format +msgid "invalid home page URL: ~s" +msgstr "" +"\n" +"Site do ~a: <~a>" + +#: guix/scripts/lint.scm:429 +msgid "file names of patches should start with the package name" +msgstr "" + +#: guix/scripts/lint.scm:466 +#, scheme-format +msgid "~a: ~a: proposed synopsis: ~s~%" +msgstr "" + +#: guix/scripts/lint.scm:478 +#, scheme-format +msgid "~a: ~a: proposed description:~% \"~a\"~%" +msgstr "" + +#: guix/scripts/lint.scm:515 +msgid "all the source URIs are unreachable:" +msgstr "" + +#: guix/scripts/lint.scm:538 +msgid "the source file name should contain the package name" +msgstr "" + +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~a" +msgstr "falha ao criar raiz de GC \"~a\": ~a~%" + +#: guix/scripts/lint.scm:557 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~s~%" +msgstr "falha ao ler a express=C3=A3o ~s: ~s~%" + +#: guix/scripts/lint.scm:567 +msgid "invalid license field" +msgstr "" + +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "falha ao instalar local: ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 +#, scheme-format +msgid "tabulation on line ~a, column ~a" +msgstr "" + +#: guix/scripts/lint.scm:647 +#, scheme-format +msgid "trailing white space on line ~a" +msgstr "" + +#: guix/scripts/lint.scm:657 +#, scheme-format +msgid "line ~a is way too long (~a characters)" +msgstr "" + +#: guix/scripts/lint.scm:668 +#, scheme-format +msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" +msgstr "" + +#: guix/scripts/lint.scm:723 +msgid "Validate package descriptions" +msgstr "" + +#: guix/scripts/lint.scm:727 +msgid "Validate synopsis & description of GNU packages" +msgstr "" + +#: guix/scripts/lint.scm:731 +msgid "Identify inputs that should be native inputs" +msgstr "" + +#: guix/scripts/lint.scm:735 +msgid "Validate file names and availability of patches" +msgstr "" + +#: guix/scripts/lint.scm:739 +msgid "Validate home-page URLs" +msgstr "" + +#. TRANSLATORS: is the name of a data type and must not be +#. translated. +#: guix/scripts/lint.scm:745 +msgid "Make sure the 'license' field is a or a list thereof" +msgstr "" + +#: guix/scripts/lint.scm:750 +msgid "Validate source URLs" +msgstr "" + +#: guix/scripts/lint.scm:754 +msgid "Validate file names of sources" +msgstr "" + +#: guix/scripts/lint.scm:758 +msgid "Report failure to compile a package to a derivation" +msgstr "" + +#: guix/scripts/lint.scm:762 +msgid "Validate package synopses" +msgstr "" + +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 +msgid "Look for formatting issues in the source" +msgstr "" + +#: guix/scripts/lint.scm:796 +msgid "" +"Usage: guix lint [OPTION]... [PACKAGE]...\n" +"Run a set of checkers on the specified package; if none is specified,\n= " +"run the checkers on all packages.\n" +msgstr "" + +#: guix/scripts/lint.scm:799 +msgid "" +"\n" +" -c, --checkers=3DCHECKER1,CHECKER2...\n" +" only run the specified checkers" +msgstr "" + +#: guix/scripts/lint.scm:804 +msgid "" +"\n" +" -l, --list-checkers display the list of available lint checkers" +msgstr "" + +#: guix/scripts/lint.scm:824 +#, fuzzy, scheme-format +msgid "~a: invalid checker~%" +msgstr "~a: n=C3=BAmero inv=C3=A1lido~%" + +#: guix/scripts/publish.scm:52 +#, scheme-format +msgid "" +"Usage: guix publish [OPTION]...\n" +"Publish ~a over HTTP.\n" +msgstr "" + +#: guix/scripts/publish.scm:54 +msgid "" +"\n" +" -p, --port=3DPORT listen on PORT" +msgstr "" + +#: guix/scripts/publish.scm:56 +#, fuzzy +msgid "" +"\n" +" --listen=3DHOST listen on the network interface for HOST" +msgstr "" +"\n" +" --references lista as refer=C3=AAncias de CAMINHOS" + +#: guix/scripts/publish.scm:58 +msgid "" +"\n" +" -u, --user=3DUSER change privileges to USER as soon as possibl= e" +msgstr "" + +#: guix/scripts/publish.scm:60 +msgid "" +"\n" +" -r, --repl[=3DPORT] spawn REPL server on PORT" +msgstr "" + +#: guix/scripts/publish.scm:76 +#, fuzzy, scheme-format +msgid "lookup of host '~a' failed: ~a~%" +msgstr "~a: falha no download~%" + +#: guix/scripts/publish.scm:100 +#, scheme-format +msgid "lookup of host '~a' returned nothing" +msgstr "" + +#: guix/scripts/publish.scm:343 +#, scheme-format +msgid "user '~a' not found: ~a~%" +msgstr "" + +#: guix/scripts/publish.scm:378 +#, scheme-format +msgid "server running as root; consider using the '--user' option!~%" +msgstr "" + +#: guix/scripts/publish.scm:380 +#, scheme-format +msgid "publishing ~a on ~a, port ~d~%" +msgstr "" + +#: guix/scripts/edit.scm:41 +msgid "" +"Usage: guix edit PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" +msgstr "" + +#: guix/scripts/edit.scm:62 +#, scheme-format +msgid "file '~a' not found in search path ~s~%" +msgstr "" + +#: guix/scripts/edit.scm:83 +#, scheme-format +msgid "source location of package '~a' is unknown~%" +msgstr "" + +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "falha ao conectar em \"~a\": ~a~%" + +#: guix/scripts/size.scm:75 +#, scheme-format +msgid "no available substitute information for '~a'~%" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "store item" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "total" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "self" +msgstr "" + +#. TRANSLATORS: This is the title of a graph, meaning that the graph +#. represents a profile of the store (the "store" being the place where +#. packages are stored.) +#: guix/scripts/size.scm:204 +msgid "store profile" +msgstr "" + +#: guix/scripts/size.scm:213 +#, fuzzy +msgid "" +"Usage: guix size [OPTION]... PACKAGE\n" +"Report the size of PACKAGE and its dependencies.\n" +msgstr "" +"Uso: guix package [OP=C3=87=C3=83O]... PACOTES...\n" +"Instala, remove ou atualiza PACOTES em uma =C3=BAnica transa=C3=A7=C3=A3= o.\n" + +#: guix/scripts/size.scm:218 +#, fuzzy +msgid "" +"\n" +" -s, --system=3DSYSTEM consider packages for SYSTEM--e.g., \"i686-l= inux\"" +msgstr "" +"\n" +" -s, --system=3DSISTEMA tenta compilar para SISTEMA. ex.: \"i686-lin= ux\"" + +#: guix/scripts/size.scm:220 +msgid "" +"\n" +" -m, --map-file=3DFILE write to FILE a graphical map of disk usage" +msgstr "" + +#: guix/scripts/size.scm:274 +msgid "missing store item argument\n" +msgstr "" + +#: guix/scripts/size.scm:292 +#, fuzzy +msgid "too many arguments\n" +msgstr "n=C3=BAmero errado de argumentos~%" + +#: guix/scripts/graph.scm:76 +msgid "the DAG of packages, excluding implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:132 +msgid "the DAG of packages, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:171 +msgid "same as 'bag', but without the bootstrap nodes" +msgstr "" + +#: guix/scripts/graph.scm:216 +msgid "the DAG of derivations" +msgstr "" + +#: guix/scripts/graph.scm:240 +#, scheme-format +msgid "references for '~a' are not known~%" +msgstr "" + +#: guix/scripts/graph.scm:247 +msgid "the DAG of run-time dependencies (store references)" +msgstr "" + +#: guix/scripts/graph.scm:277 +#, fuzzy, scheme-format +msgid "~a: unknown node type~%" +msgstr "~A: pacote desconhecido~%" + +#: guix/scripts/graph.scm:281 +msgid "The available node types are:\n" +msgstr "" + +#. TRANSLATORS: Here 'dot' is the name of a program; it must not be +#. translated. +#: guix/scripts/graph.scm:317 +msgid "" +"Usage: guix graph PACKAGE...\n" +"Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" +msgstr "" + +#: guix/scripts/graph.scm:319 +msgid "" +"\n" +" -t, --type=3DTYPE represent nodes of the given TYPE" +msgstr "" + +# s=C3=A3o "arquivos inalcan=C3=A7=C3=A1veis", segundo 'info guix', sobr= e o 'gc' +#: guix/scripts/graph.scm:321 +#, fuzzy +msgid "" +"\n" +" --list-types list the available graph types" +msgstr "" +"\n" +" --list-dead lista caminhos mortos (inalcan=C3=A7=C3=A1veis= )" + +#: guix/scripts/graph.scm:323 +#, fuzzy +msgid "" +"\n" +" -e, --expression=3DEXPR consider the package EXPR evaluates to" +msgstr "" +"\n" +" -e, --expression=3DEXPR compila o pacote que EXPR corresponder" + +#: guix/scripts/challenge.scm:104 +#, scheme-format +msgid "~a: no substitute at '~a'~%" +msgstr "" + +#: guix/scripts/challenge.scm:120 +#, fuzzy, scheme-format +msgid "no substitutes for '~a'~%" +msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" + +#: guix/scripts/challenge.scm:137 guix/scripts/challenge.scm:157 +#, fuzzy, scheme-format +msgid "no local build for '~a'~%" +msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" + +#: guix/scripts/challenge.scm:154 +#, scheme-format +msgid "~a contents differ:~%" +msgstr "" + +#: guix/scripts/challenge.scm:156 +#, scheme-format +msgid " local hash: ~a~%" +msgstr "" + +#: guix/scripts/challenge.scm:161 +#, fuzzy, scheme-format +msgid " ~50a: ~a~%" +msgstr "~a~%" + +#: guix/scripts/challenge.scm:165 +#, scheme-format +msgid " ~50a: unavailable~%" +msgstr "" + +#: guix/scripts/challenge.scm:175 +msgid "" +"Usage: guix challenge [PACKAGE...]\n" +"Challenge the substitutes for PACKAGE... provided by one or more server= s.\n" +msgstr "" + +#: guix/scripts/challenge.scm:177 +#, fuzzy +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" compare build results with those at URLS" +msgstr "" +"\n" +" --max-silent-time=3DSEGUNDOS\n" +" marca compila=C3=A7=C3=A3o como falha ap=C3=B3= s SEGUNDOS de " +"sil=C3=AAncio" + +#: guix/gnu-maintenance.scm:514 +msgid "Updater for GNU packages" +msgstr "" + +#: guix/gnu-maintenance.scm:521 +msgid "Updater for GNOME packages" +msgstr "" + +#: guix/scripts/container.scm:25 +msgid "" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" +msgstr "" + +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" + +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix: faltando um nome de comando~%" + +#: guix/scripts/container.scm:63 +#, scheme-format +msgid "guix container: invalid action~%" +msgstr "" + +#: guix/scripts/container/exec.scm:40 +msgid "" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" +msgstr "" + +#: guix/scripts/container/exec.scm:69 +#, fuzzy, scheme-format +msgid "~a: extraneous argument~%" +msgstr "~A: argumento estranho~%" + +#: guix/scripts/container/exec.scm:80 +#, scheme-format +msgid "no pid specified~%" +msgstr "" + +#: guix/scripts/container/exec.scm:83 +#, scheme-format +msgid "no command specified~%" +msgstr "" + +#: guix/scripts/container/exec.scm:86 +#, scheme-format +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" +msgstr "" + +#: guix/upstream.scm:158 +#, scheme-format +msgid "signature verification failed for `~a'~%" +msgstr "Falha na verifica=C3=A7=C3=A3o de assinatura de \"~a\"~%" + +#: guix/upstream.scm:160 +#, scheme-format +msgid "(could be because the public key is not in your keyring)~%" +msgstr "(poderia ser porque a chave p=C3=BAblica n=C3=A3o est=C3=A1 no s= eu chaveiro)~%" + +#: guix/upstream.scm:192 +msgid "gz" +msgstr "" + +#: guix/upstream.scm:255 +#, scheme-format +msgid "~a: could not locate source file" +msgstr "~a: n=C3=A3o foi poss=C3=ADvel localizar um arquivo fonte" + +#: guix/upstream.scm:260 +#, scheme-format +msgid "~a: ~a: no `version' field in source; skipping~%" +msgstr "~a: ~a: sem o campo \"version\" no fonte; pulando~%" + +#: guix/ui.scm:236 +msgid "entering debugger; type ',bt' for a backtrace\n" +msgstr "" + +#: guix/ui.scm:252 guix/ui.scm:269 +#, fuzzy, scheme-format +msgid "failed to load '~a': ~a~%" +msgstr "falha ao conectar em \"~a\": ~a~%" + +#: guix/ui.scm:255 +#, fuzzy, scheme-format +msgid "~a: error: ~a~%" +msgstr "~a~%" + +#: guix/ui.scm:258 guix/ui.scm:512 +#, scheme-format +msgid "exception thrown: ~s~%" +msgstr "" + +#: guix/ui.scm:260 guix/ui.scm:278 +#, fuzzy, scheme-format +msgid "failed to load '~a':~%" +msgstr "falha ao conectar em \"~a\": ~a~%" + +#: guix/ui.scm:272 +#, fuzzy, scheme-format +msgid "~a: warning: ~a~%" +msgstr "~a~%" + +#: guix/ui.scm:275 +#, fuzzy, scheme-format +msgid "failed to load '~a': exception thrown: ~s~%" +msgstr "falha ao ler a express=C3=A3o ~s: ~s~%" + +#: guix/ui.scm:287 +#, scheme-format +msgid "failed to install locale: ~a~%" +msgstr "falha ao instalar local: ~a~%" + +#: guix/ui.scm:306 +msgid "" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" +"This is free software: you are free to change and redistribute it.\n" +"There is NO WARRANTY, to the extent permitted by law.\n" +msgstr "" + +#: guix/ui.scm:314 +#, scheme-format +msgid "" +"\n" +"Report bugs to: ~a." +msgstr "" +"\n" +"Relate erros para: ~a." + +#: guix/ui.scm:316 +#, scheme-format +msgid "" +"\n" +"~a home page: <~a>" +msgstr "" +"\n" +"Site do ~a: <~a>" + +#: guix/ui.scm:318 +msgid "" +"\n" +"General help using GNU software: " +msgstr "" +"\n" +"Ajuda em geral usando softwares GNU: " + +#: guix/ui.scm:363 +#, fuzzy, scheme-format +msgid "'~a' is not a valid regular expression: ~a~%" +msgstr "falha ao ler a express=C3=A3o ~s: ~s~%" + +#: guix/ui.scm:369 +#, scheme-format +msgid "~a: invalid number~%" +msgstr "~a: n=C3=BAmero inv=C3=A1lido~%" + +#: guix/ui.scm:386 +#, scheme-format +msgid "invalid number: ~a~%" +msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" + +#: guix/ui.scm:409 +#, scheme-format +msgid "unknown unit: ~a~%" +msgstr "unidade desconhecida: ~a~%" + +#: guix/ui.scm:420 +#, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "~a:~a:~a: pacote \"~a\" tem uma entrada inv=C3=A1lida: ~s~%" =20 -#: guix/ui.scm:219 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" -msgstr "~a: ~a: sistema de compila=C3=A7=C3=A3o de \"~a\" n=C3=A3o tem s= uporte a compila=C3=A7=C3=B5es cruzadas~%" +msgstr "" +"~a: ~a: sistema de compila=C3=A7=C3=A3o de \"~a\" n=C3=A3o tem suporte = a compila=C3=A7=C3=B5es " +"cruzadas~%" + +#: guix/ui.scm:432 +#, scheme-format +msgid "profile '~a' does not exist~%" +msgstr "perfil \"~a\" n=C3=A3o existe~%" + +#: guix/ui.scm:435 +#, fuzzy, scheme-format +msgid "generation ~a of profile '~a' does not exist~%" +msgstr "perfil \"~a\" n=C3=A3o existe~%" + +#: guix/ui.scm:442 +#, scheme-format +msgid "corrupt input while restoring '~a' from ~s~%" +msgstr "" =20 -#: guix/ui.scm:224 +#: guix/ui.scm:444 +#, scheme-format +msgid "corrupt input while restoring archive from ~s~%" +msgstr "" + +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "falha ao conectar em \"~a\": ~a~%" =20 -#: guix/ui.scm:229 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "compila=C3=A7=C3=A3o falhou: ~a~%" =20 -#: guix/ui.scm:257 +#: guix/ui.scm:455 +#, scheme-format +msgid "reference to invalid output '~a' of derivation '~a'~%" +msgstr "" + +#: guix/ui.scm:466 +#, fuzzy, scheme-format +msgid "~a: ~a~%" +msgstr "~a~%" + +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "falha ao ler a express=C3=A3o ~s: ~s~%" =20 -#: guix/ui.scm:263 -#, scheme-format -msgid "failed to evaluate expression `~a': ~s~%" +#: guix/ui.scm:507 +#, fuzzy, scheme-format +msgid "failed to evaluate expression '~a':~%" msgstr "falha ao avaliar a express=C3=A3o \"~a\": ~s~%" =20 -#: guix/ui.scm:272 +#: guix/ui.scm:510 +#, fuzzy, scheme-format +msgid "syntax error: ~a~%" +msgstr "erro na busca pelo nome da m=C3=A1quina: ~a~%" + +#: guix/ui.scm:524 #, fuzzy, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "express=C3=A3o \"~s\" n=C3=A3o corresponde a um pacote~%" =20 -#: guix/ui.scm:319 -#, scheme-format +#: guix/ui.scm:586 +#, fuzzy, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" -msgstr "~:[A seguinte deriva=C3=A7=C3=A3o ser=C3=A1 compilada:~%~{ ~a~= %~}~;~]" +msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" +msgstr[0] "~:[A seguinte deriva=C3=A7=C3=A3o ser=C3=A1 compilada:~%~{ = ~a~%~}~;~]" +msgstr[1] "~:[A seguinte deriva=C3=A7=C3=A3o ser=C3=A1 compilada:~%~{ = ~a~%~}~;~]" =20 -#: guix/ui.scm:324 -#, scheme-format +#: guix/ui.scm:591 +#, fuzzy, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" -msgstr "~:[O seguinte arquivo ser=C3=A1 baixado:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" +msgstr[0] "~:[O seguinte arquivo ser=C3=A1 baixado:~%~{ ~a~%~}~;~]" +msgstr[1] "~:[O seguinte arquivo ser=C3=A1 baixado:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:330 -#, scheme-format +#: guix/ui.scm:597 +#, fuzzy, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" -msgstr "~:[A seguinte deriva=C3=A7=C3=A3o ser=C3=A1 compilada:~%~{ ~a~= %~}~;~]" +msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" +msgstr[0] "~:[A seguinte deriva=C3=A7=C3=A3o ser=C3=A1 compilada:~%~{ = ~a~%~}~;~]" +msgstr[1] "~:[A seguinte deriva=C3=A7=C3=A3o ser=C3=A1 compilada:~%~{ = ~a~%~}~;~]" =20 -#: guix/ui.scm:335 -#, scheme-format +#: guix/ui.scm:602 +#, fuzzy, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" -msgstr "~:[O seguinte arquivo ser=C3=A1 baixado:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" +msgstr[0] "~:[O seguinte arquivo ser=C3=A1 baixado:~%~{ ~a~%~}~;~]" +msgstr[1] "~:[O seguinte arquivo ser=C3=A1 baixado:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:352 +#: guix/ui.scm:657 +#, fuzzy, scheme-format +msgid "The following package would be removed:~%~{~a~%~}~%" +msgid_plural "The following packages would be removed:~%~{~a~%~}~%" +msgstr[0] "O seguinte pacote seria removido:~% ~{~a~%~}~%" +msgstr[1] "O seguinte pacote seria removido:~% ~{~a~%~}~%" + +#: guix/ui.scm:662 +#, fuzzy, scheme-format +msgid "The following package will be removed:~%~{~a~%~}~%" +msgid_plural "The following packages will be removed:~%~{~a~%~}~%" +msgstr[0] "O seguinte pacote ser=C3=A1 removido:~% ~{~a~%~}~%" +msgstr[1] "O seguinte pacote ser=C3=A1 removido:~% ~{~a~%~}~%" + +#: guix/ui.scm:675 +#, fuzzy, scheme-format +msgid "The following package would be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" +msgstr[0] "O seguinte pacote seria instalado:~%~{~a~%~}~%" +msgstr[1] "O seguinte pacote seria instalado:~%~{~a~%~}~%" + +#: guix/ui.scm:680 +#, fuzzy, scheme-format +msgid "The following package will be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" +msgstr[0] "O seguinte pacote ser=C3=A1 instalado:~%~{~a~%~}~%" +msgstr[1] "O seguinte pacote ser=C3=A1 instalado:~%~{~a~%~}~%" + +#: guix/ui.scm:693 +#, fuzzy, scheme-format +msgid "The following package would be upgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" +msgstr[0] "O seguinte pacote seria removido:~% ~{~a~%~}~%" +msgstr[1] "O seguinte pacote seria removido:~% ~{~a~%~}~%" + +#: guix/ui.scm:698 +#, fuzzy, scheme-format +msgid "The following package will be upgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" +msgstr[0] "O seguinte pacote ser=C3=A1 removido:~% ~{~a~%~}~%" +msgstr[1] "O seguinte pacote ser=C3=A1 removido:~% ~{~a~%~}~%" + +#: guix/ui.scm:709 +#, fuzzy, scheme-format +msgid "The following package would be installed:~%~{~a~%~}~%" +msgid_plural "The following packages would be installed:~%~{~a~%~}~%" +msgstr[0] "O seguinte pacote seria instalado:~%~{~a~%~}~%" +msgstr[1] "O seguinte pacote seria instalado:~%~{~a~%~}~%" + +#: guix/ui.scm:714 +#, fuzzy, scheme-format +msgid "The following package will be installed:~%~{~a~%~}~%" +msgid_plural "The following packages will be installed:~%~{~a~%~}~%" +msgstr[0] "O seguinte pacote ser=C3=A1 instalado:~%~{~a~%~}~%" +msgstr[1] "O seguinte pacote ser=C3=A1 instalado:~%~{~a~%~}~%" + +#: guix/ui.scm:731 msgid "" msgstr "" =20 -#: guix/ui.scm:380 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "falha ao criar o diret=C3=B3rio de compila=C3=A7=C3=A3o \"~a\": = ~a~%" =20 -#: guix/ui.scm:475 guix/ui.scm:489 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "desconhecido" =20 -#: guix/ui.scm:598 +#: guix/ui.scm:1033 +#, fuzzy, scheme-format +msgid "Generation ~a\t~a" +msgstr "Cria=C3=A7=C3=A3o ~a\t~a~%" + +#: guix/ui.scm:1040 #, scheme-format -msgid "invalid argument: ~a~%" -msgstr "argumento inv=C3=A1lido: ~a~%" +msgid "~a\t(current)~%" +msgstr "" + +# gera=C3=A7=C3=A3o, cria=C3=A7=C3=A3o? +#: guix/ui.scm:1057 +#, fuzzy, scheme-format +msgid "switched from generation ~a to ~a~%" +msgstr "trocando para gera=C3=A7=C3=A3o de ~a para ~a~%" =20 -#: guix/ui.scm:603 +#: guix/ui.scm:1073 +#, fuzzy, scheme-format +msgid "deleting ~a~%" +msgstr "Cria=C3=A7=C3=A3o ~a\t~a~%" + +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Tente \"guix --help\" para mais informa=C3=A7=C3=B5es.~%" =20 -#: guix/ui.scm:633 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -1124,124 +2280,238 @@ msgstr "" "Uso: guix COMANDO ARGUMENTOS...\n" "Executa COMANDO com ARGUMENTOS.\n" =20 -#: guix/ui.scm:636 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "COMANDO deve ser um dos subcomandos listados abaixo:\n" =20 -#: guix/ui.scm:656 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: comando n=C3=A3o encontrado~%" =20 -#: guix/ui.scm:674 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: faltando um nome de comando~%" =20 -#: guix/ui.scm:682 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: op=C3=A7=C3=A3o \"~a\" desconhecida~%" =20 -#: guix/http-client.scm:217 -#, scheme-format -msgid "using Guile ~a, which does not support ~s encoding~%" -msgstr "usando Guile ~a, o qual n=C3=A3o oferece suporte codifica=C3=A7=C3= =A3o ~s~%" - -#: guix/http-client.scm:220 -#, scheme-format -msgid "download failed; use a newer Guile~%" -msgstr "download falhou; use um Guile mais novo~%" - -#: guix/http-client.scm:232 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "seguindo redirecionamento para \"~a\"...~%" =20 -#: guix/http-client.scm:241 +#: guix/http-client.scm:269 #, fuzzy msgid "download failed" msgstr "~a: falha no download~%" =20 -#: guix/nar.scm:134 -msgid "unexpected executable file marker" +#: guix/nar.scm:155 +msgid "signature is not a valid s-expression" msgstr "" =20 -#: guix/nar.scm:141 -msgid "unsupported nar file type" +#: guix/nar.scm:164 +msgid "invalid signature" msgstr "" =20 -#: guix/nar.scm:209 -msgid "unsupported file type" +#: guix/nar.scm:168 +msgid "invalid hash" msgstr "" =20 -#: guix/nar.scm:219 -#, fuzzy -msgid "invalid nar signature" -msgstr "argumento inv=C3=A1lido: ~a~%" +#: guix/nar.scm:176 +msgid "unauthorized public key" +msgstr "" =20 -#: guix/nar.scm:230 -msgid "invalid nar end-of-file marker" +#: guix/nar.scm:181 +msgid "corrupt signature data" msgstr "" =20 -#: guix/nar.scm:244 -msgid "invalid symlink tokens" +#: guix/nar.scm:201 +msgid "corrupt file set archive" msgstr "" =20 -#: guix/nar.scm:263 -msgid "unexpected directory entry termination" +#: guix/nar.scm:211 +#, fuzzy, scheme-format +msgid "importing file or directory '~a'...~%" +msgstr "seguindo redirecionamento para \"~a\"...~%" + +#: guix/nar.scm:222 +#, fuzzy, scheme-format +msgid "found valid signature for '~a'~%" +msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" + +#: guix/nar.scm:229 +msgid "imported file lacks a signature" msgstr "" =20 -#: guix/nar.scm:272 -msgid "unexpected directory inter-entry marker" +#: guix/nar.scm:268 +msgid "invalid inter-file archive mark" msgstr "" =20 -#: guix/nar.scm:277 -msgid "unsupported nar entry type" +#: nix/nix-daemon/guix-daemon.cc:61 +msgid "guix-daemon -- perform derivation builds and store accesses" msgstr "" =20 -#: guix/nar.scm:376 -msgid "signature is not a valid s-expression" +#: nix/nix-daemon/guix-daemon.cc:63 +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." msgstr "" =20 -#: guix/nar.scm:385 -msgid "invalid signature" +#: nix/nix-daemon/guix-daemon.cc:87 +msgid "SYSTEM" msgstr "" =20 -#: guix/nar.scm:389 -msgid "invalid hash" +#: nix/nix-daemon/guix-daemon.cc:88 +msgid "assume SYSTEM as the current system type" msgstr "" =20 -#: guix/nar.scm:397 -msgid "unauthorized public key" +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 +msgid "N" msgstr "" =20 -#: guix/nar.scm:402 -msgid "corrupt signature data" +#: nix/nix-daemon/guix-daemon.cc:90 +msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" msgstr "" =20 -#: guix/nar.scm:422 -msgid "corrupt file set archive" +#: nix/nix-daemon/guix-daemon.cc:93 +msgid "allow at most N build jobs" msgstr "" =20 -#: guix/nar.scm:432 -#, fuzzy, scheme-format -msgid "importing file or directory '~a'...~%" -msgstr "seguindo redirecionamento para \"~a\"...~%" +#: nix/nix-daemon/guix-daemon.cc:95 +msgid "disable chroot builds" +msgstr "" =20 -#: guix/nar.scm:441 -#, fuzzy, scheme-format -msgid "found valid signature for '~a'~%" -msgstr "n=C3=BAmero inv=C3=A1lido: ~a~%" +#: nix/nix-daemon/guix-daemon.cc:96 +msgid "DIR" +msgstr "" =20 -#: guix/nar.scm:448 -msgid "imported file lacks a signature" +#: nix/nix-daemon/guix-daemon.cc:97 +msgid "add DIR to the build chroot" msgstr "" =20 -#: guix/nar.scm:487 -msgid "invalid inter-file archive mark" +#: nix/nix-daemon/guix-daemon.cc:98 +msgid "GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:99 +msgid "perform builds as a user of GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:101 +msgid "do not use substitutes" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:102 +msgid "URLS" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:103 +msgid "use URLS as the default list of substitute providers" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:105 +msgid "do not use the 'build hook'" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:107 +msgid "cache build failures" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 +msgid "do not keep build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:113 +msgid "disable compression of the build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:118 +msgid "disable automatic file \"deduplication\" in the store" msgstr "" =20 +#: nix/nix-daemon/guix-daemon.cc:128 +msgid "impersonate Linux 2.6" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:132 +msgid "tell whether the GC must keep outputs of live derivations" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:135 +msgid "tell whether the GC must keep derivations corresponding to live o= utputs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:138 +msgid "SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:139 +msgid "listen for connections on SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:141 +msgid "produce debugging output" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 +#, c-format +msgid "error: %s\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:281 +#, c-format +msgid "error: libgcrypt version mismatch\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:372 +#, c-format +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" +msgstr "" + +#~ msgid "~a: not a number~%" +#~ msgstr "~a: n=C3=A3o =C3=A9 um n=C3=BAmero~%" + +#~ msgid "failed to build the empty profile~%" +#~ msgstr "falha ao compilar o perfil vazio~%" + +#~ msgid "nothing to do: already at the empty profile~%" +#~ msgstr "nada a ser feito: j=C3=A1 est=C3=A1 no perfil vazio~%" + +#~ msgid "(Please consider upgrading Guile to get proper progress report= .)~%" +#~ msgstr "" +#~ "(Por favor, considere atualizar o Guile para obter o relat=C3=B3rio = adequado " +#~ "do progresso.)~%" + +#, fuzzy +#~ msgid "failed to open operating system file '~a': ~a~%" +#~ msgstr "falha ao conectar em \"~a\": ~a~%" + #, fuzzy -#~ msgid "failed to load machine file '~a': ~s~%" +#~ msgid "failed to load operating system file '~a': ~s~%" #~ msgstr "falha ao conectar em \"~a\": ~a~%" + +#~ msgid "using Guile ~a, which does not support ~s encoding~%" +#~ msgstr "usando Guile ~a, o qual n=C3=A3o oferece suporte codifica=C3=A7= =C3=A3o ~s~%" + +#~ msgid "download failed; use a newer Guile~%" +#~ msgstr "download falhou; use um Guile mais novo~%" + +#, fuzzy +#~ msgid "invalid nar signature" +#~ msgstr "argumento inv=C3=A1lido: ~a~%" diff --git a/po/guix/sr.po b/po/guix/sr.po index 1404a44..6b96fd7 100644 --- a/po/guix/sr.po +++ b/po/guix/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-0.7-pre1\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-07-13 17:06+0200\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2014-09-13 11:19+0200\n" "Last-Translator: =D0=9C=D0=B8=D1=80=D0=BE=D1=81=D0=BB=D0=B0=D0=B2 =D0=9D= =D0=B8=D0=BA=D0=BE=D0=BB=D0=B8=D1=9B \n" "Language-Team: Serbian <(nothing)>\n" @@ -14,39 +14,172 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=3DUTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : = n%10>=3D2 && n%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : = n%10>=3D2 && n" +"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" =20 -#: gnu/packages.scm:95 +#: gnu/packages.scm:76 +#, fuzzy, scheme-format +msgid "~a: patch not found" +msgstr "~a: =D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D0=BF=D1=80=D0=BE=D0=BD=D0=B0= =D1=88=D0=B0=D0=BE =D0=BF=D0=B0=D0=BA=D0=B5=D1=82~%" + +#: gnu/packages.scm:87 +#, scheme-format +msgid "could not find bootstrap binary '~a' for system '~a'" +msgstr "" + +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "=D0=BD=D0=B5 =D0=BC=D0=BE=D0=B3=D1=83 =D0=B4=D0=B0 =D0=BF=D1=80=D0= =B8=D1=81=D1=82=D1=83=D0=BF=D0=B8=D0=BC =E2=80=9E~a=E2=80=9C: ~a~%" =20 -#: guix/scripts/build.scm:54 guix/scripts/package.scm:349 +#: gnu/packages.scm:327 +#, scheme-format +msgid "looking for the latest release of GNU ~a..." +msgstr "=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=BC =D0=BF=D0=BE=D1=81=D0=BB=D0= =B5=D0=B4=D1=9A=D0=B5 =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5 =D0=93=D0=BD=D1= =83=D0=B0 ~a..." + +#: gnu/packages.scm:334 +#, scheme-format +msgid "~a: note: using ~a but ~a is available upstream~%" +msgstr "~a: =D0=BD=D0=B0=D0=BF=D0=BE=D0=BC=D0=B5=D0=BD=D0=B0: =D0=BA=D0=BE= =D1=80=D0=B8=D1=81=D1=82=D0=B8=D0=BC ~a =D0=B0=D0=BB=D0=B8 ~a =D1=98=D0=B5= =D0=B4=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BD=D0=BE =D1=83=D0=B7=D0=B2=D0=BE= =D0=B4=D0=BD=D0=BE~%" + +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "=D0=BD=D0=B5=D1=98=D0=B0=D1=81=D0=BD=D0=B0 =D0=BE=D0=B4=D1=80=D0= =B5=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D0=B0 =E2= =80=9E~a=E2=80=9C~%" =20 -#: guix/scripts/build.scm:55 guix/scripts/package.scm:351 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "=D0=B1=D0=B8=D1=80=D0=B0=D0=BC ~a =D0=B8=D0=B7 ~a~%" =20 -#: guix/scripts/build.scm:61 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: =D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D0=BF=D1=80=D0=BE=D0=BD=D0=B0= =D1=88=D0=B0=D0=BE =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =D0=B7=D0=B0 =D0=B8=D0=B7= =D0=B4=D0=B0=D1=9A=D0=B5 ~a~%" =20 -#: guix/scripts/build.scm:63 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: =D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82 =D0=BF=D0=B0= =D0=BA=D0=B5=D1=82~%" =20 -#: guix/scripts/build.scm:86 +#: gnu/packages.scm:381 +#, scheme-format +msgid "package `~a' lacks output `~a'~%" +msgstr "=D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D1=83 =E2=80=9E~a=E2=80=9C =D0=BD= =D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D0=B5 =D0=B8=D0=B7=D0=BB=D0=B0= =D0=B7 =E2=80=9E~a=E2=80=9C~%" + +#: gnu/packages.scm:398 +#, scheme-format +msgid "~a: package not found~%" +msgstr "~a: =D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D0=BF=D1=80=D0=BE=D0=BD=D0=B0= =D1=88=D0=B0=D0=BE =D0=BF=D0=B0=D0=BA=D0=B5=D1=82~%" + +#: gnu/services.scm:527 +#, scheme-format +msgid "no target of type '~a' for service ~s" +msgstr "" + +#: gnu/services.scm:538 gnu/services.scm:599 +#, scheme-format +msgid "more than one target service of type '~a'" +msgstr "" + +#: gnu/services.scm:589 +#, scheme-format +msgid "service of type '~a' not found" +msgstr "" + +#: gnu/system.scm:545 +#, scheme-format +msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" +msgstr "" + +#: gnu/system.scm:561 +#, scheme-format +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" + +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: =D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD= =D0=B1=D1=80=D0=BE=D1=98~%" + +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B8 =D0=BF=D0= =BE=D0=B4=D0=B8=D0=B7=D0=BD=D0=B8 =D0=BF=D0=B0=D1=80=D0=B0=D0=BC=D0=B5=D1= =82=D1=80=D0=B8 =D0=B7=D0=B0 =E2=80=9E~a=E2=80=9C~%" + +#: gnu/services/shepherd.scm:166 +#, scheme-format +msgid "service '~a' provided more than once" +msgstr "" + +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + +#: gnu/system/shadow.scm:213 +#, scheme-format +msgid "supplementary group '~a' of user '~a' is undeclared" +msgstr "" + +#: gnu/system/shadow.scm:223 +#, scheme-format +msgid "primary group '~a' of user '~a' is undeclared" +msgstr "" + +#: guix/scripts.scm:52 +#, scheme-format +msgid "invalid argument: ~a~%" +msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82: ~a~%" + +#: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 +#: guix/scripts/publish.scm:355 +#, scheme-format +msgid "~A: unrecognized option~%" +msgstr "~A: =D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D0=BE= =D0=BF=D1=86=D0=B8=D1=98=D0=B0~%" + +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BD=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BC =D0=93=D0=A6 =D0= =BA=D0=BE=D1=80=D0=B5=D0=BD =E2=80=9E~a=E2=80=9C: ~a~%" =20 -#: guix/scripts/build.scm:123 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "=D0=BD=D0=B5=D1=98=D0=B0=D1=81=D0=BD=D0=B0 =D0=BE=D0=B4=D1=80=D0= =B5=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D0=B0 =E2= =80=9E~a=E2=80=9C~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" +"\n" +" --with-source=3D=D0=98=D0=97=D0=92=D0=9E=D0=A0\n" +" =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0= =98=D0=97=D0=92=D0=9E=D0=A0 =D0=BF=D1=80=D0=B8=D0=BB=D0=B8=D0=BA=D0=BE=D0= =BC =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5 =D0=BE=D0=B4=D0=B3=D0= =BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D0=B5=D0=B3 =D0=BF=D0=B0=D0= =BA=D0=B5=D1=82=D0=B0" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 +msgid "" +"\n" +" -L, --load-path=3DDIR prepend DIR to the package module search pat= h" +msgstr "" + +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" @@ -54,7 +187,16 @@ msgstr "" "\n" " -K, --keep-failed =D0=B7=D0=B0=D0=B4=D1=80=D0=B6=D0=B0=D0=B2=D0=B0= =D1=81=D1=82=D0=B0=D0=B1=D0=BB=D0=BE =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4= =D1=9A=D0=B5 =D0=BD=D0=B5=D1=83=D1=81=D0=BF=D0=B5=D0=BB=D0=B8=D1=85 =D0=B8= =D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B8" =20 -#: guix/scripts/build.scm:125 +#: guix/scripts/build.scm:286 +#, fuzzy +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" +"\n" +" -n, --dry-run =D0=BD=D0=B5 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1= =92=D1=83=D1=98=D0=B5 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D1= =86=D0=B5" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" @@ -62,7 +204,7 @@ msgstr "" "\n" " -n, --dry-run =D0=BD=D0=B5 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1= =92=D1=83=D1=98=D0=B5 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D1= =86=D0=B5" =20 -#: guix/scripts/build.scm:127 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" @@ -70,23 +212,32 @@ msgstr "" "\n" " --fallback =D0=B2=D1=80=D0=B0=D1=9B=D0=B0 =D1=81=D0=B5 =D0= =BD=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D0=BA=D0=B0=D0= =B4=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8=D0=BA =D0=BD=D0=B5 =D1=83=D1= =81=D0=BF=D0=B5" =20 -#: guix/scripts/build.scm:129 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" msgstr "" "\n" -" --no-substitutes =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1=83=D1=98= =D0=B5 =D1=83=D0=BC=D0=B5=D1=81=D1=82=D0=BE =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BD= =D0=BE=D0=B2=D0=BE =D1=80=D0=B5=D1=92=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD= =D0=B8=D0=BA=D0=B5 =D0=BF=D1=80=D0=B5=D0=B4=D0=B8=D0=B7=D0=B3=D1=80=D0=B0= =D0=B4=D1=9A=D0=B5" +" --no-substitutes =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1=83=D1=98= =D0=B5 =D1=83=D0=BC=D0=B5=D1=81=D1=82=D0=BE =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BD= =D0=BE=D0=B2=D0=BE =D1=80=D0=B5=D1=92=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD= =D0=B8=D0=BA=D0=B5 " +"=D0=BF=D1=80=D0=B5=D0=B4=D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5= " + +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" fetch substitute from URLS if they are authori= zed" +msgstr "" =20 -#: guix/scripts/build.scm:131 +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" msgstr "" "\n" -" --no-build-hook =D0=BD=D0=B5 =D0=BF=D0=BE=D0=BA=D1=83=D1=88=D0= =B0=D0=B2=D0=B0 =D0=B4=D0=B0 =D1=80=D0=B0=D1=81=D1=82=D0=B5=D1=80=D0=B5=D1= =82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D0=BF=D1=83=D1= =82=D0=B5=D0=BC =D0=BF=D1=80=D0=B5=D0=B4=D0=B2=D0=BE=D1=80=D1=98=D0=B0 =D0= =B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5" +" --no-build-hook =D0=BD=D0=B5 =D0=BF=D0=BE=D0=BA=D1=83=D1=88=D0= =B0=D0=B2=D0=B0 =D0=B4=D0=B0 =D1=80=D0=B0=D1=81=D1=82=D0=B5=D1=80=D0=B5=D1= =82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D0=BF=D1=83=D1= =82=D0=B5=D0=BC =D0=BF=D1=80=D0=B5=D0=B4=D0=B2=D0=BE=D1=80=D1=98=D0=B0 " +"=D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5" =20 -#: guix/scripts/build.scm:133 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" @@ -96,7 +247,7 @@ msgstr "" " --max-silent-time=3D=D0=A1=D0=95=D0=9A=D0=A3=D0=9D=D0=94=D0=95\n" " =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0= =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D0=BD=D0=B5=D1=83=D0=BF= =D0=B5=D0=BB=D0=BE=D0=BC =D0=BD=D0=B0=D0=BA=D0=BE=D0=BD =D0=A1=D0=95=D0=9A= =D0=A3=D0=9D=D0=94=D0=95 =D0=BC=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D1=9A=D0=B0= " =20 -#: guix/scripts/build.scm:136 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" @@ -105,7 +256,7 @@ msgstr "" " --timeout=3D=D0=A1=D0=95=D0=9A=D0=A3=D0=9D=D0=94=D0=95\n" " =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0= =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D0=BD=D0=B5=D1=83=D1=81= =D0=BF=D0=B5=D0=BB=D0=BE=D0=BC =D0=BD=D0=B0=D0=BA=D0=BE=D0=BD =D0=A1=D0=95= =D0=9A=D0=A3=D0=9D=D0=94=D0=95 =D1=80=D0=B0=D0=B4=D0=B0" =20 -#: guix/scripts/build.scm:138 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" @@ -113,20 +264,33 @@ msgstr "" "\n" " --verbosity=3D=D0=9D=D0=98=D0=92=D0=9E =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D1=82=D0=B8 =D0=B4=D0=B0=D1=82=D0=B8 =D0=9D=D0=98=D0=92=D0=9E =D0=BE=D0= =BF=D1=88=D0=B8=D1=80=D0=BD=D0=BE=D1=81=D1=82=D0=B8" =20 -#: guix/scripts/build.scm:140 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" msgstr "" "\n" -" -c, --cores=3DN =D0=BE=D0=BC=D0=BE=D0=B3=D1=83=D1=9B=D0=B0=D0= =B2=D0=B0 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D1=9A=D0=B5 =D0=B4=D0= =BE N =D1=98=D0=B5=D0=B7=D0=B3=D1=80=D0=B0 =D0=BF=D1=80=D0=BE=D1=86=D0=B5= =D1=81=D0=BE=D1=80=D0=B0 =D0=B7=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4= =D1=9A=D1=83" +" -c, --cores=3DN =D0=BE=D0=BC=D0=BE=D0=B3=D1=83=D1=9B=D0=B0=D0= =B2=D0=B0 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D1=9A=D0=B5 =D0=B4=D0= =BE N =D1=98=D0=B5=D0=B7=D0=B3=D1=80=D0=B0 =D0=BF=D1=80=D0=BE=D1=86=D0=B5= =D1=81=D0=BE=D1=80=D0=B0 =D0=B7=D0=B0 " +"=D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83" =20 -#: guix/scripts/build.scm:206 -#, scheme-format -msgid "~a: not a number~%" -msgstr "~a: =D0=BD=D0=B8=D1=98=D0=B5 =D0=B1=D1=80=D0=BE=D1=98~%" +#: guix/scripts/build.scm:310 +msgid "" +"\n" +" -M, --max-jobs=3DN allow at most N build jobs" +msgstr "" =20 -#: guix/scripts/build.scm:223 +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 +#, fuzzy, scheme-format +msgid "not a number: '~a' option argument: ~a~%" +msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=B0=D0=BD =D0=B1=D1=80=D0= =BE=D1=98 =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0~%" + +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" @@ -134,7 +298,7 @@ msgstr "" "=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix build [=D0=9E=D0= =9F=D0=A6=D0=98=D0=88=D0=90]... =D0=9F=D0=90=D0=9A=D0=95=D0=A2-=D0=98=D0=9B= =D0=98-=D0=98=D0=97=D0=92=D0=95=D0=94=D0=9D=D0=98=D0=A6=D0=90...\n" "=D0=98=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D0=B4=D0=B0=D1=82= =D0=B8 =D0=9F=D0=90=D0=9A=D0=95=D0=A2-=D0=98=D0=9B=D0=98-=D0=98=D0=97=D0=92= =D0=95=D0=94=D0=9D=D0=98=D0=A6=D0=A3 =D0=B8 =D0=B8=D1=81=D0=BF=D0=B8=D1=81= =D1=83=D1=98=D0=B5 =D1=9A=D0=B8=D1=85=D0=BE=D0=B2=D0=B5 =D0=BF=D1=83=D1=82= =D0=B0=D1=9A=D0=B5 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=B0.\n" =20 -#: guix/scripts/build.scm:225 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" @@ -142,7 +306,18 @@ msgstr "" "\n" " -e, --expression=3D=D0=98=D0=97=D0=A0=D0=90=D0=97 =D0=B8=D0=B7=D0=B3= =D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D1=86=D0=B5=D0=BD= =D0=B5 =D0=98=D0=97=D0=A0=D0=90=D0=97=D0=90 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82= =D0=B0 =D0=B8=D0=BB=D0=B8 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8= =D1=86=D0=B5 =D0=BD=D0=B0" =20 -#: guix/scripts/build.scm:227 +#: guix/scripts/build.scm:441 +#, fuzzy +msgid "" +"\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" +" FILE evaluates to" +msgstr "" +"\n" +" -e, --expression=3D=D0=98=D0=97=D0=A0=D0=90=D0=97 =D0=B8=D0=B7=D0=B3= =D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D1=86=D0=B5=D0=BD= =D0=B5 =D0=98=D0=97=D0=A0=D0=90=D0=97=D0=90 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82= =D0=B0 =D0=B8=D0=BB=D0=B8 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8= =D1=86=D0=B5 =D0=BD=D0=B0" + +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" @@ -150,7 +325,15 @@ msgstr "" "\n" " -S, --source =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1=83=D1=98= =D0=B5 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D1=86=D0=B5 =D0=B8= =D0=B7=D0=B2=D0=BE=D1=80=D0=B0 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D0=B0" =20 -#: guix/scripts/build.scm:229 +#: guix/scripts/build.scm:446 +msgid "" +"\n" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" +" of \"package\", \"all\" (default), or \"transi= tive\"" +msgstr "" + +#: guix/scripts/build.scm:449 msgid "" "\n" " -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" @@ -158,7 +341,7 @@ msgstr "" "\n" " -s, --system=3D=D0=A1=D0=98=D0=A1=D0=A2=D0=95=D0=9C =D0=BF=D0=BE=D0= =BA=D1=83=D1=88=D0=B0=D0=B2=D0=B0 =D0=B4=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D0=B4=D0=B8 =D0=B7=D0=B0 =D0=A1=D0=98=D0=A1=D0=A2=D0=95=D0=9C--e.g., = =E2=80=9Ei686-linux=E2=80=9C" =20 -#: guix/scripts/build.scm:231 +#: guix/scripts/build.scm:451 msgid "" "\n" " --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" @@ -166,17 +349,13 @@ msgstr "" "\n" " --target=3D=D0=A2=D0=A0=D0=9E=D0=88=D0=9A=D0=90 =D1=83=D0=BD=D0= =B0=D0=BA=D1=80=D1=81=D0=BD=D0=BE =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1= =83=D1=98=D0=B5 =D0=B7=D0=B0 =D0=A2=D0=A0=D0=9E=D0=88=D0=9A=D0=A3--e.g., = =E2=80=9Earmel-linux-gnu=E2=80=9C" =20 -#: guix/scripts/build.scm:233 +#: guix/scripts/build.scm:453 msgid "" "\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" +" --no-grafts do not graft packages" msgstr "" -"\n" -" --with-source=3D=D0=98=D0=97=D0=92=D0=9E=D0=A0\n" -" =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0= =98=D0=97=D0=92=D0=9E=D0=A0 =D0=BF=D1=80=D0=B8=D0=BB=D0=B8=D0=BA=D0=BE=D0= =BC =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5 =D0=BE=D0=B4=D0=B3=D0= =BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D0=B5=D0=B3 =D0=BF=D0=B0=D0= =BA=D0=B5=D1=82=D0=B0" =20 -#: guix/scripts/build.scm:236 +#: guix/scripts/build.scm:455 msgid "" "\n" " -d, --derivations return the derivation paths of the given packa= ges" @@ -184,17 +363,24 @@ msgstr "" "\n" " -d, --derivations =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=BF=D1=83=D1=82=D0=B0=D1=9A=D0=B5 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5= =D0=BD=D0=B8=D1=86=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D0=B3 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B0" =20 -#: guix/scripts/build.scm:238 +#: guix/scripts/build.scm:457 +msgid "" +"\n" +" --check rebuild items to check for non-determinism iss= ues" +msgstr "" + +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" "\n" -" -r, --root=3D=D0=94=D0=90=D0=A2=D0=9E=D0=A2=D0=95=D0=9A=D0=90 =D1= =87=D0=B8=D0=BD=D0=B8 =D0=94=D0=90=D0=A2=D0=9E=D0=A2=D0=95=D0=9A=D0=A3 =D1= =81=D0=B8=D0=BC=D0=B1=D0=BE=D0=BB=D0=B8=D1=87=D0=BA=D0=BE=D0=BC =D0=B2=D0= =B5=D0=B7=D0=BE=D0=BC =D0=BA=D0=B0 =D1=80=D0=B5=D0=B7=D1=83=D0=BB=D1=82=D0= =B0=D1=82=D1=83, =D0=B8 =D0=B1=D0=B5=D0=BB=D0=B5=D0=B6=D0=B8 =D1=98=D0=B5= \n" +" -r, --root=3D=D0=94=D0=90=D0=A2=D0=9E=D0=A2=D0=95=D0=9A=D0=90 =D1= =87=D0=B8=D0=BD=D0=B8 =D0=94=D0=90=D0=A2=D0=9E=D0=A2=D0=95=D0=9A=D0=A3 =D1= =81=D0=B8=D0=BC=D0=B1=D0=BE=D0=BB=D0=B8=D1=87=D0=BA=D0=BE=D0=BC =D0=B2=D0= =B5=D0=B7=D0=BE=D0=BC =D0=BA=D0=B0 =D1=80=D0=B5=D0=B7=D1=83=D0=BB=D1=82=D0= =B0=D1=82=D1=83, =D0=B8 " +"=D0=B1=D0=B5=D0=BB=D0=B5=D0=B6=D0=B8 =D1=98=D0=B5\n" " =D0=BA=D0=B0=D0=BE =D0=BA=D0=BE=D1=80=D0=B5=D0= =BD =D1=81=D0=BA=D1=83=D0=BF=D1=99=D0=B0=D1=87=D0=B0 =D1=92=D1=83=D0=B1=D1= =80=D0=B0" =20 -#: guix/scripts/build.scm:241 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" @@ -202,10 +388,15 @@ msgstr "" "\n" " --log-file =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5= =D0=BA=D0=B5 =D0=B4=D0=BD=D0=B5=D0=B2=D0=BD=D0=B8=D0=BA=D0=B0 =D0=B7=D0=B0= =D0=B4=D0=B0=D1=82=D0=B5 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8= =D1=86=D0=B5" =20 -#: guix/scripts/build.scm:246 guix/scripts/download.scm:53 -#: guix/scripts/package.scm:523 guix/scripts/gc.scm:58 -#: guix/scripts/hash.scm:55 guix/scripts/pull.scm:82 -#: guix/scripts/substitute-binary.scm:564 guix/scripts/system.scm:334 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 +#: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -213,10 +404,15 @@ msgstr "" "\n" " -h, --help =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D1=83= =D1=98=D0=B5 =D0=BE=D0=B2=D1=83 =D0=BF=D0=BE=D0=BC=D0=BE=D1=9B =D0=B8 =D0= =B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=B8" =20 -#: guix/scripts/build.scm:248 guix/scripts/download.scm:55 -#: guix/scripts/package.scm:525 guix/scripts/gc.scm:60 -#: guix/scripts/hash.scm:57 guix/scripts/pull.scm:84 -#: guix/scripts/substitute-binary.scm:566 guix/scripts/system.scm:336 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 +#: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -224,24 +420,24 @@ msgstr "" "\n" " -V, --version =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D1=83= =D1=98=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=BA=D0=B5 =D0=BE =D0=B8=D0=B7= =D0=B4=D0=B0=D1=9A=D1=83 =D0=B8 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=B8" =20 -#: guix/scripts/build.scm:368 +#: guix/scripts/build.scm:498 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" -msgstr "=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=B8 =D0=BD=D0=B5 =D0=BE=D0=B4=D0= =B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D0=BD=D0=B8=D1=98=D0=B5=D0= =B4=D0=BD=D0=BE=D0=BC =D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D1=83:~{ ~a~}~%" +msgid "" +"invalid argument: '~a' option argument: ~a, ~\n" +"must be one of 'package', 'all', or 'transitive'~%" +msgstr "" =20 -#: guix/scripts/build.scm:397 guix/scripts/download.scm:96 -#: guix/scripts/package.scm:756 guix/scripts/gc.scm:122 -#: guix/scripts/pull.scm:115 guix/scripts/system.scm:386 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "~A: unrecognized option~%" -msgstr "~A: =D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D0=BE= =D0=BF=D1=86=D0=B8=D1=98=D0=B0~%" +msgid "~s: not something we can build~%" +msgstr "" =20 -#: guix/scripts/build.scm:425 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "=D0=BD=D0=B5=D0=BC=D0=B0 =D0=B4=D0=BD=D0=B5=D0=B2=D0=BD=D0=B8=D0= =BA=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5 =D0=B7=D0=B0 =E2= =80=9E~a=E2=80=9C~%" =20 -#: guix/scripts/download.scm:44 +#: guix/scripts/download.scm:45 msgid "" "Usage: guix download [OPTION] URL\n" "Download the file at URL, add it to the store, and print its store path= \n" @@ -257,7 +453,7 @@ msgstr "" "=D0=9F=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B8 =D0=B7=D0=B0=D0=BF=D0=B8= =D1=81=D0=B8: =E2=80=9Enix-base32=E2=80=9C (=D0=BE=D1=81=D0=BD=D0=BE=D0=B2= =D0=BD=D0=B8), =E2=80=9Ebase32=E2=80=9C, =D0=B8 =E2=80=9Ebase16=E2=80=9C\= n" "(=E2=80=9Ehex=E2=80=9C =D0=B8 =E2=80=9Ehexadecimal=E2=80=9C =D0=BC=D0=BE= =D0=B3=D1=83 =D1=82=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8= =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D0=BD=D0=B8).\n" =20 -#: guix/scripts/download.scm:50 guix/scripts/hash.scm:50 +#: guix/scripts/download.scm:51 guix/scripts/hash.scm:51 msgid "" "\n" " -f, --format=3DFMT write the hash in the given format" @@ -265,104 +461,111 @@ msgstr "" "\n" " -f, --format=3D=D0=A4=D0=9C=D0=A2 =D0=B7=D0=B0=D0=BF=D0=B8=D1=81= =D1=83=D1=98=D0=B5 =D1=85=D0=B5=D1=88 =D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D0=BC= =D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D1=83" =20 -#: guix/scripts/download.scm:73 guix/scripts/hash.scm:75 +#: guix/scripts/download.scm:74 guix/scripts/hash.scm:76 #, scheme-format msgid "unsupported hash format: ~a~%" msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B8 =D0= =B7=D0=B0=D0=BF=D0=B8=D1=81 =D1=85=D0=B5=D1=88=D0=B0: ~a~%" =20 -#: guix/scripts/download.scm:106 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 #, scheme-format -msgid "~a: failed to parse URI~%" -msgstr "~a: =D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE= =D0=B4=D0=B0 =D0=BE=D0=B1=D1=80=D0=B0=D0=B4=D0=B8=D0=BC =D0=BF=D1=83=D1=82= =D0=B0=D1=9A=D1=83~%" +msgid "~A: extraneous argument~%" +msgstr "~A: =D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8 =D0=B0=D1=80=D0=B3=D1=83= =D0=BC=D0=B5=D0=BD=D1=82~%" =20 -#: guix/scripts/download.scm:117 -#, scheme-format -msgid "~a: download failed~%" +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" msgstr "~a: =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0=D1=9A=D0=B5= =D0=BD=D0=B8=D1=98=D0=B5 =D1=83=D1=81=D0=BF=D0=B5=D0=BB=D0=BE~%" =20 -#: guix/scripts/package.scm:88 +#: guix/scripts/download.scm:111 #, scheme-format -msgid "failed to build the empty profile~%" -msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D0=B8=D0=BC =D0=BF=D1=80=D0= =B0=D0=B7=D0=B0=D0=BD =D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB~%" +msgid "~a: failed to parse URI~%" +msgstr "~a: =D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE= =D0=B4=D0=B0 =D0=BE=D0=B1=D1=80=D0=B0=D0=B4=D0=B8=D0=BC =D0=BF=D1=83=D1=82= =D0=B0=D1=9A=D1=83~%" =20 -#: guix/scripts/package.scm:97 +#: guix/scripts/download.scm:122 #, scheme-format -msgid "switching from generation ~a to ~a~%" -msgstr "=D0=BF=D1=80=D0=B5=D0=B1=D0=B0=D1=86=D1=83=D1=98=D0=B5=D0=BC =D1= =81=D0=B5 =D1=81=D0=B0 =D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1= =98=D0=B5 ~a =D0=BD=D0=B0 ~a~%" +msgid "~a: download failed~%" +msgstr "~a: =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0=D1=9A=D0=B5= =D0=BD=D0=B8=D1=98=D0=B5 =D1=83=D1=81=D0=BF=D0=B5=D0=BB=D0=BE~%" =20 -#: guix/scripts/package.scm:108 guix/scripts/package.scm:866 -#: guix/scripts/package.scm:978 +#: guix/scripts/package.scm:102 #, scheme-format -msgid "profile '~a' does not exist~%" -msgstr "=D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB =E2=80=9E~a=E2=80=9C =D0=BD= =D0=B5 =D0=BF=D0=BE=D1=81=D1=82=D0=BE=D1=98=D0=B8~%" +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "=D0=9F=D0=BE=D0=BA=D1=83=D1=88=D0=B0=D1=98=D1=82=D0=B5 =E2=80=9E= info '(guix) Invoking guix package'=E2=80=9C =D0=B7=D0=B0 =D0=B2=D0=B8=D1= =88=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0.~%" =20 -#: guix/scripts/package.scm:112 +#: guix/scripts/package.scm:124 #, scheme-format -msgid "nothing to do: already at the empty profile~%" -msgstr "=D0=BD=D0=B8=D1=88=D1=82=D0=B0 =D0=B7=D0=B0 =D1=83=D1=80=D0=B0=D0= =B4=D0=B8=D1=82=D0=B8: =D0=B2=D0=B5=D1=9B =D1=81=D0=B0=D0=BC =D1=83 =D0=BF= =D1=80=D0=B0=D0=B7=D0=BD=D0=BE=D0=BC =D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB= =D1=83~%" +msgid "error: while creating directory `~a': ~a~%" +msgstr "=D0=B3=D1=80=D0=B5=D1=88=D0=BA=D0=B0: =D0=BF=D1=80=D0=B8=D0=BB=D0= =B8=D0=BA=D0=BE=D0=BC =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B0 =D0= =B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC=D0=B0= =E2=80=9E~a=E2=80=9C: ~a~%" =20 -#: guix/scripts/package.scm:197 +#: guix/scripts/package.scm:128 #, scheme-format -msgid "The following package would be removed:~%~{~a~%~}~%" -msgstr "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA=D0= =B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8 =D0= =B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB=D0=BE=D1=9A=D0=B5=D0=BD=D0=B8:~%= ~{~a~%~}~%" +msgid "Please create the `~a' directory, with you as the owner.~%" +msgstr "=D0=9D=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D1=82=D0=B5 =D0=B4=D0= =B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC =E2=80=9E= ~a=E2=80=9C, =D1=83 =D0=B2=D0=B0=D1=88=D0=B5=D0=BC =D0=B2=D0=BB=D0=B0=D1=81= =D0=BD=D0=B8=D1=88=D1=82=D0=B2=D1=83.~%" =20 -#: guix/scripts/package.scm:202 +#: guix/scripts/package.scm:135 #, scheme-format -msgid "The following package will be removed:~%~{~a~%~}~%" -msgstr "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA=D0= =B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB=D0= =BE=D1=9A=D0=B5=D0=BD=D0=B8:~%~{~a~%~}~%" +msgid "error: directory `~a' is not owned by you~%" +msgstr "=D0=B3=D1=80=D0=B5=D1=88=D0=BA=D0=B0: =D0=B4=D0=B8=D1=80=D0=B5=D0= =BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC =E2=80=9E~a=E2=80=9C =D0=BD= =D0=B8=D1=98=D0=B5 =D1=83 =D0=B2=D0=B0=D1=88=D0=B5=D0=BC =D0=B2=D0=BB=D0=B0= =D1=81=D0=BD=D0=B8=D1=88=D1=82=D0=B2=D1=83~%" =20 -#: guix/scripts/package.scm:214 +#: guix/scripts/package.scm:138 #, scheme-format -msgid "The following package would be installed:~%~{~a~%~}~%" -msgstr "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA=D0= =B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8 =D0= =B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0= =B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "=D0=9F=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B8=D1=82=D0=B5 =D0=BA=D0= =B0=D0=BE =D0=B2=D0=BB=D0=B0=D1=81=D0=BD=D0=B8=D0=BA=D0=B0 ~s =D0=BD=D0=B0= =D0=B4 =E2=80=9E~a=E2=80=9C.~%" =20 -#: guix/scripts/package.scm:219 +#: guix/scripts/package.scm:173 #, scheme-format -msgid "The following package will be installed:~%~{~a~%~}~%" -msgstr "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA=D0= =B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81=D1= =82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgid "not removing generation ~a, which is current~%" +msgstr "" =20 -#: guix/scripts/package.scm:339 -#, scheme-format -msgid "package `~a' lacks output `~a'~%" -msgstr "=D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D1=83 =E2=80=9E~a=E2=80=9C =D0=BD= =D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D0=B5 =D0=B8=D0=B7=D0=BB=D0=B0= =D0=B7 =E2=80=9E~a=E2=80=9C~%" +#: guix/scripts/package.scm:180 +#, fuzzy, scheme-format +msgid "no matching generation~%" +msgstr "=D0=BF=D1=80=D0=B5=D0=B1=D0=B0=D1=86=D1=83=D1=98=D0=B5=D0=BC =D1= =81=D0=B5 =D1=81=D0=B0 =D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1= =98=D0=B5 ~a =D0=BD=D0=B0 ~a~%" =20 -#: guix/scripts/package.scm:356 +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 #, scheme-format -msgid "~a: package not found~%" -msgstr "~a: =D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D0=BF=D1=80=D0=BE=D0=BD=D0=B0= =D1=88=D0=B0=D0=BE =D0=BF=D0=B0=D0=BA=D0=B5=D1=82~%" +msgid "invalid syntax: ~a~%" +msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B0 =D1= =81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81=D0=B0: ~a~%" =20 -#: guix/scripts/package.scm:391 +#: guix/scripts/package.scm:208 #, scheme-format -msgid "looking for the latest release of GNU ~a..." -msgstr "=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=BC =D0=BF=D0=BE=D1=81=D0=BB=D0= =B5=D0=B4=D1=9A=D0=B5 =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5 =D0=93=D0=BD=D1= =83=D0=B0 ~a..." +msgid "nothing to be done~%" +msgstr "=D0=BD=D0=B8=D1=88=D1=82=D0=B0 =D0=BD=D0=B5=D1=9B=D0=B5 =D0=B1=D0= =B8=D1=82=D0=B8 =D1=83=D1=80=D0=B0=D1=92=D0=B5=D0=BD=D0=BE~%" =20 -#: guix/scripts/package.scm:395 -#, scheme-format -msgid "~a: note: using ~a but ~a is available upstream~%" -msgstr "~a: =D0=BD=D0=B0=D0=BF=D0=BE=D0=BC=D0=B5=D0=BD=D0=B0: =D0=BA=D0=BE= =D1=80=D0=B8=D1=81=D1=82=D0=B8=D0=BC ~a =D0=B0=D0=BB=D0=B8 ~a =D1=98=D0=B5= =D0=B4=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BD=D0=BE =D1=83=D0=B7=D0=B2=D0=BE= =D0=B4=D0=BD=D0=BE~%" +#: guix/scripts/package.scm:222 +#, fuzzy, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "~a =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =D1=83 =D0=BF=D1=80=D0=BE=D1= =84=D0=B8=D0=BB=D1=83~%" +msgstr[1] "~a =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =D1=83 =D0=BF=D1=80=D0=BE=D1= =84=D0=B8=D0=BB=D1=83~%" +msgstr[2] "~a =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =D1=83 =D0=BF=D1=80=D0=BE=D1= =84=D0=B8=D0=BB=D1=83~%" =20 -#: guix/scripts/package.scm:467 +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" msgstr "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B5 =D0=BE=D0=B4=D1=80=D0= =B5=D0=B4=D0=BD=D0=B8=D1=86=D0=B5 =D0=BF=D1=80=D0=BE=D0=BC=D0=B5=D0=BD=D1= =99=D0=B8=D0=B2=D0=B5 =D0=BE=D0=BA=D1=80=D1=83=D0=B6=D0=B5=D1=9A=D0=B0 =D0= =BC=D0=BE=D0=B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D0=BE=D1=82=D1=80=D0= =B5=D0=B1=D0=BD=D0=B5:~%" =20 -#: guix/scripts/package.scm:483 +#: guix/scripts/package.scm:325 +#, fuzzy msgid "" -"Usage: guix package [OPTION]... PACKAGES...\n" -"Install, remove, or upgrade PACKAGES in a single transaction.\n" +"Usage: guix package [OPTION]...\n" +"Install, remove, or upgrade packages in a single transaction.\n" msgstr "" "=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix package [=D0=9E=D0= =9F=D0=A6=D0=98=D0=88=D0=90]... =D0=9F=D0=90=D0=9A=D0=95=D0=A2=D0=98...\n= " "=D0=98=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D1=98=D1=82=D0=B5= , =D1=83=D0=BA=D0=BB=D0=BE=D0=BD=D0=B8=D1=82=D0=B5, =D0=B8=D0=BB=D0=B8 =D0= =B4=D0=BE=D0=B3=D1=80=D0=B0=D0=B4=D0=B8=D1=82=D0=B5 =D0=9F=D0=90=D0=9A=D0= =95=D0=A2=D0=95 =D1=83 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D0=BC =D0=BF=D1=80=D0= =B5=D0=BB=D0=B0=D0=B7=D1=83.\n" =20 -#: guix/scripts/package.scm:485 +#: guix/scripts/package.scm:327 +#, fuzzy msgid "" "\n" -" -i, --install=3DPACKAGE install PACKAGE" +" -i, --install PACKAGE ...\n" +" install PACKAGEs" msgstr "" "\n" " -i, --install=3D=D0=9F=D0=90=D0=9A=D0=95=D0=A2 =D0=B8=D0=BD=D1=81=D1= =82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0 =D0=9F=D0=90=D0=9A=D0=95=D0=A2" =20 -#: guix/scripts/package.scm:487 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" @@ -372,23 +575,55 @@ msgstr "" " -e, --install-from-expression=3D=D0=98=D0=97=D0=A0\n" " =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80= =D0=B0 =D0=BF=D1=80=D0=BE=D1=86=D0=B5=D0=BD=D0=B5 =D0=98=D0=97=D0=A0 =D0=BF= =D0=B0=D0=BA=D0=B5=D1=82=D0=B0 =D1=83" =20 -#: guix/scripts/package.scm:490 +#: guix/scripts/package.scm:333 +#, fuzzy +msgid "" +"\n" +" -f, --install-from-file=3DFILE\n" +" install the package that the code within FILE\= n" +" evaluates to" +msgstr "" +"\n" +" -e, --install-from-expression=3D=D0=98=D0=97=D0=A0\n" +" =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80= =D0=B0 =D0=BF=D1=80=D0=BE=D1=86=D0=B5=D0=BD=D0=B5 =D0=98=D0=97=D0=A0 =D0=BF= =D0=B0=D0=BA=D0=B5=D1=82=D0=B0 =D1=83" + +#: guix/scripts/package.scm:337 +#, fuzzy msgid "" "\n" -" -r, --remove=3DPACKAGE remove PACKAGE" +" -r, --remove PACKAGE ...\n" +" remove PACKAGEs" msgstr "" "\n" " -r, --remove=3D=D0=9F=D0=90=D0=9A=D0=95=D0=A2 =D1=83=D0=BA=D0=BB=D0= =B0=D1=9A=D0=B0 =D0=9F=D0=90=D0=9A=D0=95=D0=A2" =20 -#: guix/scripts/package.scm:492 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" msgstr "" "\n" -" -u, --upgrade[=3D=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0] =D0=B4=D0=BE=D0= =B3=D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=B2=D0=B5 =D0=B8=D0=BD=D1= =81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B5 =D0=BF=D0=B0=D0=BA=D0= =B5=D1=82=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0= =B0=D1=80=D0=B0=D1=98=D1=83 =D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0=D0=90=D0= =97=D0=A3" +" -u, --upgrade[=3D=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0] =D0=B4=D0=BE=D0= =B3=D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=B2=D0=B5 =D0=B8=D0=BD=D1= =81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B5 =D0=BF=D0=B0=D0=BA=D0= =B5=D1=82=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0= =B0=D1=80=D0=B0=D1=98=D1=83 " +"=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0=D0=90=D0=97=D0=A3" + +#: guix/scripts/package.scm:342 +msgid "" +"\n" +" -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" +" from FILE" +msgstr "" + +#: guix/scripts/package.scm:345 +#, fuzzy +msgid "" +"\n" +" --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" +msgstr "" +"\n" +" -u, --upgrade[=3D=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0] =D0=B4=D0=BE=D0= =B3=D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=B2=D0=B5 =D0=B8=D0=BD=D1= =81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B5 =D0=BF=D0=B0=D0=BA=D0= =B5=D1=82=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0= =B0=D1=80=D0=B0=D1=98=D1=83 " +"=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0=D0=90=D0=97=D0=A3" =20 -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -396,15 +631,17 @@ msgstr "" "\n" " --roll-back =D0=B2=D1=80=D0=B0=D1=9B=D0=B0 =D1=81=D0=B5 =D0= =BD=D0=B0 =D0=BF=D1=80=D0=B5=D1=82=D1=85=D0=BE=D0=B4=D0=BD=D1=83 =D0=B3=D0= =B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1=98=D1=83" =20 -#: guix/scripts/package.scm:496 +#: guix/scripts/package.scm:349 +#, fuzzy msgid "" "\n" -" --search-paths display needed environment variable definition= s" +" --search-paths[=3DKIND]\n" +" display needed environment variable definition= s" msgstr "" "\n" " --search-paths =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D1=83=D1=98= =D0=B5 =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BD=D0=B5 =D0=BE=D0=B4=D1=80= =D0=B5=D0=B4=D0=BD=D0=B8=D1=86=D0=B5 =D0=BF=D1=80=D0=BE=D0=BC=D0=B5=D0=BD= =D1=99=D0=B8=D0=B2=D0=B5 =D0=BE=D0=BA=D1=80=D1=83=D0=B6=D0=B5=D1=9A=D0=B0= " =20 -#: guix/scripts/package.scm:498 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" @@ -414,7 +651,7 @@ msgstr "" " -l, --list-generations[=3D=D0=A8=D0=90=D0=91=D0=9B=D0=9E=D0=9D]\n" " =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1=98=D0=B5 =D0=BA=D0=BE= =D1=98=D0=B5 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83= =D0=A8=D0=90=D0=91=D0=9B=D0=9E=D0=9D=D0=A3" =20 -#: guix/scripts/package.scm:501 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" @@ -424,7 +661,18 @@ msgstr "" " -d, --delete-generations[=3D=D0=A8=D0=90=D0=91=D0=9B=D0=9E=D0=9D]\n" " =D0=B1=D1=80=D0=B8=D1=88=D0=B5 =D0=B3=D0=B5=D0= =BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1=98=D0=B5 =D0=BA=D0=BE=D1=98=D0=B5 =D0= =BE=D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D0=A8=D0=90=D0= =91=D0=9B=D0=9E=D0=9D=D0=A3" =20 -#: guix/scripts/package.scm:504 +#: guix/scripts/package.scm:358 +#, fuzzy +msgid "" +"\n" +" -S, --switch-generation=3DPATTERN\n" +" switch to a generation matching PATTERN" +msgstr "" +"\n" +" -l, --list-generations[=3D=D0=A8=D0=90=D0=91=D0=9B=D0=9E=D0=9D]\n" +" =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1=98=D0=B5 =D0=BA=D0=BE= =D1=98=D0=B5 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83= =D0=A8=D0=90=D0=91=D0=9B=D0=9E=D0=9D=D0=A3" + +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" @@ -432,7 +680,7 @@ msgstr "" "\n" " -p, --profile=3D=D0=9F=D0=A0=D0=9E=D0=A4=D0=98=D0=9B =D0=BA=D0=BE=D1= =80=D0=B8=D1=81=D1=82=D0=B8 =D0=9F=D0=A0=D0=9E=D0=A4=D0=98=D0=9B =D1=83=D0= =BC=D0=B5=D1=81=D1=82=D0=BE =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D0=BD=D0=B8=D1= =87=D0=BA=D0=BE=D0=B3 =D0=BF=D0=BE=D0=B4=D1=80=D0=B0=D0=B7=D1=83=D0=BC=D0= =B5=D0=B2=D0=B0=D0=BD=D0=BE=D0=B3" =20 -#: guix/scripts/package.scm:507 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -440,7 +688,7 @@ msgstr "" "\n" " --bootstrap =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0= =93=D1=83=D0=B8=D0=BB=D0=B5 =D0=BF=D0=BE=D1=87=D0=B5=D1=82=D0=BD=D0=BE=D0= =B3 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0 =D0=B4=D0=B0 =D0= =B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D0=B8 =D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0= =BB" =20 -#: guix/scripts/package.scm:509 guix/scripts/pull.scm:75 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" @@ -448,7 +696,7 @@ msgstr "" "\n" " --verbose =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0 =D0=BE=D0= =BF=D1=88=D0=B8=D1=80=D0=B0=D0=BD =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7" =20 -#: guix/scripts/package.scm:512 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" @@ -456,7 +704,7 @@ msgstr "" "\n" " -s, --search=3D=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0 =D1=82=D1=80=D0= =B0=D0=B6=D0=B8 =D1=83 =D1=81=D0=BA=D0=B8=D1=86=D0=B8 =D0=B8 =D0=BE=D0=BF= =D0=B8=D1=81=D1=83 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B5=D1=9B=D0=B8= =D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0" =20 -#: guix/scripts/package.scm:514 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" @@ -464,9 +712,10 @@ msgid "" msgstr "" "\n" " -I, --list-installed[=3D=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0]\n" -" =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B5 =D0=BF= =D0=B0=D0=BA=D0=B5=D1=82=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BE=D0=B4=D0=B3= =D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D0=A0=D0=95=D0=93=D0=98=D0=97= =D0=A0=D0=90=D0=97=D0=A3" +" =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B5 =D0=BF= =D0=B0=D0=BA=D0=B5=D1=82=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BE=D0=B4=D0=B3= =D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 " +"=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0=D0=90=D0=97=D0=A3" =20 -#: guix/scripts/package.scm:517 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" @@ -476,67 +725,36 @@ msgstr "" " -A, --list-available[=3D=D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0]\n" " =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B4=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BD=D0=B5 =D0=BF=D0=B0=D0=BA=D0=B5= =D1=82=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0=B0= =D1=80=D0=B0=D1=98=D1=83 =D0=A0=D0=95=D0=93=D0=98=D0=97=D0=A0=D0=90=D0=97= =D0=A3" =20 -#: guix/scripts/package.scm:760 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "~A: =D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8 =D0=B0=D1=80=D0=B3=D1=83= =D0=BC=D0=B5=D0=BD=D1=82~%" - -#: guix/scripts/package.scm:775 -#, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "=D0=9F=D0=BE=D0=BA=D1=83=D1=88=D0=B0=D1=98=D1=82=D0=B5 =E2=80=9E= info '(guix) Invoking guix package'=E2=80=9C =D0=B7=D0=B0 =D0=B2=D0=B8=D1= =88=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0.~%" - -#: guix/scripts/package.scm:797 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "=D0=B3=D1=80=D0=B5=D1=88=D0=BA=D0=B0: =D0=BF=D1=80=D0=B8=D0=BB=D0= =B8=D0=BA=D0=BE=D0=BC =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B0 =D0= =B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC=D0=B0= =E2=80=9E~a=E2=80=9C: ~a~%" - -#: guix/scripts/package.scm:801 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "=D0=9D=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D1=82=D0=B5 =D0=B4=D0= =B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC =E2=80=9E= ~a=E2=80=9C, =D1=83 =D0=B2=D0=B0=D1=88=D0=B5=D0=BC =D0=B2=D0=BB=D0=B0=D1=81= =D0=BD=D0=B8=D1=88=D1=82=D0=B2=D1=83.~%" - -#: guix/scripts/package.scm:808 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "=D0=B3=D1=80=D0=B5=D1=88=D0=BA=D0=B0: =D0=B4=D0=B8=D1=80=D0=B5=D0= =BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC =E2=80=9E~a=E2=80=9C =D0=BD= =D0=B8=D1=98=D0=B5 =D1=83 =D0=B2=D0=B0=D1=88=D0=B5=D0=BC =D0=B2=D0=BB=D0=B0= =D1=81=D0=BD=D0=B8=D1=88=D1=82=D0=B2=D1=83~%" - -#: guix/scripts/package.scm:811 -#, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "=D0=9F=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B8=D1=82=D0=B5 =D0=BA=D0= =B0=D0=BE =D0=B2=D0=BB=D0=B0=D1=81=D0=BD=D0=B8=D0=BA=D0=B0 ~s =D0=BD=D0=B0= =D0=B4 =E2=80=9E~a=E2=80=9C.~%" - -#: guix/scripts/package.scm:836 -#, scheme-format -msgid "deleting ~a~%" -msgstr "=D0=B1=D1=80=D0=B8=D1=88=D0=B5=D0=BC ~a~%" - -#: guix/scripts/package.scm:889 guix/scripts/package.scm:994 -#, scheme-format -msgid "invalid syntax: ~a~%" -msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B0 =D1= =81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81=D0=B0: ~a~%" +#: guix/scripts/package.scm:377 +#, fuzzy +msgid "" +"\n" +" --show=3DPACKAGE show details about PACKAGE" +msgstr "" +"\n" +" -i, --install=3D=D0=9F=D0=90=D0=9A=D0=95=D0=A2 =D0=B8=D0=BD=D1=81=D1= =82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0 =D0=9F=D0=90=D0=9A=D0=95=D0=A2" =20 -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:472 #, scheme-format -msgid "nothing to be done~%" -msgstr "=D0=BD=D0=B8=D1=88=D1=82=D0=B0 =D0=BD=D0=B5=D1=9B=D0=B5 =D0=B1=D0= =B8=D1=82=D0=B8 =D1=83=D1=80=D0=B0=D1=92=D0=B5=D0=BD=D0=BE~%" +msgid "~a: unsupported kind of search path~%" +msgstr "" =20 -#: guix/scripts/package.scm:941 -#, scheme-format -msgid "~a package in profile~%" -msgstr "~a =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =D1=83 =D0=BF=D1=80=D0=BE=D1=84= =D0=B8=D0=BB=D1=83~%" +#: guix/scripts/package.scm:755 +#, fuzzy, scheme-format +msgid "cannot switch to generation '~a'~%" +msgstr "=D0=BF=D1=80=D0=B5=D0=B1=D0=B0=D1=86=D1=83=D1=98=D0=B5=D0=BC =D1= =81=D0=B5 =D1=81=D0=B0 =D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1= =98=D0=B5 ~a =D0=BD=D0=B0 ~a~%" =20 -#: guix/scripts/package.scm:956 +#: guix/scripts/package.scm:771 #, scheme-format -msgid "Generation ~a\t~a" -msgstr "=D0=93=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1=98=D0=B0 ~a\= t~a" +msgid "would install new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/package.scm:963 +#: guix/scripts/package.scm:773 #, scheme-format -msgid "~a\t(current)~%" -msgstr "~a\t(=D1=82=D0=B5=D0=BA=D1=83=D1=9B=D0=B5)~%" +msgid "installing new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/gc.scm:39 +#: guix/scripts/gc.scm:40 msgid "" "Usage: guix gc [OPTION]... PATHS...\n" "Invoke the garbage collector.\n" @@ -544,7 +762,7 @@ msgstr "" "=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix gc [=D0=9E=D0=9F= =D0=A6=D0=98=D0=88=D0=90]... =D0=9F=D0=A3=D0=A2=D0=90=D0=8A=D0=95...\n" "=D0=9F=D0=BE=D0=B7=D0=BE=D0=B2=D0=B8=D1=82=D0=B5 =D1=81=D0=BA=D1=83=D0=BF= =D1=99=D0=B0=D1=87=D0=B0 =D1=92=D1=83=D0=B1=D1=80=D0=B0.\n" =20 -#: guix/scripts/gc.scm:41 +#: guix/scripts/gc.scm:42 msgid "" "\n" " -C, --collect-garbage[=3DMIN]\n" @@ -554,7 +772,7 @@ msgstr "" " -C, --collect-garbage[=3D=D0=9D=D0=90=D0=88=D0=9C]\n" " =D1=81=D0=BA=D1=83=D0=BF=D1=99=D0=B0 =D0=B1=D0= =B0=D1=80=D0=B5=D0=BC =D0=9D=D0=90=D0=88=D0=9C =D0=B1=D0=B0=D1=98=D1=82=D0= =BE=D0=B2=D0=B0 =D1=92=D1=83=D0=B1=D1=80=D0=B0" =20 -#: guix/scripts/gc.scm:44 +#: guix/scripts/gc.scm:45 msgid "" "\n" " -d, --delete attempt to delete PATHS" @@ -562,7 +780,13 @@ msgstr "" "\n" " -d, --delete =D0=BF=D0=BE=D0=BA=D1=83=D1=88=D0=B0=D0=B2=D0=B0= =D0=B4=D0=B0 =D0=BE=D0=B1=D1=80=D0=B8=D1=88=D0=B5 =D0=9F=D0=A3=D0=A2=D0=90= =D0=8A=D0=95" =20 -#: guix/scripts/gc.scm:46 +#: guix/scripts/gc.scm:47 +msgid "" +"\n" +" --optimize optimize the store by deduplicating identical = files" +msgstr "" + +#: guix/scripts/gc.scm:49 msgid "" "\n" " --list-dead list dead paths" @@ -570,7 +794,7 @@ msgstr "" "\n" " --list-dead =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=BC=D1=80=D1=82=D0=B2=D0=B5 =D0=BF=D1=83=D1=82=D0=B0=D1=9A=D0=B5" =20 -#: guix/scripts/gc.scm:48 +#: guix/scripts/gc.scm:51 msgid "" "\n" " --list-live list live paths" @@ -578,7 +802,7 @@ msgstr "" "\n" " --list-dead =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B6=D0=B8=D0=B2=D0=B5 =D0=BF=D1=83=D1=82=D0=B0=D1=9A=D0=B5" =20 -#: guix/scripts/gc.scm:51 +#: guix/scripts/gc.scm:54 msgid "" "\n" " --references list the references of PATHS" @@ -586,7 +810,7 @@ msgstr "" "\n" " --references =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D1=83=D0=BF=D1=83=D1=82=D0=B5 =D0=9F=D0=A3=D0=A2=D0=90=D0=8A=D0=90" =20 -#: guix/scripts/gc.scm:53 +#: guix/scripts/gc.scm:56 msgid "" "\n" " -R, --requisites list the requisites of PATHS" @@ -594,7 +818,7 @@ msgstr "" "\n" " --references =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B7=D0=B0=D1=85=D1=82=D0=B5=D0=B2=D0=B5 =D0=9F=D0=A3=D0=A2=D0=90=D0=8A= =D0=90" =20 -#: guix/scripts/gc.scm:55 +#: guix/scripts/gc.scm:58 msgid "" "\n" " --referrers list the referrers of PATHS" @@ -602,12 +826,40 @@ msgstr "" "\n" " --referrers =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D1=83=D0=B1=D1=80=D0=B0=D1=98=D0=B0=D1=87=D0=B5 =D0=9F=D0=A3=D0=A2=D0=90= =D0=8A=D0=90" =20 -#: guix/scripts/gc.scm:84 -#, scheme-format -msgid "invalid amount of storage: ~a~%" -msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =B8=D0=B7=D0=BD=D0=BE=D1=81 =D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0=B8=D1=88=D1= =82=D0=B0: ~a~%" - -#: guix/scripts/hash.scm:45 +#: guix/scripts/gc.scm:61 +msgid "" +"\n" +" --verify[=3DOPTS] verify the integrity of the store; OPTS is a= \n" +" comma-separated combination of 'repair' and\n" +" 'contents'" +msgstr "" + +#: guix/scripts/gc.scm:65 +#, fuzzy +msgid "" +"\n" +" --list-failures list cached build failures" +msgstr "" +"\n" +" --list-dead =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=BC=D1=80=D1=82=D0=B2=D0=B5 =D0=BF=D1=83=D1=82=D0=B0=D1=9A=D0=B5" + +#: guix/scripts/gc.scm:67 +msgid "" +"\n" +" --clear-failures remove PATHS from the set of cached failures" +msgstr "" + +#: guix/scripts/gc.scm:96 +#, scheme-format +msgid "invalid amount of storage: ~a~%" +msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =B8=D0=B7=D0=BD=D0=BE=D1=81 =D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0=B8=D1=88=D1= =82=D0=B0: ~a~%" + +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "~A: =D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8 =D0=B0=D1=80=D0=B3=D1=83= =D0=BC=D0=B5=D0=BD=D1=82~%" + +#: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" "Return the cryptographic hash of FILE.\n" @@ -621,7 +873,7 @@ msgstr "" "=D0=9F=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B8 =D0=B7=D0=B0=D0=BF=D0=B8= =D1=81=D0=B8: =E2=80=9Enix-base32=E2=80=9C (=D0=B7=D0=B0=D0=B4=D0=B0=D1=82= =D0=BE), =E2=80=9Ebase32=E2=80=9C, =D0=B8 =E2=80=9Ebase16=E2=80=9C\n" "(=E2=80=9Ehex=E2=80=9C =D0=B8 =E2=80=9Ehexadecimal=E2=80=9C =D0=BC=D0=BE= =D0=B3=D1=83 =D1=82=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8= =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D0=BD=D0=B8).\n" =20 -#: guix/scripts/hash.scm:52 +#: guix/scripts/hash.scm:53 msgid "" "\n" " -r, --recursive compute the hash on FILE recursively" @@ -629,22 +881,108 @@ msgstr "" "\n" " -r, --recursive =D1=80=D0=B0=D1=87=D1=83=D0=BD=D0=B0 =D1=85=D0= =B5=D1=88 =D0=B4=D1=83=D0=B1=D0=B8=D0=BD=D1=81=D0=BA=D0=B8 =D0=BD=D0=B0 =D0= =94=D0=90=D0=A2=D0=9E=D0=A2=D0=95=D0=A6=D0=98" =20 -#: guix/scripts/hash.scm:103 +#: guix/scripts/hash.scm:104 #, scheme-format msgid "unrecognized option: ~a~%" msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D0=BE=D0= =BF=D1=86=D0=B8=D1=98=D0=B0: ~a~%" =20 -#: guix/scripts/hash.scm:134 guix/ui.scm:233 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=B0=D0=BD =D0=B1=D1=80=D0= =BE=D1=98 =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0~%" =20 -#: guix/scripts/pull.scm:73 +#: guix/scripts/import.scm:85 +#, fuzzy +msgid "" +"Usage: guix import IMPORTER ARGS ...\n" +"Run IMPORTER with ARGS.\n" +msgstr "" +"=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix =D0=9D=D0=90=D0=A0= =D0=95=D0=94=D0=91=D0=90 =D0=90=D0=A0=D0=93=D0=A3=D0=9C=D0=95=D0=9D=D0=A2= =D0=98...\n" +"=D0=9F=D0=BE=D0=BA=D1=80=D0=B5=D0=BD=D0=B8=D1=82=D0=B5 =D0=9D=D0=90=D0=A0= =D0=95=D0=94=D0=91=D0=A3 =D1=81=D0=B0 =D0=90=D0=A0=D0=93=D0=A3=D0=9C=D0=95= =D0=9D=D0=A2=D0=98=D0=9C=D0=90.\n" + +#: guix/scripts/import.scm:88 +#, fuzzy +msgid "IMPORTER must be one of the importers listed below:\n" +msgstr "=D0=9D=D0=90=D0=A0=D0=95=D0=94=D0=91=D0=90 =D0=BC=D0=BE=D1=80=D0= =B0 =D0=B1=D0=B8=D1=82=D0=B8 =D1=98=D0=B5=D0=B4=D0=BD=D0=B0 =D0=BE=D0=B4 = =D0=BF=D0=BE=D0=B4=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4=D0=B8 =D0=BD=D0=B0= =D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D1=85 =D0=B8=D1=81=D0=BF=D0=BE=D0=B4= :\n" + +#: guix/scripts/import.scm:102 +#, fuzzy, scheme-format +msgid "guix import: missing importer name~%" +msgstr "guix: =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D0=B5 =D0= =BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B5~%" + +#: guix/scripts/import.scm:113 +#, scheme-format +msgid "guix import: invalid importer~%" +msgstr "" + +#: guix/scripts/import/cran.scm:42 +msgid "" +"Usage: guix import cran PACKAGE-NAME\n" +"Import and convert the CRAN package for PACKAGE-NAME.\n" +msgstr "" + +#: guix/scripts/import/cran.scm:44 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/cran.scm:94 +#, fuzzy, scheme-format +msgid "failed to download description for package '~a'~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D1=83 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5 =E2=80=9E~a=E2= =80=9C: ~s~%" + +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 +#, fuzzy, scheme-format +msgid "too few arguments~%" +msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=B0=D0=BD =D0=B1=D1=80=D0= =BE=D1=98 =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0~%" + +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 +#, fuzzy, scheme-format +msgid "too many arguments~%" +msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=BD=D0=B8 =D0=B0=D1=80=D0= =B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B8" + +#: guix/scripts/import/elpa.scm:41 +msgid "" +"Usage: guix import elpa PACKAGE-NAME\n" +"Import the latest package named PACKAGE-NAME from an ELPA repository.\n= " +msgstr "" + +#: guix/scripts/import/elpa.scm:43 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/elpa.scm:45 +#, fuzzy +msgid "" +"\n" +" -h, --help display this help and exit" +msgstr "" +"\n" +" -h, --help =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D1=83= =D1=98=D0=B5 =D0=BE=D0=B2=D1=83 =D0=BF=D0=BE=D0=BC=D0=BE=D1=9B =D0=B8 =D0= =B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=B8" + +#: guix/scripts/import/elpa.scm:47 +#, fuzzy +msgid "" +"\n" +" -V, --version display version information and exit" +msgstr "" +"\n" +" -V, --version =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D1=83= =D1=98=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=BA=D0=B5 =D0=BE =D0=B8=D0=B7= =D0=B4=D0=B0=D1=9A=D1=83 =D0=B8 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=B8" + +#: guix/scripts/import/elpa.scm:92 +#, fuzzy, scheme-format +msgid "failed to download package '~a'~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D1=83 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5 =E2=80=9E~a=E2= =80=9C: ~s~%" + +#: guix/scripts/pull.scm:74 msgid "" "Usage: guix pull [OPTION]...\n" "Download and deploy the latest version of Guix.\n" @@ -652,7 +990,7 @@ msgstr "" "=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix pull [=D0=9E=D0=9F= =D0=A6=D0=98=D0=88=D0=90]...\n" "=D0=9F=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0 =D0=B8 =D1=80=D0=B0=D0= =B7=D0=B2=D0=B8=D1=98=D0=B0 =D0=BD=D0=B0=D1=98=D0=BD=D0=BE=D0=B2=D0=B8=D1= =98=D0=B5 =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5 =D0=93=D1=83=D0=B8=D0=BA=D1= =81=D0=B0.\n" =20 -#: guix/scripts/pull.scm:77 +#: guix/scripts/pull.scm:78 msgid "" "\n" " --url=3DURL download the Guix tarball from URL" @@ -660,136 +998,157 @@ msgstr "" "\n" " --url=3D=D0=90=D0=94=D0=A0=D0=95=D0=A1=D0=90 =D0=BF=D1=80=D0= =B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0 =D1=82=D0=B0=D1=80=D0=B1=D0=B0=D0=BB =D0= =93=D1=83=D0=B8=D0=BA=D1=81=D0=B0 =D1=81=D0=B0 =D0=90=D0=94=D0=A0=D0=95=D0= =A1=D0=95" =20 -#: guix/scripts/pull.scm:79 +#: guix/scripts/pull.scm:80 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the new Guix" msgstr "" "\n" -" --bootstrap =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0= =93=D1=83=D0=B8=D0=BB=D0=B5 =D0=BF=D0=BE=D1=87=D0=B5=D1=82=D0=BD=D0=BE=D0= =B3 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0 =D0=B4=D0=B0 =D0= =B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D0=B8 =D0=BD=D0=BE=D0=B2=D0=B8 =D0=93=D1= =83=D0=B8=D0=BA=D1=81" +" --bootstrap =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0= =93=D1=83=D0=B8=D0=BB=D0=B5 =D0=BF=D0=BE=D1=87=D0=B5=D1=82=D0=BD=D0=BE=D0= =B3 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0 =D0=B4=D0=B0 =D0= =B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D0=B8 =D0=BD=D0=BE=D0=B2=D0=B8 " +"=D0=93=D1=83=D0=B8=D0=BA=D1=81" =20 -#: guix/scripts/pull.scm:117 +#: guix/scripts/pull.scm:134 +msgid "tarball did not produce a single source directory" +msgstr "" + +#: guix/scripts/pull.scm:152 #, scheme-format -msgid "~A: unexpected argument~%" -msgstr "~A: =D0=BD=D0=B5=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD= =D0=B8 =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82~%" +msgid "unpacking '~a'...~%" +msgstr "" =20 -#: guix/scripts/pull.scm:126 -msgid "failed to download up-to-date source, exiting\n" -msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=BC=D0=B5=D0=BC =D0=BD=D0=B0=D1= =98=D1=81=D0=B2=D0=B5=D0=B6=D0=B8=D1=98=D0=B8 =D0=B8=D0=B7=D0=B2=D0=BE=D1= =80, =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=B8=D0=BC\n" +#: guix/scripts/pull.scm:161 +msgid "failed to unpack source code" +msgstr "" + +#: guix/scripts/pull.scm:204 +msgid "Guix already up to date\n" +msgstr "=D0=93=D1=83=D0=B8=D0=BA=D1=81 =D1=98=D0=B5 =D0=B2=D0=B5=D1=9B =D0= =B0=D0=B6=D1=83=D1=80=D0=B8=D1=80=D0=B0=D0=BD\n" =20 -#: guix/scripts/pull.scm:145 +#: guix/scripts/pull.scm:209 #, scheme-format msgid "updated ~a successfully deployed under `~a'~%" msgstr "=D0=B0=D0=B6=D1=83=D1=80=D0=B8=D1=80=D0=B0=D0=BD=D0=B8 ~a =D1=98= =D0=B5 =D1=83=D1=81=D0=BF=D0=B5=D1=88=D0=BD=D0=BE =D1=80=D0=B0=D0=B7=D0=B2= =D0=B8=D1=98=D0=B5=D0=BD =D0=BF=D0=BE=D0=B4 =E2=80=9E~a=E2=80=9C~%" =20 -#: guix/scripts/pull.scm:148 +#: guix/scripts/pull.scm:212 #, scheme-format msgid "failed to update Guix, check the build log~%" msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=B0=D0=B6=D1=83=D1=80=D0=B8=D1=80=D0=B0=D0=BC =D0=93=D1=83=D0= =B8=D0=BA=D1=81, =D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=B8=D1=82=D0=B5 =D0= =B4=D0=BD=D0=B5=D0=B2=D0=BD=D0=B8=D0=BA =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0= =B4=D1=9A=D0=B5~%" =20 -#: guix/scripts/pull.scm:150 -msgid "Guix already up to date\n" -msgstr "=D0=93=D1=83=D0=B8=D0=BA=D1=81 =D1=98=D0=B5 =D0=B2=D0=B5=D1=9B =D0= =B0=D0=B6=D1=83=D1=80=D0=B8=D1=80=D0=B0=D0=BD\n" +#: guix/scripts/pull.scm:221 +#, scheme-format +msgid "~A: unexpected argument~%" +msgstr "~A: =D0=BD=D0=B5=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD= =D0=B8 =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82~%" =20 -#: guix/scripts/substitute-binary.scm:80 +#: guix/scripts/pull.scm:230 +msgid "failed to download up-to-date source, exiting\n" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=BC=D0=B5=D0=BC =D0=BD=D0=B0=D1= =98=D1=81=D0=B2=D0=B5=D0=B6=D0=B8=D1=98=D0=B8 =D0=B8=D0=B7=D0=B2=D0=BE=D1= =80, =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=B8=D0=BC\n" + +#: guix/scripts/substitute.scm:103 #, scheme-format msgid "authentication and authorization of substitutes disabled!~%" msgstr "=D0=BF=D0=BE=D1=82=D0=B2=D1=80=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5= =D0=B8=D0=B4=D0=B5=D0=BD=D1=82=D0=B8=D1=82=D0=B5=D1=82=D0=B0 =D0=B8 =D0=BE= =D0=B2=D0=BB=D0=B0=D1=88=D1=9B=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B7=D0=B0= =D0=BC=D0=B5=D0=BD=D0=B0 =D1=98=D0=B5 =D0=B8=D1=81=D0=BA=D1=99=D1=83=D1=87= =D0=B5=D0=BD=D0=BE!~%" =20 -#: guix/scripts/substitute-binary.scm:163 +#: guix/scripts/substitute.scm:179 #, scheme-format msgid "download from '~a' failed: ~a, ~s~%" msgstr "=D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0=D1=9A=D0=B5 =D1= =81=D0=B0 =E2=80=9E~a=E2=80=9C =D0=BD=D0=B8=D1=98=D0=B5 =D1=83=D1=81=D0=BF= =D0=B5=D0=BB=D0=BE: ~a, ~s~%" =20 -#: guix/scripts/substitute-binary.scm:178 -#, scheme-format -msgid "while fetching ~a: server is unresponsive~%" +#: guix/scripts/substitute.scm:191 +#, fuzzy, scheme-format +msgid "while fetching ~a: server is somewhat slow~%" msgstr "=D0=BF=D1=80=D0=B8=D0=BB=D0=B8=D0=BA=D0=BE=D0=BC =D0=B4=D0=BE=D0= =B2=D0=BB=D0=B0=D1=87=D0=B5=D1=9A=D0=B0 ~a: =D1=81=D0=B5=D1=80=D0=B2=D0=B5= =D1=80 =D0=BD=D0=B5 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0~%" =20 -#: guix/scripts/substitute-binary.scm:180 +#: guix/scripts/substitute.scm:193 #, scheme-format msgid "try `--no-substitutes' if the problem persists~%" msgstr "=D0=BF=D0=BE=D0=BA=D1=83=D1=88=D0=B0=D1=98=D1=82=D0=B5 =E2=80=9E= --no-substitutes=E2=80=9C =D0=B0=D0=BA=D0=BE =D1=81=D0=B5 =D0=BD=D0=B5=D0= =BF=D1=80=D0=B8=D0=BB=D0=B8=D0=BA=D0=B5 =D0=BD=D0=B0=D1=81=D1=82=D0=B0=D0= =B2=D0=B5~%" =20 -#: guix/scripts/substitute-binary.scm:244 -#, scheme-format -msgid "signature version must be a number: ~a~%" +#: guix/scripts/substitute.scm:266 +#, fuzzy, scheme-format +msgid "signature version must be a number: ~s~%" msgstr "=D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5 =D0=BF=D0=BE=D1=82=D0=BF=D0= =B8=D1=81=D0=B0 =D0=BC=D0=BE=D1=80=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B1=D1= =80=D0=BE=D1=98: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:248 +#: guix/scripts/substitute.scm:270 #, scheme-format msgid "unsupported signature version: ~a~%" msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=BE =D0= =B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5 =D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81=D0= =B0: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:256 +#: guix/scripts/substitute.scm:278 #, scheme-format msgid "signature is not a valid s-expression: ~s~%" msgstr "=D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81 =D0=BD=D0=B8=D1=98=D0=B5 =D0= =B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D1=81-=D0=B8=D0=B7=D1=80=D0= =B0=D0=B7: ~s~%" =20 -#: guix/scripts/substitute-binary.scm:260 +#: guix/scripts/substitute.scm:282 #, scheme-format msgid "invalid format of the signature field: ~a~%" msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =B7=D0=B0=D0=BF=D0=B8=D1=81 =D0=BF=D0=BE=D1=99=D0=B0 =D0=BF=D0=BE=D1=82=D0= =BF=D0=B8=D1=81=D0=B0: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:295 +#: guix/scripts/substitute.scm:317 #, scheme-format msgid "invalid signature for '~a'~%" msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81 =D0=B7=D0=B0 =E2=80=9E~a=E2=80=9C~%" =20 -#: guix/scripts/substitute-binary.scm:297 +#: guix/scripts/substitute.scm:319 #, scheme-format msgid "hash mismatch for '~a'~%" msgstr "=D1=85=D0=B5=D1=88 =D0=BD=D0=B5 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0= =B0=D1=80=D0=B0 =D0=B7=D0=B0 =E2=80=9E~a=E2=80=9C~%" =20 -#: guix/scripts/substitute-binary.scm:299 +#: guix/scripts/substitute.scm:321 #, scheme-format msgid "'~a' is signed with an unauthorized key~%" msgstr "=E2=80=9E~a=E2=80=9C =D1=98=D0=B5 =D0=BF=D0=BE=D1=82=D0=BF=D0=B8= =D1=81=D0=B0=D0=BD=D0=BE =D0=BD=D0=B5=D0=BE=D0=B2=D0=BB=D0=B0=D1=88=D1=9B= =D0=B5=D0=BD=D0=B8=D0=BC =D0=BA=D1=99=D1=83=D1=87=D0=B5=D0=BC~%" =20 -#: guix/scripts/substitute-binary.scm:301 +#: guix/scripts/substitute.scm:323 #, scheme-format msgid "signature on '~a' is corrupt~%" msgstr "=D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81 =D0=BD=D0=B0 =E2=80=9E~a=E2= =80=9C =D1=98=D0=B5 =D0=BE=D1=88=D1=82=D0=B5=D1=9B=D0=B5=D0=BD~%" =20 -#: guix/scripts/substitute-binary.scm:338 +#: guix/scripts/substitute.scm:361 #, scheme-format msgid "substitute at '~a' lacks a signature~%" msgstr "=D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8 =D0=BD=D0=B0 =E2=80=9E~a=E2= =80=9C =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D0=B5 =D0=BF=D0=BE= =D1=82=D0=BF=D0=B8=D1=81~%" =20 -#: guix/scripts/substitute-binary.scm:526 +#: guix/scripts/substitute.scm:537 #, scheme-format -msgid "Downloading, please wait...~%" -msgstr "=D0=9F=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0, =D0=BC=D0=BE=D0= =BB=D0=B8=D0=BC =D1=81=D0=B0=D1=87=D0=B5=D0=BA=D0=B0=D1=98=D1=82=D0=B5...= ~%" +msgid "updating list of substitutes from '~a'... ~5,1f%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:528 +#: guix/scripts/substitute.scm:585 #, scheme-format -msgid "(Please consider upgrading Guile to get proper progress report.)~= %" -msgstr "(=D0=A0=D0=B0=D0=B7=D0=BC=D0=BE=D1=82=D1=80=D0=B8=D1=82=D0=B5 =D0= =BD=D0=B0=D0=B4=D0=BE=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D0=93=D1=83=D0= =B8=D0=BB=D0=B0 =D0=B4=D0=B0 =D0=B4=D0=BE=D0=B1=D0=B8=D1=98=D0=B5=D1=82=D0= =B5 =D0=B8=D0=B7=D0=B2=D0=B5=D1=88=D1=82=D0=B0=D1=98 =D0=BE =D1=9A=D0=B5=D0= =B3=D0=BE=D0=B2=D0=BE=D0=BC =D0=BD=D0=B0=D0=BF=D1=80=D0=B5=D0=B4=D0=BE=D0= =B2=D0=B0=D1=9A=D1=83.)~%" +msgid "~s: unsupported server URI scheme~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:545 +#: guix/scripts/substitute.scm:596 +#, scheme-format +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" + +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "=D0=B3=D1=80=D0=B5=D1=88=D0=BA=D0=B0 =D1=82=D1=80=D0=B0=D0=B6=D0= =B5=D1=9A=D0=B0 =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0 =D0=B4=D0=BE=D0=BC=D0= =B0=D1=9B=D0=B8=D0=BD=D0=B0: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:554 +#: guix/scripts/substitute.scm:748 +#, fuzzy msgid "" -"Usage: guix substitute-binary [OPTION]...\n" +"Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" "=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix substitute-binar= y [=D0=9E=D0=9F=D0=A6=D0=98=D0=88=D0=90]...\n" "=D0=A3=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B8 =D0=B0=D0=BB=D0=B0= =D1=82 =D0=B7=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D1=83 =D0=BF=D1=80=D0=B5= -=D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD=D0=BE=D0=B3 =D0=B8=D0=B7= =D0=B2=D1=80=D1=88=D0=BD=D0=BE=D0=B3 =D1=83 =D0=BC=D0=B5=D1=81=D0=BD=D1=83= =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83.\n" =20 -#: guix/scripts/substitute-binary.scm:556 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" " store file names passed on the standard input" msgstr "" "\n" -" --query =D0=B8=D0=B7=D0=B2=D0=B5=D1=88=D1=82=D0=B0=D0=B2= =D0=B0 =D0=BE =D0=B4=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BD=D0=BE=D1=81=D1=82= =D0=B8 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8=D0=BA=D0=B0 =D0=B7=D0=B0 =D0=BD= =D0=B0=D0=B7=D0=B8=D0=B2=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA= =D0=B0\n" +" --query =D0=B8=D0=B7=D0=B2=D0=B5=D1=88=D1=82=D0=B0=D0=B2= =D0=B0 =D0=BE =D0=B4=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BD=D0=BE=D1=81=D1=82= =D0=B8 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8=D0=BA=D0=B0 =D0=B7=D0=B0 =D0=BD= =D0=B0=D0=B7=D0=B8=D0=B2=D0=B5 " +"=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0\n" " =D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0=B8=D1=88=D1=82= =D0=B0 =D0=BF=D1=80=D0=BE=D1=81=D0=BB=D0=B5=D1=92=D0=B5=D0=BD=D0=B8=D1=85= =D0=BD=D0=B0 =D1=81=D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE= =D0=BC =D1=83=D0=BB=D0=B0=D0=B7=D1=83" =20 -#: guix/scripts/substitute-binary.scm:559 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -798,19 +1157,18 @@ msgid "" msgstr "" "\n" " --substitute =D0=9E=D0=94=D0=A0=D0=95=D0=94=D0=98=D0=A8=D0=A2=D0=95= =D0=A1=D0=9A=D0=9B=D0=90=D0=94=D0=98=D0=A8=D0=9D=D0=95-=D0=94=D0=90=D0=A2= =D0=9E=D0=A2=D0=95=D0=9A=D0=95\n" -" =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0= =D0=A1=D0=9A=D0=9B=D0=90=D0=94=D0=98=D0=A8=D0=9D=D0=A3-=D0=94=D0=90=D0=A2= =D0=9E=D0=A2=D0=95=D0=9A=D0=A3 =D0=B8 =D1=81=D0=BC=D0=B5=D1=88=D1=82=D0=B0= =D1=98=D0=B5 =D0=BA=D0=B0=D0=BE =D0=9D=D0=B0=D1=80 =D1=83=D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D1=86=D0=B8\n" +" =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0= =D0=A1=D0=9A=D0=9B=D0=90=D0=94=D0=98=D0=A8=D0=9D=D0=A3-=D0=94=D0=90=D0=A2= =D0=9E=D0=A2=D0=95=D0=9A=D0=A3 =D0=B8 =D1=81=D0=BC=D0=B5=D1=88=D1=82=D0=B0= =D1=98=D0=B5 =D0=BA=D0=B0=D0=BE =D0=9D=D0=B0=D1=80 " +"=D1=83=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8\n" " =D0=9E=D0=94=D0=A0=D0=95=D0=94=D0=98=D0=A8=D0=A2= =D0=95" =20 -#: guix/scripts/substitute-binary.scm:604 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" -msgstr "=D0=90=D0=A6=D0=9B =D0=B7=D0=B0 =D1=83=D0=B2=D0=BE=D0=B7 =D0=B0=D1= =80=D1=85=D0=B8=D0=B2=D0=B5 =D0=B8=D0=B7=D0=B3=D0=BB=D0=B5=D0=B4=D0=B0 =D0= =B4=D0=B0 =D1=98=D0=B5 =D0=BD=D0=B5=D1=83=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0= =B1=D1=99=D0=B8=D0=B2, =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BC=D0=BE=D0= =B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D1= =83=D0=BF=D0=BD=D0=B5\n" - -#: guix/scripts/substitute-binary.scm:625 -#, scheme-format -msgid "failed to look up host '~a' (~a), substituter disabled~%" -msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BF=D0=BE=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=BC =D0=B4=D0=BE=D0= =BC=D0=B0=D1=9B=D0=B8=D0=BD=D0=B0 =E2=80=9E~a=E2=80=9C (~a), =D0=B7=D0=B0= =D0=BC=D0=B5=D1=9A=D0=B8=D0=B2=D0=B0=D1=87 =D1=98=D0=B5 =D0=B8=D1=81=D0=BA= =D1=99=D1=83=D1=87=D0=B5=D0=BD~%" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" +msgstr "" +"=D0=90=D0=A6=D0=9B =D0=B7=D0=B0 =D1=83=D0=B2=D0=BE=D0=B7 =D0=B0=D1=80=D1= =85=D0=B8=D0=B2=D0=B5 =D0=B8=D0=B7=D0=B3=D0=BB=D0=B5=D0=B4=D0=B0 =D0=B4=D0= =B0 =D1=98=D0=B5 =D0=BD=D0=B5=D1=83=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D1= =99=D0=B8=D0=B2, =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BC=D0=BE=D0=B3=D1= =83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D1=83=D0= =BF=D0=BD=D0=B5\n" =20 -#: guix/scripts/substitute-binary.scm:732 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "~a: =D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D0=BE= =D0=BF=D1=86=D0=B8=D1=98=D0=B0~%" @@ -835,170 +1193,868 @@ msgstr "=D0=B3=D1=80=D0=B5=D1=88=D0=BA=D0=B0: =D0= =BD=D0=B5=D0=BE=D0=B2=D0=BB=D0=B0=D1=88=D1=9B=D0=B5=D0=BD=D0=B8 =D1=98=D0= =B0=D0=B2=D0=BD=D0=B8 =D0=BA=D1=99=D1=83=D1=87: ~a~%" msgid "error: corrupt signature data: ~a~%" msgstr "=D0=B3=D1=80=D0=B5=D1=88=D0=BA=D0=B0: =D0=BE=D1=88=D1=82=D0=B5=D1= =9B=D0=B5=D0=BD=D0=B8 =D0=BF=D0=BE=D0=B4=D0=B0=D1=86=D0=B8 =D0=BF=D0=BE=D1= =82=D0=BF=D0=B8=D1=81=D0=B0: ~a~%" =20 -#: guix/scripts/authenticate.scm:126 +#: guix/scripts/authenticate.scm:120 msgid "" "Usage: guix authenticate OPTION...\n" "Sign or verify the signature on the given file. This tool is meant to\= n" "be used internally by 'guix-daemon'.\n" msgstr "" -"=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix authenticate =D0= =9E=D0=9F=D0=A6=D0=98=D0=88=D0=90...\n" -"=D0=9F=D0=BE=D1=82=D0=BF=D0=B8=D1=88=D0=B8=D1=82=D0=B5 =D0=B8=D0=BB=D0=B8= =D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=B8=D1=82=D0=B5 =D0=BF=D0=BE=D1=82= =D0=BF=D0=B8=D1=81 =D0=BD=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=98 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8. =D0=9E=D0=B2=D0=B0=D1=98 =D0=B0=D0= =BB=D0=B0=D1=82 =D1=98=D0=B5 =D0=B7=D0=B0=D0=BC=D0=B8=D1=88=D1=99=D0=B5=D0= =BD\n" -"=D0=B7=D0=B0 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D1=83 =D1= =83=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D1=83 =D0=B3=D1=83=D0=B8=D1=85-=D0= =B4=D0=B5=D0=BC=D0=BE=D0=BD=D0=BE=D0=BC.\n" +"=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix authenticate =D0= =9E=D0=9F=D0=A6=D0=98=D0=88=D0=90...\n" +"=D0=9F=D0=BE=D1=82=D0=BF=D0=B8=D1=88=D0=B8=D1=82=D0=B5 =D0=B8=D0=BB=D0=B8= =D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=B8=D1=82=D0=B5 =D0=BF=D0=BE=D1=82= =D0=BF=D0=B8=D1=81 =D0=BD=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=98 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8. =D0=9E=D0=B2=D0=B0=D1=98 =D0=B0=D0= =BB=D0=B0=D1=82 =D1=98=D0=B5 =D0=B7=D0=B0=D0=BC=D0=B8=D1=88=D1=99=D0=B5=D0= =BD\n" +"=D0=B7=D0=B0 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D1=83 =D1= =83=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D1=83 =D0=B3=D1=83=D0=B8=D1=85-=D0= =B4=D0=B5=D0=BC=D0=BE=D0=BD=D0=BE=D0=BC.\n" + +#: guix/scripts/authenticate.scm:126 +msgid "wrong arguments" +msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=BD=D0=B8 =D0=B0=D1=80=D0= =B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B8" + +#: guix/scripts/system.scm:110 +#, scheme-format +msgid "failed to register '~a' under '~a'~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=83=D0=B1=D0=B5=D0=BB=D0=B5=D0=B6=D0=B8=D0=BC =E2=80=9E~a=E2= =80=9C =D0=BF=D0=BE=D0=B4 =E2=80=9E~a=E2=80=9C~%" + +#: guix/scripts/system.scm:142 +#, scheme-format +msgid "failed to install GRUB on device '~a'~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BC =D0= =93=D0=A0=D0=A3=D0=91 =D0=BD=D0=B0 =D1=83=D1=80=D0=B5=D1=92=D0=B0=D1=98=D1= =83 =E2=80=9E~a=E2=80=9C~%" + +#: guix/scripts/system.scm:160 +#, scheme-format +msgid "initializing the current root file system~%" +msgstr "=D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=9B=D0=B5=D0=BC =D1=82=D0=B5=D0= =BA=D1=83=D1=9B=D0=B8 =D0=BA=D0=BE=D1=80=D0=B5=D0=BD=D0=B8 =D1=81=D0=B8=D1= =81=D1=82=D0=B5=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0~%" + +#: guix/scripts/system.scm:174 +#, scheme-format +msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" +msgstr "" + +#: guix/scripts/system.scm:219 +#, scheme-format +msgid "while talking to shepherd: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:265 +#, fuzzy, scheme-format +msgid "unloading service '~a'...~%" +msgstr "=D0=9F=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0, =D0=BC=D0=BE=D0= =BB=D0=B8=D0=BC =D1=81=D0=B0=D1=87=D0=B5=D0=BA=D0=B0=D1=98=D1=82=D0=B5...= ~%" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" + +#: guix/scripts/system.scm:294 +#, scheme-format +msgid "activating system...~%" +msgstr "=D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=9B=D0=B5=D0=BC =D1=81=D0=B8=D1= =81=D1=82=D0=B5=D0=BC...~%" + +#: guix/scripts/system.scm:380 +msgid "the DAG of services" +msgstr "" + +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" +msgstr "" + +#: guix/scripts/system.scm:414 +#, fuzzy, scheme-format +msgid " file name: ~a~%" +msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =B1=D1=80=D0=BE=D1=98: ~a~%" + +#: guix/scripts/system.scm:415 +#, scheme-format +msgid " canonical file name: ~a~%" +msgstr "" + +#. TRANSLATORS: Please preserve the two-space indentation. +#: guix/scripts/system.scm:417 +#, fuzzy, scheme-format +msgid " label: ~a~%" +msgstr "~a: ~a~%" + +#: guix/scripts/system.scm:418 +#, scheme-format +msgid " root device: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:419 +#, scheme-format +msgid " kernel: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:527 +#, scheme-format +msgid "initializing operating system under '~a'...~%" +msgstr "=D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=9B=D0=B5=D0=BC =D0=BE=D0=BF=D0= =B5=D1=80=D0=B0=D1=82=D0=B8=D0=B2=D0=BD=D0=B8 =D1=81=D0=B8=D1=81=D1=82=D0= =B5=D0=BC =D0=BF=D0=BE=D0=B4 =E2=80=9E~a=E2=80=9C...~%" + +#: guix/scripts/system.scm:566 +#, fuzzy +msgid "" +"Usage: guix system [OPTION] ACTION [FILE]\n" +"Build the operating system declared in FILE according to ACTION.\n" +msgstr "" +"=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix system [=D0=9E=D0= =9F=D0=A6=D0=98=D0=88=D0=90] =D0=A0=D0=90=D0=94=D0=8A=D0=90 =D0=94=D0=90=D0= =A2=D0=9E=D0=A2=D0=95=D0=9A=D0=90\n" +"=D0=98=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D0=BE=D0=BF=D0=B5= =D1=80=D0=B0=D1=82=D0=B8=D0=B2=D0=BD=D0=B8 =D1=81=D0=B8=D1=81=D1=82=D0=B5= =D0=BC =D0=BE=D0=B1=D1=98=D0=B0=D0=B2=D1=99=D0=B5=D0=BD =D1=83 =D0=94=D0=90= =D0=A2=D0=9E=D0=A2=D0=95=D0=A6=D0=98 =D1=83 =D1=81=D0=BA=D0=BB=D0=B0=D0=B4= =D1=83 =D1=81=D0=B0 =D0=A0=D0=90=D0=94=D0=8A=D0=9E=D0=9C.\n" + +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 +msgid "The valid values for ACTION are:\n" +msgstr "=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B5 =D0=B2=D1=80=D0= =B5=D0=B4=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0=B7=D0=B0 =D0=A0=D0=90=D0=94=D0= =8A=D0=A3 =D1=81=D1=83:\n" + +#: guix/scripts/system.scm:571 +#, fuzzy +msgid " reconfigure switch to a new operating system configuratio= n\n" +msgstr " =E2=80=94 =E2=80=9Ereconfigure=E2=80=9C, =D0=BF=D1=80=D0=B5=D0= =B1=D0=B0=D1=86=D1=83=D1=98=D0=B5 =D0=BD=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B5=D1= =88=D0=B0=D0=B2=D0=B0=D1=9A=D0=B5 =D0=BD=D0=BE=D0=B2=D0=BE=D0=B3 =D0=BE=D0= =BF=D0=B5=D1=80=D0=B0=D1=82=D0=B8=D0=B2=D0=BD=D0=BE=D0=B3 =D1=81=D0=B8=D1= =81=D1=82=D0=B5=D0=BC=D0=B0\n" + +#: guix/scripts/system.scm:573 +msgid " list-generations list the system generations\n" +msgstr "" + +#: guix/scripts/system.scm:575 +#, fuzzy +msgid "" +" build build the operating system without installing anyth= ing\n" +msgstr " =E2=80=94 =E2=80=9Ebuild=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D1=92=D1=83=D1=98=D0=B5 =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82=D0=B8=D0= =B2=D0=BD=D0=B8 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC =D0=B0 =D0=BD=D0=B5 = =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0 =D0=BD=D0=B8=D1=88= =D1=82=D0=B0\n" + +#: guix/scripts/system.scm:577 +#, fuzzy +msgid " container build a container that shares the host's stor= e\n" +msgstr "" +" =E2=80=94 =E2=80=9Evm=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1= =83=D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D0=BA=D1=83 =D0=B2=D0=B8=D1=80=D1=82=D1= =83=D0=B5=D0=BB=D0=BD=D0=B5 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5 =D0=BA=D0= =BE=D1=98=D0=B0 =D0=B4=D0=B5=D0=BB=D0=B8 =D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0= =B8=D1=88=D1=82=D0=B5 =D0=B4=D0=BE=D0=BC=D0=B0=D1=9B=D0=B8=D0=BD=D0=B0\n" + +#: guix/scripts/system.scm:579 +#, fuzzy +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" +msgstr "" +" =E2=80=94 =E2=80=9Evm=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1= =83=D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D0=BA=D1=83 =D0=B2=D0=B8=D1=80=D1=82=D1= =83=D0=B5=D0=BB=D0=BD=D0=B5 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5 =D0=BA=D0= =BE=D1=98=D0=B0 =D0=B4=D0=B5=D0=BB=D0=B8 =D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0= =B8=D1=88=D1=82=D0=B5 =D0=B4=D0=BE=D0=BC=D0=B0=D1=9B=D0=B8=D0=BD=D0=B0\n" + +#: guix/scripts/system.scm:581 +#, fuzzy +msgid " vm-image build a freestanding virtual machine image\n" +msgstr " =E2=80=94 =E2=80=9Evm-image=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80= =D0=B0=D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=B0=D0=BC=D0=BE=D1=81=D1=82=D0=BE= =D1=98=D0=B5=D1=9B=D1=83 =D1=81=D0=BB=D0=B8=D0=BA=D1=83 =D0=B2=D0=B8=D1=80= =D1=82=D1=83=D0=B5=D0=BB=D0=BD=D0=B5 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5= \n" + +#: guix/scripts/system.scm:583 +#, fuzzy +msgid " disk-image build a disk image, suitable for a USB stick\= n" +msgstr " =E2=80=94 =E2=80=9Edisk-image=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80= =D0=B0=D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D0=BA=D1=83 =D0=B4=D0=B8= =D1=81=D0=BA=D0=B0, =D0=BF=D0=BE=D0=B3=D0=BE=D0=B4=D0=BD=D1=83 =D0=B7=D0=B0= =D0=A3=D0=A1=D0=91 =D1=88=D1=82=D0=B0=D0=BF=D0=B8=D1=9B=D0=B5\n" + +#: guix/scripts/system.scm:585 +#, fuzzy +msgid " init initialize a root file system to run GNU\n" +msgstr " =E2=80=94 =E2=80=9Einit=E2=80=9C, =D0=BF=D0=BE=D0=BA=D1=80=D0=B5= =D1=9B=D0=B5 =D0=BA=D0=BE=D1=80=D0=B5=D0=BD=D0=B8 =D1=81=D0=B8=D1=81=D1=82= =D0=B5=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0= =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5 =D0=93=D0=BD=D1=83= =D0=B0.\n" + +#: guix/scripts/system.scm:587 +msgid " extension-graph emit the service extension graph in Dot forma= t\n" +msgstr "" + +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" +msgstr "" + +#: guix/scripts/system.scm:593 +#, fuzzy +msgid "" +"\n" +" -d, --derivation return the derivation of the given system" +msgstr "" +"\n" +" -d, --derivations =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=BF=D1=83=D1=82=D0=B0=D1=9A=D0=B5 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5= =D0=BD=D0=B8=D1=86=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D0=B3 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B0" + +#: guix/scripts/system.scm:595 +#, fuzzy +msgid "" +"\n" +" --on-error=3DSTRATEGY\n" +" apply STRATEGY when an error occurs while read= ing " +"FILE" +msgstr "" +"\n" +" --with-source=3D=D0=98=D0=97=D0=92=D0=9E=D0=A0\n" +" =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0= =98=D0=97=D0=92=D0=9E=D0=A0 =D0=BF=D1=80=D0=B8=D0=BB=D0=B8=D0=BA=D0=BE=D0= =BC =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5 =D0=BE=D0=B4=D0=B3=D0= =BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D0=B5=D0=B3 =D0=BF=D0=B0=D0= =BA=D0=B5=D1=82=D0=B0" + +#: guix/scripts/system.scm:598 +msgid "" +"\n" +" --image-size=3DSIZE for 'vm-image', produce an image of SIZE" +msgstr "" +"\n" +" --image-size=3D=D0=92=D0=95=D0=9B=D0=98=D0=A7=D0=98=D0=9D=D0=90 =D0= =B7=D0=B0 =E2=80=9Evm-image=E2=80=9C, =D0=B4=D0=B0=D1=98=D0=B5 =D1=81=D0=BB= =D0=B8=D0=BA=D1=83 =D0=92=D0=95=D0=9B=D0=98=D0=A7=D0=98=D0=9D=D0=95" + +#: guix/scripts/system.scm:600 +msgid "" +"\n" +" --no-grub for 'init', do not install GRUB" +msgstr "" +"\n" +" --no-grub =D0=B7=D0=B0 =E2=80=9Einit=E2=80=9C, =D0=BD= =D0=B5 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0 =D0=93=D0=A0= =D0=A3=D0=91" + +#: guix/scripts/system.scm:602 +msgid "" +"\n" +" --share=3DSPEC for 'vm', share host file system according t= o SPEC" +msgstr "" + +#: guix/scripts/system.scm:604 +msgid "" +"\n" +" --expose=3DSPEC for 'vm', expose host file system according = to SPEC" +msgstr "" + +#: guix/scripts/system.scm:606 +msgid "" +"\n" +" --full-boot for 'vm', make a full boot sequence" +msgstr "" + +#: guix/scripts/system.scm:690 +#, scheme-format +msgid "no configuration file specified~%" +msgstr "=D0=BD=D0=B8=D1=98=D0=B5 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0=B5=D0= =BD=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=BF=D0=BE=D0= =B4=D0=B5=D1=88=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0~%" + +#: guix/scripts/system.scm:753 +#, scheme-format +msgid "~a: unknown action~%" +msgstr "~a: =D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D1=80= =D0=B0=D0=B4=D1=9A=D0=B0~%" + +#: guix/scripts/system.scm:768 +#, scheme-format +msgid "wrong number of arguments for action '~a'~%" +msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=B0=D0=BD =D0=B1=D1=80=D0= =BE=D1=98 =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0 =D0= =B7=D0=B0 =D1=80=D0=B0=D0=B4=D1=9A=D1=83 =E2=80=9E~a=E2=80=9C~%" + +#: guix/scripts/system.scm:773 +#, fuzzy, scheme-format +msgid "guix system: missing command name~%" +msgstr "guix: =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D0=B5 =D0= =BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B5~%" + +#: guix/scripts/system.scm:775 +#, fuzzy, scheme-format +msgid "Try 'guix system --help' for more information.~%" +msgstr "=D0=9F=D1=80=D0=BE=D0=B1=D0=B0=D1=98=D1=82=D0=B5 =E2=80=9Eguix -= -help=E2=80=9C =D0=B7=D0=B0 =D0=B2=D0=B8=D1=88=D0=B5 =D0=BF=D0=BE=D0=B4=D0= =B0=D1=82=D0=B0=D0=BA=D0=B0.~%" + +#: guix/scripts/lint.scm:126 +#, scheme-format +msgid "Available checkers:~%" +msgstr "" + +#: guix/scripts/lint.scm:146 +msgid "description should not be empty" +msgstr "" + +#: guix/scripts/lint.scm:156 +msgid "Texinfo markup in description is invalid" +msgstr "" + +#: guix/scripts/lint.scm:164 +msgid "description should start with an upper-case letter or digit" +msgstr "" + +#: guix/scripts/lint.scm:180 +#, scheme-format +msgid "" +"sentences in description should be followed ~\n" +"by two spaces; possible infraction~p at ~{~a~^, ~}" +msgstr "" + +#: guix/scripts/lint.scm:204 +msgid "pkg-config should probably be a native input" +msgstr "" + +#: guix/scripts/lint.scm:219 +msgid "synopsis should not be empty" +msgstr "" + +#: guix/scripts/lint.scm:227 +msgid "no period allowed at the end of the synopsis" +msgstr "" + +#: guix/scripts/lint.scm:239 +msgid "no article allowed at the beginning of the synopsis" +msgstr "" + +#: guix/scripts/lint.scm:246 +msgid "synopsis should be less than 80 characters long" +msgstr "" + +#: guix/scripts/lint.scm:252 +msgid "synopsis should start with an upper-case letter or digit" +msgstr "" + +#: guix/scripts/lint.scm:259 +msgid "synopsis should not start with the package name" +msgstr "" + +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 +#, scheme-format +msgid "URI ~a not reachable: ~a (~s)" +msgstr "" + +#: guix/scripts/lint.scm:372 +#, fuzzy, scheme-format +msgid "URI ~a domain not found: ~a" +msgstr "guix: ~a: =D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D0=BF=D1=80=D0=BE=D0=BD= =D0=B0=D1=88=D0=B0=D0=BE =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D1=83~%" + +#: guix/scripts/lint.scm:380 +#, scheme-format +msgid "URI ~a unreachable: ~a" +msgstr "" + +#: guix/scripts/lint.scm:406 +#, fuzzy +msgid "invalid value for home page" +msgstr "=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B5 =D0=B2=D1=80=D0= =B5=D0=B4=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0=B7=D0=B0 =D0=A0=D0=90=D0=94=D0= =8A=D0=A3 =D1=81=D1=83:\n" + +#: guix/scripts/lint.scm:409 +#, fuzzy, scheme-format +msgid "invalid home page URL: ~s" +msgstr "" +"\n" +"~a =D0=BC=D0=B0=D1=82=D0=B8=D1=87=D0=BD=D0=B0 =D1=81=D1=82=D1=80=D0=B0=D0= =BD=D0=B8=D1=86=D0=B0: <~a>" + +#: guix/scripts/lint.scm:429 +msgid "file names of patches should start with the package name" +msgstr "" + +#: guix/scripts/lint.scm:466 +#, scheme-format +msgid "~a: ~a: proposed synopsis: ~s~%" +msgstr "" + +#: guix/scripts/lint.scm:478 +#, scheme-format +msgid "~a: ~a: proposed description:~% \"~a\"~%" +msgstr "" + +#: guix/scripts/lint.scm:515 +msgid "all the source URIs are unreachable:" +msgstr "" + +#: guix/scripts/lint.scm:538 +msgid "the source file name should contain the package name" +msgstr "" + +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~a" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BD=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BC =D0=93=D0=A6 =D0= =BA=D0=BE=D1=80=D0=B5=D0=BD =E2=80=9E~a=E2=80=9C: ~a~%" + +#: guix/scripts/lint.scm:557 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~s~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BF=D1=80=D0=BE=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B8=D0=B7=D1= =80=D0=B0=D0=B7 ~s: ~s~%" + +#: guix/scripts/lint.scm:567 +#, fuzzy +msgid "invalid license field" +msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B0 =D0= =BE=D0=B1=D0=B5=D0=BB=D0=B5=D0=B6=D1=98=D0=B0 =D1=81=D0=B8=D0=BC=D0=B1=D0= =BE=D0=BB=D0=B8=D1=87=D0=BA=D0=B5 =D0=B2=D0=B5=D0=B7=D0=B5" + +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BC =D0= =BB=D0=BE=D0=BA=D0=B0=D0=BB=D0=B8=D1=82=D0=B5=D1=82: ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 +#, scheme-format +msgid "tabulation on line ~a, column ~a" +msgstr "" + +#: guix/scripts/lint.scm:647 +#, scheme-format +msgid "trailing white space on line ~a" +msgstr "" + +#: guix/scripts/lint.scm:657 +#, scheme-format +msgid "line ~a is way too long (~a characters)" +msgstr "" + +#: guix/scripts/lint.scm:668 +#, scheme-format +msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" +msgstr "" + +#: guix/scripts/lint.scm:723 +msgid "Validate package descriptions" +msgstr "" + +#: guix/scripts/lint.scm:727 +msgid "Validate synopsis & description of GNU packages" +msgstr "" + +#: guix/scripts/lint.scm:731 +msgid "Identify inputs that should be native inputs" +msgstr "" + +#: guix/scripts/lint.scm:735 +msgid "Validate file names and availability of patches" +msgstr "" + +#: guix/scripts/lint.scm:739 +msgid "Validate home-page URLs" +msgstr "" + +#. TRANSLATORS: is the name of a data type and must not be +#. translated. +#: guix/scripts/lint.scm:745 +msgid "Make sure the 'license' field is a or a list thereof" +msgstr "" + +#: guix/scripts/lint.scm:750 +msgid "Validate source URLs" +msgstr "" + +#: guix/scripts/lint.scm:754 +msgid "Validate file names of sources" +msgstr "" + +#: guix/scripts/lint.scm:758 +msgid "Report failure to compile a package to a derivation" +msgstr "" + +#: guix/scripts/lint.scm:762 +msgid "Validate package synopses" +msgstr "" + +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 +msgid "Look for formatting issues in the source" +msgstr "" + +#: guix/scripts/lint.scm:796 +msgid "" +"Usage: guix lint [OPTION]... [PACKAGE]...\n" +"Run a set of checkers on the specified package; if none is specified,\n= " +"run the checkers on all packages.\n" +msgstr "" + +#: guix/scripts/lint.scm:799 +msgid "" +"\n" +" -c, --checkers=3DCHECKER1,CHECKER2...\n" +" only run the specified checkers" +msgstr "" + +#: guix/scripts/lint.scm:804 +msgid "" +"\n" +" -l, --list-checkers display the list of available lint checkers" +msgstr "" + +#: guix/scripts/lint.scm:824 +#, fuzzy, scheme-format +msgid "~a: invalid checker~%" +msgstr "~a: =D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD= =D0=B1=D1=80=D0=BE=D1=98~%" + +#: guix/scripts/publish.scm:52 +#, scheme-format +msgid "" +"Usage: guix publish [OPTION]...\n" +"Publish ~a over HTTP.\n" +msgstr "" + +#: guix/scripts/publish.scm:54 +msgid "" +"\n" +" -p, --port=3DPORT listen on PORT" +msgstr "" + +#: guix/scripts/publish.scm:56 +#, fuzzy +msgid "" +"\n" +" --listen=3DHOST listen on the network interface for HOST" +msgstr "" +"\n" +" --references =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D1=83=D0=BF=D1=83=D1=82=D0=B5 =D0=9F=D0=A3=D0=A2=D0=90=D0=8A=D0=90" + +#: guix/scripts/publish.scm:58 +msgid "" +"\n" +" -u, --user=3DUSER change privileges to USER as soon as possibl= e" +msgstr "" + +#: guix/scripts/publish.scm:60 +msgid "" +"\n" +" -r, --repl[=3DPORT] spawn REPL server on PORT" +msgstr "" + +#: guix/scripts/publish.scm:76 +#, fuzzy, scheme-format +msgid "lookup of host '~a' failed: ~a~%" +msgstr "=D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0=D1=9A=D0=B5 =D1= =81=D0=B0 =E2=80=9E~a=E2=80=9C =D0=BD=D0=B8=D1=98=D0=B5 =D1=83=D1=81=D0=BF= =D0=B5=D0=BB=D0=BE: ~a, ~s~%" + +#: guix/scripts/publish.scm:100 +#, scheme-format +msgid "lookup of host '~a' returned nothing" +msgstr "" + +#: guix/scripts/publish.scm:343 +#, scheme-format +msgid "user '~a' not found: ~a~%" +msgstr "" + +#: guix/scripts/publish.scm:378 +#, scheme-format +msgid "server running as root; consider using the '--user' option!~%" +msgstr "" + +#: guix/scripts/publish.scm:380 +#, scheme-format +msgid "publishing ~a on ~a, port ~d~%" +msgstr "" + +#: guix/scripts/edit.scm:41 +msgid "" +"Usage: guix edit PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" +msgstr "" + +#: guix/scripts/edit.scm:62 +#, scheme-format +msgid "file '~a' not found in search path ~s~%" +msgstr "" + +#: guix/scripts/edit.scm:83 +#, scheme-format +msgid "source location of package '~a' is unknown~%" +msgstr "" + +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=81=D0=B5 =D0=BF=D0=BE=D0=B2=D0=B5=D0=B6=D0=B5=D0=BC =D0=BD=D0= =B0 =E2=80=9E~a=E2=80=9C: ~a~%" + +#: guix/scripts/size.scm:75 +#, scheme-format +msgid "no available substitute information for '~a'~%" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "store item" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "total" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "self" +msgstr "" + +#. TRANSLATORS: This is the title of a graph, meaning that the graph +#. represents a profile of the store (the "store" being the place where +#. packages are stored.) +#: guix/scripts/size.scm:204 +msgid "store profile" +msgstr "" + +#: guix/scripts/size.scm:213 +#, fuzzy +msgid "" +"Usage: guix size [OPTION]... PACKAGE\n" +"Report the size of PACKAGE and its dependencies.\n" +msgstr "" +"=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix package [=D0=9E=D0= =9F=D0=A6=D0=98=D0=88=D0=90]... =D0=9F=D0=90=D0=9A=D0=95=D0=A2=D0=98...\n= " +"=D0=98=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D1=98=D1=82=D0=B5= , =D1=83=D0=BA=D0=BB=D0=BE=D0=BD=D0=B8=D1=82=D0=B5, =D0=B8=D0=BB=D0=B8 =D0= =B4=D0=BE=D0=B3=D1=80=D0=B0=D0=B4=D0=B8=D1=82=D0=B5 =D0=9F=D0=90=D0=9A=D0= =95=D0=A2=D0=95 =D1=83 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D0=BC =D0=BF=D1=80=D0= =B5=D0=BB=D0=B0=D0=B7=D1=83.\n" + +#: guix/scripts/size.scm:218 +#, fuzzy +msgid "" +"\n" +" -s, --system=3DSYSTEM consider packages for SYSTEM--e.g., \"i686-l= inux\"" +msgstr "" +"\n" +" -s, --system=3D=D0=A1=D0=98=D0=A1=D0=A2=D0=95=D0=9C =D0=BF=D0=BE=D0= =BA=D1=83=D1=88=D0=B0=D0=B2=D0=B0 =D0=B4=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D0=B4=D0=B8 =D0=B7=D0=B0 =D0=A1=D0=98=D0=A1=D0=A2=D0=95=D0=9C--e.g., = =E2=80=9Ei686-linux=E2=80=9C" + +#: guix/scripts/size.scm:220 +msgid "" +"\n" +" -m, --map-file=3DFILE write to FILE a graphical map of disk usage" +msgstr "" + +#: guix/scripts/size.scm:274 +msgid "missing store item argument\n" +msgstr "" + +#: guix/scripts/size.scm:292 +#, fuzzy +msgid "too many arguments\n" +msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=BD=D0=B8 =D0=B0=D1=80=D0= =B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B8" + +#: guix/scripts/graph.scm:76 +msgid "the DAG of packages, excluding implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:132 +msgid "the DAG of packages, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:171 +msgid "same as 'bag', but without the bootstrap nodes" +msgstr "" + +#: guix/scripts/graph.scm:216 +msgid "the DAG of derivations" +msgstr "" + +#: guix/scripts/graph.scm:240 +#, scheme-format +msgid "references for '~a' are not known~%" +msgstr "" + +#: guix/scripts/graph.scm:247 +msgid "the DAG of run-time dependencies (store references)" +msgstr "" + +#: guix/scripts/graph.scm:277 +#, fuzzy, scheme-format +msgid "~a: unknown node type~%" +msgstr "~a: =D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D1=80= =D0=B0=D0=B4=D1=9A=D0=B0~%" + +#: guix/scripts/graph.scm:281 +#, fuzzy +msgid "The available node types are:\n" +msgstr "=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B5 =D0=B2=D1=80=D0= =B5=D0=B4=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0=B7=D0=B0 =D0=A0=D0=90=D0=94=D0= =8A=D0=A3 =D1=81=D1=83:\n" + +#. TRANSLATORS: Here 'dot' is the name of a program; it must not be +#. translated. +#: guix/scripts/graph.scm:317 +msgid "" +"Usage: guix graph PACKAGE...\n" +"Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" +msgstr "" =20 -#: guix/scripts/authenticate.scm:132 -msgid "wrong arguments" -msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=BD=D0=B8 =D0=B0=D1=80=D0= =B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B8" +#: guix/scripts/graph.scm:319 +msgid "" +"\n" +" -t, --type=3DTYPE represent nodes of the given TYPE" +msgstr "" =20 -#: guix/scripts/system.scm:74 -#, scheme-format -msgid "failed to open operating system file '~a': ~a~%" -msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BE=D1=82=D0=B2=D0=BE=D1=80=D0=B8=D0=BC =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D1=83 =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82=D0=B8=D0= =B2=D0=BD=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D0=B0 =E2=80=9E= ~a=E2=80=9C: ~a~%" +#: guix/scripts/graph.scm:321 +#, fuzzy +msgid "" +"\n" +" --list-types list the available graph types" +msgstr "" +"\n" +" --list-dead =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=BC=D1=80=D1=82=D0=B2=D0=B5 =D0=BF=D1=83=D1=82=D0=B0=D1=9A=D0=B5" =20 -#: guix/scripts/system.scm:78 guix/ui.scm:238 -#, scheme-format -msgid "~a: ~a~%" -msgstr "~a: ~a~%" +#: guix/scripts/graph.scm:323 +#, fuzzy +msgid "" +"\n" +" -e, --expression=3DEXPR consider the package EXPR evaluates to" +msgstr "" +"\n" +" -e, --expression=3D=D0=98=D0=97=D0=A0=D0=90=D0=97 =D0=B8=D0=B7=D0=B3= =D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D1=86=D0=B5=D0=BD= =D0=B5 =D0=98=D0=97=D0=A0=D0=90=D0=97=D0=90 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82= =D0=B0 =D0=B8=D0=BB=D0=B8 =D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8= =D1=86=D0=B5 =D0=BD=D0=B0" =20 -#: guix/scripts/system.scm:81 -#, scheme-format -msgid "failed to load operating system file '~a': ~s~%" -msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D1=83 =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82=D0=B8=D0=B2=D0= =BD=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D0=B0 =E2=80=9E~a=E2= =80=9C: ~s~%" +#: guix/scripts/challenge.scm:104 +#, fuzzy, scheme-format +msgid "~a: no substitute at '~a'~%" +msgstr "=D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8 =D0=BD=D0=B0 =E2=80=9E~a=E2= =80=9C =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D0=B5 =D0=BF=D0=BE= =D1=82=D0=BF=D0=B8=D1=81~%" =20 -#: guix/scripts/system.scm:111 -#, scheme-format -msgid "failed to register '~a' under '~a'~%" -msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=83=D0=B1=D0=B5=D0=BB=D0=B5=D0=B6=D0=B8=D0=BC =E2=80=9E~a=E2= =80=9C =D0=BF=D0=BE=D0=B4 =E2=80=9E~a=E2=80=9C~%" +#: guix/scripts/challenge.scm:120 +#, fuzzy, scheme-format +msgid "no substitutes for '~a'~%" +msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81 =D0=B7=D0=B0 =E2=80=9E~a=E2=80=9C~%" =20 -#: guix/scripts/system.scm:127 -#, scheme-format -msgid "initializing the current root file system~%" -msgstr "=D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=9B=D0=B5=D0=BC =D1=82=D0=B5=D0= =BA=D1=83=D1=9B=D0=B8 =D0=BA=D0=BE=D1=80=D0=B5=D0=BD=D0=B8 =D1=81=D0=B8=D1= =81=D1=82=D0=B5=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0~%" +#: guix/scripts/challenge.scm:137 guix/scripts/challenge.scm:157 +#, fuzzy, scheme-format +msgid "no local build for '~a'~%" +msgstr "=D0=BD=D0=B5=D0=BC=D0=B0 =D0=B4=D0=BD=D0=B5=D0=B2=D0=BD=D0=B8=D0= =BA=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5 =D0=B7=D0=B0 =E2= =80=9E~a=E2=80=9C~%" =20 -#: guix/scripts/system.scm:151 guix/scripts/system.scm:291 +#: guix/scripts/challenge.scm:154 #, scheme-format -msgid "failed to install GRUB on device '~a'~%" -msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BC =D0= =93=D0=A0=D0=A3=D0=91 =D0=BD=D0=B0 =D1=83=D1=80=D0=B5=D1=92=D0=B0=D1=98=D1= =83 =E2=80=9E~a=E2=80=9C~%" +msgid "~a contents differ:~%" +msgstr "" =20 -#: guix/scripts/system.scm:176 +#: guix/scripts/challenge.scm:156 #, scheme-format -msgid "activating system...~%" -msgstr "=D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=9B=D0=B5=D0=BC =D1=81=D0=B8=D1= =81=D1=82=D0=B5=D0=BC...~%" +msgid " local hash: ~a~%" +msgstr "" =20 -#: guix/scripts/system.scm:211 -#, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B8 =D0=BF=D0= =BE=D0=B4=D0=B8=D0=B7=D0=BD=D0=B8 =D0=BF=D0=B0=D1=80=D0=B0=D0=BC=D0=B5=D1= =82=D1=80=D0=B8 =D0=B7=D0=B0 =E2=80=9E~a=E2=80=9C~%" +#: guix/scripts/challenge.scm:161 +#, fuzzy, scheme-format +msgid " ~50a: ~a~%" +msgstr "~a: ~a~%" =20 -#: guix/scripts/system.scm:295 +#: guix/scripts/challenge.scm:165 #, scheme-format -msgid "initializing operating system under '~a'...~%" -msgstr "=D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=9B=D0=B5=D0=BC =D0=BE=D0=BF=D0= =B5=D1=80=D0=B0=D1=82=D0=B8=D0=B2=D0=BD=D0=B8 =D1=81=D0=B8=D1=81=D1=82=D0= =B5=D0=BC =D0=BF=D0=BE=D0=B4 =E2=80=9E~a=E2=80=9C...~%" +msgid " ~50a: unavailable~%" +msgstr "" =20 -#: guix/scripts/system.scm:311 +#: guix/scripts/challenge.scm:175 msgid "" -"Usage: guix system [OPTION] ACTION FILE\n" -"Build the operating system declared in FILE according to ACTION.\n" +"Usage: guix challenge [PACKAGE...]\n" +"Challenge the substitutes for PACKAGE... provided by one or more server= s.\n" msgstr "" -"=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix system [=D0=9E=D0= =9F=D0=A6=D0=98=D0=88=D0=90] =D0=A0=D0=90=D0=94=D0=8A=D0=90 =D0=94=D0=90=D0= =A2=D0=9E=D0=A2=D0=95=D0=9A=D0=90\n" -"=D0=98=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D1=83=D1=98=D0=B5 =D0=BE=D0=BF=D0=B5= =D1=80=D0=B0=D1=82=D0=B8=D0=B2=D0=BD=D0=B8 =D1=81=D0=B8=D1=81=D1=82=D0=B5= =D0=BC =D0=BE=D0=B1=D1=98=D0=B0=D0=B2=D1=99=D0=B5=D0=BD =D1=83 =D0=94=D0=90= =D0=A2=D0=9E=D0=A2=D0=95=D0=A6=D0=98 =D1=83 =D1=81=D0=BA=D0=BB=D0=B0=D0=B4= =D1=83 =D1=81=D0=B0 =D0=A0=D0=90=D0=94=D0=8A=D0=9E=D0=9C.\n" - -#: guix/scripts/system.scm:314 -msgid "The valid values for ACTION are:\n" -msgstr "=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B5 =D0=B2=D1=80=D0= =B5=D0=B4=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0=B7=D0=B0 =D0=A0=D0=90=D0=94=D0= =8A=D0=A3 =D1=81=D1=83:\n" =20 -#: guix/scripts/system.scm:315 -msgid " - 'reconfigure', switch to a new operating system configuration= \n" -msgstr " =E2=80=94 =E2=80=9Ereconfigure=E2=80=9C, =D0=BF=D1=80=D0=B5=D0= =B1=D0=B0=D1=86=D1=83=D1=98=D0=B5 =D0=BD=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B5=D1= =88=D0=B0=D0=B2=D0=B0=D1=9A=D0=B5 =D0=BD=D0=BE=D0=B2=D0=BE=D0=B3 =D0=BE=D0= =BF=D0=B5=D1=80=D0=B0=D1=82=D0=B8=D0=B2=D0=BD=D0=BE=D0=B3 =D1=81=D0=B8=D1= =81=D1=82=D0=B5=D0=BC=D0=B0\n" +#: guix/scripts/challenge.scm:177 +#, fuzzy +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" compare build results with those at URLS" +msgstr "" +"\n" +" --max-silent-time=3D=D0=A1=D0=95=D0=9A=D0=A3=D0=9D=D0=94=D0=95\n" +" =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0= =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D0=BD=D0=B5=D1=83=D0=BF= =D0=B5=D0=BB=D0=BE=D0=BC =D0=BD=D0=B0=D0=BA=D0=BE=D0=BD =D0=A1=D0=95=D0=9A= =D0=A3=D0=9D=D0=94=D0=95 =D0=BC=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D1=9A=D0=B0= " =20 -#: guix/scripts/system.scm:317 -msgid " - 'build', build the operating system without installing anythi= ng\n" -msgstr " =E2=80=94 =E2=80=9Ebuild=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D1=92=D1=83=D1=98=D0=B5 =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82=D0=B8=D0= =B2=D0=BD=D0=B8 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC =D0=B0 =D0=BD=D0=B5 = =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0 =D0=BD=D0=B8=D1=88= =D1=82=D0=B0\n" +#: guix/gnu-maintenance.scm:514 +msgid "Updater for GNU packages" +msgstr "" =20 -#: guix/scripts/system.scm:319 -msgid " - 'vm', build a virtual machine image that shares the host's st= ore\n" -msgstr " =E2=80=94 =E2=80=9Evm=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80=D0=B0= =D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D0=BA=D1=83 =D0=B2=D0=B8=D1=80= =D1=82=D1=83=D0=B5=D0=BB=D0=BD=D0=B5 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5= =D0=BA=D0=BE=D1=98=D0=B0 =D0=B4=D0=B5=D0=BB=D0=B8 =D1=81=D0=BA=D0=BB=D0=B0= =D0=B4=D0=B8=D1=88=D1=82=D0=B5 =D0=B4=D0=BE=D0=BC=D0=B0=D1=9B=D0=B8=D0=BD= =D0=B0\n" +#: guix/gnu-maintenance.scm:521 +msgid "Updater for GNOME packages" +msgstr "" =20 -#: guix/scripts/system.scm:321 -msgid " - 'vm-image', build a freestanding virtual machine image\n" -msgstr " =E2=80=94 =E2=80=9Evm-image=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80= =D0=B0=D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=B0=D0=BC=D0=BE=D1=81=D1=82=D0=BE= =D1=98=D0=B5=D1=9B=D1=83 =D1=81=D0=BB=D0=B8=D0=BA=D1=83 =D0=B2=D0=B8=D1=80= =D1=82=D1=83=D0=B5=D0=BB=D0=BD=D0=B5 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5= \n" +#: guix/scripts/container.scm:25 +msgid "" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" +msgstr "" =20 -#: guix/scripts/system.scm:323 -msgid " - 'disk-image', build a disk image, suitable for a USB stick\n" -msgstr " =E2=80=94 =E2=80=9Edisk-image=E2=80=9C, =D0=B8=D0=B7=D0=B3=D1=80= =D0=B0=D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D0=BA=D1=83 =D0=B4=D0=B8= =D1=81=D0=BA=D0=B0, =D0=BF=D0=BE=D0=B3=D0=BE=D0=B4=D0=BD=D1=83 =D0=B7=D0=B0= =D0=A3=D0=A1=D0=91 =D1=88=D1=82=D0=B0=D0=BF=D0=B8=D1=9B=D0=B5\n" +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" =20 -#: guix/scripts/system.scm:325 -msgid " - 'init', initialize a root file system to run GNU.\n" -msgstr " =E2=80=94 =E2=80=9Einit=E2=80=9C, =D0=BF=D0=BE=D0=BA=D1=80=D0=B5= =D1=9B=D0=B5 =D0=BA=D0=BE=D1=80=D0=B5=D0=BD=D0=B8 =D1=81=D0=B8=D1=81=D1=82= =D0=B5=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0= =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5 =D0=93=D0=BD=D1=83= =D0=B0.\n" +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix: =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D0=B5 =D0= =BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B5~%" =20 -#: guix/scripts/system.scm:329 -msgid "" -"\n" -" --image-size=3DSIZE for 'vm-image', produce an image of SIZE" +#: guix/scripts/container.scm:63 +#, scheme-format +msgid "guix container: invalid action~%" msgstr "" -"\n" -" --image-size=3D=D0=92=D0=95=D0=9B=D0=98=D0=A7=D0=98=D0=9D=D0=90 =D0= =B7=D0=B0 =E2=80=9Evm-image=E2=80=9C, =D0=B4=D0=B0=D1=98=D0=B5 =D1=81=D0=BB= =D0=B8=D0=BA=D1=83 =D0=92=D0=95=D0=9B=D0=98=D0=A7=D0=98=D0=9D=D0=95" =20 -#: guix/scripts/system.scm:331 +#: guix/scripts/container/exec.scm:40 msgid "" -"\n" -" --no-grub for 'init', do not install GRUB" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" msgstr "" -"\n" -" --no-grub =D0=B7=D0=B0 =E2=80=9Einit=E2=80=9C, =D0=BD= =D0=B5 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0 =D0=93=D0=A0= =D0=A3=D0=91" =20 -#: guix/scripts/system.scm:394 +#: guix/scripts/container/exec.scm:69 #, scheme-format -msgid "~a: unknown action~%" -msgstr "~a: =D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D1=80= =D0=B0=D0=B4=D1=9A=D0=B0~%" +msgid "~a: extraneous argument~%" +msgstr "~a: =D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8 =D0=B0=D1=80=D0=B3=D1=83= =D0=BC=D0=B5=D0=BD=D1=82~%" + +#: guix/scripts/container/exec.scm:80 +#, fuzzy, scheme-format +msgid "no pid specified~%" +msgstr "=D0=BD=D0=B8=D1=98=D0=B5 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0=B5=D0= =BD=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=BF=D0=BE=D0= =B4=D0=B5=D1=88=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0~%" =20 -#: guix/scripts/system.scm:411 +#: guix/scripts/container/exec.scm:83 +#, fuzzy, scheme-format +msgid "no command specified~%" +msgstr "=D0=BD=D0=B8=D1=98=D0=B5 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0=B5=D0= =BD=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=BF=D0=BE=D0= =B4=D0=B5=D1=88=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0~%" + +#: guix/scripts/container/exec.scm:86 #, scheme-format -msgid "wrong number of arguments for action '~a'~%" -msgstr "=D0=BF=D0=BE=D0=B3=D1=80=D0=B5=D1=88=D0=B0=D0=BD =D0=B1=D1=80=D0= =BE=D1=98 =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0 =D0= =B7=D0=B0 =D1=80=D0=B0=D0=B4=D1=9A=D1=83 =E2=80=9E~a=E2=80=9C~%" +msgid "no such process ~d~%" +msgstr "" =20 -#: guix/scripts/system.scm:431 +#: guix/scripts/container/exec.scm:94 #, scheme-format -msgid "no configuration file specified~%" -msgstr "=D0=BD=D0=B8=D1=98=D0=B5 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0=B5=D0= =BD=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=BF=D0=BE=D0= =B4=D0=B5=D1=88=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0~%" +msgid "exec failed with status ~d~%" +msgstr "" =20 -#: guix/gnu-maintenance.scm:373 +#: guix/upstream.scm:158 #, scheme-format msgid "signature verification failed for `~a'~%" msgstr "=D0=BD=D0=B8=D1=98=D0=B5 =D1=83=D1=81=D0=BF=D0=B5=D0=BB=D0=B0 =D0= =BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=B0 =D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1= =81=D0=B0 =D0=B7=D0=B0 =E2=80=9E~a=E2=80=9C~%" =20 -#: guix/gnu-maintenance.scm:375 +#: guix/upstream.scm:160 #, scheme-format msgid "(could be because the public key is not in your keyring)~%" msgstr "(=D0=BC=D0=BE=D0=B6=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B7=D0=B0=D1= =82=D0=BE =D1=88=D1=82=D0=BE =D1=98=D0=B0=D0=B2=D0=BD=D0=B8 =D0=BA=D1=99=D1= =83=D1=87 =D0=BD=D0=B8=D1=98=D0=B5 =D1=83 =D0=B2=D0=B0=D1=88=D0=B5=D0=BC = =D0=BF=D1=80=D0=B8=D0=B2=D0=B5=D1=81=D0=BA=D1=83)~%" =20 -#: guix/gnu-maintenance.scm:450 +#: guix/upstream.scm:192 +msgid "gz" +msgstr "" + +#: guix/upstream.scm:255 #, scheme-format msgid "~a: could not locate source file" msgstr "~a: =D0=BD=D0=B5 =D0=BC=D0=BE=D0=B3=D1=83 =D0=B4=D0=B0 =D0=BF=D1= =80=D0=BE=D0=BD=D0=B0=D1=92=D0=B5=D0=BC =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0= =BD=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D1=83" =20 -#: guix/gnu-maintenance.scm:455 +#: guix/upstream.scm:260 #, scheme-format msgid "~a: ~a: no `version' field in source; skipping~%" msgstr "~a: ~a: =D0=BD=D0=B5=D0=BC=D0=B0 =D0=BF=D0=BE=D1=99=D0=B0 =E2=80= =9Eversion=E2=80=9C =D1=83 =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D1=83; =D0=BF=D1= =80=D0=B5=D1=81=D0=BA=D0=B0=D1=87=D0=B5=D0=BC~%" =20 -#: guix/ui.scm:131 +#: guix/ui.scm:236 +msgid "entering debugger; type ',bt' for a backtrace\n" +msgstr "" + +#: guix/ui.scm:252 guix/ui.scm:269 +#, fuzzy, scheme-format +msgid "failed to load '~a': ~a~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D1=83 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5 =E2=80=9E~a=E2= =80=9C: ~s~%" + +#: guix/ui.scm:255 +#, fuzzy, scheme-format +msgid "~a: error: ~a~%" +msgstr "~a: ~a~%" + +#: guix/ui.scm:258 guix/ui.scm:512 +#, scheme-format +msgid "exception thrown: ~s~%" +msgstr "" + +#: guix/ui.scm:260 guix/ui.scm:278 +#, fuzzy, scheme-format +msgid "failed to load '~a':~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D1=83 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5 =E2=80=9E~a=E2= =80=9C: ~s~%" + +#: guix/ui.scm:272 +#, fuzzy, scheme-format +msgid "~a: warning: ~a~%" +msgstr "~a: ~a~%" + +#: guix/ui.scm:275 +#, fuzzy, scheme-format +msgid "failed to load '~a': exception thrown: ~s~%" +msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BF=D1=80=D0=BE=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B8=D0=B7=D1= =80=D0=B0=D0=B7 ~s: ~s~%" + +#: guix/ui.scm:287 #, scheme-format msgid "failed to install locale: ~a~%" msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BC =D0= =BB=D0=BE=D0=BA=D0=B0=D0=BB=D0=B8=D1=82=D0=B5=D1=82: ~a~%" =20 -#: guix/ui.scm:150 +#: guix/ui.scm:306 +#, fuzzy msgid "" -"Copyright (C) 2014 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" "=D0=90=D1=83=D1=82=D0=BE=D1=80=D1=81=D0=BA=D0=B0 =D0=BF=D1=80=D0=B0=D0=B2= =D0=B0 (C) 2014 =D0=B0=D1=83=D1=82=D0=BE=D1=80=D0=B8 =D0=93=D1=83=D0=B8=D0= =BA=D1=81=D0=B0\n" -"=D0=9B=D0=B8=D1=86=D0=B5=D0=BD=D1=86=D0=B0 =D0=9E=D0=88=D0=9B=D0=B23+: = =D0=93=D0=9D=D0=A3 =D0=9E=D0=88=D0=9B =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5= 3 =D0=B8=D0=BB=D0=B8 =D0=BA=D0=B0=D1=81=D0=BD=D0=B8=D1=98=D0=B5 \n" +"=D0=9B=D0=B8=D1=86=D0=B5=D0=BD=D1=86=D0=B0 =D0=9E=D0=88=D0=9B=D0=B23+: = =D0=93=D0=9D=D0=A3 =D0=9E=D0=88=D0=9B =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5= 3 =D0=B8=D0=BB=D0=B8 =D0=BA=D0=B0=D1=81=D0=BD=D0=B8=D1=98=D0=B5 \n" "=D0=9E=D0=B2=D0=BE =D1=98=D0=B5 =D1=81=D0=BB=D0=BE=D0=B1=D0=BE=D0=B4=D0= =B0=D0=BD =D1=81=D0=BE=D1=84=D1=82=D0=B2=D0=B5=D1=80: =D1=81=D0=BB=D0=BE=D0= =B1=D0=BE=D0=B4=D0=BD=D0=B8 =D1=81=D1=82=D0=B5 =D0=B4=D0=B0 =D0=B3=D0=B0 = =D0=BC=D0=B5=D1=9A=D0=B0=D1=82=D0=B5 =D0=B8 =D1=80=D0=B0=D1=81=D0=BF=D0=BE= =D0=B4=D0=B5=D1=99=D1=83=D1=98=D0=B5=D1=82=D0=B5.\n" "=D0=9D=D0=B5 =D0=BF=D0=BE=D1=81=D1=82=D0=BE=D1=98=D0=B8 =D0=9D=D0=98=D0= =9A=D0=90=D0=9A=D0=92=D0=90 =D0=93=D0=90=D0=A0=D0=90=D0=9D=D0=A6=D0=98=D0= =88=D0=90, =D1=83 =D0=BE=D0=BA=D0=B2=D0=B8=D1=80=D0=B8=D0=BC=D0=B0 =D0=B4= =D0=BE=D0=B7=D0=B2=D0=BE=D1=99=D0=B5=D0=BD=D0=B8=D0=BC =D0=B7=D0=B0=D0=BA= =D0=BE=D0=BD=D0=BE=D0=BC.\n" =20 -#: guix/ui.scm:158 +#: guix/ui.scm:314 #, scheme-format msgid "" "\n" @@ -1007,7 +2063,7 @@ msgstr "" "\n" "=D0=93=D1=80=D0=B5=D1=88=D0=BA=D0=B5 =D0=BF=D1=80=D0=B8=D1=98=D0=B0=D0=B2= =D0=B8=D1=82=D0=B5 =D0=BD=D0=B0: ~a." =20 -#: guix/ui.scm:160 +#: guix/ui.scm:316 #, scheme-format msgid "" "\n" @@ -1016,7 +2072,7 @@ msgstr "" "\n" "~a =D0=BC=D0=B0=D1=82=D0=B8=D1=87=D0=BD=D0=B0 =D1=81=D1=82=D1=80=D0=B0=D0= =BD=D0=B8=D1=86=D0=B0: <~a>" =20 -#: guix/ui.scm:162 +#: guix/ui.scm:318 msgid "" "\n" "General help using GNU software: " @@ -1024,100 +2080,231 @@ msgstr "" "\n" "=D0=9E=D0=BF=D1=88=D1=82=D0=B0 =D0=BF=D0=BE=D0=BC=D0=BE=D1=9B =D0=BA=D0= =BE=D1=80=D0=B8=D1=81=D1=82=D0=B5=D1=9B=D0=B8 =D0=93=D0=9D=D0=A3 =D1=81=D0= =BE=D1=84=D1=82=D0=B2=D0=B5=D1=80: " =20 -#: guix/ui.scm:169 +#: guix/ui.scm:363 +#, fuzzy, scheme-format +msgid "'~a' is not a valid regular expression: ~a~%" +msgstr "=D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81 =D0=BD=D0=B8=D1=98=D0=B5 =D0= =B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D1=81-=D0=B8=D0=B7=D1=80=D0= =B0=D0=B7: ~s~%" + +#: guix/ui.scm:369 #, scheme-format msgid "~a: invalid number~%" msgstr "~a: =D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD= =D0=B1=D1=80=D0=BE=D1=98~%" =20 -#: guix/ui.scm:186 +#: guix/ui.scm:386 #, scheme-format msgid "invalid number: ~a~%" msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =B1=D1=80=D0=BE=D1=98: ~a~%" =20 -#: guix/ui.scm:201 +#: guix/ui.scm:409 #, scheme-format msgid "unknown unit: ~a~%" msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D1=98=D0= =B5=D0=B4=D0=B8=D0=BD=D0=B8=D1=86=D0=B0: ~a~%" =20 -#: guix/ui.scm:212 +#: guix/ui.scm:420 #, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "~a:~a:~a: =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =E2=80=9E~a=E2=80=9C =D1= =81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8 =D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0= =B0=D0=B2=D0=B0=D0=BD =D1=83=D0=BB=D0=B0=D0=B7: ~s~%" =20 -#: guix/ui.scm:219 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" msgstr "~a: ~a: =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC =D0=B8=D0=B7=D0=B3=D1= =80=D0=B0=D0=B4=D1=9A=D0=B5 =E2=80=9E~a=E2=80=9C =D0=BD=D0=B5 =D1=81=D0=B0= =D0=B4=D1=80=D0=B6=D0=B8 =D1=83=D0=BD=D0=B0=D0=BA=D1=80=D1=81=D0=BD=D0=B5= =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5~%" =20 -#: guix/ui.scm:224 +#: guix/ui.scm:432 +#, scheme-format +msgid "profile '~a' does not exist~%" +msgstr "=D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB =E2=80=9E~a=E2=80=9C =D0=BD= =D0=B5 =D0=BF=D0=BE=D1=81=D1=82=D0=BE=D1=98=D0=B8~%" + +#: guix/ui.scm:435 +#, fuzzy, scheme-format +msgid "generation ~a of profile '~a' does not exist~%" +msgstr "=D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB =E2=80=9E~a=E2=80=9C =D0=BD= =D0=B5 =D0=BF=D0=BE=D1=81=D1=82=D0=BE=D1=98=D0=B8~%" + +#: guix/ui.scm:442 +#, scheme-format +msgid "corrupt input while restoring '~a' from ~s~%" +msgstr "" + +#: guix/ui.scm:444 +#, fuzzy, scheme-format +msgid "corrupt input while restoring archive from ~s~%" +msgstr "=D0=BE=D1=88=D1=82=D0=B5=D1=9B=D0=B5=D0=BD=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=81=D0=BA=D1=83=D0=BF=D0=B0 =D0=B0=D1= =80=D1=85=D0=B8=D0=B2=D0=B5" + +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D1=81=D0=B5 =D0=BF=D0=BE=D0=B2=D0=B5=D0=B6=D0=B5=D0=BC =D0=BD=D0= =B0 =E2=80=9E~a=E2=80=9C: ~a~%" =20 -#: guix/ui.scm:229 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "=D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B0 =D0=BD=D0=B8=D1= =98=D0=B5 =D1=83=D1=81=D0=BF=D0=B5=D0=BB=D0=B0: ~a~%" =20 -#: guix/ui.scm:257 +#: guix/ui.scm:455 +#, scheme-format +msgid "reference to invalid output '~a' of derivation '~a'~%" +msgstr "" + +#: guix/ui.scm:466 +#, scheme-format +msgid "~a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BF=D1=80=D0=BE=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B8=D0=B7=D1= =80=D0=B0=D0=B7 ~s: ~s~%" =20 -#: guix/ui.scm:263 -#, scheme-format -msgid "failed to evaluate expression `~a': ~s~%" +#: guix/ui.scm:507 +#, fuzzy, scheme-format +msgid "failed to evaluate expression '~a':~%" msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BF=D1=80=D0=BE=D1=86=D0=B5=D0=BD=D0=B8=D0=BC =D0=B8=D0=B7=D1= =80=D0=B0=D0=B7 =E2=80=9E~a=E2=80=9C: ~s~%" =20 -#: guix/ui.scm:272 +#: guix/ui.scm:510 +#, fuzzy, scheme-format +msgid "syntax error: ~a~%" +msgstr "=D0=B3=D1=80=D0=B5=D1=88=D0=BA=D0=B0 =D1=82=D1=80=D0=B0=D0=B6=D0= =B5=D1=9A=D0=B0 =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0 =D0=B4=D0=BE=D0=BC=D0= =B0=D1=9B=D0=B8=D0=BD=D0=B0: ~a~%" + +#: guix/ui.scm:524 #, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "=D0=B8=D0=B7=D1=80=D0=B0=D0=B7 =E2=80=9E~s=E2=80=9C =D1=81=D0=B5= =D0=BD=D0=B5 =D0=BF=D1=80=D0=BE=D1=86=D0=B5=D1=9A=D1=83=D1=98=D0=B5 =D0=BD= =D0=B0 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82~%" =20 -#: guix/ui.scm:319 -#, scheme-format +#: guix/ui.scm:586 +#, fuzzy, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" -msgstr "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B8=D0=B7=D0=B2= =D0=BE=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1= =D0=B0=D0=BB=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0= =D1=92=D0=B5=D0=BD=D0=B0:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" +msgstr[0] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B8=D0=B7=D0= =B2=D0=BE=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0= =B1=D0=B0=D0=BB=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D1=92=D0=B5=D0=BD=D0=B0:~%~{ ~a~%~}~;~]" +msgstr[1] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B8=D0=B7=D0= =B2=D0=BE=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0= =B1=D0=B0=D0=BB=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D1=92=D0=B5=D0=BD=D0=B0:~%~{ ~a~%~}~;~]" +msgstr[2] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B8=D0=B7=D0= =B2=D0=BE=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0= =B1=D0=B0=D0=BB=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D1=92=D0=B5=D0=BD=D0=B0:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:324 -#, scheme-format +#: guix/ui.scm:591 +#, fuzzy, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" -msgstr "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0= =D0=BB=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B5= =D1=82=D0=B0:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" +msgstr[0] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0= =B0=D0=BB=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0= =B5=D1=82=D0=B0:~%~{ ~a~%~}~;~]" +msgstr[1] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0= =B0=D0=BB=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0= =B5=D1=82=D0=B0:~%~{ ~a~%~}~;~]" +msgstr[2] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0= =B0=D0=BB=D0=B0 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0= =B5=D1=82=D0=B0:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:330 -#, scheme-format +#: guix/ui.scm:597 +#, fuzzy, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" -msgstr "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B8=D0=B7=D0=B2= =D0=BE=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8= =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD=D0=B0:~%~{ ~a~%~}~;~]= " +msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" +msgstr[0] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B8=D0=B7=D0= =B2=D0=BE=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0= =B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD=D0=B0:~%~{ ~a~%~}~= ;~]" +msgstr[1] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B8=D0=B7=D0= =B2=D0=BE=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0= =B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD=D0=B0:~%~{ ~a~%~}~= ;~]" +msgstr[2] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B8=D0=B7=D0= =B2=D0=BE=D0=B4=D0=BD=D0=B8=D1=86=D0=B0 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0= =B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD=D0=B0:~%~{ ~a~%~}~= ;~]" =20 -#: guix/ui.scm:335 -#, scheme-format +#: guix/ui.scm:602 +#, fuzzy, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" -msgstr "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF= =D1=80=D0=B5=D1=83=D0=B7=D0=B5=D1=82=D0=B0:~%~{ ~a~%~}~;~]" +msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" +msgstr[0] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0= =BF=D1=80=D0=B5=D1=83=D0=B7=D0=B5=D1=82=D0=B0:~%~{ ~a~%~}~;~]" +msgstr[1] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0= =BF=D1=80=D0=B5=D1=83=D0=B7=D0=B5=D1=82=D0=B0:~%~{ ~a~%~}~;~]" +msgstr[2] "~:[=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0= =BF=D1=80=D0=B5=D1=83=D0=B7=D0=B5=D1=82=D0=B0:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:352 +#: guix/ui.scm:657 +#, fuzzy, scheme-format +msgid "The following package would be removed:~%~{~a~%~}~%" +msgid_plural "The following packages would be removed:~%~{~a~%~}~%" +msgstr[0] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB=D0=BE=D1=9A=D0=B5=D0=BD=D0=B8= :~%~{~a~%~}~%" +msgstr[1] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB=D0=BE=D1=9A=D0=B5=D0=BD=D0=B8= :~%~{~a~%~}~%" +msgstr[2] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB=D0=BE=D1=9A=D0=B5=D0=BD=D0=B8= :~%~{~a~%~}~%" + +#: guix/ui.scm:662 +#, fuzzy, scheme-format +msgid "The following package will be removed:~%~{~a~%~}~%" +msgid_plural "The following packages will be removed:~%~{~a~%~}~%" +msgstr[0] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB= =D0=BE=D1=9A=D0=B5=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[1] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB= =D0=BE=D1=9A=D0=B5=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[2] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB= =D0=BE=D1=9A=D0=B5=D0=BD=D0=B8:~%~{~a~%~}~%" + +#: guix/ui.scm:675 +#, fuzzy, scheme-format +msgid "The following package would be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" +msgstr[0] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80= =D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[1] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80= =D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[2] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80= =D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" + +#: guix/ui.scm:680 +#, fuzzy, scheme-format +msgid "The following package will be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" +msgstr[0] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81= =D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[1] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81= =D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[2] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81= =D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" + +#: guix/ui.scm:693 +#, fuzzy, scheme-format +msgid "The following package would be upgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" +msgstr[0] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB=D0=BE=D1=9A=D0=B5=D0=BD=D0=B8= :~%~{~a~%~}~%" +msgstr[1] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB=D0=BE=D1=9A=D0=B5=D0=BD=D0=B8= :~%~{~a~%~}~%" +msgstr[2] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB=D0=BE=D1=9A=D0=B5=D0=BD=D0=B8= :~%~{~a~%~}~%" + +#: guix/ui.scm:698 +#, fuzzy, scheme-format +msgid "The following package will be upgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" +msgstr[0] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB= =D0=BE=D1=9A=D0=B5=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[1] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB= =D0=BE=D1=9A=D0=B5=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[2] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=BA=D0=BB= =D0=BE=D1=9A=D0=B5=D0=BD=D0=B8:~%~{~a~%~}~%" + +#: guix/ui.scm:709 +#, fuzzy, scheme-format +msgid "The following package would be installed:~%~{~a~%~}~%" +msgid_plural "The following packages would be installed:~%~{~a~%~}~%" +msgstr[0] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80= =D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[1] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80= =D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[2] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B8= =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80= =D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" + +#: guix/ui.scm:714 +#, fuzzy, scheme-format +msgid "The following package will be installed:~%~{~a~%~}~%" +msgid_plural "The following packages will be installed:~%~{~a~%~}~%" +msgstr[0] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81= =D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[1] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81= =D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" +msgstr[2] "=D0=A1=D0=BB=D0=B5=D0=B4=D0=B5=D1=9B=D0=B8 =D0=BF=D0=B0=D0=BA= =D0=B5=D1=82=D0=B8 =D1=9B=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=B8=D0=BD=D1=81= =D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D0=BD=D0=B8:~%~{~a~%~}~%" + +#: guix/ui.scm:731 msgid "" msgstr "<=D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=BE =D0=BC=D0= =B5=D1=81=D1=82=D0=BE>" =20 -#: guix/ui.scm:380 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE =D0= =B4=D0=B0 =D0=BD=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BC =D0=B4=D0=B8=D1= =80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC =D0=BF=D0=BE=D0= =B4=D0=B5=D1=88=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0 =E2=80=9E~a=E2=80=9C: ~a~%" =20 -#: guix/ui.scm:461 guix/ui.scm:475 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=BE" =20 -#: guix/ui.scm:584 +#: guix/ui.scm:1033 #, scheme-format -msgid "invalid argument: ~a~%" -msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82: ~a~%" +msgid "Generation ~a\t~a" +msgstr "=D0=93=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1=98=D0=B0 ~a\= t~a" + +#: guix/ui.scm:1040 +#, scheme-format +msgid "~a\t(current)~%" +msgstr "~a\t(=D1=82=D0=B5=D0=BA=D1=83=D1=9B=D0=B5)~%" + +#: guix/ui.scm:1057 +#, fuzzy, scheme-format +msgid "switched from generation ~a to ~a~%" +msgstr "=D0=BF=D1=80=D0=B5=D0=B1=D0=B0=D1=86=D1=83=D1=98=D0=B5=D0=BC =D1= =81=D0=B5 =D1=81=D0=B0 =D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D1= =98=D0=B5 ~a =D0=BD=D0=B0 ~a~%" + +#: guix/ui.scm:1073 +#, scheme-format +msgid "deleting ~a~%" +msgstr "=D0=B1=D1=80=D0=B8=D1=88=D0=B5=D0=BC ~a~%" =20 -#: guix/ui.scm:589 +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "=D0=9F=D1=80=D0=BE=D0=B1=D0=B0=D1=98=D1=82=D0=B5 =E2=80=9Eguix -= -help=E2=80=9C =D0=B7=D0=B0 =D0=B2=D0=B8=D1=88=D0=B5 =D0=BF=D0=BE=D0=B4=D0= =B0=D1=82=D0=B0=D0=BA=D0=B0.~%" =20 -#: guix/ui.scm:619 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -1125,128 +2312,272 @@ msgstr "" "=D0=A3=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B0: guix =D0=9D=D0=90=D0=A0= =D0=95=D0=94=D0=91=D0=90 =D0=90=D0=A0=D0=93=D0=A3=D0=9C=D0=95=D0=9D=D0=A2= =D0=98...\n" "=D0=9F=D0=BE=D0=BA=D1=80=D0=B5=D0=BD=D0=B8=D1=82=D0=B5 =D0=9D=D0=90=D0=A0= =D0=95=D0=94=D0=91=D0=A3 =D1=81=D0=B0 =D0=90=D0=A0=D0=93=D0=A3=D0=9C=D0=95= =D0=9D=D0=A2=D0=98=D0=9C=D0=90.\n" =20 -#: guix/ui.scm:622 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "=D0=9D=D0=90=D0=A0=D0=95=D0=94=D0=91=D0=90 =D0=BC=D0=BE=D1=80=D0= =B0 =D0=B1=D0=B8=D1=82=D0=B8 =D1=98=D0=B5=D0=B4=D0=BD=D0=B0 =D0=BE=D0=B4 = =D0=BF=D0=BE=D0=B4=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4=D0=B8 =D0=BD=D0=B0= =D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D1=85 =D0=B8=D1=81=D0=BF=D0=BE=D0=B4= :\n" =20 -#: guix/ui.scm:642 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: =D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D0=BF=D1=80=D0=BE=D0=BD= =D0=B0=D1=88=D0=B0=D0=BE =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D1=83~%" =20 -#: guix/ui.scm:660 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D0=B5 =D0= =BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B5~%" =20 -#: guix/ui.scm:668 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: =D0=BD=D0=B5=D0=BF=D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B0 =D0= =BE=D0=BF=D1=86=D0=B8=D1=98=D0=B0 =E2=80=9E~a=E2=80=9C~%" =20 -#: guix/http-client.scm:217 -#, scheme-format -msgid "using Guile ~a, which does not support ~s encoding~%" -msgstr "=D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8=D0=BC =D0=93=D1=83=D0= =B8=D0=BB=D0=B5 ~a, =D0=BA=D0=BE=D1=98=D0=B8 =D0=BD=D0=B5 =D0=BF=D0=BE=D0= =B4=D1=80=D0=B6=D0=B0=D0=B2=D0=B0 ~s =D0=BA=D0=BE=D0=B4=D0=B8=D1=80=D0=B0= =D1=9A=D0=B5~%" - -#: guix/http-client.scm:220 -#, scheme-format -msgid "download failed; use a newer Guile~%" -msgstr "=D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0=D1=9A=D0=B5 =D0= =BD=D0=B8=D1=98=D0=B5 =D1=83=D1=81=D0=BF=D0=B5=D0=BB=D0=BE; =D0=BA=D0=BE=D1= =80=D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B5 =D0=BD=D0=BE=D0=B2=D0=B8=D1=98=D0= =B8 =D0=93=D1=83=D0=B8=D0=BB=D0=B5~%" - -#: guix/http-client.scm:232 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "=D0=BF=D1=80=D0=B0=D1=82=D0=B8=D0=BC =D0=BF=D1=80=D0=B5=D1=83=D1= =81=D0=BC=D0=B5=D1=80=D0=B0=D0=B2=D0=B0=D1=9A=D0=B5 =D0=BD=D0=B0 =E2=80=9E= ~a=E2=80=9C...~%" =20 -#: guix/http-client.scm:241 +#: guix/http-client.scm:269 msgid "download failed" msgstr "=D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0=D1=9A=D0=B5 =D0= =BD=D0=B8=D1=98=D0=B5 =D1=83=D1=81=D0=BF=D0=B5=D0=BB=D0=BE" =20 -#: guix/nar.scm:134 -msgid "unexpected executable file marker" -msgstr "=D0=BD=D0=B5=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0=B8= =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0=D1=87 =D0=B8=D0=B7=D0=B2= =D1=80=D1=88=D0=BD=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5= " - -#: guix/nar.scm:141 -msgid "unsupported nar file type" -msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B0 =D0= =B2=D1=80=D1=81=D1=82=D0=B0 =D0=BD=D0=B0=D1=80 =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D0=B5" - -#: guix/nar.scm:209 -msgid "unsupported file type" -msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B0 =D0= =B2=D1=80=D1=81=D1=82=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0= =B5" - -#: guix/nar.scm:219 -msgid "invalid nar signature" -msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =BD=D0=B0=D1=80 =D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81" - -#: guix/nar.scm:230 -msgid "invalid nar end-of-file marker" -msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =BD=D0=B0=D1=80 =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0=D1=87 =D0= =BA=D1=80=D0=B0=D1=98=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0= =B5" - -#: guix/nar.scm:244 -msgid "invalid symlink tokens" -msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B0 =D0= =BE=D0=B1=D0=B5=D0=BB=D0=B5=D0=B6=D1=98=D0=B0 =D1=81=D0=B8=D0=BC=D0=B1=D0= =BE=D0=BB=D0=B8=D1=87=D0=BA=D0=B5 =D0=B2=D0=B5=D0=B7=D0=B5" - -#: guix/nar.scm:263 -msgid "unexpected directory entry termination" -msgstr "=D0=BD=D0=B5=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0=BE= =D0=BE=D0=BA=D0=BE=D0=BD=D1=87=D0=B0=D1=9A=D0=B5 =D1=83=D0=BD=D0=BE=D1=81= =D0=B0 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83= =D0=BC=D0=B0" - -#: guix/nar.scm:272 -msgid "unexpected directory inter-entry marker" -msgstr "=D0=BD=D0=B5=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0=B8= =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0=D1=87 =D1=83=D0=BD=D1=83= =D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5=D0=B3 =D1=83=D0=BD=D0=BE=D1=81=D0=B0= =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC= =D0=B0 " - -#: guix/nar.scm:277 -msgid "unsupported nar entry type" -msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B0 =D0= =B2=D1=80=D1=81=D1=82=D0=B0 =D0=BD=D0=B0=D1=80 =D1=83=D0=BD=D0=BE=D1=81=D0= =B0" - -#: guix/nar.scm:376 +#: guix/nar.scm:155 msgid "signature is not a valid s-expression" msgstr "=D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81 =D0=BD=D0=B8=D1=98=D0=B5 =D0= =B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D1=81-=D0=B8=D0=B7=D1=80=D0= =B0=D0=B7" =20 -#: guix/nar.scm:385 +#: guix/nar.scm:164 msgid "invalid signature" msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81" =20 -#: guix/nar.scm:389 +#: guix/nar.scm:168 msgid "invalid hash" msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D1= =85=D0=B5=D1=88" =20 -#: guix/nar.scm:397 +#: guix/nar.scm:176 msgid "unauthorized public key" msgstr "=D0=BD=D0=B5=D0=BE=D0=B2=D0=BB=D0=B0=D1=88=D1=9B=D0=B5=D0=BD=D0=B8= =D1=98=D0=B0=D0=B2=D0=BD=D0=B8 =D0=BA=D1=99=D1=83=D1=87" =20 -#: guix/nar.scm:402 +#: guix/nar.scm:181 msgid "corrupt signature data" msgstr "=D0=BE=D1=88=D1=82=D0=B5=D1=9B=D0=B5=D0=BD=D0=B8 =D0=BF=D0=BE=D0= =B4=D0=B0=D1=86=D0=B8 =D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81=D0=B0" =20 -#: guix/nar.scm:422 +#: guix/nar.scm:201 msgid "corrupt file set archive" msgstr "=D0=BE=D1=88=D1=82=D0=B5=D1=9B=D0=B5=D0=BD=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=81=D0=BA=D1=83=D0=BF=D0=B0 =D0=B0=D1= =80=D1=85=D0=B8=D0=B2=D0=B5" =20 -#: guix/nar.scm:432 +#: guix/nar.scm:211 #, scheme-format msgid "importing file or directory '~a'...~%" msgstr "=D1=83=D0=B2=D0=BE=D0=B7=D0=B8=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D1=83 =D0=B8=D0=BB=D0=B8 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1= =82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC =E2=80=9E~a=E2=80=9C...~%" =20 -#: guix/nar.scm:441 +#: guix/nar.scm:222 #, scheme-format msgid "found valid signature for '~a'~%" msgstr "=D0=BD=D0=B0=D1=92=D0=BE=D1=85 =D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0= =B2=D0=B0=D0=BD =D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81 =D0=B7=D0=B0 =E2=80=9E= ~a=E2=80=9C~%" =20 -#: guix/nar.scm:448 +#: guix/nar.scm:229 msgid "imported file lacks a signature" msgstr "=D1=83=D0=B2=D0=B5=D0=B7=D0=B5=D0=BD=D0=BE=D1=98 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D1=86=D0=B8 =D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0= =B0=D1=98=D0=B5 =D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81" =20 -#: guix/nar.scm:487 +#: guix/nar.scm:268 msgid "invalid inter-file archive mark" msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD =D0= =B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B5 =D1=83=D0=BD=D1= =83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0= =B5=D0=BA=D0=B5" =20 +#: nix/nix-daemon/guix-daemon.cc:61 +msgid "guix-daemon -- perform derivation builds and store accesses" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:63 +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:87 +msgid "SYSTEM" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:88 +msgid "assume SYSTEM as the current system type" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 +msgid "N" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:90 +msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:93 +msgid "allow at most N build jobs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:95 +msgid "disable chroot builds" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:96 +msgid "DIR" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:97 +msgid "add DIR to the build chroot" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:98 +msgid "GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:99 +msgid "perform builds as a user of GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:101 +msgid "do not use substitutes" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:102 +msgid "URLS" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:103 +msgid "use URLS as the default list of substitute providers" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:105 +msgid "do not use the 'build hook'" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:107 +msgid "cache build failures" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 +msgid "do not keep build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:113 +msgid "disable compression of the build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:118 +msgid "disable automatic file \"deduplication\" in the store" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:128 +msgid "impersonate Linux 2.6" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:132 +msgid "tell whether the GC must keep outputs of live derivations" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:135 +msgid "tell whether the GC must keep derivations corresponding to live o= utputs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:138 +msgid "SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:139 +msgid "listen for connections on SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:141 +msgid "produce debugging output" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 +#, c-format +msgid "error: %s\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:281 +#, c-format +msgid "error: libgcrypt version mismatch\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:372 +#, c-format +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" +msgstr "" + +#~ msgid "~a: not a number~%" +#~ msgstr "~a: =D0=BD=D0=B8=D1=98=D0=B5 =D0=B1=D1=80=D0=BE=D1=98~%" + +#~ msgid "sources do not match any package:~{ ~a~}~%" +#~ msgstr "=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=B8 =D0=BD=D0=B5 =D0=BE=D0=B4= =D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D0=BD=D0=B8=D1=98=D0=B5= =D0=B4=D0=BD=D0=BE=D0=BC =D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D1=83:~{ ~a~}~%" + +#~ msgid "failed to build the empty profile~%" +#~ msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE= =D0=B4=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D0=B8=D0=BC =D0=BF=D1=80= =D0=B0=D0=B7=D0=B0=D0=BD =D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB~%" + +#~ msgid "nothing to do: already at the empty profile~%" +#~ msgstr "=D0=BD=D0=B8=D1=88=D1=82=D0=B0 =D0=B7=D0=B0 =D1=83=D1=80=D0=B0= =D0=B4=D0=B8=D1=82=D0=B8: =D0=B2=D0=B5=D1=9B =D1=81=D0=B0=D0=BC =D1=83 =D0= =BF=D1=80=D0=B0=D0=B7=D0=BD=D0=BE=D0=BC =D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0= =BB=D1=83~%" + +#~ msgid "(Please consider upgrading Guile to get proper progress report= .)~%" +#~ msgstr "" +#~ "(=D0=A0=D0=B0=D0=B7=D0=BC=D0=BE=D1=82=D1=80=D0=B8=D1=82=D0=B5 =D0=BD= =D0=B0=D0=B4=D0=BE=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D0=93=D1=83=D0=B8= =D0=BB=D0=B0 =D0=B4=D0=B0 =D0=B4=D0=BE=D0=B1=D0=B8=D1=98=D0=B5=D1=82=D0=B5= =D0=B8=D0=B7=D0=B2=D0=B5=D1=88=D1=82=D0=B0=D1=98 =D0=BE =D1=9A=D0=B5=D0=B3= =D0=BE=D0=B2=D0=BE=D0=BC " +#~ "=D0=BD=D0=B0=D0=BF=D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B0=D1=9A=D1=83.)= ~%" + +#~ msgid "failed to look up host '~a' (~a), substituter disabled~%" +#~ msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE= =D0=B4=D0=B0 =D0=BF=D0=BE=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=BC =D0=B4=D0=BE= =D0=BC=D0=B0=D1=9B=D0=B8=D0=BD=D0=B0 =E2=80=9E~a=E2=80=9C (~a), =D0=B7=D0= =B0=D0=BC=D0=B5=D1=9A=D0=B8=D0=B2=D0=B0=D1=87 =D1=98=D0=B5 =D0=B8=D1=81=D0= =BA=D1=99=D1=83=D1=87=D0=B5=D0=BD~%" + +#~ msgid "failed to open operating system file '~a': ~a~%" +#~ msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE= =D0=B4=D0=B0 =D0=BE=D1=82=D0=B2=D0=BE=D1=80=D0=B8=D0=BC =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D1=83 =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82=D0=B8= =D0=B2=D0=BD=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D0=B0 =E2=80= =9E~a=E2=80=9C: ~a~%" + +#~ msgid "failed to load operating system file '~a': ~s~%" +#~ msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE= =D0=B4=D0=B0 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D1=83 =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82=D0=B8=D0=B2= =D0=BD=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D0=B0 =E2=80=9E~a= =E2=80=9C: ~s~%" + +#~ msgid "using Guile ~a, which does not support ~s encoding~%" +#~ msgstr "=D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8=D0=BC =D0=93=D1=83= =D0=B8=D0=BB=D0=B5 ~a, =D0=BA=D0=BE=D1=98=D0=B8 =D0=BD=D0=B5 =D0=BF=D0=BE= =D0=B4=D1=80=D0=B6=D0=B0=D0=B2=D0=B0 ~s =D0=BA=D0=BE=D0=B4=D0=B8=D1=80=D0= =B0=D1=9A=D0=B5~%" + +#~ msgid "download failed; use a newer Guile~%" +#~ msgstr "=D0=BF=D1=80=D0=B5=D1=83=D0=B7=D0=B8=D0=BC=D0=B0=D1=9A=D0=B5 = =D0=BD=D0=B8=D1=98=D0=B5 =D1=83=D1=81=D0=BF=D0=B5=D0=BB=D0=BE; =D0=BA=D0=BE= =D1=80=D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B5 =D0=BD=D0=BE=D0=B2=D0=B8=D1=98= =D0=B8 =D0=93=D1=83=D0=B8=D0=BB=D0=B5~%" + +#~ msgid "unexpected executable file marker" +#~ msgstr "=D0=BD=D0=B5=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0= =B8 =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0=D1=87 =D0=B8=D0=B7=D0= =B2=D1=80=D1=88=D0=BD=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0= =B5" + +#~ msgid "unsupported nar file type" +#~ msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B0 = =D0=B2=D1=80=D1=81=D1=82=D0=B0 =D0=BD=D0=B0=D1=80 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=B5" + +#~ msgid "unsupported file type" +#~ msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B0 = =D0=B2=D1=80=D1=81=D1=82=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA= =D0=B5" + +#~ msgid "invalid nar signature" +#~ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD = =D0=BD=D0=B0=D1=80 =D0=BF=D0=BE=D1=82=D0=BF=D0=B8=D1=81" + +#~ msgid "invalid nar end-of-file marker" +#~ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B0=D0=BD = =D0=BD=D0=B0=D1=80 =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0=D1=87= =D0=BA=D1=80=D0=B0=D1=98=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA= =D0=B5" + +#~ msgid "unexpected directory entry termination" +#~ msgstr "=D0=BD=D0=B5=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0= =BE =D0=BE=D0=BA=D0=BE=D0=BD=D1=87=D0=B0=D1=9A=D0=B5 =D1=83=D0=BD=D0=BE=D1= =81=D0=B0 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1= =83=D0=BC=D0=B0" + +#~ msgid "unexpected directory inter-entry marker" +#~ msgstr "=D0=BD=D0=B5=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0= =B8 =D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=B0=D0=B2=D0=B0=D1=87 =D1=83=D0=BD=D1= =83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5=D0=B3 =D1=83=D0=BD=D0=BE=D1=81=D0= =B0 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0= =BC=D0=B0 " + +#~ msgid "unsupported nar entry type" +#~ msgstr "=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B0 = =D0=B2=D1=80=D1=81=D1=82=D0=B0 =D0=BD=D0=B0=D1=80 =D1=83=D0=BD=D0=BE=D1=81= =D0=B0" + #~ msgid "Hello, GNU world: An example GNU package" #~ msgstr "=D0=9F=D0=BE=D0=B7=D0=B4=D1=80=D0=B0=D0=B2, =D0=93=D0=BD=D1=83= =D0=BD=D0=B0=D1=80=D0=BE=D0=B4=D0=B5: =D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D1=80= =D0=93=D0=BD=D1=83 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D0=B0" =20 #~ msgid "" #~ "GNU Hello prints the message \"Hello, world!\" and then exits. It\n= " -#~ "serves as an example of standard GNU coding practices. As such, it = supports\n" +#~ "serves as an example of standard GNU coding practices. As such, it = " +#~ "supports\n" #~ "command-line arguments, multiple languages, and so on." #~ msgstr "" #~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=9F=D0=BE=D0=B7=D0=B4=D1=80=D0=B0=D0= =B2=D0=BD=D0=B8=D0=BA =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D0= =BF=D0=BE=D1=80=D1=83=D0=BA=D1=83 =E2=80=9E=D0=9F=D0=BE=D0=B7=D0=B4=D1=80= =D0=B0=D0=B2, =D0=BD=D0=B0=D1=80=D0=BE=D0=B4=D0=B5!=E2=80=9C =D0=B8 =D0=B8= =D0=B7=D0=BB=D0=B0=D0=B7=D0=B8. =D0=A1=D0=BB=D1=83=D0=B6=D0=B8\n" @@ -1258,16 +2589,20 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "grep is a tool for finding text inside files. Text is found by\n" -#~ "matching a pattern provided by the user in one or many files. The p= attern\n" +#~ "matching a pattern provided by the user in one or many files. The " +#~ "pattern\n" #~ "may be provided as a basic or extended regular expression, or as fix= ed\n" #~ "strings. By default, the matching text is simply printed to the scr= een,\n" -#~ "however the output can be greatly customized to include, for example= , line\n" +#~ "however the output can be greatly customized to include, for example= , " +#~ "line\n" #~ "numbers. GNU grep offers many extensions over the standard utility,= \n" #~ "including, for example, recursive directory searching." #~ msgstr "" #~ "=D0=B3=D1=80=D0=B5=D0=BF =D1=98=D0=B5 =D0=B0=D0=BB=D0=B0=D1=82 =D0=B7= =D0=B0 =D0=BF=D1=80=D0=BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B5= =D1=82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D1=83=D0=BD=D1=83=D1=82=D0=B0=D1=80= =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0. =D0=A2=D0=B5=D0=BA=D1= =81=D1=82 =D1=81=D0=B5 =D0=BF=D1=80=D0=BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=B7=D0= =B8\n" -#~ "=D1=83=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5=D0= =BC =D1=81=D0=B0 =D0=BE=D0=B1=D1=80=D0=B0=D1=81=D1=86=D0=B5=D0=BC =D0=BA=D0= =BE=D1=98=D0=B8 =D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B8 =D0=BA=D0=BE=D1= =80=D0=B8=D1=81=D0=BD=D0=B8=D0=BA =D1=83 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1= =98 =D0=B8=D0=BB=D0=B8 =D0=B2=D0=B8=D1=88=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D0=B0.\n" -#~ "=D0=9E=D0=B1=D1=80=D0=B0=D0=B7=D0=B0=D1=86 =D0=BC=D0=BE=D0=B6=D0=B5 = =D0=B1=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D1=99=D0=B5= =D0=BD =D0=BA=D0=B0=D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B8 =D0=B8= =D0=BB=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D0=BD=D0=B8 =D1=80= =D0=B5=D0=B3=D1=83=D0=BB=D0=B0=D1=80=D0=BD=D0=B8 =D0=B8=D0=B7=D1=80=D0=B0= =D0=B7, =D0=B8=D0=BB=D0=B8\n" +#~ "=D1=83=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5=D0= =BC =D1=81=D0=B0 =D0=BE=D0=B1=D1=80=D0=B0=D1=81=D1=86=D0=B5=D0=BC =D0=BA=D0= =BE=D1=98=D0=B8 =D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B8 =D0=BA=D0=BE=D1= =80=D0=B8=D1=81=D0=BD=D0=B8=D0=BA =D1=83 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1= =98 =D0=B8=D0=BB=D0=B8 =D0=B2=D0=B8=D1=88=D0=B5 " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0.\n" +#~ "=D0=9E=D0=B1=D1=80=D0=B0=D0=B7=D0=B0=D1=86 =D0=BC=D0=BE=D0=B6=D0=B5 = =D0=B1=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D1=99=D0=B5= =D0=BD =D0=BA=D0=B0=D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B8 =D0=B8= =D0=BB=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D0=BD=D0=B8 =D1=80= =D0=B5=D0=B3=D1=83=D0=BB=D0=B0=D1=80=D0=BD=D0=B8 =D0=B8=D0=B7=D1=80=D0=B0= =D0=B7, " +#~ "=D0=B8=D0=BB=D0=B8\n" #~ "=D0=BA=D0=B0=D0=BE =D1=81=D1=82=D0=B0=D0=BB=D0=BD=D0=B0 =D0=BD=D0=B8= =D1=81=D0=BA=D0=B0. =D0=9F=D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=B8, =D0= =BE=D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D0=B8 =D1= =82=D0=B5=D0=BA=D1=81=D1=82 =D1=81=D0=B5 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1= =81=D1=82=D0=B0=D0=B2=D0=BD=D0=BE =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1= =98=D0=B5\n" #~ "=D0=BD=D0=B0 =D0=B5=D0=BA=D1=80=D0=B0=D0=BD=D1=83, =D0=BC=D0=B5=D1=92= =D1=83=D1=82=D0=B8=D0=BC =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7 =D0=BC=D0=BE=D0=B6= =D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B8=D0=BB=D0=B0=D0=B3=D0=BE= =D1=92=D0=B5=D0=BD =D0=B4=D0=B0 =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8, =D1= =80=D0=B5=D1=86=D0=B8=D0=BC=D0=BE =D0=B1=D1=80=D0=BE=D1=98=D0=B5=D0=B2=D0= =B5\n" #~ "=D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B0. =D0=93=D0=BD=D1=83=D0=BE=D0=B2= =D0=B3=D1=80=D0=B5=D0=BF =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=BD=D0=BE=D0=B3= =D0=B0 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=BF=D1=80= =D0=B5=D0=BA=D0=BE =D1=83=D0=BE=D0=B1=D0=B8=D1=87=D0=B0=D1=98=D0=B5=D0=BD= =D0=BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0,\n" @@ -1278,14 +2613,17 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "Sed is a non-interactive, text stream editor. It receives a text\n" -#~ "input from a file or from standard input and it then applies a serie= s of text\n" -#~ "editing commands to the stream and prints its output to standard out= put. It\n" +#~ "input from a file or from standard input and it then applies a serie= s of " +#~ "text\n" +#~ "editing commands to the stream and prints its output to standard out= put. " +#~ "It\n" #~ "is often used for substituting text patterns in a stream. The GNU\n= " #~ "implementation offers several extensions over the standard utility." #~ msgstr "" #~ "=D0=A1=D0=B5=D0=B4 =D1=98=D0=B5 =D0=BD=D0=B5-=D0=BC=D0=B5=D1=92=D1=83= =D0=B4=D0=B5=D1=98=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=B8, =D1=83=D1=80=D0=B5= =D1=92=D0=B8=D0=B2=D0=B0=D1=87 =D1=82=D0=BE=D0=BA=D0=B0 =D1=82=D0=B5=D0=BA= =D1=81=D1=82=D0=B0. =D0=9E=D0=BD =D0=BF=D1=80=D0=B8=D1=85=D0=B2=D0=B0=D1= =82=D0=B0 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=B8\n" #~ "=D1=83=D0=BB=D0=B0=D0=B7 =D0=B8=D0=B7 =D0=B4=D0=B0=D1=82=D0=BE=D1=82= =D0=B5=D0=BA=D0=B5 =D0=B8=D0=BB=D0=B8 =D1=81=D0=B0 =D1=81=D1=82=D0=B0=D0=BD= =D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D1=83=D0=BB=D0=B0=D0=B7=D0=B0= =D0=B8 =D0=B7=D0=B0=D1=82=D0=B8=D0=BC =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A= =D1=83=D1=98=D0=B5 =D0=BD=D0=B8=D0=B7 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1= =D0=B8\n" -#~ "=D0=B7=D0=B0 =D1=83=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 = =D1=82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D0=BD=D0=B0=D0=B4 =D1=82=D0=BE=D0=BA= =D0=B8=D0=BC =D0=B8 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=9A= =D0=B5=D0=B3=D0=BE=D0=B2 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7 =D0=BD=D0=B0 =D1=81= =D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B8 =D0=B8=D0=B7=D0=BB= =D0=B0=D0=B7.\n" +#~ "=D0=B7=D0=B0 =D1=83=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 = =D1=82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D0=BD=D0=B0=D0=B4 =D1=82=D0=BE=D0=BA= =D0=B8=D0=BC =D0=B8 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=9A= =D0=B5=D0=B3=D0=BE=D0=B2 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7 =D0=BD=D0=B0 =D1=81= =D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B8 " +#~ "=D0=B8=D0=B7=D0=BB=D0=B0=D0=B7.\n" #~ "=D0=A7=D0=B5=D1=81=D1=82=D0=BE =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8= =D1=81=D1=82=D0=B8 =D0=B7=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D1=83 =D1=82= =D0=B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=B8=D1=85 =D0=BE=D0=B1= =D1=80=D0=B0=D0=B7=D0=B0=D1=86=D0=B0 =D1=83 =D1=82=D0=BE=D0=BA=D1=83. =D0= =93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0= =B0\n" #~ "=D0=BD=D1=83=D0=B4=D0=B8 =D0=BD=D0=B5=D0=BA=D0=BE=D0=BB=D0=B8=D0=BA=D0= =BE =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=BF=D0=BE=D1= =80=D0=B5=D0=B4 =D1=83=D0=BE=D0=B1=D0=B8=D1=87=D0=B0=D1=98=D0=B5=D0=BD=D0= =BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0." =20 @@ -1312,27 +2650,36 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "Patch is a program that applies changes to files based on difference= s\n" -#~ "laid out as by the program \"diff\". The changes may be applied to = one or more\n" +#~ "laid out as by the program \"diff\". The changes may be applied to = one " +#~ "or more\n" #~ "files depending on the contents of the diff file. It accepts severa= l\n" -#~ "different diff formats. It may also be used to revert previously ap= plied\n" +#~ "different diff formats. It may also be used to revert previously " +#~ "applied\n" #~ "differences." #~ msgstr "" -#~ "=D0=97=D0=B0=D0=BA=D1=80=D0=BF=D0=BA=D0=BE =D1=98=D0=B5 =D0=BF=D1=80= =D0=BE=D0=B3=D1=80=D0=B0=D0=BC =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D1=80=D0=B8= =D0=BC=D0=B5=D1=9A=D1=83=D1=98=D0=B5 =D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5= =D0=BD=D0=B0=D0=B4 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC= =D0=B0 =D0=BD=D0=B0 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D1=83 =D1=80=D0=B0=D0=B7= =D0=BB=D0=B8=D0=BA=D0=B0\n" -#~ "=D0=B8=D0=B7=D0=BD=D0=B5=D1=81=D0=B5=D0=BD=D0=B8=D1=85 =D0=BF=D1=80=D0= =BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BE=D0=BC =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1= =87=D0=BD=D0=B8=D0=BA. =D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BC=D0=BE= =D0=B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A= =D0=B5=D0=BD=D0=B5 =D0=BD=D0=B0=D0=B4 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D0=BC= =D0=B8=D0=BB=D0=B8\n" +#~ "=D0=97=D0=B0=D0=BA=D1=80=D0=BF=D0=BA=D0=BE =D1=98=D0=B5 =D0=BF=D1=80= =D0=BE=D0=B3=D1=80=D0=B0=D0=BC =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D1=80=D0=B8= =D0=BC=D0=B5=D1=9A=D1=83=D1=98=D0=B5 =D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5= =D0=BD=D0=B0=D0=B4 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC= =D0=B0 =D0=BD=D0=B0 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D1=83 " +#~ "=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0\n" +#~ "=D0=B8=D0=B7=D0=BD=D0=B5=D1=81=D0=B5=D0=BD=D0=B8=D1=85 =D0=BF=D1=80=D0= =BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BE=D0=BC =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1= =87=D0=BD=D0=B8=D0=BA. =D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BC=D0=BE= =D0=B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A= =D0=B5=D0=BD=D0=B5 =D0=BD=D0=B0=D0=B4 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D0=BC= " +#~ "=D0=B8=D0=BB=D0=B8\n" #~ "=D0=B2=D0=B8=D1=88=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0= =B0 =D1=83 =D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0= =BE=D0=B4 =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B0=D1=98=D0=B0 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0= =B0. =D0=9F=D1=80=D0=B8=D1=85=D0=B2=D0=B0=D1=82=D0=B0 =D0=B2=D0=B8=D1=88= =D0=B5\n" -#~ "=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87=D0=B8=D1=82=D0=B8=D1=85 =D0=B7=D0= =B0=D0=BF=D0=B8=D1=81=D0=B0 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87=D0=BD=D0= =B8=D0=BA=D0=B0. =D0=A2=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=BC=D0=BE=D0=B6= =D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5= =D0=BD =D0=B7=D0=B0 =D0=B2=D1=80=D0=B0=D1=9B=D0=B0=D1=9A=D0=B5 =D0=BF=D1=80= =D0=B5=D1=82=D1=85=D0=BE=D0=B4=D0=BD=D0=BE =D0=BF=D1=80=D0=B8=D0=BC=D0=B5= =D1=9A=D0=B5=D0=BD=D0=B8=D1=85 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0= ." +#~ "=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87=D0=B8=D1=82=D0=B8=D1=85 =D0=B7=D0= =B0=D0=BF=D0=B8=D1=81=D0=B0 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87=D0=BD=D0= =B8=D0=BA=D0=B0. =D0=A2=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=BC=D0=BE=D0=B6= =D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5= =D0=BD =D0=B7=D0=B0 =D0=B2=D1=80=D0=B0=D1=9B=D0=B0=D1=9A=D0=B5 " +#~ "=D0=BF=D1=80=D0=B5=D1=82=D1=85=D0=BE=D0=B4=D0=BD=D0=BE =D0=BF=D1=80=D0= =B8=D0=BC=D0=B5=D1=9A=D0=B5=D0=BD=D0=B8=D1=85 =D1=80=D0=B0=D0=B7=D0=BB=D0= =B8=D0=BA=D0=B0." =20 #~ msgid "Comparing and merging files" #~ msgstr "=D0=A3=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0= =B5 =D0=B8 =D1=81=D1=82=D0=B0=D0=BF=D0=B0=D1=9A=D0=B5 =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D0=B0" =20 #~ msgid "" #~ "GNU Diffutils is a package containing tools for finding the\n" -#~ "differences between files. The \"diff\" command is used to show how= two files\n" -#~ "differ, while \"cmp\" shows the offsets and line numbers where they = differ. \n" -#~ "\"diff3\" allows you to compare three files. Finally, \"sdiff\" off= ers an\n" +#~ "differences between files. The \"diff\" command is used to show how= two " +#~ "files\n" +#~ "differ, while \"cmp\" shows the offsets and line numbers where they = " +#~ "differ. \n" +#~ "\"diff3\" allows you to compare three files. Finally, \"sdiff\" off= ers " +#~ "an\n" #~ "interactive means to merge two files." #~ msgstr "" -#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0= =B0=D0=BB=D0=B0 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D1=98=D0=B5 =D0= =BF=D0=B0=D0=BA=D0=B5=D1=82 =D0=BA=D0=BE=D1=98=D0=B8 =D1=81=D0=B0=D0=B4=D1= =80=D0=B6=D0=B8 =D0=B0=D0=BB=D0=B0=D1=82=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0= =BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B5 =D1=80=D0=B0=D0=B7=D0= =BB=D0=B8=D0=BA=D0=B0\n" +#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0= =B0=D0=BB=D0=B0 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D1=98=D0=B5 =D0= =BF=D0=B0=D0=BA=D0=B5=D1=82 =D0=BA=D0=BE=D1=98=D0=B8 =D1=81=D0=B0=D0=B4=D1= =80=D0=B6=D0=B8 =D0=B0=D0=BB=D0=B0=D1=82=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0= =BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B5 " +#~ "=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0\n" #~ "=D0=B8=D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0= =B5=D0=BA=D0=B0. =D0=9D=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B0 =E2=80=9Edif= f=E2=80=9C =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0=B7= =D0=B0 =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5= =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D0=B4=D0=B2=D0=B5=D1=98=D1=83= \n" #~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0, =D0=B4=D0=BE=D0=BA= =E2=80=9Ecmp=E2=80=9C =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D1=83=D1=98=D0= =B5 =D0=BF=D0=BE=D0=BC=D0=B5=D1=80=D0=B0=D1=98=D0=B5 =D0=B8 =D0=B1=D1=80=D0= =BE=D1=98=D0=B5=D0=B2=D0=B5 =D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B0 =D0=BD=D0= =B0 =D0=BA=D0=BE=D1=98=D0=B8=D0=BC=D0=B0 =D1=81=D0=B5\n" #~ "=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D1=83=D1=98=D1=83. =E2=80=9Edi= ff3=E2=80=9C =D0=B2=D0=B0=D0=BC =D0=BE=D0=BC=D0=BE=D0=B3=D1=83=D1=9B=D0=B0= =D0=B2=D0=B0 =D1=83=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A= =D0=B5 =D1=82=D1=80=D0=B8 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5= . =D0=9D=D0=B0 =D0=BA=D1=80=D0=B0=D1=98=D1=83,\n" @@ -1344,16 +2691,23 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ msgid "" #~ "Findutils supplies the basic file directory searching utilities of t= he\n" #~ "GNU system. It consists of two primary searching utilities: \"find\= "\n" -#~ "recursively searches for files in a directory according to given cri= teria and\n" -#~ "\"locate\" lists files in a database that match a query. Two auxili= ary tools\n" -#~ "are included: \"updatedb\" updates the file name database and \"xarg= s\" may be\n" +#~ "recursively searches for files in a directory according to given cri= teria " +#~ "and\n" +#~ "\"locate\" lists files in a database that match a query. Two auxili= ary " +#~ "tools\n" +#~ "are included: \"updatedb\" updates the file name database and \"xarg= s\" " +#~ "may be\n" #~ "used to apply commands with arbitrarily long arguments." #~ msgstr "" -#~ "=D0=9F=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=BF=D1=80=D0=BE=D0= =BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B0 =D0=B4=D0=BE=D1=81=D1=82=D0= =B0=D0=B2=D1=99=D0=B0=D1=98=D1=83 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0= =B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=B7=D0=B0 =D0=BF=D1= =80=D0=B5=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B4=D0= =B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5\n" -#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0= =B5=D0=BC=D0=B0. =D0=A1=D0=B0=D1=81=D1=82=D0=BE=D1=98=D0=B8 =D1=81=D0=B5= =D0=BE=D0=B4 =D0=B4=D0=B2=D0=B0 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B0= =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=BF=D1=80=D0=B5=D1=82= =D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0: =E2=80=9Efind=E2=80=9C\= n" +#~ "=D0=9F=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=BF=D1=80=D0=BE=D0= =BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B0 =D0=B4=D0=BE=D1=81=D1=82=D0= =B0=D0=B2=D1=99=D0=B0=D1=98=D1=83 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0= =B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=B7=D0=B0 =D0=BF=D1= =80=D0=B5=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5\n" +#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0= =B5=D0=BC=D0=B0. =D0=A1=D0=B0=D1=81=D1=82=D0=BE=D1=98=D0=B8 =D1=81=D0=B5= =D0=BE=D0=B4 =D0=B4=D0=B2=D0=B0 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B0= =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=BF=D1=80=D0=B5=D1=82= =D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0: " +#~ "=E2=80=9Efind=E2=80=9C\n" #~ "=D0=B4=D1=83=D0=B1=D0=B8=D0=BD=D1=81=D0=BA=D0=B8 =D1=82=D1=80=D0=B0=D0= =B6=D0=B8 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B4=D0= =B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC=D1=83 =D0= =BF=D1=80=D0=B5=D0=BC=D0=B0 =D0=B7=D0=B0=D0=B4=D0=B0=D1=82=D0=BE=D0=BC =D0= =BC=D0=B5=D1=80=D0=B8=D0=BB=D1=83 =D0=B0 =E2=80=9Elocate=E2=80=9C\n" -#~ "=D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B1=D0=B0=D0=B7=D0=B8 =D0=BF=D0=BE=D0= =B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BA=D0=BE=D1=98=D0=B5 =D0=BE=D0=B4=D0= =B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D1=83=D0=BF=D0=B8=D1=82=D1= =83. =D0=A3=D0=BA=D1=99=D1=83=D1=87=D0=B5=D0=BD=D0=B0 =D1=81=D1=83 =D0=B4= =D0=B2=D0=B0\n" -#~ "=D0=BF=D0=BE=D0=BC=D0=BE=D1=9B=D0=BD=D0=B0 =D0=B0=D0=BB=D0=B0=D1=82=D0= =B0: =E2=80=9Eupdatedb=E2=80=9C =D0=BE=D1=81=D0=B2=D0=B5=D0=B6=D0=B0=D0=B2= =D0=B0 =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5= =D0=BA=D0=B5 =D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0= =D0=BA=D0=B0 =D0=B0 =E2=80=9Exargs=E2=80=9C\n" +#~ "=D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B1=D0=B0=D0=B7=D0=B8 =D0=BF=D0=BE=D0= =B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BA=D0=BE=D1=98=D0=B5 =D0=BE=D0=B4=D0= =B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D1=83=D0=BF=D0=B8=D1=82=D1= =83. =D0=A3=D0=BA=D1=99=D1=83=D1=87=D0=B5=D0=BD=D0=B0 =D1=81=D1=83 " +#~ "=D0=B4=D0=B2=D0=B0\n" +#~ "=D0=BF=D0=BE=D0=BC=D0=BE=D1=9B=D0=BD=D0=B0 =D0=B0=D0=BB=D0=B0=D1=82=D0= =B0: =E2=80=9Eupdatedb=E2=80=9C =D0=BE=D1=81=D0=B2=D0=B5=D0=B6=D0=B0=D0=B2= =D0=B0 =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5= =D0=BA=D0=B5 =D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0= =D0=BA=D0=B0 =D0=B0 " +#~ "=E2=80=9Exargs=E2=80=9C\n" #~ "=D1=81=D0=B5 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=81= =D1=82=D0=B8=D1=82=D0=B8 =D0=B7=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A= =D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B8= =D1=81=D0=B0 =D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B2=D0=BE=D1=99=D0=BD=D0=BE= =D0=B4=D1=83=D0=B3=D0=B8=D0=BC =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD= =D1=82=D0=B8=D0=BC=D0=B0." =20 #~ msgid "Core GNU utilities (file, text, shell)" @@ -1361,12 +2715,15 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "GNU Coreutils includes all of the basic command-line tools that are\= n" -#~ "expected in a POSIX system. These provide the basic file, shell and= text\n" -#~ "manipulation functions of the GNU system. Most of these tools offer= extended\n" +#~ "expected in a POSIX system. These provide the basic file, shell and= " +#~ "text\n" +#~ "manipulation functions of the GNU system. Most of these tools offer= " +#~ "extended\n" #~ "functionality beyond that which is outlined in the POSIX standard." #~ msgstr "" #~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BA=D1=99=D1=83=D1=87=D0=BD=D0= =B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=83=D0=BA=D1=99=D1= =83=D1=87=D1=83=D1=98=D1=83 =D1=81=D0=B2=D0=B5 =D0=BE=D1=81=D0=BD=D0=BE=D0= =B2=D0=BD=D0=B5 =D0=B0=D0=BB=D0=B0=D1=82=D0=B5 =D0=BB=D0=B8=D0=BD=D0=B8=D1= =98=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B8 =D0=BA=D0=BE=D1=98=D0= =B8 =D1=81=D0=B5\n" -#~ "=D0=BE=D1=87=D0=B5=D0=BA=D1=83=D1=98=D1=83 =D1=83 =D0=9F=D0=9E=D0=A1= =D0=98=D0=9A=D0=A1 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83. =D0=9E=D0= =B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D1=83 =D0=BE=D1=81=D0=BD=D0= =BE=D0=B2=D0=BD=D0=B5 =D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D1= =83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=9A=D0=B0 =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D0=BE=D0=BC,\n" +#~ "=D0=BE=D1=87=D0=B5=D0=BA=D1=83=D1=98=D1=83 =D1=83 =D0=9F=D0=9E=D0=A1= =D0=98=D0=9A=D0=A1 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83. =D0=9E=D0= =B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D1=83 =D0=BE=D1=81=D0=BD=D0= =BE=D0=B2=D0=BD=D0=B5 =D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D1= =83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=9A=D0=B0 " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=BE=D0=BC,\n" #~ "=D1=88=D0=BA=D0=BE=D1=99=D0=BA=D0=BE=D0=BC =D0=B8 =D1=82=D0=B5=D0=BA= =D1=81=D1=82=D0=BE=D0=BC =D0=BD=D0=B0 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE= =D0=BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83. =D0=92=D0=B5=D1=9B=D0= =B8=D0=BD=D0=B0 =D0=BE=D0=B2=D0=B8=D1=85 =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0= =BD=D1=83=D0=B4=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D0=BD=D0= =B5\n" #~ "=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0= =BE=D1=81=D1=82=D0=B8 =D0=B8=D0=B7=D0=B2=D0=B0=D0=BD =D0=BE=D0=BD=D0=B8=D1= =85 =D0=BA=D0=BE=D1=98=D0=B5 =D1=81=D1=83 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0= =B5=D0=BD=D0=B5 =D1=83 =D0=9F=D0=9E=D0=A1=D0=98=D0=9A=D0=A1 =D1=81=D1=82=D0= =B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D1=83." =20 @@ -1376,14 +2733,21 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ msgid "" #~ "Make is a program that is used to control the production of\n" #~ "executables or other files from their source files. The process is\= n" -#~ "controlled from a Makefile, in which the developer specifies how eac= h file is\n" -#~ "generated from its source. It has powerful dependency resolution an= d the\n" -#~ "ability to determine when files have to be regenerated after their s= ources\n" -#~ "change. GNU make offers many powerful extensions over the standard = utility." +#~ "controlled from a Makefile, in which the developer specifies how eac= h " +#~ "file is\n" +#~ "generated from its source. It has powerful dependency resolution an= d " +#~ "the\n" +#~ "ability to determine when files have to be regenerated after their " +#~ "sources\n" +#~ "change. GNU make offers many powerful extensions over the standard = " +#~ "utility." #~ msgstr "" -#~ "=D0=9C=D0=B5=D1=98=D0=BA =D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80= =D0=B0=D0=BC =D0=BA=D0=BE=D1=98=D0=B8 =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8= =D1=81=D1=82=D0=B8 =D0=B7=D0=B0 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0= =D1=9A=D0=B5 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5=D0=BC =D0=B8= =D0=B7=D0=B2=D1=80=D1=88=D0=BD=D0=B8=D1=85 =D0=B8=D0=BB=D0=B8 =D0=B4=D1=80= =D1=83=D0=B3=D0=B8=D1=85\n" -#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B8=D0=B7 =D1=9A= =D0=B8=D1=85=D0=BE=D0=B2=D0=B8=D1=85 =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD= =D0=B8=D1=85. =D0=9F=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BA=D0=BE=D0=BC =D1= =81=D0=B5 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0 =D0=B8=D0=B7 =E2=80=9E= Makefile=E2=80=9C-=D0=B0, =D1=83 =D0=BA=D0=BE=D0=BC=D0=B5\n" -#~ "=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B5=D1=80=D0=B8 =D0=BD=D0= =B0=D0=B2=D0=BE=D0=B4=D0=B5 =D0=BA=D0=B0=D0=BA=D0=BE =D1=81=D0=B5 =D1=81=D0= =B2=D0=B0=D0=BA=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1= =81=D1=82=D0=B2=D0=B0=D1=80=D0=B0 =D0=B8=D0=B7 =D1=81=D0=B2=D0=BE=D0=B3 =D0= =B8=D0=B7=D0=B2=D0=BE=D1=80=D0=B0. =D0=9F=D0=BE=D1=81=D0=B5=D0=B4=D1=83=D1= =98=D0=B5\n" +#~ "=D0=9C=D0=B5=D1=98=D0=BA =D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80= =D0=B0=D0=BC =D0=BA=D0=BE=D1=98=D0=B8 =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8= =D1=81=D1=82=D0=B8 =D0=B7=D0=B0 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0= =D1=9A=D0=B5 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5=D0=BC =D0=B8= =D0=B7=D0=B2=D1=80=D1=88=D0=BD=D0=B8=D1=85 =D0=B8=D0=BB=D0=B8 " +#~ "=D0=B4=D1=80=D1=83=D0=B3=D0=B8=D1=85\n" +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B8=D0=B7 =D1=9A= =D0=B8=D1=85=D0=BE=D0=B2=D0=B8=D1=85 =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD= =D0=B8=D1=85. =D0=9F=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BA=D0=BE=D0=BC =D1= =81=D0=B5 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0 =D0=B8=D0=B7 =E2=80=9E= Makefile=E2=80=9C-=D0=B0, =D1=83 " +#~ "=D0=BA=D0=BE=D0=BC=D0=B5\n" +#~ "=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B5=D1=80=D0=B8 =D0=BD=D0= =B0=D0=B2=D0=BE=D0=B4=D0=B5 =D0=BA=D0=B0=D0=BA=D0=BE =D1=81=D0=B5 =D1=81=D0= =B2=D0=B0=D0=BA=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1= =81=D1=82=D0=B2=D0=B0=D1=80=D0=B0 =D0=B8=D0=B7 =D1=81=D0=B2=D0=BE=D0=B3 =D0= =B8=D0=B7=D0=B2=D0=BE=D1=80=D0=B0. " +#~ "=D0=9F=D0=BE=D1=81=D0=B5=D0=B4=D1=83=D1=98=D0=B5\n" #~ "=D0=BC=D0=BE=D1=9B=D0=BD=D0=BE =D1=80=D0=B5=D1=88=D0=B0=D0=B2=D0=B0=D1= =9A=D0=B5 =D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0= =B8 =D1=81=D0=BF=D0=BE=D1=81=D0=BE=D0=B1=D0=BD=D0=BE=D1=81=D1=82 =D0=BE=D0= =B4=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0 =D0=BA=D0=B0=D0=B4=D0= =B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=82=D1=80=D0=B5=D0= =B1=D0=B0 =D0=B4=D0=B0\n" #~ "=D0=B1=D1=83=D0=B4=D1=83 =D0=BF=D0=BE=D0=BD=D0=BE=D0=B2=D0=BE =D1=81= =D1=82=D0=B2=D0=BE=D1=80=D0=B5=D0=BD=D0=B5 =D0=BD=D0=B0=D0=BA=D0=BE=D0=BD= =D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B0 =D1=9A=D0=B8=D1=85=D0=BE=D0=B2=D0=B8= =D1=85 =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=B0. =D0=93=D0=BD=D1=83=D0=BE=D0= =B2 =D0=BC=D0=B5=D1=98=D0=BA =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=BD=D0=BE=D0= =B3=D0=BE\n" #~ "=D0=BC=D0=BE=D1=9B=D0=BD=D0=B8=D1=85 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1= =80=D0=B5=D1=9A=D0=B0 =D0=BF=D0=BE=D1=80=D0=B5=D0=B4 =D1=81=D1=82=D0=B0=D0= =BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0= =B3=D0=B0=D0=BB=D0=B0." @@ -1393,15 +2757,19 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "GNU Binutils is a collection of tools for working with binary files.= \n" -#~ "Perhaps the most notable are \"ld\", a linker, and \"as\", an assemb= ler. Other\n" +#~ "Perhaps the most notable are \"ld\", a linker, and \"as\", an assemb= ler. " +#~ "Other\n" #~ "tools include programs to display binary profiling information, list= the\n" -#~ "strings in a binary file, and utilities for working with archives. = The \"bfd\"\n" +#~ "strings in a binary file, and utilities for working with archives. = The " +#~ "\"bfd\"\n" #~ "library for working with executable and object formats is also inclu= ded." #~ msgstr "" -#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=B1=D0=B8=D0=BD=D0=B0=D1=80=D0= =BD=D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=98=D0=B5=D1= =81=D1=82=D0=B5 =D0=B7=D0=B1=D0=B8=D1=80=D0=BA=D0=B0 =D0=B0=D0=BB=D0=B0=D1= =82=D0=B0 =D0=B7=D0=B0 =D1=80=D0=B0=D0=B4 =D1=81=D0=B0 =D0=B8=D0=B7=D0=B2= =D1=80=D1=88=D0=BD=D0=B8=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA= =D0=B0=D0=BC=D0=B0.\n" +#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=B1=D0=B8=D0=BD=D0=B0=D1=80=D0= =BD=D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=98=D0=B5=D1= =81=D1=82=D0=B5 =D0=B7=D0=B1=D0=B8=D1=80=D0=BA=D0=B0 =D0=B0=D0=BB=D0=B0=D1= =82=D0=B0 =D0=B7=D0=B0 =D1=80=D0=B0=D0=B4 =D1=81=D0=B0 =D0=B8=D0=B7=D0=B2= =D1=80=D1=88=D0=BD=D0=B8=D0=BC " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0=B0.\n" #~ "=D0=9C=D0=BE=D0=B6=D0=B4=D0=B0 =D1=98=D0=B5 =D0=BD=D0=B0=D1=98=D0=BF= =D0=BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B8=D1=98=D0=B8 =E2=80=9Eld=E2=80=9C, =D0= =BF=D0=BE=D0=B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=87, =D0=B8 =E2=80=9Eas=E2= =80=9C, =D1=81=D0=B0=D1=81=D1=82=D0=B0=D0=B2=D0=BD=D0=B8=D0=BA. =D0=9E=D1= =81=D1=82=D0=B0=D0=BB=D0=B8 =D0=B0=D0=BB=D0=B0=D1=82=D0=B8\n" #~ "=D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0= =B0=D0=BC=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D0=B8=D0= =B2=D0=B0=D1=9A=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0= =B1=D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D0=BE=D0=B3 =D0=BF=D1=80=D0=BE=D1=84=D0= =B8=D0=BB=D0=B8=D1=81=D0=B0=D1=9A=D0=B0, =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D0= =B8=D0=B2=D0=B0=D1=9A=D0=B5\n" -#~ "=D0=BD=D0=B8=D1=81=D0=BA=D0=B8 =D1=83 =D0=B8=D0=B7=D0=B2=D1=80=D1=88= =D0=BD=D0=BE=D1=98 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8, =D0=B8= =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=B7=D0=B0 =D1=80=D0=B0= =D0=B4 =D1=81=D0=B0 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D0=BC=D0=B0. =D0= =A2=D1=83 =D1=98=D0=B5 =D1=82=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=B8 \n" +#~ "=D0=BD=D0=B8=D1=81=D0=BA=D0=B8 =D1=83 =D0=B8=D0=B7=D0=B2=D1=80=D1=88= =D0=BD=D0=BE=D1=98 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8, =D0=B8= =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=B7=D0=B0 =D1=80=D0=B0= =D0=B4 =D1=81=D0=B0 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D0=BC=D0=B0. =D0= =A2=D1=83 =D1=98=D0=B5 =D1=82=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 " +#~ "=D0=B8 \n" #~ "=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =E2=80=9E= bfd=E2=80=9C =D0=B7=D0=B0 =D1=80=D0=B0=D0=B4 =D1=81=D0=B0 =D0=B8=D0=B7=D0= =B2=D1=80=D1=88=D0=BD=D0=B8=D0=BC =D0=B8 =D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D0= =B8=D0=BC=D0=B0 =D0=BE=D0=B1=D1=98=D0=B5=D0=BA=D0=B0=D1=82=D0=B0." =20 #~ msgid "The GNU C Library" @@ -1409,17 +2777,21 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "Any Unix-like operating system needs a C library: the library which\= n" -#~ "defines the \"system calls\" and other basic facilities such as open= , malloc,\n" +#~ "defines the \"system calls\" and other basic facilities such as open= , " +#~ "malloc,\n" #~ "printf, exit...\n" #~ "\n" -#~ "The GNU C library is used as the C library in the GNU system and mos= t systems\n" +#~ "The GNU C library is used as the C library in the GNU system and mos= t " +#~ "systems\n" #~ "with the Linux kernel." #~ msgstr "" -#~ "=D0=A1=D0=B2=D0=B0=D0=BA=D0=BE=D0=BC =D0=88=D1=83=D0=BD=D0=B8=D0=BA=D1= =81=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE=D0=BC =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1= =82=D0=B8=D0=B2=D0=BD=D0=BE=D0=BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1= =83 =D1=98=D0=B5 =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BD=D0=B0 =D0=A6 = =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0: =D0=B1=D0=B8= =D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0\n" +#~ "=D0=A1=D0=B2=D0=B0=D0=BA=D0=BE=D0=BC =D0=88=D1=83=D0=BD=D0=B8=D0=BA=D1= =81=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE=D0=BC =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1= =82=D0=B8=D0=B2=D0=BD=D0=BE=D0=BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1= =83 =D1=98=D0=B5 =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BD=D0=B0 =D0=A6 = =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0: " +#~ "=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0\n" #~ "=D0=BA=D0=BE=D1=98=D0=B0 =D0=BE=D0=B4=D1=80=D0=B5=D1=92=D1=83=D1=98=D0= =B5 =E2=80=9E=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=81=D0=BA=D0=B5 =D0=BF= =D0=BE=D0=B7=D0=B8=D0=B2=D0=B5=E2=80=9C =D0=B8 =D0=BE=D1=81=D1=82=D0=B0=D0= =BB=D0=B5 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B5 =D0=BE=D0=BB=D0=B0=D0= =BA=D1=88=D0=B8=D1=86=D0=B5 =D0=BA=D0=B0=D0=BE =D1=88=D1=82=D0=BE =D1=81=D1= =83\n" #~ "=E2=80=9Eopen, malloc, printf, exit...=E2=80=9C\n" #~ "\n" -#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB= =D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8= =D1=81=D1=82=D0=B8 =D0=BA=D0=B0=D0=BE =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=83 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE= =D0=BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83 =D0=B8 =D0=B2=D0=B5=D1=9B= =D0=B8=D0=BD=D0=B8\n" +#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB= =D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8= =D1=81=D1=82=D0=B8 =D0=BA=D0=B0=D0=BE =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=83 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE= =D0=BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83 =D0=B8 " +#~ "=D0=B2=D0=B5=D1=9B=D0=B8=D0=BD=D0=B8\n" #~ "=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D0=B0 =D1=81=D0=B0 =D0=9B=D0=B8= =D0=BD=D1=83=D0=BA=D1=81 =D1=98=D0=B5=D0=B7=D0=B3=D1=80=D0=BE=D0=BC." =20 #~ msgid "Database of current and historical time zones" @@ -1429,7 +2801,8 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0= =B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0= =B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82 #~ "The Time Zone Database (often called tz or zoneinfo)\n" #~ "contains code and data that represent the history of local time for = many\n" #~ "representative locations around the globe. It is updated periodicall= y to\n" -#~ "reflect changes made by political bodies to time zone boundaries, UT= C offsets,\n" +#~ "reflect changes made by political bodies to time zone boundaries, UT= C " +#~ "offsets,\n" #~ "and daylight-saving rules." #~ msgstr "" #~ "=D0=91=D0=B0=D0=B7=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0= =B0 =D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D1=81=D0=BA=D0=B5 =D0=B7=D0=BE=D0= =BD=D0=B5 (=D1=87=D0=B5=D1=81=D1=82=D0=BE =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2=D0= =B0=D0=BD=D0=B0 =E2=80=9Etz=E2=80=9C =D0=B8=D0=BB=D0=B8 =E2=80=9Ezoneinfo= =E2=80=9C)\n" @@ -1446,7 +2819,8 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0= =B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0= =B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82 =20 #~ msgid "" #~ "The linker wrapper (or `ld-wrapper') wraps the linker to add any\n" -#~ "missing `-rpath' flags, and to detect any misuse of libraries outsid= e of the\n" +#~ "missing `-rpath' flags, and to detect any misuse of libraries outsid= e of " +#~ "the\n" #~ "store." #~ msgstr "" #~ "=D0=9E=D0=BC=D0=BE=D1=82=D0=B0=D1=87 =D0=BF=D0=BE=D0=B2=D0=B5=D0=B7=D0= =B8=D0=B2=D0=B0=D1=87=D0=B0 (=D0=B8=D0=BB=D0=B8 =E2=80=9Eld-wrapper=E2=80= =9C) =D0=BE=D0=B1=D0=BC=D0=BE=D1=82=D0=B0=D0=B2=D0=B0 =D0=BF=D0=BE=D0=B2=D0= =B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=87=D0=B0 =D0=B4=D0=B0 =D0=B1=D0=B8 =D0=B4=D0= =BE=D0=B4=D0=B0=D0=BE\n" @@ -1458,14 +2832,18 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the= \n" -#~ "official extension language of the GNU system. It is an implementat= ion of\n" -#~ "the Scheme language which can be easily embedded in other applicatio= ns to\n" -#~ "provide a convenient means of extending the functionality of the app= lication\n" +#~ "official extension language of the GNU system. It is an implementat= ion " +#~ "of\n" +#~ "the Scheme language which can be easily embedded in other applicatio= ns " +#~ "to\n" +#~ "provide a convenient means of extending the functionality of the " +#~ "application\n" #~ "without requiring the source code to be rewritten." #~ msgstr "" #~ "=D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D1=98=D0=B5 =D0=93=D0=BD=D1=83=D0=BE= =D0=B2 =D1=81=D0=B2=D0=B5=D0=BF=D1=80=D0=B8=D1=81=D1=83=D1=82=D0=B0=D0=BD= =D0=BF=D0=B0=D0=BC=D0=B5=D1=82=D0=B0=D0=BD =D1=98=D0=B5=D0=B7=D0=B8=D0=BA= =D0=B7=D0=B0 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0, =D0= =B7=D0=B2=D0=B0=D0=BD=D0=B8=D1=87=D0=BD=D0=B8 =D1=98=D0=B5=D0=B7=D0=B8=D0= =BA\n" #~ "=D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=B7=D0=B0 = =D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC. =D0= =A2=D0=BE =D1=98=D0=B5 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0 =D0=A8=D0= =B5=D0=BC=D0=B5 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA=D0=B0 =D0=BA=D0=BE=D1=98=D0= =B8 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=BB=D0=B0=D0=BA=D0=BE\n" -#~ "=D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD = =D1=83 =D0=B4=D1=80=D1=83=D0=B3=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0= =D0=BC=D0=B5 =D0=BA=D0=B0=D0=BA=D0=BE =D0=B1=D0=B8 =D0=BE=D0=B1=D0=B5=D0=B7= =D0=B1=D0=B5=D0=B4=D0=B8=D0=BE =D0=B8=D1=81=D0=BF=D0=BB=D0=B0=D1=82=D0=B8= =D0=B2 =D0=BD=D0=B0=D1=87=D0=B8=D0=BD =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80= =D0=B8=D0=B2=D0=B0=D1=9A=D0=B0\n" +#~ "=D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD = =D1=83 =D0=B4=D1=80=D1=83=D0=B3=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0= =D0=BC=D0=B5 =D0=BA=D0=B0=D0=BA=D0=BE =D0=B1=D0=B8 =D0=BE=D0=B1=D0=B5=D0=B7= =D0=B1=D0=B5=D0=B4=D0=B8=D0=BE =D0=B8=D1=81=D0=BF=D0=BB=D0=B0=D1=82=D0=B8= =D0=B2 =D0=BD=D0=B0=D1=87=D0=B8=D0=BD " +#~ "=D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0\n= " #~ "=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0= =BE=D1=81=D1=82=D0=B8 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B0 =D0= =B1=D0=B5=D0=B7 =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B5 =D0=BF=D0=BE=D0= =BD=D0=BE=D0=B2=D0=BD=D0=BE=D0=B3 =D0=BF=D0=B8=D1=81=D0=B0=D1=9A=D0=B0 =D0= =B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=BE=D0=B3 =D0=BA=D0=BE=D0=B4=D0=B0." =20 #~ msgid "Framework for building readers for GNU Guile" @@ -1475,13 +2853,15 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "Guile-Reader is a simple framework for building readers for GNU Guil= e.\n" #~ "\n" #~ "The idea is to make it easy to build procedures that extend Guile=E2= =80=99s read\n" -#~ "procedure. Readers supporting various syntax variants can easily be = written,\n" +#~ "procedure. Readers supporting various syntax variants can easily be = " +#~ "written,\n" #~ "possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a s= tandard Scheme\n" #~ "readers. For example, it is used to implement Skribilo=E2=80=99s R5R= S-derived\n" #~ "document syntax.\n" #~ "\n" #~ "Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s = =E2=80=9Cread table=E2=80=9D, but\n" -#~ "hopefully more powerful and flexible (for instance, one may instanti= ate as\n" +#~ "hopefully more powerful and flexible (for instance, one may instanti= ate " +#~ "as\n" #~ "many readers as needed)." #~ msgstr "" #~ "=D0=93=D1=83=D0=B8=D0=BB=D0=B5-=D1=87=D0=B8=D1=82=D0=B0=D1=87 =D1=98= =D0=B5 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B0=D0=BD= =D1=80=D0=B0=D0=B4=D0=BD=D0=B8 =D1=81=D0=BA=D0=BB=D0=BE=D0=BF =D0=B7=D0=B0= =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D1=87=D0=B8=D1=82=D0=B0= =D1=87=D0=B0 =D0=B7=D0=B0 =D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0=BB=D0=B0= .\n" @@ -1489,9 +2869,11 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "=D0=97=D0=B0=D0=BC=D0=B8=D1=81=D0=B0=D0=BE =D1=98=D0=B5 =D0=BE=D0=BB= =D0=B0=D0=BA=D1=88=D0=B0=D1=82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4= =D1=9A=D1=83 =D0=BF=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=B0=D0=BA=D0=B0 =D0=BA= =D0=BE=D1=98=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D1=83=D1=98=D1=83= =D0=93=D1=83=D0=B8=D0=BB=D0=BE=D0=B2 =D0=BF=D0=BE=D1=81=D1=82=D1=83=D0=BF= =D0=B0=D0=BA\n" #~ "=D1=87=D0=B8=D1=82=D0=B0=D1=9A=D0=B0. =D0=A7=D0=B8=D1=82=D0=B0=D1=87= =D0=B8 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=B2= =D0=B0=D1=98=D1=83 =D1=80=D0=B0=D0=B7=D0=BD=D0=B5 =D0=B2=D0=B0=D1=80=D0=B8= =D1=98=D0=B0=D0=BD=D1=82=D0=B5 =D1=81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81= =D0=B5 =D0=BC=D0=BE=D0=B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BB=D0=B0=D0=BA= =D0=BE\n" #~ "=D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=B8, =D0=BF=D0=BE =D0=BC= =D0=BE=D0=B3=D1=83=D1=9B=D1=81=D1=82=D0=B2=D1=83 =D0=BF=D0=BE=D0=BD=D0=BE= =D0=B2=D0=BD=D0=B8=D0=BC =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D1=9A= =D0=B5=D0=BC =D0=BF=D0=BE=D1=81=D1=82=D0=BE=D1=98=D0=B5=D1=9B=D0=B8=D1=85= =E2=80=9E=D1=87=D0=B8=D1=82=D0=B0=D1=87=D0=B0 =E2=80=9C =D1=87=D0=B8=D1=82= =D0=B0=D1=87=D0=B0\n" -#~ "=D1=81=D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B5 =D0=A8=D0= =B5=D0=BC=D0=B5. =D0=9D=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80, =D0=BA= =D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D1=81=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80= =D0=B8=D0=BC=D0=B5=D0=BD=D1=83 =D1=81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81= =D0=B5 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D1=82=D0=B0 =D0=BA=D0=BE= =D1=98=D0=B0 =D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B8=D0=BB=D0=B0=D0=B7=D0=B8= =D0=B8=D0=B7 =D0=A05=D0=A0=D0=A1 =D0=A1=D0=BA=D1=80=D0=B8=D0=B1=D0=B8=D0= =BB=D0=BE=D0=B0.\n" +#~ "=D1=81=D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B5 =D0=A8=D0= =B5=D0=BC=D0=B5. =D0=9D=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80, =D0=BA= =D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D1=81=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80= =D0=B8=D0=BC=D0=B5=D0=BD=D1=83 =D1=81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81= =D0=B5 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D1=82=D0=B0 =D0=BA=D0=BE= =D1=98=D0=B0 " +#~ "=D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B8=D0=BB=D0=B0=D0=B7=D0=B8 =D0=B8=D0= =B7 =D0=A05=D0=A0=D0=A1 =D0=A1=D0=BA=D1=80=D0=B8=D0=B1=D0=B8=D0=BB=D0=BE=D0= =B0.\n" #~ "\n" -#~ "=D0=9F=D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF =D0=93=D1=83=D0=B8=D0=BB=D0= =B5-=D1=87=D0=B8=D1=82=D0=B0=D1=87=D0=B0 =D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D1= =87=D0=B0=D0=BD =D0=9E=D0=BF=D1=88=D1=82=D0=B5=D0=BC =D0=9B=D0=B8=D1=81=D0= =BF=D0=BE=D0=B2=D0=BE=D0=BC =E2=80=9E=D1=87=D0=B8=D1=82=D0=B0=D1=9A=D1=83= =D1=82=D0=B0=D0=B1=D0=B5=D0=BB=D0=B5=E2=80=9C, =D0=B0=D0=BB=D0=B8 =D1=98= =D0=B5 =D0=BD=D0=B0\n" +#~ "=D0=9F=D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF =D0=93=D1=83=D0=B8=D0=BB=D0= =B5-=D1=87=D0=B8=D1=82=D0=B0=D1=87=D0=B0 =D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D1= =87=D0=B0=D0=BD =D0=9E=D0=BF=D1=88=D1=82=D0=B5=D0=BC =D0=9B=D0=B8=D1=81=D0= =BF=D0=BE=D0=B2=D0=BE=D0=BC =E2=80=9E=D1=87=D0=B8=D1=82=D0=B0=D1=9A=D1=83= =D1=82=D0=B0=D0=B1=D0=B5=D0=BB=D0=B5=E2=80=9C, =D0=B0=D0=BB=D0=B8 =D1=98= =D0=B5 " +#~ "=D0=BD=D0=B0\n" #~ "=D1=81=D1=80=D0=B5=D1=9B=D1=83 =D0=BC=D0=BD=D0=BE=D0=B3=D0=BE =D0=BC= =D0=BE=D1=9B=D0=BD=D0=B8=D1=98=D0=B8 =D0=B8 =D0=BF=D1=80=D0=B8=D0=BB=D0=B0= =D0=B3=D0=BE=D0=B4=D1=99=D0=B8=D0=B2=D0=B8=D1=98=D0=B8 (=D0=BD=D0=B0 =D0=BF= =D1=80=D0=B8=D0=BC=D0=B5=D1=80, =D0=BD=D0=B5=D0=BA=D0=BE =D0=BC=D0=BE=D0=B6= =D0=B5 =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D0=BD=D0=B5\n" #~ "=D0=BE=D0=BD=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE =D1=87=D0=B8=D1=82=D0=B0=D1= =87=D0=B0 =D0=BA=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE =D0=BC=D1=83 =D1=98=D0=B5 = =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BD=D0=BE)." =20 @@ -1510,13 +2892,15 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "GNU Mcron is a complete replacement for Vixie cron. It is used to r= un\n" -#~ "tasks on a schedule, such as every hour or every Monday. Mcron is w= ritten in\n" +#~ "tasks on a schedule, such as every hour or every Monday. Mcron is " +#~ "written in\n" #~ "Guile, so its configuration can be written in Scheme; the original c= ron\n" #~ "format is also supported." #~ msgstr "" #~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=9C=D0=BA=D1=80=D0=BE=D0=BD =D1=98= =D0=B5 =D0=BF=D0=BE=D1=82=D0=BF=D1=83=D0=BD=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5= =D0=BD=D0=B0 =D0=B7=D0=B0 =D0=92=D0=B8=D0=BA=D1=81=D0=B8 =D0=BA=D1=80=D0=BE= =D0=BD. =D0=9A=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D1=81=D0=B5 =D0=B7=D0= =B0 =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5\n" #~ "=D0=B7=D0=B0=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BD=D0=B0 =D0=B7= =D0=B0=D0=BA=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5, =D1=80=D0=B5=D1=86= =D0=B8=D0=BC=D0=BE =D1=81=D0=B2=D0=B0=D0=BA=D0=BE=D0=B3 =D1=81=D0=B0=D1=82= =D0=B0 =D0=B8=D0=BB=D0=B8 =D1=81=D0=B2=D0=B0=D0=BA=D0=BE=D0=B3 =D0=BF=D0=BE= =D0=BD=D0=B5=D0=B4=D0=B5=D1=99=D0=BA=D0=B0. =D0=9C=D0=BA=D1=80=D0=BE=D0=BD= \n" -#~ "=D1=98=D0=B5 =D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD =D1=83 =D0=93= =D1=83=D0=B8=D0=BB=D0=B5=D1=83, =D1=82=D0=B0=D0=BA=D0=BE =D0=B4=D0=B0 =D1= =9A=D0=B5=D0=B3=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE=D0=B4=D0=B5=D1=88=D0=B0=D0= =B2=D0=B0=D1=9A=D0=B5 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0= =BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=BE =D1=83 =D0=A8=D0=B5=D0=BC=D0= =B8;\n" +#~ "=D1=98=D0=B5 =D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD =D1=83 =D0=93= =D1=83=D0=B8=D0=BB=D0=B5=D1=83, =D1=82=D0=B0=D0=BA=D0=BE =D0=B4=D0=B0 =D1= =9A=D0=B5=D0=B3=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE=D0=B4=D0=B5=D1=88=D0=B0=D0= =B2=D0=B0=D1=9A=D0=B5 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0= =BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=BE =D1=83 " +#~ "=D0=A8=D0=B5=D0=BC=D0=B8;\n" #~ "=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=B8 =D0=BA=D1=80=D0=BE=D0=BD=D0= =BE=D0=B2 =D0=B7=D0=B0=D0=BF=D0=B8=D1=81 =D1=98=D0=B5 =D1=82=D0=B0=D0=BA=D0= =BE=D1=92=D0=B5 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD." =20 #~ msgid "Collection of useful Guile Scheme modules" @@ -1524,8 +2908,10 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "guile-lib is intended as an accumulation place for pure-scheme Guile= \n" -#~ "modules, allowing for people to cooperate integrating their generic = Guile\n" -#~ "modules into a coherent library. Think \"a down-scaled, limited-sco= pe CPAN\n" +#~ "modules, allowing for people to cooperate integrating their generic = " +#~ "Guile\n" +#~ "modules into a coherent library. Think \"a down-scaled, limited-sco= pe " +#~ "CPAN\n" #~ "for Guile\"." #~ msgstr "" #~ "=D0=B3=D1=83=D0=B8=D0=BB=D0=B5-=D0=B1=D0=B8=D0=B1=D0=BB =D1=98=D0=B5= =D0=B7=D0=B0=D0=BC=D0=B8=D1=88=D1=99=D0=B5=D0=BD=D0=B0 =D0=BA=D0=B0=D0=BE= =D0=BC=D0=B5=D1=81=D1=82=D0=BE =D1=81=D0=BA=D1=83=D0=BF=D1=99=D0=B0=D1=9A= =D0=B0 =D0=B7=D0=B0 =D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D0=BC=D0=BE=D0=B4=D1=83= =D0=BB=D0=B5 =D1=87=D0=B8=D1=81=D1=82=D0=B5-=D1=88=D0=B5=D0=BC=D0=B5,\n" @@ -1555,18 +2941,25 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ msgstr "=D0=9B=D0=BE=D1=83=D1=82, =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC= =D0=B8=D0=B7=D0=B3=D0=BB=D0=B5=D0=B4=D0=B0 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC= =D0=B5=D0=BD=D1=82=D0=B0 =D1=81=D0=BB=D0=B8=D1=87=D0=B0=D0=BD =D1=83 =D1=81= =D1=82=D0=B8=D0=BB=D1=83 =D0=9B=D0=B0=D0=A2=D0=B5=D0=A5-=D1=83" =20 #~ msgid "" -#~ "The Lout document formatting system is now reads a high-level descri= ption of\n" -#~ "a document similar in style to LaTeX and produces a PostScript or pl= ain text\n" +#~ "The Lout document formatting system is now reads a high-level descri= ption " +#~ "of\n" +#~ "a document similar in style to LaTeX and produces a PostScript or pl= ain " +#~ "text\n" #~ "output file.\n" #~ "\n" -#~ "Lout offers an unprecedented range of advanced features, including o= ptimal\n" +#~ "Lout offers an unprecedented range of advanced features, including " +#~ "optimal\n" #~ "paragraph and page breaking, automatic hyphenation, PostScript EPS f= ile\n" -#~ "inclusion and generation, equation formatting, tables, diagrams, rot= ation and\n" +#~ "inclusion and generation, equation formatting, tables, diagrams, rot= ation " +#~ "and\n" #~ "scaling, sorted indexes, bibliographic databases, running headers an= d\n" -#~ "odd-even pages, automatic cross referencing, multilingual documents = including\n" -#~ "hyphenation (most European languages are supported), formatting of c= omputer\n" +#~ "odd-even pages, automatic cross referencing, multilingual documents = " +#~ "including\n" +#~ "hyphenation (most European languages are supported), formatting of " +#~ "computer\n" #~ "programs, and much more, all ready to use. Furthermore, Lout is eas= ily\n" -#~ "extended with definitions which are very much easier to write than t= roff of\n" +#~ "extended with definitions which are very much easier to write than t= roff " +#~ "of\n" #~ "TeX macros because Lout is a high-level, purely functional language,= the\n" #~ "outcome of an eight-year research project that went back to the\n" #~ "beginning." @@ -1592,19 +2985,20 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "GNU Recutils is a set of tools and libraries for creating and\n" -#~ "manipulating text-based, human-editable databases. Despite being te= xt-based,\n" -#~ "databases created with Recutils carry all of the expected features s= uch as\n" -#~ "unique fields, primary keys, time stamps and more. Many different fi= eld types\n" +#~ "manipulating text-based, human-editable databases. Despite being te= xt-" +#~ "based,\n" +#~ "databases created with Recutils carry all of the expected features s= uch " +#~ "as\n" +#~ "unique fields, primary keys, time stamps and more. Many different fi= eld " +#~ "types\n" #~ "are supported, as is encryption." #~ msgstr "" #~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE =D0=A0=D0=B5=D0=BA=D0=BF=D0=BE=D0= =BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=BE =D1=98=D0=B5 =D1=81=D0=BA=D1=83=D0=BF =D0= =B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=B8 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1= =82=D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1= =9A=D0=B5 =D0=B8 =D1=80=D1=83=D0=BA=D0=BE=D0=B2=D0=B0=D1=9A=D0=B5\n" #~ "=D0=B1=D0=B0=D0=B7=D0=B0=D0=BC=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0= =B0=D0=BA=D0=B0 =D0=B7=D0=B0=D1=81=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0= =BC =D0=BD=D0=B0 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83 =D0=BA=D0=BE=D1=98=D0= =B5 =D1=81=D0=B5 =D0=BC=D0=BE=D0=B3=D1=83 =D1=83=D1=80=D0=B5=D1=92=D0=B8=D0= =B2=D0=B0=D1=82=D0=B8. =D0=98=D0=B0=D0=BA=D0=BE =D1=81=D1=83\n" #~ "=D0=B7=D0=B0=D1=81=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B5 =D0=BD=D0=B0 = =D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83, =D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE= =D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D1=81=D1=82=D0=B2=D0=BE=D1=80=D0=B5= =D0=BD=D0=B5 =D0=A0=D0=B5=D0=BA=D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB= =D0=BE=D0=BC =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B5 =D1=81=D0=B2=D0=B5\n" #~ "=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0=B5 =D1=84=D1=83=D0= =BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D0=BA=D0=B0=D0=BE =D1=88=D1=82=D0=BE =D1= =81=D1=83 =D1=98=D0=B5=D0=B4=D0=B8=D0=BD=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0= =B0 =D0=BF=D0=BE=D1=99=D0=B0, =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B8 = =D0=BA=D1=99=D1=83=D1=87=D0=B5=D0=B2=D0=B8, =D0=BE=D0=B7=D0=BD=D0=B0=D0=BA= =D0=B5\n" -#~ "=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B0 =D0=B8 =D1=98=D0=BE=D1=88= =D0=BD=D0=B5=D0=BA=D0=B5. =D0=9C=D0=BD=D0=BE=D0=B3=D0=B5 =D1=80=D0=B0=D0= =B7=D0=BB=D0=B8=D1=87=D0=B8=D1=82=D0=B5 =D0=B2=D1=80=D1=81=D1=82=D0=B5 =D0= =BF=D0=BE=D1=99=D0=B0 =D1=81=D1=83 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0= =BD=D0=B5, =D0=BA=D0=B0=D0=BE =D1=83 =D1=88=D0=B8=D1=84=D1=80=D0=BE=D0=B2= =D0=B0=D1=9A=D1=83." - -#~ msgid "failed to load machine file '~a': ~s~%" -#~ msgstr "=D0=BD=D0=B8=D1=81=D0=B0=D0=BC =D1=83=D1=81=D0=BF=D0=B5=D0=BE= =D0=B4=D0=B0 =D1=83=D1=87=D0=B8=D1=82=D0=B0=D0=BC =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D1=83 =D0=BC=D0=B0=D1=88=D0=B8=D0=BD=D0=B5 =E2=80=9E~a= =E2=80=9C: ~s~%" +#~ "=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B0 =D0=B8 =D1=98=D0=BE=D1=88= =D0=BD=D0=B5=D0=BA=D0=B5. =D0=9C=D0=BD=D0=BE=D0=B3=D0=B5 =D1=80=D0=B0=D0= =B7=D0=BB=D0=B8=D1=87=D0=B8=D1=82=D0=B5 =D0=B2=D1=80=D1=81=D1=82=D0=B5 =D0= =BF=D0=BE=D1=99=D0=B0 =D1=81=D1=83 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0= =BD=D0=B5, =D0=BA=D0=B0=D0=BE =D1=83 " +#~ "=D1=88=D0=B8=D1=84=D1=80=D0=BE=D0=B2=D0=B0=D1=9A=D1=83." =20 #~ msgid "" #~ "Currently the only valid value for ACTION is 'vm', which builds\n" @@ -1613,15 +3007,13 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "=D0=A2=D1=80=D0=B5=D0=BD=D1=83=D1=82=D0=BD=D0=BE =D1=98=D0=B5=D0=B4=D0= =B8=D0=BD=D0=B0 =D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BD=D0=B0 =D0=B2=D1= =80=D0=B5=D0=B4=D0=BD=D0=BE=D1=81=D1=82 =D0=B7=D0=B0 =D0=A0=D0=90=D0=94=D0= =8A=D0=A3 =D1=98=D0=B5 =E2=80=9Evm=E2=80=9C, =D0=BA=D0=BE=D1=98=D0=B0 =D0= =B3=D1=80=D0=B0=D0=B4=D0=B8\n" #~ "=D0=B2=D0=B8=D1=80=D1=82=D1=83=D0=B5=D0=BB=D0=BD=D1=83 =D0=BC=D0=B0=D1= =88=D0=B8=D0=BD=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D0=B3 =D0=BE=D0=BF=D0=B5=D1= =80=D0=B0=D1=82=D0=B8=D0=B2=D0=BD=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0= =B5=D0=BC=D0=B0.\n" =20 -#~ msgid "~a: extraneous argument~%" -#~ msgstr "~a: =D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8 =D0=B0=D1=80=D0=B3=D1= =83=D0=BC=D0=B5=D0=BD=D1=82~%" - #~ msgid "Guile bindings to libssh" #~ msgstr "=D0=93=D1=83=D0=B8=D0=BB=D0=B5=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE= =D0=B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1=81=D0=B0 =D0=B1=D0=B8= =D0=B1=D0=BB=D0=B1=D1=88-=D0=BE=D0=BC" =20 #~ msgid "" #~ "Guile-SSH is a library that provides access to the SSH protocol for\= n" -#~ "programs written in GNU Guile interpreter. It is a wrapper to the u= nderlying\n" +#~ "programs written in GNU Guile interpreter. It is a wrapper to the " +#~ "underlying\n" #~ "libssh library." #~ msgstr "" #~ "=D0=93=D1=83=D0=B8=D0=BB=D0=B5-=D0=91=D0=A8 =D1=98=D0=B5 =D0=B1=D0=B8= =D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=BA=D0=BE=D1=98=D0=B0= =D0=BE=D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D0=B5 =D0=BF=D1=80= =D0=B8=D1=81=D1=82=D1=83=D0=BF =D0=BF=D1=80=D0=BE=D1=82=D0=BE=D0=BA=D0=BE= =D0=BB=D1=83 =D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D0=B4=D0=BD=D0=B5 =D1=88=D0=BA= =D0=BE=D1=99=D0=BA=D0=B5\n" @@ -1636,7 +3028,8 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0= =B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0= =B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82 #~ " -n, --dry-run show what would be done without actually do= ing it" #~ msgstr "" #~ "\n" -#~ " -n, --dry-run =D0=BF=D0=BE=D0=BA=D0=B0=D0=B7=D1=83=D1=98=D0= =B5 =D1=88=D1=82=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0= =BE =D0=B4=D0=B0 =D1=81=D0=B5 =D1=83=D1=80=D0=B0=D0=B4=D0=B8 =D0=B0 =D0=B4= =D0=B0 =D0=B7=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=BE =D0=BD=D0=B8=D1=88=D1=82= =D0=B0 =D0=BD=D0=B5 =D1=80=D0=B0=D0=B4=D0=B8" +#~ " -n, --dry-run =D0=BF=D0=BE=D0=BA=D0=B0=D0=B7=D1=83=D1=98=D0= =B5 =D1=88=D1=82=D0=B0 =D0=B1=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0= =BE =D0=B4=D0=B0 =D1=81=D0=B5 =D1=83=D1=80=D0=B0=D0=B4=D0=B8 =D0=B0 =D0=B4= =D0=B0 =D0=B7=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=BE " +#~ "=D0=BD=D0=B8=D1=88=D1=82=D0=B0 =D0=BD=D0=B5 =D1=80=D0=B0=D0=B4=D0=B8= " =20 #~ msgid "Yeah..." #~ msgstr "=D0=94=D0=B0..." @@ -1646,15 +3039,20 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "match to a specified pattern. By default, grep prints the matching\= n" #~ "lines." #~ msgstr "" -#~ "=D0=9D=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B0 =D0=B3=D1=80=D0=B5=D0=BF = =D0=BF=D1=80=D0=B5=D1=82=D1=80=D0=B0=D0=B6=D1=83=D1=98=D0=B5 =D1=98=D0=B5= =D0=B4=D0=BD=D1=83 =D0=B8=D0=BB=D0=B8 =D0=B2=D0=B8=D1=88=D0=B5 =D1=83=D0=BB= =D0=B0=D0=B7=D0=BD=D0=B8=D1=85 =D0=B4=D0=B0=D1=82=D0=BE=D0=BE=D1=82=D0=B5= =D0=BA=D0=B0 =D0=B7=D0=B0 =D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B8=D0=BC=D0=B0= =D0=BA=D0=BE=D1=98=D0=B8\n" -#~ "=D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B5 =D0=BF=D0=BE=D0=BA=D0=BB=D0=B0=D0= =BF=D0=B0=D1=9A=D0=B5 =D1=81=D0=B0 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0=B5=D0= =BD=D0=B8=D0=BC =D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D0=BE=D0=BC. =D0=9F= =D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=B8, =D0=B3=D1=80=D0=B5=D0=BF =D0= =B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D0=BF=D0=BE=D0=BA=D0=BB=D0= =BE=D0=BF=D1=99=D0=B5=D0=BD=D0=B5\n" +#~ "=D0=9D=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B0 =D0=B3=D1=80=D0=B5=D0=BF = =D0=BF=D1=80=D0=B5=D1=82=D1=80=D0=B0=D0=B6=D1=83=D1=98=D0=B5 =D1=98=D0=B5= =D0=B4=D0=BD=D1=83 =D0=B8=D0=BB=D0=B8 =D0=B2=D0=B8=D1=88=D0=B5 =D1=83=D0=BB= =D0=B0=D0=B7=D0=BD=D0=B8=D1=85 =D0=B4=D0=B0=D1=82=D0=BE=D0=BE=D1=82=D0=B5= =D0=BA=D0=B0 =D0=B7=D0=B0 =D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B8=D0=BC=D0=B0= " +#~ "=D0=BA=D0=BE=D1=98=D0=B8\n" +#~ "=D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B5 =D0=BF=D0=BE=D0=BA=D0=BB=D0=B0=D0= =BF=D0=B0=D1=9A=D0=B5 =D1=81=D0=B0 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0=B5=D0= =BD=D0=B8=D0=BC =D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D0=BE=D0=BC. =D0=9F= =D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=B8, =D0=B3=D1=80=D0=B5=D0=BF =D0= =B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 " +#~ "=D0=BF=D0=BE=D0=BA=D0=BB=D0=BE=D0=BF=D1=99=D0=B5=D0=BD=D0=B5\n" #~ "=D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B5." =20 #~ msgid "" #~ "Sed (stream editor) isn't really a true text editor or text processo= r.\n" -#~ "Instead, it is used to filter text, i.e., it takes text input and pe= rforms\n" -#~ "some operation (or set of operations) on it and outputs the modified= text.\n" -#~ "Sed is typically used for extracting part of a file using pattern ma= tching or\n" +#~ "Instead, it is used to filter text, i.e., it takes text input and " +#~ "performs\n" +#~ "some operation (or set of operations) on it and outputs the modified= " +#~ "text.\n" +#~ "Sed is typically used for extracting part of a file using pattern " +#~ "matching or\n" #~ "substituting multiple occurrences of a string within a file." #~ msgstr "" #~ "=D0=A1=D0=B5=D0=B4 (=D1=83=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=87= =D0=BF=D1=80=D0=BE=D1=82=D0=BE=D0=BA=D0=B0) =D0=BD=D0=B8=D1=98=D0=B5 =D1= =81=D1=82=D0=B2=D0=B0=D1=80=D0=BD=D0=BE =D0=BF=D1=80=D0=B0=D0=B2=D0=B8 =D1= =83=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=87 =D0=B8=D0=BB=D0=B8 =D0=BE=D0= =B1=D1=80=D0=B0=D1=92=D0=B8=D0=B2=D0=B0=D1=87 =D1=82=D0=B5=D0=BA=D1=81=D1= =82=D0=B0.\n" @@ -1666,13 +3064,18 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ msgid "" #~ "The Tar program provides the ability to create tar archives, as well= as\n" #~ "various other kinds of manipulation. For example, you can use Tar o= n\n" -#~ "previously created archives to extract files, to store additional fi= les, or\n" +#~ "previously created archives to extract files, to store additional fi= les, " +#~ "or\n" #~ "to update or list files which were already stored.\n" #~ "\n" -#~ "Initially, tar archives were used to store files conveniently on mag= netic\n" -#~ "tape. The name \"Tar\" comes from this use; it stands for tape arch= iver.\n" -#~ "Despite the utility's name, Tar can direct its output to available d= evices,\n" -#~ "files, or other programs (using pipes), it can even access remote de= vices or\n" +#~ "Initially, tar archives were used to store files conveniently on " +#~ "magnetic\n" +#~ "tape. The name \"Tar\" comes from this use; it stands for tape " +#~ "archiver.\n" +#~ "Despite the utility's name, Tar can direct its output to available " +#~ "devices,\n" +#~ "files, or other programs (using pipes), it can even access remote de= vices " +#~ "or\n" #~ "files (as archives)." #~ msgstr "" #~ "=D0=9F=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC =D0=A2=D0=B0=D1=80 =D0=BE= =D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D0=B5 =D1=81=D0=BF=D0=BE= =D1=81=D0=BE=D0=B1=D0=BD=D0=BE=D1=81=D1=82 =D1=81=D1=82=D0=B2=D0=B0=D1=80= =D0=B0=D1=9A=D0=B0 =D1=82=D0=B0=D1=80 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0= , =D0=BA=D0=B0=D0=BE =D0=B8 =D1=80=D0=B0=D0=B7=D0=BD=D0=B5 =D0=B4=D1=80=D1= =83=D0=B3=D0=B5\n" @@ -1682,16 +3085,20 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "\n" #~ "=D0=9D=D0=B0 =D0=BF=D0=BE=D1=87=D0=B5=D1=82=D0=BA=D1=83, =D1=82=D0=B0= =D1=80 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B5 =D1=81=D1=83 =D0=B1=D0=B8=D0=BB= =D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D0=BD=D0=B5 =D0=B7=D0=B0= =D0=BF=D1=80=D0=B8=D0=B3=D0=BE=D0=B4=D0=BD=D0=BE =D1=87=D1=83=D0=B2=D0=B0= =D1=9A=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=BD=D0=B0= \n" #~ "=D0=BC=D0=B0=D0=B3=D0=BD=D0=B5=D1=82=D1=81=D0=BA=D0=B8=D0=BC =D1=82=D1= =80=D0=B0=D0=BA=D0=B0=D0=BC=D0=B0. =D0=9D=D0=B0=D0=B7=D0=B8=D0=B2 =E2=80=9E= =D0=A2=D0=B0=D1=80=E2=80=9C =D1=98=D0=B5 =D0=BD=D0=B0=D1=81=D1=82=D0=B0=D0= =BE =D0=B8=D0=B7 =D1=82=D0=B0=D0=BA=D0=B2=D0=B5 =D1=83=D0=BF=D0=BE=D1=82=D1= =80=D0=B5=D0=B1=D0=B5; =D0=B8 =D0=B7=D0=BD=D0=B0=D1=87=D0=B8\n" -#~ "=D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D1=80 =D1=82=D1=80=D0=B0=D0=BA=D0= =B0. =D0=91=D0=B5=D0=B7 =D0=BE=D0=B1=D0=B7=D0=B8=D1=80=D0=B0 =D0=BD=D0=B0= =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB= =D0=B0, =D0=A2=D0=B0=D1=80 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=B4=D0=B0 =D1=83=D1= =81=D0=BF=D0=B5=D1=80=D0=B8 =D1=81=D0=B2=D0=BE=D1=98 =D0=B8=D0=B7=D0=BB=D0= =B0=D0=B7\n" -#~ "=D0=BA=D0=B0 =D0=B4=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BD=D0=B8=D0=BC = =D1=83=D1=80=D0=B5=D1=92=D0=B0=D1=98=D0=B8=D0=BC=D0=B0, =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0=B0, =D0=B8=D0=BB=D0=B8 =D0=B4=D1=80= =D1=83=D0=B3=D0=B8=D0=BC =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B8= =D0=BC=D0=B0 (=D1=83=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BE=D0=BC =D1=81= =D0=BF=D0=BE=D1=98=D0=BA=D0=B8)\n" +#~ "=D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D1=80 =D1=82=D1=80=D0=B0=D0=BA=D0= =B0. =D0=91=D0=B5=D0=B7 =D0=BE=D0=B1=D0=B7=D0=B8=D1=80=D0=B0 =D0=BD=D0=B0= =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB= =D0=B0, =D0=A2=D0=B0=D1=80 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=B4=D0=B0 =D1=83=D1= =81=D0=BF=D0=B5=D1=80=D0=B8 =D1=81=D0=B2=D0=BE=D1=98 " +#~ "=D0=B8=D0=B7=D0=BB=D0=B0=D0=B7\n" +#~ "=D0=BA=D0=B0 =D0=B4=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BD=D0=B8=D0=BC = =D1=83=D1=80=D0=B5=D1=92=D0=B0=D1=98=D0=B8=D0=BC=D0=B0, =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0=B0, =D0=B8=D0=BB=D0=B8 =D0=B4=D1=80= =D1=83=D0=B3=D0=B8=D0=BC =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B8= =D0=BC=D0=B0 (=D1=83=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BE=D0=BC " +#~ "=D1=81=D0=BF=D0=BE=D1=98=D0=BA=D0=B8)\n" #~ "=D1=87=D0=B0=D0=BA =D0=BC=D0=BE=D0=B6=D0=B5 =D0=B8 =D0=B4=D0=B0 =D0=BF= =D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF=D0=B8 =D1=83=D0=B4=D0=B0=D1=99=D0=B5= =D0=BD=D0=B8=D0=BC =D1=83=D1=80=D0=B5=D1=92=D0=B0=D1=98=D0=B8=D0=BC=D0=B0= =D0=B8=D0=BB=D0=B8 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC= =D0=B0 (=D0=BA=D0=B0=D0=BE =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D0=BC=D0=B0= )." =20 #~ msgid "" #~ "GNU Patch takes a patch file containing a difference listing produce= d by\n" -#~ "the diff program and applies those differences to one or more origin= al files,\n" +#~ "the diff program and applies those differences to one or more origin= al " +#~ "files,\n" #~ "producing patched versions." #~ msgstr "" -#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=B7=D0=B0=D0=BA=D1=80=D0=BF=D0= =B0 =D1=83=D0=B7=D0=B8=D0=BC=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0= =BA=D1=83 =D0=B7=D0=B0=D0=BA=D1=80=D0=BF=D0=B5 =D0=BA=D0=BE=D1=98=D0=B0 =D1= =81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=B0=D0=BA =D1= =80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0= =B2=D0=B5=D0=B4=D0=B5=D0=BD\n" +#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=B7=D0=B0=D0=BA=D1=80=D0=BF=D0= =B0 =D1=83=D0=B7=D0=B8=D0=BC=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0= =BA=D1=83 =D0=B7=D0=B0=D0=BA=D1=80=D0=BF=D0=B5 =D0=BA=D0=BE=D1=98=D0=B0 =D1= =81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=B0=D0=BA =D1= =80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 " +#~ "=D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD\n" #~ "=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BE=D0=BC =D0=B7=D0=B0 = =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B5 (diff) =D0=B8 =D0=BF=D1=80=D0=B8= =D0=BC=D0=B5=D1=9A=D1=83=D1=98=D0=B5 =D1=82=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB= =D0=B8=D0=BA=D0=B5 =D0=BD=D0=B0 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1=98 =D0=B8= =D0=BB=D0=B8 =D0=B2=D0=B8=D1=88=D0=B5\n" #~ "=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=B8=D1=85 =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D0=B0, =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1= =83=D1=9B=D0=B8 =D0=BF=D1=80=D0=B8=D0=BA=D1=80=D0=BF=D1=99=D0=B5=D0=BD=D0= =B0 =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B0." =20 @@ -1699,24 +3106,35 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "GNU Diffutils is a package of several programs related to finding\n" #~ "differences between files.\n" #~ "\n" -#~ "Computer users often find occasion to ask how two files differ. Perh= aps one\n" -#~ "file is a newer version of the other file. Or maybe the two files st= arted out\n" +#~ "Computer users often find occasion to ask how two files differ. Perh= aps " +#~ "one\n" +#~ "file is a newer version of the other file. Or maybe the two files st= arted " +#~ "out\n" #~ "as identical copies but were changed by different people.\n" #~ "\n" -#~ "You can use the diff command to show differences between two files, = or each\n" -#~ "corresponding file in two directories. diff outputs differences betw= een files\n" +#~ "You can use the diff command to show differences between two files, = or " +#~ "each\n" +#~ "corresponding file in two directories. diff outputs differences betw= een " +#~ "files\n" #~ "line by line in any of several formats, selectable by command line\n= " -#~ "options. This set of differences is often called a =E2=80=98diff=E2=80= =99 or =E2=80=98patch=E2=80=99. For\n" +#~ "options. This set of differences is often called a =E2=80=98diff=E2=80= =99 or =E2=80=98patch=E2=80=99. " +#~ "For\n" #~ "files that are identical, diff normally produces no output; for\n" -#~ "binary (non-text) files, diff normally reports only that they are di= fferent.\n" +#~ "binary (non-text) files, diff normally reports only that they are " +#~ "different.\n" #~ "\n" -#~ "You can use the cmp command to show the offsets and line numbers whe= re two\n" -#~ "files differ. cmp can also show all the characters that differ betwe= en the\n" +#~ "You can use the cmp command to show the offsets and line numbers whe= re " +#~ "two\n" +#~ "files differ. cmp can also show all the characters that differ betwe= en " +#~ "the\n" #~ "two files, side by side.\n" #~ "\n" -#~ "You can use the diff3 command to show differences among three files.= When two\n" -#~ "people have made independent changes to a common original, diff3 can= report\n" -#~ "the differences between the original and the two changed versions, a= nd can\n" +#~ "You can use the diff3 command to show differences among three files.= When " +#~ "two\n" +#~ "people have made independent changes to a common original, diff3 can= " +#~ "report\n" +#~ "the differences between the original and the two changed versions, a= nd " +#~ "can\n" #~ "produce a merged file that contains both persons' changes together w= ith\n" #~ "warnings about conflicts.\n" #~ "\n" @@ -1726,32 +3144,43 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D0=B8=D0=B7=D0=BC=D0=B5=D1= =92=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0.\n" #~ "\n" #~ "=D0=9A=D0=BE=D1=80=D0=B8=D1=81=D0=BD=D0=B8=D1=86=D0=B8 =D1=80=D0=B0=D1= =87=D1=83=D0=BD=D0=B0=D1=80=D0=B0 =D1=87=D0=B5=D1=81=D1=82=D0=BE =D0=B6=D0= =B5=D0=BB=D0=B5 =D0=B4=D0=B0 =D0=B7=D0=BD=D0=B0=D1=98=D1=83 =D1=83 =D1=87= =D0=B5=D0=BC=D1=83 =D1=81=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D1=83= =D1=98=D1=83 =D0=B4=D0=B2=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA= =D0=B5.\n" -#~ "=D0=9C=D0=BE=D0=B6=D0=B4=D0=B0 =D1=98=D0=B5 =D1=98=D0=B5=D0=B4=D0=BD= =D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=BD=D0=BE=D0=B2= =D0=B8=D1=98=D0=B5 =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5 =D0=BE=D0=BD=D0=B5= =D0=B4=D1=80=D1=83=D0=B3=D0=B5. =D0=98=D0=BB=D0=B8 =D1=81=D1=83 =D0=BC=D0= =BE=D0=B6=D0=B4=D0=B0 =D0=BE=D0=B1=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0= =B5=D0=BA=D0=B5\n" +#~ "=D0=9C=D0=BE=D0=B6=D0=B4=D0=B0 =D1=98=D0=B5 =D1=98=D0=B5=D0=B4=D0=BD= =D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=BD=D0=BE=D0=B2= =D0=B8=D1=98=D0=B5 =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B5 =D0=BE=D0=BD=D0=B5= =D0=B4=D1=80=D1=83=D0=B3=D0=B5. =D0=98=D0=BB=D0=B8 =D1=81=D1=83 =D0=BC=D0= =BE=D0=B6=D0=B4=D0=B0 =D0=BE=D0=B1=D0=B5 " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5\n" #~ "=D0=B7=D0=B0=D0=BF=D0=BE=D1=87=D0=B5=D1=82=D0=B5 =D0=BA=D0=B0=D0=BE = =D0=B8=D1=81=D1=82=D0=BE=D0=B2=D0=B5=D1=82=D0=BD=D0=B8 =D1=83=D0=BC=D0=BD= =D0=BE=D1=88=D1=86=D0=B8 =D0=B0=D0=BB=D0=B8 =D1=81=D1=83 =D0=B8=D1=85 =D0= =B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=D0=B5 =D0=B4=D1=80=D1=83=D0=B3=D0= =B0=D1=87=D0=B8=D1=98=D0=B5 =D0=BE=D1=81=D0=BE=D0=B1=D0=B5.\n" #~ "\n" -#~ "=D0=9C=D0=BE=D0=B6=D0=B5=D1=82=D0=B5 =D0=B4=D0=B0 =D0=BA=D0=BE=D1=80= =D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1= =D1=83 =E2=80=9Ediff=E2=80=9C =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BA=D0=B0=D0=B6= =D0=B5=D1=82=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B5 =D0=B8=D0=B7= =D0=BC=D0=B5=D1=92=D1=83 =D0=B4=D0=B2=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82= =D0=B5=D0=BA=D0=B5\n" -#~ "=D0=B8=D0=BB=D0=B8 =D1=81=D0=B2=D0=B0=D0=BA=D1=83 =D0=BE=D0=B4=D0=B3= =D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D1=83 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D1=83 =D1=83 =D0=B4=D0=B2=D0=B0 =D0=B4=D0=B8=D1=80= =D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC=D0=B0. =D0=B4=D0=B8= =D1=84=D1=84 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=80=D0=B0= =D0=B7=D0=BB=D0=B8=D0=BA=D0=B5\n" +#~ "=D0=9C=D0=BE=D0=B6=D0=B5=D1=82=D0=B5 =D0=B4=D0=B0 =D0=BA=D0=BE=D1=80= =D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1= =D1=83 =E2=80=9Ediff=E2=80=9C =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BA=D0=B0=D0=B6= =D0=B5=D1=82=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B5 =D0=B8=D0=B7= =D0=BC=D0=B5=D1=92=D1=83 =D0=B4=D0=B2=D0=B5 " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5\n" +#~ "=D0=B8=D0=BB=D0=B8 =D1=81=D0=B2=D0=B0=D0=BA=D1=83 =D0=BE=D0=B4=D0=B3= =D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D1=83 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D1=83 =D1=83 =D0=B4=D0=B2=D0=B0 =D0=B4=D0=B8=D1=80= =D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC=D0=B0. =D0=B4=D0=B8= =D1=84=D1=84 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 " +#~ "=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B5\n" #~ "=D0=B8=D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0= =B5=D0=BA=D0=B0 =D1=80=D0=B5=D0=B4 =D0=BF=D0=BE =D1=80=D0=B5=D0=B4 =D1=83= =D0=B1=D0=B8=D0=BB=D0=BE =D0=BA=D0=BE=D0=BC =D0=BE=D0=B4 =D0=BD=D0=B5=D0= =BA=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE =D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D0=B0, =D0= =B1=D0=B8=D1=80=D0=B0=D1=9A=D0=B5=D0=BC =D0=BE=D0=BF=D1=86=D0=B8=D1=98=D0= =B0\n" #~ "=D0=BB=D0=B8=D0=BD=D0=B8=D1=98=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0= =B1=D0=B8. =D0=9E=D0=B2=D0=B0=D1=98 =D1=81=D0=BA=D1=83=D0=BF =D1=80=D0=B0= =D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D1=81=D0=B5 =D1=87=D0=B5=D1=81=D1=82=D0=BE= =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0 =E2=80=9Ediff=E2=80=9C =D0=B8=D0=BB= =D0=B8 =E2=80=9Epatch=E2=80=9C. =D0=97=D0=B0\n" -#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D0=BA=D0=BE=D1=98=D0= =B5 =D1=81=D1=83 =D0=B8=D1=81=D1=82=D0=B5, =D0=B4=D0=B8=D1=84=D1=84 =D0=BE= =D0=B1=D0=B8=D1=87=D0=BD=D0=BE =D0=BD=D0=B5 =D0=B4=D0=B0=D1=98=D0=B5 =D1=80= =D0=B5=D0=B7=D1=83=D0=BB=D1=82=D0=B0=D1=82; =D0=B7=D0=B0 =D0=B8=D0=B7=D0=B2= =D1=80=D1=88=D0=BD=D0=B5 (=D0=BD=D0=B5-=D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83= =D0=B0=D0=BB=D0=BD=D0=B5)\n" +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D0=BA=D0=BE=D1=98=D0= =B5 =D1=81=D1=83 =D0=B8=D1=81=D1=82=D0=B5, =D0=B4=D0=B8=D1=84=D1=84 =D0=BE= =D0=B1=D0=B8=D1=87=D0=BD=D0=BE =D0=BD=D0=B5 =D0=B4=D0=B0=D1=98=D0=B5 =D1=80= =D0=B5=D0=B7=D1=83=D0=BB=D1=82=D0=B0=D1=82; =D0=B7=D0=B0 =D0=B8=D0=B7=D0=B2= =D1=80=D1=88=D0=BD=D0=B5 (=D0=BD=D0=B5-" +#~ "=D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=B5)\n" #~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5, =D0=B4=D0=B8=D1=84= =D1=84 =D0=BE=D0=B1=D0=B8=D1=87=D0=BD=D0=BE =D0=B8=D0=B7=D0=B2=D0=B5=D1=88= =D1=82=D0=B0=D0=B2=D0=B0 =D1=81=D0=B0=D0=BC=D0=BE =D0=BE =D1=82=D0=BE=D0=BC= =D0=B5 =D0=B4=D0=B0 =D1=81=D0=B5 =D0=BE=D0=BD=D0=B5 =D1=80=D0=B0=D0=B7=D0= =BB=D0=B8=D0=BA=D1=83=D1=98=D1=83.\n" #~ "\n" #~ "\n" #~ "=D0=9C=D0=BE=D0=B6=D0=B5=D1=82=D0=B5 =D0=B4=D0=B0 =D0=BA=D0=BE=D1=80= =D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1= =D1=83 =E2=80=9Ecmp=E2=80=9C =D0=B4=D0=B0 =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0= =B6=D0=B5=D1=82=D0=B5 =D0=BF=D0=BE=D0=BC=D0=B5=D1=80=D0=B0=D1=98=D0=B5 =D0= =B8 =D0=B1=D1=80=D0=BE=D1=98=D0=B5=D0=B2=D0=B5 =D1=80=D0=B5=D0=B4=D0=BE=D0= =B2=D0=B0\n" -#~ "=D0=B3=D0=B4=D0=B5 =D1=81=D0=B5 =D0=B4=D0=B2=D0=B5 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D1=83= =D1=98=D1=83. =D1=86=D0=BC=D0=BF =D0=BC=D0=BE=D0=B6=D0=B5 =D1=82=D0=B0=D0= =BA=D0=BE=D1=92=D0=B5 =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BA=D0=B0=D0=B6=D0=B5 =D1= =81=D0=B2=D0=B5 =D0=B7=D0=BD=D0=B0=D0=BA=D0=BE=D0=B2=D0=B5 =D0=BA=D0=BE=D1= =98=D0=B8\n" +#~ "=D0=B3=D0=B4=D0=B5 =D1=81=D0=B5 =D0=B4=D0=B2=D0=B5 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D1=83= =D1=98=D1=83. =D1=86=D0=BC=D0=BF =D0=BC=D0=BE=D0=B6=D0=B5 =D1=82=D0=B0=D0= =BA=D0=BE=D1=92=D0=B5 =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BA=D0=B0=D0=B6=D0=B5 =D1= =81=D0=B2=D0=B5 =D0=B7=D0=BD=D0=B0=D0=BA=D0=BE=D0=B2=D0=B5 " +#~ "=D0=BA=D0=BE=D1=98=D0=B8\n" #~ "=D1=81=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D1=83=D1=98=D1=83 = =D0=B8=D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D0=B4=D0=B2=D0=B5 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B5, =D1=98=D0=B5=D0=B4=D0=B0=D0=BD =D0=BF=D0=BE= =D1=80=D0=B5=D0=B4 =D0=B4=D1=80=D1=83=D0=B3=D0=BE=D0=B3.\n" #~ "\n" -#~ "=D0=9C=D0=BE=D0=B6=D0=B5=D1=82=D0=B5 =D0=B4=D0=B0 =D0=BA=D0=BE=D1=80= =D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1= =D1=83 =E2=80=9Ediff3=E2=80=9C =D0=B4=D0=B0 =D0=BF=D1=80=D0=B8=D0=BA=D0=B0= =D0=B6=D0=B5=D1=82=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B5 =D0=B8= =D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D1=82=D1=80=D0=B8 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=B5.\n" -#~ "=D0=9A=D0=B0=D0=B4=D0=B0 =D0=B4=D0=B2=D0=B0 =D0=BA=D0=BE=D1=80=D0=B8= =D1=81=D0=BD=D0=B8=D0=BA=D0=B0 =D0=BD=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B5= =D0=BD=D0=B5=D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=BD=D0=B5 =D0=B8=D0=B7=D0=BC= =D0=B5=D0=BD=D0=B5 =D1=83 =D0=B7=D0=B0=D1=98=D0=B5=D0=B4=D0=BD=D0=B8=D1=87= =D0=BA=D0=BE=D0=BC =D0=BE=D1=80=D0=B8=D0=B3=D0=B8=D0=BD=D0=B0=D0=BB=D1=83= , =D0=B4=D0=B8=D1=84=D1=843\n" -#~ "=D0=BC=D0=BE=D0=B6=D0=B5 =D0=B4=D0=B0 =D0=B8=D0=B7=D0=B2=D0=B5=D1=81= =D1=82=D0=B8 =D0=BE =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0=D0=BC=D0=B0= =D0=B8=D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D0=BE=D1=80=D0=B8=D0=B3=D0=B8=D0=BD= =D0=B0=D0=BB=D0=B0 =D0=B8 =D0=B4=D0=B2=D0=B0 =D0=B8=D0=B7=D0=BC=D0=B5=D1=9A= =D0=B5=D0=BD=D0=B0 =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B0, =D0=B8 =D0=BC=D0= =BE=D0=B6=D0=B5 =D0=B4=D0=B0\n" -#~ "=D0=BD=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B8 =D1=81=D1=82=D0=BE=D0=BF=D1= =99=D0=B5=D0=BD=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D1=83 =D0= =BA=D0=BE=D1=98=D0=B0 =D0=B7=D0=B0=D1=98=D0=B5=D0=B4=D0=BD=D0=BE =D1=81=D0= =B0=D0=B4=D1=80=D0=B6=D0=B8 =D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BE=D0= =B1=D0=B5 =D0=BE=D1=81=D0=BE=D0=B1=D0=B5 =D1=81=D0=B0 =D1=83=D0=BF=D0=BE=D0= =B7=D0=BE=D1=80=D0=B5=D1=9A=D0=B8=D0=BC=D0=B0 =D0=BE =D1=81=D1=83=D0=BA=D0= =BE=D0=B1=D0=B8=D0=BC=D0=B0.\n" +#~ "=D0=9C=D0=BE=D0=B6=D0=B5=D1=82=D0=B5 =D0=B4=D0=B0 =D0=BA=D0=BE=D1=80= =D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1= =D1=83 =E2=80=9Ediff3=E2=80=9C =D0=B4=D0=B0 =D0=BF=D1=80=D0=B8=D0=BA=D0=B0= =D0=B6=D0=B5=D1=82=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B5 =D0=B8= =D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D1=82=D1=80=D0=B8 " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5.\n" +#~ "=D0=9A=D0=B0=D0=B4=D0=B0 =D0=B4=D0=B2=D0=B0 =D0=BA=D0=BE=D1=80=D0=B8= =D1=81=D0=BD=D0=B8=D0=BA=D0=B0 =D0=BD=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B5= =D0=BD=D0=B5=D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=BD=D0=B5 =D0=B8=D0=B7=D0=BC= =D0=B5=D0=BD=D0=B5 =D1=83 =D0=B7=D0=B0=D1=98=D0=B5=D0=B4=D0=BD=D0=B8=D1=87= =D0=BA=D0=BE=D0=BC =D0=BE=D1=80=D0=B8=D0=B3=D0=B8=D0=BD=D0=B0=D0=BB=D1=83= , " +#~ "=D0=B4=D0=B8=D1=84=D1=843\n" +#~ "=D0=BC=D0=BE=D0=B6=D0=B5 =D0=B4=D0=B0 =D0=B8=D0=B7=D0=B2=D0=B5=D1=81= =D1=82=D0=B8 =D0=BE =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0=D0=BC=D0=B0= =D0=B8=D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D0=BE=D1=80=D0=B8=D0=B3=D0=B8=D0=BD= =D0=B0=D0=BB=D0=B0 =D0=B8 =D0=B4=D0=B2=D0=B0 =D0=B8=D0=B7=D0=BC=D0=B5=D1=9A= =D0=B5=D0=BD=D0=B0 =D0=B8=D0=B7=D0=B4=D0=B0=D1=9A=D0=B0, =D0=B8 " +#~ "=D0=BC=D0=BE=D0=B6=D0=B5 =D0=B4=D0=B0\n" +#~ "=D0=BD=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=B8 =D1=81=D1=82=D0=BE=D0=BF=D1= =99=D0=B5=D0=BD=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D1=83 =D0= =BA=D0=BE=D1=98=D0=B0 =D0=B7=D0=B0=D1=98=D0=B5=D0=B4=D0=BD=D0=BE =D1=81=D0= =B0=D0=B4=D1=80=D0=B6=D0=B8 =D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BE=D0= =B1=D0=B5 =D0=BE=D1=81=D0=BE=D0=B1=D0=B5 =D1=81=D0=B0 " +#~ "=D1=83=D0=BF=D0=BE=D0=B7=D0=BE=D1=80=D0=B5=D1=9A=D0=B8=D0=BC=D0=B0 =D0= =BE =D1=81=D1=83=D0=BA=D0=BE=D0=B1=D0=B8=D0=BC=D0=B0.\n" #~ "\n" #~ "=D0=9C=D0=BE=D0=B6=D0=B5=D1=82=D0=B5 =D0=B4=D0=B0 =D0=BA=D0=BE=D1=80= =D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1= =D1=83 =E2=80=9Esdiff=E2=80=9C =D0=B4=D0=B0 =D0=BC=D0=B5=D1=92=D1=83=D0=B4= =D0=B5=D1=98=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=BE =D1=81=D1=82=D0=BE=D0=BF= =D0=B8=D1=82=D0=B5 =D0=B4=D0=B2=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5= =D0=BA=D0=B5." =20 #~ msgid "" #~ "The GNU Find Utilities are the basic directory searching utilities o= f\n" -#~ "the GNU operating system. These programs are typically used in conj= unction\n" -#~ "with other programs to provide modular and powerful directory search= and file\n" +#~ "the GNU operating system. These programs are typically used in " +#~ "conjunction\n" +#~ "with other programs to provide modular and powerful directory search= and " +#~ "file\n" #~ "locating capabilities to other commands.\n" #~ "\n" #~ "The tools supplied with this package are:\n" @@ -1769,13 +3198,15 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "=D0=90=D0=BB=D0=B0=D1=82=D0=B8 =D0=BA=D0=BE=D1=98=D0=B8 =D0=B8=D0=B4= =D1=83 =D1=83=D0=B7 =D0=BE=D0=B2=D0=B0=D1=98 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82= =D1=81=D1=83:\n" #~ "\n" #~ " * find =E2=80=94 =D1=82=D1=80=D0=B0=D0=B6=D0=B8 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D1=85=D0=B8=D1=98=D0=B5=D1=80=D0=B0= =D1=80=D1=85=D0=B8=D1=98=D0=B8 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE= =D1=80=D0=B8=D1=98=D1=83=D0=BC=D0=B0;\n" -#~ " * locate =E2=80=94 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B1=D0=B0=D0=B7= =D0=B0=D0=BC=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BA= =D0=BE=D1=98=D0=B5 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98= =D1=83 =D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D1=83;\n" +#~ " * locate =E2=80=94 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5= =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B1=D0=B0=D0=B7= =D0=B0=D0=BC=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BA= =D0=BE=D1=98=D0=B5 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98= =D1=83 " +#~ "=D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D1=83;\n" #~ " * updatedb =E2=80=94 =D0=BE=D1=81=D0=B2=D0=B5=D0=B6=D0=B0=D0=B2=D0= =B0 =D0=B1=D0=B0=D0=B7=D1=83 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0= =B0 =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0= =B5=D0=BA=D0=B5;\n" #~ " * xargs =E2=80=94 =D0=B3=D1=80=D0=B0=D0=B4=D0=B8 =D1=80=D0=B5=D0=B4= =D0=BE=D0=B2=D0=B5 =D0=B8=D0=B7=D0=B2=D1=80=D1=88=D0=B0=D0=B2=D0=B0=D1=9A= =D0=B0 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B5 =D1=81=D0=B0 =D1=81=D1=82= =D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D1=83=D0=BB=D0=B0= =D0=B7=D0=B0.\n" =20 #~ msgid "" #~ "The GNU Core Utilities are the basic file, shell and text manipulati= on\n" -#~ "utilities of the GNU operating system. These are the core utilities= which\n" +#~ "utilities of the GNU operating system. These are the core utilities= " +#~ "which\n" #~ "are expected to exist on every operating system." #~ msgstr "" #~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BA=D1=99=D1=83=D1=87=D0=BD=D0= =B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=81=D1=83 =D0=BE=D1= =81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B8 =D0=B0=D0=BB=D0=B0=D1=82=D0=B8 =D0=B7=D0= =B0 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=9A=D0=B5 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0=B0, =D1=88=D0=BA=D0=BE=D1=99=D0= =BA=D0=BE=D0=BC\n" @@ -1786,25 +3217,33 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 #~ "Make is a tool which controls the generation of executables and othe= r\n" #~ "non-source files of a program from the program's source files.\n" #~ "\n" -#~ "Make gets its knowledge of how to build your program from a file cal= led the\n" -#~ "makefile, which lists each of the non-source files and how to comput= e it from\n" -#~ "other files. When you write a program, you should write a makefile f= or it, so\n" +#~ "Make gets its knowledge of how to build your program from a file cal= led " +#~ "the\n" +#~ "makefile, which lists each of the non-source files and how to comput= e it " +#~ "from\n" +#~ "other files. When you write a program, you should write a makefile f= or " +#~ "it, so\n" #~ "that it is possible to use Make to build and install the program." #~ msgstr "" -#~ "=D0=9C=D0=B5=D1=98=D0=BA =D1=98=D0=B5 =D0=B0=D0=BB=D0=B0=D1=82 =D0=BA= =D0=BE=D1=98=D0=B8 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0 =D1=81=D1=82= =D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5=D0=BC =D0=B8=D0=B7=D0=B2=D1=80=D1=88= =D0=BD=D0=B8=D1=85 =D0=B8 =D0=B4=D1=80=D1=83=D0=B3=D0=B8=D1=85 =D0=BD=D0=B5= -=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=B8=D1=85 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=B0\n" +#~ "=D0=9C=D0=B5=D1=98=D0=BA =D1=98=D0=B5 =D0=B0=D0=BB=D0=B0=D1=82 =D0=BA= =D0=BE=D1=98=D0=B8 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0 =D1=81=D1=82= =D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5=D0=BC =D0=B8=D0=B7=D0=B2=D1=80=D1=88= =D0=BD=D0=B8=D1=85 =D0=B8 =D0=B4=D1=80=D1=83=D0=B3=D0=B8=D1=85 =D0=BD=D0=B5= -=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=B8=D1=85 " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0\n" #~ "=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B0 =D0=B8=D0=B7 =D0=B8= =D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=B8=D1=85 =D0=B4=D0=B0=D1=82=D0=BE=D1=82= =D0=B5=D0=BA=D0=B0 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B0.\n" #~ "\n" -#~ "=D0=9C=D0=B5=D1=98=D0=BA =D1=81=D0=B0=D0=B7=D0=BD=D0=B0=D1=98=D0=B5 = =D0=BA=D0=B0=D0=BA=D0=BE =D0=B4=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4= =D0=B8 =D0=B2=D0=B0=D1=88 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC =D0=B8= =D0=B7 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D0=B7=D0=B2=D0=B0= =D0=BD=D0=B5 =E2=80=9Emakefile=E2=80=9C, =D0=BA=D0=BE=D1=98=D0=B0\n" -#~ "=D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=81=D0=B2=D0=B0=D0= =BA=D1=83 =D0=BD=D0=B5-=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D1=83 =D0=B4=D0= =B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D1=83 =D0=B8 =D0=BA=D0=B0=D0=BA=D0=BE =D0= =B4=D0=B0 =D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D1=80=D1=87=D1=83=D0=BD=D0=B0 =D0= =B8=D0=B7 =D0=B4=D1=80=D1=83=D0=B3=D0=B8=D1=85 =D0=B4=D0=B0=D1=82=D0=BE=D1= =82=D0=B5=D0=BA=D0=B0.\n" +#~ "=D0=9C=D0=B5=D1=98=D0=BA =D1=81=D0=B0=D0=B7=D0=BD=D0=B0=D1=98=D0=B5 = =D0=BA=D0=B0=D0=BA=D0=BE =D0=B4=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4= =D0=B8 =D0=B2=D0=B0=D1=88 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC =D0=B8= =D0=B7 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D0=B7=D0=B2=D0=B0= =D0=BD=D0=B5 =E2=80=9Emakefile=E2=80=9C, " +#~ "=D0=BA=D0=BE=D1=98=D0=B0\n" +#~ "=D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=81=D0=B2=D0=B0=D0= =BA=D1=83 =D0=BD=D0=B5-=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D1=83 =D0=B4=D0= =B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D1=83 =D0=B8 =D0=BA=D0=B0=D0=BA=D0=BE =D0= =B4=D0=B0 =D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D1=80=D1=87=D1=83=D0=BD=D0=B0 =D0= =B8=D0=B7 =D0=B4=D1=80=D1=83=D0=B3=D0=B8=D1=85 " +#~ "=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0.\n" #~ "=D0=9A=D0=B0=D0=B4=D0=B0 =D0=BF=D0=B8=D1=88=D0=B5=D1=82=D0=B5 =D0=BF= =D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC =D1=82=D1=80=D0=B5=D0=B1=D0=B0 =D0=B4= =D0=B0 =D0=BD=D0=B0=D0=BF=D0=B8=D1=88=D0=B5=D1=82=D0=B5 =D0=B8 =D1=9A=D0=B5= =D0=B3=D0=BE=D0=B2=D1=83 =E2=80=9Emakefile=E2=80=9C =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D1=83, =D1=82=D0=B0=D0=BA=D0=BE\n" #~ "=D0=B4=D0=B0 =D0=B1=D1=83=D0=B4=D0=B5 =D0=BC=D0=BE=D0=B3=D1=83=D1=9B= =D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8=D1=82=D0=B8 =D0=9C=D0=B5= =D1=98=D0=BA =D0=B7=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83= =D0=B8 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B0=D1=86=D0=B8=D1=98=D1=83= =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B0." =20 #~ msgid "" #~ "The GNU Binutils are a collection of binary tools. The main ones ar= e\n" -#~ "`ld' (the GNU linker) and `as' (the GNU assembler). They also inclu= de the\n" +#~ "`ld' (the GNU linker) and `as' (the GNU assembler). They also inclu= de " +#~ "the\n" #~ "BFD (Binary File Descriptor) library, `gprof', `nm', `strip', etc." #~ msgstr "" -#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=B1=D0=B8=D0=BD=D0=BF=D0=BE=D0= =BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=98=D0=B5=D1=81=D1=83 =D1=81=D0=BA=D1= =83=D0=BF =D0=B1=D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D0=B8=D1=85 =D0=B0=D0=BB=D0= =B0=D1=82=D0=B0. =D0=93=D0=BB=D0=B0=D0=B2=D0=BD=D0=B8 =D1=81=D1=83 =E2=80= =9Eld=E2=80=9C (=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=B2=D0=B5=D0=B7=D0=BD=D0= =B8=D0=BA) =D0=B8 =E2=80=9Eas=E2=80=9C (=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0= =B0=D1=81=D0=B5=D0=BC=D0=B1=D0=BB=D0=B5=D1=80). =D0=A3 =D1=9A=D0=B8=D1=85= =D1=82=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D1=81=D0=BF=D0=B0=D0=B4=D0=B0=D1=98= =D1=83 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =E2=80= =9EBFD=E2=80=9C\n" +#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=B1=D0=B8=D0=BD=D0=BF=D0=BE=D0= =BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=98=D0=B5=D1=81=D1=83 =D1=81=D0=BA=D1= =83=D0=BF =D0=B1=D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D0=B8=D1=85 =D0=B0=D0=BB=D0= =B0=D1=82=D0=B0. =D0=93=D0=BB=D0=B0=D0=B2=D0=BD=D0=B8 =D1=81=D1=83 =E2=80= =9Eld=E2=80=9C (=D0=93=D0=BD=D1=83=D0=BE=D0=B2 " +#~ "=D0=B2=D0=B5=D0=B7=D0=BD=D0=B8=D0=BA) =D0=B8 =E2=80=9Eas=E2=80=9C (=D0= =93=D0=BD=D1=83=D0=BE=D0=B2 =D0=B0=D1=81=D0=B5=D0=BC=D0=B1=D0=BB=D0=B5=D1= =80). =D0=A3 =D1=9A=D0=B8=D1=85 =D1=82=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D1=81= =D0=BF=D0=B0=D0=B4=D0=B0=D1=98=D1=83 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE= =D1=82=D0=B5=D0=BA=D0=B0 =E2=80=9EBFD=E2=80=9C\n" #~ "(Binary File Descriptor), =E2=80=9Egprof=E2=80=9C, =E2=80=9Enm=E2=80= =9C, =E2=80=9Estrip=E2=80=9C, =D0=B8=D1=82=D0=B4." =20 #~ msgid "" @@ -1818,48 +3257,66 @@ msgstr "=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D1=80=D0=B0= =D0=B2=D0=B0=D0=BD =D0=B7=D0=BD=D0=B0=D0=BA =D0=B0=D1=80=D1=85=D0=B8=D0=B2= =D0=B5 =D1=83=D0=BD=D1=83=D1=82=D1=80=D0=B0=D1=88=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82 =20 #~ msgid "" #~ "GNU Guile is an implementation of the Scheme programming language, w= ith\n" -#~ "support for many SRFIs, packaged for use in a wide variety of enviro= nments.\n" -#~ "In addition to implementing the R5RS Scheme standard and a large sub= set of\n" +#~ "support for many SRFIs, packaged for use in a wide variety of " +#~ "environments.\n" +#~ "In addition to implementing the R5RS Scheme standard and a large sub= set " +#~ "of\n" #~ "R6RS, Guile includes a module system, full access to POSIX system ca= lls,\n" -#~ "networking support, multiple threads, dynamic linking, a foreign fun= ction\n" +#~ "networking support, multiple threads, dynamic linking, a foreign " +#~ "function\n" #~ "call interface, and powerful string processing." #~ msgstr "" #~ "=D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D1=98=D0=B5 =D0=BF= =D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0= =D0=BC=D1=81=D0=BA=D0=BE=D0=B3 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA=D0=B0 =D0=A8= =D0=B5=D0=BC=D0=B5, =D1=81=D0=B0 =D0=BF=D0=BE=D0=B4=D1=80=D1=88=D0=BA=D0=BE= =D0=BC =D0=B7=D0=B0 =D0=BC=D0=BD=D0=BE=D0=B3=D0=B5\n" #~ "=D0=A1=D0=A0=D0=A4=D0=98-=D0=BE=D0=B2=D0=B5 =D0=B7=D0=B0=D0=BF=D0=B0= =D0=BA=D0=BE=D0=B2=D0=B0=D0=BD =D0=B7=D0=B0 =D0=BA=D0=BE=D1=80=D0=B8=D1=88= =D1=9B=D0=B5=D1=9A=D0=B5 =D1=83 =D1=80=D0=B0=D0=B7=D0=BD=D0=B8=D0=BC =D0=BE= =D0=BA=D1=80=D1=83=D0=B6=D0=B5=D1=9A=D0=B8=D0=BC=D0=B0.\n" #~ "=D0=9A=D0=B0=D0=BE =D0=B4=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA =D0=BF= =D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B5 =D0=A05=D0=A0=D0=A1 =D1=81=D1=82=D0=B0= =D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=B0 =D0=A8=D0=B5=D0=BC=D0=B5 =D0=B8 =D0=B2= =D0=B5=D0=BB=D0=B8=D0=BA=D0=BE=D0=B3 =D0=BF=D0=BE=D0=B4=D1=81=D0=BA=D1=83= =D0=BF=D0=B0 =D0=A06=D0=A0=D0=A1, =D0=93=D1=83=D0=B8=D0=BB=D0=B5\n" -#~ "=D0=BE=D0=B1=D1=83=D1=85=D0=B2=D0=B0=D1=82=D0=B0 =D1=81=D0=B8=D1=81=D1= =82=D0=B5=D0=BC =D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D0=B0, =D0=BF=D0=BE=D1=82=D0= =BF=D1=83=D0=BD =D0=BF=D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF =D1=81=D0=B8=D1= =81=D1=82=D0=B5=D0=BC=D1=81=D0=BA=D0=B8=D0=BC =D0=BF=D0=BE=D0=B7=D0=B8=D0= =B2=D0=B8=D0=BC=D0=B0 =D0=9F=D0=9E=D0=A1=D0=98=D0=9A=D0=A1-=D0=B0, =D0=BF= =D0=BF=D0=BE=D0=B4=D1=80=D1=88=D0=BA=D1=83 =D1=83=D0=BC=D1=80=D0=B5=D0=B6= =D0=B0=D0=B2=D0=B0=D1=9A=D0=B0, =D0=B2=D0=B8=D1=88=D0=B5=D1=81=D1=82=D1=80= =D1=83=D0=BA=D0=B5 =D0=BD=D0=B8=D1=82=D0=B8, =D0=B4=D0=B8=D0=BD=D0=B0=D0=BC= =D0=B8=D1=87=D0=BA=D0=BE =D0=BF=D0=BE=D0=B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0= =D1=9A=D0=B5, =D1=81=D1=83=D1=87=D0=B5=D1=99=D0=B5 =D0=BF=D0=BE=D0=B7=D0=B8= =D0=B2=D0=B0\n" +#~ "=D0=BE=D0=B1=D1=83=D1=85=D0=B2=D0=B0=D1=82=D0=B0 =D1=81=D0=B8=D1=81=D1= =82=D0=B5=D0=BC =D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D0=B0, =D0=BF=D0=BE=D1=82=D0= =BF=D1=83=D0=BD =D0=BF=D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF =D1=81=D0=B8=D1= =81=D1=82=D0=B5=D0=BC=D1=81=D0=BA=D0=B8=D0=BC =D0=BF=D0=BE=D0=B7=D0=B8=D0= =B2=D0=B8=D0=BC=D0=B0 =D0=9F=D0=9E=D0=A1=D0=98=D0=9A=D0=A1-=D0=B0, " +#~ "=D0=BF=D0=BF=D0=BE=D0=B4=D1=80=D1=88=D0=BA=D1=83 =D1=83=D0=BC=D1=80=D0= =B5=D0=B6=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0, =D0=B2=D0=B8=D1=88=D0=B5=D1=81=D1= =82=D1=80=D1=83=D0=BA=D0=B5 =D0=BD=D0=B8=D1=82=D0=B8, =D0=B4=D0=B8=D0=BD=D0= =B0=D0=BC=D0=B8=D1=87=D0=BA=D0=BE =D0=BF=D0=BE=D0=B2=D0=B5=D0=B7=D0=B8=D0= =B2=D0=B0=D1=9A=D0=B5, =D1=81=D1=83=D1=87=D0=B5=D1=99=D0=B5 " +#~ "=D0=BF=D0=BE=D0=B7=D0=B8=D0=B2=D0=B0\n" #~ "=D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=85 =D1=84=D1=83=D0=BD=D0=BA=D1= =86=D0=B8=D1=98=D0=B0, =D0=B8 =D0=BC=D0=BE=D1=9B=D0=BD=D1=83 =D0=BE=D0=B1= =D1=80=D0=B0=D0=B4=D1=83 =D0=BD=D0=B8=D1=81=D0=BA=D0=B5." =20 #~ msgid "" #~ "GNU Guile-Ncurses is a library for the Guile Scheme interpreter that= \n" -#~ "provides functions for creating text user interfaces. The text user= interface\n" -#~ "functionality is built on the ncurses libraries: curses, form, panel= , and\n" +#~ "provides functions for creating text user interfaces. The text user= " +#~ "interface\n" +#~ "functionality is built on the ncurses libraries: curses, form, panel= , " +#~ "and\n" #~ "menu." #~ msgstr "" -#~ "=D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D0=95=D0=BD-=D0=BA= =D1=83=D1=80=D1=81=D0=B8=D1=81 =D1=98=D0=B5 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0 =D0=BF=D1=80=D0=B5=D0=B2=D0=BE= =D0=B4=D0=B8=D0=BE=D1=86=D0=B0 =D0=93=D1=83=D0=BB=D0=B5 =D0=A8=D0=B5=D0=BC= =D0=B5 =D0=BA=D0=BE=D1=98=D0=B0 =D0=BE=D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92= =D1=83=D1=98=D0=B5\n" -#~ "=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D0=B7=D0=B0 =D1=81= =D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5 =D1=82=D0=B5=D0=BA=D1=81=D1=82= =D1=83=D0=B0=D0=BB=D0=BD=D0=BE=D0=B3 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D0=BD= =D0=B8=D1=87=D0=BA=D0=BE=D0=B3 =D1=81=D1=83=D1=87=D0=B5=D1=99=D0=B0. =D0=A4= =D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0=BE=D1=81=D1= =82 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=BE=D0=B3\n" -#~ "=D0=BA=D0=BE=D1=80=D0=B8=D1=81=D0=BD=D0=B8=D1=87=D0=BA=D0=BE=D0=B3 =D1= =81=D1=83=D1=87=D0=B5=D1=99=D0=B0 =D1=98=D0=B5 =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D1=92=D0=B5=D0=BD=D0=B0 =D0=BD=D0=B0 =D0=B5=D0=BD-=D0=BA=D1=83=D1=80=D1= =81=D0=B8=D1=81 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0= =B0=D0=BC=D0=B0: =E2=80=9Ecurses, form,\n" +#~ "=D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D0=95=D0=BD-=D0=BA= =D1=83=D1=80=D1=81=D0=B8=D1=81 =D1=98=D0=B5 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0 =D0=BF=D1=80=D0=B5=D0=B2=D0=BE= =D0=B4=D0=B8=D0=BE=D1=86=D0=B0 =D0=93=D1=83=D0=BB=D0=B5 =D0=A8=D0=B5=D0=BC= =D0=B5 =D0=BA=D0=BE=D1=98=D0=B0 " +#~ "=D0=BE=D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D0=B5\n" +#~ "=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D0=B7=D0=B0 =D1=81= =D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5 =D1=82=D0=B5=D0=BA=D1=81=D1=82= =D1=83=D0=B0=D0=BB=D0=BD=D0=BE=D0=B3 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D0=BD= =D0=B8=D1=87=D0=BA=D0=BE=D0=B3 =D1=81=D1=83=D1=87=D0=B5=D1=99=D0=B0. =D0=A4= =D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0=BE=D1=81=D1= =82 " +#~ "=D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=BE=D0=B3\n= " +#~ "=D0=BA=D0=BE=D1=80=D0=B8=D1=81=D0=BD=D0=B8=D1=87=D0=BA=D0=BE=D0=B3 =D1= =81=D1=83=D1=87=D0=B5=D1=99=D0=B0 =D1=98=D0=B5 =D0=B8=D0=B7=D0=B3=D1=80=D0= =B0=D1=92=D0=B5=D0=BD=D0=B0 =D0=BD=D0=B0 =D0=B5=D0=BD-=D0=BA=D1=83=D1=80=D1= =81=D0=B8=D1=81 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0= =B0=D0=BC=D0=B0: =E2=80=9Ecurses, " +#~ "form,\n" #~ "panel, =D0=B8 menu=E2=80=9C." =20 #~ msgid "" #~ "The GNU package mcron (Mellor's cron) is a 100% compatible replaceme= nt\n" -#~ "for Vixie cron. It is written in pure Guile, and allows configurati= on files\n" -#~ "to be written in scheme (as well as Vixie's original format) for inf= inite\n" -#~ "flexibility in specifying when jobs should be run. Mcron was writte= n by Dale\n" +#~ "for Vixie cron. It is written in pure Guile, and allows configurati= on " +#~ "files\n" +#~ "to be written in scheme (as well as Vixie's original format) for " +#~ "infinite\n" +#~ "flexibility in specifying when jobs should be run. Mcron was writte= n by " +#~ "Dale\n" #~ "Mellor." #~ msgstr "" -#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =E2=80= =9Emcron=E2=80=9C (=D0=9C=D0=B5=D0=BB=D0=BE=D1=80=D0=BE=D0=B2 =D0=BA=D1=80= =D0=BE=D0=BD) =D1=98=D0=B5 100% =D1=81=D0=B0=D0=B3=D0=BB=D0=B0=D1=81=D0=BD= =D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B0 =D0=B7=D0=B0 =D0=92=D0=B8=D0=BA= =D1=81=D0=B8 =D0=BA=D1=80=D0=BE=D0=BD.\n" -#~ "=D0=9D=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD =D1=98=D0=B5 =D1=83 =D1=87= =D0=B8=D1=81=D1=82=D0=BE=D0=BC =D0=93=D1=83=D0=B8=D0=BB=D1=83, =D0=B8 =D0= =B4=D0=BE=D0=BF=D1=83=D1=88=D1=82=D0=B0 =D0=B4=D0=B0 =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B5=D1=88=D0=B0=D0=B2=D0= =B0=D1=9A=D0=B0 =D0=B1=D1=83=D0=B4=D1=83 =D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D0= =B0=D0=BD=D0=B5\n" +#~ "=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =E2=80= =9Emcron=E2=80=9C (=D0=9C=D0=B5=D0=BB=D0=BE=D1=80=D0=BE=D0=B2 =D0=BA=D1=80= =D0=BE=D0=BD) =D1=98=D0=B5 100% =D1=81=D0=B0=D0=B3=D0=BB=D0=B0=D1=81=D0=BD= =D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B0 =D0=B7=D0=B0 =D0=92=D0=B8=D0=BA= =D1=81=D0=B8 " +#~ "=D0=BA=D1=80=D0=BE=D0=BD.\n" +#~ "=D0=9D=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD =D1=98=D0=B5 =D1=83 =D1=87= =D0=B8=D1=81=D1=82=D0=BE=D0=BC =D0=93=D1=83=D0=B8=D0=BB=D1=83, =D0=B8 =D0= =B4=D0=BE=D0=BF=D1=83=D1=88=D1=82=D0=B0 =D0=B4=D0=B0 =D0=B4=D0=B0=D1=82=D0= =BE=D1=82=D0=B5=D0=BA=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B5=D1=88=D0=B0=D0=B2=D0= =B0=D1=9A=D0=B0 =D0=B1=D1=83=D0=B4=D1=83 " +#~ "=D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=B5\n" #~ "=D1=83 =D1=88=D0=B5=D0=BC=D0=B8 (=D0=BA=D0=B0=D0=BE =D0=B8 =D1=83 =D0= =92=D0=B8=D0=BA=D1=81=D0=B8=D1=98=D0=B5=D0=B2=D0=BE=D0=BC =D0=B8=D0=B7=D0= =B2=D0=BE=D1=80=D0=BD=D0=BE=D0=BC =D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D1=83) =D1= =81=D0=B0 =D0=B1=D0=B5=D1=81=D0=BA=D1=80=D0=B0=D1=98=D0=BD=D0=BE=D0=BC =D1= =81=D0=B0=D0=B3=D0=BB=D0=B0=D1=81=D0=BD=D0=BE=D1=88=D1=9B=D1=83 =D1=83\n" #~ "=D0=BD=D0=B0=D0=B2=D0=BE=D1=92=D0=B5=D1=9A=D1=83 =D0=BA=D0=B0=D0=B4=D0= =B0 =D0=BF=D0=BE=D1=81=D0=BB=D0=BE=D0=B2=D0=B8 =D1=82=D1=80=D0=B5=D0=B1=D0= =B0=D1=98=D1=83 =D0=B4=D0=B0 =D1=81=D0=B5 =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D0= =BD=D1=83. =D0=9D=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BE =D0=B3=D0=B0 =D1=98= =D0=B5 =D0=94=D0=B5=D1=98=D0=BB =D0=9C=D0=B5=D0=BB=D0=BE=D1=80." =20 #~ msgid "" #~ "GNU recutils is a set of tools and libraries to access human-editabl= e,\n" -#~ "text-based databases called recfiles. The data is stored as a seque= nce of\n" +#~ "text-based databases called recfiles. The data is stored as a seque= nce " +#~ "of\n" #~ "records, each record containing an arbitrary number of named fields.= " #~ msgstr "" -#~ "=D0=93=D0=BD=D1=83 =D1=80=D0=B5=D0=BA=D1=83=D1=82=D0=B8=D0=BB=D1=81 = =D1=98=D0=B5 =D1=81=D0=BA=D1=83=D0=BF =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=B8= =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0= =D0=BF=D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF =D0=B1=D0=B0=D0=B7=D0=B0=D0=BC= =D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=B7=D0=B0=D1=81= =D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=BC =D0=BD=D0=B0\n" -#~ "=D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83, =D0=B7=D0=B2=D0=B0=D0=BD=D0=B8= =D0=BC =E2=80=9Erecfiles=E2=80=9C =D0=BA=D0=BE=D1=98=D0=B5 =D0=BA=D0=BE=D1= =80=D0=B8=D1=81=D0=BD=D0=B8=D1=86=D0=B8 =D0=BC=D0=BE=D0=B3=D1=83 =D0=B4=D0= =B0 =D0=BC=D0=B5=D1=9A=D0=B0=D1=98=D1=83. =D0=9F=D0=BE=D0=B4=D0=B0=D1=86= =D0=B8 =D1=81=D1=83 =D1=83=D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0=B8=D1=88=D1=82= =D0=B5=D0=BD=D0=B8\n" +#~ "=D0=93=D0=BD=D1=83 =D1=80=D0=B5=D0=BA=D1=83=D1=82=D0=B8=D0=BB=D1=81 = =D1=98=D0=B5 =D1=81=D0=BA=D1=83=D0=BF =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=B8= =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0= =D0=BF=D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF =D0=B1=D0=B0=D0=B7=D0=B0=D0=BC= =D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 " +#~ "=D0=B7=D0=B0=D1=81=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=BC =D0=BD=D0= =B0\n" +#~ "=D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83, =D0=B7=D0=B2=D0=B0=D0=BD=D0=B8= =D0=BC =E2=80=9Erecfiles=E2=80=9C =D0=BA=D0=BE=D1=98=D0=B5 =D0=BA=D0=BE=D1= =80=D0=B8=D1=81=D0=BD=D0=B8=D1=86=D0=B8 =D0=BC=D0=BE=D0=B3=D1=83 =D0=B4=D0= =B0 =D0=BC=D0=B5=D1=9A=D0=B0=D1=98=D1=83. =D0=9F=D0=BE=D0=B4=D0=B0=D1=86= =D0=B8 =D1=81=D1=83 " +#~ "=D1=83=D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0=B8=D1=88=D1=82=D0=B5=D0=BD=D0= =B8\n" #~ "=D0=BA=D0=B0=D0=BE =D0=BD=D0=B8=D0=B7 =D1=81=D0=BD=D0=B8=D0=BC=D0=B0= =D0=BA=D0=B0, =D1=81=D0=B2=D0=B0=D0=BA=D0=B8 =D1=81=D0=BD=D0=B8=D0=BC=D0=B0= =D0=BA =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8 =D0=BE=D0=B4=D0=B3=D0=BE=D0=B2= =D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D0=B8 =D0=B1=D1=80=D0=BE=D1=98 =D0=B8= =D0=BC=D0=B5=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D1=85 =D0=BF=D0=BE=D1=99= =D0=B0." =20 #~ msgid "profile `~a' does not exist~%" diff --git a/po/guix/vi.po b/po/guix/vi.po index 2ef51aa..f5a0156 100644 --- a/po/guix/vi.po +++ b/po/guix/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.8.1\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2015-01-26 23:51+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2015-01-28 07:59+0700\n" "Last-Translator: Tr=E1=BA=A7n Ng=E1=BB=8Dc Qu=C3=A2n \n" "Language-Team: Vietnamese \n= " @@ -20,61 +20,163 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Generator: Poedit 1.5.5\n" =20 -#: gnu/packages.scm:78 +#: gnu/packages.scm:76 #, scheme-format msgid "~a: patch not found" msgstr "~a: kh=C3=B4ng t=C3=ACm th=E1=BA=A5y mi=E1=BA=BFng v=C3=A1" =20 -#: gnu/packages.scm:89 +#: gnu/packages.scm:87 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "kh=C3=B4ng th=E1=BB=83 t=C3=ACm th=E1=BA=A5y ph=E1=BA=A7n nh=E1=BB= =8B ph=C3=A2n m=E1=BB=93i =E2=80=9C~a=E2=80=9D cho h=E1=BB=87 th=E1=BB=91= ng =E2=80=9C~a=E2=80=9D" =20 -#: gnu/packages.scm:141 +#: gnu/packages.scm:139 #, scheme-format msgid "cannot access `~a': ~a~%" msgstr "kh=C3=B4ng th=E1=BB=83 truy c=E1=BA=ADp =E2=80=9C~a=E2=80=9D: ~a= ~%" =20 -#: gnu/packages.scm:372 +#: gnu/packages.scm:327 #, scheme-format msgid "looking for the latest release of GNU ~a..." msgstr "t=C3=ACm b=E1=BA=A3n ph=C3=A1t h=C3=A0nh m=E1=BB=9Bi nh=E1=BA=A5= t ~a GNU=E2=80=A6" =20 -#: gnu/packages.scm:379 +#: gnu/packages.scm:334 #, scheme-format msgid "~a: note: using ~a but ~a is available upstream~%" msgstr "~a: ghi ch=C3=BA: d=C3=B9ng ~a nh=C6=B0ng ~a th=C3=AC s=E1=BA=B5= n c=C3=B3 tr=C3=AAn th=C6=B0=E1=BB=A3ng ngu=E1=BB=93n~%" =20 -#: gnu/packages.scm:401 guix/scripts/package.scm:306 +#: gnu/packages.scm:356 gnu/packages.scm:391 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "=C4=91=E1=BA=B7c t=E1=BA=A3 g=C3=B3i ch=C6=B0a r=C3=B5 r=C3=A0ng= =E2=80=9C~a'~%" =20 -#: gnu/packages.scm:402 guix/scripts/package.scm:308 +#: gnu/packages.scm:357 gnu/packages.scm:393 #, scheme-format msgid "choosing ~a from ~a~%" msgstr "ch=E1=BB=8Dn ~a t=E1=BB=AB ~a~%" =20 -#: gnu/packages.scm:408 +#: gnu/packages.scm:363 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: g=C3=B3i kh=C3=B4ng t=C3=ACm th=E1=BA=A5y cho phi=C3=AAn b=E1= =BA=A3n ~a~%" =20 -#: gnu/packages.scm:410 +#: gnu/packages.scm:365 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: kh=C3=B4ng hi=E1=BB=83u g=C3=B3i ~%" =20 -#: gnu/system.scm:716 -msgid "system locale lacks a definition" -msgstr "mi=E1=BB=81n =C4=91=E1=BB=8Ba ph=C6=B0=C6=A1ng h=E1=BB=87 th=E1=BB= =91ng thi=E1=BA=BFu m=E1=BB=99t =C4=91=E1=BB=8Bnh ngh=C4=A9a" +#: gnu/packages.scm:381 +#, scheme-format +msgid "package `~a' lacks output `~a'~%" +msgstr "g=C3=B3i =E2=80=9C~a=E2=80=9D thi=E1=BA=BFu k=E1=BA=BFt xu=E1=BA= =A5t =E2=80=9C~a'~%" + +#: gnu/packages.scm:398 +#, scheme-format +msgid "~a: package not found~%" +msgstr "~a: kh=C3=B4ng t=C3=ACm th=E1=BA=A5y g=C3=B3i~%" + +#: gnu/services.scm:527 +#, scheme-format +msgid "no target of type '~a' for service ~s" +msgstr "" + +#: gnu/services.scm:538 gnu/services.scm:599 +#, scheme-format +msgid "more than one target service of type '~a'" +msgstr "" + +#: gnu/services.scm:589 +#, scheme-format +msgid "service of type '~a' not found" +msgstr "" + +#: gnu/system.scm:545 +#, scheme-format +msgid "using a string for file '~a' is deprecated; use 'plain-file' inst= ead~%" +msgstr "" + +#: gnu/system.scm:561 +#, scheme-format +msgid "" +"using a monadic value for '~a' is deprecated; use 'plain-file' instead~= %" +msgstr "" + +#: gnu/system.scm:678 +#, fuzzy, scheme-format +msgid "~a: invalid locale name" +msgstr "~a: s=E1=BB=91 kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87~%" + +#: gnu/system.scm:797 +#, scheme-format +msgid "unrecognized boot parameters for '~a'~%" +msgstr "tham s=E1=BB=91 kh=E1=BB=9Fi =C4=91=E1=BB=99ng kh=C3=B4ng =C4=91= =C6=B0=E1=BB=A3c th=E1=BB=ABa nh=E1=BA=ADn cho =E2=80=9C~a'~%" + +#: gnu/services/shepherd.scm:166 +#, scheme-format +msgid "service '~a' provided more than once" +msgstr "" =20 -#: guix/scripts/build.scm:65 +#: gnu/services/shepherd.scm:181 +#, scheme-format +msgid "service '~a' requires '~a', which is undefined" +msgstr "" + +#: gnu/system/shadow.scm:213 +#, scheme-format +msgid "supplementary group '~a' of user '~a' is undeclared" +msgstr "" + +#: gnu/system/shadow.scm:223 +#, scheme-format +msgid "primary group '~a' of user '~a' is undeclared" +msgstr "" + +#: guix/scripts.scm:52 +#, scheme-format +msgid "invalid argument: ~a~%" +msgstr "=C4=91=E1=BB=91i s=E1=BB=91 kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~= a~%" + +#: guix/scripts.scm:78 guix/scripts/download.scm:97 guix/scripts/gc.scm:= 157 +#: guix/scripts/import/cran.scm:78 guix/scripts/import/elpa.scm:77 +#: guix/scripts/pull.scm:219 guix/scripts/lint.scm:853 +#: guix/scripts/publish.scm:355 +#, scheme-format +msgid "~A: unrecognized option~%" +msgstr "~A: t=C3=B9y ch=E1=BB=8Dn kh=C3=B4ng =C4=91=C6=B0=E1=BB=A3c ch=E1= =BA=A5p nh=E1=BA=ADn~%" + +#: guix/scripts/build.scm:111 #, scheme-format msgid "failed to create GC root `~a': ~a~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A1o g=E1=BB=91c GC =E2=80=9C= ~a=E2=80=9D: ~a~%" =20 -#: guix/scripts/build.scm:102 +#: guix/scripts/build.scm:188 +#, fuzzy, scheme-format +msgid "invalid replacement specification: ~s~%" +msgstr "=C4=91=E1=BA=B7c t=E1=BA=A3 g=C3=B3i ch=C6=B0a r=C3=B5 r=C3=A0ng= =E2=80=9C~a'~%" + +#: guix/scripts/build.scm:236 +msgid "" +"\n" +" --with-source=3DSOURCE\n" +" use SOURCE when building the corresponding pac= kage" +msgstr "" +"\n" +" --with-source=3DM=C3=83_NGU=E1=BB=92N\n" +" d=C3=B9ng m=C3=A3 ngu=E1=BB=93n khi bi=C3=AAn = d=E1=BB=8Bch g=C3=B3i t=C6=B0=C6=A1ng =E1=BB=A9ng" + +#: guix/scripts/build.scm:239 +msgid "" +"\n" +" --with-input=3DPACKAGE=3DREPLACEMENT\n" +" replace dependency PACKAGE by REPLACEMENT" +msgstr "" + +#: guix/scripts/build.scm:264 +#, scheme-format +msgid "transformation '~a' had no effect on ~a~%" +msgstr "" + +#: guix/scripts/build.scm:282 msgid "" "\n" " -L, --load-path=3DDIR prepend DIR to the package module search pat= h" @@ -82,7 +184,7 @@ msgstr "" "\n" " -L, --load-path=3DTM=E1=BB=A4C n=E1=BB=91i th=C3=AAm v=C3=A0o tr=C6= =B0=E1=BB=9Bc =C4=91=C6=B0=E1=BB=9Dng d=E1=BA=ABn =C4=91=E1=BB=83 t=C3=AC= m ki=E1=BA=BFm m=C3=B4-=C4=91un g=C3=B3i" =20 -#: guix/scripts/build.scm:104 +#: guix/scripts/build.scm:284 msgid "" "\n" " -K, --keep-failed keep build tree of failed builds" @@ -90,7 +192,16 @@ msgstr "" "\n" " -K, --keep-failed gi=E1=BB=AF l=E1=BA=A1i c=C3=A2y bi=C3=AAn d=E1= =BB=8Bch c=E1=BB=A7a l=E1=BA=A7n bi=C3=AAn d=E1=BB=8Bch g=E1=BA=B7p l=E1=BB= =97i" =20 -#: guix/scripts/build.scm:106 +#: guix/scripts/build.scm:286 +#, fuzzy +msgid "" +"\n" +" -k, --keep-going keep going when some of the derivations fail" +msgstr "" +"\n" +" -n, --dry-run kh=C3=B4ng bi=C3=AAn d=E1=BB=8Bch d=E1=BA=ABn = xu=E1=BA=A5t" + +#: guix/scripts/build.scm:288 msgid "" "\n" " -n, --dry-run do not build the derivations" @@ -98,7 +209,7 @@ msgstr "" "\n" " -n, --dry-run kh=C3=B4ng bi=C3=AAn d=E1=BB=8Bch d=E1=BA=ABn = xu=E1=BA=A5t" =20 -#: guix/scripts/build.scm:108 +#: guix/scripts/build.scm:290 msgid "" "\n" " --fallback fall back to building when the substituter fai= ls" @@ -106,15 +217,23 @@ msgstr "" "\n" " --roll-back quay l=E1=BA=A1i d=E1=BB=8Bch khi =E2=80=9Csub= stituter=E2=80=9D th=E1=BA=A5t b=E1=BA=A1i" =20 -#: guix/scripts/build.scm:110 +#: guix/scripts/build.scm:292 msgid "" "\n" " --no-substitutes build instead of resorting to pre-built substi= tutes" msgstr "" "\n" -" --no-substitutes bi=C3=AAn d=E1=BB=8Bch thay v=C3=AC nh=E1=BB=9D= v=C3=A0o ph=E1=BA=A7n thay th=E1=BA=BF =C4=91=C6=B0=E1=BB=A3c d=E1=BB=B1= ng tr=C6=B0=E1=BB=9Bc" +" --no-substitutes bi=C3=AAn d=E1=BB=8Bch thay v=C3=AC nh=E1=BB=9D= v=C3=A0o ph=E1=BA=A7n thay th=E1=BA=BF =C4=91=C6=B0=E1=BB=A3c d=E1=BB=B1= ng " +"tr=C6=B0=E1=BB=9Bc" + +#: guix/scripts/build.scm:294 guix/scripts/size.scm:215 +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" fetch substitute from URLS if they are authori= zed" +msgstr "" =20 -#: guix/scripts/build.scm:112 +#: guix/scripts/build.scm:297 msgid "" "\n" " --no-build-hook do not attempt to offload builds via the build= hook" @@ -122,7 +241,7 @@ msgstr "" "\n" " --no-build-hook kh=C3=B4ng c=E1=BB=91 bi=C3=AAn d=E1=BB=8Bch k= h=C3=B4ng t=E1=BA=A3i th=C3=B4ng qua m=C3=B3c bi=C3=AAn d=E1=BB=8Bch" =20 -#: guix/scripts/build.scm:114 +#: guix/scripts/build.scm:299 msgid "" "\n" " --max-silent-time=3DSECONDS\n" @@ -130,17 +249,19 @@ msgid "" msgstr "" "\n" " --max-silent-time=3DGI=C3=82Y\n" -" =C4=91=C3=A1nh d=E1=BA=A5u l=C3=A0 vi=E1=BB=87= c d=E1=BB=8Bch s=E1=BA=BD l=C3=A0 l=E1=BB=97i n=E1=BA=BFu l=C3=A2u h=C6=A1= n s=E1=BB=91 GI=C3=82Y n=C3=A0y" +" =C4=91=C3=A1nh d=E1=BA=A5u l=C3=A0 vi=E1=BB=87= c d=E1=BB=8Bch s=E1=BA=BD l=C3=A0 l=E1=BB=97i n=E1=BA=BFu l=C3=A2u h=C6=A1= n s=E1=BB=91 GI=C3=82Y " +"n=C3=A0y" =20 -#: guix/scripts/build.scm:117 +#: guix/scripts/build.scm:302 msgid "" "\n" " --timeout=3DSECONDS mark the build as failed after SECONDS of ac= tivity" msgstr "" "\n" -" --timeout=3DGI=C3=82Y =C4=91=C3=A1nh d=E1=BA=A5u l=C3=A0 vi=E1= =BB=87c d=E1=BB=8Bch s=E1=BA=BD l=C3=A0 l=E1=BB=97i n=E1=BA=BFu l=C3=A2u = h=C6=A1n s=E1=BB=91 GI=C3=82Y n=C3=A0y" +" --timeout=3DGI=C3=82Y =C4=91=C3=A1nh d=E1=BA=A5u l=C3=A0 vi=E1= =BB=87c d=E1=BB=8Bch s=E1=BA=BD l=C3=A0 l=E1=BB=97i n=E1=BA=BFu l=C3=A2u = h=C6=A1n s=E1=BB=91 GI=C3=82Y " +"n=C3=A0y" =20 -#: guix/scripts/build.scm:119 +#: guix/scripts/build.scm:304 msgid "" "\n" " --verbosity=3DLEVEL use the given verbosity LEVEL" @@ -148,7 +269,13 @@ msgstr "" "\n" " --verbosity=3DM=E1=BB=A8C d=C3=B9ng m=E1=BB=A9c chi ti=E1=BA=BF= t =C4=91=C3=A3 cho" =20 -#: guix/scripts/build.scm:121 +#: guix/scripts/build.scm:306 +msgid "" +"\n" +" --rounds=3DN build N times in a row to detect non-determi= nism" +msgstr "" + +#: guix/scripts/build.scm:308 msgid "" "\n" " -c, --cores=3DN allow the use of up to N CPU cores for the b= uild" @@ -156,7 +283,7 @@ msgstr "" "\n" " -c, --cores=3DN cho d=C3=B9ng =C4=91=E1=BA=BFn N l=C3=B5i CP= U cho c=C3=B4ng vi=E1=BB=87c bi=C3=AAn d=E1=BB=8Bch" =20 -#: guix/scripts/build.scm:123 +#: guix/scripts/build.scm:310 msgid "" "\n" " -M, --max-jobs=3DN allow at most N build jobs" @@ -164,20 +291,21 @@ msgstr "" "\n" " -M, --max-jobs=3DN cho ph=C3=A9p nhi=E1=BB=81u nh=E1=BA=A5t l=C3= =A0 bi=C3=AAn d=E1=BB=8Bch N c=C3=B4ng vi=E1=BB=87c" =20 -#: guix/scripts/build.scm:198 guix/scripts/build.scm:205 +#: guix/scripts/build.scm:410 guix/scripts/build.scm:417 #, scheme-format msgid "not a number: '~a' option argument: ~a~%" msgstr "kh=C3=B4ng ph=E1=BA=A3i l=C3=A0 con s=E1=BB=91: =E2=80=9C~a=E2=80= =9D tham s=E1=BB=91 t=C3=B9y ch=E1=BB=8Dn: ~a~%" =20 -#: guix/scripts/build.scm:224 +#: guix/scripts/build.scm:437 msgid "" "Usage: guix build [OPTION]... PACKAGE-OR-DERIVATION...\n" "Build the given PACKAGE-OR-DERIVATION and return their output paths.\n" msgstr "" "C=C3=A1ch d=C3=B9ng: guix build [T=C3=99Y-CH=E1=BB=8CN]=E2=80=A6 PACKAG= E-OR-DERIVATION=E2=80=A6\n" -"Bi=C3=AAn d=E1=BB=8Bch PACKAGE-OR-DERIVATION =C4=91=C3=A3 cho v=C3=A0 t= r=E1=BA=A3 v=E1=BB=81 =C4=91=C6=B0=E1=BB=9Dng d=E1=BA=ABn k=E1=BA=BFt xu=E1= =BA=A5t c=E1=BB=A7a ch=C3=BAng.\n" +"Bi=C3=AAn d=E1=BB=8Bch PACKAGE-OR-DERIVATION =C4=91=C3=A3 cho v=C3=A0 t= r=E1=BA=A3 v=E1=BB=81 =C4=91=C6=B0=E1=BB=9Dng d=E1=BA=ABn k=E1=BA=BFt xu=E1= =BA=A5t c=E1=BB=A7a " +"ch=C3=BAng.\n" =20 -#: guix/scripts/build.scm:226 +#: guix/scripts/build.scm:439 msgid "" "\n" " -e, --expression=3DEXPR build the package or derivation EXPR evaluat= es to" @@ -185,7 +313,18 @@ msgstr "" "\n" " -e, --expression=3DBTH=E1=BB=A8C bi=C3=AAn d=E1=BB=8Bch g=C3=B3i hay = t=C3=ACm ngu=E1=BB=93n g=E1=BB=91c BTH=E1=BB=A8C l=C6=B0=E1=BB=A3ng gi=C3= =A1 cho" =20 -#: guix/scripts/build.scm:228 +#: guix/scripts/build.scm:441 +#, fuzzy +msgid "" +"\n" +" -f, --file=3DFILE build the package or derivation that the cod= e " +"within\n" +" FILE evaluates to" +msgstr "" +"\n" +" -e, --expression=3DBTH=E1=BB=A8C bi=C3=AAn d=E1=BB=8Bch g=C3=B3i hay = t=C3=ACm ngu=E1=BB=93n g=E1=BB=91c BTH=E1=BB=A8C l=C6=B0=E1=BB=A3ng gi=C3= =A1 cho" + +#: guix/scripts/build.scm:444 msgid "" "\n" " -S, --source build the packages' source derivations" @@ -193,33 +332,31 @@ msgstr "" "\n" " -S, --source bi=C3=AAn d=E1=BB=8Bch ngu=E1=BB=93n g=E1=BB=91= c m=C3=A3 ngu=E1=BB=93n c=E1=BB=A7a g=C3=B3i" =20 -#: guix/scripts/build.scm:230 +#: guix/scripts/build.scm:446 msgid "" "\n" -" -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" +" --sources[=3DTYPE] build source derivations; TYPE may optionall= y be " +"one\n" +" of \"package\", \"all\" (default), or \"transi= tive\"" msgstr "" -"\n" -" -s, --system=3DH=E1=BB=86-TH=E1=BB=90NG c=E1=BB=91 bi=C3=AAn d=E1=BB= =8Bch cho H=E1=BB=86-TH=E1=BB=90NG--v=C3=AD d=E1=BB=A5: \"i686-linux\"" =20 -#: guix/scripts/build.scm:232 +#: guix/scripts/build.scm:449 msgid "" "\n" -" --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" +" -s, --system=3DSYSTEM attempt to build for SYSTEM--e.g., \"i686-li= nux\"" msgstr "" "\n" -" --target=3DB=E1=BB=98_BA bi=C3=AAn d=E1=BB=8Bch ch=C3=A9o cho B= =E1=BB=98 BA--v=C3=AD d=E1=BB=A5: \"armel-linux-gnu\"" +" -s, --system=3DH=E1=BB=86-TH=E1=BB=90NG c=E1=BB=91 bi=C3=AAn d=E1=BB= =8Bch cho H=E1=BB=86-TH=E1=BB=90NG--v=C3=AD d=E1=BB=A5: \"i686-linux\"" =20 -#: guix/scripts/build.scm:234 +#: guix/scripts/build.scm:451 msgid "" "\n" -" --with-source=3DSOURCE\n" -" use SOURCE when building the corresponding pac= kage" +" --target=3DTRIPLET cross-build for TRIPLET--e.g., \"armel-linux= -gnu\"" msgstr "" "\n" -" --with-source=3DM=C3=83_NGU=E1=BB=92N\n" -" d=C3=B9ng m=C3=A3 ngu=E1=BB=93n khi bi=C3=AAn = d=E1=BB=8Bch g=C3=B3i t=C6=B0=C6=A1ng =E1=BB=A9ng" +" --target=3DB=E1=BB=98_BA bi=C3=AAn d=E1=BB=8Bch ch=C3=A9o cho B= =E1=BB=98 BA--v=C3=AD d=E1=BB=A5: \"armel-linux-gnu\"" =20 -#: guix/scripts/build.scm:237 +#: guix/scripts/build.scm:453 msgid "" "\n" " --no-grafts do not graft packages" @@ -227,7 +364,7 @@ msgstr "" "\n" " --no-grafts kh=C3=B4ng g=C3=B3i gh=C3=A9p" =20 -#: guix/scripts/build.scm:239 +#: guix/scripts/build.scm:455 msgid "" "\n" " -d, --derivations return the derivation paths of the given packa= ges" @@ -235,17 +372,24 @@ msgstr "" "\n" " -d, --derivations tr=E1=BA=A3 v=E1=BB=81 c=C3=A1c =C4=91=C6=B0=E1= =BB=9Dng d=E1=BA=ABn ngu=E1=BB=93n g=E1=BB=91c c=E1=BB=A7a c=C3=A1c g=C3=B3= i =C4=91=C3=A3 cho" =20 -#: guix/scripts/build.scm:241 +#: guix/scripts/build.scm:457 +msgid "" +"\n" +" --check rebuild items to check for non-determinism iss= ues" +msgstr "" + +#: guix/scripts/build.scm:459 msgid "" "\n" " -r, --root=3DFILE make FILE a symlink to the result, and regis= ter it\n" " as a garbage collector root" msgstr "" "\n" -" -r, --root=3DT=E1=BA=ACP-TIN t=E1=BA=A1o T=E1=BA=ACP-TIN m=E1=BB=99= t li=C3=AAn k=E1=BA=BFt m=E1=BB=81m =C4=91=E1=BA=BFn k=E1=BA=BFt qu=E1=BA= =A3, v=C3=A0 =C4=91=C4=83ng k=C3=BD n=C3=B3\n" +" -r, --root=3DT=E1=BA=ACP-TIN t=E1=BA=A1o T=E1=BA=ACP-TIN m=E1=BB=99= t li=C3=AAn k=E1=BA=BFt m=E1=BB=81m =C4=91=E1=BA=BFn k=E1=BA=BFt qu=E1=BA= =A3, v=C3=A0 =C4=91=C4=83ng " +"k=C3=BD n=C3=B3\n" " nh=C6=B0 l=C3=A0 b=E1=BB=99 gom r=C3=A1c g=E1=BB= =91c" =20 -#: guix/scripts/build.scm:244 +#: guix/scripts/build.scm:462 msgid "" "\n" " --log-file return the log file names for the given deriva= tions" @@ -253,11 +397,15 @@ msgstr "" "\n" " --log-file tr=E1=BA=A3 v=E1=BB=81 t=C3=AAn c=E1=BB=A7a t=E1= =BA=ADp-tin nh=E1=BA=ADt k=C3=BD cho d=E1=BA=ABn xu=E1=BA=A5t =C4=91=C3=A3= cho" =20 -#: guix/scripts/build.scm:249 guix/scripts/download.scm:53 -#: guix/scripts/package.scm:467 guix/scripts/gc.scm:58 -#: guix/scripts/hash.scm:55 guix/scripts/pull.scm:81 -#: guix/scripts/substitute-binary.scm:566 guix/scripts/system.scm:414 -#: guix/scripts/lint.scm:469 +#: guix/scripts/build.scm:469 guix/scripts/download.scm:54 +#: guix/scripts/package.scm:384 guix/scripts/gc.scm:70 +#: guix/scripts/hash.scm:56 guix/scripts/import.scm:91 +#: guix/scripts/import/cran.scm:46 guix/scripts/pull.scm:83 +#: guix/scripts/substitute.scm:758 guix/scripts/system.scm:609 +#: guix/scripts/lint.scm:802 guix/scripts/publish.scm:63 +#: guix/scripts/edit.scm:44 guix/scripts/size.scm:223 +#: guix/scripts/graph.scm:326 guix/scripts/challenge.scm:181 +#: guix/scripts/container.scm:33 guix/scripts/container/exec.scm:43 msgid "" "\n" " -h, --help display this help and exit" @@ -265,11 +413,15 @@ msgstr "" "\n" " -h, --help hi=E1=BB=83n th=E1=BB=8B tr=E1=BB=A3 gi=C3=BAp= n=C3=A0y r=E1=BB=93i tho=C3=A1t" =20 -#: guix/scripts/build.scm:251 guix/scripts/download.scm:55 -#: guix/scripts/package.scm:469 guix/scripts/gc.scm:60 -#: guix/scripts/hash.scm:57 guix/scripts/pull.scm:83 -#: guix/scripts/substitute-binary.scm:568 guix/scripts/system.scm:416 -#: guix/scripts/lint.scm:473 +#: guix/scripts/build.scm:471 guix/scripts/download.scm:56 +#: guix/scripts/package.scm:386 guix/scripts/gc.scm:72 +#: guix/scripts/hash.scm:58 guix/scripts/import.scm:93 +#: guix/scripts/import/cran.scm:48 guix/scripts/pull.scm:85 +#: guix/scripts/substitute.scm:760 guix/scripts/system.scm:611 +#: guix/scripts/lint.scm:806 guix/scripts/publish.scm:65 +#: guix/scripts/edit.scm:46 guix/scripts/size.scm:225 +#: guix/scripts/graph.scm:328 guix/scripts/challenge.scm:183 +#: guix/scripts/container.scm:35 guix/scripts/container/exec.scm:45 msgid "" "\n" " -V, --version display version information and exit" @@ -277,25 +429,24 @@ msgstr "" "\n" " -V, --version hi=E1=BB=83n th=E1=BB=8B th=C3=B4ng tin phi=C3= =AAn b=E1=BA=A3n r=E1=BB=93i tho=C3=A1t" =20 -#: guix/scripts/build.scm:383 +#: guix/scripts/build.scm:498 #, scheme-format -msgid "sources do not match any package:~{ ~a~}~%" -msgstr "m=C3=A3 ngu=E1=BB=93n kh=C3=B4ng kh=E1=BB=9Bp b=E1=BA=A5t k=E1=BB= =B3 g=C3=B3i n=C3=A0o:~{ ~a~}~%" +msgid "" +"invalid argument: '~a' option argument: ~a, ~\n" +"must be one of 'package', 'all', or 'transitive'~%" +msgstr "" =20 -#: guix/scripts/build.scm:417 guix/scripts/download.scm:96 -#: guix/scripts/package.scm:694 guix/scripts/gc.scm:122 -#: guix/scripts/pull.scm:213 guix/scripts/system.scm:499 -#: guix/scripts/lint.scm:521 +#: guix/scripts/build.scm:546 #, scheme-format -msgid "~A: unrecognized option~%" -msgstr "~A: t=C3=B9y ch=E1=BB=8Dn kh=C3=B4ng =C4=91=C6=B0=E1=BB=A3c ch=E1= =BA=A5p nh=E1=BA=ADn~%" +msgid "~s: not something we can build~%" +msgstr "" =20 -#: guix/scripts/build.scm:445 +#: guix/scripts/build.scm:625 #, scheme-format msgid "no build log for '~a'~%" msgstr "kh=C3=B4ng c=C3=B3 nh=E1=BA=ADt k=C3=BD d=E1=BB=8Bch cho =E2=80=9C= ~a'~%" =20 -#: guix/scripts/download.scm:44 +#: guix/scripts/download.scm:45 msgid "" "Usage: guix download [OPTION] URL\n" "Download the file at URL, add it to the store, and print its store path= \n" @@ -311,7 +462,7 @@ msgstr "" "C=C3=A1c =C4=91=E1=BB=8Bnh d=E1=BA=A1ng =C4=91=C6=B0=E1=BB=A3c h=E1=BB=97= tr=E1=BB=A3: =E2=80=9Cnix-base32=E2=80=9D (m=E1=BA=B7c =C4=91=E1=BB=8Bnh= ), =E2=80=9Cbase32=E2=80=9D, v=C3=A0 =E2=80=9Cbase16=E2=80=9D\n" "(d=C3=B9ng =E2=80=9Chex=E2=80=9D v=C3=A0 =E2=80=9Chexadecimal=E2=80=9D = c=C5=A9ng =C4=91=C6=B0=E1=BB=A3c).\n" =20 -#: guix/scripts/download.scm:50 guix/scripts/hash.scm:50 +#: guix/scripts/download.scm:51 guix/scripts/hash.scm:51 msgid "" "\n" " -f, --format=3DFMT write the hash in the given format" @@ -319,73 +470,110 @@ msgstr "" "\n" " -f, --format=3DFMT ghi m=C3=A3 b=C4=83m theo =C4=91=E1=BB=8Bnh = d=E1=BA=A1ng =C4=91=C3=A3 cho" =20 -#: guix/scripts/download.scm:73 guix/scripts/hash.scm:75 +#: guix/scripts/download.scm:74 guix/scripts/hash.scm:76 #, scheme-format msgid "unsupported hash format: ~a~%" msgstr "=C4=91=E1=BB=8Bnh d=E1=BA=A1ng b=C4=83m kh=C3=B4ng =C4=91=C6=B0=E1= =BB=A3c h=E1=BB=97 tr=E1=BB=A3: ~a~%" =20 -#: guix/scripts/download.scm:106 +#: guix/scripts/download.scm:100 guix/scripts/package.scm:838 +#: guix/scripts/publish.scm:357 +#, scheme-format +msgid "~A: extraneous argument~%" +msgstr "~A: =C4=91=E1=BB=91i s=E1=BB=91 ngo=E1=BA=A1i lai~%" + +#: guix/scripts/download.scm:109 +#, fuzzy, scheme-format +msgid "no download URI was specified~%" +msgstr "~a: g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A3i v=E1=BB=81~%" + +#: guix/scripts/download.scm:111 #, scheme-format msgid "~a: failed to parse URI~%" msgstr "~a: g=E1=BA=B7p l=E1=BB=97i khi ph=C3=A2n t=C3=ADch URI~%" =20 -#: guix/scripts/download.scm:117 +#: guix/scripts/download.scm:122 #, scheme-format msgid "~a: download failed~%" msgstr "~a: g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A3i v=E1=BB=81~%" =20 -#: guix/scripts/package.scm:98 +#: guix/scripts/package.scm:102 #, scheme-format -msgid "failed to build the empty profile~%" -msgstr "g=E1=BA=B7p l=E1=BB=97i khi bi=C3=AAn d=E1=BB=8Bch h=E1=BB=93 s=C6= =A1 tr=E1=BB=91ng r=E1=BB=97ng~%" +msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" +msgstr "" +"Th=E1=BB=AD ch=E1=BA=A1y l=E1=BB=87nh \"info =E2=80=9C(guix) Invoking g= uix package'\" =C4=91=E1=BB=83 c=C3=B3 th=C3=AAm th=C3=B4ng tin.~%" =20 -#: guix/scripts/package.scm:114 +#: guix/scripts/package.scm:124 #, scheme-format -msgid "switching from generation ~a to ~a~%" -msgstr "chuy=E1=BB=83n t=E1=BB=AB th=E1=BA=BF h=E1=BB=87 ~a sang ~a~%" +msgid "error: while creating directory `~a': ~a~%" +msgstr "l=E1=BB=97i: trong khi t=E1=BA=A1o th=C6=B0 m=E1=BB=A5c =E2=80=9C= ~a=E2=80=9D: ~a~%" =20 -#: guix/scripts/package.scm:133 +#: guix/scripts/package.scm:128 #, scheme-format -msgid "nothing to do: already at the empty profile~%" -msgstr "kh=C3=B4ng c=C3=B3 g=C3=AC c=E1=BA=A7n l=C3=A0m: =C4=91=C3=A3 l=C3= =A0 m=E1=BB=99t h=E1=BB=93 s=C6=A1 tr=E1=BB=91ng r=E1=BB=97ng~%" +msgid "Please create the `~a' directory, with you as the owner.~%" +msgstr "H=C3=A3y t=E1=BA=A1o th=C6=B0 m=E1=BB=A5c =E2=80=9C~a=E2=80=9D, = v=E1=BB=9Bi b=E1=BA=A1n l=C3=A0 ch=E1=BB=A7 s=E1=BB=9F h=E1=BB=AFu.~%" =20 -#: guix/scripts/package.scm:145 +#: guix/scripts/package.scm:135 #, scheme-format -msgid "deleting ~a~%" -msgstr "=C4=91ang x=C3=B3a ~a~%" +msgid "error: directory `~a' is not owned by you~%" +msgstr "l=E1=BB=97i: th=C6=B0 m=E1=BB=A5c =E2=80=9C~a=E2=80=9D kh=C3=B4n= g =C4=91=C6=B0=E1=BB=A3c s=E1=BB=9F h=E1=BB=AFu b=E1=BB=9Fi b=E1=BA=A1n~%= " =20 -#: guix/scripts/package.scm:296 +#: guix/scripts/package.scm:138 #, scheme-format -msgid "package `~a' lacks output `~a'~%" -msgstr "g=C3=B3i =E2=80=9C~a=E2=80=9D thi=E1=BA=BFu k=E1=BA=BFt xu=E1=BA= =A5t =E2=80=9C~a'~%" +msgid "Please change the owner of `~a' to user ~s.~%" +msgstr "Vui l=C3=B2ng =C4=91=E1=BB=95i ch=E1=BB=A7 s=E1=BB=9F h=E1=BB=AF= u c=E1=BB=A7a =E2=80=9C~a=E2=80=9D th=C3=A0nh ~s.~%" =20 -#: guix/scripts/package.scm:313 +#: guix/scripts/package.scm:173 #, scheme-format -msgid "~a: package not found~%" -msgstr "~a: kh=C3=B4ng t=C3=ACm th=E1=BA=A5y g=C3=B3i~%" +msgid "not removing generation ~a, which is current~%" +msgstr "" + +#: guix/scripts/package.scm:180 +#, fuzzy, scheme-format +msgid "no matching generation~%" +msgstr "kh=C3=B4ng th=E1=BB=83 chuy=E1=BB=83n =C4=91=E1=BA=BFn th=E1=BA=BF= h=E1=BB=87 =E2=80=9C~a'~%" + +#: guix/scripts/package.scm:183 guix/scripts/package.scm:659 +#: guix/scripts/system.scm:437 +#, scheme-format +msgid "invalid syntax: ~a~%" +msgstr "c=C3=BA ph=C3=A1p kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~a~%" + +#: guix/scripts/package.scm:208 +#, scheme-format +msgid "nothing to be done~%" +msgstr "kh=C3=B4ng c=C3=B3 g=C3=AC c=E1=BA=A7n l=C3=A0m~%" + +#: guix/scripts/package.scm:222 +#, scheme-format +msgid "~a package in profile~%" +msgid_plural "~a packages in profile~%" +msgstr[0] "~a g=C3=B3i trong h=E1=BB=93 s=C6=A1~%" =20 -#: guix/scripts/package.scm:406 +#: guix/scripts/package.scm:310 #, scheme-format msgid "The following environment variable definitions may be needed:~%" msgstr "Nh=E1=BB=AFng =C4=91=E1=BB=8Bnh ngh=C4=A9a bi=E1=BA=BFn m=C3=B4i= tr=C6=B0=E1=BB=9Dng sau =C4=91=C3=A2y l=C3=A0 c=E1=BA=A7n thi=E1=BA=BFt:= ~%" =20 -#: guix/scripts/package.scm:422 +#: guix/scripts/package.scm:325 +#, fuzzy msgid "" -"Usage: guix package [OPTION]... PACKAGES...\n" -"Install, remove, or upgrade PACKAGES in a single transaction.\n" +"Usage: guix package [OPTION]...\n" +"Install, remove, or upgrade packages in a single transaction.\n" msgstr "" "C=C3=A1ch d=C3=B9ng: guix package [T=C3=99Y CH=E1=BB=8CN]=E2=80=A6 G=C3= =93I=E2=80=A6\n" "C=C3=A0i =C4=91=E1=BA=B7t, g=E1=BB=A1 b=E1=BB=8F hay c=E1=BA=ADp nh=E1=BA= =ADt G=C3=93I trong m=E1=BB=99t giao d=E1=BB=8Bch =C4=91=C6=A1n.\n" =20 -#: guix/scripts/package.scm:424 +#: guix/scripts/package.scm:327 +#, fuzzy msgid "" "\n" -" -i, --install=3DPACKAGE install PACKAGE" +" -i, --install PACKAGE ...\n" +" install PACKAGEs" msgstr "" "\n" " -i, --install=3DG=C3=93I c=C3=A0i =C4=91=E1=BA=B7t G=C3=93I" =20 -#: guix/scripts/package.scm:426 +#: guix/scripts/package.scm:330 msgid "" "\n" " -e, --install-from-expression=3DEXP\n" @@ -395,15 +583,29 @@ msgstr "" " -e, --install-from-expression=3DBT\n" " c=C3=A0i =C4=91=E1=BA=B7t g=C3=B3i =C4=91=C6=B0= =E1=BB=A3c BT =C4=91=E1=BB=8Bnh gi=C3=A1 cho" =20 -#: guix/scripts/package.scm:429 +#: guix/scripts/package.scm:333 +#, fuzzy +msgid "" +"\n" +" -f, --install-from-file=3DFILE\n" +" install the package that the code within FILE\= n" +" evaluates to" +msgstr "" +"\n" +" -e, --install-from-expression=3DBT\n" +" c=C3=A0i =C4=91=E1=BA=B7t g=C3=B3i =C4=91=C6=B0= =E1=BB=A3c BT =C4=91=E1=BB=8Bnh gi=C3=A1 cho" + +#: guix/scripts/package.scm:337 +#, fuzzy msgid "" "\n" -" -r, --remove=3DPACKAGE remove PACKAGE" +" -r, --remove PACKAGE ...\n" +" remove PACKAGEs" msgstr "" "\n" " -r, --remove=3DG=C3=93I g=E1=BB=A1 b=E1=BB=8F G=C3=93I" =20 -#: guix/scripts/package.scm:431 +#: guix/scripts/package.scm:340 msgid "" "\n" " -u, --upgrade[=3DREGEXP] upgrade all the installed packages matching = REGEXP" @@ -411,7 +613,23 @@ msgstr "" "\n" " -u, --upgrade[=3DBTCQ] c=E1=BA=ADp nh=E1=BA=ADt t=E1=BA=A5t c=E1=BA= =A3 c=C3=A1c g=C3=B3i kh=E1=BB=9Bp v=E1=BB=9Bi BTCQ" =20 -#: guix/scripts/package.scm:433 +#: guix/scripts/package.scm:342 +msgid "" +"\n" +" -m, --manifest=3DFILE create a new profile generation with the man= ifest\n" +" from FILE" +msgstr "" + +#: guix/scripts/package.scm:345 +#, fuzzy +msgid "" +"\n" +" --do-not-upgrade[=3DREGEXP] do not upgrade any packages matching = REGEXP" +msgstr "" +"\n" +" -u, --upgrade[=3DBTCQ] c=E1=BA=ADp nh=E1=BA=ADt t=E1=BA=A5t c=E1=BA= =A3 c=C3=A1c g=C3=B3i kh=E1=BB=9Bp v=E1=BB=9Bi BTCQ" + +#: guix/scripts/package.scm:347 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -419,15 +637,17 @@ msgstr "" "\n" " --roll-back quay l=E1=BA=A1i th=E1=BA=BF h=E1=BB=87 tr=C6=B0= =E1=BB=9Bc" =20 -#: guix/scripts/package.scm:435 +#: guix/scripts/package.scm:349 +#, fuzzy msgid "" "\n" -" --search-paths display needed environment variable definition= s" +" --search-paths[=3DKIND]\n" +" display needed environment variable definition= s" msgstr "" "\n" " --search-paths hi=E1=BB=83n th=E1=BB=8B c=C3=A1c =C4=91=E1=BB= =8Bnh ngh=C4=A9a bi=E1=BA=BFn m=C3=B4i tr=C6=B0=E1=BB=9Dng c=E1=BA=A7n th= i=E1=BA=BFt" =20 -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:352 msgid "" "\n" " -l, --list-generations[=3DPATTERN]\n" @@ -437,7 +657,7 @@ msgstr "" " -l, --list-generations[=3DM=E1=BA=AAU]\n" " li=E1=BB=87t k=C3=AA c=C3=A1c g=C3=B3i kh=E1=BB= =9Bp M=E1=BA=AAU" =20 -#: guix/scripts/package.scm:440 +#: guix/scripts/package.scm:355 msgid "" "\n" " -d, --delete-generations[=3DPATTERN]\n" @@ -447,7 +667,7 @@ msgstr "" " -d, --delete-generations[=3DM=E1=BA=AAU]\n" " x=C3=B3a c=C3=A1c b=E1=BB=99 t=E1=BA=A1o kh=E1= =BB=9Bp M=E1=BA=AAU" =20 -#: guix/scripts/package.scm:443 +#: guix/scripts/package.scm:358 msgid "" "\n" " -S, --switch-generation=3DPATTERN\n" @@ -457,7 +677,7 @@ msgstr "" " -S, --switch-generation=3DM=E1=BA=AAU\n" " chuy=E1=BB=83n sang m=E1=BB=99t th=E1=BA=BF h=E1= =BB=87 kh=E1=BB=9Bp M=E1=BA=AAU" =20 -#: guix/scripts/package.scm:446 +#: guix/scripts/package.scm:361 msgid "" "\n" " -p, --profile=3DPROFILE use PROFILE instead of the user's default pr= ofile" @@ -465,7 +685,7 @@ msgstr "" "\n" " -p, --profile=3DH=E1=BB=92_S=C6=A0 d=C3=B9ng h=E1=BB=93 s=C6=A1 =C4= =91=C6=B0a ra thay cho h=E1=BB=93 s=C6=A1 m=E1=BA=B7c =C4=91=E1=BB=8Bnh" =20 -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:364 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -473,7 +693,7 @@ msgstr "" "\n" " --bootstrap d=C3=B9ng ch=C6=B0=C6=A1ng tr=C3=ACnh m=E1=BB=93= i Guile =C4=91=E1=BB=83 bi=C3=AAn d=E1=BB=8Bch h=E1=BB=93 s=C6=A1" =20 -#: guix/scripts/package.scm:451 guix/scripts/pull.scm:74 +#: guix/scripts/package.scm:366 guix/scripts/pull.scm:76 msgid "" "\n" " --verbose produce verbose output" @@ -481,7 +701,7 @@ msgstr "" "\n" " --verbose t=E1=BA=A1o ra k=E1=BA=BFt xu=E1=BA=A5t chi ti= =E1=BA=BFt" =20 -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:369 msgid "" "\n" " -s, --search=3DREGEXP search in synopsis and description using REG= EXP" @@ -490,7 +710,7 @@ msgstr "" " -s, --search=3DBTCQ t=C3=ACm trong t=C3=B3m l=C6=B0=E1=BB=A3c v=C3= =A0 m=C3=B4 t=E1=BA=A3\n" " s=E1=BB=AD d=E1=BB=A5ng BI=E1=BB=82U TH=E1=BB= =A8C CH=C3=8DNH QUY" =20 -#: guix/scripts/package.scm:456 +#: guix/scripts/package.scm:371 msgid "" "\n" " -I, --list-installed[=3DREGEXP]\n" @@ -500,7 +720,7 @@ msgstr "" " -I, --list-installed[=3DBI=E1=BB=82U-TH=E1=BB=A8C-CH=C3=8DNH-QUY]\n" " ki=E1=BB=87t k=C3=AA c=C3=A1c g=C3=B3i kh=E1=BB= =9Bp BTCQ =C4=91=C3=A3 c=C3=A0i =C4=91=E1=BA=B7t" =20 -#: guix/scripts/package.scm:459 +#: guix/scripts/package.scm:374 msgid "" "\n" " -A, --list-available[=3DREGEXP]\n" @@ -510,76 +730,36 @@ msgstr "" " -A, --list-available[=3DBI=E1=BB=82U-TH=E1=BB=A8C-CH=C3=8DNH-QUY]\n" " ki=E1=BB=87t k=C3=AA c=C3=A1c g=C3=B3i kh=E1=BB= =9Bp BTCQ" =20 -#: guix/scripts/package.scm:462 +#: guix/scripts/package.scm:377 +#, fuzzy msgid "" "\n" -" --show=3DPACKAGE show details about PACKAGE" +" --show=3DPACKAGE show details about PACKAGE" msgstr "" "\n" " --show=3DG=C3=93I hi=E1=BB=83n th=E1=BB=8B th=C3=B4ng tin= chi ti=E1=BA=BFt v=E1=BB=81 G=C3=93I" =20 -#: guix/scripts/package.scm:698 -#, scheme-format -msgid "~A: extraneous argument~%" -msgstr "~A: =C4=91=E1=BB=91i s=E1=BB=91 ngo=E1=BA=A1i lai~%" - -#: guix/scripts/package.scm:708 -#, scheme-format -msgid "Try \"info '(guix) Invoking guix package'\" for more information.= ~%" -msgstr "Th=E1=BB=AD ch=E1=BA=A1y l=E1=BB=87nh \"info =E2=80=9C(guix) Inv= oking guix package'\" =C4=91=E1=BB=83 c=C3=B3 th=C3=AAm th=C3=B4ng tin.~%= " - -#: guix/scripts/package.scm:730 -#, scheme-format -msgid "error: while creating directory `~a': ~a~%" -msgstr "l=E1=BB=97i: trong khi t=E1=BA=A1o th=C6=B0 m=E1=BB=A5c =E2=80=9C= ~a=E2=80=9D: ~a~%" - -#: guix/scripts/package.scm:734 -#, scheme-format -msgid "Please create the `~a' directory, with you as the owner.~%" -msgstr "H=C3=A3y t=E1=BA=A1o th=C6=B0 m=E1=BB=A5c =E2=80=9C~a=E2=80=9D, = v=E1=BB=9Bi b=E1=BA=A1n l=C3=A0 ch=E1=BB=A7 s=E1=BB=9F h=E1=BB=AFu.~%" - -#: guix/scripts/package.scm:741 -#, scheme-format -msgid "error: directory `~a' is not owned by you~%" -msgstr "l=E1=BB=97i: th=C6=B0 m=E1=BB=A5c =E2=80=9C~a=E2=80=9D kh=C3=B4n= g =C4=91=C6=B0=E1=BB=A3c s=E1=BB=9F h=E1=BB=AFu b=E1=BB=9Fi b=E1=BA=A1n~%= " - -#: guix/scripts/package.scm:744 +#: guix/scripts/package.scm:472 #, scheme-format -msgid "Please change the owner of `~a' to user ~s.~%" -msgstr "Vui l=C3=B2ng =C4=91=E1=BB=95i ch=E1=BB=A7 s=E1=BB=9F h=E1=BB=AF= u c=E1=BB=A7a =E2=80=9C~a=E2=80=9D th=C3=A0nh ~s.~%" +msgid "~a: unsupported kind of search path~%" +msgstr "" =20 -#: guix/scripts/package.scm:777 +#: guix/scripts/package.scm:755 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "kh=C3=B4ng th=E1=BB=83 chuy=E1=BB=83n =C4=91=E1=BA=BFn th=E1=BA=BF= h=E1=BB=87 =E2=80=9C~a'~%" =20 -#: guix/scripts/package.scm:809 guix/scripts/package.scm:910 -#, scheme-format -msgid "invalid syntax: ~a~%" -msgstr "c=C3=BA ph=C3=A1p kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~a~%" - -#: guix/scripts/package.scm:846 -#, scheme-format -msgid "nothing to be done~%" -msgstr "kh=C3=B4ng c=C3=B3 g=C3=AC c=E1=BA=A7n l=C3=A0m~%" - -#: guix/scripts/package.scm:861 -#, scheme-format -msgid "~a package in profile~%" -msgid_plural "~a packages in profile~%" -msgstr[0] "~a g=C3=B3i trong h=E1=BB=93 s=C6=A1~%" - -#: guix/scripts/package.scm:876 +#: guix/scripts/package.scm:771 #, scheme-format -msgid "Generation ~a\t~a" -msgstr "T=E1=BA=A1o ~a\t~a" +msgid "would install new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/package.scm:883 +#: guix/scripts/package.scm:773 #, scheme-format -msgid "~a\t(current)~%" -msgstr "~a\t(hi=E1=BB=87n t=E1=BA=A1i)~%" +msgid "installing new manifest from '~a' with ~d entries~%" +msgstr "" =20 -#: guix/scripts/gc.scm:39 +#: guix/scripts/gc.scm:40 msgid "" "Usage: guix gc [OPTION]... PATHS...\n" "Invoke the garbage collector.\n" @@ -587,7 +767,7 @@ msgstr "" "C=C3=A1ch d=C3=B9ng: guix gc [T=C3=99Y-CH=E1=BB=8CN]=E2=80=A6 =C4=90=C6= =AF=E1=BB=9CNG-D=E1=BA=AAN=E2=80=A6\n" "G=E1=BB=8Di b=E1=BB=99 x=E1=BB=AD l=C3=BD r=C3=A1c.\n" =20 -#: guix/scripts/gc.scm:41 +#: guix/scripts/gc.scm:42 msgid "" "\n" " -C, --collect-garbage[=3DMIN]\n" @@ -597,7 +777,7 @@ msgstr "" " -C, --collect-garbage[=3DT=E1=BB=90I-THI=E1=BB=82U]\n" " s=C6=B0u t=E1=BA=ADp T=E1=BB=90I-THI=E1=BB=82U= byte r=C3=A1c" =20 -#: guix/scripts/gc.scm:44 +#: guix/scripts/gc.scm:45 msgid "" "\n" " -d, --delete attempt to delete PATHS" @@ -605,7 +785,13 @@ msgstr "" "\n" " -d, --delete c=E1=BB=91 x=C3=B3a =C4=90=C6=AF=E1=BB=9CNG D=E1= =BA=AAN" =20 -#: guix/scripts/gc.scm:46 +#: guix/scripts/gc.scm:47 +msgid "" +"\n" +" --optimize optimize the store by deduplicating identical = files" +msgstr "" + +#: guix/scripts/gc.scm:49 msgid "" "\n" " --list-dead list dead paths" @@ -613,7 +799,7 @@ msgstr "" "\n" " --list-dead li=E1=BB=87t k=C3=AA c=C3=A1c =C4=91=C6=B0=E1=BB= =9Dng d=E1=BA=ABn =C4=91=C3=A3 ch=E1=BA=BFt" =20 -#: guix/scripts/gc.scm:48 +#: guix/scripts/gc.scm:51 msgid "" "\n" " --list-live list live paths" @@ -621,7 +807,7 @@ msgstr "" "\n" " --list-live li=E1=BB=87t k=C3=AA =C4=91=C6=B0=E1=BB=9Dng d= =E1=BA=ABn c=C3=B2n s=E1=BB=91ng" =20 -#: guix/scripts/gc.scm:51 +#: guix/scripts/gc.scm:54 msgid "" "\n" " --references list the references of PATHS" @@ -629,7 +815,7 @@ msgstr "" "\n" " --references li=E1=BB=87t k=C3=AA c=C3=A1c tham chi=E1=BA=BF= u c=E1=BB=A7a =C4=90=C6=AF=E1=BB=9CNG-D=E1=BA=AAN" =20 -#: guix/scripts/gc.scm:53 +#: guix/scripts/gc.scm:56 msgid "" "\n" " -R, --requisites list the requisites of PATHS" @@ -637,7 +823,7 @@ msgstr "" "\n" " -R, --referrers li=E1=BB=87t k=C3=AA c=C3=A1c =C4=91i=E1=BB=81= u ki=E1=BB=87n c=E1=BA=A7n cho bi=E1=BA=BFn PATH" =20 -#: guix/scripts/gc.scm:55 +#: guix/scripts/gc.scm:58 msgid "" "\n" " --referrers list the referrers of PATHS" @@ -645,12 +831,40 @@ msgstr "" "\n" " --referrers li=E1=BB=87t k=C3=AA c=C3=A1c =C4=90=C6=AF=E1=BB= =9CNG D=E1=BA=AAN cho bi=E1=BA=BFn PATH" =20 -#: guix/scripts/gc.scm:84 +#: guix/scripts/gc.scm:61 +msgid "" +"\n" +" --verify[=3DOPTS] verify the integrity of the store; OPTS is a= \n" +" comma-separated combination of 'repair' and\n" +" 'contents'" +msgstr "" + +#: guix/scripts/gc.scm:65 +#, fuzzy +msgid "" +"\n" +" --list-failures list cached build failures" +msgstr "" +"\n" +" --list-dead li=E1=BB=87t k=C3=AA c=C3=A1c =C4=91=C6=B0=E1=BB= =9Dng d=E1=BA=ABn =C4=91=C3=A3 ch=E1=BA=BFt" + +#: guix/scripts/gc.scm:67 +msgid "" +"\n" +" --clear-failures remove PATHS from the set of cached failures" +msgstr "" + +#: guix/scripts/gc.scm:96 #, scheme-format msgid "invalid amount of storage: ~a~%" msgstr "s=E1=BB=91 l=C6=B0=E1=BB=A3ng kho ch=E1=BB=A9a kh=C3=B4ng h=E1=BB= =A3p l=E1=BB=87: ~a~%" =20 -#: guix/scripts/hash.scm:45 +#: guix/scripts/gc.scm:187 +#, fuzzy, scheme-format +msgid "extraneous arguments: ~{~a ~}~%" +msgstr "~A: =C4=91=E1=BB=91i s=E1=BB=91 ngo=E1=BA=A1i lai~%" + +#: guix/scripts/hash.scm:46 msgid "" "Usage: guix hash [OPTION] FILE\n" "Return the cryptographic hash of FILE.\n" @@ -664,7 +878,7 @@ msgstr "" "C=C3=A1c =C4=91=E1=BB=8Bnh d=E1=BA=A1ng =C4=91=C6=B0=E1=BB=A3c h=E1=BB=97= tr=E1=BB=A3: =E2=80=9Cnix-base32=E2=80=9D (m=E1=BA=B7c =C4=91=E1=BB=8Bnh= ), =E2=80=9Cbase32=E2=80=9D, v=C3=A0 =E2=80=9Cbase16=E2=80=9D\n" "(=E2=80=9Chex=E2=80=9D v=C3=A0 =E2=80=9Chexadecimal=E2=80=9D c=C3=B3 th= =E1=BB=83 =C4=91=C6=B0=E1=BB=A3c d=C3=B9ng c=C5=A9ng t=E1=BB=91t).\n" =20 -#: guix/scripts/hash.scm:52 +#: guix/scripts/hash.scm:53 msgid "" "\n" " -r, --recursive compute the hash on FILE recursively" @@ -672,175 +886,262 @@ msgstr "" "\n" " -r, --recursive t=C3=ADnh m=C3=A3 b=C4=83m tr=C3=AAn T=E1=BA=AC= P-TIN m=E1=BB=99t c=C3=A1ch =C4=91=E1=BB=87 quy" =20 -#: guix/scripts/hash.scm:103 +#: guix/scripts/hash.scm:104 #, scheme-format msgid "unrecognized option: ~a~%" msgstr "t=C3=B9y ch=E1=BB=8Dn kh=C3=B4ng =C4=91=C6=B0=E1=BB=A3c th=E1=BB= =ABa nh=E1=BA=ADn: ~a~%" =20 -#: guix/scripts/hash.scm:134 guix/ui.scm:258 +#: guix/scripts/hash.scm:135 guix/ui.scm:460 #, scheme-format msgid "~a~%" msgstr "~a~%" =20 -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 guix/scripts/system.scm:738 #, scheme-format msgid "wrong number of arguments~%" msgstr "s=E1=BB=91 l=C6=B0=E1=BB=A3ng =C4=91=E1=BB=91i s=E1=BB=91 kh=C3=B4= ng =C4=91=C3=BAng~%" =20 -#: guix/scripts/pull.scm:72 +#: guix/scripts/import.scm:85 +#, fuzzy msgid "" -"Usage: guix pull [OPTION]...\n" -"Download and deploy the latest version of Guix.\n" +"Usage: guix import IMPORTER ARGS ...\n" +"Run IMPORTER with ARGS.\n" msgstr "" -"C=C3=A1ch d=C3=B9ng: guix pull [T=C3=99Y-CH=E1=BB=8CN]=E2=80=A6\n" -"T=E1=BA=A3i v=E1=BB=81 v=C3=A0 khai tri=E1=BB=83n phi=C3=AAn b=E1=BA=A3= n m=E1=BB=9Bi nh=E1=BA=A5t c=E1=BB=A7a Guix.\n" +"C=C3=A1ch d=C3=B9ng: guix L=E1=BB=86NH =C4=90=E1=BB=90I_S=E1=BB=90=E2=80= =A6\n" +"Ch=E1=BA=A1y L=E1=BB=86NH v=E1=BB=9Bi c=C3=A1c =C4=90=E1=BB=90I S=E1=BB= =90.\n" + +#: guix/scripts/import.scm:88 +#, fuzzy +msgid "IMPORTER must be one of the importers listed below:\n" +msgstr "L=E1=BB=86NH ph=E1=BA=A3i l=C3=A0 m=E1=BB=99t trong s=E1=BB=91 n= h=E1=BB=AFng c=C3=A2u l=E1=BB=87nh con =C4=91=C6=B0=E1=BB=A3c li=E1=BB=87= t k=C3=AA d=C6=B0=E1=BB=9Bi =C4=91=C3=A2y:\n" + +#: guix/scripts/import.scm:102 +#, fuzzy, scheme-format +msgid "guix import: missing importer name~%" +msgstr "guix: thi=E1=BA=BFu t=C3=AAn l=E1=BB=87nh~%" =20 -#: guix/scripts/pull.scm:76 +#: guix/scripts/import.scm:113 +#, scheme-format +msgid "guix import: invalid importer~%" +msgstr "" + +#: guix/scripts/import/cran.scm:42 msgid "" -"\n" -" --url=3DURL download the Guix tarball from URL" +"Usage: guix import cran PACKAGE-NAME\n" +"Import and convert the CRAN package for PACKAGE-NAME.\n" msgstr "" -"\n" -" --url=3DURL t=E1=BA=A3i g=C3=B3i Guix t=E1=BB=AB URL" =20 -#: guix/scripts/pull.scm:78 +#: guix/scripts/import/cran.scm:44 msgid "" "\n" -" --bootstrap use the bootstrap Guile to build the new Guix" +" -a, --archive=3DARCHIVE specify the archive repository" msgstr "" -"\n" -" --bootstrap d=C3=B9ng ch=C6=B0=C6=A1ng tr=C3=ACnh m=E1=BB=93= i Guile =C4=91=E1=BB=83 bi=C3=AAn d=E1=BB=8Bch Guix" =20 -#: guix/scripts/pull.scm:132 -msgid "tarball did not produce a single source directory" -msgstr "kho tar kh=C3=B4ng s=E1=BA=A3n sinh ra m=E1=BB=99t th=C6=B0 m=E1= =BB=A5c m=C3=A3 ngu=E1=BB=93n =C4=91=C6=A1n" +#: guix/scripts/import/cran.scm:94 +#, fuzzy, scheme-format +msgid "failed to download description for package '~a'~%" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A3i t=E1=BA=ADp tin h=E1=BB=87= =C4=91i=E1=BB=81u h=C3=A0nh =E2=80=9C~a=E2=80=9D:~%" =20 -#: guix/scripts/pull.scm:150 -#, scheme-format -msgid "unpacking '~a'...~%" +#: guix/scripts/import/cran.scm:98 guix/scripts/import/elpa.scm:95 +#, fuzzy, scheme-format +msgid "too few arguments~%" +msgstr "s=E1=BB=91 l=C6=B0=E1=BB=A3ng =C4=91=E1=BB=91i s=E1=BB=91 kh=C3=B4= ng =C4=91=C3=BAng~%" + +#: guix/scripts/import/cran.scm:100 guix/scripts/import/elpa.scm:97 +#, fuzzy, scheme-format +msgid "too many arguments~%" +msgstr "c=C3=A1c =C4=91=E1=BB=91i s=E1=BB=91 sai" + +#: guix/scripts/import/elpa.scm:41 +msgid "" +"Usage: guix import elpa PACKAGE-NAME\n" +"Import the latest package named PACKAGE-NAME from an ELPA repository.\n= " +msgstr "" + +#: guix/scripts/import/elpa.scm:43 +msgid "" +"\n" +" -a, --archive=3DARCHIVE specify the archive repository" +msgstr "" + +#: guix/scripts/import/elpa.scm:45 +#, fuzzy +msgid "" +"\n" +" -h, --help display this help and exit" +msgstr "" +"\n" +" -h, --help hi=E1=BB=83n th=E1=BB=8B tr=E1=BB=A3 gi=C3=BAp= n=C3=A0y r=E1=BB=93i tho=C3=A1t" + +#: guix/scripts/import/elpa.scm:47 +#, fuzzy +msgid "" +"\n" +" -V, --version display version information and exit" +msgstr "" +"\n" +" -V, --version hi=E1=BB=83n th=E1=BB=8B th=C3=B4ng tin phi=C3= =AAn b=E1=BA=A3n r=E1=BB=93i tho=C3=A1t" + +#: guix/scripts/import/elpa.scm:92 +#, fuzzy, scheme-format +msgid "failed to download package '~a'~%" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A3i t=E1=BA=ADp tin h=E1=BB=87= =C4=91i=E1=BB=81u h=C3=A0nh =E2=80=9C~a=E2=80=9D:~%" + +#: guix/scripts/pull.scm:74 +msgid "" +"Usage: guix pull [OPTION]...\n" +"Download and deploy the latest version of Guix.\n" +msgstr "" +"C=C3=A1ch d=C3=B9ng: guix pull [T=C3=99Y-CH=E1=BB=8CN]=E2=80=A6\n" +"T=E1=BA=A3i v=E1=BB=81 v=C3=A0 khai tri=E1=BB=83n phi=C3=AAn b=E1=BA=A3= n m=E1=BB=9Bi nh=E1=BA=A5t c=E1=BB=A7a Guix.\n" + +#: guix/scripts/pull.scm:78 +msgid "" +"\n" +" --url=3DURL download the Guix tarball from URL" +msgstr "" +"\n" +" --url=3DURL t=E1=BA=A3i g=C3=B3i Guix t=E1=BB=AB URL" + +#: guix/scripts/pull.scm:80 +msgid "" +"\n" +" --bootstrap use the bootstrap Guile to build the new Guix" +msgstr "" +"\n" +" --bootstrap d=C3=B9ng ch=C6=B0=C6=A1ng tr=C3=ACnh m=E1=BB=93= i Guile =C4=91=E1=BB=83 bi=C3=AAn d=E1=BB=8Bch Guix" + +#: guix/scripts/pull.scm:134 +msgid "tarball did not produce a single source directory" +msgstr "kho tar kh=C3=B4ng s=E1=BA=A3n sinh ra m=E1=BB=99t th=C6=B0 m=E1= =BB=A5c m=C3=A3 ngu=E1=BB=93n =C4=91=C6=A1n" + +#: guix/scripts/pull.scm:152 +#, scheme-format +msgid "unpacking '~a'...~%" msgstr "=C4=91ang gi=E1=BA=A3i n=C3=A9n =E2=80=9C~a=E2=80=9D=E2=80=A6~%" =20 -#: guix/scripts/pull.scm:159 +#: guix/scripts/pull.scm:161 msgid "failed to unpack source code" msgstr "g=E1=BA=B7p l=E1=BB=97i khi gi=E1=BA=A3i g=C3=B3i m=C3=A3 ngu=E1= =BB=93n" =20 -#: guix/scripts/pull.scm:200 +#: guix/scripts/pull.scm:204 +msgid "Guix already up to date\n" +msgstr "Guix =C4=91=C3=A3 c=E1=BA=ADp nh=E1=BA=ADt r=E1=BB=93i\n" + +#: guix/scripts/pull.scm:209 #, scheme-format msgid "updated ~a successfully deployed under `~a'~%" msgstr "=C4=91=C3=A3 c=E1=BA=ADp nh=E1=BA=ADt ~a th=C3=A0nh c=C3=B4ng =C4= =91=C6=B0=E1=BB=A3c tri=E1=BB=83n khai d=C6=B0=E1=BB=9Bi =E2=80=9C~a'~%" =20 -#: guix/scripts/pull.scm:203 +#: guix/scripts/pull.scm:212 #, scheme-format msgid "failed to update Guix, check the build log~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi c=E1=BA=ADp nh=E1=BA=ADt Guix, h=C3=A3= y ki=E1=BB=83m tra nh=E1=BA=ADt k=C3=BD bi=C3=AAn d=E1=BB=8Bch~%" =20 -#: guix/scripts/pull.scm:205 -msgid "Guix already up to date\n" -msgstr "Guix =C4=91=C3=A3 c=E1=BA=ADp nh=E1=BA=ADt r=E1=BB=93i\n" - -#: guix/scripts/pull.scm:215 +#: guix/scripts/pull.scm:221 #, scheme-format msgid "~A: unexpected argument~%" msgstr "~A: g=E1=BA=B7p =C4=91=E1=BB=91i s=E1=BB=91 b=E1=BA=A5t th=C6=B0= =E1=BB=9Dng~%" =20 -#: guix/scripts/pull.scm:224 +#: guix/scripts/pull.scm:230 msgid "failed to download up-to-date source, exiting\n" msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A3i v=E1=BB=81 c=E1=BA=ADp n= h=E1=BA=ADt m=E1=BB=9Bi nh=E1=BA=A5t c=E1=BB=A7a m=C3=A3 ngu=E1=BB=93n, =C4= =91ang tho=C3=A1t\n" =20 -#: guix/scripts/substitute-binary.scm:80 +#: guix/scripts/substitute.scm:103 #, scheme-format msgid "authentication and authorization of substitutes disabled!~%" msgstr "ch=E1=BB=A9ng th=E1=BB=B1c v=C3=A0 =E1=BB=A7y quy=E1=BB=81n c=E1= =BB=A7a c=C3=A1i thay th=E1=BA=BF b=E1=BB=8B t=E1=BA=AFt!~%" =20 -#: guix/scripts/substitute-binary.scm:163 +#: guix/scripts/substitute.scm:179 #, scheme-format msgid "download from '~a' failed: ~a, ~s~%" msgstr "t=E1=BA=A3i v=E1=BB=81 t=E1=BB=AB =E2=80=9C~a=E2=80=9D g=E1=BA=B7= p l=E1=BB=97i: ~a, ~s~%" =20 -#: guix/scripts/substitute-binary.scm:178 +#: guix/scripts/substitute.scm:191 #, scheme-format msgid "while fetching ~a: server is somewhat slow~%" msgstr "khi =C4=91ang l=E1=BA=A5y ~a: m=C3=A1y ch=E1=BB=A7 h=C6=A1i ch=E1= =BA=ADm m=E1=BB=99t t=C3=AD~%" =20 -#: guix/scripts/substitute-binary.scm:180 +#: guix/scripts/substitute.scm:193 #, scheme-format msgid "try `--no-substitutes' if the problem persists~%" msgstr "d=C3=B9ng =E2=80=9C--no-substitutes=E2=80=9D n=E1=BA=BFu v=E1=BA= =A5n =C4=91=E1=BB=81 v=E1=BA=ABn kh=C3=B4ng =C4=91=C6=B0=E1=BB=A3c gi=E1=BA= =A3i quy=E1=BA=BFt~%" =20 -#: guix/scripts/substitute-binary.scm:221 -#, scheme-format -msgid "updating list of substitutes from '~a'...~%" -msgstr "=C4=91ang c=E1=BA=ADp nh=E1=BA=ADt danh s=C3=A1ch thay th=E1=BA=BF= t=E1=BB=AB =E2=80=9C~a=E2=80=9D=E2=80=A6~%" - -#: guix/scripts/substitute-binary.scm:253 +#: guix/scripts/substitute.scm:266 #, scheme-format msgid "signature version must be a number: ~s~%" msgstr "phi=C3=AAn b=E1=BA=A3n ch=E1=BB=AF k=C3=BD ph=E1=BA=A3i l=C3=A0 = con s=E1=BB=91: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:257 +#: guix/scripts/substitute.scm:270 #, scheme-format msgid "unsupported signature version: ~a~%" msgstr "phi=C3=AAn b=E1=BA=A3n ch=E1=BB=AF k=C3=BD kh=C3=B4ng =C4=91=C6=B0= =E1=BB=A3c h=E1=BB=97 tr=E1=BB=A3: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:265 +#: guix/scripts/substitute.scm:278 #, scheme-format msgid "signature is not a valid s-expression: ~s~%" msgstr "ch=E1=BB=AF k=C3=BD kh=C3=B4ng ph=E1=BA=A3i l=C3=A0 m=E1=BB=99t = bi=E1=BB=83u th=E1=BB=A9c s h=E1=BB=A3p l=E1=BB=87: ~s~%" =20 -#: guix/scripts/substitute-binary.scm:269 +#: guix/scripts/substitute.scm:282 #, scheme-format msgid "invalid format of the signature field: ~a~%" msgstr "=C4=91=E1=BB=8Bnh d=E1=BA=A1ng tr=C6=B0=E1=BB=9Dng ch=E1=BB=AF k= =C3=BD kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:304 +#: guix/scripts/substitute.scm:317 #, scheme-format msgid "invalid signature for '~a'~%" msgstr "ch=E1=BB=AF k=C3=BD kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87 cho =E2=80= =9C~a'~%" =20 -#: guix/scripts/substitute-binary.scm:306 +#: guix/scripts/substitute.scm:319 #, scheme-format msgid "hash mismatch for '~a'~%" msgstr "m=C3=A3 b=C4=83m kh=C3=B4ng kh=E1=BB=9Bp nhau cho =E2=80=9C~a'~%= " =20 -#: guix/scripts/substitute-binary.scm:308 +#: guix/scripts/substitute.scm:321 #, scheme-format msgid "'~a' is signed with an unauthorized key~%" msgstr "=E2=80=9C~a=E2=80=9D =C4=91=C6=B0=E1=BB=A3c k=C3=BD b=E1=BA=B1ng= kh=C3=B3a tr=C3=A1i ph=C3=A9p~%" =20 -#: guix/scripts/substitute-binary.scm:310 +#: guix/scripts/substitute.scm:323 #, scheme-format msgid "signature on '~a' is corrupt~%" msgstr "ch=E1=BB=AF k=C3=BD tr=C3=AAn =E2=80=9C~a=E2=80=9D b=E1=BB=8B h=E1= =BB=8Fng~%" =20 -#: guix/scripts/substitute-binary.scm:344 +#: guix/scripts/substitute.scm:361 #, scheme-format msgid "substitute at '~a' lacks a signature~%" msgstr "c=C3=A1i thay th=E1=BA=BF t=E1=BA=A1i =E2=80=9C~a=E2=80=9D thi=E1= =BA=BFu ch=E1=BB=AF k=C3=BD~%" =20 -#: guix/scripts/substitute-binary.scm:532 +#: guix/scripts/substitute.scm:537 +#, fuzzy, scheme-format +msgid "updating list of substitutes from '~a'... ~5,1f%" +msgstr "=C4=91ang c=E1=BA=ADp nh=E1=BA=ADt danh s=C3=A1ch thay th=E1=BA=BF= t=E1=BB=AB =E2=80=9C~a=E2=80=9D=E2=80=A6~%" + +#: guix/scripts/substitute.scm:585 #, scheme-format -msgid "Downloading, please wait...~%" -msgstr "=C4=90ang t=E1=BA=A3i, vui l=C3=B2ng ch=E1=BB=9D=E2=80=A6~%" +msgid "~s: unsupported server URI scheme~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:534 +#: guix/scripts/substitute.scm:596 #, scheme-format -msgid "(Please consider upgrading Guile to get proper progress report.)~= %" -msgstr "(H=C3=A3y c=C3=A2n nh=E1=BA=AFc n=C3=A2ng c=E1=BA=A5p Guile =C4=91= =E1=BB=83 nh=E1=BA=ADn =C4=91=C6=B0=E1=BB=A3c b=C3=A1o c=C3=A1o ti=E1=BA=BF= n tr=C3=ACnh =C4=91=C3=BAng =C4=91=E1=BA=AFn.)~%" +msgid "'~a' uses different store '~a'; ignoring it~%" +msgstr "" =20 -#: guix/scripts/substitute-binary.scm:547 +#: guix/scripts/substitute.scm:739 #, scheme-format msgid "host name lookup error: ~a~%" msgstr "l=E1=BB=97i truy v=E1=BA=A5n t=C3=AAn m=C3=A1y: ~a~%" =20 -#: guix/scripts/substitute-binary.scm:556 +#: guix/scripts/substitute.scm:748 +#, fuzzy msgid "" -"Usage: guix substitute-binary [OPTION]...\n" +"Usage: guix substitute [OPTION]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" "C=C3=A1ch d=C3=B9ng: guix substitute-binary [T=C3=99Y-CH=E1=BB=8CN]=E2=80= =A6\n" "C=C3=B4ng c=E1=BB=A5 n=E1=BB=99i t=E1=BA=A1i =C4=91=E1=BB=83 thay th=E1= =BA=BF nh=E1=BB=8B ph=C3=A2n d=E1=BB=8Bch s=E1=BA=B5n th=C3=A0nh d=E1=BB=8B= ch n=E1=BB=99i b=E1=BB=99.\n" =20 -#: guix/scripts/substitute-binary.scm:558 +#: guix/scripts/substitute.scm:750 msgid "" "\n" " --query report on the availability of substitutes for = the\n" @@ -848,9 +1149,10 @@ msgid "" msgstr "" "\n" " --query b=C3=A1o c=C3=A1o tr=C3=AAn t=C3=ADnh s=E1=BA=B5= n s=C3=A0ng c=E1=BB=A7a thay th=E1=BA=BF cho\n" -" c=C3=A1c t=C3=AAn t=E1=BA=ADp-tin l=C6=B0u tr=E1= =BB=AF =C4=91=C6=B0=E1=BB=A3c chuy=E1=BB=83n tr=C3=AAn =C4=91=E1=BA=A7u r= a ti=C3=AAu chu=E1=BA=A9n" +" c=C3=A1c t=C3=AAn t=E1=BA=ADp-tin l=C6=B0u tr=E1= =BB=AF =C4=91=C6=B0=E1=BB=A3c chuy=E1=BB=83n tr=C3=AAn =C4=91=E1=BA=A7u r= a " +"ti=C3=AAu chu=E1=BA=A9n" =20 -#: guix/scripts/substitute-binary.scm:561 +#: guix/scripts/substitute.scm:753 msgid "" "\n" " --substitute STORE-FILE DESTINATION\n" @@ -862,21 +1164,15 @@ msgstr "" " t=E1=BA=A3i v=E1=BB=81 T=E1=BA=ACP-TIN-L=C6=AF= U v=C3=A0 l=C6=B0u n=C3=B3 trong t=E1=BA=ADp tin =C4=90=C3=8DCH\n" " Nar" =20 -#: guix/scripts/substitute-binary.scm:606 -msgid "ACL for archive imports seems to be uninitialized, substitutes ma= y be unavailable\n" -msgstr "ACL d=C3=A0nh cho nh=E1=BA=ADp kho l=C6=B0u d=C6=B0=E1=BB=9Dng n= h=C6=B0 l=C3=A0 ch=C6=B0a =C4=91=C6=B0=E1=BB=A3c kh=E1=BB=9Fi t=E1=BA=A1o= , vi=E1=BB=87c thay th=E1=BA=BF c=C3=B3 l=E1=BA=BD l=C3=A0 kh=C3=B4ng s=E1= =BA=B5n s=C3=A0ng\n" - -#: guix/scripts/substitute-binary.scm:640 -#, scheme-format -msgid "these substitute URLs will not be used:~{ ~a~}~%" -msgstr "URL thay th=E1=BA=BF s=E1=BA=BD kh=C3=B4ng =C4=91=C6=B0=E1=BB=A3= c d=C3=B9ng:~{ ~a~}~%" - -#: guix/scripts/substitute-binary.scm:666 -#, scheme-format -msgid "failed to look up host '~a' (~a), substituter disabled~%" -msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=C3=ACm m=C3=A1y =E2=80=9C~a=E2=80=9D= (~a), b=E1=BB=99 thay th=E1=BA=BF =C4=91=C3=A3 b=E1=BB=8B t=E1=BA=AFt~%" +#: guix/scripts/substitute.scm:878 +msgid "" +"ACL for archive imports seems to be uninitialized, substitutes may be " +"unavailable\n" +msgstr "" +"ACL d=C3=A0nh cho nh=E1=BA=ADp kho l=C6=B0u d=C6=B0=E1=BB=9Dng nh=C6=B0= l=C3=A0 ch=C6=B0a =C4=91=C6=B0=E1=BB=A3c kh=E1=BB=9Fi t=E1=BA=A1o, vi=E1= =BB=87c thay th=E1=BA=BF c=C3=B3 " +"l=E1=BA=BD l=C3=A0 kh=C3=B4ng s=E1=BA=B5n s=C3=A0ng\n" =20 -#: guix/scripts/substitute-binary.scm:777 +#: guix/scripts/substitute.scm:960 #, scheme-format msgid "~a: unrecognized options~%" msgstr "~a: kh=C3=B4ng ch=E1=BA=A5p nh=E1=BA=ADn c=C3=A1c t=C3=B9y ch=E1= =BB=8Dn~%" @@ -901,7 +1197,7 @@ msgstr "l=E1=BB=97i: kh=C3=B3a c=C3=B4ng kh=C3=B4ng = =C4=91=C3=BAng: ~a~%" msgid "error: corrupt signature data: ~a~%" msgstr "l=E1=BB=97i: d=E1=BB=AF li=E1=BB=87u ch=E1=BB=AF k=C3=BD b=E1=BB= =8B h=E1=BB=8Fng: ~a~%" =20 -#: guix/scripts/authenticate.scm:126 +#: guix/scripts/authenticate.scm:120 msgid "" "Usage: guix authenticate OPTION...\n" "Sign or verify the signature on the given file. This tool is meant to\= n" @@ -911,92 +1207,176 @@ msgstr "" "K=C3=BD ho=E1=BA=B7c x=C3=A1c minh ch=E1=BB=AF k=C3=BD tr=C3=AAn t=E1=BA= =ADp tin =C4=91=C3=A3 cho. C=C3=B4ng c=E1=BB=A5 n=C3=A0y =C4=91=C6=B0=E1= =BB=A3c d=C3=B9ng\n" "n=E1=BB=99i b=E1=BB=99 b=E1=BB=9Fi =E2=80=9Cguix-daemon=E2=80=9D.\n" =20 -#: guix/scripts/authenticate.scm:132 +#: guix/scripts/authenticate.scm:126 msgid "wrong arguments" msgstr "c=C3=A1c =C4=91=E1=BB=91i s=E1=BB=91 sai" =20 -#: guix/scripts/system.scm:75 -#, scheme-format -msgid "failed to open operating system file '~a': ~a~%" -msgstr "g=E1=BA=B7p l=E1=BB=97i khi m=E1=BB=9F t=E1=BA=ADp tin h=E1=BB=87= =C4=91i=E1=BB=81u h=C3=A0nh =E2=80=9C~a=E2=80=9D: ~a~%" - -#: guix/scripts/system.scm:79 -#, scheme-format -msgid "~a: error: ~a~%" -msgstr "~a: l=E1=BB=97i: ~a~%" - -#: guix/scripts/system.scm:83 -#, scheme-format -msgid "failed to load operating system file '~a':~%" -msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A3i t=E1=BA=ADp tin h=E1=BB=87= =C4=91i=E1=BB=81u h=C3=A0nh =E2=80=9C~a=E2=80=9D:~%" - -#: guix/scripts/system.scm:120 +#: guix/scripts/system.scm:110 #, scheme-format msgid "failed to register '~a' under '~a'~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi =C4=91=C4=83ng k=C3=BD =E2=80=9C~a=E2= =80=9D d=C6=B0=E1=BB=9Bi ~a~%" =20 -#: guix/scripts/system.scm:152 +#: guix/scripts/system.scm:142 #, scheme-format msgid "failed to install GRUB on device '~a'~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi c=C3=A0i =C4=91=E1=BA=B7t GRUB tr=C3= =AAn thi=E1=BA=BFt b=E1=BB=8B =E2=80=9C~a'~%" =20 -#: guix/scripts/system.scm:169 +#: guix/scripts/system.scm:160 #, scheme-format msgid "initializing the current root file system~%" msgstr "=C4=91ang kh=E1=BB=9Fi t=E1=BA=A1o h=E1=BB=87 th=E1=BB=91ng t=E1= =BA=ADp tin g=E1=BB=91c hi=E1=BB=87n t=E1=BA=A1i~%" =20 -#: guix/scripts/system.scm:223 +#: guix/scripts/system.scm:174 +#, scheme-format +msgid "not running as 'root', so the ownership of '~a' may be incorrect!= ~%" +msgstr "" + +#: guix/scripts/system.scm:219 +#, scheme-format +msgid "while talking to shepherd: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:265 +#, fuzzy, scheme-format +msgid "unloading service '~a'...~%" +msgstr "=C4=91ang gi=E1=BA=A3i n=C3=A9n =E2=80=9C~a=E2=80=9D=E2=80=A6~%" + +#: guix/scripts/system.scm:273 +#, scheme-format +msgid "loading new services:~{ ~a~}...~%" +msgstr "" + +#: guix/scripts/system.scm:294 #, scheme-format msgid "activating system...~%" msgstr "=C4=91ang k=C3=ADch ho=E1=BA=A1t h=E1=BB=87 th=E1=BB=91ng=E2=80=A6= ~%" =20 -#: guix/scripts/system.scm:273 +#: guix/scripts/system.scm:380 +msgid "the DAG of services" +msgstr "" + +#: guix/scripts/system.scm:393 +msgid "the dependency graph of shepherd services" +msgstr "" + +#: guix/scripts/system.scm:414 +#, fuzzy, scheme-format +msgid " file name: ~a~%" +msgstr "s=E1=BB=91 kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~a~%" + +#: guix/scripts/system.scm:415 #, scheme-format -msgid "unrecognized boot parameters for '~a'~%" -msgstr "tham s=E1=BB=91 kh=E1=BB=9Fi =C4=91=E1=BB=99ng kh=C3=B4ng =C4=91= =C6=B0=E1=BB=A3c th=E1=BB=ABa nh=E1=BA=ADn cho =E2=80=9C~a'~%" +msgid " canonical file name: ~a~%" +msgstr "" =20 -#: guix/scripts/system.scm:369 +#. TRANSLATORS: Please preserve the two-space indentation. +#: guix/scripts/system.scm:417 +#, fuzzy, scheme-format +msgid " label: ~a~%" +msgstr "~a: ~a~%" + +#: guix/scripts/system.scm:418 +#, scheme-format +msgid " root device: ~a~%" +msgstr "" + +#: guix/scripts/system.scm:419 +#, fuzzy, scheme-format +msgid " kernel: ~a~%" +msgstr "~a: l=E1=BB=97i: ~a~%" + +#: guix/scripts/system.scm:527 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "=C4=91ang kh=E1=BB=9Fi t=E1=BA=A1o h=E1=BB=87 =C4=91i=E1=BB=81u = h=C3=A0nh d=C6=B0=E1=BB=9Bi =E2=80=9C~a=E2=80=9D=E2=80=A6~%" =20 -#: guix/scripts/system.scm:385 +#: guix/scripts/system.scm:566 +#, fuzzy msgid "" -"Usage: guix system [OPTION] ACTION FILE\n" +"Usage: guix system [OPTION] ACTION [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" msgstr "" "C=C3=A1ch d=C3=B9ng: guix system [T=C3=99Y-CH=E1=BB=8CN] THAO-T=C3=81C = T=E1=BA=ACP-TIN\n" "bi=C3=AAn d=E1=BB=8Bch h=E1=BB=87 =C4=91i=E1=BB=81u h=C3=A0nh khai b=C3= =A1o trong T=E1=BA=ACP-TIN tu=C3=A2n theo THAO-T=C3=81C.\n" =20 -#: guix/scripts/system.scm:388 +#: guix/scripts/system.scm:569 guix/scripts/container.scm:28 msgid "The valid values for ACTION are:\n" msgstr "C=C3=A1c gi=C3=A1 tr=E1=BB=8B h=E1=BB=A3p l=E1=BB=87 cho THAO T=C3= =81C l=C3=A0:\n" =20 -#: guix/scripts/system.scm:389 -msgid " - 'reconfigure', switch to a new operating system configuration= \n" +#: guix/scripts/system.scm:571 +#, fuzzy +msgid " reconfigure switch to a new operating system configuratio= n\n" msgstr " - =E2=80=9Creconfigure=E2=80=9D, chuy=E1=BB=83n th=C3=A0nh c=E1= =BA=A5u h=C3=ACnh h=E1=BB=87 =C4=91i=E1=BB=81u h=C3=A0nh m=E1=BB=9Bi\n" =20 -#: guix/scripts/system.scm:391 -msgid " - 'build', build the operating system without installing anythi= ng\n" +#: guix/scripts/system.scm:573 +msgid " list-generations list the system generations\n" +msgstr "" + +#: guix/scripts/system.scm:575 +#, fuzzy +msgid "" +" build build the operating system without installing anyth= ing\n" msgstr " - =E2=80=9Cbuild=E2=80=9D, bi=C3=AAn d=E1=BB=8Bch h=E1=BB=87 =C4= =91i=E1=BB=81u h=C3=A0nh m=C3=A0 kh=C3=B4ng c=C3=A0i g=C3=AC\n" =20 -#: guix/scripts/system.scm:393 -msgid " - 'vm', build a virtual machine image that shares the host's st= ore\n" -msgstr " - =E2=80=9Cvm=E2=80=9D, bi=C3=AAn d=E1=BB=8Bch m=E1=BB=99t =E1= =BA=A3nh m=C3=A1y =E1=BA=A3o ki=E1=BB=83u m=C3=A0 c=C3=B3 th=E1=BB=83 chi= a s=E1=BA=BB tr=C3=AAn kho m=C3=A1y\n" +#: guix/scripts/system.scm:577 +#, fuzzy +msgid " container build a container that shares the host's stor= e\n" +msgstr "" +" - =E2=80=9Cvm=E2=80=9D, bi=C3=AAn d=E1=BB=8Bch m=E1=BB=99t =E1=BA=A3n= h m=C3=A1y =E1=BA=A3o ki=E1=BB=83u m=C3=A0 c=C3=B3 th=E1=BB=83 chia s=E1=BA= =BB tr=C3=AAn kho m=C3=A1y\n" =20 -#: guix/scripts/system.scm:395 -msgid " - 'vm-image', build a freestanding virtual machine image\n" +#: guix/scripts/system.scm:579 +#, fuzzy +msgid "" +" vm build a virtual machine image that shares the host'= s " +"store\n" +msgstr "" +" - =E2=80=9Cvm=E2=80=9D, bi=C3=AAn d=E1=BB=8Bch m=E1=BB=99t =E1=BA=A3n= h m=C3=A1y =E1=BA=A3o ki=E1=BB=83u m=C3=A0 c=C3=B3 th=E1=BB=83 chia s=E1=BA= =BB tr=C3=AAn kho m=C3=A1y\n" + +#: guix/scripts/system.scm:581 +#, fuzzy +msgid " vm-image build a freestanding virtual machine image\n" msgstr " - =E2=80=9Cvm-image=E2=80=9D, bi=C3=AAn d=E1=BB=8Bch m=E1=BB=99= t =E1=BA=A3nh m=C3=A1y =E1=BA=A3o =C4=91=E1=BB=A9ng t=E1=BB=B1 do\n" =20 -#: guix/scripts/system.scm:397 -msgid " - 'disk-image', build a disk image, suitable for a USB stick\n" +#: guix/scripts/system.scm:583 +#, fuzzy +msgid " disk-image build a disk image, suitable for a USB stick\= n" msgstr " - =E2=80=9Cdisk-image=E2=80=9D, bi=C3=AAn d=E1=BB=8Bch =E1=BA=A3= nh =C4=91=C4=A9a, ph=C3=B9 h=E1=BB=A3p =C4=91=E1=BB=83 d=C3=B9ng cho =C4=91= =C4=A9a USB\n" =20 -#: guix/scripts/system.scm:399 -msgid " - 'init', initialize a root file system to run GNU.\n" +#: guix/scripts/system.scm:585 +#, fuzzy +msgid " init initialize a root file system to run GNU\n" msgstr " - =E2=80=9Cinit=E2=80=9D, kh=E1=BB=9Fi t=E1=BA=A1o m=E1=BB=99t= h=E1=BB=87 th=E1=BB=91ng t=E1=BA=ADp tin g=E1=BB=91c =C4=91=E1=BB=83 ch=E1= =BA=A1y GNU.\n" =20 -#: guix/scripts/system.scm:403 +#: guix/scripts/system.scm:587 +msgid " extension-graph emit the service extension graph in Dot forma= t\n" +msgstr "" + +#: guix/scripts/system.scm:589 +msgid " shepherd-graph emit the graph of shepherd services in Dot fo= rmat\n" +msgstr "" + +#: guix/scripts/system.scm:593 +#, fuzzy +msgid "" +"\n" +" -d, --derivation return the derivation of the given system" +msgstr "" +"\n" +" -d, --derivations tr=E1=BA=A3 v=E1=BB=81 c=C3=A1c =C4=91=C6=B0=E1= =BB=9Dng d=E1=BA=ABn ngu=E1=BB=93n g=E1=BB=91c c=E1=BB=A7a c=C3=A1c g=C3=B3= i =C4=91=C3=A3 cho" + +#: guix/scripts/system.scm:595 +#, fuzzy +msgid "" +"\n" +" --on-error=3DSTRATEGY\n" +" apply STRATEGY when an error occurs while read= ing " +"FILE" +msgstr "" +"\n" +" --with-source=3DM=C3=83_NGU=E1=BB=92N\n" +" d=C3=B9ng m=C3=A3 ngu=E1=BB=93n khi bi=C3=AAn = d=E1=BB=8Bch g=C3=B3i t=C6=B0=C6=A1ng =E1=BB=A9ng" + +#: guix/scripts/system.scm:598 msgid "" "\n" " --image-size=3DSIZE for 'vm-image', produce an image of SIZE" @@ -1004,7 +1384,7 @@ msgstr "" "\n" " --image-size=3DC=E1=BB=A0 cho =E2=80=9Cvm-image=E2=80=9D, s=E1= =BA=A3n sinh =E1=BA=A3nh theo C=E1=BB=A0 n=C3=A0y" =20 -#: guix/scripts/system.scm:405 +#: guix/scripts/system.scm:600 msgid "" "\n" " --no-grub for 'init', do not install GRUB" @@ -1012,23 +1392,25 @@ msgstr "" "\n" " --no-grub d=C3=A0nh cho =E2=80=9Cinit=E2=80=9D, =C4=91=E1= =BB=ABng c=C3=A0i GRUB" =20 -#: guix/scripts/system.scm:407 +#: guix/scripts/system.scm:602 msgid "" "\n" " --share=3DSPEC for 'vm', share host file system according t= o SPEC" msgstr "" "\n" -" --share=3DSPEC cho =E2=80=9Cvm=E2=80=9D, chia s=E1=BA=BB h=E1= =BB=87 th=E1=BB=91ng t=E1=BA=ADp tin ch=E1=BB=A7 tu=C3=A2n theo SPEC" +" --share=3DSPEC cho =E2=80=9Cvm=E2=80=9D, chia s=E1=BA=BB h=E1= =BB=87 th=E1=BB=91ng t=E1=BA=ADp tin ch=E1=BB=A7 tu=C3=A2n theo " +"SPEC" =20 -#: guix/scripts/system.scm:409 +#: guix/scripts/system.scm:604 msgid "" "\n" " --expose=3DSPEC for 'vm', expose host file system according = to SPEC" msgstr "" "\n" -" --expose=3DSPEC cho =E2=80=9Cvm=E2=80=9D, ph=C6=A1i b=C3=A0y= h=E1=BB=87 th=E1=BB=91ng t=E1=BA=ADp tin ch=E1=BB=A7 tu=C3=A2n theo SPEC= " +" --expose=3DSPEC cho =E2=80=9Cvm=E2=80=9D, ph=C6=A1i b=C3=A0y= h=E1=BB=87 th=E1=BB=91ng t=E1=BA=ADp tin ch=E1=BB=A7 tu=C3=A2n theo " +"SPEC" =20 -#: guix/scripts/system.scm:411 +#: guix/scripts/system.scm:606 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -1036,35 +1418,49 @@ msgstr "" "\n" " --full-boot cho =E2=80=9Cvm=E2=80=9D, t=E1=BA=A1o m=E1=BB=99= t chu=E1=BB=97i m=E1=BB=93i =C4=91=E1=BA=A7y =C4=91=E1=BB=A7" =20 -#: guix/scripts/system.scm:507 +#: guix/scripts/system.scm:690 +#, scheme-format +msgid "no configuration file specified~%" +msgstr "ch=C6=B0a ghi r=C3=B5 t=E1=BA=ADp tin nh=E1=BA=ADp c=E1=BA=A5u h= =C3=ACnh~%" + +#: guix/scripts/system.scm:753 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: kh=C3=B4ng hi=E1=BB=83u thao t=C3=A1c~%" =20 -#: guix/scripts/system.scm:524 +#: guix/scripts/system.scm:768 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "sai s=E1=BB=91 l=C6=B0=E1=BB=A3ng =C4=91=E1=BB=91i s=E1=BB=91 ch= o thao t=C3=A1c =E2=80=9C~a'~%" =20 -#: guix/scripts/system.scm:544 -#, scheme-format -msgid "no configuration file specified~%" -msgstr "ch=C6=B0a ghi r=C3=B5 t=E1=BA=ADp tin nh=E1=BA=ADp c=E1=BA=A5u h= =C3=ACnh~%" +#: guix/scripts/system.scm:773 +#, fuzzy, scheme-format +msgid "guix system: missing command name~%" +msgstr "guix: thi=E1=BA=BFu t=C3=AAn l=E1=BB=87nh~%" + +#: guix/scripts/system.scm:775 +#, fuzzy, scheme-format +msgid "Try 'guix system --help' for more information.~%" +msgstr "Ch=E1=BA=A1y l=E1=BB=87nh =E2=80=9Cguix --help=E2=80=9D =C4=91=E1= =BB=83 bi=E1=BA=BFt th=C3=AAm th=C3=B4ng tin.~%" =20 -#: guix/scripts/lint.scm:82 +#: guix/scripts/lint.scm:126 #, scheme-format msgid "Available checkers:~%" msgstr "C=C3=A1c b=E1=BB=99 ki=E1=BB=83m =C4=91=E1=BB=8Bnh s=E1=BA=B5n c= =C3=B3:~%" =20 -#: guix/scripts/lint.scm:102 +#: guix/scripts/lint.scm:146 msgid "description should not be empty" msgstr "ph=E1=BA=A7n m=C3=B4 t=E1=BA=A3 kh=C3=B4ng th=E1=BB=83 l=C3=A0 r= =E1=BB=97ng" =20 -#: guix/scripts/lint.scm:109 +#: guix/scripts/lint.scm:156 +msgid "Texinfo markup in description is invalid" +msgstr "" + +#: guix/scripts/lint.scm:164 msgid "description should start with an upper-case letter or digit" msgstr "ph=E1=BA=A7n m=C3=B4 t=E1=BA=A3 n=C3=AAn b=E1=BA=AFt =C4=91=E1=BA= =A7u b=E1=BA=B1ng m=E1=BB=99t ch=E1=BB=AF HOA hay ch=E1=BB=AF s=E1=BB=91" =20 -#: guix/scripts/lint.scm:125 +#: guix/scripts/lint.scm:180 #, scheme-format msgid "" "sentences in description should be followed ~\n" @@ -1073,119 +1469,207 @@ msgstr "" "c=C3=A1c c=C3=A2u trong ph=E1=BA=A7n m=C3=B4 t=E1=BA=A3 n=C3=AAn theo s= au b=E1=BB=9Fi ~\n" "hai d=E1=BA=A5u c=C3=A1ch; c=C3=B3 th=E1=BB=83 ph=E1=BA=A1m lu=E1=BA=AD= t ~p t=E1=BA=A1i ~{~a~^, ~}" =20 -#: guix/scripts/lint.scm:146 +#: guix/scripts/lint.scm:204 msgid "pkg-config should probably be a native input" msgstr "pkg-config n=C3=AAn h=E1=BA=A7u nh=C6=B0 ch=E1=BA=AFc ch=E1=BA=AF= n l=C3=A0 =C4=91=E1=BA=A7u v=C3=A0o nguy=C3=AAn b=E1=BA=A3n" =20 -#: guix/scripts/lint.scm:161 +#: guix/scripts/lint.scm:219 msgid "synopsis should not be empty" msgstr "t=C3=B3m l=C6=B0=E1=BB=A3c kh=C3=B4ng th=E1=BB=83 tr=E1=BB=91ng = r=E1=BB=97ng" =20 -#: guix/scripts/lint.scm:169 +#: guix/scripts/lint.scm:227 msgid "no period allowed at the end of the synopsis" msgstr "kh=C3=B4ng c=C3=B3 d=E1=BA=A5u ch=E1=BA=A5m =E1=BB=9F cu=E1=BB=91= i ph=E1=BA=A7n t=C3=B3m l=C6=B0=E1=BB=A3c" =20 -#: guix/scripts/lint.scm:181 +#: guix/scripts/lint.scm:239 msgid "no article allowed at the beginning of the synopsis" msgstr "kh=C3=B4ng c=C3=B3 b=C3=A0i vi=E1=BA=BFt t=E1=BA=A1i =C4=91=E1=BA= =A7u c=E1=BB=A7a t=C3=B3m l=C6=B0=E1=BB=A3c" =20 -#: guix/scripts/lint.scm:188 +#: guix/scripts/lint.scm:246 msgid "synopsis should be less than 80 characters long" msgstr "t=C3=B3m l=C6=B0=E1=BB=A3c n=C3=AAn ng=E1=BA=AFn h=C6=A1n 80 k=C3= =BD t=E1=BB=B1" =20 -#: guix/scripts/lint.scm:194 +#: guix/scripts/lint.scm:252 msgid "synopsis should start with an upper-case letter or digit" msgstr "ph=E1=BA=A7n t=C3=B3m l=C6=B0=E1=BB=A3c n=C3=AAn b=E1=BA=AFt =C4= =91=E1=BA=A7u b=E1=BA=B1ng m=E1=BB=99t ch=E1=BB=AF HOA hay ch=E1=BB=AF s=E1= =BB=91" =20 -#: guix/scripts/lint.scm:201 +#: guix/scripts/lint.scm:259 msgid "synopsis should not start with the package name" msgstr "ph=E1=BA=A7n t=C3=B3m l=C6=B0=E1=BB=A3c kh=C3=B4ng n=C3=AAn b=E1= =BA=AFt =C4=91=E1=BA=A7u b=E1=BA=B1ng t=C3=AAn g=C3=B3i" =20 -#: guix/scripts/lint.scm:270 +#: guix/scripts/lint.scm:353 guix/scripts/lint.scm:365 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a kh=C3=B4ng th=E1=BB=83 ti=E1=BA=BFp c=E1=BA=ADn: ~a (~s)" =20 -#: guix/scripts/lint.scm:278 +#: guix/scripts/lint.scm:372 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "URI ~a kh=C3=B4ng t=C3=ACm th=E1=BA=A5y mi=E1=BB=81n: ~a" =20 -#: guix/scripts/lint.scm:286 +#: guix/scripts/lint.scm:380 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a kh=C3=B4ng ti=E1=BA=BFp c=E1=BA=ADn =C4=91=C6=B0=E1=BB=A3= c: ~a" =20 -#: guix/scripts/lint.scm:312 +#: guix/scripts/lint.scm:406 msgid "invalid value for home page" msgstr "gi=C3=A1 tr=E1=BB=8B c=E1=BB=A7a trang ch=E1=BB=A7 kh=C3=B4ng h=E1= =BB=A3p l=E1=BB=87" =20 -#: guix/scripts/lint.scm:315 +#: guix/scripts/lint.scm:409 #, scheme-format msgid "invalid home page URL: ~s" msgstr "URL trang ch=E1=BB=A7 kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~s" =20 -#: guix/scripts/lint.scm:336 +#: guix/scripts/lint.scm:429 msgid "file names of patches should start with the package name" msgstr "t=C3=AAn t=E1=BA=ADp tin c=E1=BB=A7a c=C3=A1c mi=E1=BA=BFng v=C3= =A1 n=C3=AAn b=E1=BA=AFt =C4=91=E1=BA=A7u b=E1=BA=B1ng t=C3=AAn c=E1=BB=A7= a g=C3=B3i" =20 -#: guix/scripts/lint.scm:374 +#: guix/scripts/lint.scm:466 #, scheme-format msgid "~a: ~a: proposed synopsis: ~s~%" msgstr "~a: ~a: t=C3=B3m l=C6=B0=E1=BB=A3c d=E1=BB=B1 ki=E1=BA=BFn: ~s~%= " =20 -#: guix/scripts/lint.scm:386 +#: guix/scripts/lint.scm:478 #, scheme-format msgid "~a: ~a: proposed description:~% \"~a\"~%" msgstr "~a: ~a: m=C3=B4 t=E1=BA=A3 d=E1=BB=B1 ki=E1=BA=BFn:~% \"~a\"= ~%" =20 -#: guix/scripts/lint.scm:415 +#: guix/scripts/lint.scm:515 +#, fuzzy +msgid "all the source URIs are unreachable:" +msgstr "URI ~a kh=C3=B4ng ti=E1=BA=BFp c=E1=BA=ADn =C4=91=C6=B0=E1=BB=A3= c: ~a" + +#: guix/scripts/lint.scm:538 +#, fuzzy +msgid "the source file name should contain the package name" +msgstr "t=C3=AAn t=E1=BA=ADp tin c=E1=BB=A7a c=C3=A1c mi=E1=BA=BFng v=C3= =A1 n=C3=AAn b=E1=BA=AFt =C4=91=E1=BA=A7u b=E1=BA=B1ng t=C3=AAn c=E1=BB=A7= a g=C3=B3i" + +#: guix/scripts/lint.scm:547 guix/scripts/lint.scm:551 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~a" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A1o g=E1=BB=91c GC =E2=80=9C= ~a=E2=80=9D: ~a~%" + +#: guix/scripts/lint.scm:557 +#, fuzzy, scheme-format +msgid "failed to create derivation: ~s~%" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi =C4=91=E1=BB=8Dc bi=E1=BB=83u th=E1=BB= =A9c ~s: ~s~%" + +#: guix/scripts/lint.scm:567 +#, fuzzy +msgid "invalid license field" +msgstr "th=E1=BA=BB b=C3=A0i li=C3=AAn k=E1=BA=BFt m=E1=BB=81m kh=C3=B4n= g h=E1=BB=A3p l=E1=BB=87" + +#: guix/scripts/lint.scm:596 +#, fuzzy, scheme-format +msgid "failed to lookup NIST host: ~a~%" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi c=C3=A0i =C4=91=E1=BA=B7t mi=E1=BB=81= n =C4=91=E1=BB=8Ba ph=C6=B0=C6=A1ng: ~a~%" + +#: guix/scripts/lint.scm:598 +#, scheme-format +msgid "assuming no CVE vulnerabilities~%" +msgstr "" + +#: guix/scripts/lint.scm:623 +#, scheme-format +msgid "probably vulnerable to ~a" +msgstr "" + +#: guix/scripts/lint.scm:638 +#, scheme-format +msgid "tabulation on line ~a, column ~a" +msgstr "" + +#: guix/scripts/lint.scm:647 +#, scheme-format +msgid "trailing white space on line ~a" +msgstr "" + +#: guix/scripts/lint.scm:657 +#, scheme-format +msgid "line ~a is way too long (~a characters)" +msgstr "" + +#: guix/scripts/lint.scm:668 +#, scheme-format +msgid "line ~a: parentheses feel lonely, move to the previous or next li= ne" +msgstr "" + +#: guix/scripts/lint.scm:723 msgid "Validate package descriptions" msgstr "Ph=C3=AA duy=E1=BB=87t m=C3=B4 t=E1=BA=A3 g=C3=B3i" =20 -#: guix/scripts/lint.scm:419 +#: guix/scripts/lint.scm:727 msgid "Validate synopsis & description of GNU packages" msgstr "Ph=C3=AA duy=E1=BB=87t t=C3=B3m l=C6=B0=E1=BB=A3c v=C3=A0 m=C3=B4= t=E1=BA=A3 g=C3=B3i GNU" =20 -#: guix/scripts/lint.scm:423 +#: guix/scripts/lint.scm:731 msgid "Identify inputs that should be native inputs" msgstr "=C4=90=E1=BA=A7u v=C3=A0o =C4=91=E1=BB=8Bnh danh c=C3=A1i m=C3=A0= c=C3=B3 th=E1=BB=83 l=C3=A0 =C4=91=E1=BA=A7u v=C3=A0o t=E1=BB=B1 nhi=C3=AA= n" =20 -#: guix/scripts/lint.scm:427 -msgid "Validate file names of patches" +#: guix/scripts/lint.scm:735 +#, fuzzy +msgid "Validate file names and availability of patches" msgstr "Ph=C3=AA duy=E1=BB=87t t=C3=AAn t=E1=BA=ADp tin c=E1=BB=A7a b=E1= =BA=A3n v=C3=A1" =20 -#: guix/scripts/lint.scm:431 +#: guix/scripts/lint.scm:739 msgid "Validate home-page URLs" msgstr "Ph=C3=AA duy=E1=BB=87t c=C3=A1c URL trang ch=E1=BB=A7" =20 -#: guix/scripts/lint.scm:435 +#. TRANSLATORS: is the name of a data type and must not be +#. translated. +#: guix/scripts/lint.scm:745 +msgid "Make sure the 'license' field is a or a list thereof" +msgstr "" + +#: guix/scripts/lint.scm:750 msgid "Validate source URLs" msgstr "Ph=C3=AA chu=E1=BA=A9n c=C3=A1c URL" =20 -#: guix/scripts/lint.scm:439 +#: guix/scripts/lint.scm:754 +#, fuzzy +msgid "Validate file names of sources" +msgstr "Ph=C3=AA duy=E1=BB=87t t=C3=AAn t=E1=BA=ADp tin c=E1=BB=A7a b=E1= =BA=A3n v=C3=A1" + +#: guix/scripts/lint.scm:758 +msgid "Report failure to compile a package to a derivation" +msgstr "" + +#: guix/scripts/lint.scm:762 msgid "Validate package synopses" msgstr "Ph=C3=AA duy=E1=BB=87t ph=E1=BA=A7n t=C3=B3m l=C6=B0=E1=BB=A3c c= =E1=BB=A7a g=C3=B3i" =20 -#: guix/scripts/lint.scm:464 +#: guix/scripts/lint.scm:766 +msgid "Check the Common Vulnerabilities and Exposures (CVE) database" +msgstr "" + +#: guix/scripts/lint.scm:771 +msgid "Look for formatting issues in the source" +msgstr "" + +#: guix/scripts/lint.scm:796 +#, fuzzy msgid "" "Usage: guix lint [OPTION]... [PACKAGE]...\n" -"Run a set of checkers on the specified package; if none is specified, r= un the checkers on all packages.\n" +"Run a set of checkers on the specified package; if none is specified,\n= " +"run the checkers on all packages.\n" msgstr "" "Usage: guix lint [T=C3=99Y CH=E1=BB=8CN]=E2=80=A6 [G=C3=93I]=E2=80=A6\n= " -"Ch=E1=BA=A1y m=E1=BB=99t nh=C3=B3m c=C3=A1c b=E1=BB=99 ki=E1=BB=83m =C4= =91=E1=BB=8Bnh tr=C3=AAn g=C3=B3i =C4=91=C3=A3 ch=E1=BB=89 ra; n=E1=BA=BF= u kh=C3=B4ng ch=E1=BB=89 ra c=C3=A1i n=C3=A0o, ch=E1=BA=A1y c=C3=A1c b=E1= =BB=99 ki=E1=BB=83m =C4=91=E1=BB=8Bnh tr=C3=AAn m=E1=BB=8Di g=C3=B3i.\n" +"Ch=E1=BA=A1y m=E1=BB=99t nh=C3=B3m c=C3=A1c b=E1=BB=99 ki=E1=BB=83m =C4= =91=E1=BB=8Bnh tr=C3=AAn g=C3=B3i =C4=91=C3=A3 ch=E1=BB=89 ra; n=E1=BA=BF= u kh=C3=B4ng ch=E1=BB=89 ra c=C3=A1i n=C3=A0o, " +"ch=E1=BA=A1y c=C3=A1c b=E1=BB=99 ki=E1=BB=83m =C4=91=E1=BB=8Bnh tr=C3=AA= n m=E1=BB=8Di g=C3=B3i.\n" =20 -#: guix/scripts/lint.scm:466 +#: guix/scripts/lint.scm:799 +#, fuzzy msgid "" "\n" " -c, --checkers=3DCHECKER1,CHECKER2...\n" -" only run the specificed checkers" +" only run the specified checkers" msgstr "" "\n" " -c, --checkers=3DKI=E1=BB=82M1,KI=E1=BB=82M2=E2=80=A6\n" " ch=E1=BB=89 ch=E1=BA=A1y nh=E1=BB=AFng b=E1=BB= =99 ki=E1=BB=83m =C4=91=C3=A3 cho" =20 -#: guix/scripts/lint.scm:471 +#: guix/scripts/lint.scm:804 msgid "" "\n" " -l, --list-checkers display the list of available lint checkers" @@ -1193,49 +1677,411 @@ msgstr "" "\n" " -l, --list-checkers hi=E1=BB=83n th=E1=BB=8B danh s=C3=A1ch b=E1=BB= =99 ki=E1=BB=83m s=E1=BA=B5n c=C3=B3" =20 -#: guix/scripts/lint.scm:491 +#: guix/scripts/lint.scm:824 #, scheme-format msgid "~a: invalid checker~%" msgstr "~a: b=E1=BB=99 ki=E1=BB=83m tra kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87= ~%" =20 -#: guix/gnu-maintenance.scm:438 +#: guix/scripts/publish.scm:52 +#, scheme-format +msgid "" +"Usage: guix publish [OPTION]...\n" +"Publish ~a over HTTP.\n" +msgstr "" + +#: guix/scripts/publish.scm:54 +msgid "" +"\n" +" -p, --port=3DPORT listen on PORT" +msgstr "" + +#: guix/scripts/publish.scm:56 +#, fuzzy +msgid "" +"\n" +" --listen=3DHOST listen on the network interface for HOST" +msgstr "" +"\n" +" --references li=E1=BB=87t k=C3=AA c=C3=A1c tham chi=E1=BA=BF= u c=E1=BB=A7a =C4=90=C6=AF=E1=BB=9CNG-D=E1=BA=AAN" + +#: guix/scripts/publish.scm:58 +msgid "" +"\n" +" -u, --user=3DUSER change privileges to USER as soon as possibl= e" +msgstr "" + +#: guix/scripts/publish.scm:60 +msgid "" +"\n" +" -r, --repl[=3DPORT] spawn REPL server on PORT" +msgstr "" + +#: guix/scripts/publish.scm:76 +#, fuzzy, scheme-format +msgid "lookup of host '~a' failed: ~a~%" +msgstr "t=E1=BA=A3i v=E1=BB=81 t=E1=BB=AB =E2=80=9C~a=E2=80=9D g=E1=BA=B7= p l=E1=BB=97i: ~a, ~s~%" + +#: guix/scripts/publish.scm:100 +#, scheme-format +msgid "lookup of host '~a' returned nothing" +msgstr "" + +#: guix/scripts/publish.scm:343 +#, fuzzy, scheme-format +msgid "user '~a' not found: ~a~%" +msgstr "URI ~a kh=C3=B4ng t=C3=ACm th=E1=BA=A5y mi=E1=BB=81n: ~a" + +#: guix/scripts/publish.scm:378 +#, scheme-format +msgid "server running as root; consider using the '--user' option!~%" +msgstr "" + +#: guix/scripts/publish.scm:380 +#, scheme-format +msgid "publishing ~a on ~a, port ~d~%" +msgstr "" + +#: guix/scripts/edit.scm:41 +msgid "" +"Usage: guix edit PACKAGE...\n" +"Start $VISUAL or $EDITOR to edit the definitions of PACKAGE...\n" +msgstr "" + +#: guix/scripts/edit.scm:62 +#, scheme-format +msgid "file '~a' not found in search path ~s~%" +msgstr "" + +#: guix/scripts/edit.scm:83 +#, scheme-format +msgid "source location of package '~a' is unknown~%" +msgstr "" + +#: guix/scripts/edit.scm:96 +#, fuzzy, scheme-format +msgid "failed to launch '~a': ~a~%" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi k=E1=BA=BFt n=E1=BB=91i =C4=91=E1=BA= =BFn =E2=80=9C~a=E2=80=9D: ~a~%" + +#: guix/scripts/size.scm:75 +#, scheme-format +msgid "no available substitute information for '~a'~%" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "store item" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "total" +msgstr "" + +#: guix/scripts/size.scm:83 +msgid "self" +msgstr "" + +#. TRANSLATORS: This is the title of a graph, meaning that the graph +#. represents a profile of the store (the "store" being the place where +#. packages are stored.) +#: guix/scripts/size.scm:204 +msgid "store profile" +msgstr "" + +#: guix/scripts/size.scm:213 +#, fuzzy +msgid "" +"Usage: guix size [OPTION]... PACKAGE\n" +"Report the size of PACKAGE and its dependencies.\n" +msgstr "" +"C=C3=A1ch d=C3=B9ng: guix package [T=C3=99Y CH=E1=BB=8CN]=E2=80=A6 G=C3= =93I=E2=80=A6\n" +"C=C3=A0i =C4=91=E1=BA=B7t, g=E1=BB=A1 b=E1=BB=8F hay c=E1=BA=ADp nh=E1=BA= =ADt G=C3=93I trong m=E1=BB=99t giao d=E1=BB=8Bch =C4=91=C6=A1n.\n" + +#: guix/scripts/size.scm:218 +#, fuzzy +msgid "" +"\n" +" -s, --system=3DSYSTEM consider packages for SYSTEM--e.g., \"i686-l= inux\"" +msgstr "" +"\n" +" -s, --system=3DH=E1=BB=86-TH=E1=BB=90NG c=E1=BB=91 bi=C3=AAn d=E1=BB= =8Bch cho H=E1=BB=86-TH=E1=BB=90NG--v=C3=AD d=E1=BB=A5: \"i686-linux\"" + +#: guix/scripts/size.scm:220 +msgid "" +"\n" +" -m, --map-file=3DFILE write to FILE a graphical map of disk usage" +msgstr "" + +#: guix/scripts/size.scm:274 +msgid "missing store item argument\n" +msgstr "" + +#: guix/scripts/size.scm:292 +#, fuzzy +msgid "too many arguments\n" +msgstr "c=C3=A1c =C4=91=E1=BB=91i s=E1=BB=91 sai" + +#: guix/scripts/graph.scm:76 +msgid "the DAG of packages, excluding implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:132 +msgid "the DAG of packages, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:141 +msgid "the DAG of packages and origins, including implicit inputs" +msgstr "" + +#: guix/scripts/graph.scm:171 +msgid "same as 'bag', but without the bootstrap nodes" +msgstr "" + +#: guix/scripts/graph.scm:216 +msgid "the DAG of derivations" +msgstr "" + +#: guix/scripts/graph.scm:240 +#, scheme-format +msgid "references for '~a' are not known~%" +msgstr "" + +#: guix/scripts/graph.scm:247 +msgid "the DAG of run-time dependencies (store references)" +msgstr "" + +#: guix/scripts/graph.scm:277 +#, fuzzy, scheme-format +msgid "~a: unknown node type~%" +msgstr "~a: kh=C3=B4ng hi=E1=BB=83u thao t=C3=A1c~%" + +#: guix/scripts/graph.scm:281 +#, fuzzy +msgid "The available node types are:\n" +msgstr "C=C3=A1c gi=C3=A1 tr=E1=BB=8B h=E1=BB=A3p l=E1=BB=87 cho THAO T=C3= =81C l=C3=A0:\n" + +#. TRANSLATORS: Here 'dot' is the name of a program; it must not be +#. translated. +#: guix/scripts/graph.scm:317 +msgid "" +"Usage: guix graph PACKAGE...\n" +"Emit a Graphviz (dot) representation of the dependencies of PACKAGE...\= n" +msgstr "" + +#: guix/scripts/graph.scm:319 +msgid "" +"\n" +" -t, --type=3DTYPE represent nodes of the given TYPE" +msgstr "" + +#: guix/scripts/graph.scm:321 +#, fuzzy +msgid "" +"\n" +" --list-types list the available graph types" +msgstr "" +"\n" +" --list-dead li=E1=BB=87t k=C3=AA c=C3=A1c =C4=91=C6=B0=E1=BB= =9Dng d=E1=BA=ABn =C4=91=C3=A3 ch=E1=BA=BFt" + +#: guix/scripts/graph.scm:323 +#, fuzzy +msgid "" +"\n" +" -e, --expression=3DEXPR consider the package EXPR evaluates to" +msgstr "" +"\n" +" -e, --expression=3DBTH=E1=BB=A8C bi=C3=AAn d=E1=BB=8Bch g=C3=B3i hay = t=C3=ACm ngu=E1=BB=93n g=E1=BB=91c BTH=E1=BB=A8C l=C6=B0=E1=BB=A3ng gi=C3= =A1 cho" + +#: guix/scripts/challenge.scm:104 +#, fuzzy, scheme-format +msgid "~a: no substitute at '~a'~%" +msgstr "=C4=91ang c=E1=BA=ADp nh=E1=BA=ADt danh s=C3=A1ch thay th=E1=BA=BF= t=E1=BB=AB =E2=80=9C~a=E2=80=9D=E2=80=A6~%" + +#: guix/scripts/challenge.scm:120 +#, fuzzy, scheme-format +msgid "no substitutes for '~a'~%" +msgstr "=C4=91ang c=E1=BA=ADp nh=E1=BA=ADt danh s=C3=A1ch thay th=E1=BA=BF= t=E1=BB=AB =E2=80=9C~a=E2=80=9D=E2=80=A6~%" + +#: guix/scripts/challenge.scm:137 guix/scripts/challenge.scm:157 +#, fuzzy, scheme-format +msgid "no local build for '~a'~%" +msgstr "kh=C3=B4ng c=C3=B3 nh=E1=BA=ADt k=C3=BD d=E1=BB=8Bch cho =E2=80=9C= ~a'~%" + +#: guix/scripts/challenge.scm:154 +#, scheme-format +msgid "~a contents differ:~%" +msgstr "" + +#: guix/scripts/challenge.scm:156 +#, scheme-format +msgid " local hash: ~a~%" +msgstr "" + +#: guix/scripts/challenge.scm:161 +#, fuzzy, scheme-format +msgid " ~50a: ~a~%" +msgstr "~a: ~a~%" + +#: guix/scripts/challenge.scm:165 +#, scheme-format +msgid " ~50a: unavailable~%" +msgstr "" + +#: guix/scripts/challenge.scm:175 +msgid "" +"Usage: guix challenge [PACKAGE...]\n" +"Challenge the substitutes for PACKAGE... provided by one or more server= s.\n" +msgstr "" + +#: guix/scripts/challenge.scm:177 +#, fuzzy +msgid "" +"\n" +" --substitute-urls=3DURLS\n" +" compare build results with those at URLS" +msgstr "" +"\n" +" --max-silent-time=3DGI=C3=82Y\n" +" =C4=91=C3=A1nh d=E1=BA=A5u l=C3=A0 vi=E1=BB=87= c d=E1=BB=8Bch s=E1=BA=BD l=C3=A0 l=E1=BB=97i n=E1=BA=BFu l=C3=A2u h=C6=A1= n s=E1=BB=91 GI=C3=82Y " +"n=C3=A0y" + +#: guix/gnu-maintenance.scm:514 +msgid "Updater for GNU packages" +msgstr "" + +#: guix/gnu-maintenance.scm:521 +msgid "Updater for GNOME packages" +msgstr "" + +#: guix/scripts/container.scm:25 +msgid "" +"Usage: guix container ACTION ARGS...\n" +"Build and manipulate Linux containers.\n" +msgstr "" + +#: guix/scripts/container.scm:30 +msgid " exec execute a command inside of an existing contai= ner\n" +msgstr "" + +#: guix/scripts/container.scm:53 +#, fuzzy, scheme-format +msgid "guix container: missing action~%" +msgstr "guix: thi=E1=BA=BFu t=C3=AAn l=E1=BB=87nh~%" + +#: guix/scripts/container.scm:63 +#, scheme-format +msgid "guix container: invalid action~%" +msgstr "" + +#: guix/scripts/container/exec.scm:40 +msgid "" +"Usage: guix container exec PID COMMAND [ARGS...]\n" +"Execute COMMMAND within the container process PID.\n" +msgstr "" + +#: guix/scripts/container/exec.scm:69 +#, fuzzy, scheme-format +msgid "~a: extraneous argument~%" +msgstr "~A: =C4=91=E1=BB=91i s=E1=BB=91 ngo=E1=BA=A1i lai~%" + +#: guix/scripts/container/exec.scm:80 +#, fuzzy, scheme-format +msgid "no pid specified~%" +msgstr "ch=C6=B0a ghi r=C3=B5 t=E1=BA=ADp tin nh=E1=BA=ADp c=E1=BA=A5u h= =C3=ACnh~%" + +#: guix/scripts/container/exec.scm:83 +#, fuzzy, scheme-format +msgid "no command specified~%" +msgstr "ch=C6=B0a ghi r=C3=B5 t=E1=BA=ADp tin nh=E1=BA=ADp c=E1=BA=A5u h= =C3=ACnh~%" + +#: guix/scripts/container/exec.scm:86 +#, scheme-format +msgid "no such process ~d~%" +msgstr "" + +#: guix/scripts/container/exec.scm:94 +#, scheme-format +msgid "exec failed with status ~d~%" +msgstr "" + +#: guix/upstream.scm:158 #, scheme-format msgid "signature verification failed for `~a'~%" msgstr "vi=E1=BB=87c x=C3=A1c minh ch=E1=BB=AF k=C3=BD cho =E2=80=9C~a'~= % g=E1=BA=B7p l=E1=BB=97i" =20 -#: guix/gnu-maintenance.scm:440 +#: guix/upstream.scm:160 #, scheme-format msgid "(could be because the public key is not in your keyring)~%" -msgstr "(c=C3=B3 th=E1=BB=83 nguy=C3=AAn nh=C3=A2n l=C3=A0 do kh=C3=B3a = c=C3=B4ng kh=C3=B4ng c=C3=B3 trong ch=C3=B9m ch=C3=ACa kh=C3=B3a c=E1=BB=A7= a b=E1=BA=A1n)~%" +msgstr "" +"(c=C3=B3 th=E1=BB=83 nguy=C3=AAn nh=C3=A2n l=C3=A0 do kh=C3=B3a c=C3=B4= ng kh=C3=B4ng c=C3=B3 trong ch=C3=B9m ch=C3=ACa kh=C3=B3a c=E1=BB=A7a b=E1= =BA=A1n)~%" + +#: guix/upstream.scm:192 +msgid "gz" +msgstr "" =20 -#: guix/gnu-maintenance.scm:515 +#: guix/upstream.scm:255 #, scheme-format msgid "~a: could not locate source file" msgstr "~a: kh=C3=B4ng th=E1=BB=83 x=C3=A1c =C4=91=E1=BB=8Bnh t=E1=BA=AD= p tin ngu=E1=BB=93n" =20 -#: guix/gnu-maintenance.scm:520 +#: guix/upstream.scm:260 #, scheme-format msgid "~a: ~a: no `version' field in source; skipping~%" msgstr "~a: ~a: kh=C3=B4ng c=C3=B3 tr=C6=B0=E1=BB=9Dng phi=C3=AAn b=E1=BA= =A3n =E2=80=9Cversion=E2=80=9D trong ngu=E1=BB=93n; b=E1=BB=8F qua~%" =20 -#: guix/ui.scm:137 +#: guix/ui.scm:236 +msgid "entering debugger; type ',bt' for a backtrace\n" +msgstr "" + +#: guix/ui.scm:252 guix/ui.scm:269 +#, fuzzy, scheme-format +msgid "failed to load '~a': ~a~%" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi k=E1=BA=BFt n=E1=BB=91i =C4=91=E1=BA= =BFn =E2=80=9C~a=E2=80=9D: ~a~%" + +#: guix/ui.scm:255 +#, scheme-format +msgid "~a: error: ~a~%" +msgstr "~a: l=E1=BB=97i: ~a~%" + +#: guix/ui.scm:258 guix/ui.scm:512 +#, scheme-format +msgid "exception thrown: ~s~%" +msgstr "" + +#: guix/ui.scm:260 guix/ui.scm:278 +#, fuzzy, scheme-format +msgid "failed to load '~a':~%" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi c=C3=A0i =C4=91=E1=BA=B7t mi=E1=BB=81= n =C4=91=E1=BB=8Ba ph=C6=B0=C6=A1ng: ~a~%" + +#: guix/ui.scm:272 +#, fuzzy, scheme-format +msgid "~a: warning: ~a~%" +msgstr "~a: l=E1=BB=97i: ~a~%" + +#: guix/ui.scm:275 +#, fuzzy, scheme-format +msgid "failed to load '~a': exception thrown: ~s~%" +msgstr "g=E1=BA=B7p l=E1=BB=97i khi =C4=91=E1=BB=8Dc bi=E1=BB=83u th=E1=BB= =A9c ~s: ~s~%" + +#: guix/ui.scm:287 #, scheme-format msgid "failed to install locale: ~a~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi c=C3=A0i =C4=91=E1=BA=B7t mi=E1=BB=81= n =C4=91=E1=BB=8Ba ph=C6=B0=C6=A1ng: ~a~%" =20 -#: guix/ui.scm:156 +#: guix/ui.scm:306 +#, fuzzy msgid "" -"Copyright (C) 2014 the Guix authors\n" -"License GPLv3+: GNU GPL version 3 or later \n" +"Copyright (C) 2016 the Guix authors\n" +"License GPLv3+: GNU GPL version 3 or later \n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" "B=E1=BA=A3n quy=E1=BB=81n (C) 2014 thu=E1=BB=99c v=E1=BB=81 c=C3=A1c t=C3= =A1c gi=E1=BA=A3 Guix.\n" -"Gi=E1=BA=A5y ph=C3=A9p GPL pb3+: Gi=E1=BA=A5y ph=C3=A9p C=C3=B4ng c=E1=BB= =99ng GNU phi=C3=AAn b=E1=BA=A3n 3 hay sau \n" +"Gi=E1=BA=A5y ph=C3=A9p GPL pb3+: Gi=E1=BA=A5y ph=C3=A9p C=C3=B4ng c=E1=BB= =99ng GNU phi=C3=AAn b=E1=BA=A3n 3 hay sau \n" "=C4=90=C3=A2y l=C3=A0 ph=E1=BA=A7n m=E1=BB=81m t=E1=BB=B1 do: b=E1=BA=A1= n c=C3=B3 quy=E1=BB=81n s=E1=BB=ADa =C4=91=E1=BB=95i v=C3=A0 ph=C3=A1t h=C3= =A0nh l=E1=BA=A1i n=C3=B3.\n" "KH=C3=94NG C=C3=93 B=E1=BA=A2O H=C3=80NH G=C3=8C C=E1=BA=A2, v=E1=BB=9B= i =C4=91i=E1=BB=81u ki=E1=BB=87n =C4=91=C6=B0=E1=BB=A3c ph=C3=A1p lu=E1=BA= =ADt cho ph=C3=A9p.\n" =20 -#: guix/ui.scm:164 +#: guix/ui.scm:314 #, scheme-format msgid "" "\n" @@ -1245,7 +2091,7 @@ msgstr "" "H=C3=A3y th=C3=B4ng b=C3=A1o l=E1=BB=97i cho ~a.\n" "Th=C3=B4ng b=C3=A1o l=E1=BB=97i d=E1=BB=8Bch cho: ." =20 -#: guix/ui.scm:166 +#: guix/ui.scm:316 #, scheme-format msgid "" "\n" @@ -1254,7 +2100,7 @@ msgstr "" "\n" "~a trang ch=E1=BB=A7: <~a>" =20 -#: guix/ui.scm:168 +#: guix/ui.scm:318 msgid "" "\n" "General help using GNU software: " @@ -1262,160 +2108,207 @@ msgstr "" "\n" "Tr=E1=BB=A3 gi=C3=BAp chung v=E1=BB=81 s=E1=BB=AD d=E1=BB=A5ng ph=E1=BA= =A7n m=E1=BB=81m GNU: " =20 -#: guix/ui.scm:175 +#: guix/ui.scm:363 +#, fuzzy, scheme-format +msgid "'~a' is not a valid regular expression: ~a~%" +msgstr "ch=E1=BB=AF k=C3=BD kh=C3=B4ng ph=E1=BA=A3i l=C3=A0 m=E1=BB=99t = bi=E1=BB=83u th=E1=BB=A9c s h=E1=BB=A3p l=E1=BB=87: ~s~%" + +#: guix/ui.scm:369 #, scheme-format msgid "~a: invalid number~%" msgstr "~a: s=E1=BB=91 kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87~%" =20 -#: guix/ui.scm:192 +#: guix/ui.scm:386 #, scheme-format msgid "invalid number: ~a~%" msgstr "s=E1=BB=91 kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~a~%" =20 -#: guix/ui.scm:215 +#: guix/ui.scm:409 #, scheme-format msgid "unknown unit: ~a~%" msgstr "kh=C3=B4ng hi=E1=BB=83u =C4=91=C6=A1n v=E1=BB=8B: ~a~%" =20 -#: guix/ui.scm:226 +#: guix/ui.scm:420 #, scheme-format msgid "~a:~a:~a: package `~a' has an invalid input: ~s~%" msgstr "~a:~a:~a: g=C3=B3i =E2=80=9C~a=E2=80=9D c=C3=B3 =C4=91=E1=BA=A7u= v=C3=A0o kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~s~%" =20 -#: guix/ui.scm:233 +#: guix/ui.scm:427 #, scheme-format msgid "~a: ~a: build system `~a' does not support cross builds~%" msgstr "~a: ~a: h=E1=BB=87 th=E1=BB=91ng d=E1=BB=8Bch =E2=80=9C~a=E2=80=9D= kh=C3=B4ng h=E1=BB=97 tr=E1=BB=A3 d=E1=BB=8Bch ch=C3=A9o~%" =20 -#: guix/ui.scm:238 +#: guix/ui.scm:432 #, scheme-format msgid "profile '~a' does not exist~%" msgstr "h=E1=BB=93 s=C6=A1 =E2=80=9C~a=E2=80=9D kh=C3=B4ng t=E1=BB=93n t= =E1=BA=A1i~%" =20 -#: guix/ui.scm:241 +#: guix/ui.scm:435 #, scheme-format msgid "generation ~a of profile '~a' does not exist~%" msgstr "th=E1=BA=BF h=E1=BB=87 =E2=80=9C~a=E2=80=9D c=E1=BB=A7a h=E1=BB=93= s=C6=A1 =E2=80=9C~a=E2=80=9D kh=C3=B4ng t=E1=BB=93n t=E1=BA=A1i~%" =20 -#: guix/ui.scm:245 +#: guix/ui.scm:442 +#, scheme-format +msgid "corrupt input while restoring '~a' from ~s~%" +msgstr "" + +#: guix/ui.scm:444 +#, fuzzy, scheme-format +msgid "corrupt input while restoring archive from ~s~%" +msgstr "t=E1=BA=ADp h=E1=BB=A3p t=E1=BA=ADp tin trong kho l=C6=B0u b=E1=BB= =8B h=E1=BB=8Fng" + +#: guix/ui.scm:447 #, scheme-format msgid "failed to connect to `~a': ~a~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi k=E1=BA=BFt n=E1=BB=91i =C4=91=E1=BA= =BFn =E2=80=9C~a=E2=80=9D: ~a~%" =20 -#: guix/ui.scm:250 +#: guix/ui.scm:452 #, scheme-format msgid "build failed: ~a~%" msgstr "bi=C3=AAn d=E1=BB=8Bch g=E1=BA=B7p l=E1=BB=97i: ~a~%" =20 -#: guix/ui.scm:253 +#: guix/ui.scm:455 #, scheme-format msgid "reference to invalid output '~a' of derivation '~a'~%" msgstr "tham chi=E1=BA=BFu =C4=91=E1=BA=BFn =C4=91=E1=BA=A7u ra kh=C3=B4= ng h=E1=BB=A3p l=E1=BB=87 =E2=80=9C~a=E2=80=9D c=E1=BB=A7a d=E1=BA=ABn su= =E1=BA=A5t =E2=80=9C~a'~%" =20 -#: guix/ui.scm:264 +#: guix/ui.scm:466 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" =20 -#: guix/ui.scm:283 +#: guix/ui.scm:501 #, scheme-format msgid "failed to read expression ~s: ~s~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi =C4=91=E1=BB=8Dc bi=E1=BB=83u th=E1=BB= =A9c ~s: ~s~%" =20 -#: guix/ui.scm:289 -#, scheme-format -msgid "failed to evaluate expression `~a': ~s~%" +#: guix/ui.scm:507 +#, fuzzy, scheme-format +msgid "failed to evaluate expression '~a':~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi =C4=91=E1=BB=8Bnh gi=C3=A1 bi=E1=BB=83= u th=E1=BB=A9c =E2=80=9C~a=E2=80=9D: ~s~%" =20 -#: guix/ui.scm:298 +#: guix/ui.scm:510 +#, fuzzy, scheme-format +msgid "syntax error: ~a~%" +msgstr "~a: l=E1=BB=97i: ~a~%" + +#: guix/ui.scm:524 #, scheme-format msgid "expression ~s does not evaluate to a package~%" msgstr "bi=E1=BB=83u th=E1=BB=A9c =E2=80=9C~s=E2=80=9D kh=C3=B4ng =C4=91= =C6=B0=E1=BB=A3c =C4=91=E1=BB=8Bnh gi=C3=A1 cho g=C3=B3i~%" =20 -#: guix/ui.scm:350 +#: guix/ui.scm:586 #, scheme-format msgid "~:[The following derivation would be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations would be built:~%~{ ~a~%~}~= ;~]" msgstr[0] "~:[Ngu=E1=BB=93n sau =C4=91=C3=A2y n=C3=AAn =C4=91=C6=B0=E1=BB= =A3c =C4=91=C6=B0=E1=BB=A3c bi=C3=AAn d=E1=BB=8Bch:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:355 +#: guix/ui.scm:591 #, scheme-format msgid "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files would be downloaded:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[T=E1=BA=ADp tin sau =C4=91=C3=A2y n=C3=AAn =C4=91=C6=B0=E1= =BB=A3c t=E1=BA=A3i v=E1=BB=81:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:361 +#: guix/ui.scm:597 #, scheme-format msgid "~:[The following derivation will be built:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following derivations will be built:~%~{ ~a~%~}~;= ~]" msgstr[0] "~:[Ngu=E1=BB=93n sau =C4=91=C3=A2y s=E1=BA=BD =C4=91=C6=B0=E1= =BB=A3c bi=C3=AAn d=E1=BB=8Bch:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:366 +#: guix/ui.scm:602 #, scheme-format msgid "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]" msgid_plural "~:[The following files will be downloaded:~%~{ ~a~%~}~;~= ]" msgstr[0] "~:[Nh=E1=BB=AFng t=E1=BA=ADp tin sau =C4=91=C3=A2y s=E1=BA=BD= =C4=91=C6=B0=E1=BB=A3c t=E1=BA=A3i v=E1=BB=81:~%~{ ~a~%~}~;~]" =20 -#: guix/ui.scm:418 +#: guix/ui.scm:657 #, scheme-format msgid "The following package would be removed:~%~{~a~%~}~%" msgid_plural "The following packages would be removed:~%~{~a~%~}~%" msgstr[0] "G=C3=B3i sau =C4=91=C3=A2y s=E1=BA=BD n=C3=AAn b=E1=BB=8B g=E1= =BB=A1 b=E1=BB=8F:~%~{~a~%~}~%" =20 -#: guix/ui.scm:423 +#: guix/ui.scm:662 #, scheme-format msgid "The following package will be removed:~%~{~a~%~}~%" msgid_plural "The following packages will be removed:~%~{~a~%~}~%" msgstr[0] "G=C3=B3i sau =C4=91=C3=A2y s=E1=BA=BD b=E1=BB=8B g=E1=BB=A1 b= =E1=BB=8F:~%~{~a~%~}~%" =20 -#: guix/ui.scm:436 +#: guix/ui.scm:675 +#, fuzzy, scheme-format +msgid "The following package would be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages would be downgraded:~%~{~a~%~}~%" +msgstr[0] "G=C3=B3i sau =C4=91=C3=A2y n=C3=AAn =C4=91=C6=B0=E1=BB=A3c n=C3= =A2ng c=E1=BA=A5p:~%~{~a~%~}~%" + +#: guix/ui.scm:680 +#, fuzzy, scheme-format +msgid "The following package will be downgraded:~%~{~a~%~}~%" +msgid_plural "The following packages will be downgraded:~%~{~a~%~}~%" +msgstr[0] "G=C3=B3i sau =C4=91=C3=A2y s=E1=BA=BD =C4=91=C6=B0=E1=BB=A3c = n=C3=A2ng c=E1=BA=A5p:~%~{~a~%~}~%" + +#: guix/ui.scm:693 #, scheme-format msgid "The following package would be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages would be upgraded:~%~{~a~%~}~%" msgstr[0] "G=C3=B3i sau =C4=91=C3=A2y n=C3=AAn =C4=91=C6=B0=E1=BB=A3c n=C3= =A2ng c=E1=BA=A5p:~%~{~a~%~}~%" =20 -#: guix/ui.scm:441 +#: guix/ui.scm:698 #, scheme-format msgid "The following package will be upgraded:~%~{~a~%~}~%" msgid_plural "The following packages will be upgraded:~%~{~a~%~}~%" msgstr[0] "G=C3=B3i sau =C4=91=C3=A2y s=E1=BA=BD =C4=91=C6=B0=E1=BB=A3c = n=C3=A2ng c=E1=BA=A5p:~%~{~a~%~}~%" =20 -#: guix/ui.scm:452 +#: guix/ui.scm:709 #, scheme-format msgid "The following package would be installed:~%~{~a~%~}~%" msgid_plural "The following packages would be installed:~%~{~a~%~}~%" msgstr[0] "G=C3=B3i sau =C4=91=C3=A2y n=C3=AAn =C4=91=C6=B0=E1=BB=A3c c=C3= =A0i =C4=91=E1=BA=B7t:~%~{~a~%~}~%" =20 -#: guix/ui.scm:457 +#: guix/ui.scm:714 #, scheme-format msgid "The following package will be installed:~%~{~a~%~}~%" msgid_plural "The following packages will be installed:~%~{~a~%~}~%" msgstr[0] "G=C3=B3i sau =C4=91=C3=A2y s=E1=BA=BD =C4=91=C6=B0=E1=BB=A3c = c=C3=A0i =C4=91=E1=BA=B7t:~%~{~a~%~}~%" =20 -#: guix/ui.scm:474 +#: guix/ui.scm:731 msgid "" msgstr "" =20 -#: guix/ui.scm:500 +#: guix/ui.scm:750 #, scheme-format msgid "failed to create configuration directory `~a': ~a~%" msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=E1=BA=A1o th=C6=B0 m=E1=BB=A5c c=E1= =BA=A5u h=C3=ACnh =E2=80=9C~a=E2=80=9D: ~a~%" =20 -#: guix/ui.scm:600 guix/ui.scm:614 +#: guix/ui.scm:869 guix/ui.scm:883 msgid "unknown" msgstr "kh=C3=B4ng hi=E1=BB=83u" =20 -#: guix/ui.scm:723 +#: guix/ui.scm:1033 #, scheme-format -msgid "invalid argument: ~a~%" -msgstr "=C4=91=E1=BB=91i s=E1=BB=91 kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87: ~= a~%" +msgid "Generation ~a\t~a" +msgstr "T=E1=BA=A1o ~a\t~a" + +#: guix/ui.scm:1040 +#, scheme-format +msgid "~a\t(current)~%" +msgstr "~a\t(hi=E1=BB=87n t=E1=BA=A1i)~%" + +#: guix/ui.scm:1057 +#, fuzzy, scheme-format +msgid "switched from generation ~a to ~a~%" +msgstr "chuy=E1=BB=83n t=E1=BB=AB th=E1=BA=BF h=E1=BB=87 ~a sang ~a~%" + +#: guix/ui.scm:1073 +#, scheme-format +msgid "deleting ~a~%" +msgstr "=C4=91ang x=C3=B3a ~a~%" =20 -#: guix/ui.scm:732 +#: guix/ui.scm:1121 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Ch=E1=BA=A1y l=E1=BB=87nh =E2=80=9Cguix --help=E2=80=9D =C4=91=E1= =BB=83 bi=E1=BA=BFt th=C3=AAm th=C3=B4ng tin.~%" =20 -#: guix/ui.scm:762 +#: guix/ui.scm:1148 msgid "" "Usage: guix COMMAND ARGS...\n" "Run COMMAND with ARGS.\n" @@ -1423,41 +2316,31 @@ msgstr "" "C=C3=A1ch d=C3=B9ng: guix L=E1=BB=86NH =C4=90=E1=BB=90I_S=E1=BB=90=E2=80= =A6\n" "Ch=E1=BA=A1y L=E1=BB=86NH v=E1=BB=9Bi c=C3=A1c =C4=90=E1=BB=90I S=E1=BB= =90.\n" =20 -#: guix/ui.scm:765 +#: guix/ui.scm:1151 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "L=E1=BB=86NH ph=E1=BA=A3i l=C3=A0 m=E1=BB=99t trong s=E1=BB=91 n= h=E1=BB=AFng c=C3=A2u l=E1=BB=87nh con =C4=91=C6=B0=E1=BB=A3c li=E1=BB=87= t k=C3=AA d=C6=B0=E1=BB=9Bi =C4=91=C3=A2y:\n" =20 -#: guix/ui.scm:785 +#: guix/ui.scm:1171 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: kh=C3=B4ng t=C3=ACm th=E1=BA=A5y l=E1=BB=87nh~%" =20 -#: guix/ui.scm:803 +#: guix/ui.scm:1188 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: thi=E1=BA=BFu t=C3=AAn l=E1=BB=87nh~%" =20 -#: guix/ui.scm:811 +#: guix/ui.scm:1196 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: t=C3=B9y ch=E1=BB=8Dn kh=C3=B4ng =C4=91=C6=B0=E1=BB=A3c th= =E1=BB=ABa nh=E1=BA=ADn =E2=80=9C~a'~%" =20 -#: guix/http-client.scm:217 -#, scheme-format -msgid "using Guile ~a, which does not support ~s encoding~%" -msgstr "=C4=91ang d=C3=B9ng Guile ~a, m=C3=A0 n=C3=B3 l=E1=BA=A1i kh=C3=B4= ng h=E1=BB=97 tr=E1=BB=A3 ~s b=E1=BB=99 m=C3=A3~%" - -#: guix/http-client.scm:220 -#, scheme-format -msgid "download failed; use a newer Guile~%" -msgstr "t=E1=BA=A3i v=E1=BB=81 g=E1=BA=B7p l=E1=BB=97i; d=C3=B9ng Guile = m=E1=BB=9Bi h=C6=A1n~%" - -#: guix/http-client.scm:232 +#: guix/http-client.scm:260 #, scheme-format msgid "following redirection to `~a'...~%" msgstr "=C4=91ang cho chuy=E1=BB=83n h=C6=B0=E1=BB=9Bng sang =E2=80=9C~a= =E2=80=9D=E2=80=A6~%" =20 -#: guix/http-client.scm:241 +#: guix/http-client.scm:269 msgid "download failed" msgstr "t=E1=BA=A3i v=E1=BB=81 g=E1=BA=B7p l=E1=BB=97i" =20 @@ -1503,6 +2386,176 @@ msgstr "t=E1=BA=ADp tin =C4=91=C3=A3 nh=E1=BA=ADp= v=C3=A0o thi=E1=BA=BFt ch=E1=BB=AF k=C3=BD" msgid "invalid inter-file archive mark" msgstr "d=E1=BA=A5u k=E1=BA=BFt-th=C3=BAc-t=E1=BA=ADp-tin kho l=C6=B0u k= h=C3=B4ng h=E1=BB=A3p l=E1=BB=87" =20 +#: nix/nix-daemon/guix-daemon.cc:61 +msgid "guix-daemon -- perform derivation builds and store accesses" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:63 +msgid "" +"This program is a daemon meant to run in the background. It serves req= uests " +"sent over a Unix-domain socket. It accesses the store, and builds " +"derivations on behalf of its clients." +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:87 +msgid "SYSTEM" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:88 +msgid "assume SYSTEM as the current system type" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:89 nix/nix-daemon/guix-daemon.cc:92 +msgid "N" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:90 +msgid "use N CPU cores to build each derivation; 0 means as many as avai= lable" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:93 +#, fuzzy +msgid "allow at most N build jobs" +msgstr "" +"\n" +" -M, --max-jobs=3DN cho ph=C3=A9p nhi=E1=BB=81u nh=E1=BA=A5t l=C3= =A0 bi=C3=AAn d=E1=BB=8Bch N c=C3=B4ng vi=E1=BB=87c" + +#: nix/nix-daemon/guix-daemon.cc:95 +msgid "disable chroot builds" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:96 +msgid "DIR" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:97 +msgid "add DIR to the build chroot" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:98 +msgid "GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:99 +msgid "perform builds as a user of GROUP" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:101 +msgid "do not use substitutes" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:102 +msgid "URLS" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:103 +msgid "use URLS as the default list of substitute providers" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:105 +msgid "do not use the 'build hook'" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:107 +msgid "cache build failures" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:109 +msgid "build each derivation N times in a row" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:111 +msgid "do not keep build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:113 +msgid "disable compression of the build logs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:118 +msgid "disable automatic file \"deduplication\" in the store" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:128 +msgid "impersonate Linux 2.6" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:132 +msgid "tell whether the GC must keep outputs of live derivations" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:135 +msgid "tell whether the GC must keep derivations corresponding to live o= utputs" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:138 +msgid "SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:139 +msgid "listen for connections on SOCKET" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:141 +msgid "produce debugging output" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:201 +#, c-format +msgid "error: %s: invalid number of rounds\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:220 nix/nix-daemon/guix-daemon.cc:396 +#, fuzzy, c-format +msgid "error: %s\n" +msgstr "~a: l=E1=BB=97i: ~a~%" + +#: nix/nix-daemon/guix-daemon.cc:281 +#, c-format +msgid "error: libgcrypt version mismatch\n" +msgstr "" + +#: nix/nix-daemon/guix-daemon.cc:372 +#, c-format +msgid "" +"warning: daemon is running as root, so using `--build-users-group' is h= ighly " +"recommended\n" +msgstr "" + +#~ msgid "system locale lacks a definition" +#~ msgstr "mi=E1=BB=81n =C4=91=E1=BB=8Ba ph=C6=B0=C6=A1ng h=E1=BB=87 th=E1= =BB=91ng thi=E1=BA=BFu m=E1=BB=99t =C4=91=E1=BB=8Bnh ngh=C4=A9a" + +#~ msgid "sources do not match any package:~{ ~a~}~%" +#~ msgstr "m=C3=A3 ngu=E1=BB=93n kh=C3=B4ng kh=E1=BB=9Bp b=E1=BA=A5t k=E1= =BB=B3 g=C3=B3i n=C3=A0o:~{ ~a~}~%" + +#~ msgid "failed to build the empty profile~%" +#~ msgstr "g=E1=BA=B7p l=E1=BB=97i khi bi=C3=AAn d=E1=BB=8Bch h=E1=BB=93= s=C6=A1 tr=E1=BB=91ng r=E1=BB=97ng~%" + +#~ msgid "nothing to do: already at the empty profile~%" +#~ msgstr "kh=C3=B4ng c=C3=B3 g=C3=AC c=E1=BA=A7n l=C3=A0m: =C4=91=C3=A3= l=C3=A0 m=E1=BB=99t h=E1=BB=93 s=C6=A1 tr=E1=BB=91ng r=E1=BB=97ng~%" + +#~ msgid "Downloading, please wait...~%" +#~ msgstr "=C4=90ang t=E1=BA=A3i, vui l=C3=B2ng ch=E1=BB=9D=E2=80=A6~%" + +#~ msgid "(Please consider upgrading Guile to get proper progress report= .)~%" +#~ msgstr "" +#~ "(H=C3=A3y c=C3=A2n nh=E1=BA=AFc n=C3=A2ng c=E1=BA=A5p Guile =C4=91=E1= =BB=83 nh=E1=BA=ADn =C4=91=C6=B0=E1=BB=A3c b=C3=A1o c=C3=A1o ti=E1=BA=BFn= tr=C3=ACnh =C4=91=C3=BAng =C4=91=E1=BA=AFn.)~%" + +#~ msgid "these substitute URLs will not be used:~{ ~a~}~%" +#~ msgstr "URL thay th=E1=BA=BF s=E1=BA=BD kh=C3=B4ng =C4=91=C6=B0=E1=BB= =A3c d=C3=B9ng:~{ ~a~}~%" + +#~ msgid "failed to look up host '~a' (~a), substituter disabled~%" +#~ msgstr "g=E1=BA=B7p l=E1=BB=97i khi t=C3=ACm m=C3=A1y =E2=80=9C~a=E2=80= =9D (~a), b=E1=BB=99 thay th=E1=BA=BF =C4=91=C3=A3 b=E1=BB=8B t=E1=BA=AFt= ~%" + +#~ msgid "failed to open operating system file '~a': ~a~%" +#~ msgstr "g=E1=BA=B7p l=E1=BB=97i khi m=E1=BB=9F t=E1=BA=ADp tin h=E1=BB= =87 =C4=91i=E1=BB=81u h=C3=A0nh =E2=80=9C~a=E2=80=9D: ~a~%" + +#~ msgid "using Guile ~a, which does not support ~s encoding~%" +#~ msgstr "=C4=91ang d=C3=B9ng Guile ~a, m=C3=A0 n=C3=B3 l=E1=BA=A1i kh=C3= =B4ng h=E1=BB=97 tr=E1=BB=A3 ~s b=E1=BB=99 m=C3=A3~%" + +#~ msgid "download failed; use a newer Guile~%" +#~ msgstr "t=E1=BA=A3i v=E1=BB=81 g=E1=BA=B7p l=E1=BB=97i; d=C3=B9ng Gui= le m=E1=BB=9Bi h=C6=A1n~%" + #~ msgid "~a: not a number~%" #~ msgstr "~a: kh=C3=B4ng ph=E1=BA=A3i con s=E1=BB=91~%" =20 @@ -1521,9 +2574,6 @@ msgstr "d=E1=BA=A5u k=E1=BA=BFt-th=C3=BAc-t=E1=BA=AD= p-tin kho l=C6=B0u kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87" #~ msgid "invalid nar end-of-file marker" #~ msgstr "b=E1=BB=99 t=E1=BA=A1o cu=E1=BB=91i-t=E1=BA=ADp-tin nar kh=C3= =B4ng h=E1=BB=A3p l=E1=BB=87" =20 -#~ msgid "invalid symlink tokens" -#~ msgstr "th=E1=BA=BB b=C3=A0i li=C3=AAn k=E1=BA=BFt m=E1=BB=81m kh=C3=B4= ng h=E1=BB=A3p l=E1=BB=87" - #~ msgid "unexpected directory entry termination" #~ msgstr "g=E1=BA=B7p ch=E1=BA=A5m d=E1=BB=A9t =C4=91=E1=BB=81 m=E1=BB=A5= c th=C6=B0 m=E1=BB=A5c b=E1=BA=A5t ng=E1=BB=9D" =20 @@ -1604,7 +2654,8 @@ msgstr "d=E1=BA=A5u k=E1=BA=BFt-th=C3=BAc-t=E1=BA=AD= p-tin kho l=C6=B0u kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87" #~ " -n, --dry-run show what would be done without actually do= ing it" #~ msgstr "" #~ "\n" -#~ " -n, --dry-run hi=E1=BB=83n th=E1=BB=8B nh=E1=BB=AFng g=C3= =AC =C4=91=C6=B0=E1=BB=A3c l=C3=A0m nh=C6=B0ng kh=C3=B4ng th=E1=BB=B1c hi= =E1=BB=87n th=E1=BA=ADt" +#~ " -n, --dry-run hi=E1=BB=83n th=E1=BB=8B nh=E1=BB=AFng g=C3= =AC =C4=91=C6=B0=E1=BB=A3c l=C3=A0m nh=C6=B0ng kh=C3=B4ng th=E1=BB=B1c hi= =E1=BB=87n " +#~ "th=E1=BA=ADt" =20 #~ msgid "Yeah..." #~ msgstr "=C4=90=C3=BAng=E2=80=A6" @@ -1614,17 +2665,22 @@ msgstr "d=E1=BA=A5u k=E1=BA=BFt-th=C3=BAc-t=E1=BA= =ADp-tin kho l=C6=B0u kh=C3=B4ng h=E1=BB=A3p l=E1=BB=87" #~ "match to a specified pattern. By default, grep prints the matching\= n" #~ "lines." #~ msgstr "" -#~ "L=E1=BB=87nh grep t=C3=ACm ki=E1=BA=BFm trong m=E1=BB=99t hay nhi=E1= =BB=81u t=E1=BA=ADp tin =C4=91=E1=BA=A7u v=C3=A0o nh=E1=BB=AFng d=C3=B2ng= c=C3=B3 ch=E1=BB=A9a\n" +#~ "L=E1=BB=87nh grep t=C3=ACm ki=E1=BA=BFm trong m=E1=BB=99t hay nhi=E1= =BB=81u t=E1=BA=ADp tin =C4=91=E1=BA=A7u v=C3=A0o nh=E1=BB=AFng d=C3=B2ng= c=C3=B3 " +#~ "ch=E1=BB=A9a\n" #~ "t=E1=BB=AB kh=E1=BB=9Bp m=E1=BA=ABu =C4=91=C3=A3 cho. Theo m=E1=BA=B7= c =C4=91=E1=BB=8Bnh, l=E1=BB=87nh grep s=E1=BA=BD in ra c=C3=A1c d=C3=B2n= g kh=E1=BB=9Bp m=E1=BA=ABu." =20 #~ msgid "" #~ "GNU recutils is a set of tools and libraries to access human-editabl= e,\n" -#~ "text-based databases called recfiles. The data is stored as a seque= nce of\n" +#~ "text-based databases called recfiles. The data is stored as a seque= nce " +#~ "of\n" #~ "records, each record containing an arbitrary number of named fields.= " #~ msgstr "" -#~ "GNU recutils l=C3=A0 m=E1=BB=99t t=E1=BA=ADp h=E1=BB=A3p c=C3=B4ng c= =E1=BB=A5 v=C3=A0 th=C6=B0 vi=E1=BB=87n cho ph=C3=A9p truy c=E1=BA=ADp c=C3= =A1c t=E1=BA=ADp tin\n" -#~ "rec l=C3=A0 ki=E1=BB=83u c=C6=A1 s=E1=BB=9F d=E1=BB=AF li=E1=BB=87u = d=E1=BB=B1a tr=C3=AAn d=E1=BA=A1ng v=C4=83n b=E1=BA=A3n th=C6=B0=E1=BB=9D= ng, con ng=C6=B0=E1=BB=9Di c=C3=B3 th=E1=BB=83 =C4=91=E1=BB=8Dc =C4=91=C6= =B0=E1=BB=A3c.\n" -#~ "D=E1=BB=AF li=E1=BB=87u =C4=91=C6=B0=E1=BB=A3c l=C6=B0u th=C3=A0nh c= =C3=A1c b=E1=BA=A3n ghi k=E1=BA=BF ti=E1=BA=BFp nhau, m=E1=BB=97i b=E1=BA= =A3n ghi ch=E1=BB=A9a c=C3=A1c thu=E1=BB=99c t=C3=ADnh\n" +#~ "GNU recutils l=C3=A0 m=E1=BB=99t t=E1=BA=ADp h=E1=BB=A3p c=C3=B4ng c= =E1=BB=A5 v=C3=A0 th=C6=B0 vi=E1=BB=87n cho ph=C3=A9p truy c=E1=BA=ADp c=C3= =A1c t=E1=BA=ADp " +#~ "tin\n" +#~ "rec l=C3=A0 ki=E1=BB=83u c=C6=A1 s=E1=BB=9F d=E1=BB=AF li=E1=BB=87u = d=E1=BB=B1a tr=C3=AAn d=E1=BA=A1ng v=C4=83n b=E1=BA=A3n th=C6=B0=E1=BB=9D= ng, con ng=C6=B0=E1=BB=9Di c=C3=B3 th=E1=BB=83 " +#~ "=C4=91=E1=BB=8Dc =C4=91=C6=B0=E1=BB=A3c.\n" +#~ "D=E1=BB=AF li=E1=BB=87u =C4=91=C6=B0=E1=BB=A3c l=C6=B0u th=C3=A0nh c= =C3=A1c b=E1=BA=A3n ghi k=E1=BA=BF ti=E1=BA=BFp nhau, m=E1=BB=97i b=E1=BA= =A3n ghi ch=E1=BB=A9a c=C3=A1c " +#~ "thu=E1=BB=99c t=C3=ADnh\n" #~ "c=E1=BB=A7a c=C3=A1c tr=C6=B0=E1=BB=9Dng =C4=91=C3=A3 =C4=91=C6=B0=E1= =BB=A3c =C4=91=E1=BA=B7t t=C3=AAn" =20 #~ msgid "profile `~a' does not exist~%" diff --git a/po/packages/da.po b/po/packages/da.po index 66c2e7c..b149199 100644 --- a/po/packages/da.po +++ b/po/packages/da.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the guix package. # Joe Hansen , 2015. # -#: gnu/packages/databases.scm:598 +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix-packages 0.9.0\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2015-10-28 16:31+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2015-10-31 19:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -29,7 +29,8 @@ msgstr "Tekstbehandlingsprogram" #: gnu/packages/abiword.scm:110 msgid "" "AbiWord is a word processing program. It is rapidly\n" -"becoming a state of the art word processor, with lots of features usefu= l for\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" "your daily work, personal needs, or for just some good old typing fun." msgstr "" "AbiWord er et tekstbehandlingsprogram. Det bliver med stor hastighed\n" @@ -37,14 +38,15 @@ msgstr "" "som kan bruges i dit daglige arbejde, personlige behov, eller bare\n" "god gammeldags skrivning." =20 -#: gnu/packages/aspell.scm:43 gnu/packages/libreoffice.scm:611 +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 msgid "Spell checker" msgstr "Stavekontrol" =20 -#: gnu/packages/aspell.scm:45 +#: gnu/packages/aspell.scm:55 msgid "" "Aspell is a spell-checker which can be used either as a library or as\n= " -"a standalone program. Notable features of Aspell include its full supp= ort of\n" +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" "documents written in the UTF-8 encoding and its ability to use multiple= \n" "dictionaries, including personal ones." msgstr "" @@ -53,28 +55,30 @@ msgstr "" "fulde underst=C3=B8ttelse af dokumenter skrivet i UTF-8-kodning og dets= evne\n" "til at bruge flere ordb=C3=B8ger, inklusive personlige." =20 -#: gnu/packages/aspell.scm:85 +#: gnu/packages/aspell.scm:95 msgid "This package provides a dictionary for the GNU Aspell spell check= er." msgstr "Denne pakke tilbyder en ordbog for stavekontrollen GNU Aspell." =20 -#: gnu/packages/audio.scm:92 +#: gnu/packages/audio.scm:95 msgid "Realtime modular synthesizer and effect processor" msgstr "" =20 -#: gnu/packages/audio.scm:94 +#: gnu/packages/audio.scm:97 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" -"modular synthesizer system. It uses virtual control voltages to contro= l the\n" -"parameters of the modules. The control voltages which control the freq= uency\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" "e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" "Filter) modules follow the convention of 1V / Octave." msgstr "" =20 -#: gnu/packages/audio.scm:131 -msgid "A library for audio labelling" +#: gnu/packages/audio.scm:134 +msgid "Library for audio labelling" msgstr "" =20 -#: gnu/packages/audio.scm:133 +#: gnu/packages/audio.scm:136 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n= " "signals. Its features include segmenting a sound file before each of i= ts\n" @@ -82,35 +86,37 @@ msgid "" "streams from live audio." msgstr "" =20 -#: gnu/packages/audio.scm:226 +#: gnu/packages/audio.scm:228 msgid "Digital audio workstation" msgstr "" =20 -#: gnu/packages/audio.scm:228 +#: gnu/packages/audio.scm:230 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\= n" -"record, edit, mix and master audio and MIDI projects. It is targeted a= t audio\n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" =20 -#: gnu/packages/audio.scm:289 +#: gnu/packages/audio.scm:262 msgid "Tonewheel organ synthesizer" msgstr "" =20 -#: gnu/packages/audio.scm:291 +#: gnu/packages/audio.scm:264 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" "with drawbars, distortion and rotating speakers. The organ has three\n= " -"sections, two polyphonic sections with nine drawbars each and one monop= honic\n" +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" "bass section with five drawbars. A standalone JACK application and LV2= \n" "plugins are provided." msgstr "" =20 -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:301 msgid "Audio plug-in pack for LV2 and JACK environments" msgstr "" =20 -#: gnu/packages/audio.scm:331 +#: gnu/packages/audio.scm:303 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" "The suite contains lots of effects (delay, modulation, signal processin= g,\n" @@ -119,132 +125,157 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" =20 -#: gnu/packages/audio.scm:367 +#: gnu/packages/audio.scm:346 msgid "Sound and music computing system" msgstr "" =20 -#: gnu/packages/audio.scm:369 +#: gnu/packages/audio.scm:348 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" =20 -#: gnu/packages/audio.scm:412 gnu/packages/audio.scm:1900 +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 msgid "C++ wrapper around the ALSA API" msgstr "" =20 -#: gnu/packages/audio.scm:414 +#: gnu/packages/audio.scm:393 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" =20 -#: gnu/packages/audio.scm:449 +#: gnu/packages/audio.scm:428 msgid "SoundFont synthesizer" msgstr "" =20 -#: gnu/packages/audio.scm:451 +#: gnu/packages/audio.scm:430 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" -"specifications. FluidSynth reads and handles MIDI events from the MIDI= input\n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" "device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" "also play midifiles using a Soundfont." msgstr "" =20 -#: gnu/packages/audio.scm:483 +#: gnu/packages/audio.scm:462 msgid "MPEG-4 and MPEG-2 AAC decoder" msgstr "" =20 -#: gnu/packages/audio.scm:485 +#: gnu/packages/audio.scm:464 msgid "" "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" "PS, and DAB+." msgstr "" =20 -#: gnu/packages/audio.scm:514 +#: gnu/packages/audio.scm:493 msgid "Signal processing language" msgstr "" =20 -#: gnu/packages/audio.scm:516 +#: gnu/packages/audio.scm:495 msgid "Faust is a programming language for realtime audio signal process= ing." msgstr "" =20 -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:530 msgid "GUS compatible patches for MIDI players" msgstr "" =20 -#: gnu/packages/audio.scm:553 +#: gnu/packages/audio.scm:532 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n= " "patches that can be used with softsynths such as Timidity and WildMidi.= " msgstr "" =20 -#: gnu/packages/audio.scm:604 +#: gnu/packages/audio.scm:585 msgid "Virtual guitar amplifier" msgstr "" =20 -#: gnu/packages/audio.scm:605 +#: gnu/packages/audio.scm:586 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" -"card. The input is processed by a main amp and a rack-section. Both c= an be\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" "routed separately and deliver a processed stereo-signal via JACK. You = may\n" -"fill the rack with effects from more than 25 built-in modules including= stuff\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" "from a simple noise gate to modulation effects like flanger, phaser or\= n" "auto-wah." msgstr "" =20 -#: gnu/packages/audio.scm:647 +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" +msgstr "" + +#: gnu/packages/audio.scm:634 +msgid "" +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." +msgstr "" + +#: gnu/packages/audio.scm:678 msgid "LV2 convolution reverb" msgstr "" =20 -#: gnu/packages/audio.scm:649 +#: gnu/packages/audio.scm:680 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" -"especially for creating reverb effects. It supports impulse responses = with 1,\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" =20 -#: gnu/packages/audio.scm:679 +#: gnu/packages/audio.scm:710 msgid "JACK audio connection kit" msgstr "" =20 -#: gnu/packages/audio.scm:681 +#: gnu/packages/audio.scm:712 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" -"different applications to an audio device, as well as allowing them to = share\n" -"audio between themselves. JACK is different from other audio server ef= forts\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" "in that it has been designed from the ground up to be suitable for\n" "professional audio work. This means that it focuses on two key areas:\= n" "synchronous execution of all clients, and low latency operation." msgstr "" =20 -#: gnu/packages/audio.scm:760 +#: gnu/packages/audio.scm:810 msgid "Simple LV2 host for JACK" msgstr "" =20 -#: gnu/packages/audio.scm:762 +#: gnu/packages/audio.scm:812 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any L= V2\n" "plugin function as a JACK application." msgstr "" =20 -#: gnu/packages/audio.scm:798 +#: gnu/packages/audio.scm:855 msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" msgstr "" =20 -#: gnu/packages/audio.scm:800 +#: gnu/packages/audio.scm:857 msgid "" "LADSPA is a standard that allows software audio processors and effects\= n" "to be plugged into a wide range of audio synthesis and recording packag= es." msgstr "" =20 -#: gnu/packages/audio.scm:836 +#: gnu/packages/audio.scm:893 msgid "Audio application session manager" msgstr "" =20 -#: gnu/packages/audio.scm:838 +#: gnu/packages/audio.scm:895 msgid "" "LASH is a session management system for audio applications. It allows\= n" "you to save and restore audio sessions consisting of multiple interconn= eced\n" @@ -252,255 +283,266 @@ msgid "" "connections between them." msgstr "" =20 -#: gnu/packages/audio.scm:859 +#: gnu/packages/audio.scm:916 msgid "Bauer stereophonic-to-binaural DSP" msgstr "" =20 -#: gnu/packages/audio.scm:861 +#: gnu/packages/audio.scm:918 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" -"designed to improve headphone listening of stereo audio records. Recom= mended\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" "for headphone prolonged listening to disable superstereo fatigue withou= t\n" "essential distortions." msgstr "" =20 -#: gnu/packages/audio.scm:886 +#: gnu/packages/audio.scm:943 msgid "Implementation of the Open Sound Control protocol" msgstr "" =20 -#: gnu/packages/audio.scm:888 +#: gnu/packages/audio.scm:945 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (OSC) protocol." msgstr "" =20 -#: gnu/packages/audio.scm:925 +#: gnu/packages/audio.scm:982 msgid "Library to simplify use of LV2 plugins in applications" msgstr "" =20 -#: gnu/packages/audio.scm:927 +#: gnu/packages/audio.scm:984 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" =20 -#: gnu/packages/audio.scm:954 +#: gnu/packages/audio.scm:1011 msgid "LV2 audio plugin specification" msgstr "" =20 -#: gnu/packages/audio.scm:956 +#: gnu/packages/audio.scm:1013 msgid "" "LV2 is an open specification for audio plugins and host applications.\n= " -"At its core, LV2 is a simple stable interface, accompanied by extension= s which\n" +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" "add functionality to support the needs of increasingly powerful audio\n= " "software." msgstr "" =20 -#: gnu/packages/audio.scm:991 +#: gnu/packages/audio.scm:1048 msgid "LV2 port of the mda Piano plugin" msgstr "" =20 -#: gnu/packages/audio.scm:992 +#: gnu/packages/audio.scm:1049 msgid "An LV2 port of the mda Piano VSTi." msgstr "" =20 -#: gnu/packages/audio.scm:1005 +#: gnu/packages/audio.scm:1062 msgid "LV2 port of the mda EPiano plugin" msgstr "" =20 -#: gnu/packages/audio.scm:1006 +#: gnu/packages/audio.scm:1063 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" =20 -#: gnu/packages/audio.scm:1035 +#: gnu/packages/audio.scm:1101 msgid "C++ libraries for LV2 plugins" msgstr "" =20 -#: gnu/packages/audio.scm:1037 +#: gnu/packages/audio.scm:1103 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" =20 -#: gnu/packages/audio.scm:1078 +#: gnu/packages/audio.scm:1144 msgid "3D audio API" msgstr "" =20 -#: gnu/packages/audio.scm:1080 +#: gnu/packages/audio.scm:1146 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional soun= d\n" "emitters are among the features handled by the API. More advanced effe= cts,\n" -"including air absorption, occlusion, and environmental reverb, are avai= lable\n" -"through the EFX extension. It also facilitates streaming audio, multi-= channel\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" "buffers, and audio capture." msgstr "" =20 -#: gnu/packages/audio.scm:1114 +#: gnu/packages/audio.scm:1180 msgid "Modular patch bay for audio and MIDI systems" msgstr "" =20 -#: gnu/packages/audio.scm:1116 +#: gnu/packages/audio.scm:1182 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" "and ALSA." msgstr "" =20 -#: gnu/packages/audio.scm:1141 +#: gnu/packages/audio.scm:1207 msgid "Real-time audio utility library" msgstr "" =20 -#: gnu/packages/audio.scm:1143 +#: gnu/packages/audio.scm:1209 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" "aimed at audio/musical applications." msgstr "" =20 -#: gnu/packages/audio.scm:1169 +#: gnu/packages/audio.scm:1235 msgid "Audio time-stretching and pitch-shifting library" msgstr "" =20 -#: gnu/packages/audio.scm:1171 +#: gnu/packages/audio.scm:1237 msgid "" "Rubber Band is a library and utility program that permits changing the\= n" "tempo and pitch of an audio recording independently of one another." msgstr "" =20 -#: gnu/packages/audio.scm:1219 +#: gnu/packages/audio.scm:1285 msgid "Cross-platform MIDI library for C++" msgstr "" =20 -#: gnu/packages/audio.scm:1221 +#: gnu/packages/audio.scm:1287 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" =20 -#: gnu/packages/audio.scm:1247 +#: gnu/packages/audio.scm:1313 msgid "Library for serialising LV2 atoms to/from RDF" msgstr "" =20 -#: gnu/packages/audio.scm:1249 +#: gnu/packages/audio.scm:1315 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" "the Turtle syntax." msgstr "" =20 -#: gnu/packages/audio.scm:1274 +#: gnu/packages/audio.scm:1340 msgid "Library for loading and wrapping LV2 plugin UIs" msgstr "" =20 -#: gnu/packages/audio.scm:1276 +#: gnu/packages/audio.scm:1342 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" "\n" "Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" "toolkit. The API is designed such that hosts do not need to explicitly= \n" -"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs in\n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" "that toolkit will work in all hosts that use Suil automatically.\n" "\n" "Suil currently supports every combination of Gtk 2, Qt 4, and X11." msgstr "" =20 -#: gnu/packages/audio.scm:1333 +#: gnu/packages/audio.scm:1399 msgid "Software synthesizer for playing MIDI files" msgstr "" =20 -#: gnu/packages/audio.scm:1335 +#: gnu/packages/audio.scm:1401 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" -"converting them into PCM waveform data; give it a MIDI data along with = digital\n" -"instrument data files, then it synthesizes them in real-time, and plays= . It\n" -"can not only play sounds, but also can save the generated waveforms int= o hard\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" "disks as various audio file formats." msgstr "" =20 -#: gnu/packages/audio.scm:1374 +#: gnu/packages/audio.scm:1440 msgid "Modular and extensible audio processing system" msgstr "" =20 -#: gnu/packages/audio.scm:1376 +#: gnu/packages/audio.scm:1442 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data =E2=80=94 typically referred to= as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" =20 -#: gnu/packages/audio.scm:1415 +#: gnu/packages/audio.scm:1481 msgid "Library for time stretching and pitch scaling of audio" msgstr "" =20 -#: gnu/packages/audio.scm:1417 +#: gnu/packages/audio.scm:1483 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the libra= ry." msgstr "" =20 -#: gnu/packages/audio.scm:1440 +#: gnu/packages/audio.scm:1506 msgid "Hybrid lossless audio codec" msgstr "" =20 -#: gnu/packages/audio.scm:1442 +#: gnu/packages/audio.scm:1508 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\= n" -"compression modes. This package contains command-line programs and lib= rary to\n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" "encode and decode wavpack files." msgstr "" =20 -#: gnu/packages/audio.scm:1461 +#: gnu/packages/audio.scm:1527 msgid "Mod file playing library" msgstr "" =20 -#: gnu/packages/audio.scm:1463 +#: gnu/packages/audio.scm:1529 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" -"supported. Optional features include high-quality resampling, bass exp= ansion,\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" "surround and reverb." msgstr "" =20 -#: gnu/packages/audio.scm:1482 +#: gnu/packages/audio.scm:1548 msgid "Module player library" msgstr "" =20 -#: gnu/packages/audio.scm:1484 +#: gnu/packages/audio.scm:1550 msgid "" "Libxmp is a library that renders module files to PCM data. It supports= \n" "over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " msgstr "" =20 -#: gnu/packages/audio.scm:1507 +#: gnu/packages/audio.scm:1573 msgid "Extended module player" msgstr "" =20 -#: gnu/packages/audio.scm:1509 +#: gnu/packages/audio.scm:1575 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" =20 -#: gnu/packages/audio.scm:1541 +#: gnu/packages/audio.scm:1607 msgid "Audio processing library for changing tempo, pitch and playback r= ate" msgstr "" =20 -#: gnu/packages/audio.scm:1543 +#: gnu/packages/audio.scm:1609 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch= \n" "and playback rates of audio streams or audio files. It is intended for= \n" -"application developers writing sound processing tools that require temp= o/pitch\n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" "control functionality, or just for playing around with the sound effect= s." msgstr "" =20 -#: gnu/packages/audio.scm:1580 +#: gnu/packages/audio.scm:1646 msgid "Sound processing utility" msgstr "" =20 -#: gnu/packages/audio.scm:1582 +#: gnu/packages/audio.scm:1648 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\= n" @@ -508,92 +550,96 @@ msgid "" "can play and record audio files." msgstr "" =20 -#: gnu/packages/audio.scm:1605 +#: gnu/packages/audio.scm:1671 msgid "One-dimensional sample-rate conversion library" msgstr "" =20 -#: gnu/packages/audio.scm:1607 +#: gnu/packages/audio.scm:1673 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" "conversion. It may be used, for example, to resample PCM-encoded audio= ." msgstr "" =20 -#: gnu/packages/audio.scm:1629 +#: gnu/packages/audio.scm:1695 msgid "MPEG Audio Layer 2 (MP2) encoder" msgstr "" =20 -#: gnu/packages/audio.scm:1631 +#: gnu/packages/audio.scm:1697 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" "portions of LAME." msgstr "" =20 -#: gnu/packages/audio.scm:1671 +#: gnu/packages/audio.scm:1737 msgid "Audio I/O library" msgstr "" =20 -#: gnu/packages/audio.scm:1673 +#: gnu/packages/audio.scm:1739 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" -"to record and/or play sound using a callback function or a blocking rea= d/write\n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" "interface." msgstr "" =20 -#: gnu/packages/audio.scm:1696 +#: gnu/packages/audio.scm:1762 msgid "Graphical user interface for FluidSynth" msgstr "" =20 -#: gnu/packages/audio.scm:1698 +#: gnu/packages/audio.scm:1764 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" =20 -#: gnu/packages/audio.scm:1736 +#: gnu/packages/audio.scm:1802 msgid "Networked audio system" msgstr "" =20 -#: gnu/packages/audio.scm:1738 +#: gnu/packages/audio.scm:1804 msgid "" "RSound allows you to send audio from an application and transfer it\n" -"directly to a different computer on your LAN network. It is an audio d= aemon\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" "with a much different focus than most other audio daemons." msgstr "" =20 -#: gnu/packages/audio.scm:1769 +#: gnu/packages/audio.scm:1835 msgid "JACK audio frequency analyzer and display" msgstr "" =20 -#: gnu/packages/audio.scm:1771 +#: gnu/packages/audio.scm:1837 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" -"Connection Kit. It can display the FFT of any input, modify it and out= put the\n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" "result." msgstr "" =20 -#: gnu/packages/audio.scm:1812 +#: gnu/packages/audio.scm:1883 msgid "Fast, partitioned convolution engine library" msgstr "" =20 -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1885 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" =20 -#: gnu/packages/audio.scm:1854 +#: gnu/packages/audio.scm:1930 msgid "C++ library for resampling audio signals" msgstr "" =20 -#: gnu/packages/audio.scm:1856 +#: gnu/packages/audio.scm:1932 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is= \n" -"designed to be used within a real-time processing context, to be fast, = and to\n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" "provide high-quality sample rate conversion." msgstr "" =20 -#: gnu/packages/audio.scm:1902 +#: gnu/packages/audio.scm:1978 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" "access to ALSA PCM devices, taking care of the many functions required = to\n" @@ -601,32 +647,61 @@ msgid "" "point audio data." msgstr "" =20 -#: gnu/packages/backup.scm:89 +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" + +#: gnu/packages/audio.scm:2010 +msgid "" +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." +msgstr "" + +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" + +#: gnu/packages/audio.scm:2030 +msgid "" +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 msgid "Encrypted backup using rsync algorithm" msgstr "Krypteret sikkerhedskopiering via brug af rsync-algoritmen" =20 -#: gnu/packages/backup.scm:91 +#: gnu/packages/backup.scm:94 msgid "" "Duplicity backs up directories by producing encrypted tar-format volume= s\n" -"and uploading them to a remote or local file server. Because duplicity= uses\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" "librsync, the incremental archives are space efficient and only record = the\n" "parts of files that have changed since the last backup. Because duplic= ity\n" "uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" "spying and/or modification by the server." msgstr "" "Duplicity laver sikkerhedskopier af mapper ved at fremstille krypterede= \n" -"arkiver i tar-format og overf=C3=B8re dem til en ekstern eller en lokal= filserver.\n" -"Da Duplicity bruger librsync, er de trinvist opbyggede arkiver pladseff= ektive\n" +"arkiver i tar-format og overf=C3=B8re dem til en ekstern eller en lokal= " +"filserver.\n" +"Da Duplicity bruger librsync, er de trinvist opbyggede arkiver " +"pladseffektive\n" "og indeholder kun dele af filerne som har =C3=A6ndret sig siden sidste = \n" "sikkerhedskopiering. Da Duplicity bruger GnuPG til at kryptere og/eller= \n" "underskrive disse arkiver, s=C3=A5 vil de v=C3=A6re sikret mod spionage= og/eller\n" "=C3=A6ndring af serveren." =20 -#: gnu/packages/backup.scm:125 +#: gnu/packages/backup.scm:128 msgid "Simple incremental backup tool" msgstr "Simpelt v=C3=A6rkt=C3=B8j til trinvis sikkerhedskopiering" =20 -#: gnu/packages/backup.scm:127 +#: gnu/packages/backup.scm:130 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -639,37 +714,42 @@ msgstr "" "sikkerhedskopier, krypterede sikkerhedskopier og opdelte sikkerhedskopi= er\n" "(kaldt klumper) s=C3=A5 der nemt kan br=C3=A6ndes til cd/dvd." =20 -#: gnu/packages/backup.scm:181 +#: gnu/packages/backup.scm:185 msgid "Multi-format archive and compression library" msgstr "Arkiv- og komprimeringsbibliotek for flere formater" =20 -#: gnu/packages/backup.scm:183 +#: gnu/packages/backup.scm:187 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supp= orts\n" -"reading and writing archives compressed using various compression filte= rs such\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" "as gzip and bzip2. The library is inherently stream-oriented; readers\= n" "serially iterate through the archive, writers serially add things to th= e\n" -"archive. In particular, note that there is currently no built-in suppo= rt for\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" "random access nor for in-place modification." msgstr "" "Libarchive tilbyder en fleksibel gr=C3=A6nseflade for l=C3=A6sning og s= krivning\n" -"af arkiver i forskellige formater s=C3=A5som tar og cpio. Libarchive un= derst=C3=B8tter\n" -"ogs=C3=A5 l=C3=A6sning og skrivning af arkiver komprimeret via diverse = komprimeringsfiltre s=C3=A5som\n" +"af arkiver i forskellige formater s=C3=A5som tar og cpio. Libarchive " +"underst=C3=B8tter\n" +"ogs=C3=A5 l=C3=A6sning og skrivning af arkiver komprimeret via diverse = " +"komprimeringsfiltre s=C3=A5som\n" "gzip og bzip2, Biblioteket er indbygget str=C3=B8morienteret; l=C3=A6se= re l=C3=B8ber\n" "serielt igennem arkiver, skrivere tilf=C3=B8jer serielt ting til arkive= t.\n" "Bem=C3=A6rk venligst at der i =C3=B8jeblikket ikke er indbygget underst= =C3=B8ttelse\n" "for vilk=C3=A5rlig vilk=C3=A5rlig adgang eller for direkte modifikation= i arkivet." =20 -#: gnu/packages/backup.scm:246 +#: gnu/packages/backup.scm:250 msgid "Provide a list of files to backup" msgstr "Tilbyder en liste af filer til sikkerhedskopiering" =20 -#: gnu/packages/backup.scm:248 +#: gnu/packages/backup.scm:252 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" "Rdup itself does not backup anything, it only print a list of absolute\= n" -"file names to standard output. Auxiliary scripts are needed that act o= n this\n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" "list and implement the backup strategy." msgstr "" "Rdup er et redskab inspireret af m=C3=A5den som rsync og plan9 udf=C3=B8= rer\n" @@ -678,15 +758,16 @@ msgstr "" "skripter er kr=C3=A6vet til for det videre arbejde med denne liste og\n= " "implementering af sikkerhedskopistrategien." =20 -#: gnu/packages/backup.scm:278 +#: gnu/packages/backup.scm:282 msgid "Tar-compatible archiver" msgstr "Tar-kompatibelt arkivprogram" =20 -#: gnu/packages/backup.scm:280 +#: gnu/packages/backup.scm:284 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" "ciphering, redundancy, differential backup, indexed extraction, multico= re\n" -"compression, input and output serialisation, and tolerance to partial a= rchive\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" "errors." msgstr "" "Btar er et tar-kompatibelt arkivprogram, som tillader arbitr=C3=A6r kom= primering\n" @@ -694,22 +775,27 @@ msgstr "" "indekseret udtr=C3=A6kning, komprimering med flere kerner, inddata- og = uddata-\n" "serialisering, og tolerance for delvise arkivfejl." =20 -#: gnu/packages/backup.scm:308 +#: gnu/packages/backup.scm:312 msgid "Local/remote mirroring+incremental backup" msgstr "Lokal/ekstern spejlning+trinvis sikkerhedskopiering" =20 -#: gnu/packages/backup.scm:310 +#: gnu/packages/backup.scm:314 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network= .\n" -"The target directory ends up a copy of the source directory, but extra = reverse\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" "diffs are stored in a special subdirectory of that target directory, so= you\n" -"can still recover files lost some time ago. The idea is to combine the= best\n" -"features of a mirror and an incremental backup. Rdiff-backup also pres= erves\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" "subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" "modification times, extended attributes, acls, and resource forks. Als= o,\n" "rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" -"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive up\n" -"to a remote location, and only the differences will be transmitted. Fi= nally,\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" "Rdiff-backup laver sikkerhedskopiering af en mappe til en anden, eventu= elt\n" @@ -726,26 +812,45 @@ msgstr "" "placering og kun forskellene vil blive overf=C3=B8rt. Endelig er rdiff-= backup\n" "nem at bruge og startops=C3=A6tningen er lavet med fornuftige standarde= r." =20 -#: gnu/packages/backup.scm:349 +#: gnu/packages/backup.scm:353 msgid "Deduplicating backup program" msgstr "" =20 -#: gnu/packages/backup.scm:350 +#: gnu/packages/backup.scm:354 msgid "" "Attic is a deduplicating backup program. The main goal of\n" "Attic is to provide an efficient and secure way to backup data. The da= ta\n" -"deduplication technique used makes Attic suitable for daily backups sin= ce only\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" "changes are stored." msgstr "" =20 -#: gnu/packages/base.scm:65 +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 msgid "Hello, GNU world: An example GNU package" msgstr "Hej, GNU-verden: Et eksempel p=C3=A5 en GNU-pakke" =20 -#: gnu/packages/base.scm:67 +#: gnu/packages/base.scm:68 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" "command-line arguments, multiple languages, and so on." msgstr "" "GNU Hello udskriver beskeden =C2=BBHej verden!=C2=AB og stopper s=C3=A5= . Det\n" @@ -753,11 +858,11 @@ msgstr "" "s=C3=A5dan underst=C3=B8tter programmer parametre p=C3=A5 kommandolinje= n, flere\n" "sprog og s=C3=A5 videre." =20 -#: gnu/packages/base.scm:86 +#: gnu/packages/base.scm:89 msgid "Print lines matching a pattern" msgstr "Udskriv linjer der matcher et m=C3=B8nster" =20 -#: gnu/packages/base.scm:88 +#: gnu/packages/base.scm:91 msgid "" "grep is a tool for finding text inside files. Text is found by\n" "matching a pattern provided by the user in one or many files. The patt= ern\n" @@ -776,29 +881,32 @@ msgstr "" "grep tilbyder mange udvidelser i forhold til standardredskabet,\n" "inklusiv rekursiv mappes=C3=B8gning." =20 -#: gnu/packages/base.scm:111 +#: gnu/packages/base.scm:114 msgid "Stream editor" msgstr "Str=C3=B8mredigeringsprogram" =20 -#: gnu/packages/base.scm:126 +#: gnu/packages/base.scm:129 msgid "" "Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" "is often used for substituting text patterns in a stream. The GNU\n" "implementation offers several extensions over the standard utility." msgstr "" "Sed er et ikkeinteraktivt redigeringsprogram for tekststr=C3=B8mme. Det= \n" -"modtager en tekst fra en fil eller fra standardind og anvender s=C3=A5 = en serie af tekstredigeringskommandoer til str=C3=B8mmen og udskriver\n" +"modtager en tekst fra en fil eller fra standardind og anvender s=C3=A5 = en serie " +"af tekstredigeringskommandoer til str=C3=B8mmen og udskriver\n" "resultatet til standardud. Det bruges ofte til s=C3=B8g og erstat af\n" "tekstm=C3=B8nster i en str=C3=B8m. GNU-implementeringen tilbyder flere\= n" "udvidelser i forhold til standardredskabet." =20 -#: gnu/packages/base.scm:149 +#: gnu/packages/base.scm:152 msgid "Managing tar archives" msgstr "H=C3=A5ndtering af tar-arkiver" =20 -#: gnu/packages/base.scm:151 +#: gnu/packages/base.scm:154 msgid "" "Tar provides the ability to create tar archives, as well as the\n" "ability to extract, update or list files in an existing archive. It is= \n" @@ -813,14 +921,15 @@ msgstr "" "mappestruktur og filinformation s=C3=A5som rettigheder og oprettelse/=C3= =A6ndrings-\n" "datoer bevares. GNU tar tilbyder mange udvidelser over standardredskabe= t." =20 -#: gnu/packages/base.scm:174 +#: gnu/packages/base.scm:177 msgid "Apply differences to originals, with optional backups" msgstr "Anvend forskelle p=C3=A5 originaler, med valgfri sikkerhedskopie= ring" =20 -#: gnu/packages/base.scm:176 +#: gnu/packages/base.scm:179 msgid "" "Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" "files depending on the contents of the diff file. It accepts several\n= " "different diff formats. It may also be used to revert previously appli= ed\n" "differences." @@ -831,14 +940,15 @@ msgstr "" "forskellige diff-formater. Det kan ogs=C3=A5 bruges til at tilbagef=C3=B8= re\n" "tidligere anvendte forskelle." =20 -#: gnu/packages/base.scm:196 +#: gnu/packages/base.scm:199 msgid "Comparing and merging files" msgstr "Sammenligning og sammenf=C3=B8jning af filer" =20 -#: gnu/packages/base.scm:198 +#: gnu/packages/base.scm:201 msgid "" "GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" "differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" "\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" "interactive means to merge two files." @@ -849,17 +959,20 @@ msgstr "" "de er forskellige. =C2=BBdiff3=C2=AB giver dig mulighed for at sammenli= gne tre filer.\n" "Endelig tilbyder =C2=BBsdiff=C2=AB en interaktiv m=C3=A5de at sammenf=C3= =B8je to filer." =20 -#: gnu/packages/base.scm:231 +#: gnu/packages/base.scm:234 msgid "Operating on files matching given criteria" msgstr "Operation p=C3=A5 filer der matcher angivne kriterier" =20 -#: gnu/packages/base.scm:233 +#: gnu/packages/base.scm:236 msgid "" "Findutils supplies the basic file directory searching utilities of the\= n" "GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" "used to apply commands with arbitrarily long arguments." msgstr "" "Findutils indeholder de grundl=C3=A6ggende s=C3=B8geredskaber til filma= pper for\n" @@ -867,17 +980,19 @@ msgstr "" "rekursivt efter filre i en mappe j=C3=A6vnf=C3=B8r angivne kriterier og= \n" "=C2=BBlocate=C2=AB viser filer i en database som matcher en foresp=C3=B8= rgsel. To\n" "ekstra v=C3=A6rkt=C3=B8jer er inkluderet: =C2=BBupdatedb=C2=AB opdatere= r filnavnsdatabasen\n" -"og =C2=BBxargs=C2=AB kan bruges til at anvende kommandoer med arbitr=C3= =A6rt lange argumenter." +"og =C2=BBxargs=C2=AB kan bruges til at anvende kommandoer med arbitr=C3= =A6rt lange " +"argumenter." =20 -#: gnu/packages/base.scm:297 +#: gnu/packages/base.scm:300 msgid "Core GNU utilities (file, text, shell)" msgstr "Core GNU-redskaber (file, text, shell)" =20 -#: gnu/packages/base.scm:299 +#: gnu/packages/base.scm:302 msgid "" "GNU Coreutils includes all of the basic command-line tools that are\n" "expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" "functionality beyond that which is outlined in the POSIX standard." msgstr "" "GNU Coreutils inkluderer alle de grundl=C3=A6ggende kommandolinjev=C3=A6= rkt=C3=B8jer,\n" @@ -886,15 +1001,16 @@ msgstr "" "af disse v=C3=A6rkt=C3=B8jer tilbyder udvidet funktionalitet udover det= skitseret\n" "i POSIX-standarden." =20 -#: gnu/packages/base.scm:341 +#: gnu/packages/base.scm:344 msgid "Remake files automatically" msgstr "Gendan filer automatisk" =20 -#: gnu/packages/base.scm:343 +#: gnu/packages/base.scm:346 msgid "" "Make is a program that is used to control the production of\n" "executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" "generated from its source. It has powerful dependency resolution and t= he\n" "ability to determine when files have to be regenerated after their sour= ces\n" "change. GNU make offers many powerful extensions over the standard uti= lity." @@ -907,11 +1023,11 @@ msgstr "" "gendannes efter at deres kilder har =C3=A6ndret sig. GNU make tilbyder\= n" "mange funktionsrige udvidelser der ligger udover standardredskabet." =20 -#: gnu/packages/base.scm:388 +#: gnu/packages/base.scm:391 msgid "Binary utilities: bfd gas gprof ld" msgstr "Bin=C3=A6re redskaber: bfd gas gprof ld" =20 -#: gnu/packages/base.scm:390 +#: gnu/packages/base.scm:393 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" @@ -921,85 +1037,90 @@ msgid "" "included." msgstr "" =20 -#: gnu/packages/base.scm:455 +#: gnu/packages/base.scm:458 msgid "The linker wrapper" msgstr "" =20 -#: gnu/packages/base.scm:457 +#: gnu/packages/base.scm:460 msgid "" "The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" -"missing '-rpath' flags, and to detect any misuse of libraries outside o= f the\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" "store." msgstr "" =20 -#: gnu/packages/base.scm:625 +#: gnu/packages/base.scm:637 msgid "The GNU C Library" msgstr "" =20 -#: gnu/packages/base.scm:627 +#: gnu/packages/base.scm:639 msgid "" "Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" "printf, exit...\n" "\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" "with the Linux kernel." msgstr "" =20 -#: gnu/packages/base.scm:643 +#: gnu/packages/base.scm:670 msgid "All the locales supported by the GNU C Library" msgstr "" =20 -#: gnu/packages/base.scm:645 +#: gnu/packages/base.scm:672 msgid "" "This package provides all the locales supported by the GNU C Library,\n= " -"more than 400 in total. To use them set the 'LOCPATH' environment vari= able to\n" +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" "the 'share/locale' sub-directory of this package." msgstr "" =20 -#: gnu/packages/base.scm:713 +#: gnu/packages/base.scm:740 msgid "Small sample of UTF-8 locales" msgstr "" =20 -#: gnu/packages/base.scm:715 +#: gnu/packages/base.scm:742 msgid "" "This package provides a small sample of UTF-8 locales mostly useful in\= n" "test environments." msgstr "" =20 -#: gnu/packages/base.scm:733 +#: gnu/packages/base.scm:760 msgid "Find full path of shell commands" msgstr "" =20 -#: gnu/packages/base.scm:735 +#: gnu/packages/base.scm:762 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-i= n\n" "command." msgstr "" =20 -#: gnu/packages/base.scm:805 +#: gnu/packages/base.scm:832 msgid "The GNU C Library (GNU Hurd variant)" msgstr "" =20 -#: gnu/packages/base.scm:907 +#: gnu/packages/base.scm:934 msgid "Database of current and historical time zones" msgstr "" =20 -#: gnu/packages/base.scm:908 +#: gnu/packages/base.scm:935 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for man= y\n" "representative locations around the globe. It is updated periodically = to\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" "and daylight-saving rules." msgstr "" =20 -#: gnu/packages/bittorrent.scm:82 +#: gnu/packages/bittorrent.scm:90 msgid "Fast and easy BitTorrent client" msgstr "" =20 -#: gnu/packages/bittorrent.scm:84 +#: gnu/packages/bittorrent.scm:92 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n= " @@ -1007,28 +1128,50 @@ msgid "" "DHT, =C2=B5TP, PEX and Magnet Links." msgstr "" =20 -#: gnu/packages/bittorrent.scm:116 +#: gnu/packages/bittorrent.scm:124 msgid "BitTorrent library of rtorrent" msgstr "" =20 -#: gnu/packages/bittorrent.scm:118 +#: gnu/packages/bittorrent.scm:126 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" "speed and efficiency." msgstr "" =20 -#: gnu/packages/bittorrent.scm:145 +#: gnu/packages/bittorrent.scm:153 msgid "BitTorrent client with ncurses interface" msgstr "" =20 -#: gnu/packages/bittorrent.scm:147 +#: gnu/packages/bittorrent.scm:155 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" "XML-RPC over SCGI." msgstr "" =20 +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + #: gnu/packages/certs.scm:65 msgid "Python script to extract .pem data from certificate collection" msgstr "" @@ -1050,60 +1193,67 @@ msgid "" "taken from the NSS package and thus ultimately from the Mozilla project= ." msgstr "" =20 -#: gnu/packages/compression.scm:72 +#: gnu/packages/compression.scm:75 msgid "Compression library" msgstr "" =20 -#: gnu/packages/compression.scm:74 +#: gnu/packages/compression.scm:77 msgid "" "zlib is designed to be a free, general-purpose, legally unencumbered --= \n" -"that is, not covered by any patents -- lossless data-compression librar= y for\n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" "use on virtually any computer hardware and operating system. The zlib = data\n" -"format is itself portable across platforms. Unlike the LZW compression= method\n" -"used in Unix compress(1) and in the GIF image format, the compression m= ethod\n" -"currently used in zlib essentially never expands the data. (LZW can dou= ble or\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" "triple the file size in extreme cases.) zlib's memory footprint is als= o\n" -"independent of the input data and can be reduced, if necessary, at some= cost\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" "in compression." msgstr "" =20 -#: gnu/packages/compression.scm:99 +#: gnu/packages/compression.scm:102 msgid "Replacement for Sun's 'jar' utility" msgstr "" =20 -#: gnu/packages/compression.scm:101 +#: gnu/packages/compression.scm:104 msgid "" "FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" "utility. Instead of being written in Java, FastJar is written in C." msgstr "" =20 -#: gnu/packages/compression.scm:119 +#: gnu/packages/compression.scm:122 msgid "C library for manipulating POSIX tar files" msgstr "" =20 -#: gnu/packages/compression.scm:121 +#: gnu/packages/compression.scm:124 msgid "" "libtar is a C library for manipulating POSIX tar files. It handles\n" "adding and extracting files to/from a tar archive." msgstr "" =20 -#: gnu/packages/compression.scm:138 +#: gnu/packages/compression.scm:141 msgid "General file (de)compression (using lzw)" msgstr "" =20 -#: gnu/packages/compression.scm:143 +#: gnu/packages/compression.scm:146 msgid "" "GNU Gzip provides data compression and decompression utilities; the\n" -"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a single\n" -"file; as a result, it is often used in conjunction with \"tar\", result= ing in\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" "\".tar.gz\" or \".tgz\", etc." msgstr "" =20 -#: gnu/packages/compression.scm:219 +#: gnu/packages/compression.scm:222 msgid "High-quality data compression program" msgstr "" =20 -#: gnu/packages/compression.scm:221 +#: gnu/packages/compression.scm:224 msgid "" "bzip2 is a freely available, patent free (see below), high-quality data= \n" "compressor. It typically compresses files to within 10% to 15% of the = best\n" @@ -1112,27 +1262,30 @@ msgid "" "decompression." msgstr "" =20 -#: gnu/packages/compression.scm:251 +#: gnu/packages/compression.scm:254 msgid "Parallel bzip2 implementation" msgstr "" =20 -#: gnu/packages/compression.scm:253 +#: gnu/packages/compression.scm:256 msgid "" "Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" -"compressor that uses pthreads and achieves near-linear speedup on SMP m= achines.\n" -"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = anything\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" "compressed with pbzip2 can be decompressed with bzip2)." msgstr "" =20 -#: gnu/packages/compression.scm:272 +#: gnu/packages/compression.scm:277 msgid "General-purpose data compression" msgstr "" =20 -#: gnu/packages/compression.scm:274 +#: gnu/packages/compression.scm:279 msgid "" "XZ Utils is free general-purpose data compression software with high\n" "compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" -"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = Utils.\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" "\n" "The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" "been modified quite a lot to be suitable for XZ Utils. The primary\n" @@ -1141,11 +1294,11 @@ msgid "" "than gzip and 15 % smaller output than bzip2." msgstr "" =20 -#: gnu/packages/compression.scm:302 +#: gnu/packages/compression.scm:307 msgid "Data compression library suitable for real-time data de-/compress= ion" msgstr "" =20 -#: gnu/packages/compression.scm:304 +#: gnu/packages/compression.scm:309 msgid "" "LZO is a data compression library which is suitable for data\n" "de-/compression in real-time. This means it favours speed over\n" @@ -1155,347 +1308,409 @@ msgid "" "format are designed to be portable across platforms." msgstr "" =20 -#: gnu/packages/compression.scm:327 +#: gnu/packages/compression.scm:332 msgid "Compress or expand files" msgstr "" =20 -#: gnu/packages/compression.scm:329 +#: gnu/packages/compression.scm:334 msgid "" "Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" -"LZO data compression library for compression services, and its main adv= antages\n" -"over gzip are much higher compression and decompression speed (at the c= ost of\n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" "some compression ratio)." msgstr "" =20 -#: gnu/packages/compression.scm:348 +#: gnu/packages/compression.scm:353 msgid "Lossless data compressor based on the LZMA algorithm" msgstr "" =20 -#: gnu/packages/compression.scm:350 +#: gnu/packages/compression.scm:355 msgid "" "Lzip is a lossless data compressor with a user interface similar to the= \n" -"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and com= presses\n" -"more than bzip2, which makes it well suited for software distribution a= nd data\n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" "archiving. Lzip is a clean implementation of the LZMA algorithm." msgstr "" =20 -#: gnu/packages/compression.scm:382 +#: gnu/packages/compression.scm:387 msgid "Archives in shell scripts, uuencode/uudecode" msgstr "" =20 -#: gnu/packages/compression.scm:384 +#: gnu/packages/compression.scm:389 msgid "" "GNU sharutils is a package for creating and manipulating shell\n" -"archives that can be readily emailed. A shell archive is a file that c= an be\n" -"processed by a Bourne-type shell to unpack the original collection of f= iles.\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" "This package is mostly for compatibility and historical interest." msgstr "" =20 -#: gnu/packages/compression.scm:415 +#: gnu/packages/compression.scm:420 msgid "Library for SoundFont decompression" msgstr "" =20 -#: gnu/packages/compression.scm:417 +#: gnu/packages/compression.scm:422 msgid "" "SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" "with the sfArk algorithm." msgstr "" =20 -#: gnu/packages/compression.scm:449 +#: gnu/packages/compression.scm:454 msgid "Basic sfArk decompressor" msgstr "" =20 -#: gnu/packages/compression.scm:450 +#: gnu/packages/compression.scm:455 msgid "" "SfArk extractor converts SoundFonts in the compressed legacy\n" "sfArk file format to the uncompressed sf2 format." msgstr "" =20 -#: gnu/packages/compression.scm:467 +#: gnu/packages/compression.scm:472 msgid "Compression tools for some formats used by Microsoft" msgstr "" =20 -#: gnu/packages/compression.scm:469 +#: gnu/packages/compression.scm:474 msgid "" "The purpose of libmspack is to provide both compression and\n" "decompression of some loosely related file formats used by Microsoft." msgstr "" =20 -#: gnu/packages/compression.scm:488 +#: gnu/packages/compression.scm:493 msgid "Low-level interface to bzip2 compression library" msgstr "" =20 -#: gnu/packages/compression.scm:489 +#: gnu/packages/compression.scm:494 msgid "" "This module provides a Perl interface to the bzip2\n" "compression library." msgstr "" =20 -#: gnu/packages/compression.scm:523 +#: gnu/packages/compression.scm:528 msgid "Low-level interface to zlib compression library" msgstr "" =20 -#: gnu/packages/compression.scm:524 +#: gnu/packages/compression.scm:529 msgid "" "This module provides a Perl interface to the zlib\n" "compression library." msgstr "" =20 -#: gnu/packages/compression.scm:545 +#: gnu/packages/compression.scm:550 msgid "IO Interface to compressed files/buffers" msgstr "" =20 -#: gnu/packages/compression.scm:546 +#: gnu/packages/compression.scm:551 msgid "" "IO-Compress provides a Perl interface to allow reading and\n" "writing of compressed data created with the zlib and bzip2 libraries." msgstr "" =20 -#: gnu/packages/compression.scm:572 +#: gnu/packages/compression.scm:577 msgid "Compression algorithm focused on speed" msgstr "" =20 -#: gnu/packages/compression.scm:573 +#: gnu/packages/compression.scm:578 msgid "" "LZ4 is a lossless compression algorithm, providing\n" -"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures an\n" -"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/cycle).\n" -"A high compression derivative, called LZ4_HC, is also provided. It tra= des CPU\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" "time for compression ratio." msgstr "" =20 -#: gnu/packages/compression.scm:613 +#: gnu/packages/compression.scm:618 msgid "Tools to create and extract squashfs filesystems" msgstr "" =20 -#: gnu/packages/compression.scm:615 +#: gnu/packages/compression.scm:620 msgid "" "Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" "zlib to compress files, inodes, and directories. All blocks are packed= to\n" -"minimize the data overhead, and block sizes of between 4K and 1M are su= pported.\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" "It is intended to be used for archival use, for live CDs, and for embed= ded\n" -"systems where low overhead is needed. This package allows you to creat= e and\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" "extract such filesystems." msgstr "" =20 -#: gnu/packages/compression.scm:652 +#: gnu/packages/compression.scm:657 msgid "Parallel implementation of gzip" msgstr "" =20 -#: gnu/packages/compression.scm:654 +#: gnu/packages/compression.scm:659 msgid "" "This package provides a parallel implementation of gzip that exploits\n= " "multiple processors and multiple cores when compressing data." msgstr "" =20 -#: gnu/packages/databases.scm:97 +#: gnu/packages/compression.scm:683 +msgid "Parallel indexing implementation of LZMA" +msgstr "" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 msgid "Berkeley database" msgstr "" =20 -#: gnu/packages/databases.scm:99 +#: gnu/packages/databases.scm:124 msgid "" "Berkeley DB is an embeddable database allowing developers the choice of= \n" "SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " msgstr "" =20 -#: gnu/packages/databases.scm:173 +#: gnu/packages/databases.scm:198 msgid "Fast, easy to use, and popular database" msgstr "" =20 -#: gnu/packages/databases.scm:175 +#: gnu/packages/databases.scm:200 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" =20 -#: gnu/packages/databases.scm:242 +#: gnu/packages/databases.scm:267 msgid "SQL database server" msgstr "" =20 -#: gnu/packages/databases.scm:244 +#: gnu/packages/databases.scm:269 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" "as a drop-in replacement of MySQL." msgstr "" =20 -#: gnu/packages/databases.scm:264 +#: gnu/packages/databases.scm:289 msgid "Powerful object-relational database system" msgstr "" =20 -#: gnu/packages/databases.scm:266 +#: gnu/packages/databases.scm:291 msgid "" "PostgreSQL is a powerful object-relational database system. It is full= y\n" -"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, and\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" "stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" -"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, and\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" "TIMESTAMP. It also supports storage of binary large objects, including= \n" "pictures, sounds, or video." msgstr "" =20 -#: gnu/packages/databases.scm:302 +#: gnu/packages/databases.scm:329 msgid "Manipulate plain text files as databases" msgstr "" =20 -#: gnu/packages/databases.scm:304 +#: gnu/packages/databases.scm:331 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" "databases created with Recutils carry all of the expected features such= as\n" "unique fields, primary keys, time stamps and more. Many different fiel= d\n" "types are supported, as is encryption." msgstr "" =20 -#: gnu/packages/databases.scm:356 +#: gnu/packages/databases.scm:383 msgid "The SQLite database management system" msgstr "" =20 -#: gnu/packages/databases.scm:358 +#: gnu/packages/databases.scm:385 msgid "" "SQLite is a software library that implements a self-contained, serverle= ss,\n" "zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" -"widely deployed SQL database engine in the world. The source code for = SQLite\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" "is in the public domain." msgstr "" =20 -#: gnu/packages/databases.scm:393 +#: gnu/packages/databases.scm:420 msgid "Trivial database" msgstr "" =20 -#: gnu/packages/databases.scm:395 +#: gnu/packages/databases.scm:422 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and us= es\n" -"locking internally to keep writers from trampling on each other. TDB i= s also\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" "extremely small." msgstr "" =20 -#: gnu/packages/databases.scm:414 +#: gnu/packages/databases.scm:441 msgid "Database independent interface for Perl" msgstr "" =20 -#: gnu/packages/databases.scm:415 +#: gnu/packages/databases.scm:442 msgid "This package provides an database interface for Perl." msgstr "" =20 -#: gnu/packages/databases.scm:462 +#: gnu/packages/databases.scm:489 msgid "Extensible and flexible object <-> relational mapper" msgstr "" =20 -#: gnu/packages/databases.scm:463 +#: gnu/packages/databases.scm:490 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" -"resultset API that allows abstract encapsulation of database operations= . It\n" -"aims to make representing queries in your code as perl-ish as possible = while\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" "still providing access to as many of the capabilities of the database a= s\n" "possible, including retrieving related records from multiple tables in = a\n" -"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY\",\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" "\"ORDER BY\" and \"HAVING\" support." msgstr "" =20 -#: gnu/packages/databases.scm:493 +#: gnu/packages/databases.scm:520 msgid "Cursor with built-in caching support" msgstr "" =20 -#: gnu/packages/databases.scm:494 +#: gnu/packages/databases.scm:521 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" =20 -#: gnu/packages/databases.scm:514 +#: gnu/packages/databases.scm:541 msgid "Introspect many-to-many relationships" msgstr "" =20 -#: gnu/packages/databases.scm:515 +#: gnu/packages/databases.scm:542 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" -"relationships are actually just a collection of convenience methods ins= talled\n" -"to bridge two relationships. This DBIx::Class component can be used to= store\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" "all relevant information about these non-relationships so they can late= r be\n" "introspected and examined." msgstr "" =20 -#: gnu/packages/databases.scm:572 +#: gnu/packages/databases.scm:599 msgid "Create a DBIx::Class::Schema based on a database" msgstr "" =20 -#: gnu/packages/databases.scm:573 +#: gnu/packages/databases.scm:600 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" -"DBIx::Class::Schema by scanning database table definitions and setting = up the\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" "columns, primary keys, unique constraints and relationships." msgstr "" =20 -#: gnu/packages/databases.scm:597 +#: gnu/packages/databases.scm:624 msgid "DBI PostgreSQL interface" msgstr "" =20 -#: gnu/packages/databases.scm:616 +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +#, fuzzy +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "Denne pakke tilbyder en ordbog for stavekontrollen GNU Aspell." + +#: gnu/packages/databases.scm:667 msgid "SQlite interface for Perl" msgstr "" =20 -#: gnu/packages/databases.scm:617 +#: gnu/packages/databases.scm:668 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" -"the entire thing in the distribution. So in order to get a fast transa= ction\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" "capable RDBMS working for your Perl project you simply have to install = this\n" "module, and nothing else." msgstr "" =20 -#: gnu/packages/databases.scm:647 +#: gnu/packages/databases.scm:698 msgid "Generate SQL from Perl data structures" msgstr "" =20 -#: gnu/packages/databases.scm:648 +#: gnu/packages/databases.scm:699 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" "been modified to make the SQL easier to generate from Perl data structu= res.\n" -"The underlying idea is for this module to do what you mean, based on th= e data\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" "structures you provide it, so that you don't have to modify your code e= very\n" "time your data changes." msgstr "" =20 -#: gnu/packages/databases.scm:677 +#: gnu/packages/databases.scm:728 msgid "Split SQL code into atomic statements" msgstr "" =20 -#: gnu/packages/databases.scm:678 +#: gnu/packages/databases.scm:729 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" =20 -#: gnu/packages/databases.scm:696 +#: gnu/packages/databases.scm:747 msgid "SQL tokenizer" msgstr "" =20 -#: gnu/packages/databases.scm:697 +#: gnu/packages/databases.scm:748 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" "valid SQL query." msgstr "" =20 -#: gnu/packages/databases.scm:714 +#: gnu/packages/databases.scm:765 msgid "Data source abstraction library" msgstr "" =20 -#: gnu/packages/databases.scm:715 +#: gnu/packages/databases.scm:766 msgid "" "Unixodbc is a library providing an API with which to access\n" -"data sources. Data sources include SQL Servers and any software with a= n ODBC\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" "Driver." msgstr "" =20 -#: gnu/packages/databases.scm:739 +#: gnu/packages/databases.scm:790 msgid "In-memory key/value and document store" msgstr "" =20 -#: gnu/packages/databases.scm:741 +#: gnu/packages/databases.scm:792 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -1504,14 +1719,15 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" =20 -#: gnu/packages/databases.scm:768 +#: gnu/packages/databases.scm:819 msgid "Key-value cache and store" msgstr "" =20 -#: gnu/packages/databases.scm:769 +#: gnu/packages/databases.scm:820 msgid "" "Redis is an advanced key-value cache and store. Redis\n" -"supports many data structures including strings, hashes, lists, sets, s= orted\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" =20 @@ -1523,7 +1739,8 @@ msgstr "" msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test= \n" "of their interestingness. A common such situation is when attempting t= o\n" -"isolate a small failure-inducing substring of a large input that causes= your\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" "program to exhibit a bug." msgstr "" =20 @@ -1536,20 +1753,24 @@ msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatica= lly\n" "produces a much smaller C/C++ program that has the same property. It i= s\n" -"intended for use by people who discover and report bugs in compilers an= d other\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" "tools that process C/C++ code." msgstr "" =20 -#: gnu/packages/debug.scm:229 +#: gnu/packages/debug.scm:249 msgid "Security-oriented fuzzer" msgstr "" =20 -#: gnu/packages/debug.scm:231 +#: gnu/packages/debug.scm:251 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " -"type of compile-time instrumentation and genetic algorithms to automati= cally\n" -"discover clean, interesting test cases that trigger new internal states= in the\n" -"targeted binary. This substantially improves the functional coverage f= or the\n" +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" "fuzzed code. The compact synthesized corpora produced by the tool are = also\n" "useful for seeding other, more labor- or resource-intensive testing reg= imes\n" "down the road." @@ -1562,15 +1783,16 @@ msgstr "" #: gnu/packages/dejagnu.scm:80 msgid "" "DejaGnu is a framework for testing software. In effect, it serves as\n= " -"a front-end for all tests written for a program. Thus, each program ca= n have\n" +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" "multiple test suites, which are then all managed by a single harness." msgstr "" =20 -#: gnu/packages/feh.scm:53 +#: gnu/packages/feh.scm:54 msgid "Fast and light imlib2-based image viewer" msgstr "" =20 -#: gnu/packages/feh.scm:55 +#: gnu/packages/feh.scm:56 msgid "" "feh is an X11 image viewer aimed mostly at console users.\n" "Unlike most other viewers, it does not have a fancy GUI, but simply\n" @@ -1579,75 +1801,81 @@ msgid "" "actions." msgstr "" =20 -#: gnu/packages/games.scm:113 +#: gnu/packages/games.scm:116 msgid "Backgammon game" msgstr "" =20 -#: gnu/packages/games.scm:114 +#: gnu/packages/games.scm:117 msgid "" "The GNU backgammon application can be used for playing, analyzing and\n= " -"teaching the game. It has an advanced evaluation engine based on artif= icial\n" +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" "neural networks suitable for both beginners and advanced players. In\n= " "addition to a command-line interface, it also features an attractive, 3= D\n" "representation of the playing board." msgstr "" =20 -#: gnu/packages/games.scm:143 +#: gnu/packages/games.scm:146 msgid "3d Rubik's cube game" msgstr "" =20 -#: gnu/packages/games.scm:145 +#: gnu/packages/games.scm:148 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allo= wing\n" -"you to set the size of the cube (the default is 3x3) or to change the c= olors.\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" "You may even apply photos to the faces instead of colors. The game is\= n" "scriptable with Guile." msgstr "" =20 -#: gnu/packages/games.scm:195 +#: gnu/packages/games.scm:198 msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" msgstr "" =20 -#: gnu/packages/games.scm:196 +#: gnu/packages/games.scm:199 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" -"expelled by the Catholic Church out of the Languedoc region in France. = One of\n" -"them, called Jean Raymond, found an old church in which to hide, not kn= owing\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" "that beneath its ruins lay buried an ancient evil." msgstr "" =20 -#: gnu/packages/games.scm:239 +#: gnu/packages/games.scm:242 msgid "Lemmings clone" msgstr "" =20 -#: gnu/packages/games.scm:241 +#: gnu/packages/games.scm:244 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through level= s.\n" "Since the animals walk on their own, the player can only influence them= by\n" -"giving them commands, like build a bridge, dig a hole, or redirect all = animals\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" "in the other direction. Multiple such commands are necessary to reach = the\n" "level's exit. The game is presented in a 2D side view." msgstr "" =20 -#: gnu/packages/games.scm:263 +#: gnu/packages/games.scm:266 msgid "Convert English text to humorous dialects" msgstr "" =20 -#: gnu/packages/games.scm:264 +#: gnu/packages/games.scm:267 msgid "" "The GNU Talk Filters are programs that convert English text\n" -"into stereotyped or otherwise humorous dialects. The filters are provi= ded as\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" "a C library, so they can easily be integrated into other programs." msgstr "" =20 -#: gnu/packages/games.scm:296 +#: gnu/packages/games.scm:299 msgid "Simulate the display from \"The Matrix\"" msgstr "" =20 -#: gnu/packages/games.scm:297 +#: gnu/packages/games.scm:300 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with termi= nal\n" @@ -1655,92 +1883,100 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" =20 -#: gnu/packages/games.scm:317 +#: gnu/packages/games.scm:320 msgid "Full chess implementation" msgstr "" =20 -#: gnu/packages/games.scm:318 +#: gnu/packages/games.scm:321 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" -"against the computer in a game of chess, either through the default ter= minal\n" +"against the computer in a game of chess, either through the default " +"terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" =20 -#: gnu/packages/games.scm:346 +#: gnu/packages/games.scm:349 msgid "Twisted adventures of young pig farmer Dink Smallwood" msgstr "" =20 -#: gnu/packages/games.scm:348 +#: gnu/packages/games.scm:351 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" -"for the role-playing game Dink Smallwood. It supports not only the ori= ginal\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" "game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" "To that extent, it also includes a front-end for managing all of your D= -Mods." msgstr "" =20 -#: gnu/packages/games.scm:370 +#: gnu/packages/games.scm:373 msgid "Game data for GNU Freedink" msgstr "" =20 -#: gnu/packages/games.scm:372 +#: gnu/packages/games.scm:375 msgid "This package contains the game data of GNU Freedink." msgstr "" =20 -#: gnu/packages/games.scm:424 +#: gnu/packages/games.scm:427 msgid "Graphical user interface for chess programs" msgstr "" =20 -#: gnu/packages/games.scm:425 +#: gnu/packages/games.scm:428 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" -"including international chess, xiangqi (Chinese chess), shogi (Japanese= chess)\n" -"and Makruk. Several lesser-known variants are also supported. It pres= ents a\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" "fully interactive graphical interface and it can load and save games in= the\n" "Portable Game Notation." msgstr "" =20 -#: gnu/packages/games.scm:478 +#: gnu/packages/games.scm:481 msgid "Ball and paddle game" msgstr "" =20 -#: gnu/packages/games.scm:479 +#: gnu/packages/games.scm:482 msgid "" "XBoing is a blockout type game where you have a paddle which\n" "you control to bounce a ball around the game zone destroying blocks wit= h a\n" -"proton ball. Each block carries a different point value. The more blo= cks you\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" "destroy, the better your score. The person with the highest score wins= ." msgstr "" =20 -#: gnu/packages/games.scm:511 +#: gnu/packages/games.scm:514 msgid "Typing tutor" msgstr "" =20 -#: gnu/packages/games.scm:513 +#: gnu/packages/games.scm:516 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\= n" "tutorials for the standard QWERTY layout, there are also tutorials for = the\n" -"alternative layouts Dvorak and Colemak, as well as for the numpad. Tut= orials\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" "are primarily in English, however some in other languages are provided.= " msgstr "" =20 -#: gnu/packages/games.scm:566 +#: gnu/packages/games.scm:569 msgid "3D game engine written in C++" msgstr "" =20 -#: gnu/packages/games.scm:568 +#: gnu/packages/games.scm:571 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in= \n" -"C++. Features include an OpenGL renderer, extensible materials, scene = graph\n" -"management, character animation, particle and other special effects, su= pport\n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" "for common mesh file formats, and collision detection." msgstr "" =20 -#: gnu/packages/games.scm:620 +#: gnu/packages/games.scm:623 msgid "2D space shooter" msgstr "" =20 -#: gnu/packages/games.scm:622 +#: gnu/packages/games.scm:625 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controll= ed\n" @@ -1748,45 +1984,49 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" =20 -#: gnu/packages/games.scm:663 +#: gnu/packages/games.scm:666 msgid "Main game data for the Minetest game engine" msgstr "" =20 -#: gnu/packages/games.scm:665 +#: gnu/packages/games.scm:668 msgid "Game data for the Minetest infinite-world block sandox game." msgstr "" =20 -#: gnu/packages/games.scm:717 +#: gnu/packages/games.scm:720 msgid "Infinite-world block sandbox game" msgstr "" =20 -#: gnu/packages/games.scm:719 +#: gnu/packages/games.scm:722 msgid "" "Minetest is a sandbox construction game. Players can create and destro= y\n" "various types of blocks in a three-dimensional open world. This allows= \n" -"forming structures in every possible creation, on multiplayer servers o= r as a\n" -"single player. Mods and texture packs allow players to personalize the= game\n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" "in different ways." msgstr "" =20 -#: gnu/packages/games.scm:758 +#: gnu/packages/games.scm:761 msgid "Curses Implementation of the Glk API" msgstr "" =20 -#: gnu/packages/games.scm:760 +#: gnu/packages/games.scm:763 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" -"primarily designed for interactive fiction, but it should be suitable f= or many\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" "interactive text utilities, particularly those based on a command line.= \n" -"This is an implementation of the Glk library which runs in a terminal w= indow,\n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" "using the curses.h library for screen control." msgstr "" =20 -#: gnu/packages/games.scm:797 +#: gnu/packages/games.scm:800 msgid "Interpreter for Glulx VM" msgstr "" =20 -#: gnu/packages/games.scm:799 +#: gnu/packages/games.scm:802 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" @@ -1794,35 +2034,37 @@ msgid "" "reference interpreter, using Glk API." msgstr "" =20 -#: gnu/packages/games.scm:835 +#: gnu/packages/games.scm:838 msgid "Z-machine interpreter" msgstr "" =20 -#: gnu/packages/games.scm:837 +#: gnu/packages/games.scm:840 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemen= ted\n" "either by Infocom or created using the Inform compiler." msgstr "" =20 -#: gnu/packages/games.scm:887 +#: gnu/packages/games.scm:890 msgid "Reference frontend for the libretro API" msgstr "" =20 -#: gnu/packages/games.scm:889 +#: gnu/packages/games.scm:892 msgid "" "Libretro is a simple but powerful development interface that allows for= \n" -"the easy creation of emulators, games and multimedia applications that = can plug\n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" "straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" -"reference frontend for the libretro API, currently used by most as a mo= dular\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" "multi-system game/emulator system." msgstr "" =20 -#: gnu/packages/games.scm:909 +#: gnu/packages/games.scm:912 msgid "Play the game of Go" msgstr "" =20 -#: gnu/packages/games.scm:911 +#: gnu/packages/games.scm:914 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. Whil= e\n" @@ -1833,56 +2075,64 @@ msgid "" "Protocol)." msgstr "" =20 -#: gnu/packages/games.scm:961 +#: gnu/packages/games.scm:964 msgid "High speed arctic racing game based on Tux Racer" msgstr "" =20 -#: gnu/packages/games.scm:963 +#: gnu/packages/games.scm:966 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" -"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of the\n" -"game is to slide down a snow- and ice-covered mountain as quickly as po= ssible,\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" "avoiding the trees and rocks that will slow you down.\n" "\n" -"Collect herrings and other goodies while sliding down the hill, but avo= id fish\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" "bones.\n" "\n" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" =20 -#: gnu/packages/games.scm:1001 +#: gnu/packages/games.scm:1004 msgid "Game of jumping to the next floor, trying not to fall" msgstr "" =20 -#: gnu/packages/games.scm:1003 +#: gnu/packages/games.scm:1006 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" -"platform to platform to avoid falling, while the platforms drop at fast= er rates\n" -"the higher you go. The game features multiplayer, unlimited FPS, smoot= h floor\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" "falling, themeable graphics and sounds, and replays." msgstr "" =20 -#: gnu/packages/games.scm:1044 +#: gnu/packages/games.scm:1047 msgid "Turn-based strategy game" msgstr "" =20 -#: gnu/packages/games.scm:1046 +#: gnu/packages/games.scm:1049 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" -"with several single player campaigns, and multiplayer games (both netwo= rked and\n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" "local).\n" "\n" "Battle for control on a range of maps, using variety of units which hav= e\n" -"advantages and disadvantages against different types of attacks. Units= gain\n" -"experience and advance levels, and are carried over from one scenario t= o the\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" "next campaign." msgstr "" =20 -#: gnu/packages/games.scm:1090 -msgid "x86 emulator with CGA/EGA/VGA/etc. graphics and sound" +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" msgstr "" =20 -#: gnu/packages/games.scm:1091 +#: gnu/packages/games.scm:1094 msgid "" "DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" "also emulates CPU:286/386 realmode/protected mode, Directory\n" @@ -1891,35 +2141,38 @@ msgid "" "older games." msgstr "" =20 -#: gnu/packages/games.scm:1136 +#: gnu/packages/games.scm:1139 msgid "Mouse and keyboard discovery for children" msgstr "" =20 -#: gnu/packages/games.scm:1138 +#: gnu/packages/games.scm:1141 msgid "" "Gamine is a game designed for young children who are learning to use th= e\n" -"mouse and keyboard. The child uses the mouse to draw colored dots and = lines\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" "on the screen and keyboard to display letters." msgstr "" =20 -#: gnu/packages/games.scm:1169 +#: gnu/packages/games.scm:1172 msgid "Puzzle game with a cat in lead role" msgstr "" =20 -#: gnu/packages/games.scm:1170 +#: gnu/packages/games.scm:1173 msgid "" "Project Raincat is a game developed by Carnegie Mellon\n" "students through GCS during the Fall 2008 semester. Raincat features g= ame\n" -"play inspired from classics Lemmings and The Incredible Machine. The p= roject\n" -"proved to be an excellent learning experience for the programmers. Eve= rything\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" "is programmed in Haskell." msgstr "" =20 -#: gnu/packages/games.scm:1205 +#: gnu/packages/games.scm:1208 msgid "Client for 'The Mana World' and similar games" msgstr "" =20 -#: gnu/packages/games.scm:1207 +#: gnu/packages/games.scm:1210 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\= n" @@ -1927,38 +2180,185 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" =20 -#: gnu/packages/gcc.scm:303 +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +msgid "Pinball simulator" +msgstr "" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 msgid "GNU Compiler Collection" msgstr "" =20 -#: gnu/packages/gcc.scm:305 +#: gnu/packages/gcc.scm:315 msgid "" "GCC is the GNU Compiler Collection. It provides compiler front-ends\n" -"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, and\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" "Go. It also includes runtime support libraries for these languages." msgstr "" =20 -#: gnu/packages/gcc.scm:370 +#: gnu/packages/gcc.scm:380 msgid "GNU C++ standard library" msgstr "" =20 -#: gnu/packages/gcc.scm:405 +#: gnu/packages/gcc.scm:415 msgid "Collection of subroutines used by various GNU programs" msgstr "" =20 -#: gnu/packages/gcc.scm:561 +#: gnu/packages/gcc.scm:610 msgid "GNU libstdc++ documentation" msgstr "" =20 -#: gnu/packages/gcc.scm:629 -msgid "Manipulating sets and relations of integer points bounded by line= ar constraints" +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" msgstr "" =20 -#: gnu/packages/gcc.scm:632 +#: gnu/packages/gcc.scm:681 msgid "" "isl is a library for manipulating sets and relations of integer points\= n" "bounded by linear constraints. Supported operations on sets include\n" -"intersection, union, set difference, emptiness check, convex hull, (int= eger)\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" "affine hull, integer projection, computing the lexicographic minimum us= ing\n" "parametric integer programming, coalescing and parametric vertex\n" "enumeration. It also includes an ILP solver based on generalized basis= \n" @@ -1966,11 +2366,11 @@ msgid "" "dependence analysis and bounds on piecewise step-polynomials." msgstr "" =20 -#: gnu/packages/gcc.scm:664 +#: gnu/packages/gcc.scm:713 msgid "Library to generate code for scanning Z-polyhedra" msgstr "" =20 -#: gnu/packages/gcc.scm:666 +#: gnu/packages/gcc.scm:715 msgid "" "CLooG is a free software library to generate code for scanning\n" "Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" @@ -1985,15 +2385,17 @@ msgid "" "effective code." msgstr "" =20 -#: gnu/packages/gcc.scm:721 +#: gnu/packages/gcc.scm:770 msgid "Reference manual for the C programming language" msgstr "" =20 -#: gnu/packages/gcc.scm:723 +#: gnu/packages/gcc.scm:772 msgid "" "This is a reference manual for the C programming language, as\n" -"implemented by the GNU C Compiler (gcc). As a reference, it is not int= ended\n" -"to be a tutorial of the language. Rather, it outlines all of the const= ructs\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" "of the language. Library functions are not included." msgstr "" =20 @@ -2004,53 +2406,57 @@ msgstr "" #: gnu/packages/geeqie.scm:50 msgid "" "Exiv2 is a C++ library and a command line utility to manage image\n" -"metadata. It provides fast and easy read and write access to the Exif,= IPTC\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" "and XMP metadata of images in various formats." msgstr "" =20 -#: gnu/packages/geeqie.scm:81 +#: gnu/packages/geeqie.scm:82 msgid "Lightweight GTK+ based image viewer" msgstr "" =20 -#: gnu/packages/geeqie.scm:83 +#: gnu/packages/geeqie.scm:84 msgid "" "Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" "systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" -"interoperability; easy integration with other software; geeqie works on= files\n" -"and directories, there is no need to import images; fast preview for ma= ny raw\n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" "image formats; tools for image comparison, sorting and managing photo\n= " "collection. Geeqie was initially based on GQview." msgstr "" =20 -#: gnu/packages/gettext.scm:91 +#: gnu/packages/gettext.scm:93 msgid "Tools and documentation for translation" msgstr "" =20 -#: gnu/packages/gettext.scm:93 +#: gnu/packages/gettext.scm:95 msgid "" "GNU Gettext is a package providing a framework for translating the\n" -"textual output of programs into multiple languages. It provides transl= ators\n" +"textual output of programs into multiple languages. It provides " +"translators\n" "with the means to create message catalogs, as well as an Emacs mode to = work\n" "with them, and a runtime library to load translated messages from the\n= " "catalogs. Nearly all GNU packages use Gettext." msgstr "" =20 -#: gnu/packages/gettext.scm:149 +#: gnu/packages/gettext.scm:151 msgid "Scripts to ease maintenance of translations" msgstr "" =20 -#: gnu/packages/gettext.scm:151 +#: gnu/packages/gettext.scm:153 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tool= s on\n" "areas where they were not expected like documentation." msgstr "" =20 -#: gnu/packages/gimp.scm:54 +#: gnu/packages/gimp.scm:53 msgid "Image pixel format conversion library" msgstr "" =20 -#: gnu/packages/gimp.scm:56 +#: gnu/packages/gimp.scm:55 msgid "" "Babl is a dynamic, any to any, pixel format translation library.\n" "It allows converting between different methods of storing pixels known = as\n" @@ -2061,57 +2467,59 @@ msgid "" "provided as well as the framework to add new color models and data type= s." msgstr "" =20 -#: gnu/packages/gimp.scm:111 +#: gnu/packages/gimp.scm:110 msgid "Graph based image processing framework" msgstr "" =20 -#: gnu/packages/gimp.scm:112 +#: gnu/packages/gimp.scm:111 msgid "" "GEGL (Generic Graphics Library) provides infrastructure to\n" "do demand based cached non destructive image editing on larger than RAM= \n" "buffers." msgstr "" =20 -#: gnu/packages/gimp.scm:148 +#: gnu/packages/gimp.scm:153 msgid "GNU Image Manipulation Program" msgstr "" =20 -#: gnu/packages/gimp.scm:150 +#: gnu/packages/gimp.scm:155 msgid "" "GIMP is an application for image manipulation tasks such as photo\n" -"retouching, composition and authoring. It supports all common image fo= rmats\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" "as well as specialized ones. It features a highly customizable interfa= ce\n" "that is extensible via a plugin system." msgstr "" =20 -#: gnu/packages/gnome.scm:138 +#: gnu/packages/gnome.scm:154 msgid "CD/DVD burning tool for Gnome" msgstr "" =20 -#: gnu/packages/gnome.scm:139 +#: gnu/packages/gnome.scm:155 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some uniqu= e\n" "features to enable users to create their discs easily and quickly." msgstr "" =20 -#: gnu/packages/gnome.scm:159 +#: gnu/packages/gnome.scm:175 msgid "Bootstrap GNOME modules built from Git" msgstr "" =20 -#: gnu/packages/gnome.scm:160 +#: gnu/packages/gnome.scm:176 msgid "" "gnome-common contains various files needed to bootstrap\n" -"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt that\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" "can be used to configure a source directory checked out from Git and so= me\n" "commonly used macros." msgstr "" =20 -#: gnu/packages/gnome.scm:198 +#: gnu/packages/gnome.scm:217 msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" msgstr "" =20 -#: gnu/packages/gnome.scm:200 +#: gnu/packages/gnome.scm:219 msgid "" "The libgnome-desktop library provides API shared by several application= s\n" "on the desktop, but that cannot live in the platform for various reason= s.\n" @@ -2121,44 +2529,45 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed.= " msgstr "" =20 -#: gnu/packages/gnome.scm:233 +#: gnu/packages/gnome.scm:252 msgid "Documentation utilities for the Gnome project" msgstr "" =20 -#: gnu/packages/gnome.scm:235 +#: gnu/packages/gnome.scm:254 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" "and keep up to date translations of documentation." msgstr "" =20 -#: gnu/packages/gnome.scm:277 +#: gnu/packages/gnome.scm:298 msgid "Libraries for displaying certificates and accessing key stores" msgstr "" =20 -#: gnu/packages/gnome.scm:279 +#: gnu/packages/gnome.scm:300 msgid "" "The GCR package contains libraries used for displaying certificates and= \n" "accessing key stores. It also provides the viewer for crypto files on = the\n" "GNOME Desktop." msgstr "" =20 -#: gnu/packages/gnome.scm:308 +#: gnu/packages/gnome.scm:329 msgid "Accessing passwords from the GNOME keyring" msgstr "" =20 -#: gnu/packages/gnome.scm:310 +#: gnu/packages/gnome.scm:331 msgid "Client library to access passwords from the GNOME keyring." msgstr "" =20 -#: gnu/packages/gnome.scm:371 +#: gnu/packages/gnome.scm:393 msgid "Daemon to store passwords and encryption keys" msgstr "" =20 -#: gnu/packages/gnome.scm:373 +#: gnu/packages/gnome.scm:395 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n= " -"users. It is run as a daemon in the session, similar to ssh-agent, and= other\n" +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" "applications locate it via an environment variable or D-Bus.\n" "\n" "The program can manage several keyrings, each with its own master passw= ord,\n" @@ -2166,11 +2575,11 @@ msgid "" "forgotten when the session ends." msgstr "" =20 -#: gnu/packages/gnome.scm:438 +#: gnu/packages/gnome.scm:460 msgid "GNOME's document viewer" msgstr "" =20 -#: gnu/packages/gnome.scm:440 +#: gnu/packages/gnome.scm:462 msgid "" "Evince is a document viewer for multiple document formats. It\n" "currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" @@ -2178,32 +2587,32 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" =20 -#: gnu/packages/gnome.scm:469 +#: gnu/packages/gnome.scm:491 msgid "GNOME settings for various desktop components" msgstr "" =20 -#: gnu/packages/gnome.scm:471 +#: gnu/packages/gnome.scm:493 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings schemas\n" "for settings shared by various components of the GNOME desktop." msgstr "" =20 -#: gnu/packages/gnome.scm:505 +#: gnu/packages/gnome.scm:527 msgid "Utility to implement the Freedesktop Icon Naming Specification" msgstr "" =20 -#: gnu/packages/gnome.scm:507 +#: gnu/packages/gnome.scm:529 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\= n" "GNOME and KDE desktops to the icon names proposed in the specification.= " msgstr "" =20 -#: gnu/packages/gnome.scm:529 +#: gnu/packages/gnome.scm:551 msgid "Utilities for working with desktop entries" msgstr "" =20 -#: gnu/packages/gnome.scm:531 +#: gnu/packages/gnome.scm:553 msgid "" "This package contains a few command line utilities for working with\n" "desktop entries:\n" @@ -2211,47 +2620,52 @@ msgid "" "desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" " about desktop entry specification violations.\n" "\n" -"desktop-file-install: installs a desktop file to the applications direc= tory,\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" " optionally munging it a bit in transit.\n" "\n" -"update-desktop-database: updates the database containing a cache of MIM= E types\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" " handled by desktop files." msgstr "" =20 -#: gnu/packages/gnome.scm:565 +#: gnu/packages/gnome.scm:587 msgid "GNOME icon theme" msgstr "" =20 -#: gnu/packages/gnome.scm:567 +#: gnu/packages/gnome.scm:589 msgid "Icons for the GNOME desktop." msgstr "" =20 -#: gnu/packages/gnome.scm:606 +#: gnu/packages/gnome.scm:628 msgid "Database of common MIME types" msgstr "" =20 -#: gnu/packages/gnome.scm:608 +#: gnu/packages/gnome.scm:630 msgid "" "The shared-mime-info package contains the core database of common types= \n" -"and the update-mime-database command used to extend it. It requires gl= ib2 to\n" -"be installed for building the update command. Additionally, it uses in= tltool\n" -"for translations, though this is only a dependency for the maintainers.= This\n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" "database is translated at Transifex." msgstr "" =20 -#: gnu/packages/gnome.scm:632 +#: gnu/packages/gnome.scm:654 msgid "Freedesktop icon theme" msgstr "" =20 -#: gnu/packages/gnome.scm:634 +#: gnu/packages/gnome.scm:656 msgid "Freedesktop icon theme." msgstr "" =20 -#: gnu/packages/gnome.scm:661 +#: gnu/packages/gnome.scm:683 msgid "GNOME desktop notification library" msgstr "" =20 -#: gnu/packages/gnome.scm:663 +#: gnu/packages/gnome.scm:685 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. The= se\n" @@ -2259,392 +2673,408 @@ msgid "" "some form of information without getting in the user's way." msgstr "" =20 -#: gnu/packages/gnome.scm:695 +#: gnu/packages/gnome.scm:717 msgid "GObject plugin system" msgstr "" =20 -#: gnu/packages/gnome.scm:697 +#: gnu/packages/gnome.scm:719 msgid "" "Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " -"every application the chance to assume its own extensibility. It also = has a\n" -"set of features including, but not limited to: multiple extension point= s; on\n" -"demand (lazy) programming language support for C, Python and JS; simpli= city of\n" +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" "the API." msgstr "" =20 -#: gnu/packages/gnome.scm:726 +#: gnu/packages/gnome.scm:748 msgid "OpenGL extension to GTK+" msgstr "" =20 -#: gnu/packages/gnome.scm:727 +#: gnu/packages/gnome.scm:749 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" =20 -#: gnu/packages/gnome.scm:752 +#: gnu/packages/gnome.scm:792 msgid "GTK+ rapid application development tool" msgstr "" =20 -#: gnu/packages/gnome.scm:753 +#: gnu/packages/gnome.scm:793 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" "the GNOME desktop environment." msgstr "" =20 -#: gnu/packages/gnome.scm:778 +#: gnu/packages/gnome.scm:818 msgid "CSS2 parsing and manipulation library" msgstr "" =20 -#: gnu/packages/gnome.scm:780 +#: gnu/packages/gnome.scm:820 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" -"model like API. Libcroco provides a CSS2 selection engine and an exper= imental\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" "XML/CSS rendering engine." msgstr "" =20 -#: gnu/packages/gnome.scm:813 +#: gnu/packages/gnome.scm:853 msgid "GNOME's Structured File Library" msgstr "" =20 -#: gnu/packages/gnome.scm:815 +#: gnu/packages/gnome.scm:855 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction for\n" "dealing with different structured file formats." msgstr "" =20 -#: gnu/packages/gnome.scm:880 +#: gnu/packages/gnome.scm:920 msgid "Render SVG files using Cairo" msgstr "" =20 -#: gnu/packages/gnome.scm:882 +#: gnu/packages/gnome.scm:922 msgid "" "Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" "library." msgstr "" =20 -#: gnu/packages/gnome.scm:906 +#: gnu/packages/gnome.scm:946 msgid "Create trees of CORBA Interface Definition Language files" msgstr "" =20 -#: gnu/packages/gnome.scm:907 +#: gnu/packages/gnome.scm:947 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\= n" -"portable interfaces. libidl was initially written for orbit (the orb fr= om the\n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" "GNOME project, and the primary means of libidl distribution). However,= the\n" "functionality was designed to be as reusable and portable as possible." msgstr "" =20 -#: gnu/packages/gnome.scm:944 +#: gnu/packages/gnome.scm:987 msgid "CORBA 2.4-compliant Object Request Broker" msgstr "" =20 -#: gnu/packages/gnome.scm:945 +#: gnu/packages/gnome.scm:988 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" =20 -#: gnu/packages/gnome.scm:991 -msgid "Framework for creating reusable components for use in GNOME appli= cations" +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" msgstr "" =20 -#: gnu/packages/gnome.scm:992 +#: gnu/packages/gnome.scm:1035 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" =20 -#: gnu/packages/gnome.scm:1023 +#: gnu/packages/gnome.scm:1066 msgid "Store application preferences" msgstr "" =20 -#: gnu/packages/gnome.scm:1024 +#: gnu/packages/gnome.scm:1067 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" =20 -#: gnu/packages/gnome.scm:1046 +#: gnu/packages/gnome.scm:1089 msgid "Base MIME and Application database for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:1047 +#: gnu/packages/gnome.scm:1090 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\= n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" =20 -#: gnu/packages/gnome.scm:1091 +#: gnu/packages/gnome.scm:1134 msgid "Access files and folders in GNOME applications" msgstr "" =20 -#: gnu/packages/gnome.scm:1093 +#: gnu/packages/gnome.scm:1136 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\= n" -"applications. It provides a file system abstraction which allows appli= cations\n" +"applications. It provides a file system abstraction which allows " +"applications\n" "to access local and remote files with a single consistent API." msgstr "" =20 -#: gnu/packages/gnome.scm:1137 +#: gnu/packages/gnome.scm:1180 msgid "Useful routines for building applications" msgstr "" =20 -#: gnu/packages/gnome.scm:1138 +#: gnu/packages/gnome.scm:1181 msgid "" "The libgnome library provides a number of useful routines\n" -"for building modern applications, including session management, activat= ion of\n" +"for building modern applications, including session management, activat= ion " +"of\n" "files and URIs, and displaying help." msgstr "" =20 -#: gnu/packages/gnome.scm:1161 +#: gnu/packages/gnome.scm:1204 msgid "2D drawing library" msgstr "" =20 -#: gnu/packages/gnome.scm:1162 +#: gnu/packages/gnome.scm:1205 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha compos= ition." msgstr "" =20 -#: gnu/packages/gnome.scm:1189 +#: gnu/packages/gnome.scm:1232 msgid "Flexible widget for creating interactive structured graphics" msgstr "" =20 -#: gnu/packages/gnome.scm:1190 +#: gnu/packages/gnome.scm:1233 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" =20 -#: gnu/packages/gnome.scm:1212 +#: gnu/packages/gnome.scm:1257 msgid "C++ bindings to the GNOME Canvas library" msgstr "" =20 -#: gnu/packages/gnome.scm:1213 +#: gnu/packages/gnome.scm:1258 msgid "C++ bindings to the GNOME Canvas library." msgstr "" =20 -#: gnu/packages/gnome.scm:1244 +#: gnu/packages/gnome.scm:1289 msgid "Additional widgets for applications" msgstr "" =20 -#: gnu/packages/gnome.scm:1245 +#: gnu/packages/gnome.scm:1290 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" =20 -#: gnu/packages/gnome.scm:1271 +#: gnu/packages/gnome.scm:1316 msgid "Load glade interfaces and access the glade built widgets" msgstr "" =20 -#: gnu/packages/gnome.scm:1272 +#: gnu/packages/gnome.scm:1317 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" =20 -#: gnu/packages/gnome.scm:1309 gnu/packages/gnome.scm:1341 +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 msgid "Printing framework for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:1311 +#: gnu/packages/gnome.scm:1356 msgid "" "GNOME-print was a printing framework for GNOME. It has been deprecated= \n" "since ca. 2006, when GTK+ itself incorporated printing support." msgstr "" =20 -#: gnu/packages/gnome.scm:1386 +#: gnu/packages/gnome.scm:1431 msgid "Some user interface controls using Bonobo" msgstr "" =20 -#: gnu/packages/gnome.scm:1387 +#: gnu/packages/gnome.scm:1432 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" =20 -#: gnu/packages/gnome.scm:1411 +#: gnu/packages/gnome.scm:1456 msgid "Window Navigator Construction Kit" msgstr "" =20 -#: gnu/packages/gnome.scm:1413 +#: gnu/packages/gnome.scm:1458 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\= n" "writing pagers, tasklists, and more generally applications that are dea= ling\n" -"with window management. It tries hard to respect the Extended Window M= anager\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" "Hints specification (EWMH)." msgstr "" =20 -#: gnu/packages/gnome.scm:1460 +#: gnu/packages/gnome.scm:1511 msgid "Document-centric objects and utilities" msgstr "" =20 -#: gnu/packages/gnome.scm:1461 +#: gnu/packages/gnome.scm:1512 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" =20 -#: gnu/packages/gnome.scm:1536 +#: gnu/packages/gnome.scm:1594 msgid "Spreadsheet application" msgstr "" =20 -#: gnu/packages/gnome.scm:1538 +#: gnu/packages/gnome.scm:1596 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" "interoperable with other spreadsheet applications. It has a vast array= of\n" -"features beyond typical spreadsheet functionality, such as support for = linear\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" "and non-linear solvers, statistical analysis, and telecommunication\n" "engineering." msgstr "" =20 -#: gnu/packages/gnome.scm:1586 +#: gnu/packages/gnome.scm:1642 msgid "Default GNOME 3 themes" msgstr "" =20 -#: gnu/packages/gnome.scm:1588 +#: gnu/packages/gnome.scm:1644 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." msgstr "" =20 -#: gnu/packages/gnome.scm:1619 +#: gnu/packages/gnome.scm:1677 msgid "Manage encryption keys and passwords in the GNOME keyring" msgstr "" =20 -#: gnu/packages/gnome.scm:1621 +#: gnu/packages/gnome.scm:1679 msgid "" "Seahorse is a GNOME application for managing encryption keys and\n" "passwords in the GNOME keyring." msgstr "" =20 -#: gnu/packages/gnome.scm:1655 gnu/packages/gnome.scm:1791 +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 msgid "Compiler for the GObject type system" msgstr "" =20 -#: gnu/packages/gnome.scm:1657 +#: gnu/packages/gnome.scm:1717 msgid "" "Vala is a programming language that aims to bring modern programming\n" -"language features to GNOME developers without imposing any additional r= untime\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" "requirements and without using a different ABI compared to applications= and\n" "libraries written in C." msgstr "" =20 -#: gnu/packages/gnome.scm:1687 +#: gnu/packages/gnome.scm:1747 msgid "Virtual Terminal Emulator" msgstr "" =20 -#: gnu/packages/gnome.scm:1689 +#: gnu/packages/gnome.scm:1749 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n= " -"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used in\n" +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" "gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" "editors, IDEs, etc." msgstr "" =20 -#: gnu/packages/gnome.scm:1765 +#: gnu/packages/gnome.scm:1847 msgid "Low-level GNOME configuration system" msgstr "" =20 -#: gnu/packages/gnome.scm:1766 +#: gnu/packages/gnome.scm:1848 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already ha= ve\n" "configuration storage systems." msgstr "" =20 -#: gnu/packages/gnome.scm:1793 +#: gnu/packages/gnome.scm:1882 msgid "" "JSON-GLib is a C library based on GLib providing serialization and\n" "deserialization support for the JavaScript Object Notation (JSON) forma= t\n" -"described by RFC 4627. It provides parser and generator GObject classe= s and\n" -"various wrappers for the complex data types employed by JSON, such as a= rrays\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" "and objects." msgstr "" =20 -#: gnu/packages/gnome.scm:1832 +#: gnu/packages/gnome.scm:1921 msgid "High-level API for X Keyboard Extension" msgstr "" =20 -#: gnu/packages/gnome.scm:1834 +#: gnu/packages/gnome.scm:1923 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" -"Extension known as XKB. This library is intended to support XFree86 an= d other\n" -"commercial X servers. It is useful for creating XKB-related software (= layout\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" "indicators etc)." msgstr "" =20 -#: gnu/packages/gnome.scm:1862 +#: gnu/packages/gnome.scm:1951 msgid "Python bindings to librsvg" msgstr "" =20 -#: gnu/packages/gnome.scm:1864 +#: gnu/packages/gnome.scm:1953 msgid "" "This packages provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" =20 -#: gnu/packages/gnome.scm:1913 +#: gnu/packages/gnome.scm:2002 msgid "Network-related GIO modules" msgstr "" =20 -#: gnu/packages/gnome.scm:1915 +#: gnu/packages/gnome.scm:2004 msgid "" "This package contains various network related extensions for the GIO\n" "library." msgstr "" =20 -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:2035 msgid "RESTful web api query library" msgstr "" =20 -#: gnu/packages/gnome.scm:1948 +#: gnu/packages/gnome.scm:2037 msgid "" "This library was designed to make it easier to access web services that= \n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" "libxml to ease remote use of the RESTful API." msgstr "" =20 -#: gnu/packages/gnome.scm:2012 +#: gnu/packages/gnome.scm:2106 msgid "GLib-based HTTP Library" msgstr "" =20 -#: gnu/packages/gnome.scm:2014 +#: gnu/packages/gnome.scm:2108 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " "and the GLib main loop, to integrate well with GNOME applications." msgstr "" =20 -#: gnu/packages/gnome.scm:2059 +#: gnu/packages/gnome.scm:2154 msgid "GObject bindings for \"Secret Service\" API" msgstr "" =20 -#: gnu/packages/gnome.scm:2061 +#: gnu/packages/gnome.scm:2156 msgid "" "Libsecret is a GObject based library for storing and retrieving passwor= ds\n" "and other secrets. It communicates with the \"Secret Service\" using D= Bus." msgstr "" =20 -#: gnu/packages/gnome.scm:2105 +#: gnu/packages/gnome.scm:2200 msgid "Minesweeper game" msgstr "" =20 -#: gnu/packages/gnome.scm:2107 +#: gnu/packages/gnome.scm:2202 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" =20 -#: gnu/packages/gnome.scm:2151 +#: gnu/packages/gnome.scm:2246 msgid "Terminal emulator" msgstr "" =20 -#: gnu/packages/gnome.scm:2153 +#: gnu/packages/gnome.scm:2248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n= " @@ -2654,47 +3084,50 @@ msgid "" "keyboard shortcuts." msgstr "" =20 -#: gnu/packages/gnome.scm:2218 +#: gnu/packages/gnome.scm:2314 msgid "Color management service" msgstr "" =20 -#: gnu/packages/gnome.scm:2219 +#: gnu/packages/gnome.scm:2315 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input an= d\n" "output devices." msgstr "" =20 -#: gnu/packages/gnome.scm:2261 +#: gnu/packages/gnome.scm:2357 msgid "Geolocation service" msgstr "" =20 -#: gnu/packages/gnome.scm:2262 +#: gnu/packages/gnome.scm:2358 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creati= ng\n" -"location-aware applications as simple as possible, while the secondary = goal is\n" -"to ensure that no application can access location information without e= xplicit\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" "permission from user." msgstr "" =20 -#: gnu/packages/gnome.scm:2298 +#: gnu/packages/gnome.scm:2393 msgid "Geocoding and reverse-geocoding library" msgstr "" =20 -#: gnu/packages/gnome.scm:2300 +#: gnu/packages/gnome.scm:2395 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,= \n" -"and latitude from an address) and reverse geocoding (finding an address= from\n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" "coordinates) using the Nominatim service. geocode-glib caches requests= for\n" "faster results and to avoid unnecessary server load." msgstr "" =20 -#: gnu/packages/gnome.scm:2347 +#: gnu/packages/gnome.scm:2448 msgid "System daemon for managing power devices" msgstr "" =20 -#: gnu/packages/gnome.scm:2349 +#: gnu/packages/gnome.scm:2450 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -2702,207 +3135,217 @@ msgid "" "service via the system message bus." msgstr "" =20 -#: gnu/packages/gnome.scm:2395 +#: gnu/packages/gnome.scm:2500 msgid "Location, time zone, and weather library for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:2397 +#: gnu/packages/gnome.scm:2502 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" =20 -#: gnu/packages/gnome.scm:2449 +#: gnu/packages/gnome.scm:2554 msgid "GNOME settings daemon" msgstr "" =20 -#: gnu/packages/gnome.scm:2451 +#: gnu/packages/gnome.scm:2556 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. = It\n" -"handles settings such keyboard layout, shortcuts, and accessibility, cl= ipboard\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" "settings, themes, mouse settings, and startup of other daemons." msgstr "" =20 -#: gnu/packages/gnome.scm:2487 +#: gnu/packages/gnome.scm:2592 msgid "Library to parse and save media playlists for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:2488 +#: gnu/packages/gnome.scm:2593 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" =20 -#: gnu/packages/gnome.scm:2522 +#: gnu/packages/gnome.scm:2627 msgid "Solitaire card games" msgstr "" =20 -#: gnu/packages/gnome.scm:2524 +#: gnu/packages/gnome.scm:2629 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" "which are easy to play with the aid of a mouse." msgstr "" =20 -#: gnu/packages/gnome.scm:2548 +#: gnu/packages/gnome.scm:2653 msgid "API documentation browser for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:2550 +#: gnu/packages/gnome.scm:2655 msgid "" "Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " "natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" "throughout GNOME for API documentation)." msgstr "" =20 -#: gnu/packages/gnome.scm:2611 +#: gnu/packages/gnome.scm:2716 msgid "Object oriented GL/GLES Abstraction/Utility Layer" msgstr "" =20 -#: gnu/packages/gnome.scm:2613 +#: gnu/packages/gnome.scm:2718 msgid "" "Cogl is a small library for using 3D graphics hardware to draw pretty\n= " -"pictures. The API departs from the flat state machine style of OpenGL = and is\n" +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" "designed to make it easy to write orthogonal components that can render= \n" "without stepping on each others toes." msgstr "" =20 -#: gnu/packages/gnome.scm:2668 +#: gnu/packages/gnome.scm:2773 msgid "Open GL based interactive canvas library" msgstr "" =20 -#: gnu/packages/gnome.scm:2670 gnu/packages/gnome.scm:2698 +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 msgid "" "Clutter is an Open GL based interactive canvas library, designed for\n" "creating fast, mainly 2D single window applications such as media box U= Is,\n" "presentations, kiosk style applications and so on." msgstr "" =20 -#: gnu/packages/gnome.scm:2696 +#: gnu/packages/gnome.scm:2802 msgid "Open GL based interactive canvas library GTK+ widget" msgstr "" =20 -#: gnu/packages/gnome.scm:2726 +#: gnu/packages/gnome.scm:2832 msgid "Integration library for using GStreamer with Clutter" msgstr "" =20 -#: gnu/packages/gnome.scm:2728 +#: gnu/packages/gnome.scm:2834 msgid "" "Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" "It provides a GStreamer sink to upload frames to GL and an actor that\n= " -"implements the ClutterGstPlayer interface using playbin. Clutter is an= Open\n" +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" "GL based interactive canvas library." msgstr "" =20 -#: gnu/packages/gnome.scm:2758 +#: gnu/packages/gnome.scm:2864 msgid "C library providing a ClutterActor to display maps" msgstr "" =20 -#: gnu/packages/gnome.scm:2760 +#: gnu/packages/gnome.scm:2866 msgid "" "libchamplain is a C library providing a ClutterActor to display maps.\n= " -"It also provides a Gtk+ widget to display maps in Gtk+ applications. P= ython\n" -"and Perl bindings are also available. It supports numerous free map so= urces\n" +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" "such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." msgstr "" =20 -#: gnu/packages/gnome.scm:2791 +#: gnu/packages/gnome.scm:2897 msgid "Object mapper from GObjects to SQLite" msgstr "" =20 -#: gnu/packages/gnome.scm:2793 +#: gnu/packages/gnome.scm:2899 msgid "" "Gom provides an object mapper from GObjects to SQLite. It helps you\n" -"write applications that need to store structured data as well as make c= omplex\n" +"write applications that need to store structured data as well as make " +"complex\n" "queries upon that data." msgstr "" =20 -#: gnu/packages/gnome.scm:2821 +#: gnu/packages/gnome.scm:2927 msgid "Sliding block puzzles" msgstr "" =20 -#: gnu/packages/gnome.scm:2823 +#: gnu/packages/gnome.scm:2929 msgid "" "GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" -"the patterned block to the area bordered by green markers. To do so, y= ou will\n" -"need to slide other blocks out of the way. Complete each puzzle in as = few moves\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" "as possible!" msgstr "" =20 -#: gnu/packages/gnome.scm:2874 +#: gnu/packages/gnome.scm:2980 msgid "Framework for discovering and browsing media" msgstr "" =20 -#: gnu/packages/gnome.scm:2876 gnu/packages/gnome.scm:2928 +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 msgid "" "Grilo is a framework focused on making media discovery and browsing eas= y\n" "for application developers." msgstr "" =20 -#: gnu/packages/gnome.scm:2926 +#: gnu/packages/gnome.scm:3032 msgid "Plugins for the Grilo media discovery library" msgstr "" =20 -#: gnu/packages/gnome.scm:3003 +#: gnu/packages/gnome.scm:3109 msgid "Simple media player for GNOME based on GStreamer" msgstr "" =20 -#: gnu/packages/gnome.scm:3004 +#: gnu/packages/gnome.scm:3110 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" =20 -#: gnu/packages/gnome.scm:3093 +#: gnu/packages/gnome.scm:3199 msgid "Music player for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:3094 +#: gnu/packages/gnome.scm:3200 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstr= eamer." msgstr "" =20 -#: gnu/packages/gnome.scm:3144 +#: gnu/packages/gnome.scm:3250 msgid "GNOME image viewer" msgstr "" =20 -#: gnu/packages/gnome.scm:3145 +#: gnu/packages/gnome.scm:3251 msgid "" "Eye of GNOME is the GNOME image viewer. It\n" "supports image conversion, rotation, and slideshows." msgstr "" =20 -#: gnu/packages/gnome.scm:3170 +#: gnu/packages/gnome.scm:3276 msgid "GObject bindings for libudev" msgstr "" =20 -#: gnu/packages/gnome.scm:3172 +#: gnu/packages/gnome.scm:3278 msgid "" "This library provides GObject bindings for libudev. It was originally\= n" "part of udev-extras, then udev, then systemd. It's now a project on it= s own." msgstr "" =20 -#: gnu/packages/gnome.scm:3217 +#: gnu/packages/gnome.scm:3324 msgid "Userspace virtual filesystem for GIO" msgstr "" =20 -#: gnu/packages/gnome.scm:3219 +#: gnu/packages/gnome.scm:3326 msgid "" "GVFS is a userspace virtual filesystem designed to work with the I/O\n" -"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= support\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" "to all applications using the GIO API. It also supports exposing the G= VFS\n" "mounts to non-GIO applications using FUSE.\n" "\n" -"GVFS comes with a set of backends, including trash support, SFTP, SMB, = HTTP,\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" "DAV, and others." msgstr "" =20 -#: gnu/packages/gnome.scm:3265 -msgid "A GLib binding for libusb1" +#: gnu/packages/gnome.scm:3372 +msgid "GLib binding for libusb1" msgstr "" =20 -#: gnu/packages/gnome.scm:3267 +#: gnu/packages/gnome.scm:3374 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" @@ -2910,65 +3353,66 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" =20 -#: gnu/packages/gnome.scm:3304 +#: gnu/packages/gnome.scm:3411 msgid "Document and image scanner" msgstr "" =20 -#: gnu/packages/gnome.scm:3305 +#: gnu/packages/gnome.scm:3412 msgid "" "Simple Scan is an easy-to-use application, designed to let\n" "users connect their scanner and quickly have the image/document in an\n= " -"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch is\n" +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" "the same backend as XSANE uses. This means that all existing scanners w= ill\n" "work and the interface is well tested." msgstr "" =20 -#: gnu/packages/gnome.scm:3354 +#: gnu/packages/gnome.scm:3461 msgid "GNOME web browser" msgstr "" =20 -#: gnu/packages/gnome.scm:3356 +#: gnu/packages/gnome.scm:3463 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " "principles are simplicity and standards compliance." msgstr "" =20 -#: gnu/packages/gnome.scm:3412 +#: gnu/packages/gnome.scm:3519 msgid "D-Bus debugger" msgstr "" =20 -#: gnu/packages/gnome.scm:3414 +#: gnu/packages/gnome.scm:3521 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" "of running programs and invoke methods on those interfaces." msgstr "" =20 -#: gnu/packages/gnome.scm:3436 +#: gnu/packages/gnome.scm:3543 msgid "XSL stylesheets for Yelp" msgstr "" =20 -#: gnu/packages/gnome.scm:3438 +#: gnu/packages/gnome.scm:3545 msgid "" "Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" "to format Docbook and Mallard documents." msgstr "" =20 -#: gnu/packages/gnome.scm:3470 +#: gnu/packages/gnome.scm:3575 msgid "GNOME help browser" msgstr "" =20 -#: gnu/packages/gnome.scm:3472 +#: gnu/packages/gnome.scm:3577 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" "man, info, and HTML documents. It can locate documents according to th= e\n" "freedesktop.org help system specification." msgstr "" =20 -#: gnu/packages/gnome.scm:3500 +#: gnu/packages/gnome.scm:3605 msgid "Yelp documentation tools" msgstr "" =20 -#: gnu/packages/gnome.scm:3502 +#: gnu/packages/gnome.scm:3607 msgid "" "Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" "manage, and publish documentation for Yelp and the web. Most of the he= avy\n" @@ -2976,111 +3420,334 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" =20 -#: gnu/packages/gnome.scm:3539 +#: gnu/packages/gnome.scm:3644 msgid "GObject collection library" msgstr "" =20 -#: gnu/packages/gnome.scm:3541 +#: gnu/packages/gnome.scm:3646 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" =20 -#: gnu/packages/gnome.scm:3568 +#: gnu/packages/gnome.scm:3673 msgid "GObject wrapper around the Exiv2 photo metadata library" msgstr "" =20 -#: gnu/packages/gnome.scm:3570 +#: gnu/packages/gnome.scm:3675 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" -"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and XMP\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" "metadata in photo and video files of various formats." msgstr "" =20 -#: gnu/packages/gnome.scm:3622 +#: gnu/packages/gnome.scm:3727 msgid "Photo manager for GNOME 3" msgstr "" =20 -#: gnu/packages/gnome.scm:3624 +#: gnu/packages/gnome.scm:3729 msgid "" "Shotwell is a digital photo manager designed for the GNOME desktop\n" "environment. It allows you to import photos from disk or camera, organ= ize\n" -"them by keywords and events, view them in full-window or fullscreen mod= e, and\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" "share them with others via social networking and more." msgstr "" =20 -#: gnu/packages/gnome.scm:3656 +#: gnu/packages/gnome.scm:3761 msgid "Graphical archive manager for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:3657 +#: gnu/packages/gnome.scm:3762 msgid "" "File Roller is an archive manager for the GNOME desktop\n" -"environment that allows users to view, unpack, and create compressed ar= chives\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" "such as gzip tarballs." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:90 +#: gnu/packages/gnome.scm:3797 +msgid "Session manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +msgid "Javascript bindings for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "Str=C3=B8mredigeringsprogram" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +#, fuzzy +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "Denne pakke tilbyder en ordbog for stavekontrollen GNU Aspell." + +#: gnu/packages/gnome.scm:4356 +msgid "Display manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:4484 +msgid "Utilities to configure the GNOME desktop" +msgstr "" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +msgid "File manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +msgid "Disk usage analyzer for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 msgid "Mozilla javascript engine" msgstr "" =20 -#: gnu/packages/gnuzilla.scm:91 +#: gnu/packages/gnuzilla.scm:96 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:123 +#: gnu/packages/gnuzilla.scm:171 msgid "Netscape API for system level and libc-like functions" msgstr "" =20 -#: gnu/packages/gnuzilla.scm:124 +#: gnu/packages/gnuzilla.scm:172 msgid "" "Netscape Portable Runtime (NSPR) provides a\n" "platform-neutral API for system level and libc-like functions. It is u= sed\n" "in the Mozilla clients." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:219 +#: gnu/packages/gnuzilla.scm:268 msgid "Network Security Services" msgstr "" =20 -#: gnu/packages/gnuzilla.scm:221 +#: gnu/packages/gnuzilla.scm:270 msgid "" "Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" -"cross-platform development of security-enabled client and server applic= ations.\n" -"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS #7,\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" "PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " "standards." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:453 +#: gnu/packages/gnuzilla.scm:506 msgid "Entirely free browser derived from Mozilla Firefox" msgstr "" =20 -#: gnu/packages/gnuzilla.scm:455 +#: gnu/packages/gnuzilla.scm:508 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\= n" "software, which does not recommend non-free plugins and addons. It als= o\n" "features built-in privacy-protecting features." msgstr "" =20 -#: gnu/packages/gtk.scm:84 +#: gnu/packages/gtk.scm:87 msgid "GNOME accessibility toolkit" msgstr "" =20 -#: gnu/packages/gtk.scm:86 +#: gnu/packages/gtk.scm:89 msgid "" "ATK provides the set of accessibility interfaces that are implemented\n= " -"by other toolkits and applications. Using the ATK interfaces, accessib= ility\n" +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" "tools have full access to view and control running applications." msgstr "" =20 -#: gnu/packages/gtk.scm:125 +#: gnu/packages/gtk.scm:128 msgid "2D graphics library" msgstr "" =20 -#: gnu/packages/gtk.scm:127 +#: gnu/packages/gtk.scm:130 msgid "" "Cairo is a 2D graphics library with support for multiple output devices= .\n" "Currently supported output targets include the X Window System (via bot= h\n" @@ -3092,100 +3759,115 @@ msgid "" "eg. through the X Render Extension).\n" "\n" "The cairo API provides operations similar to the drawing operators of\n= " -"PostScript and PDF. Operations in cairo including stroking and filling= cubic\n" +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" "B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" -"antialiased text rendering. All drawing operations can be transformed = by any\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" "affine transformation (scale, rotation, shear, etc.)." msgstr "" =20 -#: gnu/packages/gtk.scm:175 +#: gnu/packages/gtk.scm:178 msgid "OpenType text shaping engine" msgstr "" =20 -#: gnu/packages/gtk.scm:177 +#: gnu/packages/gtk.scm:180 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" =20 -#: gnu/packages/gtk.scm:208 +#: gnu/packages/gtk.scm:211 msgid "GNOME text and font handling library" msgstr "" =20 -#: gnu/packages/gtk.scm:210 +#: gnu/packages/gtk.scm:213 msgid "" "Pango is the core text and font handling library used in GNOME\n" "applications. It has extensive support for the different writing syste= ms\n" "used throughout the world." msgstr "" =20 -#: gnu/packages/gtk.scm:236 +#: gnu/packages/gtk.scm:239 msgid "Obsolete pango functions" msgstr "" =20 -#: gnu/packages/gtk.scm:237 +#: gnu/packages/gtk.scm:240 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n= " "functions which were removed." msgstr "" =20 -#: gnu/packages/gtk.scm:271 +#: gnu/packages/gtk.scm:276 msgid "GTK+ widget for interactive graph-like environments" msgstr "" =20 -#: gnu/packages/gtk.scm:273 +#: gnu/packages/gtk.scm:278 msgid "" "Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" =20 -#: gnu/packages/gtk.scm:323 +#: gnu/packages/gtk.scm:330 msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" msgstr "" =20 -#: gnu/packages/gtk.scm:325 +#: gnu/packages/gtk.scm:332 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable synt= ax\n" -"highlighting, unlimited undo/redo, search and replace, a completion fra= mework,\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" "printing and other features typical of a source code editor." msgstr "" =20 -#: gnu/packages/gtk.scm:374 +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 msgid "GNOME image loading and manipulation library" msgstr "" =20 -#: gnu/packages/gtk.scm:376 +#: gnu/packages/gtk.scm:431 msgid "" "GdkPixbuf is a library for image loading and manipulation developed\n" "in the GNOME project." msgstr "" =20 -#: gnu/packages/gtk.scm:417 +#: gnu/packages/gtk.scm:474 msgid "Assistive Technology Service Provider Interface, core components" msgstr "" =20 -#: gnu/packages/gtk.scm:419 +#: gnu/packages/gtk.scm:476 msgid "" "The Assistive Technology Service Provider Interface, core components,\n= " "is part of the GNOME accessibility project." msgstr "" =20 -#: gnu/packages/gtk.scm:451 +#: gnu/packages/gtk.scm:509 msgid "Assistive Technology Service Provider Interface, ATK bindings" msgstr "" =20 -#: gnu/packages/gtk.scm:453 +#: gnu/packages/gtk.scm:511 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" =20 -#: gnu/packages/gtk.scm:505 +#: gnu/packages/gtk.scm:568 msgid "Cross-platform toolkit for creating graphical user interfaces" msgstr "" =20 -#: gnu/packages/gtk.scm:507 +#: gnu/packages/gtk.scm:570 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" @@ -3193,11 +3875,11 @@ msgid "" "application suites." msgstr "" =20 -#: gnu/packages/gtk.scm:630 +#: gnu/packages/gtk.scm:705 msgid "Cairo bindings for GNU Guile" msgstr "" =20 -#: gnu/packages/gtk.scm:632 +#: gnu/packages/gtk.scm:707 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" @@ -3207,21 +3889,21 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" =20 -#: gnu/packages/gtk.scm:672 +#: gnu/packages/gtk.scm:747 msgid "Render SVG images using Cairo from Guile" msgstr "" =20 -#: gnu/packages/gtk.scm:674 +#: gnu/packages/gtk.scm:749 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" "images onto Cairo surfaces." msgstr "" =20 -#: gnu/packages/gtk.scm:718 +#: gnu/packages/gtk.scm:793 msgid "Create SVG or PDF presentations in Guile" msgstr "" =20 -#: gnu/packages/gtk.scm:720 +#: gnu/packages/gtk.scm:795 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -3230,121 +3912,167 @@ msgid "" "documents." msgstr "" =20 -#: gnu/packages/gtk.scm:753 +#: gnu/packages/gtk.scm:829 msgid "C++ bindings to the Cairo 2D graphics library" msgstr "" =20 -#: gnu/packages/gtk.scm:755 +#: gnu/packages/gtk.scm:831 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " "library." msgstr "" =20 -#: gnu/packages/gtk.scm:779 +#: gnu/packages/gtk.scm:855 msgid "C++ interface to the Pango text rendering library" msgstr "" =20 -#: gnu/packages/gtk.scm:781 +#: gnu/packages/gtk.scm:857 msgid "" "Pangomm provides a C++ programming interface to the Pango text renderin= g\n" "library." msgstr "" =20 -#: gnu/packages/gtk.scm:802 +#: gnu/packages/gtk.scm:878 msgid "C++ interface to the ATK accessibility library" msgstr "" =20 -#: gnu/packages/gtk.scm:804 +#: gnu/packages/gtk.scm:880 msgid "" "ATKmm provides a C++ programming interface to the ATK accessibility\n" "toolkit." msgstr "" =20 -#: gnu/packages/gtk.scm:830 +#: gnu/packages/gtk.scm:907 msgid "C++ interface to the GTK+ graphical user interface library" msgstr "" =20 -#: gnu/packages/gtk.scm:832 +#: gnu/packages/gtk.scm:909 msgid "" "gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " -"Highlights include typesafe callbacks, and a comprehensive set of widge= ts that\n" -"are easily extensible via inheritance. You can create user interfaces = either\n" -"in code or with the Glade User Interface designer, using libglademm. T= here's\n" +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" "extensive documentation, including API reference and a tutorial." msgstr "" =20 -#: gnu/packages/gtk.scm:888 +#: gnu/packages/gtk.scm:968 msgid "Python bindings for cairo" msgstr "" =20 -#: gnu/packages/gtk.scm:890 +#: gnu/packages/gtk.scm:970 msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." msgstr "" =20 -#: gnu/packages/gtk.scm:964 +#: gnu/packages/gtk.scm:1053 msgid "Python bindings for GTK+" msgstr "" =20 -#: gnu/packages/gtk.scm:966 +#: gnu/packages/gtk.scm:1055 msgid "" "PyGTK allows you to write full featured GTK programs in Python. It is\= n" "targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" "write GNOME applications." msgstr "" =20 -#: gnu/packages/gtk.scm:997 +#: gnu/packages/gtk.scm:1086 msgid "Library for minimalistic gtk+3 user interfaces" msgstr "" =20 -#: gnu/packages/gtk.scm:998 +#: gnu/packages/gtk.scm:1087 msgid "" "Girara is a library that implements a user interface that\n" "focuses on simplicity and minimalism. Currently based on GTK+, a\n" -"cross-platform widget toolkit, it provides an interface that focuses on= three\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" "main components: a so-called view widget that represents the actual\n" "application, an input bar that is used to execute commands of the\n" "application and the status bar which provides the user with current\n" "information." msgstr "" =20 -#: gnu/packages/gtk.scm:1041 +#: gnu/packages/gtk.scm:1130 msgid "Documentation generator from C source code" msgstr "" =20 -#: gnu/packages/gtk.scm:1043 +#: gnu/packages/gtk.scm:1132 msgid "" -"GTK-Doc generates API documentation from comments added to C code. It i= s\n" -"typically used to document the public API of GTK+ and GNOME libraries, = but it\n" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" "can also be used to document application code." msgstr "" =20 -#: gnu/packages/guile.scm:107 gnu/packages/guile.scm:174 +#: gnu/packages/gtk.scm:1159 +msgid "Theming engines for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 msgid "Scheme implementation intended especially for extensions" msgstr "" =20 -#: gnu/packages/guile.scm:109 gnu/packages/guile.scm:176 +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation= of\n" "the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" +"provide a convenient means of extending the functionality of the " +"application\n" "without requiring the source code to be rewritten." msgstr "" =20 -#: gnu/packages/guile.scm:217 +#: gnu/packages/guile.scm:213 msgid "Snapshot of what will become version 2.2 of GNU Guile" msgstr "" =20 -#: gnu/packages/guile.scm:264 +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 msgid "Framework for building readers for GNU Guile" msgstr "" =20 -#: gnu/packages/guile.scm:266 +#: gnu/packages/guile.scm:327 msgid "" "Guile-Reader is a simple framework for building readers for GNU Guile.\= n" "\n" "The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wr= itten,\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" "possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" "readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" "document syntax.\n" @@ -3354,33 +4082,34 @@ msgid "" "many readers as needed)." msgstr "" =20 -#: gnu/packages/guile.scm:311 +#: gnu/packages/guile.scm:376 msgid "Guile bindings to ncurses" msgstr "" =20 -#: gnu/packages/guile.scm:313 +#: gnu/packages/guile.scm:378 msgid "" "guile-ncurses provides Guile language bindings for the ncurses\n" "library." msgstr "" =20 -#: gnu/packages/guile.scm:333 +#: gnu/packages/guile.scm:398 msgid "Run jobs at scheduled times" msgstr "" =20 -#: gnu/packages/guile.scm:335 +#: gnu/packages/guile.scm:400 msgid "" "GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" "Guile, so its configuration can be written in Scheme; the original cron= \n" "format is also supported." msgstr "" =20 -#: gnu/packages/guile.scm:363 +#: gnu/packages/guile.scm:428 msgid "Collection of useful Guile Scheme modules" msgstr "" =20 -#: gnu/packages/guile.scm:365 +#: gnu/packages/guile.scm:430 msgid "" "Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" "modules, allowing for people to cooperate integrating their generic Gui= le\n" @@ -3388,11 +4117,11 @@ msgid "" "for Guile\"." msgstr "" =20 -#: gnu/packages/guile.scm:396 +#: gnu/packages/guile.scm:461 msgid "JSON module for Guile" msgstr "" =20 -#: gnu/packages/guile.scm:398 +#: gnu/packages/guile.scm:463 msgid "" "Guile-json supports parsing and building JSON documents according to th= e\n" "http:://json.org specification. These are the main features:\n" @@ -3402,11 +4131,11 @@ msgid "" "- Allows JSON pretty printing." msgstr "" =20 -#: gnu/packages/guile.scm:468 +#: gnu/packages/guile.scm:534 msgid "MiniKanren declarative logic system, packaged for Guile" msgstr "" =20 -#: gnu/packages/guile.scm:470 +#: gnu/packages/guile.scm:536 msgid "" "MiniKanren is a relational programming extension to the Scheme\n" "programming Language, written as a smaller version of Kanren suitable f= or\n" @@ -3419,89 +4148,139 @@ msgid "" "See http://minikanren.org/ for more on miniKanren generally." msgstr "" =20 -#: gnu/packages/guile.scm:540 +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 msgid "Guile bindings to the GDBM library via Guile's FFI" msgstr "" =20 -#: gnu/packages/guile.scm:542 +#: gnu/packages/guile.scm:687 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" =20 -#: gnu/packages/guile.scm:560 +#: gnu/packages/guile.scm:727 msgid "Functional static site generator" msgstr "" =20 -#: gnu/packages/guile.scm:561 +#: gnu/packages/guile.scm:728 msgid "" "Haunt is a static site generator written in Guile\n" "Scheme. Haunt features a functional build system and an extensible\n" "interface for reading articles in any format." msgstr "" =20 -#: gnu/packages/guile.scm:591 +#: gnu/packages/guile.scm:758 msgid "Redis client library for Guile" msgstr "" =20 -#: gnu/packages/guile.scm:592 +#: gnu/packages/guile.scm:759 msgid "" "Guile-redis provides a Scheme interface to the Redis\n" "key-value cache and store." msgstr "" =20 -#: gnu/packages/guile.scm:666 -msgid "wisp is a whitespace to lisp syntax for Guile" +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" msgstr "" =20 -#: gnu/packages/guile.scm:667 +#: gnu/packages/guile.scm:834 msgid "" -"wisp is a syntax for Guile which provides a Python-like\n" +"Wisp is a syntax for Guile which provides a Python-like\n" "whitespace-significant language. It may be easier on the eyes for some= \n" "users and in some situations." msgstr "" =20 -#: gnu/packages/imagemagick.scm:99 +#: gnu/packages/guile.scm:867 +msgid "2D/3D game engine for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +msgid "Generate C bindings for Guile" +msgstr "" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 msgid "Create, edit, compose, or convert bitmap images" msgstr "" =20 -#: gnu/packages/imagemagick.scm:101 +#: gnu/packages/imagemagick.scm:103 msgid "" "ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" -"bitmap images. It can read and write images in a variety of formats (o= ver 100)\n" -"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , SVG,\n" -"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear and\n" -"transform images, adjust image colors, apply various special effects, o= r draw\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" "text, lines, polygons, ellipses and B=C3=A9zier curves." msgstr "" =20 -#: gnu/packages/imagemagick.scm:145 +#: gnu/packages/imagemagick.scm:147 msgid "Perl interface to ImageMagick" msgstr "" =20 -#: gnu/packages/imagemagick.scm:146 +#: gnu/packages/imagemagick.scm:148 msgid "" "This Perl extension allows the reading, manipulation and\n" -"writing of a large number of image file formats using the ImageMagick l= ibrary.\n" -"Use it to create, edit, compose, or convert bitmap images from within a= Perl\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" "script." msgstr "" =20 -#: gnu/packages/image.scm:69 -msgid "Library for handling PNG files" +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." msgstr "" =20 #: gnu/packages/image.scm:71 +msgid "Library for handling PNG files" +msgstr "" + +#: gnu/packages/image.scm:73 msgid "" "Libpng is the official PNG (Portable Network Graphics) reference\n" "library. It supports almost all PNG features and is extensible." msgstr "" =20 -#: gnu/packages/image.scm:87 +#: gnu/packages/image.scm:89 msgid "Library for handling JPEG files" msgstr "" =20 -#: gnu/packages/image.scm:89 +#: gnu/packages/image.scm:91 msgid "" "Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" "JPEG is a standardized compression method for full-color and gray-scale= \n" @@ -3510,11 +4289,22 @@ msgid "" "image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." msgstr "" =20 -#: gnu/packages/image.scm:128 +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 msgid "Library for handling TIFF files" msgstr "" =20 -#: gnu/packages/image.scm:130 +#: gnu/packages/image.scm:159 msgid "" "Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" "used for storing image data.\n" @@ -3522,37 +4312,42 @@ msgid "" "collection of tools for doing simple manipulations of TIFF images." msgstr "" =20 -#: gnu/packages/image.scm:173 +#: gnu/packages/image.scm:202 msgid "Library for reading images in the Microsoft WMF format" msgstr "" =20 -#: gnu/packages/image.scm:175 +#: gnu/packages/image.scm:204 msgid "" "libwmf is a library for reading vector images in Microsoft's native\n" -"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., an X\n" -"window; or (b) converting them to more standard/free file formats such = as, e.g.,\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" "the W3C's XML-based Scaleable Vector Graphic (SVG) format." msgstr "" =20 -#: gnu/packages/image.scm:233 +#: gnu/packages/image.scm:271 msgid "Library and tools for image processing and analysis" msgstr "" =20 -#: gnu/packages/image.scm:235 +#: gnu/packages/image.scm:273 msgid "" "Leptonica is a C library and set of command-line tools for efficient\n" -"image processing and image analysis operations. It supports rasterop, = affine\n" -"transformations, binary and grayscale morphology, rank order, and convo= lution,\n" -"seedfill and connected components, image transformations combining chan= ges in\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" "scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" "arithmetic ops." msgstr "" =20 -#: gnu/packages/image.scm:258 +#: gnu/packages/image.scm:296 msgid "Decoder of the JBIG2 image compression format" msgstr "" =20 -#: gnu/packages/image.scm:260 +#: gnu/packages/image.scm:298 msgid "" "JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" "monochrome) images at moderately high resolution, and in particular sca= nned\n" @@ -3565,11 +4360,11 @@ msgid "" "work." msgstr "" =20 -#: gnu/packages/image.scm:295 +#: gnu/packages/image.scm:333 msgid "JPEG 2000 codec" msgstr "" =20 -#: gnu/packages/image.scm:297 +#: gnu/packages/image.scm:335 msgid "" "The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" "been developed in order to promote the use of JPEG 2000, the new\n" @@ -3582,31 +4377,33 @@ msgid "" "error-resilience, a Java-viewer for j2k-images, ..." msgstr "" =20 -#: gnu/packages/image.scm:376 +#: gnu/packages/image.scm:414 msgid "Tools and library for working with GIF images" msgstr "" =20 -#: gnu/packages/image.scm:378 +#: gnu/packages/image.scm:416 msgid "" "GIFLIB is a library for reading and writing GIF images. It is API and\= n" -"ABI compatible with libungif which was in wide use while the LZW compre= ssion\n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" "algorithm was patented. Tools are also included to convert, manipulate= ,\n" "compose, and analyze GIF images." msgstr "" =20 -#: gnu/packages/image.scm:399 +#: gnu/packages/image.scm:437 msgid "GIF decompression library" msgstr "GIF-dekomprimeringsbibliotek" =20 -#: gnu/packages/image.scm:401 +#: gnu/packages/image.scm:439 msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." -msgstr "libungif er det gamle GIF-dekomprimeringsbibliotek af GIFLIB-pro= jektet." +msgstr "" +"libungif er det gamle GIF-dekomprimeringsbibliotek af GIFLIB-projektet.= " =20 -#: gnu/packages/image.scm:430 +#: gnu/packages/image.scm:468 msgid "Loading, saving, rendering and manipulating image files" msgstr "Indl=C3=A6s, gem, optegn og manipuler billedfiler" =20 -#: gnu/packages/image.scm:432 +#: gnu/packages/image.scm:470 msgid "" "Imlib2 is a library that does image file loading and saving as well as\= n" "rendering, manipulation, arbitrary polygon support, etc.\n" @@ -3619,32 +4416,32 @@ msgid "" "more modular, simple, and flexible." msgstr "" =20 -#: gnu/packages/image.scm:460 +#: gnu/packages/image.scm:498 msgid "Wrapper library for imlib2" msgstr "" =20 -#: gnu/packages/image.scm:462 +#: gnu/packages/image.scm:500 msgid "" "Giblib is a simple library which wraps imlib2's context API, avoiding\n= " "all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" "supplies a generic doubly-linked list and some string functions." msgstr "" =20 -#: gnu/packages/image.scm:502 +#: gnu/packages/image.scm:540 msgid "Library for handling popular graphics image formats" msgstr "" =20 -#: gnu/packages/image.scm:504 +#: gnu/packages/image.scm:542 msgid "" "FreeImage is a library for developers who would like to support popular= \n" "graphics image formats like PNG, BMP, JPEG, TIFF and others." msgstr "" =20 -#: gnu/packages/image.scm:554 +#: gnu/packages/image.scm:592 msgid "Computer vision library" msgstr "" =20 -#: gnu/packages/image.scm:556 +#: gnu/packages/image.scm:594 msgid "" "VIGRA stands for Vision with Generic Algorithms. It is an image\n" "processing and analysis library that puts its main emphasis on customiz= able\n" @@ -3652,38 +4449,65 @@ msgid "" "multi-dimensional image processing." msgstr "" =20 -#: gnu/packages/image.scm:587 +#: gnu/packages/image.scm:625 msgid "Lossless and lossy image compression" msgstr "" =20 -#: gnu/packages/image.scm:589 +#: gnu/packages/image.scm:627 msgid "" "WebP is a new image format that provides lossless and lossy compression= \n" "for images. WebP lossless images are 26% smaller in size compared to\n= " -"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages at\n" +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" "equivalent SSIM index. WebP supports lossless transparency (also known= as\n" -"alpha channel) with just 22% additional bytes. Transparency is also su= pported\n" -"with lossy compression and typically provides 3x smaller file sizes com= pared\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" "to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" "channels." msgstr "" =20 -#: gnu/packages/image.scm:617 -msgid "Library for handling MNG files" +#: gnu/packages/image.scm:655 +msgid "Library for handling MNG files" +msgstr "" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +msgid "Library for manipulating many image formats" +msgstr "" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" msgstr "" =20 -#: gnu/packages/image.scm:619 -msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." msgstr "" =20 -#: gnu/packages/inkscape.scm:84 +#: gnu/packages/inkscape.scm:88 msgid "Vector graphics editor" msgstr "" =20 -#: gnu/packages/inkscape.scm:85 +#: gnu/packages/inkscape.scm:89 msgid "" "Inkscape is a vector graphics editor. What sets Inkscape\n" -"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C st= andard,\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" "as the native format." msgstr "" =20 @@ -3715,8 +4539,10 @@ msgstr "" msgid "" "GNU less is a pager, a program that allows you to view large amounts\n" "of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" -"backwards and forwards movement through the document. It also does not= have\n" -"to read the entire input file before starting, so it starts faster than= most\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" "text editors." msgstr "" =20 @@ -3728,11 +4554,11 @@ msgstr "" msgid "Clone of the Motif toolkit for the X window system." msgstr "" =20 -#: gnu/packages/libreoffice.scm:85 +#: gnu/packages/libreoffice.scm:86 msgid "General purpose formula parser and interpreter" msgstr "" =20 -#: gnu/packages/libreoffice.scm:86 +#: gnu/packages/libreoffice.scm:87 msgid "" "Ixion is a library for calculating the results of formula\n" "expressions stored in multiple named targets, or \"cells\". The cells = can\n" @@ -3740,47 +4566,49 @@ msgid "" "their dependencies automatically upon calculation." msgstr "" =20 -#: gnu/packages/libreoffice.scm:111 +#: gnu/packages/libreoffice.scm:112 msgid "File import filter library for spreadsheet documents" msgstr "" =20 -#: gnu/packages/libreoffice.scm:112 +#: gnu/packages/libreoffice.scm:113 msgid "" "Orcus is a library that provides a collection of standalone\n" "file processing filters. It is currently focused on providing filters = for\n" "spreadsheet documents. The library includes import filters for\n" -"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document Sprea= dsheet,\n" -"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" "CSV, CSS and XML." msgstr "" =20 -#: gnu/packages/libreoffice.scm:143 +#: gnu/packages/libreoffice.scm:147 msgid "Document importer for office suites" msgstr "" =20 -#: gnu/packages/libreoffice.scm:144 +#: gnu/packages/libreoffice.scm:148 msgid "" "Librevenge is a base library for writing document import\n" "filters. It has interfaces for text documents, vector graphics,\n" "spreadsheets and presentations." msgstr "" =20 -#: gnu/packages/libreoffice.scm:169 +#: gnu/packages/libreoffice.scm:173 msgid "Library for importing WordPerfect documents" msgstr "" =20 -#: gnu/packages/libreoffice.scm:170 +#: gnu/packages/libreoffice.scm:174 msgid "" "Libwpd is a C++ library designed to help process\n" "WordPerfect documents. It is most commonly used to import such documen= ts\n" "into other word processors." msgstr "" =20 -#: gnu/packages/libreoffice.scm:202 +#: gnu/packages/libreoffice.scm:206 msgid "Library for import of reflowable e-book formats" msgstr "" =20 -#: gnu/packages/libreoffice.scm:203 +#: gnu/packages/libreoffice.scm:207 msgid "" "Libe-book is a library and a set of tools for reading and\n" "converting various reflowable e-book formats. Currently supported are:= \n" @@ -3790,113 +4618,114 @@ msgid "" "ZVR (simple compressed text format)." msgstr "" =20 -#: gnu/packages/libreoffice.scm:232 +#: gnu/packages/libreoffice.scm:236 msgid "Library and tools for the WordPerfect Graphics format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:233 +#: gnu/packages/libreoffice.scm:237 msgid "" "The libwpg project provides a library and tools for\n" "working with graphics in the WPG (WordPerfect Graphics) format." msgstr "" =20 -#: gnu/packages/libreoffice.scm:273 +#: gnu/packages/libreoffice.scm:278 msgid "CMIS client library" msgstr "" =20 -#: gnu/packages/libreoffice.scm:274 +#: gnu/packages/libreoffice.scm:279 msgid "" "LibCMIS is a C++ client library for the CMIS interface. It\n" -"allows C++ applications to connect to any ECM behaving as a CMIS server= such\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" "as Alfresco or Nuxeo." msgstr "" =20 -#: gnu/packages/libreoffice.scm:305 +#: gnu/packages/libreoffice.scm:310 msgid "Library for parsing the AbiWord format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:306 +#: gnu/packages/libreoffice.scm:311 msgid "" "Libabw is a library that parses the file format of\n" "AbiWord documents." msgstr "" =20 -#: gnu/packages/libreoffice.scm:336 +#: gnu/packages/libreoffice.scm:341 msgid "Library for parsing the CorelDRAW format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:337 +#: gnu/packages/libreoffice.scm:342 msgid "" "Libcdr is a library that parses the file format of\n" "CorelDRAW documents of all versions." msgstr "" =20 -#: gnu/packages/libreoffice.scm:366 +#: gnu/packages/libreoffice.scm:371 msgid "Library for parsing the Apple Keynote format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:367 +#: gnu/packages/libreoffice.scm:372 msgid "" "Libetonyek is a library that parses the file format of\n" "Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." msgstr "" =20 -#: gnu/packages/libreoffice.scm:384 +#: gnu/packages/libreoffice.scm:389 msgid "Text Categorization library" msgstr "" =20 -#: gnu/packages/libreoffice.scm:385 +#: gnu/packages/libreoffice.scm:390 msgid "" "Libexttextcat is an N-Gram-Based Text Categorization\n" "library primarily intended for language guessing." msgstr "" =20 -#: gnu/packages/libreoffice.scm:411 +#: gnu/packages/libreoffice.scm:416 msgid "Library for parsing the FreeHand format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:412 +#: gnu/packages/libreoffice.scm:417 msgid "" "Libfreehand is a library that parses the file format of\n" "Aldus/Macromedia/Adobe FreeHand documents." msgstr "" =20 -#: gnu/packages/libreoffice.scm:438 +#: gnu/packages/libreoffice.scm:443 msgid "Library for parsing the Microsoft Publisher format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:439 +#: gnu/packages/libreoffice.scm:444 msgid "" "Libmspub is a library that parses the file format of\n" "Microsoft Publisher documents of all versions." msgstr "" =20 -#: gnu/packages/libreoffice.scm:467 +#: gnu/packages/libreoffice.scm:472 msgid "Library for parsing the PageMaker format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:468 +#: gnu/packages/libreoffice.scm:473 msgid "" "Libpagemaker is a library that parses the file format of\n" "Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" "created by PageMaker version 6.x and 7." msgstr "" =20 -#: gnu/packages/libreoffice.scm:503 +#: gnu/packages/libreoffice.scm:508 msgid "Library for parsing the Microsoft Visio format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:504 +#: gnu/packages/libreoffice.scm:509 msgid "" "Libvisio is a library that parses the file format of\n" "Microsoft Visio documents of all versions." msgstr "" =20 -#: gnu/packages/libreoffice.scm:532 +#: gnu/packages/libreoffice.scm:537 msgid "ODF (Open Document Format) library" msgstr "" =20 -#: gnu/packages/libreoffice.scm:533 +#: gnu/packages/libreoffice.scm:538 msgid "" "Libodfgen is a library for generating documents in the\n" "Open Document Format (ODF). It provides generator implementations for = all\n" @@ -3904,60 +4733,60 @@ msgid "" "text documents, vector drawings, presentations and spreadsheets." msgstr "" =20 -#: gnu/packages/libreoffice.scm:563 +#: gnu/packages/libreoffice.scm:568 msgid "Import library for some old Macintosh text documents" msgstr "" =20 -#: gnu/packages/libreoffice.scm:564 +#: gnu/packages/libreoffice.scm:569 msgid "" "Libmwaw contains some import filters for old Macintosh\n" "text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" "spreadsheet documents." msgstr "" =20 -#: gnu/packages/libreoffice.scm:593 +#: gnu/packages/libreoffice.scm:598 msgid "Import library for Microsoft Works text documents" msgstr "" =20 -#: gnu/packages/libreoffice.scm:594 +#: gnu/packages/libreoffice.scm:599 msgid "" "Libwps is a library for importing files in the Microsoft\n" "Works word processor file format." msgstr "" =20 -#: gnu/packages/libreoffice.scm:612 +#: gnu/packages/libreoffice.scm:617 msgid "" "Hunspell is a spell checker and morphological analyzer\n" "library and program designed for languages with rich morphology and com= plex\n" "word compounding or character encoding." msgstr "" =20 -#: gnu/packages/libreoffice.scm:633 +#: gnu/packages/libreoffice.scm:638 msgid "Hyphenation library" msgstr "" =20 -#: gnu/packages/libreoffice.scm:634 +#: gnu/packages/libreoffice.scm:639 msgid "" "Hyphen is a hyphenation library using TeX hyphenation\n" "patterns, which are pre-processed by a perl script." msgstr "" =20 -#: gnu/packages/libreoffice.scm:657 +#: gnu/packages/libreoffice.scm:662 msgid "Thesaurus" msgstr "" =20 -#: gnu/packages/libreoffice.scm:658 +#: gnu/packages/libreoffice.scm:663 msgid "" "MyThes is a simple thesaurus that uses a structured text\n" "data file and an index file with binary search to look up words and phr= ases\n" "and to return information on pronunciations, meanings and synonyms." msgstr "" =20 -#: gnu/packages/libreoffice.scm:822 +#: gnu/packages/libreoffice.scm:829 msgid "Office suite" msgstr "" =20 -#: gnu/packages/libreoffice.scm:823 +#: gnu/packages/libreoffice.scm:830 msgid "" "LibreOffice is a comprehensive office suite. It contains\n" "a number of components: Writer, a word processor; Calc, a spreadsheet\n= " @@ -3966,39 +4795,39 @@ msgid "" "Math for editing mathematics." msgstr "" =20 -#: gnu/packages/linux.scm:149 +#: gnu/packages/linux.scm:155 msgid "GNU Linux-Libre kernel headers" msgstr "" =20 -#: gnu/packages/linux.scm:150 +#: gnu/packages/linux.scm:156 msgid "Headers of the Linux-Libre kernel." msgstr "" =20 -#: gnu/packages/linux.scm:181 +#: gnu/packages/linux.scm:187 msgid "Tools for loading and managing Linux kernel modules" msgstr "" =20 -#: gnu/packages/linux.scm:183 +#: gnu/packages/linux.scm:189 msgid "" "Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" "`insmod', `lsmod', and more." msgstr "" =20 -#: gnu/packages/linux.scm:311 +#: gnu/packages/linux.scm:322 msgid "100% free redistribution of a cleaned Linux kernel" msgstr "" =20 -#: gnu/packages/linux.scm:313 +#: gnu/packages/linux.scm:324 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" "It has been modified to remove all non-free binary blobs." msgstr "" =20 -#: gnu/packages/linux.scm:356 +#: gnu/packages/linux.scm:384 msgid "Pluggable authentication modules for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:358 +#: gnu/packages/linux.scm:386 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can= \n" @@ -4006,30 +4835,34 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" =20 -#: gnu/packages/linux.scm:385 +#: gnu/packages/linux.scm:413 msgid "Small utilities that use the proc filesystem" msgstr "" =20 -#: gnu/packages/linux.scm:387 +#: gnu/packages/linux.scm:415 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc filesystem. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" =20 -#: gnu/packages/linux.scm:449 +#: gnu/packages/linux.scm:480 msgid "Collection of utilities for the Linux kernel" msgstr "" =20 -#: gnu/packages/linux.scm:451 -msgid "Util-linux is a random collection of utilities for the Linux kern= el." +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." msgstr "" =20 -#: gnu/packages/linux.scm:518 +#: gnu/packages/linux.scm:522 msgid "Utilities that give information about processes" msgstr "" =20 -#: gnu/packages/linux.scm:520 +#: gnu/packages/linux.scm:524 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system= .\n" @@ -4037,132 +4870,142 @@ msgid "" "slabtop, and skill." msgstr "" =20 -#: gnu/packages/linux.scm:545 +#: gnu/packages/linux.scm:549 msgid "Tools for working with USB devices, such as lsusb" msgstr "" =20 -#: gnu/packages/linux.scm:547 +#: gnu/packages/linux.scm:551 msgid "Tools for working with USB devices, such as lsusb." msgstr "" =20 -#: gnu/packages/linux.scm:621 +#: gnu/packages/linux.scm:625 msgid "Creating and checking ext2/ext3/ext4 file systems" msgstr "" =20 -#: gnu/packages/linux.scm:623 -msgid "This package provides tools for manipulating ext2/ext3/ext4 file = systems." +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." msgstr "" =20 -#: gnu/packages/linux.scm:665 +#: gnu/packages/linux.scm:669 msgid "Statically-linked fsck.* commands from e2fsprogs" msgstr "" =20 -#: gnu/packages/linux.scm:667 +#: gnu/packages/linux.scm:671 msgid "" "This package provides statically-linked command of fsck.ext[234] taken\= n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" =20 -#: gnu/packages/linux.scm:686 +#: gnu/packages/linux.scm:690 msgid "Recover deleted files from ext2/3/4 partitions" msgstr "" =20 -#: gnu/packages/linux.scm:688 +#: gnu/packages/linux.scm:692 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" =20 -#: gnu/packages/linux.scm:720 +#: gnu/packages/linux.scm:724 msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" msgstr "" =20 -#: gnu/packages/linux.scm:722 +#: gnu/packages/linux.scm:726 msgid "" "The zerofree command scans the free blocks in an ext2 file system and\n= " "fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" "images more compressible." msgstr "" =20 -#: gnu/packages/linux.scm:741 +#: gnu/packages/linux.scm:745 msgid "System call tracer for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:743 +#: gnu/packages/linux.scm:747 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out = a\n" "trace of all the system calls made by a another process/program." msgstr "" =20 -#: gnu/packages/linux.scm:764 +#: gnu/packages/linux.scm:768 msgid "Library call tracer for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:766 +#: gnu/packages/linux.scm:770 msgid "" "ltrace intercepts and records dynamic library calls which are called by= \n" "an executed process and the signals received by that process. It can a= lso\n" "intercept and print the system calls executed by the program." msgstr "" =20 -#: gnu/packages/linux.scm:786 +#: gnu/packages/linux.scm:790 msgid "The Advanced Linux Sound Architecture libraries" msgstr "" =20 -#: gnu/packages/linux.scm:788 gnu/packages/linux.scm:830 +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" =20 -#: gnu/packages/linux.scm:828 +#: gnu/packages/linux.scm:832 msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" msgstr "" =20 -#: gnu/packages/linux.scm:855 +#: gnu/packages/linux.scm:859 msgid "Program to configure the Linux IP packet filtering rules" msgstr "" =20 -#: gnu/packages/linux.scm:857 +#: gnu/packages/linux.scm:861 msgid "" "iptables is the userspace command line program used to configure the\n" -"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted to= wards\n" -"system administrators. Since Network Address Translation is also confi= gured\n" -"from the packet filter ruleset, iptables is used for this, too. The ip= tables\n" -"package also includes ip6tables. ip6tables is used for configuring the= IPv6\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" "packet filter." msgstr "" =20 -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:908 msgid "Utilities for controlling TCP/IP networking and traffic in Linux" msgstr "" =20 -#: gnu/packages/linux.scm:907 +#: gnu/packages/linux.scm:910 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP\n" "networking and traffic with the Linux kernel.\n" "\n" "Most network configuration manuals still refer to ifconfig and route as= the\n" "primary network configuration tools, but ifconfig is known to behave\n" -"inadequately in modern network environments. They should be deprecated= , but\n" -"most distros still include them. Most network configuration systems ma= ke use\n" -"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct aims\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" "to support most modern network technologies, as it doesn't use ifconfig= and\n" -"allows a system administrator to make use of all iproute2 features, inc= luding\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" "traffic control.\n" "\n" "iproute2 is usually shipped in a package called iproute or iproute2 and= \n" "consists of several tools, of which the most important are ip and tc. = ip\n" -"controls IPv4 and IPv6 configuration and tc stands for traffic control.= Both\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" "tools print detailed usage messages and are accompanied by a set of\n" "manpages." msgstr "" =20 -#: gnu/packages/linux.scm:1015 +#: gnu/packages/linux.scm:1022 msgid "Tools for controlling the network subsystem in Linux" msgstr "" =20 -#: gnu/packages/linux.scm:1017 +#: gnu/packages/linux.scm:1024 msgid "" "This package includes the important tools for controlling the network\n= " "subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" @@ -4171,132 +5014,141 @@ msgid "" "advanced aspects of IP configuration (iptunnel, ipmaddr)." msgstr "" =20 -#: gnu/packages/linux.scm:1054 +#: gnu/packages/linux.scm:1061 msgid "Library for working with POSIX capabilities" msgstr "" =20 -#: gnu/packages/linux.scm:1056 +#: gnu/packages/linux.scm:1063 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" =20 -#: gnu/packages/linux.scm:1099 +#: gnu/packages/linux.scm:1106 msgid "Manipulate Ethernet bridges" msgstr "" =20 -#: gnu/packages/linux.scm:1101 +#: gnu/packages/linux.scm:1108 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" "to connect two Ethernet segments together in a protocol independent way= .\n" -"Packets are forwarded based on Ethernet address, rather than IP address= (like\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" "a router). Since forwarding is done at Layer 2, all protocols can go\n= " "transparently through a bridge." msgstr "" =20 -#: gnu/packages/linux.scm:1123 +#: gnu/packages/linux.scm:1130 msgid "NetLink protocol library suite" msgstr "" =20 -#: gnu/packages/linux.scm:1125 +#: gnu/packages/linux.scm:1132 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\= n" -"protocol based Linux kernel interfaces. Netlink is an IPC mechanism pr= imarily\n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" "between the kernel and user space processes. It was designed to be a m= ore\n" "flexible successor to ioctl to provide mainly networking related kernel= \n" "configuration and monitoring interfaces." msgstr "" =20 -#: gnu/packages/linux.scm:1155 +#: gnu/packages/linux.scm:1162 msgid "Tool for configuring wireless devices" msgstr "" =20 -#: gnu/packages/linux.scm:1157 +#: gnu/packages/linux.scm:1164 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces 'iwconfig', which is deprecated." msgstr "" =20 -#: gnu/packages/linux.scm:1183 +#: gnu/packages/linux.scm:1190 msgid "Analyze power consumption on Intel-based laptops" msgstr "" =20 -#: gnu/packages/linux.scm:1185 +#: gnu/packages/linux.scm:1192 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" -"power management. In addition to being a diagnostic tool, PowerTOP als= o has\n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" "an interactive mode where the user can experiment various power managem= ent\n" "settings for cases where the operating system has not enabled these\n" "settings." msgstr "" =20 -#: gnu/packages/linux.scm:1207 +#: gnu/packages/linux.scm:1214 msgid "Audio mixer for X and the console" msgstr "" =20 -#: gnu/packages/linux.scm:1209 +#: gnu/packages/linux.scm:1216 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" =20 -#: gnu/packages/linux.scm:1233 +#: gnu/packages/linux.scm:1240 msgid "Displays the IO activity of running processes" msgstr "" =20 -#: gnu/packages/linux.scm:1235 +#: gnu/packages/linux.scm:1242 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" =20 -#: gnu/packages/linux.scm:1287 +#: gnu/packages/linux.scm:1297 msgid "Support file systems implemented in user space" msgstr "" =20 -#: gnu/packages/linux.scm:1289 +#: gnu/packages/linux.scm:1299 msgid "" "As a consequence of its monolithic design, file system code for Linux\n= " -"normally goes into the kernel itself---which is not only a robustness i= ssue,\n" -"but also an impediment to system extensibility. FUSE, for \"file syste= ms in\n" -"user space\", is a kernel module and user-space library that tries to a= ddress\n" -"part of this problem by allowing users to run file system implementatio= ns as\n" +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" "user-space processes." msgstr "" =20 -#: gnu/packages/linux.scm:1314 +#: gnu/packages/linux.scm:1324 msgid "User-space union file system" msgstr "" =20 -#: gnu/packages/linux.scm:1316 +#: gnu/packages/linux.scm:1326 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you= to\n" -"\"aggregate\" the contents of several directories into a single mount p= oint.\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" =20 -#: gnu/packages/linux.scm:1341 +#: gnu/packages/linux.scm:1351 msgid "User-space union file system (statically linked)" msgstr "" =20 -#: gnu/packages/linux.scm:1383 +#: gnu/packages/linux.scm:1396 msgid "Mount remote file systems over SSH" msgstr "" =20 -#: gnu/packages/linux.scm:1385 +#: gnu/packages/linux.scm:1398 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n= " "Since most SSH servers already support this protocol it is very easy to= set\n" -"up: on the server side there's nothing to do; on the client side mounti= ng the\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" "file system is as easy as logging into the server with an SSH client." msgstr "" =20 -#: gnu/packages/linux.scm:1433 +#: gnu/packages/linux.scm:1427 msgid "Tools for non-uniform memory access (NUMA) machines" msgstr "" =20 -#: gnu/packages/linux.scm:1435 +#: gnu/packages/linux.scm:1429 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" "memory is not all in one place. The numactl program allows you to run = your\n" @@ -4309,32 +5161,32 @@ msgid "" "system." msgstr "" =20 -#: gnu/packages/linux.scm:1498 +#: gnu/packages/linux.scm:1492 msgid "Linux keyboard utilities and keyboard maps" msgstr "" =20 -#: gnu/packages/linux.scm:1500 +#: gnu/packages/linux.scm:1494 msgid "" "This package contains keytable files and keyboard utilities compatible\= n" "for systems using the Linux kernel. This includes commands such as\n" "'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." msgstr "" =20 -#: gnu/packages/linux.scm:1519 +#: gnu/packages/linux.scm:1513 msgid "Monitor file accesses" msgstr "" =20 -#: gnu/packages/linux.scm:1521 +#: gnu/packages/linux.scm:1515 msgid "" "The inotify-tools packages provides a C library and command-line tools\= n" "to use Linux' inotify mechanism, which allows file accesses to be monit= ored." msgstr "" =20 -#: gnu/packages/linux.scm:1559 +#: gnu/packages/linux.scm:1553 msgid "Kernel module tools" msgstr "" =20 -#: gnu/packages/linux.scm:1560 +#: gnu/packages/linux.scm:1554 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -4345,149 +5197,157 @@ msgid "" "from the module-init-tools project." msgstr "" =20 -#: gnu/packages/linux.scm:1631 +#: gnu/packages/linux.scm:1586 msgid "Userspace device management" msgstr "" =20 -#: gnu/packages/linux.scm:1632 +#: gnu/packages/linux.scm:1587 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" "time." msgstr "" =20 -#: gnu/packages/linux.scm:1692 +#: gnu/packages/linux.scm:1659 msgid "Logical volume management for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:1694 +#: gnu/packages/linux.scm:1661 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.= \n" -"This package includes the user-space libraries and tools, including the= device\n" +"This package includes the user-space libraries and tools, including the= " +"device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" =20 -#: gnu/packages/linux.scm:1730 +#: gnu/packages/linux.scm:1697 msgid "Tools for manipulating Linux Wireless Extensions" msgstr "" =20 -#: gnu/packages/linux.scm:1731 +#: gnu/packages/linux.scm:1698 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " "Extension was an interface allowing you to set Wireless LAN specific\n" -"parameters and get the specific stats. It is deprecated in favor the n= l80211\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" "interface." msgstr "" =20 -#: gnu/packages/linux.scm:1803 +#: gnu/packages/linux.scm:1770 msgid "Central regulatory domain agent (CRDA) for WiFi" msgstr "" =20 -#: gnu/packages/linux.scm:1805 +#: gnu/packages/linux.scm:1772 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" =20 -#: gnu/packages/linux.scm:1841 +#: gnu/packages/linux.scm:1818 msgid "Wireless regulatory database" msgstr "" =20 -#: gnu/packages/linux.scm:1843 +#: gnu/packages/linux.scm:1820 msgid "" "This package contains the wireless regulatory database Central\n" -"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion on\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" "country-specific regulations for the wireless spectrum." msgstr "" =20 -#: gnu/packages/linux.scm:1914 +#: gnu/packages/linux.scm:1891 msgid "Utilities to read temperature/voltage/fan sensors" msgstr "" =20 -#: gnu/packages/linux.scm:1916 +#: gnu/packages/linux.scm:1893 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" "you to access information from temperature, voltage, and fan speed sens= ors.\n" "It works with most newer systems." msgstr "" =20 -#: gnu/packages/linux.scm:1943 +#: gnu/packages/linux.scm:1920 msgid "I2C tools for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:1945 +#: gnu/packages/linux.scm:1922 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" -"Linux: a bus probing tool, a chip dumper, register-level SMBus access h= elpers,\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" "EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" "SMBus access." msgstr "" =20 -#: gnu/packages/linux.scm:1981 +#: gnu/packages/linux.scm:1958 msgid "Hardware health information viewer" msgstr "" =20 -#: gnu/packages/linux.scm:1983 +#: gnu/packages/linux.scm:1960 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" -"health such as temperature, voltage and fan speed and displays the info= rmation\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" "in a digital read-out." msgstr "" =20 -#: gnu/packages/linux.scm:2031 +#: gnu/packages/linux.scm:2008 msgid "Linux profiling with performance counters" msgstr "" =20 -#: gnu/packages/linux.scm:2033 +#: gnu/packages/linux.scm:2010 msgid "" "perf is a tool suite for profiling using hardware performance counters,= \n" "with support in the Linux kernel. perf can instrument CPU performance\= n" -"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is c= apable\n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" "of lightweight profiling. This package contains the user-land tools an= d in\n" "particular the 'perf' command." msgstr "" =20 -#: gnu/packages/linux.scm:2056 +#: gnu/packages/linux.scm:2033 msgid "Simple tool for creating Linux namespace containers" msgstr "" =20 -#: gnu/packages/linux.scm:2057 +#: gnu/packages/linux.scm:2034 msgid "" "pflask is a simple tool for creating Linux namespace\n" -"containers. It can be used for running a command or even booting an OS= inside\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" "an isolated container, created with the help of Linux namespaces. It i= s\n" -"similar in functionality to chroot, although pflask provides better iso= lation\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" "thanks to the use of namespaces." msgstr "" =20 -#: gnu/packages/linux.scm:2084 +#: gnu/packages/linux.scm:2061 msgid "Tune hard disk parameters for high performance" msgstr "" =20 -#: gnu/packages/linux.scm:2086 +#: gnu/packages/linux.scm:2063 msgid "" "Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" "is for enabling irq-unmasking and IDE multiple-mode." msgstr "" =20 -#: gnu/packages/linux.scm:2109 +#: gnu/packages/linux.scm:2086 msgid "Tool for enabling and disabling wireless devices" msgstr "" =20 -#: gnu/packages/linux.scm:2111 +#: gnu/packages/linux.scm:2088 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typica= lly\n" "WLAN, Bluetooth and mobile broadband." msgstr "" =20 -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2107 msgid "Daemon for delivering ACPI events to user-space programs" msgstr "" =20 -#: gnu/packages/linux.scm:2132 +#: gnu/packages/linux.scm:2109 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" @@ -4496,107 +5356,135 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the even= t." msgstr "" =20 -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2131 msgid "System utilities based on Linux sysfs" msgstr "" =20 -#: gnu/packages/linux.scm:2156 +#: gnu/packages/linux.scm:2133 msgid "" "These are a set of utilities built upon sysfs, a virtual filesystem in\= n" -"Linux kernel versions 2.5+ that exposes a system's device tree. The pa= ckage\n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" "also contains the libsysfs library." msgstr "" =20 -#: gnu/packages/linux.scm:2185 +#: gnu/packages/linux.scm:2162 msgid "System utilities based on Linux sysfs (version 1.x)" msgstr "" =20 -#: gnu/packages/linux.scm:2208 +#: gnu/packages/linux.scm:2185 msgid "Utilities to get and set CPU frequency on Linux" msgstr "" =20 -#: gnu/packages/linux.scm:2210 +#: gnu/packages/linux.scm:2187 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\= n" "capabilities of the Linux kernel." msgstr "" =20 -#: gnu/packages/linux.scm:2229 +#: gnu/packages/linux.scm:2206 msgid "Interface library for the Linux IEEE1394 drivers" msgstr "" =20 -#: gnu/packages/linux.scm:2231 +#: gnu/packages/linux.scm:2208 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" -"the Linux IEEE-1394 subsystem, which provides direct access to the conn= ected\n" -"1394 buses to user space. Through libraw1394/raw1394, applications can= directly\n" -"send to and receive from other nodes without requiring a kernel driver = for the\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" "protocol in question." msgstr "" =20 -#: gnu/packages/linux.scm:2255 +#: gnu/packages/linux.scm:2232 msgid "AV/C protocol library for IEEE 1394" msgstr "" =20 -#: gnu/packages/linux.scm:2257 +#: gnu/packages/linux.scm:2234 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" =20 -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2256 msgid "Isochronous streaming media library for IEEE 1394" msgstr "" =20 -#: gnu/packages/linux.scm:2281 +#: gnu/packages/linux.scm:2258 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n= " "MPEG-2 and audio over Linux IEEE 1394." msgstr "" =20 -#: gnu/packages/linux.scm:2321 +#: gnu/packages/linux.scm:2298 msgid "Tool for managing Linux Software RAID arrays" msgstr "" =20 -#: gnu/packages/linux.scm:2323 +#: gnu/packages/linux.scm:2300 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" -"assemble, report on, and monitor arrays. It can also move spares betwe= en raid\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" "arrays when needed." msgstr "" =20 -#: gnu/packages/linux.scm:2350 +#: gnu/packages/linux.scm:2327 msgid "Linux-native asynchronous I/O access library" msgstr "" =20 -#: gnu/packages/linux.scm:2352 +#: gnu/packages/linux.scm:2329 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other adva= nced\n" "applications." msgstr "" =20 -#: gnu/packages/linux.scm:2388 +#: gnu/packages/linux.scm:2365 msgid "Linux Bluetooth protocol stack" msgstr "" =20 -#: gnu/packages/linux.scm:2390 +#: gnu/packages/linux.scm:2367 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It= \n" "is flexible, efficient and uses a modular implementation." msgstr "" =20 -#: gnu/packages/linux.scm:2446 +#: gnu/packages/linux.scm:2423 msgid "Mount exFAT file systems" msgstr "" =20 -#: gnu/packages/linux.scm:2448 +#: gnu/packages/linux.scm:2425 msgid "" "This package provides a FUSE-based file system that provides read and\n= " "write access to exFAT devices." msgstr "" =20 +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + #: gnu/packages/lout.scm:109 msgid "Document layout system" msgstr "" @@ -4604,14 +5492,17 @@ msgstr "" #: gnu/packages/lout.scm:111 msgid "" "The Lout document formatting system reads a high-level description of\n= " -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" "output file.\n" "\n" "Lout offers an unprecedented range of advanced features, including opti= mal\n" "paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" "scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" "hyphenation (most European languages are supported), formatting of comp= uter\n" "programs, and much more, all ready to use. Furthermore, Lout is easily= \n" "extended with definitions which are very much easier to write than trof= f of\n" @@ -4620,122 +5511,138 @@ msgid "" "beginning." msgstr "" =20 -#: gnu/packages/messaging.scm:76 +#: gnu/packages/messaging.scm:77 msgid "Off-the-Record (OTR) Messaging Library and Toolkit" msgstr "" =20 -#: gnu/packages/messaging.scm:78 +#: gnu/packages/messaging.scm:79 msgid "" "OTR allows you to have private conversations over instant messaging by\= n" "providing: (1) Encryption: No one else can read your instant messages. = (2)\n" -"Authentication: You are assured the correspondent is who you think it i= s. (3)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" "Deniability: The messages you send do not have digital signatures that = are\n" -"checkable by a third party. Anyone can forge messages after a conversa= tion to\n" -"make them look like they came from you. However, during a conversation= , your\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" "correspondent is assured the messages he sees are authentic and\n" -"unmodified. (4) Perfect forward secrecy: If you lose control of your p= rivate\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" "keys, no previous conversation is compromised." msgstr "" =20 -#: gnu/packages/messaging.scm:134 +#: gnu/packages/messaging.scm:135 msgid "IRC to instant messaging gateway" msgstr "" =20 -#: gnu/packages/messaging.scm:135 +#: gnu/packages/messaging.scm:136 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to ru= n an\n" "additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" -"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the Tw= itter\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" "microblogging network (plus all other Twitter API compatible services l= ike\n" "identi.ca and status.net)." msgstr "" =20 -#: gnu/packages/messaging.scm:168 +#: gnu/packages/messaging.scm:169 msgid "Graphical IRC Client" msgstr "" =20 -#: gnu/packages/messaging.scm:170 +#: gnu/packages/messaging.scm:171 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" -"shows the list of currently connected networks and their channels, the = current\n" -"conversation and the list of users. It uses colors to differentiate be= tween\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" "users and to highlight messages. It checks spelling using available\n" "dictionaries. HexChat can be extended with multiple addons." msgstr "" =20 -#: gnu/packages/messaging.scm:236 +#: gnu/packages/messaging.scm:237 msgid "Lightweight Internet Relay Chat server for small networks" msgstr "" =20 -#: gnu/packages/messaging.scm:238 +#: gnu/packages/messaging.scm:239 msgid "" "ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" "networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" "supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." msgstr "" =20 -#: gnu/packages/messaging.scm:309 +#: gnu/packages/messaging.scm:310 msgid "Graphical multi-protocol instant messaging client" msgstr "" =20 -#: gnu/packages/messaging.scm:311 +#: gnu/packages/messaging.scm:312 msgid "" "Pidgin is a modular instant messaging client that supports many popular= \n" "chat protocols." msgstr "" =20 -#: gnu/packages/messaging.scm:349 +#: gnu/packages/messaging.scm:350 msgid "Off-the-Record Messaging plugin for Pidgin" msgstr "" =20 -#: gnu/packages/messaging.scm:351 +#: gnu/packages/messaging.scm:352 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" -"messaging client. OTR (Off-the-Record) Messaging allows you to have pr= ivate\n" -"conversations over instant messaging by providing: (1) Encryption: No o= ne else\n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" "can read your instant messages. (2) Authentication: You are assured th= e\n" -"correspondent is who you think it is. (3) Deniability: The messages yo= u send\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" "do not have digital signatures that are checkable by a third party. An= yone\n" -"can forge messages after a conversation to make them look like they cam= e from\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" "you. However, during a conversation, your correspondent is assured the= \n" -"messages he sees are authentic and unmodified. (4) Perfect forward sec= recy:\n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" "If you lose control of your private keys, no previous conversation is\n= " "compromised." msgstr "" =20 -#: gnu/packages/messaging.scm:391 +#: gnu/packages/messaging.scm:392 msgid "IRC network bouncer" msgstr "" =20 -#: gnu/packages/messaging.scm:392 +#: gnu/packages/messaging.scm:393 msgid "" "ZNC is an IRC network bouncer or BNC. It can detach the\n" -"client from the actual IRC server, and also from selected channels. Mu= ltiple\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" "clients from different locations can connect to a single ZNC account\n" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" =20 -#: gnu/packages/messaging.scm:414 +#: gnu/packages/messaging.scm:415 msgid "Non-blocking Jabber/XMPP module" msgstr "" =20 -#: gnu/packages/messaging.scm:416 +#: gnu/packages/messaging.scm:417 msgid "" "The goal of this python library is to provide a way for Python\n" -"applications to use Jabber/XMPP networks in a non-blocking way. This l= ibrary\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" "was initially a fork of xmpppy, but is using non-blocking sockets." msgstr "" =20 -#: gnu/packages/messaging.scm:466 +#: gnu/packages/messaging.scm:474 msgid "Jabber (XMPP) client" msgstr "" =20 -#: gnu/packages/messaging.scm:467 +#: gnu/packages/messaging.scm:475 msgid "" "Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" -"Among its features are: a tabbed chat window and single window modes; s= upport\n" -"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up chat\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" "transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" "end-to-end encryption support; XML console." msgstr "" @@ -4757,7 +5664,8 @@ msgstr "" #: gnu/packages/mpd.scm:125 msgid "" "Music Player Daemon (MPD) is a flexible, powerful,\n" -"server-side application for playing music. Through plugins and librari= es it\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" "can play a variety of sound files while being controlled by its network= \n" "protocol." msgstr "" @@ -4816,11 +5724,11 @@ msgid "" "about 100 graphics formats." msgstr "" =20 -#: gnu/packages/nettle.scm:50 +#: gnu/packages/nettle.scm:51 msgid "C library for low-level cryptographic functionality" msgstr "" =20 -#: gnu/packages/nettle.scm:52 +#: gnu/packages/nettle.scm:53 msgid "" "GNU Nettle is a low-level cryptographic library. It is designed to\n" "fit in easily in almost any context. It can be easily included in\n" @@ -4835,7 +5743,8 @@ msgstr "" #: gnu/packages/networking.scm:54 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" -"specification, which provides IPv6 Internet connectivity to IPv6 enable= d hosts\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device.= " msgstr "" =20 @@ -4849,10 +5758,13 @@ msgid "" "data channels---files, pipes, devices, sockets, etc. It can create\n" "\"listening\" sockets, named pipes, and pseudo terminals.\n" "\n" -"socat can be used, for instance, as TCP port forwarder, as a shell inte= rface\n" -"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= serial\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" "line, to logically connect serial lines on different computers, or to\n= " -"establish a relatively secure environment (su and chroot) for running c= lient\n" +"establish a relatively secure environment (su and chroot) for running " +"client\n" "or server shell scripts with network connections." msgstr "" =20 @@ -4863,10 +5775,12 @@ msgstr "" #: gnu/packages/networking.scm:104 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" -"standard socket interfaces with features traditionally provided by spec= ialized\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" "messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" "asynchronous message queues, multiple messaging patterns, message\n" -"filtering (subscriptions), seamless access to multiple transport protoc= ols and\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" "more." msgstr "" =20 @@ -4904,105 +5818,107 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" =20 -#: gnu/packages/pdf.scm:102 +#: gnu/packages/pdf.scm:101 msgid "PDF rendering library" msgstr "" =20 -#: gnu/packages/pdf.scm:104 +#: gnu/packages/pdf.scm:103 msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." msgstr "" =20 -#: gnu/packages/pdf.scm:113 +#: gnu/packages/pdf.scm:112 msgid "Qt4 frontend for the Poppler PDF rendering library" msgstr "" =20 -#: gnu/packages/pdf.scm:146 +#: gnu/packages/pdf.scm:145 msgid "Python bindings for Poppler-Qt4" msgstr "" =20 -#: gnu/packages/pdf.scm:148 +#: gnu/packages/pdf.scm:147 msgid "" "This package provides Python bindings for the Qt4 interface of the\n" "Poppler PDF rendering library." msgstr "" =20 -#: gnu/packages/pdf.scm:195 +#: gnu/packages/pdf.scm:194 msgid "Viewer for PDF files based on the Motif toolkit" msgstr "" =20 -#: gnu/packages/pdf.scm:197 +#: gnu/packages/pdf.scm:196 msgid "Xpdf is a viewer for Portable Document Format (PDF) files." msgstr "" =20 -#: gnu/packages/pdf.scm:227 +#: gnu/packages/pdf.scm:226 msgid "Comic book support for zathura (libarchive backend)" msgstr "" =20 -#: gnu/packages/pdf.scm:228 +#: gnu/packages/pdf.scm:227 msgid "" "The zathura-cb plugin adds comic book support to zathura\n" "using libarchive." msgstr "" =20 -#: gnu/packages/pdf.scm:258 +#: gnu/packages/pdf.scm:257 msgid "PS support for zathura (libspectre backend)" msgstr "" =20 -#: gnu/packages/pdf.scm:259 +#: gnu/packages/pdf.scm:258 msgid "" "The zathura-ps plugin adds PS support to zathura\n" "using libspectre." msgstr "" =20 -#: gnu/packages/pdf.scm:290 +#: gnu/packages/pdf.scm:289 msgid "DjVu support for zathura (DjVuLibre backend)" msgstr "" =20 -#: gnu/packages/pdf.scm:291 +#: gnu/packages/pdf.scm:290 msgid "" "The zathura-djvu plugin adds DjVu support to zathura\n" "using the DjVuLibre library." msgstr "" =20 -#: gnu/packages/pdf.scm:323 +#: gnu/packages/pdf.scm:322 msgid "PDF support for zathura (poppler backend)" msgstr "" =20 -#: gnu/packages/pdf.scm:324 +#: gnu/packages/pdf.scm:323 msgid "" "The zathura-pdf-poppler plugin adds PDF support to zathura\n" "by using the poppler rendering engine." msgstr "" =20 -#: gnu/packages/pdf.scm:362 +#: gnu/packages/pdf.scm:361 msgid "Lightweight keyboard-driven PDF viewer" msgstr "" =20 -#: gnu/packages/pdf.scm:363 +#: gnu/packages/pdf.scm:362 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard= \n" "interaction." msgstr "" =20 -#: gnu/packages/pdf.scm:402 +#: gnu/packages/pdf.scm:401 msgid "Tools to work with the PDF file format" msgstr "" =20 -#: gnu/packages/pdf.scm:404 +#: gnu/packages/pdf.scm:403 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\= n" -"PDF file format. It can parse PDF files and load them into memory, and= makes\n" -"it easy to modify them and write the changes to disk. It is primarily = useful\n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" "for applications that wish to do lower level manipulation of PDF, such = as\n" "extracting content or merging files." msgstr "" =20 -#: gnu/packages/pdf.scm:465 +#: gnu/packages/pdf.scm:464 msgid "Lightweight PDF viewer and toolkit" msgstr "" =20 -#: gnu/packages/pdf.scm:467 +#: gnu/packages/pdf.scm:466 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n= " @@ -5014,11 +5930,11 @@ msgid "" "and examining the file structure (pdfshow)." msgstr "" =20 -#: gnu/packages/pdf.scm:507 +#: gnu/packages/pdf.scm:506 msgid "Command-line tools and library for transforming PDF files" msgstr "" =20 -#: gnu/packages/pdf.scm:509 +#: gnu/packages/pdf.scm:508 msgid "" "QPDF is a command-line program that does structural, content-preserving= \n" "transformations on PDF files. It could have been called something like= \n" @@ -5027,11 +5943,11 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" =20 -#: gnu/packages/pdf.scm:539 +#: gnu/packages/pdf.scm:538 msgid "Notetaking using a stylus" msgstr "" =20 -#: gnu/packages/pdf.scm:541 +#: gnu/packages/pdf.scm:540 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\= n" "using a stylus." @@ -5050,44 +5966,45 @@ msgid "" "feature." msgstr "" =20 -#: gnu/packages/perl.scm:100 +#: gnu/packages/perl.scm:110 msgid "Implementation of the Perl programming language" msgstr "" =20 -#: gnu/packages/perl.scm:102 +#: gnu/packages/perl.scm:112 msgid "" "Perl 5 is a highly capable, feature-rich programming language with over= \n" "24 years of development." msgstr "" =20 -#: gnu/packages/perl.scm:121 +#: gnu/packages/perl.scm:131 msgid "Module for merging hierarchies using the C3 algorithm" msgstr "" =20 -#: gnu/packages/perl.scm:122 +#: gnu/packages/perl.scm:132 msgid "" "This module implements the C3 algorithm, which aims to\n" "provide a sane method resolution order under multiple inheritance." msgstr "" =20 -#: gnu/packages/perl.scm:140 +#: gnu/packages/perl.scm:150 msgid "Compute differences between two files or lists" msgstr "" =20 -#: gnu/packages/perl.scm:141 +#: gnu/packages/perl.scm:151 msgid "" "This is a module for computing the difference between two\n" -"files, two strings, or any other two lists of things. It uses an intel= ligent\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" "algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" "program. It is guaranteed to find the *smallest possible* set of\n" "differences." msgstr "" =20 -#: gnu/packages/perl.scm:162 +#: gnu/packages/perl.scm:173 msgid "Use shorter versions of class names" msgstr "" =20 -#: gnu/packages/perl.scm:163 +#: gnu/packages/perl.scm:174 msgid "" "The alias module loads the class you specify and exports\n" "into your namespace a subroutine that returns the class name. You can\= n" @@ -5095,444 +6012,467 @@ msgid "" "implicitly." msgstr "" =20 -#: gnu/packages/perl.scm:185 +#: gnu/packages/perl.scm:196 msgid "Configuration files and command line parsing" msgstr "" =20 -#: gnu/packages/perl.scm:186 +#: gnu/packages/perl.scm:197 msgid "" "AppConfig is a bundle of Perl5 modules for reading\n" "configuration files and parsing command line arguments." msgstr "" =20 -#: gnu/packages/perl.scm:204 +#: gnu/packages/perl.scm:215 msgid "Perl API to zip files" msgstr "" =20 -#: gnu/packages/perl.scm:205 gnu/packages/zip.scm:168 +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 msgid "" "The Archive::Zip module allows a Perl program to create,\n" "manipulate, read, and write Zip archive files." msgstr "" =20 -#: gnu/packages/perl.scm:224 gnu/packages/perl.scm:3966 +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 msgid "Establish an ISA relationship with base classes at compile time" msgstr "" =20 -#: gnu/packages/perl.scm:225 +#: gnu/packages/perl.scm:236 msgid "" "Allows you to both load one or more modules, while setting\n" -"up inheritance from those modules at the same time. Unless you are usi= ng the\n" -"fields pragma, consider this module discouraged in favor of the lighter= -weight\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" "parent." msgstr "" =20 -#: gnu/packages/perl.scm:250 +#: gnu/packages/perl.scm:261 msgid "Execute code after a scope finished compilation" msgstr "" =20 -#: gnu/packages/perl.scm:251 +#: gnu/packages/perl.scm:262 msgid "" "This module allows you to execute code when perl finished\n" "compiling the surrounding scope." msgstr "" =20 -#: gnu/packages/perl.scm:269 +#: gnu/packages/perl.scm:280 msgid "Benchmarking with statistical confidence" msgstr "" =20 -#: gnu/packages/perl.scm:271 +#: gnu/packages/perl.scm:282 msgid "" "The Benchmark::Timer class allows you to time portions of code\n" "conveniently, as well as benchmark code by allowing timings of repeated= \n" "trials. It is perfect for when you need more precise information about= the\n" -"running time of portions of your code than the Benchmark module will gi= ve you,\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" "but don't want to go all out and profile your code." msgstr "" =20 -#: gnu/packages/perl.scm:296 +#: gnu/packages/perl.scm:307 msgid "Bit vector library" msgstr "" =20 -#: gnu/packages/perl.scm:297 +#: gnu/packages/perl.scm:308 msgid "" "Bit::Vector is an efficient C library which allows you to\n" -"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = boolean\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" "matrices, all of arbitrary sizes. The package also includes an\n" "object-oriented Perl module for accessing the C library from Perl, and\= n" "optionally features overloaded operators for maximum ease of use. The = C\n" "library can nevertheless be used stand-alone, without Perl." msgstr "" =20 -#: gnu/packages/perl.scm:319 +#: gnu/packages/perl.scm:330 msgid "Boolean support for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:320 +#: gnu/packages/perl.scm:331 msgid "" "This module provides basic Boolean support, by defining two\n" "special objects: true and false." msgstr "" =20 -#: gnu/packages/perl.scm:341 +#: gnu/packages/perl.scm:352 msgid "Cache interface for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:342 +#: gnu/packages/perl.scm:353 msgid "" "The Cache modules are designed to assist a developer in\n" -"persisting data for a specified period of time. Often these modules ar= e used\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" "in web applications to store data locally to save repeated and redundan= t\n" -"expensive calls to remote machines or databases. People have also been= known\n" -"to use Cache::Cache for its straightforward interface in sharing data b= etween\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" "runs of an application or invocations of a CGI-style script or simply a= s an\n" "easy to use abstraction of the filesystem or shared memory." msgstr "" =20 -#: gnu/packages/perl.scm:365 +#: gnu/packages/perl.scm:376 msgid "Shared memory interprocess cache via mmap" msgstr "" =20 -#: gnu/packages/perl.scm:366 +#: gnu/packages/perl.scm:377 msgid "" "A shared memory cache through an mmap'ed file. It's core is\n" "written in C for performance. It uses fcntl locking to ensure multiple= \n" -"processes can safely access the cache at the same time. It uses a basi= c LRU\n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" "algorithm to keep the most used entries in the cache." msgstr "" =20 -#: gnu/packages/perl.scm:387 +#: gnu/packages/perl.scm:398 msgid "Capture STDOUT and STDERR from Perl, XS or external programs" msgstr "" =20 -#: gnu/packages/perl.scm:389 +#: gnu/packages/perl.scm:400 msgid "" "Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" "sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" -"code or from an external program. Optionally, output can be teed so th= at it\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" "is captured while being passed through to the original file handles." msgstr "" =20 -#: gnu/packages/perl.scm:409 +#: gnu/packages/perl.scm:420 msgid "Executable comments for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:410 +#: gnu/packages/perl.scm:421 msgid "" "Carp::Assert is intended for a purpose like the ANSI C\n" "library assert.h." msgstr "" =20 -#: gnu/packages/perl.scm:432 +#: gnu/packages/perl.scm:443 msgid "Convenience wrappers around Carp::Assert" msgstr "" =20 -#: gnu/packages/perl.scm:433 +#: gnu/packages/perl.scm:444 msgid "" "Carp::Assert::More is a set of handy assertion functions for\n" "Perl." msgstr "" =20 -#: gnu/packages/perl.scm:453 +#: gnu/packages/perl.scm:464 msgid "Report errors from a \"clan\" of modules" msgstr "" =20 -#: gnu/packages/perl.scm:454 +#: gnu/packages/perl.scm:465 msgid "" "This module allows errors from a clan (or family) of modules\n" "to appear to originate from the caller of the clan. This is necessary = in\n" -"cases where the clan modules are not classes derived from each other, a= nd thus\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" "the Carp.pm module doesn't help." msgstr "" =20 -#: gnu/packages/perl.scm:478 +#: gnu/packages/perl.scm:489 msgid "Automated accessor generation" msgstr "" =20 -#: gnu/packages/perl.scm:479 +#: gnu/packages/perl.scm:490 msgid "" "This module automagically generates accessors/mutators for\n" "your class." msgstr "" =20 -#: gnu/packages/perl.scm:499 +#: gnu/packages/perl.scm:512 msgid "Faster, but less expandable, chained accessors" msgstr "" =20 -#: gnu/packages/perl.scm:500 +#: gnu/packages/perl.scm:513 msgid "" "A chained accessor is one that always returns the object\n" -"when called with parameters (to set), and the value of the field when c= alled\n" -"with no arguments. This module subclasses Class::Accessor in order to = provide\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" "the same mk_accessors interface." msgstr "" =20 -#: gnu/packages/perl.scm:526 +#: gnu/packages/perl.scm:539 msgid "Build groups of accessors" msgstr "" =20 -#: gnu/packages/perl.scm:527 +#: gnu/packages/perl.scm:540 msgid "" "This class lets you build groups of accessors that will call\n" "different getters and setters." msgstr "" =20 -#: gnu/packages/perl.scm:547 +#: gnu/packages/perl.scm:560 msgid "Pragma to use the C3 method resolution order algorithm" msgstr "" =20 -#: gnu/packages/perl.scm:548 +#: gnu/packages/perl.scm:561 msgid "" "This is pragma to change Perl 5's standard method resolution\n" "order from depth-first left-to-right (a.k.a - pre-order) to the more\n" "sophisticated C3 method resolution order." msgstr "" =20 -#: gnu/packages/perl.scm:572 +#: gnu/packages/perl.scm:585 msgid "Drop-in replacement for NEXT" msgstr "" =20 -#: gnu/packages/perl.scm:573 +#: gnu/packages/perl.scm:586 msgid "" "This module is intended as a drop-in replacement for NEXT,\n" "supporting the same interface, but using Class::C3 to do the hard work.= " msgstr "" =20 -#: gnu/packages/perl.scm:597 +#: gnu/packages/perl.scm:610 msgid "Load mix-ins or components to your C3-based class" msgstr "" =20 -#: gnu/packages/perl.scm:598 +#: gnu/packages/perl.scm:611 msgid "" "This module will inject base classes to your module using\n" "the Class::C3 method resolution order." msgstr "" =20 -#: gnu/packages/perl.scm:616 +#: gnu/packages/perl.scm:629 msgid "Inheritable, overridable class data" msgstr "" =20 -#: gnu/packages/perl.scm:617 +#: gnu/packages/perl.scm:630 msgid "" "Class::Data::Inheritable is for creating accessor/mutators\n" -"to class data. That is, if you want to store something about your clas= s as a\n" -"whole (instead of about a single object). This data is then inherited = by your\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" "subclasses and can be overridden." msgstr "" =20 -#: gnu/packages/perl.scm:638 +#: gnu/packages/perl.scm:651 msgid "Class for easy date and time manipulation" msgstr "" =20 -#: gnu/packages/perl.scm:639 +#: gnu/packages/perl.scm:652 msgid "" "This module provides a general-purpose date and datetime\n" "type for perl." msgstr "" =20 -#: gnu/packages/perl.scm:657 +#: gnu/packages/perl.scm:671 msgid "Utility methods for factory classes" msgstr "" =20 -#: gnu/packages/perl.scm:658 +#: gnu/packages/perl.scm:672 msgid "This module exports methods useful for factory classes." msgstr "" =20 -#: gnu/packages/perl.scm:675 +#: gnu/packages/perl.scm:689 msgid "Get information about a class and its structure" msgstr "" =20 -#: gnu/packages/perl.scm:676 +#: gnu/packages/perl.scm:690 msgid "" "Class::Inspector allows you to get information about a\n" "loaded class." msgstr "" =20 -#: gnu/packages/perl.scm:704 +#: gnu/packages/perl.scm:718 msgid "Working (require \"Class::Name\") and more" msgstr "" =20 -#: gnu/packages/perl.scm:705 +#: gnu/packages/perl.scm:719 msgid "" "\"require EXPR\" only accepts Class/Name.pm style module\n" "names, not Class::Name. For that, this module provides \"load_class\n" "'Class::Name'\"." msgstr "" =20 -#: gnu/packages/perl.scm:728 +#: gnu/packages/perl.scm:742 msgid "XS implementation of parts of Class::Load" msgstr "" =20 -#: gnu/packages/perl.scm:729 +#: gnu/packages/perl.scm:743 msgid "" "This module provides an XS implementation for portions of\n" "Class::Load." msgstr "" =20 -#: gnu/packages/perl.scm:748 +#: gnu/packages/perl.scm:762 msgid "Create generic methods for OO Perl" msgstr "" =20 -#: gnu/packages/perl.scm:749 +#: gnu/packages/perl.scm:763 msgid "" "This module solves the problem of having to continually\n" "write accessor methods for your objects that perform standard tasks." msgstr "" =20 -#: gnu/packages/perl.scm:770 +#: gnu/packages/perl.scm:784 msgid "Moose-like method modifiers" msgstr "" =20 -#: gnu/packages/perl.scm:771 +#: gnu/packages/perl.scm:785 msgid "" "Class::Method::Modifiers provides three modifiers: 'before',\n" -"'around', and 'after'. 'before' and 'after' are run just before and af= ter the\n" -"method they modify, but can not really affect that original method. 'a= round'\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" "is run in place of the original method, with a hook to easily call that= \n" "original method." msgstr "" =20 -#: gnu/packages/perl.scm:792 +#: gnu/packages/perl.scm:806 msgid "Implementation of a singleton class for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:793 +#: gnu/packages/perl.scm:807 msgid "" "This module implements a Singleton class from which other\n" "classes can be derived. By itself, the Class::Singleton module does ve= ry\n" "little other than manage the instantiation of a single object." msgstr "" =20 -#: gnu/packages/perl.scm:812 +#: gnu/packages/perl.scm:826 msgid "Minimalist class construction" msgstr "" =20 -#: gnu/packages/perl.scm:813 +#: gnu/packages/perl.scm:827 msgid "" "This module offers a minimalist class construction kit. It\n" "uses no non-core modules for any recent Perl." msgstr "" =20 -#: gnu/packages/perl.scm:833 +#: gnu/packages/perl.scm:847 msgid "Unload a class" msgstr "" =20 -#: gnu/packages/perl.scm:834 +#: gnu/packages/perl.scm:848 msgid "" "Class:Unload unloads a given class by clearing out its\n" "symbol table and removing it from %INC." msgstr "" =20 -#: gnu/packages/perl.scm:852 +#: gnu/packages/perl.scm:866 msgid "Generate fast XS accessors without runtime compilation" msgstr "" =20 -#: gnu/packages/perl.scm:853 +#: gnu/packages/perl.scm:867 msgid "" "Class::XSAccessor implements fast read, write, and\n" -"read/write accessors in XS. Additionally, it can provide predicates su= ch as\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" "\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" -"object. It only works with objects that are implemented as ordinary ha= shes.\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" "Class::XSAccessor::Array implements the same interface for objects that= use\n" "arrays for their internal representation." msgstr "" =20 -#: gnu/packages/perl.scm:873 +#: gnu/packages/perl.scm:887 msgid "Recursively copy Perl datatypes" msgstr "" =20 -#: gnu/packages/perl.scm:875 +#: gnu/packages/perl.scm:889 msgid "" "This module provides a clone() method which makes recursive copies of\n= " -"nested hash, array, scalar and reference types, including tied variable= s and\n" +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" "objects." msgstr "" =20 -#: gnu/packages/perl.scm:896 +#: gnu/packages/perl.scm:910 msgid "Sane defaults for Perl programs" msgstr "" =20 -#: gnu/packages/perl.scm:897 +#: gnu/packages/perl.scm:911 msgid "" "This module implements some sane defaults for Perl programs,\n" "as defined by two typical specimens of Perl coders." msgstr "" =20 -#: gnu/packages/perl.scm:915 +#: gnu/packages/perl.scm:931 msgid "Load configuration from different file formats" msgstr "" =20 -#: gnu/packages/perl.scm:916 +#: gnu/packages/perl.scm:932 msgid "" "Config::Any provides a facility for Perl applications and\n" -"libraries to load configuration data from multiple different file forma= ts. It\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" "supports XML, YAML, JSON, Apache-style configuration, and Perl code." msgstr "" =20 -#: gnu/packages/perl.scm:937 +#: gnu/packages/perl.scm:953 msgid "Module to implement some AutoConf macros in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:938 +#: gnu/packages/perl.scm:954 msgid "" "Config::AutoConf is intended to provide the same\n" "opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." msgstr "" =20 -#: gnu/packages/perl.scm:956 +#: gnu/packages/perl.scm:972 msgid "Generic Config Module" msgstr "" =20 -#: gnu/packages/perl.scm:957 +#: gnu/packages/perl.scm:973 msgid "" "This module opens a config file and parses its contents for\n" -"you. The format of config files supported by Config::General is inspir= ed by\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" "the well known Apache config format and is 100% compatible with Apache\= n" "configs, but you can also just use simple name/value pairs in your conf= ig\n" -"files. In addition to the capabilities of an Apache config file it sup= ports\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" "some enhancements such as here-documents, C-style comments, and multili= ne\n" "options." msgstr "" =20 -#: gnu/packages/perl.scm:983 +#: gnu/packages/perl.scm:999 msgid "Preserve context during subroutine call" msgstr "" =20 -#: gnu/packages/perl.scm:984 +#: gnu/packages/perl.scm:1000 msgid "" "This module runs code after a subroutine call, preserving\n" "the context the subroutine would have seen if it were the last statemen= t in\n" "the caller." msgstr "" =20 -#: gnu/packages/perl.scm:1005 +#: gnu/packages/perl.scm:1021 msgid "Verify requirements in a CPAN::Meta object" msgstr "" =20 -#: gnu/packages/perl.scm:1006 +#: gnu/packages/perl.scm:1022 msgid "" "This module verifies if requirements described in a\n" "CPAN::Meta object are present." msgstr "" =20 -#: gnu/packages/perl.scm:1026 +#: gnu/packages/perl.scm:1042 msgid "JSON::XS for Cpanel" msgstr "" =20 -#: gnu/packages/perl.scm:1027 gnu/packages/perl.scm:2769 +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 msgid "" "This module converts Perl data structures to JSON and vice\n" "versa." msgstr "" =20 -#: gnu/packages/perl.scm:1045 +#: gnu/packages/perl.scm:1061 msgid "Random password generator" msgstr "" =20 -#: gnu/packages/perl.scm:1046 +#: gnu/packages/perl.scm:1062 msgid "" "Crypt::RandPasswd provides three functions that can be used\n" -"to generate random passwords, constructed from words, letters, or chara= cters.\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" "This code is a Perl implementation of the Automated Password Generator\= n" "standard, like the program described in \"A Random Word Generator For\n= " "Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" @@ -5540,403 +6480,422 @@ msgid "" "Password Generator\"." msgstr "" =20 -#: gnu/packages/perl.scm:1089 +#: gnu/packages/perl.scm:1105 msgid "Library for genomic analysis" msgstr "" =20 -#: gnu/packages/perl.scm:1090 +#: gnu/packages/perl.scm:1106 msgid "" "Chaolin Zhang's Perl Library (czplib) contains assorted\n" "functions and data structures for processing and analysing genomic and\= n" "bioinformatics data." msgstr "" =20 -#: gnu/packages/perl.scm:1109 +#: gnu/packages/perl.scm:1125 msgid "Pretty printing of data structures" msgstr "" =20 -#: gnu/packages/perl.scm:1110 +#: gnu/packages/perl.scm:1126 msgid "" "This module provide functions that takes a list of values as\n" -"their argument and produces a string as its result. The string contain= s Perl\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" "code that, when \"eval\"ed, produces a deep copy of the original argume= nts." msgstr "" =20 -#: gnu/packages/perl.scm:1129 +#: gnu/packages/perl.scm:1145 msgid "Concise data dumper" msgstr "" =20 -#: gnu/packages/perl.scm:1130 +#: gnu/packages/perl.scm:1146 msgid "" "Data::Dumper::Concise provides a dumper with Less\n" "indentation and newlines plus sub deparsing." msgstr "" =20 -#: gnu/packages/perl.scm:1152 +#: gnu/packages/perl.scm:1168 msgid "Parse and validate simple name/value option pairs" msgstr "" =20 -#: gnu/packages/perl.scm:1154 +#: gnu/packages/perl.scm:1170 msgid "Data::OptList provides a simple syntax for name/value option pair= s." msgstr "" =20 -#: gnu/packages/perl.scm:1175 +#: gnu/packages/perl.scm:1192 msgid "Help when paging through sets of results" msgstr "" =20 -#: gnu/packages/perl.scm:1176 +#: gnu/packages/perl.scm:1193 msgid "" "When searching through large amounts of data, it is often\n" -"the case that a result set is returned that is larger than we want to d= isplay\n" -"on one page. This results in wanting to page through various pages of = data.\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" "The maths behind this is unfortunately fiddly, hence this module." msgstr "" =20 -#: gnu/packages/perl.scm:1198 +#: gnu/packages/perl.scm:1215 msgid "Structured tags datastructures" msgstr "" =20 -#: gnu/packages/perl.scm:1200 +#: gnu/packages/perl.scm:1217 msgid "" "This module is for manipulating data as hierarchical tag/value\n" -"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s can\n" -"be represented as nested arrays, which have the advantage of being nati= ve to\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" "Perl." msgstr "" =20 -#: gnu/packages/perl.scm:1227 +#: gnu/packages/perl.scm:1244 msgid "N at a time iteration API" msgstr "" =20 -#: gnu/packages/perl.scm:1228 +#: gnu/packages/perl.scm:1245 msgid "" "This module tries to find middle ground between one at a\n" -"time and all at once processing of data sets. The purpose of this modu= le is\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" "to avoid the overhead of implementing an iterative api when this isn't\= n" "necessary, without breaking forward compatibility in case that becomes\= n" "necessary later on." msgstr "" =20 -#: gnu/packages/perl.scm:1253 +#: gnu/packages/perl.scm:1270 msgid "Dynamic generation of nested combinations of variants" msgstr "" =20 -#: gnu/packages/perl.scm:1254 +#: gnu/packages/perl.scm:1271 msgid "" "Data::Tumbler - Dynamic generation of nested combinations of\n" "variants." msgstr "" =20 -#: gnu/packages/perl.scm:1280 +#: gnu/packages/perl.scm:1297 msgid "Visitor style traversal of Perl data structures" msgstr "" =20 -#: gnu/packages/perl.scm:1281 +#: gnu/packages/perl.scm:1298 msgid "" "This module is a simple visitor implementation for Perl\n" "values. It has a main dispatcher method, visit, which takes a single p= erl\n" "value and then calls the methods appropriate for that value. It can\n" -"recursively map (cloning as necessary) or just traverse most structures= , with\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" "support for per-object behavior, circular structures, visiting tied\n" "structures, and all ref types (hashes, arrays, scalars, code, globs)." msgstr "" =20 -#: gnu/packages/perl.scm:1306 +#: gnu/packages/perl.scm:1323 msgid "Gregorian calendar date calculations" msgstr "" =20 -#: gnu/packages/perl.scm:1307 +#: gnu/packages/perl.scm:1324 msgid "" "This package consists of a Perl module for date calculations\n" -"based on the Gregorian calendar, thereby complying with all relevant no= rms and\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" "standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" "applicable)." msgstr "" =20 -#: gnu/packages/perl.scm:1331 +#: gnu/packages/perl.scm:1348 msgid "XS wrapper for Date::Calc" msgstr "" =20 -#: gnu/packages/perl.scm:1332 +#: gnu/packages/perl.scm:1349 msgid "" "Date::Calc::XS is an XS wrapper and C library plug-in for\n" "Date::Calc." msgstr "" =20 -#: gnu/packages/perl.scm:1355 +#: gnu/packages/perl.scm:1373 msgid "Date manipulation routines" msgstr "" =20 -#: gnu/packages/perl.scm:1356 +#: gnu/packages/perl.scm:1374 msgid "" "Date::Manip is a series of modules for common date/time\n" -"operations, such as comparing two times, determining a date a given amo= unt of\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" "time from another, or parsing international times." msgstr "" =20 -#: gnu/packages/perl.scm:1383 +#: gnu/packages/perl.scm:1402 msgid "Date and time object for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:1384 +#: gnu/packages/perl.scm:1403 msgid "" "DateTime is a class for the representation of date/time\n" "combinations. It represents the Gregorian calendar, extended backwards= in\n" "time before its creation (in 1582)." msgstr "" =20 -#: gnu/packages/perl.scm:1407 +#: gnu/packages/perl.scm:1428 msgid "DateTime set objects" msgstr "" =20 -#: gnu/packages/perl.scm:1408 +#: gnu/packages/perl.scm:1429 msgid "" "The DateTime::Set module provides a date/time sets\n" "implementation. It allows, for example, the generation of groups of da= tes,\n" -"like \"every wednesday\", and then find all the dates matching that pat= tern,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" "within a time range." msgstr "" =20 -#: gnu/packages/perl.scm:1431 +#: gnu/packages/perl.scm:1452 msgid "DateTime rfc2445 recurrences" msgstr "" =20 -#: gnu/packages/perl.scm:1432 +#: gnu/packages/perl.scm:1453 msgid "" "This module provides convenience methods that let you easily\n" "create DateTime::Set objects for RFC 2445 style recurrences." msgstr "" =20 -#: gnu/packages/perl.scm:1453 +#: gnu/packages/perl.scm:1474 msgid "DateTime::Set extension for basic recurrences" msgstr "" =20 -#: gnu/packages/perl.scm:1454 +#: gnu/packages/perl.scm:1475 msgid "" "This module provides convenience methods that let you easily\n" -"create DateTime::Set objects for various recurrences, such as \"once a = month\"\n" -"or \"every day\". You can also create more complicated recurrences, su= ch as\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" "\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." msgstr "" =20 -#: gnu/packages/perl.scm:1479 +#: gnu/packages/perl.scm:1500 msgid "Create DateTime parser classes and objects" msgstr "" =20 -#: gnu/packages/perl.scm:1480 +#: gnu/packages/perl.scm:1501 msgid "" "DateTime::Format::Builder creates DateTime parsers. Many\n" -"string formats of dates and times are simple and just require a basic r= egular\n" -"expression to extract the relevant information. Builder provides a sim= ple way\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" "to do this without writing reams of structural code." msgstr "" =20 -#: gnu/packages/perl.scm:1506 +#: gnu/packages/perl.scm:1528 msgid "Parse data/time strings" msgstr "" =20 -#: gnu/packages/perl.scm:1507 +#: gnu/packages/perl.scm:1529 msgid "" "DateTime::Format::Flexible attempts to take any string you\n" "give it and parse it into a DateTime object." msgstr "" =20 -#: gnu/packages/perl.scm:1531 +#: gnu/packages/perl.scm:1555 msgid "Parse and format iCal datetime and duration strings" msgstr "" =20 -#: gnu/packages/perl.scm:1532 +#: gnu/packages/perl.scm:1556 msgid "" "This module understands the ICal date/time and duration\n" "formats, as defined in RFC 2445. It can be used to parse these formats= in\n" "order to create the appropriate objects." msgstr "" =20 -#: gnu/packages/perl.scm:1563 +#: gnu/packages/perl.scm:1588 msgid "Machine-readable date/time with natural parsing" msgstr "" =20 -#: gnu/packages/perl.scm:1564 +#: gnu/packages/perl.scm:1589 msgid "" "DateTime::Format::Natural takes a string with a human\n" "readable date/time and creates a machine readable one by applying natur= al\n" "parsing logic." msgstr "" =20 -#: gnu/packages/perl.scm:1588 +#: gnu/packages/perl.scm:1613 msgid "Parse and format strp and strf time patterns" msgstr "" =20 -#: gnu/packages/perl.scm:1589 +#: gnu/packages/perl.scm:1614 msgid "" "This module implements most of `strptime(3)`, the POSIX\n" "function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " -"`strftime` takes a `DateTime` and a pattern and returns a string, `strp= time`\n" +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" "takes a string and a pattern and returns the `DateTime` object associat= ed." msgstr "" =20 -#: gnu/packages/perl.scm:1612 +#: gnu/packages/perl.scm:1639 msgid "Localization support for DateTime.pm" msgstr "" =20 -#: gnu/packages/perl.scm:1613 +#: gnu/packages/perl.scm:1640 msgid "" "The DateTime::Locale modules provide localization data for\n" "the DateTime.pm class." msgstr "" =20 -#: gnu/packages/perl.scm:1640 +#: gnu/packages/perl.scm:1667 msgid "Time zone object for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:1641 +#: gnu/packages/perl.scm:1668 msgid "" "This class is the base class for all time zone objects. A\n" "time zone is represented internally as a set of observances, each of wh= ich\n" -"describes the offset from GMT for a given time period. Note that witho= ut the\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" "DateTime module, this module does not do much. It's primary interface = is\n" "through a DateTime object, and most users will not need to directly use= \n" "DateTime::TimeZone methods." msgstr "" =20 -#: gnu/packages/perl.scm:1671 +#: gnu/packages/perl.scm:1698 msgid "Parse date/time strings" msgstr "" =20 -#: gnu/packages/perl.scm:1672 +#: gnu/packages/perl.scm:1699 msgid "" "DateTimeX::Easy uses a variety of DateTime::Format packages\n" "to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" "edges (mainly concerning timezone detection and selection)." msgstr "" =20 -#: gnu/packages/perl.scm:1693 +#: gnu/packages/perl.scm:1720 msgid "Meatier version of caller" msgstr "" =20 -#: gnu/packages/perl.scm:1694 +#: gnu/packages/perl.scm:1721 msgid "Devel::Caller provides meatier version of caller." msgstr "" =20 -#: gnu/packages/perl.scm:1711 +#: gnu/packages/perl.scm:1739 msgid "Check that a command is available" msgstr "" =20 -#: gnu/packages/perl.scm:1712 +#: gnu/packages/perl.scm:1740 msgid "" "Devel::CheckBin is a perl module that checks whether a\n" "particular command is available." msgstr "" =20 -#: gnu/packages/perl.scm:1732 +#: gnu/packages/perl.scm:1760 msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" msgstr "" =20 -#: gnu/packages/perl.scm:1733 +#: gnu/packages/perl.scm:1761 msgid "" "Devel::GlobalDestruction provides a function returning the\n" "equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." msgstr "" =20 -#: gnu/packages/perl.scm:1753 +#: gnu/packages/perl.scm:1781 msgid "Alias lexical variables" msgstr "" =20 -#: gnu/packages/perl.scm:1754 +#: gnu/packages/perl.scm:1782 msgid "" "Devel::LexAlias provides the ability to alias a lexical\n" "variable in a subroutines scope to one of your choosing." msgstr "" =20 -#: gnu/packages/perl.scm:1776 +#: gnu/packages/perl.scm:1804 msgid "Introspect overloaded operators" msgstr "" =20 -#: gnu/packages/perl.scm:1777 +#: gnu/packages/perl.scm:1805 msgid "" "Devel::OverloadInfo returns information about overloaded\n" "operators for a given class (or object), including where in the inherit= ance\n" "hierarchy the overloads are declared and where the code implementing it= is." msgstr "" =20 -#: gnu/packages/perl.scm:1804 +#: gnu/packages/perl.scm:1832 msgid "Partial dumping of data structures" msgstr "" =20 -#: gnu/packages/perl.scm:1805 +#: gnu/packages/perl.scm:1833 msgid "" "This module is a data dumper optimized for logging of\n" "arbitrary parameters." msgstr "" =20 -#: gnu/packages/perl.scm:1823 +#: gnu/packages/perl.scm:1851 msgid "Object representing a stack trace" msgstr "" =20 -#: gnu/packages/perl.scm:1824 +#: gnu/packages/perl.scm:1852 msgid "" "The Devel::StackTrace module contains two classes,\n" -"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate the\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" "information that can be retrieved via Perl's caller() function, as well= as\n" "providing a simple interface to this data." msgstr "" =20 -#: gnu/packages/perl.scm:1846 +#: gnu/packages/perl.scm:1874 msgid "Displays stack trace in HTML" msgstr "" =20 -#: gnu/packages/perl.scm:1847 +#: gnu/packages/perl.scm:1875 msgid "" "Devel::StackTrace::AsHTML adds as_html method to\n" -"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h code\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" "snippet context and function parameters. If you call it on an instance= of\n" -"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" "each stack frame." msgstr "" =20 -#: gnu/packages/perl.scm:1868 +#: gnu/packages/perl.scm:1896 msgid "Dump symbol names or the symbol table" msgstr "" =20 -#: gnu/packages/perl.scm:1869 +#: gnu/packages/perl.scm:1897 msgid "Devel::Symdump provides access to the perl symbol table." msgstr "" =20 -#: gnu/packages/perl.scm:1886 +#: gnu/packages/perl.scm:1914 msgid "Keyed-Hashing for Message Authentication" msgstr "" =20 -#: gnu/packages/perl.scm:1887 +#: gnu/packages/perl.scm:1915 msgid "" "The Digest::HMAC module follows the common Digest::\n" "interface for the RFC 2104 HMAC mechanism." msgstr "" =20 -#: gnu/packages/perl.scm:1903 +#: gnu/packages/perl.scm:1931 msgid "Perl implementation of the SHA-1 message digest algorithm" msgstr "" =20 -#: gnu/packages/perl.scm:1905 +#: gnu/packages/perl.scm:1933 msgid "" "This package provides 'Digest::SHA1', an implementation of the NIST\n" "SHA-1 message digest algorithm for use by Perl programs." msgstr "" =20 -#: gnu/packages/perl.scm:1927 +#: gnu/packages/perl.scm:1955 msgid "Declare version conflicts for your dist" msgstr "" =20 -#: gnu/packages/perl.scm:1928 +#: gnu/packages/perl.scm:1956 msgid "" "This module allows you to specify conflicting versions of\n" "modules separately and deal with them after the module is done installi= ng." msgstr "" =20 -#: gnu/packages/perl.scm:1945 +#: gnu/packages/perl.scm:1974 msgid "OO-ish Error/Exception handling for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:1946 +#: gnu/packages/perl.scm:1975 msgid "" "The Error package provides two interfaces. Firstly Error\n" "provides a procedural interface to exception handling. Secondly Error = is a\n" @@ -5944,231 +6903,255 @@ msgid "" "catch, or can simply be recorded." msgstr "" =20 -#: gnu/packages/perl.scm:1971 +#: gnu/packages/perl.scm:2000 msgid "Safely and cleanly create closures via string eval" msgstr "" =20 -#: gnu/packages/perl.scm:1972 +#: gnu/packages/perl.scm:2001 msgid "" "String eval is often used for dynamic code generation. For\n" -"instance, Moose uses it heavily, to generate inlined versions of access= ors and\n" -"constructors, which speeds code up at runtime by a significant amount. = String\n" -"eval is not without its issues however - it's difficult to control the = scope\n" -"it's used in (which determines which variables are in scope inside the = eval),\n" -"and it's easy to miss compilation errors, since eval catches them and s= ticks\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" "them in $@@ instead. This module attempts to solve these problems. It= \n" "provides an eval_closure function, which evals a string in a clean\n" "environment, other than a fixed list of specified variables. Compilati= on\n" "errors are rethrown automatically." msgstr "" =20 -#: gnu/packages/perl.scm:2001 +#: gnu/packages/perl.scm:2030 msgid "Allows you to declare real exception classes in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2002 +#: gnu/packages/perl.scm:2031 msgid "" "Exception::Class allows you to declare exception hierarchies\n" "in your modules in a \"Java-esque\" manner." msgstr "" =20 -#: gnu/packages/perl.scm:2018 +#: gnu/packages/perl.scm:2047 msgid "Lightweight exporting of functions and variables" msgstr "" =20 -#: gnu/packages/perl.scm:2020 +#: gnu/packages/perl.scm:2049 msgid "" "Exporter::Lite is an alternative to Exporter, intended to provide a\n" "lightweight subset of the most commonly-used functionality. It support= s\n" "import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." msgstr "" =20 -#: gnu/packages/perl.scm:2041 +#: gnu/packages/perl.scm:2070 msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" msgstr "" =20 -#: gnu/packages/perl.scm:2042 +#: gnu/packages/perl.scm:2071 msgid "" "Exporter::Tiny supports many of Sub::Exporter's\n" -"external-facing features including renaming imported functions with the= `-as`,\n" -"`-prefix` and `-suffix` options; explicit destinations with the `into` = option;\n" -"and alternative installers with the `installler` option. But it's writ= ten in\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" "only about 40% as many lines of code and with zero non-core dependencie= s." msgstr "" =20 -#: gnu/packages/perl.scm:2065 +#: gnu/packages/perl.scm:2094 msgid "Build.PL install path logic made easy" msgstr "" =20 -#: gnu/packages/perl.scm:2066 +#: gnu/packages/perl.scm:2095 msgid "" "This module tries to make install path resolution as easy as\n" "possible." msgstr "" =20 -#: gnu/packages/perl.scm:2084 +#: gnu/packages/perl.scm:2113 msgid "Wrapper for perl's configuration" msgstr "" =20 -#: gnu/packages/perl.scm:2085 +#: gnu/packages/perl.scm:2114 msgid "" "ExtUtils::Config is an abstraction around the %Config hash.\n" -"By itself it is not a particularly interesting module by any measure, h= owever\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" "it ties together a family of modern toolchain modules." msgstr "" =20 -#: gnu/packages/perl.scm:2104 +#: gnu/packages/perl.scm:2133 msgid "Various portability utilities for module builders" msgstr "" =20 -#: gnu/packages/perl.scm:2105 +#: gnu/packages/perl.scm:2134 msgid "" "This module provides various portable helper functions for\n" "module building modules." msgstr "" =20 -#: gnu/packages/perl.scm:2133 +#: gnu/packages/perl.scm:2164 msgid "Watch for changes to files" msgstr "" =20 -#: gnu/packages/perl.scm:2134 +#: gnu/packages/perl.scm:2165 msgid "" "This module provides a class to monitor a directory for\n" "changes made to any file." msgstr "" =20 -#: gnu/packages/perl.scm:2152 +#: gnu/packages/perl.scm:2183 msgid "Recursively copy files and directories" msgstr "" =20 -#: gnu/packages/perl.scm:2153 +#: gnu/packages/perl.scm:2184 msgid "" "This module has 3 functions: one to copy files only, one to\n" "copy directories only, and one to do either depending on the argument's= \n" "type." msgstr "" =20 -#: gnu/packages/perl.scm:2175 +#: gnu/packages/perl.scm:2206 msgid "Alternative interface to File::Find" msgstr "" =20 -#: gnu/packages/perl.scm:2176 +#: gnu/packages/perl.scm:2207 msgid "" "File::Find::Rule is a friendlier interface to File::Find.\n" "It allows you to build rules which specify the desired files and\n" "directories." msgstr "" =20 -#: gnu/packages/perl.scm:2199 +#: gnu/packages/perl.scm:2230 msgid "Common rules for searching for Perl things" msgstr "" =20 -#: gnu/packages/perl.scm:2200 +#: gnu/packages/perl.scm:2231 msgid "" "File::Find::Rule::Perl provides methods for finding various\n" -"types Perl-related files, or replicating search queries run on a distri= bution\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" "in various parts of the CPAN ecosystem." msgstr "" =20 -#: gnu/packages/perl.scm:2223 +#: gnu/packages/perl.scm:2254 msgid "Find your home and other directories on any platform" msgstr "" =20 -#: gnu/packages/perl.scm:2224 +#: gnu/packages/perl.scm:2255 msgid "" "File::HomeDir is a module for locating the directories that\n" -"are \"owned\" by a user (typically your user) and to solve the various = issues\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" "that arise trying to find them consistently across a wide variety of\n" "platforms." msgstr "" =20 -#: gnu/packages/perl.scm:2251 +#: gnu/packages/perl.scm:2282 msgid "" "Perl extension for crawling directory trees and compiling\n" "lists of files" msgstr "" =20 -#: gnu/packages/perl.scm:2254 +#: gnu/packages/perl.scm:2285 msgid "" "The File::List module crawls the directory tree starting at the\n" -"provided base directory and can return files (and/or directories if des= ired)\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" "matching a regular expression." msgstr "" =20 -#: gnu/packages/perl.scm:2273 +#: gnu/packages/perl.scm:2304 msgid "Remove files and directories in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2274 +#: gnu/packages/perl.scm:2305 msgid "" "File::Remove::remove removes files and directories. It acts\n" -"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st of\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" "files, it will not remove directories; this module remedies that. It a= lso\n" "accepts wildcards, * and ?, as arguments for file names." msgstr "" =20 -#: gnu/packages/perl.scm:2298 +#: gnu/packages/perl.scm:2329 msgid "Locate per-dist and per-module shared files" msgstr "" =20 -#: gnu/packages/perl.scm:2299 +#: gnu/packages/perl.scm:2330 msgid "" "The intent of File::ShareDir is to provide a companion to\n" "Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" "module to have access to a large amount of read-only data that is store= d on\n" "the file-system at run-time. Once the files have been installed to the= \n" -"correct directory, you can use File::ShareDir to find your files again = after\n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" "the installation." msgstr "" =20 -#: gnu/packages/perl.scm:2321 +#: gnu/packages/perl.scm:2352 msgid "Install shared files" msgstr "" =20 -#: gnu/packages/perl.scm:2322 +#: gnu/packages/perl.scm:2353 msgid "" "File::ShareDir::Install allows you to install read-only data\n" -"files from a distribution. It is a companion module to File::ShareDir,= which\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" "allows you to locate these files after installation." msgstr "" =20 -#: gnu/packages/perl.scm:2341 +#: gnu/packages/perl.scm:2372 msgid "Reading/Writing/Modifying of complete files" msgstr "" =20 -#: gnu/packages/perl.scm:2342 +#: gnu/packages/perl.scm:2373 msgid "" "File::Slurp provides subroutines to read or write entire\n" "files with a simple call. It also has a subroutine for reading the lis= t of\n" "file names in a directory." msgstr "" =20 -#: gnu/packages/perl.scm:2363 +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 msgid "Return name and handle of a temporary file safely" msgstr "" =20 -#: gnu/packages/perl.scm:2364 +#: gnu/packages/perl.scm:2413 msgid "" "File::Temp can be used to create and open temporary files in\n" "a safe way." msgstr "" =20 -#: gnu/packages/perl.scm:2381 +#: gnu/packages/perl.scm:2430 msgid "Portable implementation of the `which' utility" msgstr "" =20 -#: gnu/packages/perl.scm:2383 +#: gnu/packages/perl.scm:2432 msgid "" "File::Which was created to be able to get the paths to executable\n" -"programs on systems under which the `which' program wasn't implemented = in the\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" "shell." msgstr "" =20 -#: gnu/packages/perl.scm:2410 +#: gnu/packages/perl.scm:2459 msgid "Getopt::Long, but simpler and more powerful" msgstr "" =20 -#: gnu/packages/perl.scm:2411 +#: gnu/packages/perl.scm:2460 msgid "" "Getopt::Long::Descriptive is yet another Getopt library.\n" "It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" @@ -6176,240 +7159,285 @@ msgid "" "usage (help) messages, data validation, and a few other useful features= ." msgstr "" =20 -#: gnu/packages/perl.scm:2429 +#: gnu/packages/perl.scm:2478 msgid "Table-driven argument parsing for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2431 +#: gnu/packages/perl.scm:2480 msgid "" "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " "vaguely inspired by John Ousterhout's Tk_ParseArgv." msgstr "" =20 -#: gnu/packages/perl.scm:2451 +#: gnu/packages/perl.scm:2500 msgid "Merge arbitrarily deep hashes into a single hash" msgstr "" =20 -#: gnu/packages/perl.scm:2452 +#: gnu/packages/perl.scm:2501 msgid "" "Hash::Merge merges two arbitrarily deep hashes into a single\n" -"hash. That is, at any level, it will add non-conflicting key-value pai= rs from\n" -"one hash to the other, and follows a set of specific rules when there a= re key\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" "value conflicts. The hash is followed recursively, so that deeply nest= ed\n" "hashes that are at the same level will be merged when the parent hashes= are\n" "merged." msgstr "" =20 -#: gnu/packages/perl.scm:2474 +#: gnu/packages/perl.scm:2523 msgid "Store multiple values per key" msgstr "" =20 -#: gnu/packages/perl.scm:2475 +#: gnu/packages/perl.scm:2524 msgid "" "Hash::MultiValue is an object (and a plain hash reference)\n" "that may contain multiple values per key, inspired by MultiDict of WebO= b." msgstr "" =20 -#: gnu/packages/perl.scm:2495 +#: gnu/packages/perl.scm:2544 msgid "Import packages into other packages" msgstr "" =20 -#: gnu/packages/perl.scm:2496 +#: gnu/packages/perl.scm:2545 msgid "" "Writing exporters is a pain. Some use Exporter, some use\n" "Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" -"some things are pragmas. Exporting on someone else's behalf is harder.= The\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" "exporters don't provide a consistent API for this, and pragmas need to = have\n" "their import method called directly, since they effect the current unit= of\n" "compilation. Import::Into provides global methods to make this painles= s." msgstr "" =20 -#: gnu/packages/perl.scm:2518 +#: gnu/packages/perl.scm:2567 msgid "Use modules in inc/ if newer than installed" msgstr "" =20 -#: gnu/packages/perl.scm:2519 +#: gnu/packages/perl.scm:2568 msgid "" "The inc::latest module helps bootstrap configure-time\n" -"dependencies for CPAN distributions. These dependencies get bundled in= to the\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" "inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." msgstr "" =20 -#: gnu/packages/perl.scm:2538 +#: gnu/packages/perl.scm:2587 msgid "Utilities for interactive I/O" msgstr "" =20 -#: gnu/packages/perl.scm:2539 +#: gnu/packages/perl.scm:2588 msgid "" "This module provides three utility subroutines that make it\n" -"easier to develop interactive applications: is_interactive(), interacti= ve(),\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" "and busy()." msgstr "" =20 -#: gnu/packages/perl.scm:2558 +#: gnu/packages/perl.scm:2607 msgid "Emulate file interface for in-core strings" msgstr "" =20 -#: gnu/packages/perl.scm:2559 +#: gnu/packages/perl.scm:2608 msgid "" "IO::String is an IO::File (and IO::Handle) compatible class\n" "that reads or writes data from in-core strings." msgstr "" =20 -#: gnu/packages/perl.scm:2577 +#: gnu/packages/perl.scm:2626 msgid "IO:: interface for reading/writing an array of lines" msgstr "" =20 -#: gnu/packages/perl.scm:2578 +#: gnu/packages/perl.scm:2627 msgid "" "This toolkit primarily provides modules for performing both\n" "traditional and object-oriented i/o) on things *other* than normal\n" "filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " msgstr "" =20 -#: gnu/packages/perl.scm:2596 +#: gnu/packages/perl.scm:2645 msgid "Perl interface to pseudo ttys" msgstr "" =20 -#: gnu/packages/perl.scm:2598 +#: gnu/packages/perl.scm:2647 msgid "" "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" "pseudo ttys." msgstr "" =20 -#: gnu/packages/perl.scm:2626 +#: gnu/packages/perl.scm:2675 msgid "Run system() and background procs w/ piping, redirs, ptys" msgstr "" =20 -#: gnu/packages/perl.scm:2627 +#: gnu/packages/perl.scm:2676 msgid "" "IPC::Run allows you run and interact with child processes\n" -"using files, pipes, and pseudo-ttys. Both system()-style and scripted = usages\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" "are supported and may be mixed. Likewise, functional and OO API styles= are\n" "both supported and may be mixed." msgstr "" =20 -#: gnu/packages/perl.scm:2645 +#: gnu/packages/perl.scm:2694 msgid "Run a subprocess with input/output redirection" msgstr "" =20 -#: gnu/packages/perl.scm:2647 +#: gnu/packages/perl.scm:2696 msgid "" "The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" -"stdout, and/or stderr to files and perl data structures. It aims to sa= tisfy\n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" "99% of the need for using system, qx, and open3 with a simple, extremel= y\n" "Perlish API and none of the bloat and rarely used features of IPC::Run.= " msgstr "" =20 -#: gnu/packages/perl.scm:2671 +#: gnu/packages/perl.scm:2720 msgid "Lightweight interface to shared memory" msgstr "" =20 -#: gnu/packages/perl.scm:2672 +#: gnu/packages/perl.scm:2721 msgid "" "IPC::ShareLite provides a simple interface to shared memory,\n" "allowing data to be efficiently communicated between processes." msgstr "" =20 -#: gnu/packages/perl.scm:2692 +#: gnu/packages/perl.scm:2741 msgid "JSON encoder/decoder for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2693 +#: gnu/packages/perl.scm:2742 msgid "" "This module converts Perl data structures to JSON and vice\n" "versa using either JSON::XS or JSON::PP." msgstr "" =20 -#: gnu/packages/perl.scm:2718 +#: gnu/packages/perl.scm:2767 msgid "Wrapper for Perl JSON classes" msgstr "" =20 -#: gnu/packages/perl.scm:2720 +#: gnu/packages/perl.scm:2769 msgid "" "This module tries to provide a coherent API to bring together the\n" -"various JSON modules currently on CPAN. This module will allow you to = code to\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" "any JSON API and have it work regardless of which JSON module is actual= ly\n" "installed." msgstr "" =20 -#: gnu/packages/perl.scm:2744 +#: gnu/packages/perl.scm:2793 msgid "Cpanel::JSON::XS with fallback" msgstr "" =20 -#: gnu/packages/perl.scm:2745 +#: gnu/packages/perl.scm:2794 msgid "" "This module first checks to see if either Cpanel::JSON::XS\n" -"or JSON::XS is already loaded, in which case it uses that module. Othe= rwise\n" -"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, and\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" "either uses the first module it finds or throws an error." msgstr "" =20 -#: gnu/packages/perl.scm:2768 +#: gnu/packages/perl.scm:2817 msgid "JSON serialising/deserialising for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2792 +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 msgid "Combination of List::Util and List::MoreUtils" msgstr "" =20 -#: gnu/packages/perl.scm:2793 +#: gnu/packages/perl.scm:2890 msgid "" "This module exports all of the functions that either\n" "List::Util or List::MoreUtils defines, with preference to List::Util." msgstr "" =20 -#: gnu/packages/perl.scm:2817 +#: gnu/packages/perl.scm:2914 msgid "Provide the stuff missing in List::Util" msgstr "" =20 -#: gnu/packages/perl.scm:2818 +#: gnu/packages/perl.scm:2915 msgid "" "List::MoreUtils provides some trivial but commonly needed\n" "functionality on lists which is not going to go into List::Util." msgstr "" =20 -#: gnu/packages/perl.scm:2836 +#: gnu/packages/perl.scm:2933 msgid "Expiry plug-in for Memoize that adds LRU cache expiration" msgstr "" =20 -#: gnu/packages/perl.scm:2837 +#: gnu/packages/perl.scm:2934 msgid "" "This module implements an expiry policy for Memoize that\n" "follows LRU semantics, that is, the last n results, where n is specifie= d as\n" "the argument to the CACHESIZE parameter, will be cached." msgstr "" =20 -#: gnu/packages/perl.scm:2856 +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 msgid "Definition of MIME types" msgstr "" =20 -#: gnu/packages/perl.scm:2857 +#: gnu/packages/perl.scm:2973 msgid "" "This module provides a list of known mime-types, combined\n" "from various sources. For instance, it contains all IANA types and the= \n" "knowledge of Apache." msgstr "" =20 -#: gnu/packages/perl.scm:2886 +#: gnu/packages/perl.scm:3002 msgid "Tiny replacement for Module::Build" msgstr "" =20 -#: gnu/packages/perl.scm:2887 +#: gnu/packages/perl.scm:3003 msgid "" "Many Perl distributions use a Build.PL file instead of a\n" "Makefile.PL file to drive distribution configuration, build, test and\n= " "installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" "build system. This module provides a simple, lightweight, drop-in\n" -"replacement. Whereas Module::Build has over 6,700 lines of code; this = module\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" "has less than 120, yet supports the features needed by most distributio= ns." msgstr "" =20 -#: gnu/packages/perl.scm:2909 +#: gnu/packages/perl.scm:3025 msgid "Find and use installed modules in a (sub)category" msgstr "" =20 -#: gnu/packages/perl.scm:2910 +#: gnu/packages/perl.scm:3026 msgid "" "Module::Find lets you find and use modules in categories.\n" "This can be useful for auto-detecting driver or plugin modules. You ca= n\n" @@ -6417,67 +7445,81 @@ msgid "" "subcategories." msgstr "" =20 -#: gnu/packages/perl.scm:2936 +#: gnu/packages/perl.scm:3052 msgid "Loads alternate underlying implementations for a module" msgstr "" =20 -#: gnu/packages/perl.scm:2937 +#: gnu/packages/perl.scm:3053 msgid "" "This module abstracts out the process of choosing one of\n" -"several underlying implementations for a module. This can be used to p= rovide\n" -"XS and pure Perl implementations of a module, or it could be used to lo= ad an\n" -"implementation for a given OS or any other case of needing to provide m= ultiple\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" "implementations." msgstr "" =20 -#: gnu/packages/perl.scm:2975 +#: gnu/packages/perl.scm:3091 msgid "Standalone, extensible Perl module installer" msgstr "" =20 -#: gnu/packages/perl.scm:2976 +#: gnu/packages/perl.scm:3092 msgid "" "Module::Install is a package for writing installers for\n" -"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in a\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" "strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" "installation version 5.005 or newer." msgstr "" =20 -#: gnu/packages/perl.scm:2996 +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 msgid "Perl runtime module handling" msgstr "" =20 -#: gnu/packages/perl.scm:2997 +#: gnu/packages/perl.scm:3134 msgid "" "The functions exported by this module deal with runtime\n" "handling of Perl modules, which are normally handled at compile time." msgstr "" =20 -#: gnu/packages/perl.scm:3018 +#: gnu/packages/perl.scm:3157 msgid "Provide information on conflicts for Module::Runtime" msgstr "" =20 -#: gnu/packages/perl.scm:3019 +#: gnu/packages/perl.scm:3158 msgid "" "This module provides conflicts checking for Module::Runtime,\n" "which had a recent release that broke some versions of Moose. It is ca= lled\n" "from Moose::Conflicts and moose-outdated." msgstr "" =20 -#: gnu/packages/perl.scm:3040 +#: gnu/packages/perl.scm:3179 msgid "Recursively scan Perl code for dependencies" msgstr "" =20 -#: gnu/packages/perl.scm:3041 +#: gnu/packages/perl.scm:3180 msgid "" "Module::ScanDeps is a module to recursively scan Perl\n" "programs for dependencies." msgstr "" =20 -#: gnu/packages/perl.scm:3061 +#: gnu/packages/perl.scm:3200 msgid "Module name tools and transformations" msgstr "" =20 -#: gnu/packages/perl.scm:3062 +#: gnu/packages/perl.scm:3201 msgid "" "This module provides a few useful functions for manipulating\n" "module names. Its main aim is to centralise some of the functions comm= only\n" @@ -6485,117 +7527,123 @@ msgid "" "module names to relative paths." msgstr "" =20 -#: gnu/packages/perl.scm:3092 +#: gnu/packages/perl.scm:3231 msgid "Minimalist Object Orientation (with Moose compatibility)" msgstr "" =20 -#: gnu/packages/perl.scm:3093 +#: gnu/packages/perl.scm:3232 msgid "" "Moo is an extremely light-weight Object Orientation system.\n" -"It allows one to concisely define objects and roles with a convenient s= yntax\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" "that avoids the details of Perl's object system. Moo contains a subset= of\n" "Moose and is optimised for rapid startup." msgstr "" =20 -#: gnu/packages/perl.scm:3169 +#: gnu/packages/perl.scm:3308 msgid "Postmodern object system for Perl 5" msgstr "" =20 -#: gnu/packages/perl.scm:3171 +#: gnu/packages/perl.scm:3310 msgid "" "Moose is a complete object system for Perl 5. It provides keywords for= \n" -"attribute declaration, object construction, inheritance, and maybe more= . With\n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" "Moose, you define your class declaratively, without needing to know abo= ut\n" "blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" -"logical structure of your classes, focusing on \"what\" rather than \"h= ow\".\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" "A class definition with Moose reads like a list of very concise English= \n" "sentences." msgstr "" =20 -#: gnu/packages/perl.scm:3199 +#: gnu/packages/perl.scm:3338 msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" msgstr "" =20 -#: gnu/packages/perl.scm:3200 +#: gnu/packages/perl.scm:3339 msgid "" "This module attempts to emulate the behavior of\n" "Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" -"system. The public API of Class::Accessor::Fast is wholly supported, b= ut the\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" "private methods are not." msgstr "" =20 -#: gnu/packages/perl.scm:3231 +#: gnu/packages/perl.scm:3371 msgid "Moose role for processing command line options" msgstr "" =20 -#: gnu/packages/perl.scm:3232 +#: gnu/packages/perl.scm:3372 msgid "" "This is a Moose role which provides an alternate constructor\n" "for creating objects using parameters passed in from the command line." msgstr "" =20 -#: gnu/packages/perl.scm:3253 +#: gnu/packages/perl.scm:3393 msgid "Mark overload code symbols as methods" msgstr "" =20 -#: gnu/packages/perl.scm:3254 +#: gnu/packages/perl.scm:3394 msgid "" "MooseX::MarkAsMethods allows one to easily mark certain\n" "functions as Moose methods. This will allow other packages such as\n" "namespace::autoclean to operate without blowing away your overloads. A= fter\n" -"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP as\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" "being methods, and class extension as well as composition from roles wi= th\n" "overloads will \"just work\"." msgstr "" =20 -#: gnu/packages/perl.scm:3284 +#: gnu/packages/perl.scm:3424 msgid "Code attribute introspection" msgstr "" =20 -#: gnu/packages/perl.scm:3285 +#: gnu/packages/perl.scm:3425 msgid "" "This module allows code attributes of methods to be\n" "introspected using Moose meta method objects." msgstr "" =20 -#: gnu/packages/perl.scm:3311 +#: gnu/packages/perl.scm:3451 msgid "Subclassing of non-Moose classes" msgstr "" =20 -#: gnu/packages/perl.scm:3312 +#: gnu/packages/perl.scm:3452 msgid "" "MooseX::NonMoose allows for easily subclassing non-Moose\n" -"classes with Moose, taking care of the details connected with doing thi= s, such\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" "as setting up proper inheritance from Moose::Object and installing (and= \n" "inlining, at make_immutable time) a constructor that makes sure things = like\n" "BUILD methods are called. It tries to be as non-intrusive as possible.= " msgstr "" =20 -#: gnu/packages/perl.scm:3341 +#: gnu/packages/perl.scm:3481 msgid "Extension of Params::Validate using Moose's types" msgstr "" =20 -#: gnu/packages/perl.scm:3342 +#: gnu/packages/perl.scm:3482 msgid "" "This module fills a gap in Moose by adding method parameter\n" "validation to Moose." msgstr "" =20 -#: gnu/packages/perl.scm:3363 +#: gnu/packages/perl.scm:3503 msgid "Apply roles to a related Perl class" msgstr "" =20 -#: gnu/packages/perl.scm:3364 +#: gnu/packages/perl.scm:3504 msgid "" "This module applies roles to make a subclass instead of\n" "manually setting up a subclass." msgstr "" =20 -#: gnu/packages/perl.scm:3390 +#: gnu/packages/perl.scm:3531 msgid "Moose roles with composition parameters" msgstr "" =20 -#: gnu/packages/perl.scm:3391 +#: gnu/packages/perl.scm:3532 msgid "" "Because Moose roles serve many different masters, they\n" "usually provide only the least common denominator of functionality. To= \n" @@ -6605,11 +7653,11 @@ msgid "" "Parameterized roles offer a solution to these (and other) kinds of prob= lems." msgstr "" =20 -#: gnu/packages/perl.scm:3417 +#: gnu/packages/perl.scm:3558 msgid "Roles which support overloading" msgstr "" =20 -#: gnu/packages/perl.scm:3418 +#: gnu/packages/perl.scm:3559 msgid "" "MooseX::Role::WithOverloading allows you to write a\n" "Moose::Role which defines overloaded operators and allows those overloa= d\n" @@ -6617,124 +7665,132 @@ msgid "" "where plain Moose::Roles would lose the overloading." msgstr "" =20 -#: gnu/packages/perl.scm:3440 +#: gnu/packages/perl.scm:3581 msgid "Name your accessors foo() and set_foo()" msgstr "" =20 -#: gnu/packages/perl.scm:3441 +#: gnu/packages/perl.scm:3582 msgid "" "This module does not provide any methods. Simply loading it\n" -"changes the default naming policy for the loading class so that accesso= rs are\n" -"separated into get and set methods. The get methods have the same name= as the\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" "accessor, while set methods are prefixed with \"_set_\"." msgstr "" =20 -#: gnu/packages/perl.scm:3467 +#: gnu/packages/perl.scm:3608 msgid "Strict object constructors for Moose" msgstr "" =20 -#: gnu/packages/perl.scm:3468 +#: gnu/packages/perl.scm:3609 msgid "" "Simply loading this module makes your constructors\n" "\"strict\". If your constructor is called with an attribute init argum= ent\n" "that your class does not declare, then it calls Moose->throw_error()." msgstr "" =20 -#: gnu/packages/perl.scm:3496 +#: gnu/packages/perl.scm:3637 msgid "Trait loading and resolution for Moose" msgstr "" =20 -#: gnu/packages/perl.scm:3497 +#: gnu/packages/perl.scm:3638 msgid "" "Adds support on top of MooseX::Traits for class precedence\n" "search for traits and some extra attributes." msgstr "" =20 -#: gnu/packages/perl.scm:3522 +#: gnu/packages/perl.scm:3664 msgid "Organise your Moose types in libraries" msgstr "" =20 -#: gnu/packages/perl.scm:3523 +#: gnu/packages/perl.scm:3665 msgid "" "This package lets you declare types using short names, but\n" "behind the scenes it namespaces all your type declarations, effectively= \n" "prevent name clashes between packages." msgstr "" =20 -#: gnu/packages/perl.scm:3554 +#: gnu/packages/perl.scm:3696 msgid "DateTime related constraints and coercions for Moose" msgstr "" =20 -#: gnu/packages/perl.scm:3555 +#: gnu/packages/perl.scm:3697 msgid "" "This module packages several Moose::Util::TypeConstraints\n" "with coercions, designed to work with the DateTime suite of objects." msgstr "" =20 -#: gnu/packages/perl.scm:3587 +#: gnu/packages/perl.scm:3729 msgid "Extensions to MooseX::Types::DateTime" msgstr "" =20 -#: gnu/packages/perl.scm:3588 +#: gnu/packages/perl.scm:3730 msgid "" "This module builds on MooseX::Types::DateTime to add\n" -"additional custom types and coercions. Since it builds on an existing = type,\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" "all coercions and constraints are inherited." msgstr "" =20 -#: gnu/packages/perl.scm:3617 +#: gnu/packages/perl.scm:3759 msgid "ClassName type constraints for Moose" msgstr "" =20 -#: gnu/packages/perl.scm:3618 +#: gnu/packages/perl.scm:3760 msgid "" "MooseX::Types::LoadableClass provides a ClassName type\n" "constraint with coercion to load the class." msgstr "" =20 -#: gnu/packages/perl.scm:3642 +#: gnu/packages/perl.scm:3784 msgid "Moosish types and type builder" msgstr "" =20 -#: gnu/packages/perl.scm:3643 +#: gnu/packages/perl.scm:3785 msgid "" "MooX::Types::MooseLike provides a possibility to build your\n" -"own set of Moose-like types. These custom types can then be used to de= scribe\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" "fields in Moo-based classes." msgstr "" =20 -#: gnu/packages/perl.scm:3662 +#: gnu/packages/perl.scm:3804 msgid "MRO interface compatibility for Perls < 5.9.5" msgstr "" =20 -#: gnu/packages/perl.scm:3663 +#: gnu/packages/perl.scm:3805 msgid "" "The \"mro\" namespace provides several utilities for dealing\n" -"with method resolution order and method caching in general in Perl 5.9.= 5 and\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" "higher. This module provides those interfaces for earlier versions of\= n" "Perl (back to 5.6.0)." msgstr "" =20 -#: gnu/packages/perl.scm:3689 +#: gnu/packages/perl.scm:3832 msgid "Keep imports out of your namespace" msgstr "" =20 -#: gnu/packages/perl.scm:3690 +#: gnu/packages/perl.scm:3833 msgid "" "The namespace::autoclean pragma will remove all imported\n" -"symbols at the end of the current package's compile cycle. Functions c= alled\n" -"in the package itself will still be bound by their name, but they won't= show\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" "up as methods on your class or instances. It is very similar to\n" "namespace::clean, except it will clean all imported functions, no matte= r if\n" -"you imported them before or after you used the pragma. It will also no= t touch\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" "anything that looks like a method." msgstr "" =20 -#: gnu/packages/perl.scm:3716 +#: gnu/packages/perl.scm:3859 msgid "Keep imports and functions out of your namespace" msgstr "" =20 -#: gnu/packages/perl.scm:3717 +#: gnu/packages/perl.scm:3860 msgid "" "The namespace::clean pragma will remove all previously\n" "declared or imported symbols at the end of the current package's compil= e\n" @@ -6742,155 +7798,160 @@ msgid "" "name, but they won't show up as methods on your class or instances." msgstr "" =20 -#: gnu/packages/perl.scm:3737 +#: gnu/packages/perl.scm:3880 msgid "Numeric comparisons" msgstr "" =20 -#: gnu/packages/perl.scm:3738 +#: gnu/packages/perl.scm:3881 msgid "" "Number::Compare compiles a simple comparison to an anonymous\n" "subroutine, which you can call with a value to be tested against." msgstr "" =20 -#: gnu/packages/perl.scm:3756 +#: gnu/packages/perl.scm:3899 msgid "Generate cryptographic signatures for objects" msgstr "" =20 -#: gnu/packages/perl.scm:3757 +#: gnu/packages/perl.scm:3900 msgid "" "Object::Signature is an abstract base class that you can\n" -"inherit from in order to allow your objects to generate unique cryptogr= aphic\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" "signatures." msgstr "" =20 -#: gnu/packages/perl.scm:3779 +#: gnu/packages/perl.scm:3922 msgid "Anonymous packages" msgstr "" =20 -#: gnu/packages/perl.scm:3780 +#: gnu/packages/perl.scm:3923 msgid "" "This module allows for anonymous packages that are\n" "independent of the main namespace and only available through an object\= n" "instance, not by name." msgstr "" =20 -#: gnu/packages/perl.scm:3808 +#: gnu/packages/perl.scm:3951 msgid "Manage deprecation warnings for your distribution" msgstr "" =20 -#: gnu/packages/perl.scm:3809 +#: gnu/packages/perl.scm:3952 msgid "" "This module allows you to manage a set of deprecations for\n" "one or more modules." msgstr "" =20 -#: gnu/packages/perl.scm:3836 +#: gnu/packages/perl.scm:3979 msgid "Routines for manipulating stashes" msgstr "" =20 -#: gnu/packages/perl.scm:3837 +#: gnu/packages/perl.scm:3980 msgid "" "Manipulating stashes (Perl's symbol tables) is occasionally\n" -"necessary, but incredibly messy, and easy to get wrong. This module hi= des all\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" "of that behind a simple API." msgstr "" =20 -#: gnu/packages/perl.scm:3860 +#: gnu/packages/perl.scm:4003 msgid "Faster implementation of the Package::Stash API" msgstr "" =20 -#: gnu/packages/perl.scm:3861 +#: gnu/packages/perl.scm:4004 msgid "" "This is a backend for Package::Stash, which provides the\n" -"functionality in a way that's less buggy and much faster. It will be u= sed by\n" -"default if it's installed, and should be preferred in all environments = with a\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" "compiler." msgstr "" =20 -#: gnu/packages/perl.scm:3881 +#: gnu/packages/perl.scm:4024 msgid "Play with other peoples' lexical variables" msgstr "" =20 -#: gnu/packages/perl.scm:3882 +#: gnu/packages/perl.scm:4025 msgid "" "PadWalker is a module which allows you to inspect (and even\n" "change) lexical variables in any subroutine which called you. It will = only\n" -"show those variables which are in scope at the point of the call. PadW= alker\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" "is particularly useful for debugging." msgstr "" =20 -#: gnu/packages/perl.scm:3903 +#: gnu/packages/perl.scm:4046 msgid "Simple, compact and correct param-checking functions" msgstr "" =20 -#: gnu/packages/perl.scm:3905 +#: gnu/packages/perl.scm:4048 msgid "" "Params::Util provides a basic set of importable functions that makes\n" "checking parameters easier." msgstr "" =20 -#: gnu/packages/perl.scm:3928 +#: gnu/packages/perl.scm:4072 msgid "Validate method/function parameters" msgstr "" =20 -#: gnu/packages/perl.scm:3929 +#: gnu/packages/perl.scm:4073 msgid "" "The Params::Validate module allows you to validate method or\n" "function call parameters to an arbitrary level of specificity." msgstr "" =20 -#: gnu/packages/perl.scm:3947 +#: gnu/packages/perl.scm:4091 msgid "Create and manipulate PAR distributions" msgstr "" =20 -#: gnu/packages/perl.scm:3948 +#: gnu/packages/perl.scm:4092 msgid "" "PAR::Dist is a toolkit to create and manipulate PAR\n" "distributions." msgstr "" =20 -#: gnu/packages/perl.scm:3967 +#: gnu/packages/perl.scm:4111 msgid "" "Allows you to both load one or more modules, while setting\n" "up inheritance from those modules at the same time." msgstr "" =20 -#: gnu/packages/perl.scm:3985 +#: gnu/packages/perl.scm:4130 msgid "Path specification manipulation" msgstr "" =20 -#: gnu/packages/perl.scm:3986 +#: gnu/packages/perl.scm:4131 msgid "" "Path::Class is a module for manipulation of file and\n" "directory specifications in a cross-platform manner." msgstr "" =20 -#: gnu/packages/perl.scm:4006 +#: gnu/packages/perl.scm:4151 msgid "Check for comprehensive documentation of a module" msgstr "" =20 -#: gnu/packages/perl.scm:4007 +#: gnu/packages/perl.scm:4152 msgid "" "This module provides a mechanism for determining if the pod\n" "for a given module is comprehensive." msgstr "" =20 -#: gnu/packages/perl.scm:4024 +#: gnu/packages/perl.scm:4169 msgid "Parsing library for text in Pod format" msgstr "" =20 -#: gnu/packages/perl.scm:4025 +#: gnu/packages/perl.scm:4170 msgid "" "Pod::Simple is a Perl library for parsing text in\n" "the Pod (plain old documentation) markup language that is typically\n" "used for writing documentation for Perl and for Perl modules." msgstr "" =20 -#: gnu/packages/perl.scm:4045 +#: gnu/packages/perl.scm:4191 msgid "GNU C library compatible strftime for loggers and servers" msgstr "" =20 -#: gnu/packages/perl.scm:4046 +#: gnu/packages/perl.scm:4192 msgid "" "POSIX::strftime::Compiler provides GNU C library compatible\n" "strftime(3). But this module is not affected by the system locale. Th= is\n" @@ -6898,372 +7959,410 @@ msgid "" "applications." msgstr "" =20 -#: gnu/packages/perl.scm:4064 +#: gnu/packages/perl.scm:4210 msgid "Information about the currently running perl" msgstr "" =20 -#: gnu/packages/perl.scm:4066 +#: gnu/packages/perl.scm:4212 msgid "" "Probe::Perl provides methods for obtaining information about the\n" -"currently running perl interpreter. It originally began life as code i= n the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" "Module::Build project, but has been externalized here for general use." msgstr "" =20 -#: gnu/packages/perl.scm:4087 +#: gnu/packages/perl.scm:4234 msgid "Create read-only scalars, arrays, hashes" msgstr "" =20 -#: gnu/packages/perl.scm:4088 +#: gnu/packages/perl.scm:4235 msgid "" "This module provides a facility for creating non-modifiable\n" -"variables in Perl. This is useful for configuration files, headers, et= c. It\n" -"can also be useful as a development and debugging tool for catching upd= ates to\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" "variables that should not be changed." msgstr "" =20 -#: gnu/packages/perl.scm:4106 +#: gnu/packages/perl.scm:4253 msgid "Provide commonly requested regular expressions" msgstr "" =20 -#: gnu/packages/perl.scm:4108 +#: gnu/packages/perl.scm:4255 msgid "" "This module exports a single hash (`%RE') that stores or generates\n" "commonly needed regular expressions. Patterns currently provided inclu= de:\n" -"balanced parentheses and brackets, delimited text (with escapes), integ= ers and\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" "floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" "offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" "codes." msgstr "" =20 -#: gnu/packages/perl.scm:4138 +#: gnu/packages/perl.scm:4285 msgid "Roles, as a slice of Moose" msgstr "" =20 -#: gnu/packages/perl.scm:4139 +#: gnu/packages/perl.scm:4286 msgid "Role::Tiny is a minimalist role composition tool." msgstr "" =20 -#: gnu/packages/perl.scm:4156 +#: gnu/packages/perl.scm:4303 msgid "Call isa, can, does, and DOES safely" msgstr "" =20 -#: gnu/packages/perl.scm:4157 +#: gnu/packages/perl.scm:4304 msgid "" "This module allows you to call isa, can, does, and DOES\n" "safely on things that may not be objects." msgstr "" =20 -#: gnu/packages/perl.scm:4175 +#: gnu/packages/perl.scm:4322 msgid "Lexically-scoped resource management" msgstr "" =20 -#: gnu/packages/perl.scm:4176 +#: gnu/packages/perl.scm:4323 msgid "" "This module provides a convenient way to perform cleanup or\n" -"other forms of resource management at the end of a scope. It is partic= ularly\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" "useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" -"reference to a subroutine that is guaranteed to be called even if the t= hread\n" -"of execution is aborted prematurely. This effectively allows lexically= -scoped\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" "\"promises\" to be made that are automatically honoured by perl's garba= ge\n" "collector." msgstr "" =20 -#: gnu/packages/perl.scm:4199 +#: gnu/packages/perl.scm:4346 msgid "Infinite sets" msgstr "" =20 -#: gnu/packages/perl.scm:4200 +#: gnu/packages/perl.scm:4347 msgid "Set::Infinite is a set theory module for infinite sets." msgstr "" =20 -#: gnu/packages/perl.scm:4220 +#: gnu/packages/perl.scm:4367 msgid "Unordered collections of Perl Objects" msgstr "" =20 -#: gnu/packages/perl.scm:4221 +#: gnu/packages/perl.scm:4368 msgid "" "Set::Object provides efficient sets, unordered collections\n" "of Perl objects without duplicates for scalars and references." msgstr "" =20 -#: gnu/packages/perl.scm:4239 +#: gnu/packages/perl.scm:4386 msgid "Set operations for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4240 +#: gnu/packages/perl.scm:4387 msgid "" "The first priority of Set::Scalar is to be a convenient\n" -"interface to sets (as in: unordered collections of Perl scalars). Whil= e not\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" "designed to be slow or big, neither has it been designed to be fast or\= n" "compact." msgstr "" =20 -#: gnu/packages/perl.scm:4260 +#: gnu/packages/perl.scm:4407 msgid "Spiffy Perl Interface Framework For You" msgstr "" =20 -#: gnu/packages/perl.scm:4261 +#: gnu/packages/perl.scm:4408 msgid "" "Spiffy is a framework and methodology for doing object\n" "oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " -"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation c= lass.\n" -"It attempts to fix all the nits and warts of traditional Perl OO, in a = clean,\n" -"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as from\n" +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" "other OO languages like Python, Ruby, Java and Perl 6." msgstr "" =20 -#: gnu/packages/perl.scm:4283 +#: gnu/packages/perl.scm:4430 msgid "Temporary buffer to save bytes" msgstr "" =20 -#: gnu/packages/perl.scm:4284 +#: gnu/packages/perl.scm:4431 msgid "" "Stream::Buffered is a buffer class to store arbitrary length\n" "of byte strings and then get a seekable filehandle once everything is\n= " -"buffered. It uses PerlIO and/or temporary file to save the buffer depe= nding\n" +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" "on the length of the size." msgstr "" =20 -#: gnu/packages/perl.scm:4304 +#: gnu/packages/perl.scm:4451 msgid "Turn on strict and make all warnings fatal" msgstr "" =20 -#: gnu/packages/perl.scm:4305 +#: gnu/packages/perl.scm:4452 msgid "" "Strictures turns on strict and make all warnings fatal when\n" "run from within a source-controlled directory." msgstr "" =20 -#: gnu/packages/perl.scm:4323 +#: gnu/packages/perl.scm:4470 msgid "Camelcase and de-camelcase" msgstr "" =20 -#: gnu/packages/perl.scm:4324 +#: gnu/packages/perl.scm:4471 msgid "" "This module may be used to convert from under_score text to\n" "CamelCase and back again." msgstr "" =20 -#: gnu/packages/perl.scm:4344 +#: gnu/packages/perl.scm:4491 msgid "Rewrite strings based on a set of known prefixes" msgstr "" =20 -#: gnu/packages/perl.scm:4345 +#: gnu/packages/perl.scm:4492 msgid "" "This module allows you to rewrite strings based on a set of\n" "known prefixes." msgstr "" =20 -#: gnu/packages/perl.scm:4367 +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 msgid "Sophisticated exporter for custom-built routines" msgstr "" =20 -#: gnu/packages/perl.scm:4369 +#: gnu/packages/perl.scm:4538 msgid "" "Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " "custom-built routines." msgstr "" =20 -#: gnu/packages/perl.scm:4388 +#: gnu/packages/perl.scm:4557 msgid "Only use Sub::Exporter if you need it" msgstr "" =20 -#: gnu/packages/perl.scm:4389 +#: gnu/packages/perl.scm:4558 msgid "" "Sub::Exporter is an incredibly powerful module, but with\n" "that power comes great responsibility, as well as some runtime penaltie= s.\n" -"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t use\n" -"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter\"\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" "if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" "renaming exports, if they try to use them." msgstr "" =20 -#: gnu/packages/perl.scm:4411 +#: gnu/packages/perl.scm:4580 msgid "Retrieve names of code references" msgstr "" =20 -#: gnu/packages/perl.scm:4412 +#: gnu/packages/perl.scm:4581 msgid "" "Sub::Identify allows you to retrieve the real name of code\n" "references." msgstr "" =20 -#: gnu/packages/perl.scm:4431 +#: gnu/packages/perl.scm:4600 msgid "Install subroutines into packages easily" msgstr "" =20 -#: gnu/packages/perl.scm:4433 +#: gnu/packages/perl.scm:4602 msgid "" "Sub::Install makes it easy to install subroutines into packages without= \n" -"the unsightly mess of C or typeglobs lying about where just = anyone\n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" "can see them." msgstr "" =20 -#: gnu/packages/perl.scm:4454 +#: gnu/packages/perl.scm:4623 msgid "(Re)name a sub" msgstr "" =20 -#: gnu/packages/perl.scm:4455 +#: gnu/packages/perl.scm:4624 msgid "" "Assigns a new name to referenced sub. If package\n" -"specification is omitted in the name, then the current package is used.= The\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" "return value is the sub." msgstr "" =20 -#: gnu/packages/perl.scm:4474 +#: gnu/packages/perl.scm:4643 msgid "Apparently run a function in a higher stack frame" msgstr "" =20 -#: gnu/packages/perl.scm:4475 +#: gnu/packages/perl.scm:4644 msgid "" "Like Tcl's uplevel() function, but not quite so dangerous.\n" "The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" "uplevel() are avoided." msgstr "" =20 -#: gnu/packages/perl.scm:4494 +#: gnu/packages/perl.scm:4663 msgid "Perl extension for generating SVG documents" msgstr "" =20 -#: gnu/packages/perl.scm:4495 +#: gnu/packages/perl.scm:4664 msgid "" "SVG is a Perl module which generates a nested data structure\n" -"containing the DOM representation of an SVG (Scalable Vector Graphics) = image.\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" "Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" "access the DOM object, create and access Javascript, and generate SMIL\= n" "animation content." msgstr "" =20 -#: gnu/packages/perl.scm:4514 +#: gnu/packages/perl.scm:4683 msgid "Perl extension for getting CPU information" msgstr "" =20 -#: gnu/packages/perl.scm:4516 +#: gnu/packages/perl.scm:4685 msgid "" "In responce to a post on perlmonks.org, a module for counting the numbe= r\n" "of CPU's on a system. Support has now also been added for type of CPU = and\n" "clock speed." msgstr "" =20 -#: gnu/packages/perl.scm:4538 +#: gnu/packages/perl.scm:4707 msgid "Get full hostname in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4539 +#: gnu/packages/perl.scm:4708 msgid "" "Sys::Hostname::Long tries very hard to get the full hostname\n" "of a system." msgstr "" =20 -#: gnu/packages/perl.scm:4557 +#: gnu/packages/perl.scm:4726 msgid "Ensure that a platform has weaken support" msgstr "" =20 -#: gnu/packages/perl.scm:4558 +#: gnu/packages/perl.scm:4727 msgid "" "One recurring problem in modules that use Scalar::Util's\n" "weaken function is that it is not present in the pure-perl variant. If= \n" -"Scalar::Util is not available at all, it will issue a normal dependency= on the\n" -"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and the\n" -"module does not have weaken, the install will bail out altogether with = a long\n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" "error encouraging the user to seek support." msgstr "" =20 -#: gnu/packages/perl.scm:4583 +#: gnu/packages/perl.scm:4752 msgid "Template processing system for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4584 +#: gnu/packages/perl.scm:4753 msgid "" "The Template Toolkit is a collection of modules which\n" "implement an extensible template processing system. It was originally\= n" -"designed and remains primarily useful for generating dynamic web conten= t, but\n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" "it can be used equally well for processing any other kind of text based= \n" "documents: HTML, XML, POD, PostScript, LaTeX, and so on." msgstr "" =20 -#: gnu/packages/perl.scm:4607 +#: gnu/packages/perl.scm:4776 msgid "Profiling for Template Toolkit" msgstr "" =20 -#: gnu/packages/perl.scm:4608 +#: gnu/packages/perl.scm:4777 msgid "" "Template::Timer provides inline profiling of the template\n" "processing in Perl code." msgstr "" =20 -#: gnu/packages/perl.scm:4626 +#: gnu/packages/perl.scm:4795 msgid "Detect encoding of the current terminal" msgstr "" =20 -#: gnu/packages/perl.scm:4627 +#: gnu/packages/perl.scm:4796 msgid "" "Term::Encoding is a simple module to detect the encoding of\n" "the current terminal expects in various ways." msgstr "" =20 -#: gnu/packages/perl.scm:4651 +#: gnu/packages/perl.scm:4820 msgid "Progress meter on a standard terminal" msgstr "" =20 -#: gnu/packages/perl.scm:4652 +#: gnu/packages/perl.scm:4821 msgid "" "Term::ProgressBar provides a simple progress bar on the\n" -"terminal, to let the user know that something is happening, roughly how= much\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" "stuff has been done, and maybe an estimate at how long remains." msgstr "" =20 -#: gnu/packages/perl.scm:4675 +#: gnu/packages/perl.scm:4844 msgid "Progress meter if run interactively" msgstr "" =20 -#: gnu/packages/perl.scm:4676 +#: gnu/packages/perl.scm:4845 msgid "" "Term::ProgressBar is a wonderful module for showing progress\n" -"bars on the terminal. This module acts very much like that module when= it is\n" -"run interactively. However, when it is not run interactively (for exam= ple, as\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" "a cron job) then it does not show the progress bar." msgstr "" =20 -#: gnu/packages/perl.scm:4698 +#: gnu/packages/perl.scm:4867 msgid "Simple progress bars" msgstr "" =20 -#: gnu/packages/perl.scm:4699 +#: gnu/packages/perl.scm:4868 msgid "" "Term::ProgressBar::Simple tells you how much work has been\n" "done, how much is left to do, and estimate how long it will take." msgstr "" =20 -#: gnu/packages/perl.scm:4717 +#: gnu/packages/perl.scm:4886 msgid "Simple terminal control" msgstr "Simpel terminalkontrol" =20 -#: gnu/packages/perl.scm:4718 +#: gnu/packages/perl.scm:4887 msgid "" "This module, ReadKey, provides ioctl control for terminals\n" -"so the input modes can be changed (thus allowing reads of a single char= acter\n" -"at a time), and also provides non-blocking reads of stdin, as well as s= everal\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" "other terminal related features, including retrieval/modification of th= e\n" "screen size, and retrieval/modification of the control characters." msgstr "" =20 -#: gnu/packages/perl.scm:4745 +#: gnu/packages/perl.scm:4914 msgid "Data-driven testing framework for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4746 +#: gnu/packages/perl.scm:4915 msgid "" "Test::Base gives a way to trivially write your own test\n" "framework base class. It concentrates on offering reusable data driven= \n" "patterns, so that you can write tests with a minimum of code." msgstr "" =20 -#: gnu/packages/perl.scm:4777 +#: gnu/packages/perl.scm:4946 msgid "Check for uncleaned imports" msgstr "" =20 -#: gnu/packages/perl.scm:4778 +#: gnu/packages/perl.scm:4947 msgid "" "This module lets you check your module's namespaces for\n" "imported functions you might have forgotten to remove with\n" @@ -7271,276 +8370,294 @@ msgid "" "called as methods, which usually isn't want you want." msgstr "" =20 -#: gnu/packages/perl.scm:4798 +#: gnu/packages/perl.scm:4967 msgid "Flexible deep comparison for the Test::Builder framework" msgstr "" =20 -#: gnu/packages/perl.scm:4800 +#: gnu/packages/perl.scm:4969 msgid "" "Test::Deep compares two structures by going through each level, ensurin= g\n" -"that the values match, that arrays and hashes have the same elements an= d that\n" -"references are blessed into the correct class. It also handles circula= r data\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" "structures without getting caught in an infinite loop." msgstr "" =20 -#: gnu/packages/perl.scm:4825 +#: gnu/packages/perl.scm:4996 msgid "Test strings and data structures and show differences" msgstr "" =20 -#: gnu/packages/perl.scm:4826 +#: gnu/packages/perl.scm:4997 msgid "" "This module exports three test functions and four diff-style\n" "functions." msgstr "" =20 -#: gnu/packages/perl.scm:4847 +#: gnu/packages/perl.scm:5018 msgid "Perl extension for maintaining test directories" msgstr "" =20 -#: gnu/packages/perl.scm:4848 +#: gnu/packages/perl.scm:5019 msgid "" "Testing code can involve making sure that files are created\n" -"and deleted as expected. Doing this manually can be error prone, as it= 's easy\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" "to forget a file, or miss that some unexpected file was added. This mo= dule\n" -"simplifies maintaining test directories by tracking their status as the= y are\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" "modified or tested with this API, making it simple to test both individ= ual\n" "files, as well as to verify that there are no missing or unknown files.= " msgstr "" =20 -#: gnu/packages/perl.scm:4874 +#: gnu/packages/perl.scm:5045 msgid "Test exception based code" msgstr "" =20 -#: gnu/packages/perl.scm:4875 +#: gnu/packages/perl.scm:5046 msgid "" "This module provides a few convenience methods for testing\n" -"exception based code. It is built with Test::Builder and plays happily= with\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" "Test::More and friends." msgstr "" =20 -#: gnu/packages/perl.scm:4895 +#: gnu/packages/perl.scm:5066 msgid "Simple helpers for testing code with exceptions" msgstr "" =20 -#: gnu/packages/perl.scm:4896 +#: gnu/packages/perl.scm:5067 msgid "" "Test::Fatal is an alternative to the popular\n" -"Test::Exception. It does much less, but should allow greater flexibili= ty in\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" "testing exception-throwing code with about the same amount of typing." msgstr "" =20 -#: gnu/packages/perl.scm:4926 +#: gnu/packages/perl.scm:5097 msgid "Run Perl standard test scripts with statistics" msgstr "" =20 -#: gnu/packages/perl.scm:4927 +#: gnu/packages/perl.scm:5098 msgid "" "Simple test harness which allows tests to be run and results\n" "automatically aggregated and output to STDOUT." msgstr "" =20 -#: gnu/packages/perl.scm:4945 +#: gnu/packages/perl.scm:5116 msgid "Traces memory leaks in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4946 +#: gnu/packages/perl.scm:5117 msgid "" "Test::LeakTrace provides several functions that trace memory\n" "leaks. This module scans arenas, the memory allocation system, so it c= an\n" "detect any leaked SVs in given blocks." msgstr "" =20 -#: gnu/packages/perl.scm:4965 +#: gnu/packages/perl.scm:5136 msgid "Tests strings for equality, with more helpful failures" msgstr "" =20 -#: gnu/packages/perl.scm:4966 +#: gnu/packages/perl.scm:5137 msgid "" "This module provides some drop-in replacements for the\n" "string comparison functions of Test::More, but which are more suitable = when\n" "you test against long strings." msgstr "" =20 -#: gnu/packages/perl.scm:4993 +#: gnu/packages/perl.scm:5165 msgid "Emulate troublesome interfaces in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4994 +#: gnu/packages/perl.scm:5166 msgid "" "Test::MockObject allows you to create objects that conform\n" -"to particular interfaces with very little code. You don't have to reim= plement\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" "the behavior, just the input and the output." msgstr "" =20 -#: gnu/packages/perl.scm:5013 +#: gnu/packages/perl.scm:5185 msgid "Replaces actual time with simulated time" msgstr "" =20 -#: gnu/packages/perl.scm:5014 +#: gnu/packages/perl.scm:5186 msgid "" "This module was created to enable test suites to test code\n" -"at specific points in time. Specifically it overrides localtime, gmtim= e and\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" "time at compile time and then relies on the user supplying a mock time = via\n" -"set_relative_time, set_absolute_time or set_fixed_time to alter future = calls\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" "to gmtime,time or localtime." msgstr "" =20 -#: gnu/packages/perl.scm:5041 +#: gnu/packages/perl.scm:5213 msgid "Most commonly needed test functions and features" msgstr "" =20 -#: gnu/packages/perl.scm:5042 +#: gnu/packages/perl.scm:5214 msgid "" "This module provides the most commonly used testing\n" -"functions, along with automatically turning on strict and warning and g= ives a\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" "bit more fine-grained control over test suites." msgstr "" =20 -#: gnu/packages/perl.scm:5060 +#: gnu/packages/perl.scm:5232 msgid "Ensure no warnings are produced while testing" msgstr "" =20 -#: gnu/packages/perl.scm:5062 +#: gnu/packages/perl.scm:5234 msgid "" "This modules causes any warnings during testing to be captured and\n" "stored. It automatically adds an extra test that will run when your sc= ript\n" "ends to check that there were no warnings. If there were any warnings,= the\n" -"test will fail and output diagnostics of where, when and what the warni= ng was,\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" "including a stack trace of what was going on when it occurred." msgstr "" =20 -#: gnu/packages/perl.scm:5087 +#: gnu/packages/perl.scm:5259 msgid "Utilities to test STDOUT and STDERR messages" msgstr "" =20 -#: gnu/packages/perl.scm:5089 +#: gnu/packages/perl.scm:5261 msgid "" "Test::Output provides a simple interface for testing output sent to\n" -"STDOUT or STDERR. A number of different utilities are included to try = and be\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" "as flexible as possible to the tester." msgstr "" =20 -#: gnu/packages/perl.scm:5110 +#: gnu/packages/perl.scm:5283 msgid "Check for POD errors in files" msgstr "" =20 -#: gnu/packages/perl.scm:5111 +#: gnu/packages/perl.scm:5284 msgid "" "Check POD files for errors or warnings in a test file, using\n" "Pod::Simple to do the heavy lifting." msgstr "" =20 -#: gnu/packages/perl.scm:5131 +#: gnu/packages/perl.scm:5304 msgid "Check for pod coverage" msgstr "" =20 -#: gnu/packages/perl.scm:5132 +#: gnu/packages/perl.scm:5305 msgid "" "This module adds a test to your Perl distribution which\n" "checks for pod coverage of all appropriate files." msgstr "" =20 -#: gnu/packages/perl.scm:5150 +#: gnu/packages/perl.scm:5323 msgid "Checks to see if the module can be loaded" msgstr "" =20 -#: gnu/packages/perl.scm:5151 +#: gnu/packages/perl.scm:5324 msgid "" "Test::Requires checks to see if the module can be loaded.\n" "If this fails, then rather than failing tests this skips all tests." msgstr "" =20 -#: gnu/packages/perl.scm:5170 +#: gnu/packages/perl.scm:5343 msgid "Basic cross-platform tests for scripts" msgstr "" =20 -#: gnu/packages/perl.scm:5172 +#: gnu/packages/perl.scm:5345 msgid "" "The intent of the Test::Script module is to provide a series of basic\n= " -"tests for 80% of the testing you will need to do for scripts in the scr= ipt (or\n" +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" "bin as is also commonly used) paths of your Perl distribution." msgstr "" =20 -#: gnu/packages/perl.scm:5195 +#: gnu/packages/perl.scm:5368 msgid "Fork test in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5196 +#: gnu/packages/perl.scm:5369 msgid "" "Test::SharedFork is a utility module for Test::Builder. It\n" "makes fork(2) safe to use in test cases." msgstr "" =20 -#: gnu/packages/perl.scm:5212 +#: gnu/packages/perl.scm:5385 msgid "Basic utilities for writing tests" msgstr "" =20 -#: gnu/packages/perl.scm:5214 +#: gnu/packages/perl.scm:5387 msgid "Test::Simple contains basic utilities for writing tests." msgstr "" =20 -#: gnu/packages/perl.scm:5231 +#: gnu/packages/perl.scm:5404 msgid "Simplify running Test::Builder tests" msgstr "" =20 -#: gnu/packages/perl.scm:5233 +#: gnu/packages/perl.scm:5406 msgid "" "Test::Tester allows testing of test modules based on Test::Builder with= \n" "a minimum of effort." msgstr "" =20 -#: gnu/packages/perl.scm:5257 +#: gnu/packages/perl.scm:5432 msgid "Trap exit codes, exceptions, output, etc." msgstr "" =20 -#: gnu/packages/perl.scm:5258 +#: gnu/packages/perl.scm:5433 msgid "" "This module is primarily (but not exclusively) for use in\n" -"test scripts: A block eval configurable and extensible but by default t= rapping\n" -"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return v= alues\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" "from boxed blocks of test code." msgstr "" =20 -#: gnu/packages/perl.scm:5278 +#: gnu/packages/perl.scm:5453 msgid "UTF-8 testing in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5279 +#: gnu/packages/perl.scm:5454 msgid "" "This module is a collection of tests useful for dealing with\n" -"UTF-8 strings in Perl. This module has two types of tests: The validit= y tests\n" -"check if a string is valid and not corrupt, whereas the characteristics= tests\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" "will check that string has a given set of characteristics." msgstr "" =20 -#: gnu/packages/perl.scm:5301 +#: gnu/packages/perl.scm:5476 msgid "Perl extension to test methods for warnings" msgstr "" =20 -#: gnu/packages/perl.scm:5302 +#: gnu/packages/perl.scm:5477 msgid "" "This module provides a few convenience methods for testing\n" "warning based code." msgstr "" =20 -#: gnu/packages/perl.scm:5320 +#: gnu/packages/perl.scm:5495 msgid "Test for warnings and the lack of them" msgstr "" =20 -#: gnu/packages/perl.scm:5321 +#: gnu/packages/perl.scm:5496 msgid "" "This module is intended to be used as a drop-in replacement\n" -"for Test::NoWarnings. It also adds an extra test, but runs this test b= efore\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" "done_testing calculates the test count, rather than after. It does thi= s by\n" "hooking into done_testing as well as via an END block. You can declare= a\n" "plan, or not, and things will still Just Work." msgstr "" =20 -#: gnu/packages/perl.scm:5342 +#: gnu/packages/perl.scm:5517 msgid "Test fallback behaviour in absence of modules" msgstr "" =20 -#: gnu/packages/perl.scm:5343 +#: gnu/packages/perl.scm:5518 msgid "" "This module allows you to deliberately hide modules from a\n" "program even though they are installed. This is mostly useful for test= ing\n" @@ -7548,312 +8665,336 @@ msgid "" "installed." msgstr "" =20 -#: gnu/packages/perl.scm:5369 +#: gnu/packages/perl.scm:5545 msgid "Dynamic generation of tests" msgstr "" =20 -#: gnu/packages/perl.scm:5370 +#: gnu/packages/perl.scm:5546 msgid "" "The Test::WriteVariants module provides for the dynamic\n" "generation of tests in nested combinations of contexts." msgstr "" =20 -#: gnu/packages/perl.scm:5390 +#: gnu/packages/perl.scm:5566 msgid "Testing module for YAML implementations" msgstr "" =20 -#: gnu/packages/perl.scm:5391 +#: gnu/packages/perl.scm:5567 msgid "" "Test::YAML is a subclass of Test::Base with YAML specific\n" "support." msgstr "" =20 -#: gnu/packages/perl.scm:5409 +#: gnu/packages/perl.scm:5586 msgid "Align text" msgstr "" =20 -#: gnu/packages/perl.scm:5410 +#: gnu/packages/perl.scm:5587 msgid "" "Text::Aligner exports a single function, align(), which is\n" "used to justify strings to various alignment styles." msgstr "" =20 -#: gnu/packages/perl.scm:5428 +#: gnu/packages/perl.scm:5605 msgid "Extract delimited text sequences from strings" msgstr "" =20 -#: gnu/packages/perl.scm:5429 +#: gnu/packages/perl.scm:5606 msgid "" "The Text::Balanced module can be used to extract delimited\n" "text sequences from strings." msgstr "" =20 -#: gnu/packages/perl.scm:5447 +#: gnu/packages/perl.scm:5624 msgid "Manipulate comma-separated values" msgstr "" =20 -#: gnu/packages/perl.scm:5448 +#: gnu/packages/perl.scm:5625 msgid "" "Text::CSV provides facilities for the composition and\n" -"decomposition of comma-separated values. An instance of the Text::CSV = class\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" "can combine fields into a CSV string and parse a CSV string into fields= ." msgstr "" =20 -#: gnu/packages/perl.scm:5469 +#: gnu/packages/perl.scm:5646 msgid "Perform diffs on files and record sets" msgstr "" =20 -#: gnu/packages/perl.scm:5470 +#: gnu/packages/perl.scm:5647 msgid "" "Text::Diff provides a basic set of services akin to the GNU\n" -"diff utility. It is not anywhere near as feature complete as GNU diff,= but it\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" "is better integrated with Perl and available on all platforms. It is o= ften\n" "faster than shelling out to a system's diff executable for small files,= and\n" "generally slower on larger files." msgstr "" =20 -#: gnu/packages/perl.scm:5491 +#: gnu/packages/perl.scm:5669 msgid "Match globbing patterns against text" msgstr "" =20 -#: gnu/packages/perl.scm:5492 +#: gnu/packages/perl.scm:5670 msgid "" "Text::Glob implements glob(3) style matching that can be\n" -"used to match against text, rather than fetching names from a filesyste= m. If\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" "you want to do full file globbing use the File::Glob module instead." msgstr "" =20 -#: gnu/packages/perl.scm:5511 +#: gnu/packages/perl.scm:5689 msgid "Simple ASCII tables" msgstr "" =20 -#: gnu/packages/perl.scm:5512 +#: gnu/packages/perl.scm:5690 msgid "Text::SimpleTable draws simple ASCII tables." msgstr "" =20 -#: gnu/packages/perl.scm:5531 +#: gnu/packages/perl.scm:5711 msgid "Organize Data in Tables" msgstr "" =20 -#: gnu/packages/perl.scm:5532 +#: gnu/packages/perl.scm:5712 msgid "Text::Table renders plaintext tables." msgstr "" =20 -#: gnu/packages/perl.scm:5549 +#: gnu/packages/perl.scm:5729 msgid "Provide plain ASCII transliterations of Unicode text" msgstr "" =20 -#: gnu/packages/perl.scm:5550 +#: gnu/packages/perl.scm:5730 msgid "" "Text::Unidecode provides a function, unidecode(...) that\n" -"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., the\n" -"universally displayable characters between 0x00 and 0x7F). The represe= ntation\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" "is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" "letters, the pronunciation expressed by the text in some other writing\= n" "system." msgstr "" =20 -#: gnu/packages/perl.scm:5578 +#: gnu/packages/perl.scm:5758 msgid "Role for classes that can be thrown" msgstr "" =20 -#: gnu/packages/perl.scm:5579 +#: gnu/packages/perl.scm:5759 msgid "" "Throwable is a role for classes that are meant to be thrown\n" "as exceptions to standard program flow." msgstr "" =20 -#: gnu/packages/perl.scm:5597 +#: gnu/packages/perl.scm:5778 msgid "Ordered associative arrays for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5598 +#: gnu/packages/perl.scm:5779 msgid "" "This Perl module implements Perl hashes that preserve the\n" -"order in which the hash elements were added. The order is not affected= when\n" -"values corresponding to existing keys in the IxHash are changed. The e= lements\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" "can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" "operations can also be performed on the IxHash." msgstr "" =20 -#: gnu/packages/perl.scm:5621 +#: gnu/packages/perl.scm:5802 msgid "Tie to an existing Perl object" msgstr "" =20 -#: gnu/packages/perl.scm:5622 +#: gnu/packages/perl.scm:5803 msgid "" "This class provides a tie constructor that returns the\n" -"object it was given as it's first argument. This way side effects of c= alling\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" "$object->TIEHASH are avoided." msgstr "" =20 -#: gnu/packages/perl.scm:5644 +#: gnu/packages/perl.scm:5825 msgid "English expression of durations" msgstr "" =20 -#: gnu/packages/perl.scm:5645 +#: gnu/packages/perl.scm:5826 msgid "" "This module provides functions for expressing durations in\n" "rounded or exact terms." msgstr "" =20 -#: gnu/packages/perl.scm:5667 +#: gnu/packages/perl.scm:5848 msgid "Parse time duration strings" msgstr "" =20 -#: gnu/packages/perl.scm:5668 +#: gnu/packages/perl.scm:5849 msgid "" "Time::Duration::Parse is a module to parse human readable\n" "duration strings like \"2 minutes\" and \"3 seconds\" to seconds." msgstr "" =20 -#: gnu/packages/perl.scm:5686 +#: gnu/packages/perl.scm:5867 msgid "Efficiently compute time from local and GMT time" msgstr "" =20 -#: gnu/packages/perl.scm:5687 +#: gnu/packages/perl.scm:5868 msgid "" "This module provides functions that are the inverse of\n" "built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" -"six-element array, and return the corresponding time(2) value in second= s since\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" "the system epoch." msgstr "" =20 -#: gnu/packages/perl.scm:5707 +#: gnu/packages/perl.scm:5888 msgid "Date parsing/formatting subroutines" msgstr "" =20 -#: gnu/packages/perl.scm:5708 +#: gnu/packages/perl.scm:5889 msgid "" "This module provides routines for parsing date string into\n" "time values and formatting dates into ASCII strings." msgstr "" =20 -#: gnu/packages/perl.scm:5728 +#: gnu/packages/perl.scm:5911 msgid "Shift and scale time" msgstr "" =20 -#: gnu/packages/perl.scm:5729 +#: gnu/packages/perl.scm:5912 msgid "" "This module allows you to speed up your sleep(), alarm(),\n" "and time() calls." msgstr "" =20 -#: gnu/packages/perl.scm:5752 +#: gnu/packages/perl.scm:5935 msgid "Simple tree object" msgstr "" =20 -#: gnu/packages/perl.scm:5753 +#: gnu/packages/perl.scm:5936 msgid "" "This module in a fully object-oriented implementation of a\n" "simple n-ary tree." msgstr "" =20 -#: gnu/packages/perl.scm:5776 +#: gnu/packages/perl.scm:5960 msgid "Factory object for dispensing Visitor objects" msgstr "" =20 -#: gnu/packages/perl.scm:5777 +#: gnu/packages/perl.scm:5961 msgid "" "This module is a factory for dispensing\n" "Tree::Simple::Visitor::* objects." msgstr "" =20 -#: gnu/packages/perl.scm:5795 +#: gnu/packages/perl.scm:5979 msgid "Minimal try/catch with proper preservation of $@" msgstr "" =20 -#: gnu/packages/perl.scm:5796 +#: gnu/packages/perl.scm:5980 msgid "" "This module provides bare bones try/catch/finally statements\n" "that are designed to minimize common mistakes with eval blocks, and not= hing\n" "else." msgstr "" =20 -#: gnu/packages/perl.scm:5817 +#: gnu/packages/perl.scm:6001 msgid "Data types for common serialisation formats" msgstr "" =20 -#: gnu/packages/perl.scm:5818 +#: gnu/packages/perl.scm:6002 msgid "" "This module provides some extra datatypes that are used by\n" "common serialisation formats such as JSON or CBOR." msgstr "" =20 -#: gnu/packages/perl.scm:5836 +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 msgid "UNIVERSAL::can() reimplementation" msgstr "" =20 -#: gnu/packages/perl.scm:5837 +#: gnu/packages/perl.scm:6043 msgid "" "This module attempts to work around people calling\n" "UNIVERSAL::can() as a function, which it is not." msgstr "" =20 -#: gnu/packages/perl.scm:5857 +#: gnu/packages/perl.scm:6063 msgid "UNIVERSAL::isa() reimplementation" msgstr "" =20 -#: gnu/packages/perl.scm:5858 +#: gnu/packages/perl.scm:6064 msgid "" "This module attempts to recover from people calling\n" "UNIVERSAL::isa as a function." msgstr "" =20 -#: gnu/packages/perl.scm:5876 +#: gnu/packages/perl.scm:6082 msgid "Associate user-defined magic to variables from Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5877 +#: gnu/packages/perl.scm:6083 msgid "" "Magic is Perl's way of enhancing variables. This mechanism\n" "lets the user add extra data to any variable and hook syntactical\n" -"operations (such as access, assignment or destruction) that can be appl= ied to\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" "it. With this module, you can add your own magic to any variable witho= ut\n" "having to write a single line of XS." msgstr "" =20 -#: gnu/packages/perl.scm:5900 +#: gnu/packages/perl.scm:6106 msgid "YAML for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5901 +#: gnu/packages/perl.scm:6107 msgid "" "The YAML.pm module implements a YAML Loader and Dumper based\n" "on the YAML 1.0 specification." msgstr "" =20 -#: gnu/packages/perl.scm:5924 +#: gnu/packages/perl.scm:6130 msgid "Read/Write YAML files" msgstr "" =20 -#: gnu/packages/perl.scm:5925 +#: gnu/packages/perl.scm:6131 msgid "" "YAML::Tiny is a perl class for reading and writing\n" -"YAML-style files, written with as little code as possible, reducing loa= d time\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" "and memory overhead." msgstr "" =20 -#: gnu/packages/perl.scm:5952 +#: gnu/packages/perl.scm:6158 msgid "Distribution metadata for a CPAN dist" msgstr "" =20 -#: gnu/packages/perl.scm:5953 +#: gnu/packages/perl.scm:6159 msgid "" "Software distributions released to the CPAN include a\n" "META.json or, for older distributions, META.yml, which describes the\n" -"distribution, its contents, and the requirements for building and insta= lling\n" +"distribution, its contents, and the requirements for building and " +"installing\n" "the distribution. The data structure stored in the META.json file is\n= " "described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " "represent this distribution metadata (or distmeta), along with some hel= pful\n" "methods for interrogating that data." msgstr "" =20 -#: gnu/packages/perl.scm:5976 +#: gnu/packages/perl.scm:6182 msgid "Set of version requirements for a CPAN dist" msgstr "" =20 -#: gnu/packages/perl.scm:5977 +#: gnu/packages/perl.scm:6183 msgid "" "A CPAN::Meta::Requirements object models a set of version\n" "constraints like those specified in the META.yml or META.json files in = CPAN\n" @@ -7862,50 +9003,55 @@ msgid "" "representation." msgstr "" =20 -#: gnu/packages/perl.scm:6000 +#: gnu/packages/perl.scm:6206 msgid "Read and write a subset of YAML for CPAN Meta files" msgstr "" =20 -#: gnu/packages/perl.scm:6001 +#: gnu/packages/perl.scm:6207 msgid "" "This module implements a subset of the YAML specification\n" "for use in reading and writing CPAN metadata files like META.yml and\n" "MYMETA.yml." msgstr "" =20 -#: gnu/packages/perl.scm:6022 +#: gnu/packages/perl.scm:6228 msgid "Build and install Perl modules" msgstr "" =20 -#: gnu/packages/perl.scm:6023 +#: gnu/packages/perl.scm:6229 msgid "" -"\"Module::Build\" is a system for building, testing, and\n" -"installing Perl modules. It is meant to be an alternative to\n" -"\"ExtUtils::MakeMaker\". Developers may alter the behavior of the modu= le\n" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" "through subclassing in a much more straightforward way than with\n" -"\"MakeMaker\". It also does not require a \"make\" on your system - mo= st of\n" -"the \"Module::Build\" code is pure-perl and written in a cross-platform= way." +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." msgstr "" =20 -#: gnu/packages/perl.scm:6047 +#: gnu/packages/perl.scm:6254 msgid "Parse META.yml and META.json CPAN metadata files" msgstr "" =20 -#: gnu/packages/perl.scm:6048 +#: gnu/packages/perl.scm:6255 msgid "" "Parse::CPAN::Meta is a parser for META.json and META.yml\n" "files, using JSON::PP and/or CPAN::Meta::YAML." msgstr "" =20 -#: gnu/packages/perl.scm:6066 +#: gnu/packages/perl.scm:6273 msgid "Common Scalar and List utility subroutines" msgstr "" =20 -#: gnu/packages/perl.scm:6067 +#: gnu/packages/perl.scm:6274 msgid "" "This package contains a selection of subroutines that people\n" -"have expressed would be nice to have in the perl core, but the usage wo= uld not\n" -"really be high enough to warrant the use of a keyword, and the size so = small\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" "such that being individual extensions would be wasteful." msgstr "" =20 @@ -7936,7 +9082,8 @@ msgstr "" #: gnu/packages/photo.scm:109 msgid "" "This is the library backend for gphoto2. It contains the code for PTP,= \n" -"MTP, and other vendor specific protocols for controlling and transferri= ng data\n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" "from digital cameras." msgstr "" =20 @@ -7983,15 +9130,16 @@ msgid "" "scene to produce an image that looks much like a tone-mapped image." msgstr "" =20 -#: gnu/packages/qemu.scm:119 -msgid "Machine emulator and virtualizer (without GUI)" +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" msgstr "" =20 -#: gnu/packages/qemu.scm:121 +#: gnu/packages/qemu.scm:153 msgid "" "QEMU is a generic machine emulator and virtualizer.\n" "\n" -"When used as a machine emulator, QEMU can run OSes and programs made fo= r one\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" "machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" "using dynamic translation, it achieves very good performance.\n" "\n" @@ -8002,8 +9150,8 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" =20 -#: gnu/packages/qemu.scm:143 -msgid "Machine emulator and virtualizer" +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" msgstr "" =20 #: gnu/packages/ratpoison.scm:85 @@ -8051,22 +9199,22 @@ msgid "" "package contains the library and drivers." msgstr "" =20 -#: gnu/packages/scheme.scm:132 +#: gnu/packages/scheme.scm:169 msgid "A Scheme implementation with integrated editor and debugger" msgstr "" =20 -#: gnu/packages/scheme.scm:134 +#: gnu/packages/scheme.scm:171 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It a= lso\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" =20 -#: gnu/packages/scheme.scm:217 +#: gnu/packages/scheme.scm:254 msgid "Efficient Scheme compiler" msgstr "" =20 -#: gnu/packages/scheme.scm:219 +#: gnu/packages/scheme.scm:256 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling\n" "Scheme based programming style where C(++) is usually\n" @@ -8078,86 +9226,93 @@ msgid "" "Scheme and C programs and between Scheme and Java programs." msgstr "" =20 -#: gnu/packages/scheme.scm:262 +#: gnu/packages/scheme.scm:300 msgid "Multi-tier programming language for the Web 2.0" msgstr "" =20 -#: gnu/packages/scheme.scm:264 +#: gnu/packages/scheme.scm:302 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\= n" -"applications in many fields such as multimedia (web galleries, music pl= ayers,\n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" "...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" =20 -#: gnu/packages/scheme.scm:304 +#: gnu/packages/scheme.scm:342 msgid "R5RS Scheme implementation that compiles native code via C" msgstr "" =20 -#: gnu/packages/scheme.scm:306 +#: gnu/packages/scheme.scm:344 msgid "" "CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" "produces portable and efficient C, supports almost all of the R5RS Sche= me\n" "language standard, and includes many enhancements and extensions." msgstr "" =20 -#: gnu/packages/scheme.scm:325 +#: gnu/packages/scheme.scm:363 msgid "Scheme implementation using a bytecode interpreter" msgstr "" =20 -#: gnu/packages/scheme.scm:327 +#: gnu/packages/scheme.scm:365 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\= n" "implementation techniques and as an expository tool." msgstr "" =20 -#: gnu/packages/scheme.scm:403 +#: gnu/packages/scheme.scm:441 msgid "Implementation of Scheme and related languages" msgstr "" =20 -#: gnu/packages/scheme.scm:405 +#: gnu/packages/scheme.scm:443 msgid "" "Racket is an implementation of the Scheme programming language (R5RS an= d\n" -"R6RS) and related languages, such as Typed Racket. It features a compi= ler and\n" -"a virtual machine with just-in-time native compilation, as well as a la= rge set\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" "of libraries." msgstr "" =20 -#: gnu/packages/scheme.scm:443 +#: gnu/packages/scheme.scm:481 msgid "Efficient Scheme interpreter and compiler" msgstr "" =20 -#: gnu/packages/scheme.scm:445 +#: gnu/packages/scheme.scm:483 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" "the complete execution and debugging environment. The compiler is the\= n" -"interpreter extended with the capability of generating executable files= . The\n" -"compiler can produce standalone executables or compiled modules which c= an be\n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" "loaded at run time. Interpreted code and compiled code can be freely\n= " "mixed." msgstr "" =20 -#: gnu/packages/scheme.scm:482 +#: gnu/packages/scheme.scm:520 msgid "Small embeddable Scheme implementation" msgstr "" =20 -#: gnu/packages/scheme.scm:484 +#: gnu/packages/scheme.scm:522 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. = In\n" -"addition to support for lightweight VM-based threads, each VM itself ru= ns in\n" -"an isolated heap allowing multiple VMs to run simultaneously in differe= nt OS\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" "threads." msgstr "" =20 -#: gnu/packages/scheme.scm:660 +#: gnu/packages/scheme.scm:699 msgid "Scmutils library for MIT Scheme" msgstr "" =20 -#: gnu/packages/scheme.scm:661 +#: gnu/packages/scheme.scm:700 msgid "" "The Scmutils system is an integrated library of\n" "procedures, embedded in the programming language Scheme, and intended t= o\n" @@ -8184,7 +9339,8 @@ msgstr "" #: gnu/packages/search.scm:99 msgid "" "libtocc is the engine of the Tocc project, a tag-based file management\= n" -"system. The goal of Tocc is to provide a better system for classifying= files\n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" "that is more flexible than classic file systems that are based on a tre= e of\n" "files and directories." msgstr "" @@ -8229,24 +9385,25 @@ msgid "" "server and an IRC server." msgstr "" =20 -#: gnu/packages/telephony.scm:50 +#: gnu/packages/telephony.scm:52 msgid "(u)Common C++ framework for threaded applications" msgstr "" =20 -#: gnu/packages/telephony.scm:51 +#: gnu/packages/telephony.scm:53 msgid "" "GNU Common C++ is an portable, optimized class framework for\n" "threaded applications, supporting concurrent synchronization, inter-pro= cess\n" "communications via sockets, and various methods for data handling, such= as\n" -"serialization and XML parsing. It includes the uCommon C++ library, a = smaller\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" "reimplementation." msgstr "" =20 -#: gnu/packages/telephony.scm:70 +#: gnu/packages/telephony.scm:73 msgid "Common C++ framework for threaded applications" msgstr "" =20 -#: gnu/packages/telephony.scm:71 +#: gnu/packages/telephony.scm:74 msgid "" "GNU uCommon C++ is meant as a very light-weight C++ library\n" "to facilitate using C++ design patterns even for very deeply embedded\n= " @@ -8254,11 +9411,11 @@ msgid "" "support." msgstr "" =20 -#: gnu/packages/telephony.scm:92 +#: gnu/packages/telephony.scm:95 msgid "Implementation of RTP (real-time transport protocol)" msgstr "" =20 -#: gnu/packages/telephony.scm:93 +#: gnu/packages/telephony.scm:96 msgid "" "GNU ccRTP is an implementation of RTP, the real-time transport\n" "protocol from the IETF. It is suitable both for high capacity servers = and\n" @@ -8267,94 +9424,107 @@ msgid "" "packet-manipulation library." msgstr "" =20 -#: gnu/packages/telephony.scm:113 +#: gnu/packages/telephony.scm:116 msgid "Library implementing SIP (RFC-3261)" msgstr "" =20 -#: gnu/packages/telephony.scm:114 +#: gnu/packages/telephony.scm:117 msgid "" "GNU oSIP is an implementation of the SIP protocol. It is\n" -"used to provide multimedia and telecom software developers with an inte= rface\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" "to initiate and control SIP sessions." msgstr "" =20 -#: gnu/packages/telephony.scm:134 +#: gnu/packages/telephony.scm:137 msgid "Sip abstraction library" msgstr "" =20 -#: gnu/packages/telephony.scm:135 +#: gnu/packages/telephony.scm:138 msgid "" "EXosip is a library that hides the complexity of using the\n" -"SIP protocol for multimedia session establishment. This protocol is ma= inly to\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" "be used by VoIP telephony applications (endpoints or conference server)= but\n" -"might be also useful for any application that wish to establish session= s like\n" +"might be also useful for any application that wish to establish session= s " +"like\n" "multiplayer games." msgstr "" =20 -#: gnu/packages/telephony.scm:178 +#: gnu/packages/telephony.scm:181 msgid "Secure peer-to-peer VoIP server for the SIP protocol" msgstr "" =20 -#: gnu/packages/telephony.scm:179 +#: gnu/packages/telephony.scm:182 msgid "" "GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" "uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" -"without the need for a service provider. Its peer-to-peer design ensur= es that\n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" "there is no central point for media intercept or capture and thus it ca= n be\n" "used to construct a secure telephone system that operates over the publ= ic\n" "internet." msgstr "" =20 -#: gnu/packages/telephony.scm:204 +#: gnu/packages/telephony.scm:207 msgid "Secure RTP (SRTP) Reference Implementation" msgstr "" =20 -#: gnu/packages/telephony.scm:205 +#: gnu/packages/telephony.scm:208 msgid "" "This package provides an implementation of the Secure\n" -"Real-time Transport Protocol (SRTP), the Universal Security Transform (= UST),\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" "and a supporting cryptographic kernel." msgstr "" =20 -#: gnu/packages/texinfo.scm:56 +#: gnu/packages/texinfo.scm:55 msgid "The GNU documentation format" msgstr "" =20 -#: gnu/packages/texinfo.scm:58 +#: gnu/packages/texinfo.scm:57 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" -"uses a single source file using explicit commands to produce a final do= cument\n" +"uses a single source file using explicit commands to produce a final " +"document\n" "in any of several supported output formats, such as HTML or PDF. This\= n" "package includes both the tools necessary to produce Info documents fro= m\n" -"their source and the command-line Info reader. The emphasis of the lan= guage\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" "is on expressing the content semantically, avoiding physical markup com= mands." msgstr "" =20 -#: gnu/packages/texinfo.scm:116 +#: gnu/packages/texinfo.scm:132 msgid "Convert Texinfo to HTML" msgstr "" =20 -#: gnu/packages/texinfo.scm:118 +#: gnu/packages/texinfo.scm:134 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" -"output. It now supports many advanced features, such as internationali= zation\n" +"output. It now supports many advanced features, such as " +"internationalization\n" "and extremely configurable output formats.\n" "\n" -"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince it\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" "was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" -"forward for authors is, in most cases, to alter manuals and build proce= sses as\n" -"necessary to use the new features of the makeinfo/texi2any implementati= on of\n" -"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal a= uthor\n" -"of the GNU Texinfo implementation) do not intend to make further releas= es of\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" "Texi2HTML." msgstr "" =20 -#: gnu/packages/texlive.scm:156 gnu/packages/texlive.scm:216 -#: gnu/packages/texlive.scm:274 +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 msgid "TeX Live, a package of the TeX typesetting system" msgstr "" =20 -#: gnu/packages/texlive.scm:158 +#: gnu/packages/texlive.scm:157 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fon= ts\n" @@ -8364,7 +9534,7 @@ msgid "" "This package contains the binaries." msgstr "" =20 -#: gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:220 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fon= ts\n" @@ -8374,7 +9544,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" =20 -#: gnu/packages/texlive.scm:276 +#: gnu/packages/texlive.scm:278 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fon= ts\n" @@ -8384,128 +9554,179 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" =20 -#: gnu/packages/texlive.scm:305 +#: gnu/packages/texlive.scm:307 msgid "Wrapper for LaTeX and friends" msgstr "" =20 -#: gnu/packages/texlive.scm:307 +#: gnu/packages/texlive.scm:309 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the= \n" -"compilation of LaTeX documents. This includes compiling the document i= tself,\n" -"of course, enough times so that all references are defined, and running= BibTeX\n" -"to manage bibliographic references. Automatic execution of dvips to pr= oduce\n" -"PostScript documents is also included, as well as usage of pdfLaTeX to = produce\n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" "PDF documents." msgstr "" =20 -#: gnu/packages/textutils.scm:58 +#: gnu/packages/textutils.scm:61 msgid "Text encoding converter" msgstr "" =20 -#: gnu/packages/textutils.scm:59 +#: gnu/packages/textutils.scm:62 msgid "" "The Recode library converts files between character sets and\n" -"usages. It recognises or produces over 200 different character sets (o= r about\n" -"300 if combined with an iconv library) and transliterates files between= almost\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" "any pair. When exact transliteration are not possible, it gets rid of\= n" -"offending characters or falls back on approximations. The recode progr= am is a\n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" "handy front-end to the library." msgstr "" =20 -#: gnu/packages/textutils.scm:86 +#: gnu/packages/textutils.scm:90 msgid "Text encoding detection tool" msgstr "" =20 -#: gnu/packages/textutils.scm:87 +#: gnu/packages/textutils.scm:91 msgid "" "Enca (Extremely Naive Charset Analyser) consists of libenca,\n" -"an encoding detection library, and enca, a command line frontend, integ= rating\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" "libenca and several charset conversion libraries and tools." msgstr "" =20 -#: gnu/packages/textutils.scm:122 +#: gnu/packages/textutils.scm:118 msgid "C library for processing UTF-8 Unicode data" msgstr "" =20 -#: gnu/packages/textutils.scm:123 +#: gnu/packages/textutils.scm:119 msgid "" "utf8proc is a small C library that provides Unicode\n" "normalization, case-folding, and other operations for data in the UTF-8= \n" "encoding, supporting Unicode version 7.0." msgstr "" =20 -#: gnu/packages/textutils.scm:152 +#: gnu/packages/textutils.scm:148 msgid "Gordon's text utils library" msgstr "" =20 -#: gnu/packages/textutils.scm:154 +#: gnu/packages/textutils.scm:150 msgid "" "libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" "the Hannon Lab." msgstr "" =20 -#: gnu/packages/textutils.scm:175 +#: gnu/packages/textutils.scm:171 msgid "C++ hash functions for strings" msgstr "" =20 -#: gnu/packages/textutils.scm:177 +#: gnu/packages/textutils.scm:173 msgid "" "CityHash provides hash functions for strings. The functions mix the\n" "input bits thoroughly but are not suitable for cryptography." msgstr "" =20 -#: gnu/packages/version-control.scm:97 -msgid "Version control system supporting both distributed and centralize= d workflows" +#: gnu/packages/textutils.scm:190 +msgid "C/C++ configuration file library" +msgstr "" + +#: gnu/packages/textutils.scm:192 +msgid "" +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." +msgstr "" + +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" + +#: gnu/packages/textutils.scm:214 +msgid "" +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." +msgstr "" + +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" msgstr "" =20 -#: gnu/packages/version-control.scm:99 +#: gnu/packages/version-control.scm:105 msgid "" "GNU Bazaar is a version control system that allows you to record\n" -"changes to project files over time. It supports both a distributed wor= kflow\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" "as well as the classic centralized workflow." msgstr "" =20 -#: gnu/packages/version-control.scm:258 +#: gnu/packages/version-control.scm:264 msgid "Distributed version control system" msgstr "" =20 -#: gnu/packages/version-control.scm:260 +#: gnu/packages/version-control.scm:266 msgid "" "Git is a free distributed version control system designed to handle\n" "everything from small to very large projects with speed and efficiency.= " msgstr "" =20 -#: gnu/packages/version-control.scm:305 +#: gnu/packages/version-control.scm:311 msgid "Man pages of the Git version control system" msgstr "" =20 -#: gnu/packages/version-control.scm:307 +#: gnu/packages/version-control.scm:313 msgid "" "This package provides the man pages of the Git version control system.\= n" -"This is the documentation displayed when using the '--help' option of a= 'git'\n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" "command." msgstr "" =20 -#: gnu/packages/version-control.scm:344 +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" + +#: gnu/packages/version-control.scm:354 +msgid "" +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." +msgstr "" + +#: gnu/packages/version-control.scm:393 msgid "Command-line flags library for shell scripts" msgstr "" =20 -#: gnu/packages/version-control.scm:346 +#: gnu/packages/version-control.scm:395 msgid "" "Shell Flags (shFlags) is a library written to greatly simplify the\n" -"handling of command-line flags in Bourne based Unix shell scripts (bash= , dash,\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" "ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" "different versions of getopt on various OSes make writing portable shel= l\n" -"scripts difficult. shFlags instead provides an API that doesn't change= across\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" "shell and OS versions so the script writer can be confident that the sc= ript\n" "will work." msgstr "" =20 -#: gnu/packages/version-control.scm:389 +#: gnu/packages/version-control.scm:438 msgid "Git extensions for Vincent Driessen's branching model" msgstr "" =20 -#: gnu/packages/version-control.scm:391 +#: gnu/packages/version-control.scm:440 msgid "" "Vincent Driessen's branching model is a git branching and release\n" "management strategy that helps developers keep track of features, hotfi= xes,\n" @@ -8514,43 +9735,43 @@ msgid "" "lot easier." msgstr "" =20 -#: gnu/packages/version-control.scm:426 +#: gnu/packages/version-control.scm:475 msgid "Run a command over a sequence of commits" msgstr "" =20 -#: gnu/packages/version-control.scm:428 +#: gnu/packages/version-control.scm:477 msgid "" "git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" "linear. It will test every change between two points in the DAG. It w= ill\n" "also walk each side of a merge and test those changes individually." msgstr "" =20 -#: gnu/packages/version-control.scm:486 +#: gnu/packages/version-control.scm:535 msgid "Git access control layer" msgstr "" =20 -#: gnu/packages/version-control.scm:488 +#: gnu/packages/version-control.scm:537 msgid "" "Gitolite is an access control layer on top of Git, providing fine acces= s\n" "control to Git repositories." msgstr "" =20 -#: gnu/packages/version-control.scm:512 +#: gnu/packages/version-control.scm:561 msgid "Decentralized version control system" msgstr "" =20 -#: gnu/packages/version-control.scm:514 +#: gnu/packages/version-control.scm:563 msgid "" "Mercurial is a free, distributed source control management tool.\n" "It efficiently handles projects of any size\n" "and offers an easy and intuitive interface." msgstr "" =20 -#: gnu/packages/version-control.scm:548 +#: gnu/packages/version-control.scm:597 msgid "HTTP and WebDAV client library" msgstr "" =20 -#: gnu/packages/version-control.scm:549 +#: gnu/packages/version-control.scm:598 msgid "" "Neon is an HTTP and WebDAV client library, with a\n" "C interface. Features:\n" @@ -8570,37 +9791,39 @@ msgid "" "property manipulation." msgstr "" =20 -#: gnu/packages/version-control.scm:628 +#: gnu/packages/version-control.scm:677 msgid "Revision control system" msgstr "" =20 -#: gnu/packages/version-control.scm:630 +#: gnu/packages/version-control.scm:679 msgid "" "Subversion exists to be universally recognized and adopted as a\n" "centralized version control system characterized by its\n" -"reliability as a safe haven for valuable data; the simplicity of its mo= del and\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" "usage; and its ability to support the needs of a wide variety of users = and\n" "projects, from individuals to large-scale enterprise operations." msgstr "" =20 -#: gnu/packages/version-control.scm:651 +#: gnu/packages/version-control.scm:700 msgid "Per-file local revision control system" msgstr "" =20 -#: gnu/packages/version-control.scm:653 +#: gnu/packages/version-control.scm:702 msgid "" "RCS is the original Revision Control System. It works on a\n" -"file-by-file basis, in contrast to subsequent version control systems s= uch as\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" "CVS, Subversion, and Git. This can make it suitable for system\n" "administration files, for example, which are often inherently local to = one\n" "machine." msgstr "" =20 -#: gnu/packages/version-control.scm:679 +#: gnu/packages/version-control.scm:729 msgid "Historical centralized version control system" msgstr "" =20 -#: gnu/packages/version-control.scm:681 +#: gnu/packages/version-control.scm:731 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history o= f\n" @@ -8608,28 +9831,31 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" =20 -#: gnu/packages/version-control.scm:714 +#: gnu/packages/version-control.scm:764 msgid "Export an RCS or CVS history as a fast-import stream" msgstr "" =20 -#: gnu/packages/version-control.scm:715 +#: gnu/packages/version-control.scm:765 msgid "" "This program analyzes a collection of RCS files in a CVS\n" -"repository (or outside of one) and, when possible, emits an equivalent = history\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" "in the form of a fast-import stream. Not all possible histories can be= \n" "rendered this way; the program tries to emit useful warnings when it ca= n't.\n" "\n" -"The program can also produce a visualization of the resulting commit di= rected\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" "acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" -"Graphviz}. The package also includes @command{cvssync}, a tool for mir= roring\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" "masters from remote CVS hosts." msgstr "" =20 -#: gnu/packages/version-control.scm:742 +#: gnu/packages/version-control.scm:792 msgid "Version-control-agnostic ChangeLog diff and commit tool" msgstr "" =20 -#: gnu/packages/version-control.scm:744 +#: gnu/packages/version-control.scm:794 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" @@ -8639,453 +9865,512 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it dete= cts." msgstr "" =20 -#: gnu/packages/version-control.scm:766 +#: gnu/packages/version-control.scm:816 msgid "Make histograms from the output of 'diff'" msgstr "" =20 -#: gnu/packages/version-control.scm:768 +#: gnu/packages/version-control.scm:818 msgid "" "Diffstat reads the output of 'diff' and displays a histogram of the\n" -"insertions, deletions, and modifications per-file. It is useful for re= viewing\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" "large, complex patch files." msgstr "" =20 -#: gnu/packages/version-control.scm:809 +#: gnu/packages/version-control.scm:859 msgid "File-based version control like SCCS" msgstr "" =20 -#: gnu/packages/version-control.scm:810 +#: gnu/packages/version-control.scm:860 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" -"code control system SCCS. This allows old code still under that system= to be\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" "accessed and migrated on modern systems." msgstr "" =20 -#: gnu/packages/version-control.scm:891 +#: gnu/packages/version-control.scm:941 msgid "Project change supervisor" msgstr "" =20 -#: gnu/packages/version-control.scm:892 +#: gnu/packages/version-control.scm:942 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Ae= gis\n" "provides a framework within which a team of developers may work on many= \n" "changes to a program independently, and Aegis coordinates integrating t= hese\n" -"changes back into the master source of the program, with as little disr= uption\n" -"as possible. Resolution of contention for source files, a major headac= he for\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" "any project with more than one developer, is one of Aegis's major funct= ions." msgstr "" =20 -#: gnu/packages/version-control.scm:919 +#: gnu/packages/version-control.scm:970 msgid "Ncurses-based text user interface for Git" msgstr "" =20 -#: gnu/packages/version-control.scm:921 +#: gnu/packages/version-control.scm:972 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the= \n" "output of the 'git' command." msgstr "" =20 -#: gnu/packages/webkit.scm:121 -msgid "Web content engine for GTK+" +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" + +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." +msgstr "" + +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" + +#: gnu/packages/version-control.scm:1027 +msgid "" +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." +msgstr "" + +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" + +#: gnu/packages/version-control.scm:1059 +msgid "" +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." msgstr "" =20 #: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" + +#: gnu/packages/webkit.scm:125 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybri= d\n" "HTML/CSS applications to full-fledged web browsers." msgstr "" =20 -#: gnu/packages/web.scm:88 +#: gnu/packages/web.scm:89 msgid "Featureful HTTP server" msgstr "" =20 -#: gnu/packages/web.scm:90 +#: gnu/packages/web.scm:91 msgid "" "The Apache HTTP Server Project is a collaborative software development\= n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" "freely-available source code implementation of an HTTP (Web) server. T= he\n" -"project is jointly managed by a group of volunteers located around the = world,\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" "using the Internet and the Web to communicate, plan, and develop the se= rver\n" "and its related documentation." msgstr "" =20 -#: gnu/packages/web.scm:168 +#: gnu/packages/web.scm:169 msgid "HTTP and reverse proxy server" msgstr "" =20 -#: gnu/packages/web.scm:170 +#: gnu/packages/web.scm:171 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" "created by Igor Sysoev. It can be used both as a standalone web server= \n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" =20 -#: gnu/packages/web.scm:206 +#: gnu/packages/web.scm:207 msgid "PSGI/Plack web server" msgstr "" =20 -#: gnu/packages/web.scm:207 +#: gnu/packages/web.scm:208 msgid "" "Starman is a PSGI perl web server that has unique features\n" -"such as high performance, preforking, signal support, superdaemon aware= ness,\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" "and UNIX socket support." msgstr "" =20 -#: gnu/packages/web.scm:226 +#: gnu/packages/web.scm:227 msgid "JSON C library" msgstr "" =20 -#: gnu/packages/web.scm:228 +#: gnu/packages/web.scm:229 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" =20 -#: gnu/packages/web.scm:259 +#: gnu/packages/web.scm:261 msgid "JSON implementation in C" msgstr "" =20 -#: gnu/packages/web.scm:261 +#: gnu/packages/web.scm:263 msgid "" "JSON-C implements a reference counting object model that allows you to\= n" -"easily construct JSON objects in C, output them as JSON formatted strin= gs and\n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" "parse JSON formatted strings back into the C representation of JSON obj= ects." msgstr "" =20 -#: gnu/packages/web.scm:287 +#: gnu/packages/web.scm:289 msgid "JSON parser/generator for C++ with both SAX/DOM style API" msgstr "" =20 -#: gnu/packages/web.scm:289 +#: gnu/packages/web.scm:291 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" =20 -#: gnu/packages/web.scm:307 +#: gnu/packages/web.scm:309 msgid "C library for parsing JSON" msgstr "" =20 -#: gnu/packages/web.scm:309 +#: gnu/packages/web.scm:311 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" =20 -#: gnu/packages/web.scm:339 +#: gnu/packages/web.scm:341 msgid "WebSockets library written in C" msgstr "" =20 -#: gnu/packages/web.scm:341 +#: gnu/packages/web.scm:343 msgid "" "Libwebsockets is a library that allows C programs to establish client\n= " -"and server WebSockets connections---a protocol layered above HTTP that = allows\n" +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" "for efficient socket-like bidirectional reliable communication channels= ." msgstr "" =20 -#: gnu/packages/web.scm:376 +#: gnu/packages/web.scm:378 msgid "C library for the Publix Suffix List" msgstr "" =20 -#: gnu/packages/web.scm:378 +#: gnu/packages/web.scm:380 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" "\n" "Browsers and other web clients can use it to avoid privacy-leaking\n" -"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = domain\n" -"highlighting parts of the domain in a user interface, and sorting domai= n lists\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" "by site.\n" "\n" "Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" -"files, checks if a given domain is a public suffix, provides immediate = cookie\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" "domain verification, finds the longest public part of a given domain, f= inds\n" "the shortest private part of a given domain, works with international\n= " "domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" "UTS#46." msgstr "" =20 -#: gnu/packages/web.scm:424 +#: gnu/packages/web.scm:426 msgid "HTML validator and tidier" msgstr "" =20 -#: gnu/packages/web.scm:425 +#: gnu/packages/web.scm:427 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" =20 -#: gnu/packages/web.scm:465 +#: gnu/packages/web.scm:468 msgid "Light-weight HTTP/HTTPS proxy daemon" msgstr "" =20 -#: gnu/packages/web.scm:466 +#: gnu/packages/web.scm:469 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" -"daemon. Designed from the ground up to be fast and yet small, it is an= ideal\n" -"solution for use cases such as embedded deployments where a full featur= ed HTTP\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" "proxy is required, but the system resources for a larger proxy are\n" "unavailable." msgstr "" =20 -#: gnu/packages/web.scm:499 +#: gnu/packages/web.scm:502 msgid "Small caching web proxy" msgstr "" =20 -#: gnu/packages/web.scm:501 +#: gnu/packages/web.scm:504 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " -"server). It was primarily designed to be used by one person or a small= group\n" +"server). It was primarily designed to be used by one person or a small= " +"group\n" "of people." msgstr "" =20 -#: gnu/packages/web.scm:521 +#: gnu/packages/web.scm:524 msgid "YAML 1.1 parser and emitter written in C" msgstr "" =20 -#: gnu/packages/web.scm:523 +#: gnu/packages/web.scm:526 msgid "LibYAML is a YAML 1.1 parser and emitter written in C." msgstr "" =20 -#: gnu/packages/web.scm:539 gnu/packages/web.scm:572 gnu/packages/web.sc= m:594 +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 msgid "Media stream URL parser" msgstr "" =20 -#: gnu/packages/web.scm:540 +#: gnu/packages/web.scm:543 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" =20 -#: gnu/packages/web.scm:573 +#: gnu/packages/web.scm:576 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" =20 -#: gnu/packages/web.scm:595 +#: gnu/packages/web.scm:598 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." msgstr "" =20 -#: gnu/packages/web.scm:658 +#: gnu/packages/web.scm:661 msgid "High-performance asynchronous HTTP client library" msgstr "" =20 -#: gnu/packages/web.scm:660 +#: gnu/packages/web.scm:663 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" -"communication asynchronously. Memory copies and transformations are ke= pt to a\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" "minimum to provide high performance operation." msgstr "" =20 -#: gnu/packages/web.scm:715 +#: gnu/packages/web.scm:718 msgid "CSS pre-processor" msgstr "" =20 -#: gnu/packages/web.scm:716 +#: gnu/packages/web.scm:719 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" =20 -#: gnu/packages/web.scm:744 +#: gnu/packages/web.scm:748 msgid "Compile a log format string to perl-code" msgstr "" =20 -#: gnu/packages/web.scm:745 +#: gnu/packages/web.scm:749 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" =20 -#: gnu/packages/web.scm:766 +#: gnu/packages/web.scm:770 msgid "SASL authentication framework" msgstr "" =20 -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:771 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" =20 -#: gnu/packages/web.scm:791 +#: gnu/packages/web.scm:795 msgid "Sensible default Catalyst action" msgstr "" =20 -#: gnu/packages/web.scm:792 +#: gnu/packages/web.scm:796 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" =20 -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:824 msgid "Automated REST Method Dispatching" msgstr "" =20 -#: gnu/packages/web.scm:821 +#: gnu/packages/web.scm:825 msgid "" "This Action handles doing automatic method dispatching for\n" -"REST requests. It takes a normal Catalyst action, and changes the disp= atch to\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" "append an underscore and method name. First it will try dispatching to= an\n" -"action with the generated name, and failing that it will try to dispatc= h to a\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" "regular method." msgstr "" =20 -#: gnu/packages/web.scm:857 +#: gnu/packages/web.scm:861 msgid "Storage class for Catalyst authentication using DBIx::Class" msgstr "" =20 -#: gnu/packages/web.scm:858 +#: gnu/packages/web.scm:862 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\= n" "DBIx::Class." msgstr "" =20 -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:886 msgid "Create only one instance of Moose component per context" msgstr "" =20 -#: gnu/packages/web.scm:883 +#: gnu/packages/web.scm:887 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" =20 -#: gnu/packages/web.scm:920 +#: gnu/packages/web.scm:924 msgid "Catalyst Development Tools" msgstr "" =20 -#: gnu/packages/web.scm:921 +#: gnu/packages/web.scm:925 msgid "" "The Catalyst-Devel distribution includes a variety of\n" -"modules useful for the development of Catalyst applications, but not re= quired\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" "to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" -"autogenerates scripts and tests; Module::Install::Catalyst, a Module::I= nstall\n" -"extension for Catalyst; and requirements for a variety of development-r= elated\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" "modules." msgstr "" =20 -#: gnu/packages/web.scm:950 +#: gnu/packages/web.scm:954 msgid "Regex DispatchType for Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:951 +#: gnu/packages/web.scm:955 msgid "" "Dispatch type managing path-matching behaviour using\n" -"regexes. Regex dispatch types have been deprecated and removed from Ca= talyst\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" "core. It is recommend that you use Chained methods or other techniques= \n" -"instead. As part of the refactoring, the dispatch priority of Regex vs= Regexp\n" -"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced by\n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" "when the dispatch type is first seen in your application." msgstr "" =20 -#: gnu/packages/web.scm:999 +#: gnu/packages/web.scm:1003 msgid "DBIx::Class::Schema Model Class" msgstr "" =20 -#: gnu/packages/web.scm:1000 +#: gnu/packages/web.scm:1004 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" =20 -#: gnu/packages/web.scm:1024 +#: gnu/packages/web.scm:1028 msgid "Request logging from within Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:1025 +#: gnu/packages/web.scm:1029 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" -"from within a Catalyst application instead of requiring a webserver to = do it\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" =20 -#: gnu/packages/web.scm:1057 +#: gnu/packages/web.scm:1061 msgid "Infrastructure plugin for the Catalyst authentication framework" msgstr "" =20 -#: gnu/packages/web.scm:1058 +#: gnu/packages/web.scm:1062 msgid "" "The authentication plugin provides generic user support for\n" -"Catalyst apps. It is the basis for both authentication (checking the u= ser is\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" "who they claim to be), and authorization (allowing the user to do what = the\n" "system authorises them to do)." msgstr "" =20 -#: gnu/packages/web.scm:1088 +#: gnu/packages/web.scm:1092 msgid "Role-based authorization for Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:1089 +#: gnu/packages/web.scm:1093 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" =20 -#: gnu/packages/web.scm:1112 +#: gnu/packages/web.scm:1116 msgid "Captchas for Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:1113 +#: gnu/packages/web.scm:1117 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" =20 -#: gnu/packages/web.scm:1139 +#: gnu/packages/web.scm:1143 msgid "Load config files of various types" msgstr "" =20 -#: gnu/packages/web.scm:1140 +#: gnu/packages/web.scm:1144 msgid "" "This module will attempt to load find and load configuration\n" -"files of various types. Currently it supports YAML, JSON, XML, INI and= Perl\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" "formats." msgstr "" =20 -#: gnu/packages/web.scm:1170 +#: gnu/packages/web.scm:1174 msgid "Catalyst generic session plugin" msgstr "" =20 -#: gnu/packages/web.scm:1171 +#: gnu/packages/web.scm:1175 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" =20 -#: gnu/packages/web.scm:1197 +#: gnu/packages/web.scm:1201 msgid "Maintain session IDs using cookies" msgstr "" =20 -#: gnu/packages/web.scm:1198 +#: gnu/packages/web.scm:1202 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" -"ID needs to be stored on the client, and the session data needs to be s= tored\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" "on the server. This plugin stores the session ID on the client using t= he\n" "cookie mechanism." msgstr "" =20 -#: gnu/packages/web.scm:1228 +#: gnu/packages/web.scm:1232 msgid "FastMmap session storage backend" msgstr "" =20 -#: gnu/packages/web.scm:1229 +#: gnu/packages/web.scm:1233 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" =20 -#: gnu/packages/web.scm:1252 +#: gnu/packages/web.scm:1256 msgid "Stack trace on the Catalyst debug screen" msgstr "" =20 -#: gnu/packages/web.scm:1253 +#: gnu/packages/web.scm:1257 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the e= rror\n" @@ -9093,38 +10378,43 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" =20 -#: gnu/packages/web.scm:1279 +#: gnu/packages/web.scm:1283 msgid "Simple serving of static pages" msgstr "" =20 -#: gnu/packages/web.scm:1280 +#: gnu/packages/web.scm:1284 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\= n" -"requiring a single line of code from you. This plugin detects static f= iles by\n" -"looking at the file extension in the URL (such as .css or .png or .js).= The\n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" "plugin uses the lightweight MIME::Types module to map file extensions t= o\n" -"IANA-registered MIME types, and will serve your static files with the c= orrect\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" "MIME type directly to the browser, without being processed through Cata= lyst." msgstr "" =20 -#: gnu/packages/web.scm:1346 +#: gnu/packages/web.scm:1351 msgid "The Catalyst Framework Runtime" msgstr "" =20 -#: gnu/packages/web.scm:1347 +#: gnu/packages/web.scm:1352 msgid "" "Catalyst is a modern framework for making web applications.\n" -"It is designed to make it easy to manage the various tasks you need to = do to\n" -"run an application on the web, either by doing them itself, or by letti= ng you\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" "\"plug in\" existing Perl modules that do what you need." msgstr "" =20 -#: gnu/packages/web.scm:1377 +#: gnu/packages/web.scm:1382 msgid "Replace request base with value passed by HTTP proxy" msgstr "" =20 -#: gnu/packages/web.scm:1378 +#: gnu/packages/web.scm:1383 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deploy= ed\n" @@ -9132,42 +10422,42 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" =20 -#: gnu/packages/web.scm:1404 +#: gnu/packages/web.scm:1409 msgid "Download data in many formats" msgstr "" =20 -#: gnu/packages/web.scm:1405 +#: gnu/packages/web.scm:1410 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloadi= ng a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" =20 -#: gnu/packages/web.scm:1430 +#: gnu/packages/web.scm:1435 msgid "Catalyst JSON view" msgstr "" =20 -#: gnu/packages/web.scm:1431 +#: gnu/packages/web.scm:1436 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" =20 -#: gnu/packages/web.scm:1456 +#: gnu/packages/web.scm:1461 msgid "Template View Class" msgstr "" =20 -#: gnu/packages/web.scm:1457 +#: gnu/packages/web.scm:1462 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" =20 -#: gnu/packages/web.scm:1486 +#: gnu/packages/web.scm:1491 msgid "Trait Loading and Resolution for Catalyst Components" msgstr "" =20 -#: gnu/packages/web.scm:1487 +#: gnu/packages/web.scm:1492 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parame= ter\n" @@ -9176,72 +10466,87 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" =20 -#: gnu/packages/web.scm:1512 +#: gnu/packages/web.scm:1517 msgid "Apply roles to Catalyst classes" msgstr "" =20 -#: gnu/packages/web.scm:1513 +#: gnu/packages/web.scm:1518 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" =20 -#: gnu/packages/web.scm:1539 +#: gnu/packages/web.scm:1544 msgid "Catalyst development server with Starman" msgstr "" =20 -#: gnu/packages/web.scm:1540 +#: gnu/packages/web.scm:1545 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" =20 -#: gnu/packages/web.scm:1560 +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" + +#: gnu/packages/web.scm:1570 +msgid "" +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." +msgstr "" + +#: gnu/packages/web.scm:1594 msgid "CGI interface that is CGI.pm compliant" msgstr "" =20 -#: gnu/packages/web.scm:1561 +#: gnu/packages/web.scm:1595 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" =20 -#: gnu/packages/web.scm:1582 +#: gnu/packages/web.scm:1616 msgid "Build structures from CGI data" msgstr "" =20 -#: gnu/packages/web.scm:1583 +#: gnu/packages/web.scm:1617 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" =20 -#: gnu/packages/web.scm:1604 +#: gnu/packages/web.scm:1640 msgid "Date conversion routines" msgstr "" =20 -#: gnu/packages/web.scm:1605 +#: gnu/packages/web.scm:1641 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" =20 -#: gnu/packages/web.scm:1625 +#: gnu/packages/web.scm:1661 msgid "MD5 sums for files and urls" msgstr "" =20 -#: gnu/packages/web.scm:1626 +#: gnu/packages/web.scm:1662 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" =20 -#: gnu/packages/web.scm:1644 +#: gnu/packages/web.scm:1680 msgid "Perl locale encoding determination" msgstr "" =20 -#: gnu/packages/web.scm:1646 +#: gnu/packages/web.scm:1682 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -9253,91 +10558,91 @@ msgid "" "with Encode::decode(locale =3D> $string)." msgstr "" =20 -#: gnu/packages/web.scm:1672 +#: gnu/packages/web.scm:1708 msgid "Perl directory listing parser" msgstr "" =20 -#: gnu/packages/web.scm:1674 +#: gnu/packages/web.scm:1710 msgid "" "The File::Listing module exports a single function called parse_dir(),\= n" "which can be used to parse directory listings." msgstr "" =20 -#: gnu/packages/web.scm:1705 +#: gnu/packages/web.scm:1742 msgid "Stock and mutual fund quotes" msgstr "" =20 -#: gnu/packages/web.scm:1707 +#: gnu/packages/web.scm:1744 msgid "" "Finance::Quote gets stock quotes from various internet sources, includi= ng\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." msgstr "" =20 -#: gnu/packages/web.scm:1729 +#: gnu/packages/web.scm:1766 msgid "Perl extension providing access to the GSSAPIv2 library" msgstr "" =20 -#: gnu/packages/web.scm:1730 +#: gnu/packages/web.scm:1767 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" =20 -#: gnu/packages/web.scm:1750 +#: gnu/packages/web.scm:1787 msgid "Manipulate tables of HTML::Element" msgstr "" =20 -#: gnu/packages/web.scm:1752 +#: gnu/packages/web.scm:1789 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" =20 -#: gnu/packages/web.scm:1776 +#: gnu/packages/web.scm:1813 msgid "Perl class representing an HTML form element" msgstr "" =20 -#: gnu/packages/web.scm:1777 +#: gnu/packages/web.scm:1814 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" =20 -#: gnu/packages/web.scm:1799 +#: gnu/packages/web.scm:1836 msgid "Check for HTML errors in a string or file" msgstr "" =20 -#: gnu/packages/web.scm:1800 +#: gnu/packages/web.scm:1837 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" =20 -#: gnu/packages/web.scm:1821 +#: gnu/packages/web.scm:1858 msgid "Extract contents from HTML tables" msgstr "" =20 -#: gnu/packages/web.scm:1823 +#: gnu/packages/web.scm:1860 msgid "" "HTML::TableExtract is a Perl module for extracting the content containe= d\n" "in tables within an HTML document, either as text or encoded element tr= ees." msgstr "" =20 -#: gnu/packages/web.scm:1847 +#: gnu/packages/web.scm:1885 msgid "Work with HTML in a DOM-like tree structure" msgstr "" =20 -#: gnu/packages/web.scm:1848 +#: gnu/packages/web.scm:1886 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax tre= es." msgstr "" =20 -#: gnu/packages/web.scm:1868 +#: gnu/packages/web.scm:1906 msgid "Perl HTML parser class" msgstr "" =20 -#: gnu/packages/web.scm:1870 +#: gnu/packages/web.scm:1908 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As differen= t\n" @@ -9345,82 +10650,101 @@ msgid "" "are invoked." msgstr "" =20 -#: gnu/packages/web.scm:1890 +#: gnu/packages/web.scm:1928 msgid "Perl data tables useful in parsing HTML" msgstr "" =20 -#: gnu/packages/web.scm:1892 +#: gnu/packages/web.scm:1930 msgid "" "The HTML::Tagset module contains several data tables useful in various\= n" "kinds of HTML parsing operations." msgstr "" =20 -#: gnu/packages/web.scm:1915 +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" + +#: gnu/packages/web.scm:1951 +msgid "" +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." +msgstr "" + +#: gnu/packages/web.scm:1979 msgid "HTTP Body Parser" msgstr "" =20 -#: gnu/packages/web.scm:1916 +#: gnu/packages/web.scm:1980 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" -"application/octet-stream, application/json, application/x-www-form-urle= ncoded,\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" "and multipart/form-data." msgstr "" =20 -#: gnu/packages/web.scm:1942 +#: gnu/packages/web.scm:2006 msgid "Minimalist HTTP user agent cookie jar" msgstr "" =20 -#: gnu/packages/web.scm:1943 +#: gnu/packages/web.scm:2007 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" =20 -#: gnu/packages/web.scm:1963 +#: gnu/packages/web.scm:2027 msgid "Perl HTTP cookie jars" msgstr "" =20 -#: gnu/packages/web.scm:1965 +#: gnu/packages/web.scm:2029 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" "object knows about." msgstr "" =20 -#: gnu/packages/web.scm:1987 +#: gnu/packages/web.scm:2051 msgid "Perl simple http server class" msgstr "" =20 -#: gnu/packages/web.scm:1989 +#: gnu/packages/web.scm:2053 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " "IO::Socket::INET, so you can perform socket operations directly on it t= oo." msgstr "" =20 -#: gnu/packages/web.scm:2008 +#: gnu/packages/web.scm:2072 msgid "Perl date conversion routines" msgstr "" =20 -#: gnu/packages/web.scm:2010 +#: gnu/packages/web.scm:2074 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" =20 -#: gnu/packages/web.scm:2033 +#: gnu/packages/web.scm:2097 msgid "Perl HTTP style message" msgstr "" =20 -#: gnu/packages/web.scm:2035 +#: gnu/packages/web.scm:2099 msgid "An HTTP::Message object contains some headers and a content body.= " msgstr "" =20 -#: gnu/packages/web.scm:2054 +#: gnu/packages/web.scm:2118 msgid "Perl http content negotiation" msgstr "" =20 -#: gnu/packages/web.scm:2056 +#: gnu/packages/web.scm:2120 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -9430,11 +10754,11 @@ msgid "" "fields in the request." msgstr "" =20 -#: gnu/packages/web.scm:2081 +#: gnu/packages/web.scm:2145 msgid "Parse HTTP/1.1 requests" msgstr "" =20 -#: gnu/packages/web.scm:2082 +#: gnu/packages/web.scm:2146 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a 'hint' as to what is required, or returns the\n" @@ -9442,87 +10766,92 @@ msgid "" "supported." msgstr "" =20 -#: gnu/packages/web.scm:2102 +#: gnu/packages/web.scm:2166 msgid "Fast HTTP request parser" msgstr "" =20 -#: gnu/packages/web.scm:2103 +#: gnu/packages/web.scm:2167 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" =20 -#: gnu/packages/web.scm:2124 +#: gnu/packages/web.scm:2188 msgid "Set up a CGI environment from an HTTP::Request" msgstr "" =20 -#: gnu/packages/web.scm:2125 +#: gnu/packages/web.scm:2189 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" =20 -#: gnu/packages/web.scm:2147 +#: gnu/packages/web.scm:2213 msgid "Lightweight HTTP server" msgstr "" =20 -#: gnu/packages/web.scm:2148 +#: gnu/packages/web.scm:2214 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standal= one\n" "http-based UI to your existing tools." msgstr "" =20 -#: gnu/packages/web.scm:2172 +#: gnu/packages/web.scm:2238 msgid "HTTP/1.1 client" msgstr "" =20 -#: gnu/packages/web.scm:2173 +#: gnu/packages/web.scm:2239 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" -"simple requests without the overhead of a large framework like LWP::Use= rAgent.\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after E= INTR." msgstr "" =20 -#: gnu/packages/web.scm:2192 +#: gnu/packages/web.scm:2258 msgid "Perl module to open an HTML file with automatic charset detection= " msgstr "" =20 -#: gnu/packages/web.scm:2194 +#: gnu/packages/web.scm:2260 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" -"automatically determining its encoding. It uses the HTML5 encoding sni= ffing\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" =20 -#: gnu/packages/web.scm:2213 +#: gnu/packages/web.scm:2280 msgid "Family-neutral IP socket supporting both IPv4 and IPv6" msgstr "" =20 -#: gnu/packages/web.scm:2214 +#: gnu/packages/web.scm:2281 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" =20 -#: gnu/packages/web.scm:2231 +#: gnu/packages/web.scm:2301 msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" msgstr "" =20 -#: gnu/packages/web.scm:2233 +#: gnu/packages/web.scm:2303 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" -"necessary functionality into the familiar IO::Socket interface and prov= iding\n" -"secure defaults whenever possible. This way existing applications can = be made\n" -"SSL-aware without much effort, at least if you do blocking I/O and don'= t use\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" "select or poll." msgstr "" =20 -#: gnu/packages/web.scm:2264 +#: gnu/packages/web.scm:2334 msgid "Perl modules for the WWW" msgstr "" =20 -#: gnu/packages/web.scm:2266 +#: gnu/packages/web.scm:2336 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -9532,11 +10861,11 @@ msgid "" "help you implement simple HTTP servers." msgstr "" =20 -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2358 msgid "Perl module to guess the media type for a file or a URL" msgstr "" =20 -#: gnu/packages/web.scm:2290 +#: gnu/packages/web.scm:2360 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\= n" @@ -9545,79 +10874,85 @@ msgid "" "exists it is used instead." msgstr "" =20 -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2386 msgid "HTTPS support for LWP::UserAgent" msgstr "" =20 -#: gnu/packages/web.scm:2317 +#: gnu/packages/web.scm:2387 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" =20 -#: gnu/packages/web.scm:2337 +#: gnu/packages/web.scm:2407 msgid "Virtual browser that retries errors" msgstr "" =20 -#: gnu/packages/web.scm:2338 +#: gnu/packages/web.scm:2408 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" -"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = seconds\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" "and retry a few times." msgstr "" =20 -#: gnu/packages/web.scm:2383 +#: gnu/packages/web.scm:2453 msgid "Perl interface to Amazon S3" msgstr "" =20 -#: gnu/packages/web.scm:2384 +#: gnu/packages/web.scm:2454 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" =20 -#: gnu/packages/web.scm:2404 +#: gnu/packages/web.scm:2474 msgid "Perl low-level HTTP connection (client)" msgstr "" =20 -#: gnu/packages/web.scm:2406 +#: gnu/packages/web.scm:2476 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" -"Net::HTTP class represents a connection to an HTTP server. The HTTP pr= otocol\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" "is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" "HTTP/1.1." msgstr "" =20 -#: gnu/packages/web.scm:2426 +#: gnu/packages/web.scm:2496 msgid "Extensible Perl server engine" msgstr "" =20 -#: gnu/packages/web.scm:2427 +#: gnu/packages/web.scm:2497 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" -"It attempts to be a generic server as in Net::Daemon and NetServer::Gen= eric.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" "It includes with it the ability to run as an inetd\n" "process (Net::Server::INET), a single connection server (Net::Server or= \n" "Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" "server which maintains a constant number of preforked\n" -"children (Net::Server::PreForkSimple), or as a managed preforking serve= r which\n" -"maintains the number of children based on server load (Net::Server::Pre= Fork).\n" -"In all but the inetd type, the server provides the ability to connect t= o one\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" "or to multiple server ports." msgstr "" =20 -#: gnu/packages/web.scm:2455 +#: gnu/packages/web.scm:2525 msgid "SSL support for Net::SMTP" msgstr "" =20 -#: gnu/packages/web.scm:2456 +#: gnu/packages/web.scm:2526 msgid "SSL support for Net::SMTP." msgstr "" =20 -#: gnu/packages/web.scm:2490 +#: gnu/packages/web.scm:2560 msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" msgstr "" =20 -#: gnu/packages/web.scm:2491 +#: gnu/packages/web.scm:2561 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for W= eb\n" @@ -9625,118 +10960,125 @@ msgid "" "WSGI." msgstr "" =20 -#: gnu/packages/web.scm:2517 +#: gnu/packages/web.scm:2587 msgid "Plack::Middleware which sets body for redirect response" msgstr "" =20 -#: gnu/packages/web.scm:2518 +#: gnu/packages/web.scm:2588 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" =20 -#: gnu/packages/web.scm:2539 +#: gnu/packages/web.scm:2611 msgid "Override REST methods to Plack apps via POST" msgstr "" =20 -#: gnu/packages/web.scm:2540 +#: gnu/packages/web.scm:2612 msgid "" "This middleware allows for POST requests that pretend to be\n" -"something else: by adding either a header named X-HTTP-Method-Override = to the\n" -"request, or a query parameter named x-tunneled-method to the URI, the c= lient\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" "can say what method it actually meant." msgstr "" =20 -#: gnu/packages/web.scm:2564 +#: gnu/packages/web.scm:2636 msgid "Plack::Middleware which removes body for HTTP response" msgstr "" =20 -#: gnu/packages/web.scm:2565 +#: gnu/packages/web.scm:2637 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" =20 -#: gnu/packages/web.scm:2586 +#: gnu/packages/web.scm:2658 msgid "Supports app to run as a reverse proxy backend" msgstr "" =20 -#: gnu/packages/web.scm:2587 +#: gnu/packages/web.scm:2659 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" -"which are changed by reverse-proxy. You can specify the reverse proxy = address\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" "and stop fake requests using 'enable_if' directive in your app.psgi." msgstr "" =20 -#: gnu/packages/web.scm:2608 +#: gnu/packages/web.scm:2680 msgid "Run HTTP tests on external live servers" msgstr "" =20 -#: gnu/packages/web.scm:2609 +#: gnu/packages/web.scm:2681 msgid "" "This module allows your to run your Plack::Test tests\n" -"against an external server instead of just against a local application = through\n" +"against an external server instead of just against a local application = " +"through\n" "either mocked HTTP or a locally spawned server." msgstr "" =20 -#: gnu/packages/web.scm:2631 +#: gnu/packages/web.scm:2703 msgid "Testing TCP programs" msgstr "Testning af TCP-programmer" =20 -#: gnu/packages/web.scm:2632 +#: gnu/packages/web.scm:2704 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "Test::TCP er testredskaber for TCP/IP-programmer." =20 -#: gnu/packages/web.scm:2660 +#: gnu/packages/web.scm:2732 msgid "Testing-specific WWW::Mechanize subclass" msgstr "" =20 -#: gnu/packages/web.scm:2661 +#: gnu/packages/web.scm:2733 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" =20 -#: gnu/packages/web.scm:2694 +#: gnu/packages/web.scm:2766 msgid "Test::WWW::Mechanize for Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:2695 +#: gnu/packages/web.scm:2767 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" -"Test::WWW:Mechanize module and the Catalyst web application framework t= o allow\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" "testing of Catalyst applications without needing to start up a web serv= er." msgstr "" =20 -#: gnu/packages/web.scm:2719 +#: gnu/packages/web.scm:2791 msgid "Test PSGI programs using WWW::Mechanize" msgstr "" =20 -#: gnu/packages/web.scm:2720 +#: gnu/packages/web.scm:2792 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" "WWW::Mechanize that incorporates features for web application testing. = The\n" -"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of PSGI\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" "applications." msgstr "" =20 -#: gnu/packages/web.scm:2740 +#: gnu/packages/web.scm:2812 msgid "Perl Uniform Resource Identifiers (absolute and relative)" msgstr "" =20 -#: gnu/packages/web.scm:2742 +#: gnu/packages/web.scm:2814 msgid "" "The URI module implements the URI class. Objects of this class\n" -"represent \"Uniform Resource Identifier references\" as specified in RF= C 2396\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" "and updated by RFC 2732." msgstr "" =20 -#: gnu/packages/web.scm:2763 +#: gnu/packages/web.scm:2837 msgid "Find URIs in arbitrary text" msgstr "" =20 -#: gnu/packages/web.scm:2764 +#: gnu/packages/web.scm:2838 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -9744,41 +11086,41 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." msgstr "" =20 -#: gnu/packages/web.scm:2786 +#: gnu/packages/web.scm:2860 msgid "WebSocket support for URI package" msgstr "" =20 -#: gnu/packages/web.scm:2787 +#: gnu/packages/web.scm:2861 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" =20 -#: gnu/packages/web.scm:2807 +#: gnu/packages/web.scm:2881 msgid "Perl extension interface for libcurl" msgstr "" =20 -#: gnu/packages/web.scm:2809 +#: gnu/packages/web.scm:2883 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" =20 -#: gnu/packages/web.scm:2836 +#: gnu/packages/web.scm:2912 msgid "Web browsing in a Perl object" msgstr "" =20 -#: gnu/packages/web.scm:2837 +#: gnu/packages/web.scm:2913 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" =20 -#: gnu/packages/web.scm:2857 +#: gnu/packages/web.scm:2933 msgid "Perl database of robots.txt-derived permissions" msgstr "" =20 -#: gnu/packages/web.scm:2859 +#: gnu/packages/web.scm:2935 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -9787,69 +11129,104 @@ msgid "" "their web site." msgstr "" =20 -#: gnu/packages/web.scm:2879 +#: gnu/packages/web.scm:2955 msgid "HTTP and WebSocket server library for R" msgstr "" =20 -#: gnu/packages/web.scm:2881 +#: gnu/packages/web.scm:2957 msgid "" "The httpuv package provides low-level socket and protocol support for\n= " -"handling HTTP and WebSocket requests directly from within R. It is pri= marily\n" +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" "intended as a building block for other packages, rather than making it\= n" "particularly easy to create complete web applications using httpuv alon= e." msgstr "" =20 -#: gnu/packages/web.scm:2902 +#: gnu/packages/web.scm:2978 msgid "Robust, high performance JSON parser and generator for R" msgstr "" =20 -#: gnu/packages/web.scm:2904 +#: gnu/packages/web.scm:2980 msgid "" "The jsonlite package provides a fast JSON parser and generator optimize= d\n" "for statistical data and the web. It offers flexible, robust, high\n" -"performance tools for working with JSON in R and is particularly powerf= ul for\n" -"building pipelines and interacting with a web API. In addition to conv= erting\n" -"JSON data from/to R objects, jsonlite contains functions to stream, val= idate,\n" -"and prettify JSON data. The unit tests included with the package verif= y that\n" -"all edge cases are encoded and decoded consistently for use with dynami= c data\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" "in systems and applications." msgstr "" =20 -#: gnu/packages/web.scm:2932 +#: gnu/packages/web.scm:3008 msgid "Simple HTTP server to serve static files or dynamic documents" msgstr "" =20 -#: gnu/packages/web.scm:2934 +#: gnu/packages/web.scm:3010 msgid "" "Servr provides an HTTP server in R to serve static files, or dynamic\n" -"documents that can be converted to HTML files (e.g., R Markdown) under = a given\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" "directory." msgstr "" =20 -#: gnu/packages/web.scm:2953 +#: gnu/packages/web.scm:3029 msgid "R tools for HTML" msgstr "" =20 -#: gnu/packages/web.scm:2955 +#: gnu/packages/web.scm:3031 msgid "This package provides tools for HTML generation and output in R." msgstr "" =20 -#: gnu/packages/web.scm:2974 +#: gnu/packages/web.scm:3050 msgid "HTML Widgets for R" msgstr "" =20 -#: gnu/packages/web.scm:2976 +#: gnu/packages/web.scm:3052 msgid "" "HTML widgets is a framework for creating HTML widgets that render in\n" -"various contexts including the R console, R Markdown documents, and Shi= ny web\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" "applications." msgstr "" =20 -#: gnu/packages/weechat.scm:92 +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" +msgstr "" + +#: gnu/packages/web.scm:3073 +msgid "" +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." +msgstr "" + +#: gnu/packages/web.scm:3107 +#, fuzzy +msgid "HTML5 parsing library" +msgstr "GIF-dekomprimeringsbibliotek" + +#: gnu/packages/web.scm:3109 +msgid "" +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." +msgstr "" + +#: gnu/packages/weechat.scm:98 msgid "Extensible chat client" msgstr "" =20 -#: gnu/packages/weechat.scm:93 +#: gnu/packages/weechat.scm:99 msgid "" "WeeChat (Wee Enhanced Environment for Chat) is an\n" "Internet Relay Chat client, which is designed to be light and fast.\n" @@ -9866,7 +11243,8 @@ msgstr "" #: gnu/packages/wordnet.scm:81 msgid "" "WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" -"adjectives and adverbs are grouped into sets of cognitive synonyms (syn= sets),\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" "each expressing a distinct concept. Synsets are interlinked by means o= f\n" "conceptual-semantic and lexical relations. The resulting network of\n" "meaningfully related words and concepts can be navigated with the brows= er.\n" @@ -9875,24 +11253,25 @@ msgid "" "language processing." msgstr "" =20 -#: gnu/packages/xiph.scm:65 +#: gnu/packages/xiph.scm:66 msgid "Library for manipulating the ogg multimedia format" msgstr "" =20 -#: gnu/packages/xiph.scm:67 +#: gnu/packages/xiph.scm:68 msgid "" "The libogg library allows to manipulate the ogg multimedia container\n" -"format, which encapsulates raw compressed data and allows the interleav= ing of\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" "audio and video data. In addition to encapsulation and interleaving of= \n" "multiple data streams, ogg provides packet framing, error detection, an= d\n" "periodic timestamps for seeking." msgstr "" =20 -#: gnu/packages/xiph.scm:91 +#: gnu/packages/xiph.scm:92 msgid "Library implementing the vorbis audio format" msgstr "" =20 -#: gnu/packages/xiph.scm:93 +#: gnu/packages/xiph.scm:94 msgid "" "The libvorbis library implements the ogg vorbis audio format,\n" "a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" @@ -9901,22 +11280,22 @@ msgid "" "128 kbps/channel." msgstr "" =20 -#: gnu/packages/xiph.scm:118 +#: gnu/packages/xiph.scm:119 msgid "Library implementing the Theora video format" msgstr "" =20 -#: gnu/packages/xiph.scm:120 +#: gnu/packages/xiph.scm:121 msgid "" "The libtheora library implements the ogg theora video format,\n" "a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" "compressed video format." msgstr "" =20 -#: gnu/packages/xiph.scm:141 +#: gnu/packages/xiph.scm:142 msgid "Library for patent-free audio compression format" msgstr "" =20 -#: gnu/packages/xiph.scm:143 +#: gnu/packages/xiph.scm:144 msgid "" "GNU Speex is a patent-free audio compression codec specially designed\n= " "for speech. It is well-adapted to internet applications, such as VoIP.= It\n" @@ -9924,11 +11303,11 @@ msgid "" "stereo encoding, and voice activity detection." msgstr "" =20 -#: gnu/packages/xiph.scm:171 +#: gnu/packages/xiph.scm:174 msgid "Cross platform audio library" msgstr "" =20 -#: gnu/packages/xiph.scm:173 +#: gnu/packages/xiph.scm:176 msgid "" "Libao is a cross-platform audio library that allows programs to\n" "output audio using a simple API on a wide variety of platforms.\n" @@ -9952,21 +11331,22 @@ msgid "" "OpenBSD's sndio." msgstr "" =20 -#: gnu/packages/xiph.scm:212 +#: gnu/packages/xiph.scm:215 msgid "Free lossless audio codec" msgstr "" =20 -#: gnu/packages/xiph.scm:214 +#: gnu/packages/xiph.scm:217 msgid "" -"FLAC stands for Free Lossless Audio Codec, an audio format that is loss= less,\n" +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" "meaning that audio is compressed in FLAC without any loss in quality." msgstr "" =20 -#: gnu/packages/xiph.scm:240 +#: gnu/packages/xiph.scm:243 msgid "Karaoke and text codec for embedding in ogg" msgstr "" =20 -#: gnu/packages/xiph.scm:242 +#: gnu/packages/xiph.scm:245 msgid "" "Kate is an overlay codec, originally designed for karaoke and text,\n" "that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" @@ -9981,11 +11361,11 @@ msgid "" "Kate stream." msgstr "" =20 -#: gnu/packages/xiph.scm:276 +#: gnu/packages/xiph.scm:279 msgid "Ogg vorbis tools" msgstr "" =20 -#: gnu/packages/xiph.scm:278 +#: gnu/packages/xiph.scm:281 msgid "" "Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" "general-purpose compressed audio format.\n" @@ -9998,54 +11378,58 @@ msgid "" " an ogg vorbis file." msgstr "" =20 -#: gnu/packages/xiph.scm:303 gnu/packages/xiph.scm:366 +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 msgid "Versatile audio codec" msgstr "" =20 -#: gnu/packages/xiph.scm:305 +#: gnu/packages/xiph.scm:308 msgid "" "Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" -"is unmatched for interactive speech and music transmission over the Int= ernet,\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" "but is also intended for storage and streaming applications. It is\n" -"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = which\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" "incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." msgstr "" =20 -#: gnu/packages/xiph.scm:339 +#: gnu/packages/xiph.scm:342 msgid "Command line utilities to encode, inspect, and decode .opus files= " msgstr "" =20 -#: gnu/packages/xiph.scm:340 +#: gnu/packages/xiph.scm:343 msgid "" "Opus is a royalty-free, highly versatile audio codec.\n" "Opus-tools provide command line utilities for creating, inspecting and\= n" "decoding .opus files." msgstr "" =20 -#: gnu/packages/xiph.scm:368 +#: gnu/packages/xiph.scm:371 msgid "" "The opusfile library provides seeking, decode, and playback of Opus\n" -"streams in the Ogg container (.opus files) including over http(s) on po= six and\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" "windows systems." msgstr "" =20 -#: gnu/packages/xiph.scm:398 +#: gnu/packages/xiph.scm:401 msgid "Streaming media server" msgstr "Str=C3=B8m-medieserver" =20 -#: gnu/packages/xiph.scm:399 +#: gnu/packages/xiph.scm:402 msgid "" "Icecast is a streaming media server which currently supports\n" -"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed to\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" "create an Internet radio station or a privately running jukebox and man= y\n" "things in between." msgstr "" =20 -#: gnu/packages/xiph.scm:427 +#: gnu/packages/xiph.scm:430 msgid "Audio streaming library for icecast encoders" msgstr "" =20 -#: gnu/packages/xiph.scm:429 +#: gnu/packages/xiph.scm:432 msgid "" "Libshout is a library for communicating with and sending data to an\n" "icecast server. It handles the socket connection, the timing of the da= ta,\n" @@ -10067,15 +11451,16 @@ msgid "" "directory structure can be packed into a ZIP archive with a single comm= and.\n" "\n" "Zip has one compression method (deflation) and can also store files wit= hout\n" -"compression. Zip automatically chooses the better of the two for each = file.\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" =20 -#: gnu/packages/zip.scm:111 +#: gnu/packages/zip.scm:113 msgid "Decompression and file extraction utility" msgstr "" =20 -#: gnu/packages/zip.scm:113 +#: gnu/packages/zip.scm:115 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\= n" "also called \"zipfiles\".\n" @@ -10086,23 +11471,23 @@ msgid "" "recreates the stored directory structure by default." msgstr "" =20 -#: gnu/packages/zip.scm:147 +#: gnu/packages/zip.scm:149 msgid "Library for accessing zip files" msgstr "" =20 -#: gnu/packages/zip.scm:149 +#: gnu/packages/zip.scm:151 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" =20 -#: gnu/packages/zip.scm:167 +#: gnu/packages/zip.scm:169 msgid "Provides an interface to ZIP archive files" msgstr "" =20 -#: gnu/packages/zsh.scm:65 +#: gnu/packages/zsh.scm:71 msgid "Powerful shell for interactive use and scripting" msgstr "" =20 -#: gnu/packages/zsh.scm:66 +#: gnu/packages/zsh.scm:72 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" diff --git a/po/packages/de.po b/po/packages/de.po index 32e3870..8739f6b 100644 --- a/po/packages/de.po +++ b/po/packages/de.po @@ -3,11 +3,12 @@ # This file is distributed under the same license as the guix package. # Mario Bl=C3=A4ttermann , 2014. # +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix-packages 0.7-pre1\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-07-14 11:59+0200\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2014-07-13 20:23+0100\n" "Last-Translator: Mario Bl=C3=A4ttermann \= n" "Language-Team: German \n" @@ -18,394 +19,11514 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Poedit 1.5.4\n" =20 -#: gnu/packages/base.scm:65 +#: gnu/packages/abiword.scm:101 +msgid "Word processing program" +msgstr "" + +#. TRANSLATORS: Dear translator, We would like to inform you that packag= e +#. descriptions may occasionally include Texinfo markup. Texinfo markup +#. looks like "@code{rm -rf}", "@emph{important}", etc. When translatin= g, +#. please leave markup as is. +#: gnu/packages/abiword.scm:110 +msgid "" +"AbiWord is a word processing program. It is rapidly\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" +"your daily work, personal needs, or for just some good old typing fun." +msgstr "" + +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 +msgid "Spell checker" +msgstr "" + +#: gnu/packages/aspell.scm:55 +msgid "" +"Aspell is a spell-checker which can be used either as a library or as\n= " +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" +"documents written in the UTF-8 encoding and its ability to use multiple= \n" +"dictionaries, including personal ones." +msgstr "" + +#: gnu/packages/aspell.scm:95 +msgid "This package provides a dictionary for the GNU Aspell spell check= er." +msgstr "" + +#: gnu/packages/audio.scm:95 +msgid "Realtime modular synthesizer and effect processor" +msgstr "" + +#: gnu/packages/audio.scm:97 +msgid "" +"AlsaModularSynth is a digital implementation of a classical analog\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" +"e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" +"Filter) modules follow the convention of 1V / Octave." +msgstr "" + +#: gnu/packages/audio.scm:134 +msgid "Library for audio labelling" +msgstr "" + +#: gnu/packages/audio.scm:136 +msgid "" +"aubio is a tool designed for the extraction of annotations from audio\n= " +"signals. Its features include segmenting a sound file before each of i= ts\n" +"attacks, performing pitch detection, tapping the beat and producing MID= I\n" +"streams from live audio." +msgstr "" + +#: gnu/packages/audio.scm:228 +msgid "Digital audio workstation" +msgstr "" + +#: gnu/packages/audio.scm:230 +msgid "" +"Ardour is a multi-channel digital audio workstation, allowing users to\= n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" +"engineers, musicians, soundtrack editors and composers." +msgstr "" + +#: gnu/packages/audio.scm:262 +msgid "Tonewheel organ synthesizer" +msgstr "" + +#: gnu/packages/audio.scm:264 +msgid "" +"AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" +"with drawbars, distortion and rotating speakers. The organ has three\n= " +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" +"bass section with five drawbars. A standalone JACK application and LV2= \n" +"plugins are provided." +msgstr "" + +#: gnu/packages/audio.scm:301 +msgid "Audio plug-in pack for LV2 and JACK environments" +msgstr "" + +#: gnu/packages/audio.scm:303 +msgid "" +"Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" +"The suite contains lots of effects (delay, modulation, signal processin= g,\n" +"filters, equalizers, dynamics, distortion and mastering effects),\n" +"instruments (SF2 player, organ simulator and a monophonic synthesizer) = and\n" +"tools (analyzer, mono/stereo tools, crossovers)." +msgstr "" + +#: gnu/packages/audio.scm:346 +msgid "Sound and music computing system" +msgstr "" + +#: gnu/packages/audio.scm:348 +msgid "" +"Csound is a user-programmable and user-extensible sound processing\n" +"language and software synthesizer." +msgstr "" + +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 +msgid "C++ wrapper around the ALSA API" +msgstr "" + +#: gnu/packages/audio.scm:393 +msgid "" +"clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" +"ALSA PCM devices." +msgstr "" + +#: gnu/packages/audio.scm:428 +msgid "SoundFont synthesizer" +msgstr "" + +#: gnu/packages/audio.scm:430 +msgid "" +"FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" +"device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" +"also play midifiles using a Soundfont." +msgstr "" + +#: gnu/packages/audio.scm:462 +msgid "MPEG-4 and MPEG-2 AAC decoder" +msgstr "" + +#: gnu/packages/audio.scm:464 +msgid "" +"FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" +"PS, and DAB+." +msgstr "" + +#: gnu/packages/audio.scm:493 +msgid "Signal processing language" +msgstr "" + +#: gnu/packages/audio.scm:495 +msgid "Faust is a programming language for realtime audio signal process= ing." +msgstr "" + +#: gnu/packages/audio.scm:530 +msgid "GUS compatible patches for MIDI players" +msgstr "" + +#: gnu/packages/audio.scm:532 +msgid "" +"FreePats is a project to create a free and open set of GUS compatible\n= " +"patches that can be used with softsynths such as Timidity and WildMidi.= " +msgstr "" + +#: gnu/packages/audio.scm:585 +msgid "Virtual guitar amplifier" +msgstr "" + +#: gnu/packages/audio.scm:586 +msgid "" +"Guitarix is a virtual guitar amplifier running JACK.\n" +"Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" +"routed separately and deliver a processed stereo-signal via JACK. You = may\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" +"from a simple noise gate to modulation effects like flanger, phaser or\= n" +"auto-wah." +msgstr "" + +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" +msgstr "" + +#: gnu/packages/audio.scm:634 +msgid "" +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." +msgstr "" + +#: gnu/packages/audio.scm:678 +msgid "LV2 convolution reverb" +msgstr "" + +#: gnu/packages/audio.scm:680 +msgid "" +"IR is a low-latency, real-time, high performance signal convolver\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" +"2 or 4 channels, in any soundfile format supported by libsndfile." +msgstr "" + +#: gnu/packages/audio.scm:710 +msgid "JACK audio connection kit" +msgstr "" + +#: gnu/packages/audio.scm:712 +msgid "" +"JACK is a low-latency audio server. It can connect a number of\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" +"in that it has been designed from the ground up to be suitable for\n" +"professional audio work. This means that it focuses on two key areas:\= n" +"synchronous execution of all clients, and low latency operation." +msgstr "" + +#: gnu/packages/audio.scm:810 +msgid "Simple LV2 host for JACK" +msgstr "" + +#: gnu/packages/audio.scm:812 +msgid "" +"Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" +"plugins and exposes their ports as JACK ports, essentially making any L= V2\n" +"plugin function as a JACK application." +msgstr "" + +#: gnu/packages/audio.scm:855 +msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" +msgstr "" + +#: gnu/packages/audio.scm:857 +msgid "" +"LADSPA is a standard that allows software audio processors and effects\= n" +"to be plugged into a wide range of audio synthesis and recording packag= es." +msgstr "" + +#: gnu/packages/audio.scm:893 +msgid "Audio application session manager" +msgstr "" + +#: gnu/packages/audio.scm:895 +msgid "" +"LASH is a session management system for audio applications. It allows\= n" +"you to save and restore audio sessions consisting of multiple interconn= eced\n" +"applications, restoring program state (i.e. loaded patches) and the\n" +"connections between them." +msgstr "" + +#: gnu/packages/audio.scm:916 +msgid "Bauer stereophonic-to-binaural DSP" +msgstr "" + +#: gnu/packages/audio.scm:918 +msgid "" +"The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" +"for headphone prolonged listening to disable superstereo fatigue withou= t\n" +"essential distortions." +msgstr "" + +#: gnu/packages/audio.scm:943 +msgid "Implementation of the Open Sound Control protocol" +msgstr "" + +#: gnu/packages/audio.scm:945 +msgid "" +"liblo is a lightweight library that provides an easy to use\n" +"implementation of the Open Sound Control (OSC) protocol." +msgstr "" + +#: gnu/packages/audio.scm:982 +msgid "Library to simplify use of LV2 plugins in applications" +msgstr "" + +#: gnu/packages/audio.scm:984 +msgid "" +"Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" +"for applications. Lilv is the successor to SLV2, rewritten to be\n" +"significantly faster and have minimal dependencies." +msgstr "" + +#: gnu/packages/audio.scm:1011 +msgid "LV2 audio plugin specification" +msgstr "" + +#: gnu/packages/audio.scm:1013 +msgid "" +"LV2 is an open specification for audio plugins and host applications.\n= " +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" +"add functionality to support the needs of increasingly powerful audio\n= " +"software." +msgstr "" + +#: gnu/packages/audio.scm:1048 +msgid "LV2 port of the mda Piano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1049 +msgid "An LV2 port of the mda Piano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1062 +msgid "LV2 port of the mda EPiano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1063 +msgid "An LV2 port of the mda EPiano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1101 +msgid "C++ libraries for LV2 plugins" +msgstr "" + +#: gnu/packages/audio.scm:1103 +msgid "" +"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " +"extensions into easy to use C++ classes. It is the successor of\n" +"lv2-c++-tools." +msgstr "" + +#: gnu/packages/audio.scm:1144 +msgid "3D audio API" +msgstr "" + +#: gnu/packages/audio.scm:1146 +msgid "" +"OpenAL provides capabilities for playing audio in a virtual 3D\n" +"environment. Distance attenuation, doppler shift, and directional soun= d\n" +"emitters are among the features handled by the API. More advanced effe= cts,\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" +"buffers, and audio capture." +msgstr "" + +#: gnu/packages/audio.scm:1180 +msgid "Modular patch bay for audio and MIDI systems" +msgstr "" + +#: gnu/packages/audio.scm:1182 +msgid "" +"Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" +"and ALSA." +msgstr "" + +#: gnu/packages/audio.scm:1207 +msgid "Real-time audio utility library" +msgstr "" + +#: gnu/packages/audio.scm:1209 +msgid "" +"Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" +"aimed at audio/musical applications." +msgstr "" + +#: gnu/packages/audio.scm:1235 +msgid "Audio time-stretching and pitch-shifting library" +msgstr "" + +#: gnu/packages/audio.scm:1237 +msgid "" +"Rubber Band is a library and utility program that permits changing the\= n" +"tempo and pitch of an audio recording independently of one another." +msgstr "" + +#: gnu/packages/audio.scm:1285 +msgid "Cross-platform MIDI library for C++" +msgstr "" + +#: gnu/packages/audio.scm:1287 +msgid "" +"RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " +"classes) that provide a common cross-platform API for realtime MIDI\n" +"input/output." +msgstr "" + +#: gnu/packages/audio.scm:1313 +msgid "Library for serialising LV2 atoms to/from RDF" +msgstr "" + +#: gnu/packages/audio.scm:1315 +msgid "" +"Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" +"the Turtle syntax." +msgstr "" + +#: gnu/packages/audio.scm:1340 +msgid "Library for loading and wrapping LV2 plugin UIs" +msgstr "" + +#: gnu/packages/audio.scm:1342 +msgid "" +"Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" +"\n" +"Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" +"toolkit. The API is designed such that hosts do not need to explicitly= \n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" +"that toolkit will work in all hosts that use Suil automatically.\n" +"\n" +"Suil currently supports every combination of Gtk 2, Qt 4, and X11." +msgstr "" + +#: gnu/packages/audio.scm:1399 +msgid "Software synthesizer for playing MIDI files" +msgstr "" + +#: gnu/packages/audio.scm:1401 +msgid "" +"TiMidity++ is a software synthesizer. It can play MIDI files by\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" +"disks as various audio file formats." +msgstr "" + +#: gnu/packages/audio.scm:1440 +msgid "Modular and extensible audio processing system" +msgstr "" + +#: gnu/packages/audio.scm:1442 +msgid "" +"Vamp is an audio processing plugin system for plugins that extract\n" +"descriptive information from audio data =E2=80=94 typically referred to= as audio\n" +"analysis plugins or audio feature extraction plugins." +msgstr "" + +#: gnu/packages/audio.scm:1481 +msgid "Library for time stretching and pitch scaling of audio" +msgstr "" + +#: gnu/packages/audio.scm:1483 +msgid "" +"SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" +"stretching and pitch scaling of audio. This package contains the libra= ry." +msgstr "" + +#: gnu/packages/audio.scm:1506 +msgid "Hybrid lossless audio codec" +msgstr "" + +#: gnu/packages/audio.scm:1508 +msgid "" +"WavPack is an audio compression format with lossless, lossy and hybrid\= n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" +"encode and decode wavpack files." +msgstr "" + +#: gnu/packages/audio.scm:1527 +msgid "Mod file playing library" +msgstr "" + +#: gnu/packages/audio.scm:1529 +msgid "" +"Libmodplug renders mod music files as raw audio data, for playing or\n" +"conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" +"surround and reverb." +msgstr "" + +#: gnu/packages/audio.scm:1548 +msgid "Module player library" +msgstr "" + +#: gnu/packages/audio.scm:1550 +msgid "" +"Libxmp is a library that renders module files to PCM data. It supports= \n" +"over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" +"Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " +msgstr "" + +#: gnu/packages/audio.scm:1573 +msgid "Extended module player" +msgstr "" + +#: gnu/packages/audio.scm:1575 +msgid "" +"Xmp is a portable module player that plays over 90 mainstream and\n" +"obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" +"Tracker 3 S3M and Impulse Tracker IT files." +msgstr "" + +#: gnu/packages/audio.scm:1607 +msgid "Audio processing library for changing tempo, pitch and playback r= ate" +msgstr "" + +#: gnu/packages/audio.scm:1609 +msgid "" +"SoundTouch is an audio processing library for changing the tempo, pitch= \n" +"and playback rates of audio streams or audio files. It is intended for= \n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" +"control functionality, or just for playing around with the sound effect= s." +msgstr "" + +#: gnu/packages/audio.scm:1646 +msgid "Sound processing utility" +msgstr "" + +#: gnu/packages/audio.scm:1648 +msgid "" +"SoX (Sound eXchange) is a command line utility that can convert\n" +"various formats of computer audio files to other formats. It can also\= n" +"apply various effects to these sound files, and, as an added bonus, SoX= \n" +"can play and record audio files." +msgstr "" + +#: gnu/packages/audio.scm:1671 +msgid "One-dimensional sample-rate conversion library" +msgstr "" + +#: gnu/packages/audio.scm:1673 +msgid "" +"The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" +"conversion. It may be used, for example, to resample PCM-encoded audio= ." +msgstr "" + +#: gnu/packages/audio.scm:1695 +msgid "MPEG Audio Layer 2 (MP2) encoder" +msgstr "" + +#: gnu/packages/audio.scm:1697 +msgid "" +"TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" +"tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" +"portions of LAME." +msgstr "" + +#: gnu/packages/audio.scm:1737 +msgid "Audio I/O library" +msgstr "" + +#: gnu/packages/audio.scm:1739 +msgid "" +"PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" +"interface." +msgstr "" + +#: gnu/packages/audio.scm:1762 +msgid "Graphical user interface for FluidSynth" +msgstr "" + +#: gnu/packages/audio.scm:1764 +msgid "" +"Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" +"synthesizer written in C++." +msgstr "" + +#: gnu/packages/audio.scm:1802 +msgid "Networked audio system" +msgstr "" + +#: gnu/packages/audio.scm:1804 +msgid "" +"RSound allows you to send audio from an application and transfer it\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" +"with a much different focus than most other audio daemons." +msgstr "" + +#: gnu/packages/audio.scm:1835 +msgid "JACK audio frequency analyzer and display" +msgstr "" + +#: gnu/packages/audio.scm:1837 +msgid "" +"XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" +"result." +msgstr "" + +#: gnu/packages/audio.scm:1883 +msgid "Fast, partitioned convolution engine library" +msgstr "" + +#: gnu/packages/audio.scm:1885 +msgid "" +"Zita convolver is a C++ library providing a real-time convolution\n" +"engine." +msgstr "" + +#: gnu/packages/audio.scm:1930 +msgid "C++ library for resampling audio signals" +msgstr "" + +#: gnu/packages/audio.scm:1932 +msgid "" +"Libzita-resampler is a C++ library for resampling audio signals. It is= \n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" +"provide high-quality sample rate conversion." +msgstr "" + +#: gnu/packages/audio.scm:1978 +msgid "" +"Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" +"access to ALSA PCM devices, taking care of the many functions required = to\n" +"open, initialise and use a hw: device in mmap mode, and providing float= ing\n" +"point audio data." +msgstr "" + +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" + +#: gnu/packages/audio.scm:2010 +msgid "" +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." +msgstr "" + +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" + +#: gnu/packages/audio.scm:2030 +msgid "" +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 +msgid "Encrypted backup using rsync algorithm" +msgstr "" + +#: gnu/packages/backup.scm:94 +msgid "" +"Duplicity backs up directories by producing encrypted tar-format volume= s\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" +"librsync, the incremental archives are space efficient and only record = the\n" +"parts of files that have changed since the last backup. Because duplic= ity\n" +"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" +"spying and/or modification by the server." +msgstr "" + +#: gnu/packages/backup.scm:128 +msgid "Simple incremental backup tool" +msgstr "" + +#: gnu/packages/backup.scm:130 +msgid "" +"Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" +"backup scheduling is done by means of a cron job. It supports an\n" +"include/exclude mechanism, remote backups, encrypted backups and split\= n" +"backups (called chunks) to allow easy burning to CD/DVD." +msgstr "" + +#: gnu/packages/backup.scm:185 +msgid "Multi-format archive and compression library" +msgstr "" + +#: gnu/packages/backup.scm:187 +msgid "" +"Libarchive provides a flexible interface for reading and writing\n" +"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" +"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" +"serially iterate through the archive, writers serially add things to th= e\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" +"random access nor for in-place modification." +msgstr "" + +#: gnu/packages/backup.scm:250 +msgid "Provide a list of files to backup" +msgstr "" + +#: gnu/packages/backup.scm:252 +msgid "" +"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" +"Rdup itself does not backup anything, it only print a list of absolute\= n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" +"list and implement the backup strategy." +msgstr "" + +#: gnu/packages/backup.scm:282 +msgid "Tar-compatible archiver" +msgstr "" + +#: gnu/packages/backup.scm:284 +msgid "" +"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" +"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" +"errors." +msgstr "" + +#: gnu/packages/backup.scm:312 +msgid "Local/remote mirroring+incremental backup" +msgstr "" + +#: gnu/packages/backup.scm:314 +msgid "" +"Rdiff-backup backs up one directory to another, possibly over a network= .\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" +"diffs are stored in a special subdirectory of that target directory, so= you\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" +"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" +"modification times, extended attributes, acls, and resource forks. Als= o,\n" +"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" +"rdiff-backup is easy to use and settings have sensible defaults." +msgstr "" + +#: gnu/packages/backup.scm:353 +msgid "Deduplicating backup program" +msgstr "" + +#: gnu/packages/backup.scm:354 +msgid "" +"Attic is a deduplicating backup program. The main goal of\n" +"Attic is to provide an efficient and secure way to backup data. The da= ta\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" +"changes are stored." +msgstr "" + +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 msgid "Hello, GNU world: An example GNU package" msgstr "Hallo, GNU-Welt: Ein GNU-Beispielpaket" =20 -#: gnu/packages/base.scm:67 +#: gnu/packages/base.scm:68 +msgid "" +"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" +"command-line arguments, multiple languages, and so on." +msgstr "" +"GNU Hello gibt die Meldung =C2=BBHello, world!=C2=AB aus und beendet si= ch dann.\n" +"Es dient als ein Beispiel f=C3=BCr die Standardwege zur Erzeugung von G= NU-Code.\n" +"Als solches unterst=C3=BCtzt es Befehlszeilenargumente, mehrere Sprache= n usw." + +#: gnu/packages/base.scm:89 +msgid "Print lines matching a pattern" +msgstr "Zeilen zur=C3=BCckgeben, die auf ein Muster passen" + +#: gnu/packages/base.scm:91 +msgid "" +"grep is a tool for finding text inside files. Text is found by\n" +"matching a pattern provided by the user in one or many files. The patt= ern\n" +"may be provided as a basic or extended regular expression, or as fixed\= n" +"strings. By default, the matching text is simply printed to the screen= ,\n" +"however the output can be greatly customized to include, for example, l= ine\n" +"numbers. GNU grep offers many extensions over the standard utility,\n" +"including, for example, recursive directory searching." +msgstr "" +"Grep ist ein Werkzeug zum Finden von Text in Dateien. Textteile werden = " +"durch\n" +"Vergleichen anhand eines vom Benutzer angegebenen Musters in einer oder= \n" +"mehreren Dateien gesucht. Das Muster kann als einfacher oder erweiterte= r\n" +"regul=C3=A4rer Ausdruck oder auch als einfache Zeichenkette angegeben w= erden.\n" +"In der Voreinstellung wird der Suchtreffer auf dem Bildschirm ausgegebe= n,\n" +"aber die Ausgabe kann auf vielf=C3=A4ltige Weise angepasst werden, um b= eispiels-\n" +"weise Zeilennummern mit anzuzeigen. GNU Grep bietet viele Erweiterungen= \n" +"im Vergleich zum Standardwerkzeug, zum Beispiel die rekursive Suche\n" +"in Verzeichnisstrukturen." + +#: gnu/packages/base.scm:114 +msgid "Stream editor" +msgstr "Datenstromeditor" + +#: gnu/packages/base.scm:129 +msgid "" +"Sed is a non-interactive, text stream editor. It receives a text\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" +"is often used for substituting text patterns in a stream. The GNU\n" +"implementation offers several extensions over the standard utility." +msgstr "" +"Sed ist ein nicht-interaktiver Editor f=C3=BCr Text-Datenstr=C3=B6me. E= r empf=C3=A4ngt " +"eine\n" +"Texteingabe aus einer Datei oder der Standardeingabe und wendet eine Re= ihe " +"von\n" +"Textbearbeitungsbefehlen darauf an. Das Ergebnis wird in der " +"Standardausgabe\n" +"ausgegeben. Er wird h=C3=A4ufig zum Ersetzen von Textmustern in einem D= atenstrom\n" +"verwendet. Die GNU-Implementation bietet gegen=C3=BCber dem Standardwer= kzeug\n" +"diverse Erweiterungen." + +#: gnu/packages/base.scm:152 +msgid "Managing tar archives" +msgstr "Tar-Archive verwalten" + +#: gnu/packages/base.scm:154 +msgid "" +"Tar provides the ability to create tar archives, as well as the\n" +"ability to extract, update or list files in an existing archive. It is= \n" +"useful for combining many files into one larger file, while maintaining= \n" +"directory structure and file information such as permissions and\n" +"creation/modification dates. GNU tar offers many extensions over the\n= " +"standard utility." +msgstr "" +"Tar erm=C3=B6glicht Ihnen das Erstellen oder Entpacken von Tar-Archiven= sowie\n" +"die Aktualisierung oder Auflistung von Dateien eines existierenden Arch= ivs.\n" +"Es dient zum Zusammenfassen mehrerer Dateien in einer einzigen Datei, w= obei\n" +"die Verzeichnisstruktur und Dsateiinformationen wie Erstellungs- und\n" +"=C3=84nderungszeitpunkte sowie Zugriffsrechte erhalten bleiben. GNU Tar= bietet\n" +"viele Erweiterungen =C3=BCber die F=C3=A4higkeiten des Standardwerkzeug= s hinaus." + +#: gnu/packages/base.scm:177 +msgid "Apply differences to originals, with optional backups" +msgstr "" +"Unterschiede auf Originaldateien anwenden, mit optionaler Datensicherun= g" + +#: gnu/packages/base.scm:179 +msgid "" +"Patch is a program that applies changes to files based on differences\n= " +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" +"files depending on the contents of the diff file. It accepts several\n= " +"different diff formats. It may also be used to revert previously appli= ed\n" +"differences." +msgstr "" +"Patch ist ein Programm, das =C3=84nderungen auf Dateien anwendet, die d= urch das\n" +"Programm =C2=BBdiff=C2=AB erzeugt wurden. Die =C3=84nderungen k=C3=B6nn= en auf eine oder mehrere\n" +"Dateien angewendet werden, abh=C3=A4ngig vom Inhalt der Diff-Datei. Es = " +"akzeptiert\n" +"verschiedene Diff-Formate. Es kann auch dazu genutzt werden, fr=C3=BChe= re\n" +"Anwendungen von Diff-Dateien r=C3=BCckg=C3=A4ngig zu machen." + +#: gnu/packages/base.scm:199 +msgid "Comparing and merging files" +msgstr "Dateien vergleichen und zusammenf=C3=BChren" + +#: gnu/packages/base.scm:201 +#, fuzzy +msgid "" +"GNU Diffutils is a package containing tools for finding the\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" +"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" +"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" +"interactive means to merge two files." +msgstr "" +"Das Paket GNU Diffutils enth=C3=A4lt Werkzeuge zum Finden von Unterschi= eden\n" +"zwischen Dateien. Der Befehl =C2=BBdiff=C2=AB wird dazu verwendet, zwei= Dateien\n" +"zu vergleichen, um die Unterschiede kenntlich zu machen, w=C3=A4hrend =C2= =BBcmp=C2=AB " +"anhand\n" +"von Position und Zeilennummern zeigt, wo genau die Unterschiede liegen.= \n" +"Weiterhin bietet =C2=BBsdiff=C2=AB eine M=C3=B6glichkeit, zwei Dateien = interaktiv\n" +"zusammenzuf=C3=BChren." + +#: gnu/packages/base.scm:234 +msgid "Operating on files matching given criteria" +msgstr "Verarbeitung von Dateien anhand gegebener Kriterien" + +#: gnu/packages/base.scm:236 +msgid "" +"Findutils supplies the basic file directory searching utilities of the\= n" +"GNU system. It consists of two primary searching utilities: \"find\"\n= " +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" +"used to apply commands with arbitrarily long arguments." +msgstr "" +"Das Paket Findutils stellt im GNU-System die grundlegenden Werkzeuge zu= m " +"Suchen\n" +"in Verzeichnissen bereit. Zwei prim=C3=A4re Suchwerkzeuge sind enthalte= n: =C2=BBfind=C2=AB\n" +"sucht anhand angegebener Kriterien rekursiv nach Dateien in Verzeichnis= sen\n" +"und =C2=BBlocate=C2=AB listet Dateien in einer Datenbank auf, die einer= Abfrage\n" +"entsprechen. Zwei Hilfswerkzeuge sind au=C3=9Ferdem enthalten: =C2=BBup= datedb=C2=AB " +"aktualisiert\n" +"die Dateinamendatenbank und =C2=BBxargs=C2=AB dient dazu, Befehle mit w= illk=C3=BCrlich\n" +"langen Argumenten anzuwenden." + +#: gnu/packages/base.scm:300 +msgid "Core GNU utilities (file, text, shell)" +msgstr "GNU-Kernprogramme (Datei, Text, Shell)" + +#: gnu/packages/base.scm:302 +msgid "" +"GNU Coreutils includes all of the basic command-line tools that are\n" +"expected in a POSIX system. These provide the basic file, shell and te= xt\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" +"functionality beyond that which is outlined in the POSIX standard." +msgstr "" +"Die GNU Coreutils enthalten alle grundlegenden Befehlszeilenwerkzeuge, = die\n" +"Sie in einem POSIX-System erwarten. Diese bieten Ihnen die " +"Bearbeitungsfunktionen\n" +"f=C3=BCr Dateien, Text und Shell des GNU-Systems. Die meisten dieser We= rkzeuge " +"bieten\n" +"im Vergleich zu den in POSIX festgelegten Standards erweiterte " +"Funktionalit=C3=A4t." + +#: gnu/packages/base.scm:344 +msgid "Remake files automatically" +msgstr "Automatisches Remake von Dateien" + +#: gnu/packages/base.scm:346 +msgid "" +"Make is a program that is used to control the production of\n" +"executables or other files from their source files. The process is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" +"generated from its source. It has powerful dependency resolution and t= he\n" +"ability to determine when files have to be regenerated after their sour= ces\n" +"change. GNU make offers many powerful extensions over the standard uti= lity." +msgstr "" +"Make ist ein Programm, das zur Steuerung der Erstellung von ausf=C3=BCh= rbaren\n" +"oder anderen Dateien aus deren Quelldateien verwendet wird. Der Prozess= \n" +"wird =C3=BCber ein =C2=BBMakefile=C2=AB gesteuert, in welchem der Entwi= ckler angibt, auf\n" +"welche Weise jede der Dateien aus den Quellen erzeugt werden soll. Das\= n" +"Programm verf=C3=BCgt =C3=BCber eine leistungsf=C3=A4hige Abh=C3=A4ngig= keitsaufl=C3=B6sung und die\n" +"F=C3=A4higkeit zu bestimmen, wann eine Datei neu erstellt werden muss, = wenn sich\n" +"deren Quellen ge=C3=A4ndert haben. GNU Make bietet m=C3=A4chtige Erweit= erungen =C3=BCber " +"die\n" +"F=C3=A4higkeiten des Standardwerkzeugs hinaus. " + +#: gnu/packages/base.scm:391 +msgid "Binary utilities: bfd gas gprof ld" +msgstr "Bin=C3=A4r-Dienstprogramme: bfd gas gprof ld" + +#: gnu/packages/base.scm:393 +#, fuzzy +msgid "" +"GNU Binutils is a collection of tools for working with binary files.\n" +"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" +"Other tools include programs to display binary profiling information, l= ist\n" +"the strings in a binary file, and utilities for working with archives. = The\n" +"\"bfd\" library for working with executable and object formats is also\= n" +"included." +msgstr "" +"Die GNU Binutils sind eine Werkzeugsammlung zum Arbeiten mit Bin=C3=A4r= dateien.\n" +"Die erw=C3=A4hnenswertesten sind =C2=BBld=C2=AB, ein Linker, und =C2=BB= as=C2=AB, ein Assembler. " +"Weitere\n" +"enthaltene Werkzeuge zeigen Profiling-Informationen an, listen die\n" +"Zeichenketten in einer Bin=C3=A4rdatei auf oder dienen der Arbeit mit A= rchiven.\n" +"Die =C2=BBbfd=C2=AB-Bibliothek zum Arbeiten mit ausf=C3=BChrbaren oder = Objektformaten\n" +"ist ebenfalls enthalten." + +#: gnu/packages/base.scm:458 +msgid "The linker wrapper" +msgstr "Der Linker-Wrapper" + +#: gnu/packages/base.scm:460 +msgid "" +"The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" +"store." +msgstr "" + +#: gnu/packages/base.scm:637 +msgid "The GNU C Library" +msgstr "Die GNU C-Bibliothek" + +#: gnu/packages/base.scm:639 +msgid "" +"Any Unix-like operating system needs a C library: the library which\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" +"printf, exit...\n" +"\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" +"with the Linux kernel." +msgstr "" +"Jedes Unix-=C3=A4hnliche Betriebssystem braucht eine C-Bibliothek: Dies= ist die\n" +"Bibliothek, welche die =C2=BBSystemaufrufe=C2=AB und andere Grundfunkti= onen wie " +"=C2=BBopen=C2=AB,\n" +"=C2=BBmalloc=C2=AB, =C2=BBprintf=C2=AB, =C2=BBexit=C2=AB usw. definiert= .\n" +"\n" +"Die GNU-C-Bibliothek wird als die C-Bibliothek im GNU-System sowie den = " +"meisten\n" +"Systemen mit dem Linux-Kernel verwendet." + +#: gnu/packages/base.scm:670 +msgid "All the locales supported by the GNU C Library" +msgstr "" + +#: gnu/packages/base.scm:672 +msgid "" +"This package provides all the locales supported by the GNU C Library,\n= " +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" +"the 'share/locale' sub-directory of this package." +msgstr "" + +#: gnu/packages/base.scm:740 +msgid "Small sample of UTF-8 locales" +msgstr "" + +#: gnu/packages/base.scm:742 +msgid "" +"This package provides a small sample of UTF-8 locales mostly useful in\= n" +"test environments." +msgstr "" + +#: gnu/packages/base.scm:760 +msgid "Find full path of shell commands" +msgstr "" + +#: gnu/packages/base.scm:762 +msgid "" +"The which program finds the location of executables in PATH, with a\n" +"variety of options. It is an alternative to the shell \"type\" built-i= n\n" +"command." +msgstr "" + +#: gnu/packages/base.scm:832 +#, fuzzy +msgid "The GNU C Library (GNU Hurd variant)" +msgstr "Die GNU C-Bibliothek" + +#: gnu/packages/base.scm:934 +msgid "Database of current and historical time zones" +msgstr "Datenbank aktueller und historischer Zeitzonen" + +#: gnu/packages/base.scm:935 +#, fuzzy +msgid "" +"The Time Zone Database (often called tz or zoneinfo)\n" +"contains code and data that represent the history of local time for man= y\n" +"representative locations around the globe. It is updated periodically = to\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" +"and daylight-saving rules." +msgstr "" +"Die Zeitzonen-Datenbank (oft =C2=BBtz=C2=AB oder =C2=BBzoneinfo=C2=AB g= enannt) enth=C3=A4lt Code\n" +"und Daten, welche den Verlauf der lokalen Zeit f=C3=BCr zahlreiche\n" +"repr=C3=A4sentative Orte rund um den Globus bereitstellen. Diese Daten = werden\n" +"regelm=C3=A4=C3=9Fig aktualisiert, um politisch begr=C3=BCndete =C3=84n= derungen der " +"Zeitzonengrenzen,\n" +"Verschiebung gegen=C3=BCber der Weltzeit oder den Sommerzeit-Winterzeit= -" +"Regelungen\n" +"zu reflektieren." + +#: gnu/packages/bittorrent.scm:90 +msgid "Fast and easy BitTorrent client" +msgstr "" + +#: gnu/packages/bittorrent.scm:92 +msgid "" +"Transmission is a BitTorrent client that comes with graphical,\n" +"textual, and Web user interfaces. Transmission also has a daemon for\n= " +"unattended operations. It supports local peer discovery, full encrypti= on,\n" +"DHT, =C2=B5TP, PEX and Magnet Links." +msgstr "" + +#: gnu/packages/bittorrent.scm:124 +msgid "BitTorrent library of rtorrent" +msgstr "" + +#: gnu/packages/bittorrent.scm:126 +msgid "" +"LibTorrent is a BitTorrent library used by and developed in parallel\n" +"with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" +"speed and efficiency." +msgstr "" + +#: gnu/packages/bittorrent.scm:153 +msgid "BitTorrent client with ncurses interface" +msgstr "" + +#: gnu/packages/bittorrent.scm:155 +msgid "" +"rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" +"full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" +"XML-RPC over SCGI." +msgstr "" + +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + +#: gnu/packages/certs.scm:65 +msgid "Python script to extract .pem data from certificate collection" +msgstr "" + +#: gnu/packages/certs.scm:67 +msgid "" +"certdata2pem.py is a Python script to transform X.509 certificate\n" +"\"source code\" as contained, for example, in the Mozilla sources, into= \n" +".pem formatted certificates." +msgstr "" + +#: gnu/packages/certs.scm:124 +msgid "CA certificates from Mozilla" +msgstr "" + +#: gnu/packages/certs.scm:126 +msgid "" +"This package provides certificates for Certification Authorities (CA)\n= " +"taken from the NSS package and thus ultimately from the Mozilla project= ." +msgstr "" + +#: gnu/packages/compression.scm:75 +msgid "Compression library" +msgstr "" + +#: gnu/packages/compression.scm:77 +msgid "" +"zlib is designed to be a free, general-purpose, legally unencumbered --= \n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" +"use on virtually any computer hardware and operating system. The zlib = data\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" +"triple the file size in extreme cases.) zlib's memory footprint is als= o\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" +"in compression." +msgstr "" + +#: gnu/packages/compression.scm:102 +msgid "Replacement for Sun's 'jar' utility" +msgstr "" + +#: gnu/packages/compression.scm:104 +msgid "" +"FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" +"utility. Instead of being written in Java, FastJar is written in C." +msgstr "" + +#: gnu/packages/compression.scm:122 +msgid "C library for manipulating POSIX tar files" +msgstr "" + +#: gnu/packages/compression.scm:124 +msgid "" +"libtar is a C library for manipulating POSIX tar files. It handles\n" +"adding and extracting files to/from a tar archive." +msgstr "" + +#: gnu/packages/compression.scm:141 +msgid "General file (de)compression (using lzw)" +msgstr "" + +#: gnu/packages/compression.scm:146 +msgid "" +"GNU Gzip provides data compression and decompression utilities; the\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" +"\".tar.gz\" or \".tgz\", etc." +msgstr "" + +#: gnu/packages/compression.scm:222 +msgid "High-quality data compression program" +msgstr "" + +#: gnu/packages/compression.scm:224 +msgid "" +"bzip2 is a freely available, patent free (see below), high-quality data= \n" +"compressor. It typically compresses files to within 10% to 15% of the = best\n" +"available techniques (the PPM family of statistical compressors), whils= t\n" +"being around twice as fast at compression and six times faster at\n" +"decompression." +msgstr "" + +#: gnu/packages/compression.scm:254 +msgid "Parallel bzip2 implementation" +msgstr "" + +#: gnu/packages/compression.scm:256 +msgid "" +"Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" +"compressed with pbzip2 can be decompressed with bzip2)." +msgstr "" + +#: gnu/packages/compression.scm:277 +msgid "General-purpose data compression" +msgstr "" + +#: gnu/packages/compression.scm:279 +msgid "" +"XZ Utils is free general-purpose data compression software with high\n" +"compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" +"\n" +"The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" +"been modified quite a lot to be suitable for XZ Utils. The primary\n" +"compression algorithm is currently LZMA2, which is used inside the .xz\= n" +"container format. With typical files, XZ Utils create 30 % smaller out= put\n" +"than gzip and 15 % smaller output than bzip2." +msgstr "" + +#: gnu/packages/compression.scm:307 +msgid "Data compression library suitable for real-time data de-/compress= ion" +msgstr "" + +#: gnu/packages/compression.scm:309 +msgid "" +"LZO is a data compression library which is suitable for data\n" +"de-/compression in real-time. This means it favours speed over\n" +"compression ratio.\n" +"\n" +"LZO is written in ANSI C. Both the source code and the compressed data= \n" +"format are designed to be portable across platforms." +msgstr "" + +#: gnu/packages/compression.scm:332 +msgid "Compress or expand files" +msgstr "" + +#: gnu/packages/compression.scm:334 +msgid "" +"Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" +"some compression ratio)." +msgstr "" + +#: gnu/packages/compression.scm:353 +msgid "Lossless data compressor based on the LZMA algorithm" +msgstr "" + +#: gnu/packages/compression.scm:355 +msgid "" +"Lzip is a lossless data compressor with a user interface similar to the= \n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" +"archiving. Lzip is a clean implementation of the LZMA algorithm." +msgstr "" + +#: gnu/packages/compression.scm:387 +msgid "Archives in shell scripts, uuencode/uudecode" +msgstr "" + +#: gnu/packages/compression.scm:389 +msgid "" +"GNU sharutils is a package for creating and manipulating shell\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" +"This package is mostly for compatibility and historical interest." +msgstr "" + +#: gnu/packages/compression.scm:420 +msgid "Library for SoundFont decompression" +msgstr "" + +#: gnu/packages/compression.scm:422 +msgid "" +"SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" +"with the sfArk algorithm." +msgstr "" + +#: gnu/packages/compression.scm:454 +msgid "Basic sfArk decompressor" +msgstr "" + +#: gnu/packages/compression.scm:455 +msgid "" +"SfArk extractor converts SoundFonts in the compressed legacy\n" +"sfArk file format to the uncompressed sf2 format." +msgstr "" + +#: gnu/packages/compression.scm:472 +msgid "Compression tools for some formats used by Microsoft" +msgstr "" + +#: gnu/packages/compression.scm:474 +msgid "" +"The purpose of libmspack is to provide both compression and\n" +"decompression of some loosely related file formats used by Microsoft." +msgstr "" + +#: gnu/packages/compression.scm:493 +msgid "Low-level interface to bzip2 compression library" +msgstr "" + +#: gnu/packages/compression.scm:494 +msgid "" +"This module provides a Perl interface to the bzip2\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:528 +msgid "Low-level interface to zlib compression library" +msgstr "" + +#: gnu/packages/compression.scm:529 +msgid "" +"This module provides a Perl interface to the zlib\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:550 +msgid "IO Interface to compressed files/buffers" +msgstr "" + +#: gnu/packages/compression.scm:551 +msgid "" +"IO-Compress provides a Perl interface to allow reading and\n" +"writing of compressed data created with the zlib and bzip2 libraries." +msgstr "" + +#: gnu/packages/compression.scm:577 +msgid "Compression algorithm focused on speed" +msgstr "" + +#: gnu/packages/compression.scm:578 +msgid "" +"LZ4 is a lossless compression algorithm, providing\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" +"time for compression ratio." +msgstr "" + +#: gnu/packages/compression.scm:618 +msgid "Tools to create and extract squashfs filesystems" +msgstr "" + +#: gnu/packages/compression.scm:620 +msgid "" +"Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" +"zlib to compress files, inodes, and directories. All blocks are packed= to\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" +"It is intended to be used for archival use, for live CDs, and for embed= ded\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" +"extract such filesystems." +msgstr "" + +#: gnu/packages/compression.scm:657 +msgid "Parallel implementation of gzip" +msgstr "" + +#: gnu/packages/compression.scm:659 +msgid "" +"This package provides a parallel implementation of gzip that exploits\n= " +"multiple processors and multiple cores when compressing data." +msgstr "" + +#: gnu/packages/compression.scm:683 +msgid "Parallel indexing implementation of LZMA" +msgstr "" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 +msgid "Berkeley database" +msgstr "" + +#: gnu/packages/databases.scm:124 +msgid "" +"Berkeley DB is an embeddable database allowing developers the choice of= \n" +"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +msgstr "" + +#: gnu/packages/databases.scm:198 +msgid "Fast, easy to use, and popular database" +msgstr "" + +#: gnu/packages/databases.scm:200 +msgid "" +"MySQL is a fast, reliable, and easy to use relational database\n" +"management system that supports the standardized Structured Query\n" +"Language." +msgstr "" + +#: gnu/packages/databases.scm:267 +msgid "SQL database server" +msgstr "" + +#: gnu/packages/databases.scm:269 +msgid "" +"MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" +"as a drop-in replacement of MySQL." +msgstr "" + +#: gnu/packages/databases.scm:289 +msgid "Powerful object-relational database system" +msgstr "" + +#: gnu/packages/databases.scm:291 +msgid "" +"PostgreSQL is a powerful object-relational database system. It is full= y\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" +"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" +"TIMESTAMP. It also supports storage of binary large objects, including= \n" +"pictures, sounds, or video." +msgstr "" + +#: gnu/packages/databases.scm:329 +msgid "Manipulate plain text files as databases" +msgstr "Bearbeitung von Datenbanken in Form einfacher Textdateien" + +#: gnu/packages/databases.scm:331 +#, fuzzy +msgid "" +"GNU Recutils is a set of tools and libraries for creating and\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" +"databases created with Recutils carry all of the expected features such= as\n" +"unique fields, primary keys, time stamps and more. Many different fiel= d\n" +"types are supported, as is encryption." +msgstr "" +"Die GNU Recutils sind eine Sammlung von Werkzeugen und Bibliotheken zum= \n" +"Erstellen und Bearbeiten textbasierter, menschenlesbarer Datenbanken. " +"Obwohl\n" +"rein textbasiert, bieten die mit Recutils erzeugten Datenbanken alles, = was " +"Sie\n" +"von einer Datenbank erwarten, wie eindeutige Felder, Prim=C3=A4rschl=C3= =BCssel,\n" +"Zeitstempel und vieles mehr. Viele verschiedene Feldtypen sowie " +"Verschl=C3=BCsselung\n" +"werden unterst=C3=BCtzt." + +#: gnu/packages/databases.scm:383 +msgid "The SQLite database management system" +msgstr "" + +#: gnu/packages/databases.scm:385 +msgid "" +"SQLite is a software library that implements a self-contained, serverle= ss,\n" +"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" +"is in the public domain." +msgstr "" + +#: gnu/packages/databases.scm:420 +msgid "Trivial database" +msgstr "" + +#: gnu/packages/databases.scm:422 +msgid "" +"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" +"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" +"extremely small." +msgstr "" + +#: gnu/packages/databases.scm:441 +msgid "Database independent interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:442 +msgid "This package provides an database interface for Perl." +msgstr "" + +#: gnu/packages/databases.scm:489 +msgid "Extensible and flexible object <-> relational mapper" +msgstr "" + +#: gnu/packages/databases.scm:490 +msgid "" +"An SQL to OO mapper with an object API inspired by\n" +"Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" +"still providing access to as many of the capabilities of the database a= s\n" +"possible, including retrieving related records from multiple tables in = a\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" +"\"ORDER BY\" and \"HAVING\" support." +msgstr "" + +#: gnu/packages/databases.scm:520 +msgid "Cursor with built-in caching support" +msgstr "" + +#: gnu/packages/databases.scm:521 +msgid "" +"DBIx::Class::Cursor::Cached provides a cursor class with\n" +"built-in caching support." +msgstr "" + +#: gnu/packages/databases.scm:541 +msgid "Introspect many-to-many relationships" +msgstr "" + +#: gnu/packages/databases.scm:542 +msgid "" +"Because the many-to-many relationships are not real\n" +"relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" +"all relevant information about these non-relationships so they can late= r be\n" +"introspected and examined." +msgstr "" + +#: gnu/packages/databases.scm:599 +msgid "Create a DBIx::Class::Schema based on a database" +msgstr "" + +#: gnu/packages/databases.scm:600 +msgid "" +"DBIx::Class::Schema::Loader automates the definition of a\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" +"columns, primary keys, unique constraints and relationships." +msgstr "" + +#: gnu/packages/databases.scm:624 +msgid "DBI PostgreSQL interface" +msgstr "" + +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "" + +#: gnu/packages/databases.scm:667 +msgid "SQlite interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:668 +msgid "" +"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" +"capable RDBMS working for your Perl project you simply have to install = this\n" +"module, and nothing else." +msgstr "" + +#: gnu/packages/databases.scm:698 +msgid "Generate SQL from Perl data structures" +msgstr "" + +#: gnu/packages/databases.scm:699 +msgid "" +"This module was inspired by the excellent DBIx::Abstract.\n" +"While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" +"been modified to make the SQL easier to generate from Perl data structu= res.\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" +"structures you provide it, so that you don't have to modify your code e= very\n" +"time your data changes." +msgstr "" + +#: gnu/packages/databases.scm:728 +msgid "Split SQL code into atomic statements" +msgstr "" + +#: gnu/packages/databases.scm:729 +msgid "" +"This module tries to split any SQL code, even including\n" +"non-standard extensions, into the atomic statements it is composed of." +msgstr "" + +#: gnu/packages/databases.scm:747 +msgid "SQL tokenizer" +msgstr "" + +#: gnu/packages/databases.scm:748 +msgid "" +"SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" +"claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" +"valid SQL query." +msgstr "" + +#: gnu/packages/databases.scm:765 +msgid "Data source abstraction library" +msgstr "" + +#: gnu/packages/databases.scm:766 +msgid "" +"Unixodbc is a library providing an API with which to access\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" +"Driver." +msgstr "" + +#: gnu/packages/databases.scm:790 +msgid "In-memory key/value and document store" +msgstr "" + +#: gnu/packages/databases.scm:792 +msgid "" +"UnQLite is an in-process software library which implements a\n" +"self-contained, serverless, zero-configuration, transactional NoSQL\n" +"database engine. UnQLite is a document store database similar to\n" +"MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store\n" +"similar to BerkeleyDB, LevelDB, etc." +msgstr "" + +#: gnu/packages/databases.scm:819 +msgid "Key-value cache and store" +msgstr "" + +#: gnu/packages/databases.scm:820 +msgid "" +"Redis is an advanced key-value cache and store. Redis\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" +"sets, bitmaps and hyperloglogs." +msgstr "" + +#: gnu/packages/debug.scm:74 +msgid "Heuristical file minimizer" +msgstr "" + +#: gnu/packages/debug.scm:76 +msgid "" +"Delta assists you in minimizing \"interesting\" files subject to a test= \n" +"of their interestingness. A common such situation is when attempting t= o\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" +"program to exhibit a bug." +msgstr "" + +#: gnu/packages/debug.scm:135 +msgid "Reducer for interesting code" +msgstr "" + +#: gnu/packages/debug.scm:137 +msgid "" +"C-Reduce is a tool that takes a large C or C++ program that has a\n" +"property of interest (such as triggering a compiler bug) and automatica= lly\n" +"produces a much smaller C/C++ program that has the same property. It i= s\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" +"tools that process C/C++ code." +msgstr "" + +#: gnu/packages/debug.scm:249 +msgid "Security-oriented fuzzer" +msgstr "" + +#: gnu/packages/debug.scm:251 +msgid "" +"American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" +"fuzzed code. The compact synthesized corpora produced by the tool are = also\n" +"useful for seeding other, more labor- or resource-intensive testing reg= imes\n" +"down the road." +msgstr "" + +#: gnu/packages/dejagnu.scm:78 +msgid "GNU software testing framework" +msgstr "" + +#: gnu/packages/dejagnu.scm:80 +msgid "" +"DejaGnu is a framework for testing software. In effect, it serves as\n= " +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" +"multiple test suites, which are then all managed by a single harness." +msgstr "" + +#: gnu/packages/feh.scm:54 +msgid "Fast and light imlib2-based image viewer" +msgstr "" + +#: gnu/packages/feh.scm:56 +msgid "" +"feh is an X11 image viewer aimed mostly at console users.\n" +"Unlike most other viewers, it does not have a fancy GUI, but simply\n" +"displays images. It can also be used to set the desktop wallpaper.\n" +"It is controlled via commandline arguments and configurable key/mouse\n= " +"actions." +msgstr "" + +#: gnu/packages/games.scm:116 +msgid "Backgammon game" +msgstr "" + +#: gnu/packages/games.scm:117 +msgid "" +"The GNU backgammon application can be used for playing, analyzing and\n= " +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" +"neural networks suitable for both beginners and advanced players. In\n= " +"addition to a command-line interface, it also features an attractive, 3= D\n" +"representation of the playing board." +msgstr "" + +#: gnu/packages/games.scm:146 +msgid "3d Rubik's cube game" +msgstr "" + +#: gnu/packages/games.scm:148 +msgid "" +"GNUbik is a puzzle game in which you must manipulate a cube to make\n" +"each of its faces have a uniform color. The game is customizable, allo= wing\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" +"You may even apply photos to the faces instead of colors. The game is\= n" +"scriptable with Guile." +msgstr "" + +#: gnu/packages/games.scm:198 +msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" +msgstr "" + +#: gnu/packages/games.scm:199 +msgid "" +"L'Abbaye des Morts is a 2D platform game set in 13th century\n" +"France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" +"that beneath its ruins lay buried an ancient evil." +msgstr "" + +#: gnu/packages/games.scm:242 +msgid "Lemmings clone" +msgstr "" + +#: gnu/packages/games.scm:244 +msgid "" +"Pingus is a free Lemmings-like puzzle game in which the player takes\n" +"command of a bunch of small animals and has to guide them through level= s.\n" +"Since the animals walk on their own, the player can only influence them= by\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" +"in the other direction. Multiple such commands are necessary to reach = the\n" +"level's exit. The game is presented in a 2D side view." +msgstr "" + +#: gnu/packages/games.scm:266 +msgid "Convert English text to humorous dialects" +msgstr "" + +#: gnu/packages/games.scm:267 +msgid "" +"The GNU Talk Filters are programs that convert English text\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" +"a C library, so they can easily be integrated into other programs." +msgstr "" + +#: gnu/packages/games.scm:299 +msgid "Simulate the display from \"The Matrix\"" +msgstr "" + +#: gnu/packages/games.scm:300 +msgid "" +"CMatrix simulates the display from \"The Matrix\" and is\n" +"based on the screensaver from the movie's website. It works with termi= nal\n" +"settings up to 132x300 and can scroll lines all at the same rate or\n" +"asynchronously and at a user-defined speed." +msgstr "" + +#: gnu/packages/games.scm:320 +msgid "Full chess implementation" +msgstr "" + +#: gnu/packages/games.scm:321 +msgid "" +"GNU Chess is a chess engine. It allows you to compete\n" +"against the computer in a game of chess, either through the default " +"terminal\n" +"interface or via an external visual interface such as GNU XBoard." +msgstr "" + +#: gnu/packages/games.scm:349 +msgid "Twisted adventures of young pig farmer Dink Smallwood" +msgstr "" + +#: gnu/packages/games.scm:351 +msgid "" +"GNU FreeDink is a free and portable re-implementation of the engine\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" +"game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" +"To that extent, it also includes a front-end for managing all of your D= -Mods." +msgstr "" + +#: gnu/packages/games.scm:373 +msgid "Game data for GNU Freedink" +msgstr "" + +#: gnu/packages/games.scm:375 +msgid "This package contains the game data of GNU Freedink." +msgstr "" + +#: gnu/packages/games.scm:427 +msgid "Graphical user interface for chess programs" +msgstr "" + +#: gnu/packages/games.scm:428 +msgid "" +"GNU XBoard is a graphical board for all varieties of chess,\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" +"fully interactive graphical interface and it can load and save games in= the\n" +"Portable Game Notation." +msgstr "" + +#: gnu/packages/games.scm:481 +msgid "Ball and paddle game" +msgstr "" + +#: gnu/packages/games.scm:482 +msgid "" +"XBoing is a blockout type game where you have a paddle which\n" +"you control to bounce a ball around the game zone destroying blocks wit= h a\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" +"destroy, the better your score. The person with the highest score wins= ." +msgstr "" + +#: gnu/packages/games.scm:514 +msgid "Typing tutor" +msgstr "" + +#: gnu/packages/games.scm:516 +msgid "" +"GNU Typist is a universal typing tutor. It can be used to learn and\n" +"practice touch-typing. Several tutorials are included; in addition to\= n" +"tutorials for the standard QWERTY layout, there are also tutorials for = the\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" +"are primarily in English, however some in other languages are provided.= " +msgstr "" + +#: gnu/packages/games.scm:569 +msgid "3D game engine written in C++" +msgstr "" + +#: gnu/packages/games.scm:571 +msgid "" +"The Irrlicht Engine is a high performance realtime 3D engine written in= \n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" +"for common mesh file formats, and collision detection." +msgstr "" + +#: gnu/packages/games.scm:623 +msgid "2D space shooter" +msgstr "" + +#: gnu/packages/games.scm:625 +msgid "" +"M.A.R.S. is a 2D space shooter with pretty visual effects and\n" +"attractive physics. Players can battle each other or computer controll= ed\n" +"enemies in different game modes such as space ball, death match, team d= eath\n" +"match, cannon keep, and grave-itation pit." +msgstr "" + +#: gnu/packages/games.scm:666 +msgid "Main game data for the Minetest game engine" +msgstr "" + +#: gnu/packages/games.scm:668 +msgid "Game data for the Minetest infinite-world block sandox game." +msgstr "" + +#: gnu/packages/games.scm:720 +msgid "Infinite-world block sandbox game" +msgstr "" + +#: gnu/packages/games.scm:722 +msgid "" +"Minetest is a sandbox construction game. Players can create and destro= y\n" +"various types of blocks in a three-dimensional open world. This allows= \n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" +"in different ways." +msgstr "" + +#: gnu/packages/games.scm:761 +msgid "Curses Implementation of the Glk API" +msgstr "" + +#: gnu/packages/games.scm:763 +msgid "" +"Glk defines a portable API for applications with text UIs. It was\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" +"interactive text utilities, particularly those based on a command line.= \n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" +"using the curses.h library for screen control." +msgstr "" + +#: gnu/packages/games.scm:800 +msgid "Interpreter for Glulx VM" +msgstr "" + +#: gnu/packages/games.scm:802 +msgid "" +"Glulx is a 32-bit portable virtual machine intended for writing and\n" +"playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" +"some of the restrictions in the venerable Z-machine format. This is th= e\n" +"reference interpreter, using Glk API." +msgstr "" + +#: gnu/packages/games.scm:838 +msgid "Z-machine interpreter" +msgstr "" + +#: gnu/packages/games.scm:840 +msgid "" +"Fizmo is a console-based Z-machine interpreter. It is used to play\n" +"interactive fiction, also known as text adventures, which were implemen= ted\n" +"either by Infocom or created using the Inform compiler." +msgstr "" + +#: gnu/packages/games.scm:890 +msgid "Reference frontend for the libretro API" +msgstr "" + +#: gnu/packages/games.scm:892 +msgid "" +"Libretro is a simple but powerful development interface that allows for= \n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" +"straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" +"multi-system game/emulator system." +msgstr "" + +#: gnu/packages/games.scm:912 +msgid "Play the game of Go" +msgstr "" + +#: gnu/packages/games.scm:914 +msgid "" +"GNU Go is a program that plays the game of Go, in which players\n" +"place stones on a grid to form territory or capture other stones. Whil= e\n" +"it can be played directly from the terminal, rendered in ASCII characte= rs,\n" +"it is also possible to play GNU Go with 3rd party graphical interfaces = or\n" +"even in Emacs. It supports the standard game storage format (SGF, Smar= t\n" +"Game Format) and inter-process communication format (GMP, Go Modem\n" +"Protocol)." +msgstr "" + +#: gnu/packages/games.scm:964 +msgid "High speed arctic racing game based on Tux Racer" +msgstr "" + +#: gnu/packages/games.scm:966 +msgid "" +"Extreme Tux Racer, or etracer as it is called for short, is\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" +"avoiding the trees and rocks that will slow you down.\n" +"\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" +"bones.\n" +"\n" +"This game is based on the GPL version of the famous game TuxRacer." +msgstr "" + +#: gnu/packages/games.scm:1004 +msgid "Game of jumping to the next floor, trying not to fall" +msgstr "" + +#: gnu/packages/games.scm:1006 +msgid "" +"GNUjump is a simple, yet addictive game in which you must jump from\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" +"falling, themeable graphics and sounds, and replays." +msgstr "" + +#: gnu/packages/games.scm:1047 +msgid "Turn-based strategy game" +msgstr "" + +#: gnu/packages/games.scm:1049 +msgid "" +"The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" +"local).\n" +"\n" +"Battle for control on a range of maps, using variety of units which hav= e\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" +"next campaign." +msgstr "" + +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" +msgstr "" + +#: gnu/packages/games.scm:1094 +msgid "" +"DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" +"also emulates CPU:286/386 realmode/protected mode, Directory\n" +"FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a\n" +"SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility = with\n" +"older games." +msgstr "" + +#: gnu/packages/games.scm:1139 +msgid "Mouse and keyboard discovery for children" +msgstr "" + +#: gnu/packages/games.scm:1141 +msgid "" +"Gamine is a game designed for young children who are learning to use th= e\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" +"on the screen and keyboard to display letters." +msgstr "" + +#: gnu/packages/games.scm:1172 +msgid "Puzzle game with a cat in lead role" +msgstr "" + +#: gnu/packages/games.scm:1173 +msgid "" +"Project Raincat is a game developed by Carnegie Mellon\n" +"students through GCS during the Fall 2008 semester. Raincat features g= ame\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" +"is programmed in Haskell." +msgstr "" + +#: gnu/packages/games.scm:1208 +msgid "Client for 'The Mana World' and similar games" +msgstr "" + +#: gnu/packages/games.scm:1210 +msgid "" +"ManaPlus is a 2D MMORPG client for game servers. It is the only\n" +"fully supported client for @uref{http://www.themanaworld.org, The mana\= n" +"world}, @uref{http://evolonline.org, Evol Online} and\n" +"@uref{http://landoffire.org, Land of fire}." +msgstr "" + +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +msgid "Pinball simulator" +msgstr "" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 +msgid "GNU Compiler Collection" +msgstr "" + +#: gnu/packages/gcc.scm:315 +msgid "" +"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" +"Go. It also includes runtime support libraries for these languages." +msgstr "" + +#: gnu/packages/gcc.scm:380 +msgid "GNU C++ standard library" +msgstr "" + +#: gnu/packages/gcc.scm:415 +msgid "Collection of subroutines used by various GNU programs" +msgstr "" + +#: gnu/packages/gcc.scm:610 +msgid "GNU libstdc++ documentation" +msgstr "" + +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" +msgstr "" + +#: gnu/packages/gcc.scm:681 +msgid "" +"isl is a library for manipulating sets and relations of integer points\= n" +"bounded by linear constraints. Supported operations on sets include\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" +"affine hull, integer projection, computing the lexicographic minimum us= ing\n" +"parametric integer programming, coalescing and parametric vertex\n" +"enumeration. It also includes an ILP solver based on generalized basis= \n" +"reduction, transitive closures on maps (which may encode infinite graph= s),\n" +"dependence analysis and bounds on piecewise step-polynomials." +msgstr "" + +#: gnu/packages/gcc.scm:713 +msgid "Library to generate code for scanning Z-polyhedra" +msgstr "" + +#: gnu/packages/gcc.scm:715 +msgid "" +"CLooG is a free software library to generate code for scanning\n" +"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" +"reaches each integral point of one or more parameterized polyhedra.\n" +"CLooG has been originally written to solve the code generation problem\= n" +"for optimizing compilers based on the polytope model. Nevertheless it\= n" +"is used now in various area e.g., to build control automata for\n" +"high-level synthesis or to find the best polynomial approximation of a\= n" +"function. CLooG may help in any situation where scanning polyhedra\n" +"matters. While the user has full control on generated code quality,\n" +"CLooG is designed to avoid control overhead and to produce a very\n" +"effective code." +msgstr "" + +#: gnu/packages/gcc.scm:770 +msgid "Reference manual for the C programming language" +msgstr "" + +#: gnu/packages/gcc.scm:772 +msgid "" +"This is a reference manual for the C programming language, as\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" +"of the language. Library functions are not included." +msgstr "" + +#: gnu/packages/geeqie.scm:48 +msgid "Library and command-line utility to manage image metadata" +msgstr "" + +#: gnu/packages/geeqie.scm:50 +msgid "" +"Exiv2 is a C++ library and a command line utility to manage image\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" +"and XMP metadata of images in various formats." +msgstr "" + +#: gnu/packages/geeqie.scm:82 +msgid "Lightweight GTK+ based image viewer" +msgstr "" + +#: gnu/packages/geeqie.scm:84 +msgid "" +"Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" +"systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" +"image formats; tools for image comparison, sorting and managing photo\n= " +"collection. Geeqie was initially based on GQview." +msgstr "" + +#: gnu/packages/gettext.scm:93 +msgid "Tools and documentation for translation" +msgstr "" + +#: gnu/packages/gettext.scm:95 +msgid "" +"GNU Gettext is a package providing a framework for translating the\n" +"textual output of programs into multiple languages. It provides " +"translators\n" +"with the means to create message catalogs, as well as an Emacs mode to = work\n" +"with them, and a runtime library to load translated messages from the\n= " +"catalogs. Nearly all GNU packages use Gettext." +msgstr "" + +#: gnu/packages/gettext.scm:151 +msgid "Scripts to ease maintenance of translations" +msgstr "" + +#: gnu/packages/gettext.scm:153 +msgid "" +"The po4a (PO for anything) project goal is to ease translations (and\n" +"more interestingly, the maintenance of translations) using gettext tool= s on\n" +"areas where they were not expected like documentation." +msgstr "" + +#: gnu/packages/gimp.scm:53 +msgid "Image pixel format conversion library" +msgstr "" + +#: gnu/packages/gimp.scm:55 +msgid "" +"Babl is a dynamic, any to any, pixel format translation library.\n" +"It allows converting between different methods of storing pixels known = as\n" +"pixel formats that have with different bitdepths and other data\n" +"representations, color models and component permutations.\n" +"\n" +"A vocabulary to formulate new pixel formats from existing primitives is= \n" +"provided as well as the framework to add new color models and data type= s." +msgstr "" + +#: gnu/packages/gimp.scm:110 +msgid "Graph based image processing framework" +msgstr "" + +#: gnu/packages/gimp.scm:111 +msgid "" +"GEGL (Generic Graphics Library) provides infrastructure to\n" +"do demand based cached non destructive image editing on larger than RAM= \n" +"buffers." +msgstr "" + +#: gnu/packages/gimp.scm:153 +msgid "GNU Image Manipulation Program" +msgstr "" + +#: gnu/packages/gimp.scm:155 +msgid "" +"GIMP is an application for image manipulation tasks such as photo\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" +"as well as specialized ones. It features a highly customizable interfa= ce\n" +"that is extensible via a plugin system." +msgstr "" + +#: gnu/packages/gnome.scm:154 +msgid "CD/DVD burning tool for Gnome" +msgstr "" + +#: gnu/packages/gnome.scm:155 +msgid "" +"Brasero is an application to burn CD/DVD for the Gnome\n" +"Desktop. It is designed to be as simple as possible and has some uniqu= e\n" +"features to enable users to create their discs easily and quickly." +msgstr "" + +#: gnu/packages/gnome.scm:175 +msgid "Bootstrap GNOME modules built from Git" +msgstr "" + +#: gnu/packages/gnome.scm:176 +msgid "" +"gnome-common contains various files needed to bootstrap\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" +"can be used to configure a source directory checked out from Git and so= me\n" +"commonly used macros." +msgstr "" + +#: gnu/packages/gnome.scm:217 +msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" +msgstr "" + +#: gnu/packages/gnome.scm:219 +msgid "" +"The libgnome-desktop library provides API shared by several application= s\n" +"on the desktop, but that cannot live in the platform for various reason= s.\n" +"There is no API or ABI guarantee, although we are doing our best to pro= vide\n" +"stability. Documentation for the API is available with gtk-doc.\n" +"\n" +"The gnome-about program helps find which version of GNOME is installed.= " +msgstr "" + +#: gnu/packages/gnome.scm:252 +msgid "Documentation utilities for the Gnome project" +msgstr "" + +#: gnu/packages/gnome.scm:254 +msgid "" +"Gnome-doc-utils is a collection of documentation utilities for the\n" +"Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" +"and keep up to date translations of documentation." +msgstr "" + +#: gnu/packages/gnome.scm:298 +msgid "Libraries for displaying certificates and accessing key stores" +msgstr "" + +#: gnu/packages/gnome.scm:300 +msgid "" +"The GCR package contains libraries used for displaying certificates and= \n" +"accessing key stores. It also provides the viewer for crypto files on = the\n" +"GNOME Desktop." +msgstr "" + +#: gnu/packages/gnome.scm:329 +msgid "Accessing passwords from the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:331 +msgid "Client library to access passwords from the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:393 +msgid "Daemon to store passwords and encryption keys" +msgstr "" + +#: gnu/packages/gnome.scm:395 +msgid "" +"gnome-keyring is a program that keeps passwords and other secrets for\n= " +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" +"applications locate it via an environment variable or D-Bus.\n" +"\n" +"The program can manage several keyrings, each with its own master passw= ord,\n" +"and there is also a session keyring which is never stored to disk, but\= n" +"forgotten when the session ends." +msgstr "" + +#: gnu/packages/gnome.scm:460 +msgid "GNOME's document viewer" +msgstr "" + +#: gnu/packages/gnome.scm:462 +msgid "" +"Evince is a document viewer for multiple document formats. It\n" +"currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" +"of Evince is to replace the multiple document viewers that exist\n" +"on the GNOME Desktop with a single simple application." +msgstr "" + +#: gnu/packages/gnome.scm:491 +msgid "GNOME settings for various desktop components" +msgstr "" + +#: gnu/packages/gnome.scm:493 +msgid "" +"Gsettings-desktop-schemas contains a collection of GSettings schemas\n" +"for settings shared by various components of the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:527 +msgid "Utility to implement the Freedesktop Icon Naming Specification" +msgstr "" + +#: gnu/packages/gnome.scm:529 +msgid "" +"To help with the transition to the Freedesktop Icon Naming\n" +"Specification, the icon naming utility maps the icon names used by the\= n" +"GNOME and KDE desktops to the icon names proposed in the specification.= " +msgstr "" + +#: gnu/packages/gnome.scm:551 +msgid "Utilities for working with desktop entries" +msgstr "" + +#: gnu/packages/gnome.scm:553 +msgid "" +"This package contains a few command line utilities for working with\n" +"desktop entries:\n" +"\n" +"desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" +" about desktop entry specification violations.\n" +"\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" +" optionally munging it a bit in transit.\n" +"\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" +" handled by desktop files." +msgstr "" + +#: gnu/packages/gnome.scm:587 +msgid "GNOME icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:589 +msgid "Icons for the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:628 +msgid "Database of common MIME types" +msgstr "" + +#: gnu/packages/gnome.scm:630 +msgid "" +"The shared-mime-info package contains the core database of common types= \n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" +"database is translated at Transifex." +msgstr "" + +#: gnu/packages/gnome.scm:654 +msgid "Freedesktop icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:656 +msgid "Freedesktop icon theme." +msgstr "" + +#: gnu/packages/gnome.scm:683 +msgid "GNOME desktop notification library" +msgstr "" + +#: gnu/packages/gnome.scm:685 +msgid "" +"Libnotify is a library that sends desktop notifications to a\n" +"notification daemon, as defined in the Desktop Notifications spec. The= se\n" +"notifications can be used to inform the user about an event or display\= n" +"some form of information without getting in the user's way." +msgstr "" + +#: gnu/packages/gnome.scm:717 +msgid "GObject plugin system" +msgstr "" + +#: gnu/packages/gnome.scm:719 +msgid "" +"Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" +"the API." +msgstr "" + +#: gnu/packages/gnome.scm:748 +msgid "OpenGL extension to GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:749 +msgid "" +"GtkGLExt is an OpenGL extension to GTK+. It provides\n" +"additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" +"API add-ons to make GTK+ widgets OpenGL-capable." +msgstr "" + +#: gnu/packages/gnome.scm:792 +msgid "GTK+ rapid application development tool" +msgstr "" + +#: gnu/packages/gnome.scm:793 +msgid "" +"Glade is a rapid application development (RAD) tool to\n" +"enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" +"the GNOME desktop environment." +msgstr "" + +#: gnu/packages/gnome.scm:818 +msgid "CSS2 parsing and manipulation library" +msgstr "" + +#: gnu/packages/gnome.scm:820 +msgid "" +"Libcroco is a standalone CSS2 parsing and manipulation library.\n" +"The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" +"XML/CSS rendering engine." +msgstr "" + +#: gnu/packages/gnome.scm:853 +msgid "GNOME's Structured File Library" +msgstr "" + +#: gnu/packages/gnome.scm:855 +msgid "" +"Libgsf aims to provide an efficient extensible I/O abstraction for\n" +"dealing with different structured file formats." +msgstr "" + +#: gnu/packages/gnome.scm:920 +msgid "Render SVG files using Cairo" +msgstr "" + +#: gnu/packages/gnome.scm:922 +msgid "" +"Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:946 +msgid "Create trees of CORBA Interface Definition Language files" +msgstr "" + +#: gnu/packages/gnome.scm:947 +msgid "" +"Libidl is a library for creating trees of CORBA Interface\n" +"Definition Language (idl) files, which is a specification for defining\= n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" +"GNOME project, and the primary means of libidl distribution). However,= the\n" +"functionality was designed to be as reusable and portable as possible." +msgstr "" + +#: gnu/packages/gnome.scm:987 +msgid "CORBA 2.4-compliant Object Request Broker" +msgstr "" + +#: gnu/packages/gnome.scm:988 +msgid "" +"ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" +"featuring mature C, C++ and Python bindings." +msgstr "" + +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" +msgstr "" + +#: gnu/packages/gnome.scm:1035 +msgid "" +"Bonobo is a framework for creating reusable components for\n" +"use in GNOME applications, built on top of CORBA." +msgstr "" + +#: gnu/packages/gnome.scm:1066 +msgid "Store application preferences" +msgstr "" + +#: gnu/packages/gnome.scm:1067 +msgid "" +"Gconf is a system for storing application preferences. It\n" +"is intended for user preferences; not arbitrary data storage." +msgstr "" + +#: gnu/packages/gnome.scm:1089 +msgid "Base MIME and Application database for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1090 +msgid "" +"GNOME Mime Data is a module which contains the base MIME\n" +"and Application database for GNOME. The data stored by this module is\= n" +"designed to be accessed through the MIME functions in GnomeVFS." +msgstr "" + +#: gnu/packages/gnome.scm:1134 +msgid "Access files and folders in GNOME applications" +msgstr "" + +#: gnu/packages/gnome.scm:1136 +msgid "" +"GnomeVFS is the core library used to access files and folders in GNOME\= n" +"applications. It provides a file system abstraction which allows " +"applications\n" +"to access local and remote files with a single consistent API." +msgstr "" + +#: gnu/packages/gnome.scm:1180 +msgid "Useful routines for building applications" +msgstr "" + +#: gnu/packages/gnome.scm:1181 +msgid "" +"The libgnome library provides a number of useful routines\n" +"for building modern applications, including session management, activat= ion " +"of\n" +"files and URIs, and displaying help." +msgstr "" + +#: gnu/packages/gnome.scm:1204 +msgid "2D drawing library" +msgstr "" + +#: gnu/packages/gnome.scm:1205 +msgid "" +"Libart is a 2D drawing library intended as a\n" +"high-quality vector-based 2D library with antialiasing and alpha compos= ition." +msgstr "" + +#: gnu/packages/gnome.scm:1232 +msgid "Flexible widget for creating interactive structured graphics" +msgstr "" + +#: gnu/packages/gnome.scm:1233 +msgid "" +"The GnomeCanvas widget provides a flexible widget for\n" +"creating interactive structured graphics." +msgstr "" + +#: gnu/packages/gnome.scm:1257 +msgid "C++ bindings to the GNOME Canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:1258 +msgid "C++ bindings to the GNOME Canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:1289 +msgid "Additional widgets for applications" +msgstr "" + +#: gnu/packages/gnome.scm:1290 +msgid "" +"The libgnomeui library provides additional widgets for\n" +"applications. Many of the widgets from libgnomeui have already been\n" +"ported to GTK+." +msgstr "" + +#: gnu/packages/gnome.scm:1316 +msgid "Load glade interfaces and access the glade built widgets" +msgstr "" + +#: gnu/packages/gnome.scm:1317 +msgid "" +"Libglade is a library that provides interfaces for loading\n" +"graphical interfaces described in glade files and for accessing the\n" +"widgets built in the loading process." +msgstr "" + +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 +msgid "Printing framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1356 +msgid "" +"GNOME-print was a printing framework for GNOME. It has been deprecated= \n" +"since ca. 2006, when GTK+ itself incorporated printing support." +msgstr "" + +#: gnu/packages/gnome.scm:1431 +msgid "Some user interface controls using Bonobo" +msgstr "" + +#: gnu/packages/gnome.scm:1432 +msgid "" +"The Bonobo UI library provides a number of user interface\n" +"controls using the Bonobo component framework." +msgstr "" + +#: gnu/packages/gnome.scm:1456 +msgid "Window Navigator Construction Kit" +msgstr "" + +#: gnu/packages/gnome.scm:1458 +msgid "" +"Libwnck is the Window Navigator Construction Kit, a library for use in\= n" +"writing pagers, tasklists, and more generally applications that are dea= ling\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" +"Hints specification (EWMH)." +msgstr "" + +#: gnu/packages/gnome.scm:1511 +msgid "Document-centric objects and utilities" +msgstr "" + +#: gnu/packages/gnome.scm:1512 +msgid "A GLib/GTK+ set of document-centric objects and utilities." +msgstr "" + +#: gnu/packages/gnome.scm:1594 +msgid "Spreadsheet application" +msgstr "" + +#: gnu/packages/gnome.scm:1596 +msgid "" +"GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" +"interoperable with other spreadsheet applications. It has a vast array= of\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" +"and non-linear solvers, statistical analysis, and telecommunication\n" +"engineering." +msgstr "" + +#: gnu/packages/gnome.scm:1642 +msgid "Default GNOME 3 themes" +msgstr "" + +#: gnu/packages/gnome.scm:1644 +msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." +msgstr "" + +#: gnu/packages/gnome.scm:1677 +msgid "Manage encryption keys and passwords in the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:1679 +msgid "" +"Seahorse is a GNOME application for managing encryption keys and\n" +"passwords in the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 +msgid "Compiler for the GObject type system" +msgstr "" + +#: gnu/packages/gnome.scm:1717 +msgid "" +"Vala is a programming language that aims to bring modern programming\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" +"requirements and without using a different ABI compared to applications= and\n" +"libraries written in C." +msgstr "" + +#: gnu/packages/gnome.scm:1747 +msgid "Virtual Terminal Emulator" +msgstr "" + +#: gnu/packages/gnome.scm:1749 +msgid "" +"VTE is a library (libvte) implementing a terminal emulator widget for\n= " +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" +"gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" +"editors, IDEs, etc." +msgstr "" + +#: gnu/packages/gnome.scm:1847 +msgid "Low-level GNOME configuration system" +msgstr "" + +#: gnu/packages/gnome.scm:1848 +msgid "" +"Dconf is a low-level configuration system. Its main purpose\n" +"is to provide a backend to GSettings on platforms that don't already ha= ve\n" +"configuration storage systems." +msgstr "" + +#: gnu/packages/gnome.scm:1882 +msgid "" +"JSON-GLib is a C library based on GLib providing serialization and\n" +"deserialization support for the JavaScript Object Notation (JSON) forma= t\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" +"and objects." +msgstr "" + +#: gnu/packages/gnome.scm:1921 +msgid "High-level API for X Keyboard Extension" +msgstr "" + +#: gnu/packages/gnome.scm:1923 +msgid "" +"LibXklavier is a library providing high-level API for X Keyboard\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" +"indicators etc)." +msgstr "" + +#: gnu/packages/gnome.scm:1951 +msgid "Python bindings to librsvg" +msgstr "" + +#: gnu/packages/gnome.scm:1953 +msgid "" +"This packages provides Python bindings to librsvg, the SVG rendering\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2002 +msgid "Network-related GIO modules" +msgstr "" + +#: gnu/packages/gnome.scm:2004 +msgid "" +"This package contains various network related extensions for the GIO\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2035 +msgid "RESTful web api query library" +msgstr "" + +#: gnu/packages/gnome.scm:2037 +msgid "" +"This library was designed to make it easier to access web services that= \n" +"claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" +"libxml to ease remote use of the RESTful API." +msgstr "" + +#: gnu/packages/gnome.scm:2106 +msgid "GLib-based HTTP Library" +msgstr "" + +#: gnu/packages/gnome.scm:2108 +msgid "" +"LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " +"and the GLib main loop, to integrate well with GNOME applications." +msgstr "" + +#: gnu/packages/gnome.scm:2154 +msgid "GObject bindings for \"Secret Service\" API" +msgstr "" + +#: gnu/packages/gnome.scm:2156 +msgid "" +"Libsecret is a GObject based library for storing and retrieving passwor= ds\n" +"and other secrets. It communicates with the \"Secret Service\" using D= Bus." +msgstr "" + +#: gnu/packages/gnome.scm:2200 +msgid "Minesweeper game" +msgstr "" + +#: gnu/packages/gnome.scm:2202 +msgid "" +"Mines (previously gnomine) is a puzzle game where you locate mines\n" +"floating in an ocean using only your brain and a little bit of luck." +msgstr "" + +#: gnu/packages/gnome.scm:2246 +msgid "Terminal emulator" +msgstr "" + +#: gnu/packages/gnome.scm:2248 +msgid "" +"GNOME Terminal is a terminal emulator application for accessing a\n" +"UNIX shell environment which can be used to run programs available on\n= " +"your system.\n" +"\n" +"It supports several profiles, multiple tabs and implements several\n" +"keyboard shortcuts." +msgstr "" + +#: gnu/packages/gnome.scm:2314 +msgid "Color management service" +msgstr "" + +#: gnu/packages/gnome.scm:2315 +msgid "" +"Colord is a system service that makes it easy to manage,\n" +"install and generate color profiles to accurately color manage input an= d\n" +"output devices." +msgstr "" + +#: gnu/packages/gnome.scm:2357 +msgid "Geolocation service" +msgstr "" + +#: gnu/packages/gnome.scm:2358 +msgid "" +"Geoclue is a D-Bus service that provides location\n" +"information. The primary goal of the Geoclue project is to make creati= ng\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" +"permission from user." +msgstr "" + +#: gnu/packages/gnome.scm:2393 +msgid "Geocoding and reverse-geocoding library" +msgstr "" + +#: gnu/packages/gnome.scm:2395 +msgid "" +"geocode-glib is a convenience library for geocoding (finding longitude,= \n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" +"coordinates) using the Nominatim service. geocode-glib caches requests= for\n" +"faster results and to avoid unnecessary server load." +msgstr "" + +#: gnu/packages/gnome.scm:2448 +msgid "System daemon for managing power devices" +msgstr "" + +#: gnu/packages/gnome.scm:2450 +msgid "" +"UPower is an abstraction for enumerating power devices,\n" +"listening to device events and querying history and statistics. Any\n" +"application or service on the system can access the org.freedesktop.UPo= wer\n" +"service via the system message bus." +msgstr "" + +#: gnu/packages/gnome.scm:2500 +msgid "Location, time zone, and weather library for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2502 +msgid "" +"libgweather is a library to access weather information from online\n" +"services for numerous locations." +msgstr "" + +#: gnu/packages/gnome.scm:2554 +msgid "GNOME settings daemon" +msgstr "" + +#: gnu/packages/gnome.scm:2556 +msgid "" +"This package contains the daemon responsible for setting the various\n" +"parameters of a GNOME session and the applications that run under it. = It\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" +"settings, themes, mouse settings, and startup of other daemons." +msgstr "" + +#: gnu/packages/gnome.scm:2592 +msgid "Library to parse and save media playlists for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2593 +msgid "" +"Totem-pl-parser is a GObjects-based library to parse and save\n" +"playlists in a variety of formats." +msgstr "" + +#: gnu/packages/gnome.scm:2627 +msgid "Solitaire card games" +msgstr "" + +#: gnu/packages/gnome.scm:2629 +msgid "" +"Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" +"which are easy to play with the aid of a mouse." +msgstr "" + +#: gnu/packages/gnome.scm:2653 +msgid "API documentation browser for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2655 +msgid "" +"Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " +"natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" +"throughout GNOME for API documentation)." +msgstr "" + +#: gnu/packages/gnome.scm:2716 +msgid "Object oriented GL/GLES Abstraction/Utility Layer" +msgstr "" + +#: gnu/packages/gnome.scm:2718 +msgid "" +"Cogl is a small library for using 3D graphics hardware to draw pretty\n= " +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" +"designed to make it easy to write orthogonal components that can render= \n" +"without stepping on each others toes." +msgstr "" + +#: gnu/packages/gnome.scm:2773 +msgid "Open GL based interactive canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 +msgid "" +"Clutter is an Open GL based interactive canvas library, designed for\n" +"creating fast, mainly 2D single window applications such as media box U= Is,\n" +"presentations, kiosk style applications and so on." +msgstr "" + +#: gnu/packages/gnome.scm:2802 +msgid "Open GL based interactive canvas library GTK+ widget" +msgstr "" + +#: gnu/packages/gnome.scm:2832 +msgid "Integration library for using GStreamer with Clutter" +msgstr "" + +#: gnu/packages/gnome.scm:2834 +msgid "" +"Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" +"It provides a GStreamer sink to upload frames to GL and an actor that\n= " +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" +"GL based interactive canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:2864 +msgid "C library providing a ClutterActor to display maps" +msgstr "" + +#: gnu/packages/gnome.scm:2866 +msgid "" +"libchamplain is a C library providing a ClutterActor to display maps.\n= " +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" +"such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." +msgstr "" + +#: gnu/packages/gnome.scm:2897 +msgid "Object mapper from GObjects to SQLite" +msgstr "" + +#: gnu/packages/gnome.scm:2899 +msgid "" +"Gom provides an object mapper from GObjects to SQLite. It helps you\n" +"write applications that need to store structured data as well as make " +"complex\n" +"queries upon that data." +msgstr "" + +#: gnu/packages/gnome.scm:2927 +msgid "Sliding block puzzles" +msgstr "" + +#: gnu/packages/gnome.scm:2929 +msgid "" +"GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" +"as possible!" +msgstr "" + +#: gnu/packages/gnome.scm:2980 +msgid "Framework for discovering and browsing media" +msgstr "" + +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 +msgid "" +"Grilo is a framework focused on making media discovery and browsing eas= y\n" +"for application developers." +msgstr "" + +#: gnu/packages/gnome.scm:3032 +msgid "Plugins for the Grilo media discovery library" +msgstr "" + +#: gnu/packages/gnome.scm:3109 +msgid "Simple media player for GNOME based on GStreamer" +msgstr "" + +#: gnu/packages/gnome.scm:3110 +msgid "" +"Totem is a simple yet featureful media player for GNOME\n" +"which can read a large number of file formats." +msgstr "" + +#: gnu/packages/gnome.scm:3199 +msgid "Music player for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3200 +msgid "" +"Rhythmbox is a music playing application for GNOME. It\n" +"supports playlists, song ratings, and any codecs installed through gstr= eamer." +msgstr "" + +#: gnu/packages/gnome.scm:3250 +msgid "GNOME image viewer" +msgstr "" + +#: gnu/packages/gnome.scm:3251 +msgid "" +"Eye of GNOME is the GNOME image viewer. It\n" +"supports image conversion, rotation, and slideshows." +msgstr "" + +#: gnu/packages/gnome.scm:3276 +#, fuzzy +msgid "GObject bindings for libudev" +msgstr "Guile-Bindungen zu Ncurses" + +#: gnu/packages/gnome.scm:3278 +msgid "" +"This library provides GObject bindings for libudev. It was originally\= n" +"part of udev-extras, then udev, then systemd. It's now a project on it= s own." +msgstr "" + +#: gnu/packages/gnome.scm:3324 +msgid "Userspace virtual filesystem for GIO" +msgstr "" + +#: gnu/packages/gnome.scm:3326 +msgid "" +"GVFS is a userspace virtual filesystem designed to work with the I/O\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" +"to all applications using the GIO API. It also supports exposing the G= VFS\n" +"mounts to non-GIO applications using FUSE.\n" +"\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" +"DAV, and others." +msgstr "" + +#: gnu/packages/gnome.scm:3372 +#, fuzzy +msgid "GLib binding for libusb1" +msgstr "Guile-Bindungen zu Ncurses" + +#: gnu/packages/gnome.scm:3374 +msgid "" +"GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" +"asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" +"and integration into a mainloop. This makes it easy to integrate low l= evel\n" +"USB transfers with your high-level application or system daemon." +msgstr "" + +#: gnu/packages/gnome.scm:3411 +msgid "Document and image scanner" +msgstr "" + +#: gnu/packages/gnome.scm:3412 +msgid "" +"Simple Scan is an easy-to-use application, designed to let\n" +"users connect their scanner and quickly have the image/document in an\n= " +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" +"the same backend as XSANE uses. This means that all existing scanners w= ill\n" +"work and the interface is well tested." +msgstr "" + +#: gnu/packages/gnome.scm:3461 +msgid "GNOME web browser" +msgstr "" + +#: gnu/packages/gnome.scm:3463 +msgid "" +"Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " +"principles are simplicity and standards compliance." +msgstr "" + +#: gnu/packages/gnome.scm:3519 +msgid "D-Bus debugger" +msgstr "" + +#: gnu/packages/gnome.scm:3521 +msgid "" +"D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" +"of running programs and invoke methods on those interfaces." +msgstr "" + +#: gnu/packages/gnome.scm:3543 +msgid "XSL stylesheets for Yelp" +msgstr "" + +#: gnu/packages/gnome.scm:3545 +msgid "" +"Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" +"to format Docbook and Mallard documents." +msgstr "" + +#: gnu/packages/gnome.scm:3575 +msgid "GNOME help browser" +msgstr "" + +#: gnu/packages/gnome.scm:3577 +msgid "" +"Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" +"man, info, and HTML documents. It can locate documents according to th= e\n" +"freedesktop.org help system specification." +msgstr "" + +#: gnu/packages/gnome.scm:3605 +msgid "Yelp documentation tools" +msgstr "" + +#: gnu/packages/gnome.scm:3607 +msgid "" +"Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" +"manage, and publish documentation for Yelp and the web. Most of the he= avy\n" +"lifting is done by packages like yelp-xsl and itstool. This package ju= st\n" +"wraps things up in a developer-friendly way." +msgstr "" + +#: gnu/packages/gnome.scm:3644 +msgid "GObject collection library" +msgstr "" + +#: gnu/packages/gnome.scm:3646 +msgid "" +"Libgee is a utility library providing GObject-based interfaces and\n" +"classes for commonly used data structures." +msgstr "" + +#: gnu/packages/gnome.scm:3673 +msgid "GObject wrapper around the Exiv2 photo metadata library" +msgstr "" + +#: gnu/packages/gnome.scm:3675 +msgid "" +"Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" +"metadata in photo and video files of various formats." +msgstr "" + +#: gnu/packages/gnome.scm:3727 +msgid "Photo manager for GNOME 3" +msgstr "" + +#: gnu/packages/gnome.scm:3729 +msgid "" +"Shotwell is a digital photo manager designed for the GNOME desktop\n" +"environment. It allows you to import photos from disk or camera, organ= ize\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" +"share them with others via social networking and more." +msgstr "" + +#: gnu/packages/gnome.scm:3761 +msgid "Graphical archive manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3762 +msgid "" +"File Roller is an archive manager for the GNOME desktop\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" +"such as gzip tarballs." +msgstr "" + +#: gnu/packages/gnome.scm:3797 +msgid "Session manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +msgid "Javascript bindings for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "Datenstromeditor" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "" + +#: gnu/packages/gnome.scm:4356 +msgid "Display manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:4484 +msgid "Utilities to configure the GNOME desktop" +msgstr "" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +msgid "File manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +msgid "Disk usage analyzer for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 +msgid "Mozilla javascript engine" +msgstr "" + +#: gnu/packages/gnuzilla.scm:96 +msgid "" +"SpiderMonkey is Mozilla's JavaScript engine written\n" +"in C/C++." +msgstr "" + +#: gnu/packages/gnuzilla.scm:171 +msgid "Netscape API for system level and libc-like functions" +msgstr "" + +#: gnu/packages/gnuzilla.scm:172 +msgid "" +"Netscape Portable Runtime (NSPR) provides a\n" +"platform-neutral API for system level and libc-like functions. It is u= sed\n" +"in the Mozilla clients." +msgstr "" + +#: gnu/packages/gnuzilla.scm:268 +msgid "Network Security Services" +msgstr "" + +#: gnu/packages/gnuzilla.scm:270 +msgid "" +"Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" +"PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " +"standards." +msgstr "" + +#: gnu/packages/gnuzilla.scm:506 +msgid "Entirely free browser derived from Mozilla Firefox" +msgstr "" + +#: gnu/packages/gnuzilla.scm:508 +msgid "" +"IceCat is the GNU version of the Firefox browser. It is entirely free\= n" +"software, which does not recommend non-free plugins and addons. It als= o\n" +"features built-in privacy-protecting features." +msgstr "" + +#: gnu/packages/gtk.scm:87 +msgid "GNOME accessibility toolkit" +msgstr "" + +#: gnu/packages/gtk.scm:89 +msgid "" +"ATK provides the set of accessibility interfaces that are implemented\n= " +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" +"tools have full access to view and control running applications." +msgstr "" + +#: gnu/packages/gtk.scm:128 +msgid "2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:130 +msgid "" +"Cairo is a 2D graphics library with support for multiple output devices= .\n" +"Currently supported output targets include the X Window System (via bot= h\n" +"Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG f= ile\n" +"output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB= .\n" +"\n" +"Cairo is designed to produce consistent output on all output media whil= e\n" +"taking advantage of display hardware acceleration when available\n" +"eg. through the X Render Extension).\n" +"\n" +"The cairo API provides operations similar to the drawing operators of\n= " +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" +"B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" +"affine transformation (scale, rotation, shear, etc.)." +msgstr "" + +#: gnu/packages/gtk.scm:178 +msgid "OpenType text shaping engine" +msgstr "" + +#: gnu/packages/gtk.scm:180 +msgid "HarfBuzz is an OpenType text shaping engine." +msgstr "" + +#: gnu/packages/gtk.scm:211 +msgid "GNOME text and font handling library" +msgstr "" + +#: gnu/packages/gtk.scm:213 +msgid "" +"Pango is the core text and font handling library used in GNOME\n" +"applications. It has extensive support for the different writing syste= ms\n" +"used throughout the world." +msgstr "" + +#: gnu/packages/gtk.scm:239 +msgid "Obsolete pango functions" +msgstr "" + +#: gnu/packages/gtk.scm:240 +msgid "" +"Pangox was a X backend to pango. It is now obsolete and no\n" +"longer provided by recent pango releases. pangox-compat provides the\n= " +"functions which were removed." +msgstr "" + +#: gnu/packages/gtk.scm:276 +msgid "GTK+ widget for interactive graph-like environments" +msgstr "" + +#: gnu/packages/gtk.scm:278 +msgid "" +"Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" +"graph-like environments, e.g. modular synths or finite state machine\n" +"diagrams." +msgstr "" + +#: gnu/packages/gtk.scm:330 +msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" +msgstr "" + +#: gnu/packages/gtk.scm:332 +msgid "" +"GtkSourceView is a portable C library that extends the standard GTK+\n" +"framework for multiline text editing with support for configurable synt= ax\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" +"printing and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 +msgid "GNOME image loading and manipulation library" +msgstr "" + +#: gnu/packages/gtk.scm:431 +msgid "" +"GdkPixbuf is a library for image loading and manipulation developed\n" +"in the GNOME project." +msgstr "" + +#: gnu/packages/gtk.scm:474 +msgid "Assistive Technology Service Provider Interface, core components" +msgstr "" + +#: gnu/packages/gtk.scm:476 +msgid "" +"The Assistive Technology Service Provider Interface, core components,\n= " +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:509 +msgid "Assistive Technology Service Provider Interface, ATK bindings" +msgstr "" + +#: gnu/packages/gtk.scm:511 +msgid "" +"The Assistive Technology Service Provider Interface\n" +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:568 +msgid "Cross-platform toolkit for creating graphical user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:570 +msgid "" +"GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" +"graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" +"suitable for projects ranging from small one-off tools to complete\n" +"application suites." +msgstr "" + +#: gnu/packages/gtk.scm:705 +msgid "Cairo bindings for GNU Guile" +msgstr "" + +#: gnu/packages/gtk.scm:707 +msgid "" +"Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" +"Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" +"stable, providing a firm base on which to do graphics work. Finally, a= nd\n" +"importantly, it is pleasant to use. You get a powerful and well-mainta= ined\n" +"graphics library with all of the benefits of Scheme: memory management,= \n" +"exceptions, macros, and a dynamic programming environment." +msgstr "" + +#: gnu/packages/gtk.scm:747 +msgid "Render SVG images using Cairo from Guile" +msgstr "" + +#: gnu/packages/gtk.scm:749 +msgid "" +"Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" +"images onto Cairo surfaces." +msgstr "" + +#: gnu/packages/gtk.scm:793 +msgid "Create SVG or PDF presentations in Guile" +msgstr "" + +#: gnu/packages/gtk.scm:795 +msgid "" +"Guile-Present defines a declarative vocabulary for presentations,\n" +"together with tools to render presentation documents as SVG or PDF.\n" +"Guile-Present can be used to make presentations programmatically, but a= lso\n" +"includes a tools to generate PDF presentations out of Org mode and Texi= nfo\n" +"documents." +msgstr "" + +#: gnu/packages/gtk.scm:829 +msgid "C++ bindings to the Cairo 2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:831 +msgid "" +"Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " +"library." +msgstr "" + +#: gnu/packages/gtk.scm:855 +msgid "C++ interface to the Pango text rendering library" +msgstr "" + +#: gnu/packages/gtk.scm:857 +msgid "" +"Pangomm provides a C++ programming interface to the Pango text renderin= g\n" +"library." +msgstr "" + +#: gnu/packages/gtk.scm:878 +msgid "C++ interface to the ATK accessibility library" +msgstr "" + +#: gnu/packages/gtk.scm:880 +msgid "" +"ATKmm provides a C++ programming interface to the ATK accessibility\n" +"toolkit." +msgstr "" + +#: gnu/packages/gtk.scm:907 +msgid "C++ interface to the GTK+ graphical user interface library" +msgstr "" + +#: gnu/packages/gtk.scm:909 +msgid "" +"gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" +"extensive documentation, including API reference and a tutorial." +msgstr "" + +#: gnu/packages/gtk.scm:968 +msgid "Python bindings for cairo" +msgstr "" + +#: gnu/packages/gtk.scm:970 +msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." +msgstr "" + +#: gnu/packages/gtk.scm:1053 +msgid "Python bindings for GTK+" +msgstr "" + +#: gnu/packages/gtk.scm:1055 +msgid "" +"PyGTK allows you to write full featured GTK programs in Python. It is\= n" +"targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" +"write GNOME applications." +msgstr "" + +#: gnu/packages/gtk.scm:1086 +msgid "Library for minimalistic gtk+3 user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:1087 +msgid "" +"Girara is a library that implements a user interface that\n" +"focuses on simplicity and minimalism. Currently based on GTK+, a\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" +"main components: a so-called view widget that represents the actual\n" +"application, an input bar that is used to execute commands of the\n" +"application and the status bar which provides the user with current\n" +"information." +msgstr "" + +#: gnu/packages/gtk.scm:1130 +msgid "Documentation generator from C source code" +msgstr "" + +#: gnu/packages/gtk.scm:1132 +msgid "" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" +"can also be used to document application code." +msgstr "" + +#: gnu/packages/gtk.scm:1159 +msgid "Theming engines for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 +msgid "Scheme implementation intended especially for extensions" +msgstr "Scheme-Implementation, die speziell f=C3=BCr Erweiterungen gedac= ht ist" + +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 +msgid "" +"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" +"official extension language of the GNU system. It is an implementation= of\n" +"the Scheme language which can be easily embedded in other applications = to\n" +"provide a convenient means of extending the functionality of the " +"application\n" +"without requiring the source code to be rewritten." +msgstr "" + +#: gnu/packages/guile.scm:213 +msgid "Snapshot of what will become version 2.2 of GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 +msgid "Framework for building readers for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:327 +msgid "" +"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"\n" +"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" +"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" +"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" +"document syntax.\n" +"\n" +"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" +"hopefully more powerful and flexible (for instance, one may instantiate= as\n" +"many readers as needed)." +msgstr "" + +#: gnu/packages/guile.scm:376 +msgid "Guile bindings to ncurses" +msgstr "Guile-Bindungen zu Ncurses" + +#: gnu/packages/guile.scm:378 +msgid "" +"guile-ncurses provides Guile language bindings for the ncurses\n" +"library." +msgstr "" +"guile-ncurses stellt Guile-Sprachbindungen f=C3=BCr die ncurses-\n" +"Bibliothek bereit." + +#: gnu/packages/guile.scm:398 +msgid "Run jobs at scheduled times" +msgstr "Aufgaben planm=C3=A4=C3=9Fig ausf=C3=BChren" + +#: gnu/packages/guile.scm:400 +msgid "" +"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" +"Guile, so its configuration can be written in Scheme; the original cron= \n" +"format is also supported." +msgstr "" +"GNU Mcron ist ein vollst=C3=A4ndiger Ersatz f=C3=BCr Vixie cron. Es wir= d dazu " +"verwendet,\n" +"Aufgaben nach Plan ausf=C3=BChren zu lassen, zum Beispiel jede Stunde o= der jeden\n" +"Montag. Mcron ist in Guile geschrieben, so dass dessen Konfiguration in= " +"Scheme\n" +"verwaltet werden kann. Das originale Cron-Format wird ebenfalls unterst= =C3=BCtzt." + +#: gnu/packages/guile.scm:428 +msgid "Collection of useful Guile Scheme modules" +msgstr "Sammlung n=C3=BCtzlicher Guile-Scheme-Modulen" + +#: gnu/packages/guile.scm:430 +msgid "" +"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" +"modules, allowing for people to cooperate integrating their generic Gui= le\n" +"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" +"for Guile\"." +msgstr "" + +#: gnu/packages/guile.scm:461 +msgid "JSON module for Guile" +msgstr "JSON-Modul f=C3=BCr Guile" + +#: gnu/packages/guile.scm:463 +msgid "" +"Guile-json supports parsing and building JSON documents according to th= e\n" +"http:://json.org specification. These are the main features:\n" +"- Strictly complies to http://json.org specification.\n" +"- Build JSON documents programmatically via macros.\n" +"- Unicode support for strings.\n" +"- Allows JSON pretty printing." +msgstr "" + +#: gnu/packages/guile.scm:534 +msgid "MiniKanren declarative logic system, packaged for Guile" +msgstr "" + +#: gnu/packages/guile.scm:536 +msgid "" +"MiniKanren is a relational programming extension to the Scheme\n" +"programming Language, written as a smaller version of Kanren suitable f= or\n" +"pedagogical purposes. It is featured in the book, The Reasoned Schemer= ,\n" +"written by Dan Friedman, William Byrd, and Oleg Kiselyov.\n" +"\n" +"This is Ian Price's r6rs packaged version of miniKanren, which deviates= \n" +"slightly from miniKanren mainline.\n" +"\n" +"See http://minikanren.org/ for more on miniKanren generally." +msgstr "" + +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 +msgid "Guile bindings to the GDBM library via Guile's FFI" +msgstr "" + +#: gnu/packages/guile.scm:687 +msgid "" +"Guile bindings to the GDBM key-value storage system, using\n" +"Guile's foreign function interface." +msgstr "" + +#: gnu/packages/guile.scm:727 +msgid "Functional static site generator" +msgstr "" + +#: gnu/packages/guile.scm:728 +msgid "" +"Haunt is a static site generator written in Guile\n" +"Scheme. Haunt features a functional build system and an extensible\n" +"interface for reading articles in any format." +msgstr "" + +#: gnu/packages/guile.scm:758 +msgid "Redis client library for Guile" +msgstr "" + +#: gnu/packages/guile.scm:759 +msgid "" +"Guile-redis provides a Scheme interface to the Redis\n" +"key-value cache and store." +msgstr "" + +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" +msgstr "" + +#: gnu/packages/guile.scm:834 +msgid "" +"Wisp is a syntax for Guile which provides a Python-like\n" +"whitespace-significant language. It may be easier on the eyes for some= \n" +"users and in some situations." +msgstr "" + +#: gnu/packages/guile.scm:867 +msgid "2D/3D game engine for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +msgid "Generate C bindings for Guile" +msgstr "" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 +msgid "Create, edit, compose, or convert bitmap images" +msgstr "" + +#: gnu/packages/imagemagick.scm:103 +msgid "" +"ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" +"text, lines, polygons, ellipses and B=C3=A9zier curves." +msgstr "" + +#: gnu/packages/imagemagick.scm:147 +msgid "Perl interface to ImageMagick" +msgstr "" + +#: gnu/packages/imagemagick.scm:148 +msgid "" +"This Perl extension allows the reading, manipulation and\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" +"script." +msgstr "" + +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." +msgstr "" + +#: gnu/packages/image.scm:71 +msgid "Library for handling PNG files" +msgstr "" + +#: gnu/packages/image.scm:73 +msgid "" +"Libpng is the official PNG (Portable Network Graphics) reference\n" +"library. It supports almost all PNG features and is extensible." +msgstr "" + +#: gnu/packages/image.scm:89 +msgid "Library for handling JPEG files" +msgstr "" + +#: gnu/packages/image.scm:91 +msgid "" +"Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" +"JPEG is a standardized compression method for full-color and gray-scale= \n" +"images.\n" +"The included programs provide conversion between the JPEG format and\n" +"image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." +msgstr "" + +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 +msgid "Library for handling TIFF files" +msgstr "" + +#: gnu/packages/image.scm:159 +msgid "" +"Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" +"used for storing image data.\n" +"Included are a library, libtiff, for reading and writing TIFF and a sma= ll\n" +"collection of tools for doing simple manipulations of TIFF images." +msgstr "" + +#: gnu/packages/image.scm:202 +msgid "Library for reading images in the Microsoft WMF format" +msgstr "" + +#: gnu/packages/image.scm:204 +msgid "" +"libwmf is a library for reading vector images in Microsoft's native\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" +"the W3C's XML-based Scaleable Vector Graphic (SVG) format." +msgstr "" + +#: gnu/packages/image.scm:271 +msgid "Library and tools for image processing and analysis" +msgstr "" + +#: gnu/packages/image.scm:273 +msgid "" +"Leptonica is a C library and set of command-line tools for efficient\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" +"scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" +"arithmetic ops." +msgstr "" + +#: gnu/packages/image.scm:296 +msgid "Decoder of the JBIG2 image compression format" +msgstr "" + +#: gnu/packages/image.scm:298 +msgid "" +"JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" +"monochrome) images at moderately high resolution, and in particular sca= nned\n" +"paper documents. In this domain it is very efficient, offering compres= sion\n" +"ratios on the order of 100:1.\n" +"\n" +"This is a decoder only implementation, and currently is in the alpha\n" +"stage, meaning it doesn't completely work yet. However, it is\n" +"maintaining parity with available encoders, so it is useful for real\n" +"work." +msgstr "" + +#: gnu/packages/image.scm:333 +msgid "JPEG 2000 codec" +msgstr "" + +#: gnu/packages/image.scm:335 +msgid "" +"The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" +"been developed in order to promote the use of JPEG 2000, the new\n" +"still-image compression standard from the Joint Photographic Experts\n" +"Group (JPEG).\n" +"\n" +"In addition to the basic codec, various other features are under\n" +"development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats= ,\n" +"an indexing tool useful for the JPIP protocol, JPWL-tools for\n" +"error-resilience, a Java-viewer for j2k-images, ..." +msgstr "" + +#: gnu/packages/image.scm:414 +msgid "Tools and library for working with GIF images" +msgstr "" + +#: gnu/packages/image.scm:416 +msgid "" +"GIFLIB is a library for reading and writing GIF images. It is API and\= n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" +"algorithm was patented. Tools are also included to convert, manipulate= ,\n" +"compose, and analyze GIF images." +msgstr "" + +#: gnu/packages/image.scm:437 +msgid "GIF decompression library" +msgstr "" + +#: gnu/packages/image.scm:439 +msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." +msgstr "" + +#: gnu/packages/image.scm:468 +msgid "Loading, saving, rendering and manipulating image files" +msgstr "" + +#: gnu/packages/image.scm:470 +msgid "" +"Imlib2 is a library that does image file loading and saving as well as\= n" +"rendering, manipulation, arbitrary polygon support, etc.\n" +"\n" +"It does ALL of these operations FAST. Imlib2 also tries to be highly\n= " +"intelligent about doing them, so writing naive programs can be done eas= ily,\n" +"without sacrificing speed.\n" +"\n" +"This is a complete rewrite over the Imlib 1.x series. The architecture= is\n" +"more modular, simple, and flexible." +msgstr "" + +#: gnu/packages/image.scm:498 +msgid "Wrapper library for imlib2" +msgstr "" + +#: gnu/packages/image.scm:500 +msgid "" +"Giblib is a simple library which wraps imlib2's context API, avoiding\n= " +"all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" +"supplies a generic doubly-linked list and some string functions." +msgstr "" + +#: gnu/packages/image.scm:540 +msgid "Library for handling popular graphics image formats" +msgstr "" + +#: gnu/packages/image.scm:542 +msgid "" +"FreeImage is a library for developers who would like to support popular= \n" +"graphics image formats like PNG, BMP, JPEG, TIFF and others." +msgstr "" + +#: gnu/packages/image.scm:592 +msgid "Computer vision library" +msgstr "" + +#: gnu/packages/image.scm:594 +msgid "" +"VIGRA stands for Vision with Generic Algorithms. It is an image\n" +"processing and analysis library that puts its main emphasis on customiz= able\n" +"algorithms and data structures. It is particularly strong for\n" +"multi-dimensional image processing." +msgstr "" + +#: gnu/packages/image.scm:625 +msgid "Lossless and lossy image compression" +msgstr "" + +#: gnu/packages/image.scm:627 +msgid "" +"WebP is a new image format that provides lossless and lossy compression= \n" +"for images. WebP lossless images are 26% smaller in size compared to\n= " +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" +"equivalent SSIM index. WebP supports lossless transparency (also known= as\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" +"to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" +"channels." +msgstr "" + +#: gnu/packages/image.scm:655 +msgid "Library for handling MNG files" +msgstr "" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +msgid "Library for manipulating many image formats" +msgstr "" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" +msgstr "" + +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." +msgstr "" + +#: gnu/packages/inkscape.scm:88 +msgid "Vector graphics editor" +msgstr "" + +#: gnu/packages/inkscape.scm:89 +msgid "" +"Inkscape is a vector graphics editor. What sets Inkscape\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" +"as the native format." +msgstr "" + +#: gnu/packages/jemalloc.scm:47 +msgid "General-purpose scalable concurrent malloc implementation" +msgstr "" + +#: gnu/packages/jemalloc.scm:49 +msgid "" +"This library providing a malloc(3) implementation that emphasizes\n" +"fragmentation avoidance and scalable concurrency support." +msgstr "" + +#: gnu/packages/key-mon.scm:65 +msgid "Show keyboard and mouse status" +msgstr "" + +#: gnu/packages/key-mon.scm:67 +msgid "" +"The key-mon utility displays the current keyboard and mouse status.\n" +"This is useful for teaching and screencasts." +msgstr "" + +#: gnu/packages/less.scm:41 +msgid "Paginator for terminals" +msgstr "" + +#: gnu/packages/less.scm:43 +msgid "" +"GNU less is a pager, a program that allows you to view large amounts\n" +"of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" +"text editors." +msgstr "" + +#: gnu/packages/lesstif.scm:47 +msgid "Clone of the Motif toolkit for the X window system" +msgstr "" + +#: gnu/packages/lesstif.scm:48 +msgid "Clone of the Motif toolkit for the X window system." +msgstr "" + +#: gnu/packages/libreoffice.scm:86 +msgid "General purpose formula parser and interpreter" +msgstr "" + +#: gnu/packages/libreoffice.scm:87 +msgid "" +"Ixion is a library for calculating the results of formula\n" +"expressions stored in multiple named targets, or \"cells\". The cells = can\n" +"be referenced from each other, and the library takes care of resolving\= n" +"their dependencies automatically upon calculation." +msgstr "" + +#: gnu/packages/libreoffice.scm:112 +msgid "File import filter library for spreadsheet documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:113 +msgid "" +"Orcus is a library that provides a collection of standalone\n" +"file processing filters. It is currently focused on providing filters = for\n" +"spreadsheet documents. The library includes import filters for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" +"CSV, CSS and XML." +msgstr "" + +#: gnu/packages/libreoffice.scm:147 +msgid "Document importer for office suites" +msgstr "" + +#: gnu/packages/libreoffice.scm:148 +msgid "" +"Librevenge is a base library for writing document import\n" +"filters. It has interfaces for text documents, vector graphics,\n" +"spreadsheets and presentations." +msgstr "" + +#: gnu/packages/libreoffice.scm:173 +msgid "Library for importing WordPerfect documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:174 +msgid "" +"Libwpd is a C++ library designed to help process\n" +"WordPerfect documents. It is most commonly used to import such documen= ts\n" +"into other word processors." +msgstr "" + +#: gnu/packages/libreoffice.scm:206 +msgid "Library for import of reflowable e-book formats" +msgstr "" + +#: gnu/packages/libreoffice.scm:207 +msgid "" +"Libe-book is a library and a set of tools for reading and\n" +"converting various reflowable e-book formats. Currently supported are:= \n" +"Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped file= s),\n" +"PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled\n" +"cellphones), TCR (simple compressed text format), TealDoc, zTXT,\n" +"ZVR (simple compressed text format)." +msgstr "" + +#: gnu/packages/libreoffice.scm:236 +msgid "Library and tools for the WordPerfect Graphics format" +msgstr "" + +#: gnu/packages/libreoffice.scm:237 +msgid "" +"The libwpg project provides a library and tools for\n" +"working with graphics in the WPG (WordPerfect Graphics) format." +msgstr "" + +#: gnu/packages/libreoffice.scm:278 +msgid "CMIS client library" +msgstr "" + +#: gnu/packages/libreoffice.scm:279 +msgid "" +"LibCMIS is a C++ client library for the CMIS interface. It\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" +"as Alfresco or Nuxeo." +msgstr "" + +#: gnu/packages/libreoffice.scm:310 +msgid "Library for parsing the AbiWord format" +msgstr "" + +#: gnu/packages/libreoffice.scm:311 +msgid "" +"Libabw is a library that parses the file format of\n" +"AbiWord documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:341 +msgid "Library for parsing the CorelDRAW format" +msgstr "" + +#: gnu/packages/libreoffice.scm:342 +msgid "" +"Libcdr is a library that parses the file format of\n" +"CorelDRAW documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:371 +msgid "Library for parsing the Apple Keynote format" +msgstr "" + +#: gnu/packages/libreoffice.scm:372 +msgid "" +"Libetonyek is a library that parses the file format of\n" +"Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." +msgstr "" + +#: gnu/packages/libreoffice.scm:389 +msgid "Text Categorization library" +msgstr "" + +#: gnu/packages/libreoffice.scm:390 +msgid "" +"Libexttextcat is an N-Gram-Based Text Categorization\n" +"library primarily intended for language guessing." +msgstr "" + +#: gnu/packages/libreoffice.scm:416 +msgid "Library for parsing the FreeHand format" +msgstr "" + +#: gnu/packages/libreoffice.scm:417 +msgid "" +"Libfreehand is a library that parses the file format of\n" +"Aldus/Macromedia/Adobe FreeHand documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:443 +msgid "Library for parsing the Microsoft Publisher format" +msgstr "" + +#: gnu/packages/libreoffice.scm:444 +msgid "" +"Libmspub is a library that parses the file format of\n" +"Microsoft Publisher documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:472 +msgid "Library for parsing the PageMaker format" +msgstr "" + +#: gnu/packages/libreoffice.scm:473 +msgid "" +"Libpagemaker is a library that parses the file format of\n" +"Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" +"created by PageMaker version 6.x and 7." +msgstr "" + +#: gnu/packages/libreoffice.scm:508 +msgid "Library for parsing the Microsoft Visio format" +msgstr "" + +#: gnu/packages/libreoffice.scm:509 +msgid "" +"Libvisio is a library that parses the file format of\n" +"Microsoft Visio documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:537 +msgid "ODF (Open Document Format) library" +msgstr "" + +#: gnu/packages/libreoffice.scm:538 +msgid "" +"Libodfgen is a library for generating documents in the\n" +"Open Document Format (ODF). It provides generator implementations for = all\n" +"document interfaces supported by librevenge:\n" +"text documents, vector drawings, presentations and spreadsheets." +msgstr "" + +#: gnu/packages/libreoffice.scm:568 +msgid "Import library for some old Macintosh text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:569 +msgid "" +"Libmwaw contains some import filters for old Macintosh\n" +"text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" +"spreadsheet documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:598 +msgid "Import library for Microsoft Works text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:599 +msgid "" +"Libwps is a library for importing files in the Microsoft\n" +"Works word processor file format." +msgstr "" + +#: gnu/packages/libreoffice.scm:617 +msgid "" +"Hunspell is a spell checker and morphological analyzer\n" +"library and program designed for languages with rich morphology and com= plex\n" +"word compounding or character encoding." +msgstr "" + +#: gnu/packages/libreoffice.scm:638 +msgid "Hyphenation library" +msgstr "" + +#: gnu/packages/libreoffice.scm:639 +msgid "" +"Hyphen is a hyphenation library using TeX hyphenation\n" +"patterns, which are pre-processed by a perl script." +msgstr "" + +#: gnu/packages/libreoffice.scm:662 +msgid "Thesaurus" +msgstr "" + +#: gnu/packages/libreoffice.scm:663 +msgid "" +"MyThes is a simple thesaurus that uses a structured text\n" +"data file and an index file with binary search to look up words and phr= ases\n" +"and to return information on pronunciations, meanings and synonyms." +msgstr "" + +#: gnu/packages/libreoffice.scm:829 +msgid "Office suite" +msgstr "" + +#: gnu/packages/libreoffice.scm:830 +msgid "" +"LibreOffice is a comprehensive office suite. It contains\n" +"a number of components: Writer, a word processor; Calc, a spreadsheet\n= " +"application; Impress, a presentation engine; Draw, a drawing and\n" +"flowcharting application; Base, a database and database frontend;\n" +"Math for editing mathematics." +msgstr "" + +#: gnu/packages/linux.scm:155 +msgid "GNU Linux-Libre kernel headers" +msgstr "" + +#: gnu/packages/linux.scm:156 +msgid "Headers of the Linux-Libre kernel." +msgstr "" + +#: gnu/packages/linux.scm:187 +msgid "Tools for loading and managing Linux kernel modules" +msgstr "" + +#: gnu/packages/linux.scm:189 +msgid "" +"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" +"`insmod', `lsmod', and more." +msgstr "" + +#: gnu/packages/linux.scm:322 +msgid "100% free redistribution of a cleaned Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:324 +msgid "" +"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" +"It has been modified to remove all non-free binary blobs." +msgstr "" + +#: gnu/packages/linux.scm:384 +msgid "Pluggable authentication modules for Linux" +msgstr "" + +#: gnu/packages/linux.scm:386 +msgid "" +"A *Free* project to implement OSF's RFC 86.0.\n" +"Pluggable authentication modules are small shared object files that can= \n" +"be used through the PAM API to perform tasks, like authenticating a use= r\n" +"at login. Local and dynamic reconfiguration are its key features." +msgstr "" + +#: gnu/packages/linux.scm:413 +msgid "Small utilities that use the proc filesystem" +msgstr "" + +#: gnu/packages/linux.scm:415 +msgid "" +"This PSmisc package is a set of some small useful utilities that\n" +"use the proc filesystem. We're not about changing the world, but\n" +"providing the system administrator with some help in common tasks." +msgstr "" + +#: gnu/packages/linux.scm:480 +msgid "Collection of utilities for the Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." +msgstr "" + +#: gnu/packages/linux.scm:522 +msgid "Utilities that give information about processes" +msgstr "" + +#: gnu/packages/linux.scm:524 +msgid "" +"Procps is the package that has a bunch of small useful utilities\n" +"that give information about processes using the Linux /proc file system= .\n" +"The package includes the programs ps, top, vmstat, w, kill, free,\n" +"slabtop, and skill." +msgstr "" + +#: gnu/packages/linux.scm:549 +msgid "Tools for working with USB devices, such as lsusb" +msgstr "" + +#: gnu/packages/linux.scm:551 +msgid "Tools for working with USB devices, such as lsusb." +msgstr "" + +#: gnu/packages/linux.scm:625 +msgid "Creating and checking ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." +msgstr "" + +#: gnu/packages/linux.scm:669 +msgid "Statically-linked fsck.* commands from e2fsprogs" +msgstr "" + +#: gnu/packages/linux.scm:671 +msgid "" +"This package provides statically-linked command of fsck.ext[234] taken\= n" +"from the e2fsprogs package. It is meant to be used in initrds." +msgstr "" + +#: gnu/packages/linux.scm:690 +msgid "Recover deleted files from ext2/3/4 partitions" +msgstr "" + +#: gnu/packages/linux.scm:692 +msgid "" +"Extundelete is a set of tools that can recover deleted files from an\n" +"ext3 or ext4 partition." +msgstr "" + +#: gnu/packages/linux.scm:724 +msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:726 +msgid "" +"The zerofree command scans the free blocks in an ext2 file system and\n= " +"fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" +"images more compressible." +msgstr "" + +#: gnu/packages/linux.scm:745 +msgid "System call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:747 +msgid "" +"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" +"trace of all the system calls made by a another process/program." +msgstr "" + +#: gnu/packages/linux.scm:768 +msgid "Library call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:770 +msgid "" +"ltrace intercepts and records dynamic library calls which are called by= \n" +"an executed process and the signals received by that process. It can a= lso\n" +"intercept and print the system calls executed by the program." +msgstr "" + +#: gnu/packages/linux.scm:790 +msgid "The Advanced Linux Sound Architecture libraries" +msgstr "" + +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 +msgid "" +"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" +"MIDI functionality to the Linux-based operating system." +msgstr "" + +#: gnu/packages/linux.scm:832 +msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" +msgstr "" + +#: gnu/packages/linux.scm:859 +msgid "Program to configure the Linux IP packet filtering rules" +msgstr "" + +#: gnu/packages/linux.scm:861 +msgid "" +"iptables is the userspace command line program used to configure the\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" +"packet filter." +msgstr "" + +#: gnu/packages/linux.scm:908 +msgid "Utilities for controlling TCP/IP networking and traffic in Linux" +msgstr "" + +#: gnu/packages/linux.scm:910 +msgid "" +"Iproute2 is a collection of utilities for controlling TCP/IP\n" +"networking and traffic with the Linux kernel.\n" +"\n" +"Most network configuration manuals still refer to ifconfig and route as= the\n" +"primary network configuration tools, but ifconfig is known to behave\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" +"to support most modern network technologies, as it doesn't use ifconfig= and\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" +"traffic control.\n" +"\n" +"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" +"consists of several tools, of which the most important are ip and tc. = ip\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" +"tools print detailed usage messages and are accompanied by a set of\n" +"manpages." +msgstr "" + +#: gnu/packages/linux.scm:1022 +msgid "Tools for controlling the network subsystem in Linux" +msgstr "" + +#: gnu/packages/linux.scm:1024 +msgid "" +"This package includes the important tools for controlling the network\n= " +"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" +"netstat, rarp and route. Additionally, this package contains utilities= \n" +"relating to particular network hardware types (plipconfig, slattach) an= d\n" +"advanced aspects of IP configuration (iptunnel, ipmaddr)." +msgstr "" + +#: gnu/packages/linux.scm:1061 +msgid "Library for working with POSIX capabilities" +msgstr "" + +#: gnu/packages/linux.scm:1063 +msgid "" +"Libcap2 provides a programming interface to POSIX capabilities on\n" +"Linux-based operating systems." +msgstr "" + +#: gnu/packages/linux.scm:1106 +msgid "Manipulate Ethernet bridges" +msgstr "" + +#: gnu/packages/linux.scm:1108 +msgid "" +"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" +"to connect two Ethernet segments together in a protocol independent way= .\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" +"a router). Since forwarding is done at Layer 2, all protocols can go\n= " +"transparently through a bridge." +msgstr "" + +#: gnu/packages/linux.scm:1130 +msgid "NetLink protocol library suite" +msgstr "" + +#: gnu/packages/linux.scm:1132 +msgid "" +"The libnl suite is a collection of libraries providing APIs to netlink\= n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" +"between the kernel and user space processes. It was designed to be a m= ore\n" +"flexible successor to ioctl to provide mainly networking related kernel= \n" +"configuration and monitoring interfaces." +msgstr "" + +#: gnu/packages/linux.scm:1162 +msgid "Tool for configuring wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:1164 +msgid "" +"iw is a new nl80211 based CLI configuration utility for wireless\n" +"devices. It replaces 'iwconfig', which is deprecated." +msgstr "" + +#: gnu/packages/linux.scm:1190 +msgid "Analyze power consumption on Intel-based laptops" +msgstr "" + +#: gnu/packages/linux.scm:1192 +msgid "" +"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" +"an interactive mode where the user can experiment various power managem= ent\n" +"settings for cases where the operating system has not enabled these\n" +"settings." +msgstr "" + +#: gnu/packages/linux.scm:1214 +msgid "Audio mixer for X and the console" +msgstr "" + +#: gnu/packages/linux.scm:1216 +msgid "" +"Aumix adjusts an audio mixer from X, the console, a terminal,\n" +"the command line or a script." +msgstr "" + +#: gnu/packages/linux.scm:1240 +msgid "Displays the IO activity of running processes" +msgstr "" + +#: gnu/packages/linux.scm:1242 +msgid "" +"Iotop is a Python program with a top like user interface to show the\n" +"processes currently causing I/O." +msgstr "" + +#: gnu/packages/linux.scm:1297 +msgid "Support file systems implemented in user space" +msgstr "" + +#: gnu/packages/linux.scm:1299 +msgid "" +"As a consequence of its monolithic design, file system code for Linux\n= " +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" +"user-space processes." +msgstr "" + +#: gnu/packages/linux.scm:1324 +msgid "User-space union file system" +msgstr "" + +#: gnu/packages/linux.scm:1326 +msgid "" +"UnionFS-FUSE is a flexible union file system implementation in user\n" +"space, using the FUSE library. Mounting a union file system allows you= to\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" +"UnionFS-FUSE additionally supports copy-on-write." +msgstr "" + +#: gnu/packages/linux.scm:1351 +msgid "User-space union file system (statically linked)" +msgstr "" + +#: gnu/packages/linux.scm:1396 +msgid "Mount remote file systems over SSH" +msgstr "" + +#: gnu/packages/linux.scm:1398 +msgid "" +"This is a file system client based on the SSH File Transfer Protocol.\n= " +"Since most SSH servers already support this protocol it is very easy to= set\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" +"file system is as easy as logging into the server with an SSH client." +msgstr "" + +#: gnu/packages/linux.scm:1427 +msgid "Tools for non-uniform memory access (NUMA) machines" +msgstr "" + +#: gnu/packages/linux.scm:1429 +msgid "" +"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" +"memory is not all in one place. The numactl program allows you to run = your\n" +"application program on specific CPU's and memory nodes. It does this b= y\n" +"supplying a NUMA memory policy to the operating system before running y= our\n" +"program.\n" +"\n" +"The package contains other commands, such as numademo, numastat and mem= hog.\n" +"The numademo command provides a quick overview of NUMA performance on y= our\n" +"system." +msgstr "" + +#: gnu/packages/linux.scm:1492 +msgid "Linux keyboard utilities and keyboard maps" +msgstr "" + +#: gnu/packages/linux.scm:1494 +msgid "" +"This package contains keytable files and keyboard utilities compatible\= n" +"for systems using the Linux kernel. This includes commands such as\n" +"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +msgstr "" + +#: gnu/packages/linux.scm:1513 +msgid "Monitor file accesses" +msgstr "" + +#: gnu/packages/linux.scm:1515 +msgid "" +"The inotify-tools packages provides a C library and command-line tools\= n" +"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +msgstr "" + +#: gnu/packages/linux.scm:1553 +msgid "Kernel module tools" +msgstr "" + +#: gnu/packages/linux.scm:1554 +msgid "" +"Kmod is a set of tools to handle common tasks with Linux\n" +"kernel modules like insert, remove, list, check properties, resolve\n" +"dependencies and aliases.\n" +"\n" +"These tools are designed on top of libkmod, a library that is shipped w= ith\n" +"kmod. The aim is to be compatible with tools, configurations and indic= es\n" +"from the module-init-tools project." +msgstr "" + +#: gnu/packages/linux.scm:1586 +msgid "Userspace device management" +msgstr "" + +#: gnu/packages/linux.scm:1587 +msgid "" +"Udev is a daemon which dynamically creates and removes\n" +"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" +"time." +msgstr "" + +#: gnu/packages/linux.scm:1659 +msgid "Logical volume management for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1661 +msgid "" +"LVM2 is the logical volume management tool set for Linux-based systems.= \n" +"This package includes the user-space libraries and tools, including the= " +"device\n" +"mapper. Kernel components are part of Linux-libre." +msgstr "" + +#: gnu/packages/linux.scm:1697 +msgid "Tools for manipulating Linux Wireless Extensions" +msgstr "" + +#: gnu/packages/linux.scm:1698 +msgid "" +"Wireless Tools are used to manipulate the now-deprecated\n" +"Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " +"Extension was an interface allowing you to set Wireless LAN specific\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" +"interface." +msgstr "" + +#: gnu/packages/linux.scm:1770 +msgid "Central regulatory domain agent (CRDA) for WiFi" +msgstr "" + +#: gnu/packages/linux.scm:1772 +msgid "" +"The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" +"communication between the kernel Linux and user space for regulatory\n" +"compliance." +msgstr "" + +#: gnu/packages/linux.scm:1818 +msgid "Wireless regulatory database" +msgstr "" + +#: gnu/packages/linux.scm:1820 +msgid "" +"This package contains the wireless regulatory database Central\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" +"country-specific regulations for the wireless spectrum." +msgstr "" + +#: gnu/packages/linux.scm:1891 +msgid "Utilities to read temperature/voltage/fan sensors" +msgstr "" + +#: gnu/packages/linux.scm:1893 +msgid "" +"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" +"you to access information from temperature, voltage, and fan speed sens= ors.\n" +"It works with most newer systems." +msgstr "" + +#: gnu/packages/linux.scm:1920 +msgid "I2C tools for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1922 +msgid "" +"The i2c-tools package contains a heterogeneous set of I2C tools for\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" +"EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" +"SMBus access." +msgstr "" + +#: gnu/packages/linux.scm:1958 +msgid "Hardware health information viewer" +msgstr "" + +#: gnu/packages/linux.scm:1960 +msgid "" +"Xsensors reads data from the libsensors library regarding hardware\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" +"in a digital read-out." +msgstr "" + +#: gnu/packages/linux.scm:2008 +msgid "Linux profiling with performance counters" +msgstr "" + +#: gnu/packages/linux.scm:2010 +msgid "" +"perf is a tool suite for profiling using hardware performance counters,= \n" +"with support in the Linux kernel. perf can instrument CPU performance\= n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" +"of lightweight profiling. This package contains the user-land tools an= d in\n" +"particular the 'perf' command." +msgstr "" + +#: gnu/packages/linux.scm:2033 +msgid "Simple tool for creating Linux namespace containers" +msgstr "" + +#: gnu/packages/linux.scm:2034 +msgid "" +"pflask is a simple tool for creating Linux namespace\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" +"an isolated container, created with the help of Linux namespaces. It i= s\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" +"thanks to the use of namespaces." +msgstr "" + +#: gnu/packages/linux.scm:2061 +msgid "Tune hard disk parameters for high performance" +msgstr "" + +#: gnu/packages/linux.scm:2063 +msgid "" +"Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" +"is for enabling irq-unmasking and IDE multiple-mode." +msgstr "" + +#: gnu/packages/linux.scm:2086 +msgid "Tool for enabling and disabling wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:2088 +msgid "" +"rfkill is a simple tool for accessing the rfkill device interface,\n" +"which is used to enable and disable wireless networking devices, typica= lly\n" +"WLAN, Bluetooth and mobile broadband." +msgstr "" + +#: gnu/packages/linux.scm:2107 +msgid "Daemon for delivering ACPI events to user-space programs" +msgstr "" + +#: gnu/packages/linux.scm:2109 +msgid "" +"acpid is designed to notify user-space programs of Advanced\n" +"Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" +"during the system boot, and will run as a background process. When an = ACPI\n" +"event is received from the kernel, acpid will examine the list of rules= \n" +"specified in /etc/acpi/events and execute the rules that match the even= t." +msgstr "" + +#: gnu/packages/linux.scm:2131 +msgid "System utilities based on Linux sysfs" +msgstr "" + +#: gnu/packages/linux.scm:2133 +msgid "" +"These are a set of utilities built upon sysfs, a virtual filesystem in\= n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" +"also contains the libsysfs library." +msgstr "" + +#: gnu/packages/linux.scm:2162 +msgid "System utilities based on Linux sysfs (version 1.x)" +msgstr "" + +#: gnu/packages/linux.scm:2185 +msgid "Utilities to get and set CPU frequency on Linux" +msgstr "" + +#: gnu/packages/linux.scm:2187 +msgid "" +"The cpufrequtils suite contains utilities to retrieve CPU frequency\n" +"information, and set the CPU frequency if supported, using the cpufreq\= n" +"capabilities of the Linux kernel." +msgstr "" + +#: gnu/packages/linux.scm:2206 +msgid "Interface library for the Linux IEEE1394 drivers" +msgstr "" + +#: gnu/packages/linux.scm:2208 +msgid "" +"Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" +"protocol in question." +msgstr "" + +#: gnu/packages/linux.scm:2232 +msgid "AV/C protocol library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2234 +msgid "" +"Libavc1394 is a programming interface to the AV/C specification from\n" +"the 1394 Trade Association. AV/C stands for Audio/Video Control." +msgstr "" + +#: gnu/packages/linux.scm:2256 +msgid "Isochronous streaming media library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2258 +msgid "" +"The libiec61883 library provides a higher level API for streaming DV,\n= " +"MPEG-2 and audio over Linux IEEE 1394." +msgstr "" + +#: gnu/packages/linux.scm:2298 +msgid "Tool for managing Linux Software RAID arrays" +msgstr "" + +#: gnu/packages/linux.scm:2300 +msgid "" +"mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" +"arrays when needed." +msgstr "" + +#: gnu/packages/linux.scm:2327 +msgid "Linux-native asynchronous I/O access library" +msgstr "" + +#: gnu/packages/linux.scm:2329 +msgid "" +"This library enables userspace to use Linux kernel asynchronous I/O\n" +"system calls, important for the performance of databases and other adva= nced\n" +"applications." +msgstr "" + +#: gnu/packages/linux.scm:2365 +msgid "Linux Bluetooth protocol stack" +msgstr "" + +#: gnu/packages/linux.scm:2367 +msgid "" +"BlueZ provides support for the core Bluetooth layers and protocols. It= \n" +"is flexible, efficient and uses a modular implementation." +msgstr "" + +#: gnu/packages/linux.scm:2423 +msgid "Mount exFAT file systems" +msgstr "" + +#: gnu/packages/linux.scm:2425 +msgid "" +"This package provides a FUSE-based file system that provides read and\n= " +"write access to exFAT devices." +msgstr "" + +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + +#: gnu/packages/lout.scm:109 +msgid "Document layout system" +msgstr "" + +#: gnu/packages/lout.scm:111 +msgid "" +"The Lout document formatting system reads a high-level description of\n= " +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" +"output file.\n" +"\n" +"Lout offers an unprecedented range of advanced features, including opti= mal\n" +"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" +"scaling, sorted indexes, bibliographic databases, running headers and\n= " +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" +"hyphenation (most European languages are supported), formatting of comp= uter\n" +"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" +"extended with definitions which are very much easier to write than trof= f of\n" +"TeX macros because Lout is a high-level, purely functional language, th= e\n" +"outcome of an eight-year research project that went back to the\n" +"beginning." +msgstr "" + +#: gnu/packages/messaging.scm:77 +msgid "Off-the-Record (OTR) Messaging Library and Toolkit" +msgstr "" + +#: gnu/packages/messaging.scm:79 +msgid "" +"OTR allows you to have private conversations over instant messaging by\= n" +"providing: (1) Encryption: No one else can read your instant messages. = (2)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" +"Deniability: The messages you send do not have digital signatures that = are\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" +"correspondent is assured the messages he sees are authentic and\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" +"keys, no previous conversation is compromised." +msgstr "" + +#: gnu/packages/messaging.scm:135 +msgid "IRC to instant messaging gateway" +msgstr "" + +#: gnu/packages/messaging.scm:136 +msgid "" +"BitlBee brings IM (instant messaging) to IRC clients, for\n" +"people who have an IRC client running all the time and don't want to ru= n an\n" +"additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" +"microblogging network (plus all other Twitter API compatible services l= ike\n" +"identi.ca and status.net)." +msgstr "" + +#: gnu/packages/messaging.scm:169 +msgid "Graphical IRC Client" +msgstr "" + +#: gnu/packages/messaging.scm:171 +msgid "" +"HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" +"users and to highlight messages. It checks spelling using available\n" +"dictionaries. HexChat can be extended with multiple addons." +msgstr "" + +#: gnu/packages/messaging.scm:237 +msgid "Lightweight Internet Relay Chat server for small networks" +msgstr "" + +#: gnu/packages/messaging.scm:239 +msgid "" +"ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" +"networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" +"supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." +msgstr "" + +#: gnu/packages/messaging.scm:310 +msgid "Graphical multi-protocol instant messaging client" +msgstr "" + +#: gnu/packages/messaging.scm:312 +msgid "" +"Pidgin is a modular instant messaging client that supports many popular= \n" +"chat protocols." +msgstr "" + +#: gnu/packages/messaging.scm:350 +msgid "Off-the-Record Messaging plugin for Pidgin" +msgstr "" + +#: gnu/packages/messaging.scm:352 +msgid "" +"Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" +"can read your instant messages. (2) Authentication: You are assured th= e\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" +"do not have digital signatures that are checkable by a third party. An= yone\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" +"you. However, during a conversation, your correspondent is assured the= \n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" +"If you lose control of your private keys, no previous conversation is\n= " +"compromised." +msgstr "" + +#: gnu/packages/messaging.scm:392 +msgid "IRC network bouncer" +msgstr "" + +#: gnu/packages/messaging.scm:393 +msgid "" +"ZNC is an IRC network bouncer or BNC. It can detach the\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" +"clients from different locations can connect to a single ZNC account\n" +"simultaneously and therefore appear under the same nickname on IRC." +msgstr "" + +#: gnu/packages/messaging.scm:415 +msgid "Non-blocking Jabber/XMPP module" +msgstr "" + +#: gnu/packages/messaging.scm:417 +msgid "" +"The goal of this python library is to provide a way for Python\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" +"was initially a fork of xmpppy, but is using non-blocking sockets." +msgstr "" + +#: gnu/packages/messaging.scm:474 +msgid "Jabber (XMPP) client" +msgstr "" + +#: gnu/packages/messaging.scm:475 +msgid "" +"Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" +"transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" +"end-to-end encryption support; XML console." +msgstr "" + +#: gnu/packages/mpd.scm:63 +msgid "Music Player Daemon client library" +msgstr "" + +#: gnu/packages/mpd.scm:64 +msgid "" +"A stable, documented, asynchronous API library for\n" +"interfacing MPD in the C, C++ & Objective C languages." +msgstr "" + +#: gnu/packages/mpd.scm:124 +msgid "Music Player Daemon" +msgstr "" + +#: gnu/packages/mpd.scm:125 +msgid "" +"Music Player Daemon (MPD) is a flexible, powerful,\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" +"can play a variety of sound files while being controlled by its network= \n" +"protocol." +msgstr "" + +#: gnu/packages/mpd.scm:148 +msgid "Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:149 +msgid "" +"MPC is a minimalist command line interface to MPD, the music\n" +"player daemon." +msgstr "" + +#: gnu/packages/mpd.scm:172 +msgid "Curses Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:173 +msgid "" +"ncmpc is a fully featured MPD client, which runs in a\n" +"terminal using ncurses." +msgstr "" + +#: gnu/packages/mpd.scm:211 +msgid "Featureful ncurses based MPD client inspired by ncmpc" +msgstr "" + +#: gnu/packages/mpd.scm:212 +msgid "" +"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" +"but it provides new useful features such as support for regular express= ions\n" +"for library searches, extended song format, items filtering, the abilit= y to\n" +"sort playlists, and a local filesystem browser." +msgstr "" + +#: gnu/packages/mpd.scm:235 +msgid "MPD client for track scrobbling" +msgstr "" + +#: gnu/packages/mpd.scm:236 +msgid "" +"mpdscribble is a Music Player Daemon client which submits\n" +"information about tracks being played to a scrobbler, such as Libre.FM.= " +msgstr "" + +#: gnu/packages/netpbm.scm:146 +msgid "Toolkit for manipulation of images" +msgstr "" + +#: gnu/packages/netpbm.scm:148 +msgid "" +"Netpbm is a toolkit for the manipulation of graphic images, including\n= " +"the conversion of images between a variety of different formats.\n" +"There are over 300 separate tools in the package including converters f= or\n" +"about 100 graphics formats." +msgstr "" + +#: gnu/packages/nettle.scm:51 +msgid "C library for low-level cryptographic functionality" +msgstr "" + +#: gnu/packages/nettle.scm:53 +msgid "" +"GNU Nettle is a low-level cryptographic library. It is designed to\n" +"fit in easily in almost any context. It can be easily included in\n" +"cryptographic toolkits for object-oriented languages or in applications= \n" +"themselves." +msgstr "" + +#: gnu/packages/networking.scm:52 +msgid "Teredo IPv6 tunneling software" +msgstr "" + +#: gnu/packages/networking.scm:54 +msgid "" +"Miredo is an implementation (client, relay, server) of the Teredo\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" +"residing in IPv4-only networks, even when they are behind a NAT device.= " +msgstr "" + +#: gnu/packages/networking.scm:76 +msgid "Open bidirectional communication channels from the command line" +msgstr "" + +#: gnu/packages/networking.scm:78 +msgid "" +"socat is a relay for bidirectional data transfer between two independen= t\n" +"data channels---files, pipes, devices, sockets, etc. It can create\n" +"\"listening\" sockets, named pipes, and pseudo terminals.\n" +"\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" +"line, to logically connect serial lines on different computers, or to\n= " +"establish a relatively secure environment (su and chroot) for running " +"client\n" +"or server shell scripts with network connections." +msgstr "" + +#: gnu/packages/networking.scm:102 +msgid "Library for message-based applications" +msgstr "" + +#: gnu/packages/networking.scm:104 +msgid "" +"The 0MQ lightweight messaging kernel is a library which extends the\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" +"messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" +"asynchronous message queues, multiple messaging patterns, message\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" +"more." +msgstr "" + +#: gnu/packages/networking.scm:125 +msgid "Library for Neighbor Discovery Protocol" +msgstr "" + +#: gnu/packages/networking.scm:127 +msgid "" +"libndp contains a library which provides a wrapper for IPv6 Neighbor\n" +"Discovery Protocol. It also provides a tool named ndptool for sending = and\n" +"receiving NDP messages." +msgstr "" + +#: gnu/packages/networking.scm:145 +msgid "Display or change Ethernet device settings" +msgstr "" + +#: gnu/packages/networking.scm:147 +msgid "" +"ethtool can be used to query and change settings such as speed,\n" +"auto-negotiation and checksum offload on many network devices, especial= ly\n" +"Ethernet devices." +msgstr "" + +#: gnu/packages/networking.scm:183 +msgid "Text based network interface status monitor" +msgstr "" + +#: gnu/packages/networking.scm:185 +msgid "" +"IFStatus is a simple, easy-to-use program for displaying commonly\n" +"needed/wanted real-time traffic statistics of multiple network\n" +"interfaces, with a simple and efficient view on the command line. It i= s\n" +"intended as a substitute for the PPPStatus and EthStatus projects." +msgstr "" + +#: gnu/packages/pdf.scm:101 +msgid "PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:103 +msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +msgstr "" + +#: gnu/packages/pdf.scm:112 +msgid "Qt4 frontend for the Poppler PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:145 +msgid "Python bindings for Poppler-Qt4" +msgstr "" + +#: gnu/packages/pdf.scm:147 +msgid "" +"This package provides Python bindings for the Qt4 interface of the\n" +"Poppler PDF rendering library." +msgstr "" + +#: gnu/packages/pdf.scm:194 +msgid "Viewer for PDF files based on the Motif toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:196 +msgid "Xpdf is a viewer for Portable Document Format (PDF) files." +msgstr "" + +#: gnu/packages/pdf.scm:226 +msgid "Comic book support for zathura (libarchive backend)" +msgstr "" + +#: gnu/packages/pdf.scm:227 +msgid "" +"The zathura-cb plugin adds comic book support to zathura\n" +"using libarchive." +msgstr "" + +#: gnu/packages/pdf.scm:257 +msgid "PS support for zathura (libspectre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:258 +msgid "" +"The zathura-ps plugin adds PS support to zathura\n" +"using libspectre." +msgstr "" + +#: gnu/packages/pdf.scm:289 +msgid "DjVu support for zathura (DjVuLibre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:290 +msgid "" +"The zathura-djvu plugin adds DjVu support to zathura\n" +"using the DjVuLibre library." +msgstr "" + +#: gnu/packages/pdf.scm:322 +msgid "PDF support for zathura (poppler backend)" +msgstr "" + +#: gnu/packages/pdf.scm:323 +msgid "" +"The zathura-pdf-poppler plugin adds PDF support to zathura\n" +"by using the poppler rendering engine." +msgstr "" + +#: gnu/packages/pdf.scm:361 +msgid "Lightweight keyboard-driven PDF viewer" +msgstr "" + +#: gnu/packages/pdf.scm:362 +msgid "" +"Zathura is a customizable document viewer. It provides a\n" +"minimalistic interface and an interface that mainly focuses on keyboard= \n" +"interaction." +msgstr "" + +#: gnu/packages/pdf.scm:401 +msgid "Tools to work with the PDF file format" +msgstr "" + +#: gnu/packages/pdf.scm:403 +msgid "" +"PoDoFo is a C++ library and set of command-line tools to work with the\= n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" +"for applications that wish to do lower level manipulation of PDF, such = as\n" +"extracting content or merging files." +msgstr "" + +#: gnu/packages/pdf.scm:464 +msgid "Lightweight PDF viewer and toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:466 +msgid "" +"MuPDF is a C library that implements a PDF and XPS parsing and\n" +"rendering engine. It is used primarily to render pages into bitmaps,\n= " +"but also provides support for other operations such as searching and\n" +"listing the table of contents and hyperlinks.\n" +"\n" +"The library ships with a rudimentary X11 viewer, and a set of command\n= " +"line tools for batch rendering (pdfdraw), rewriting files (pdfclean),\n= " +"and examining the file structure (pdfshow)." +msgstr "" + +#: gnu/packages/pdf.scm:506 +msgid "Command-line tools and library for transforming PDF files" +msgstr "" + +#: gnu/packages/pdf.scm:508 +msgid "" +"QPDF is a command-line program that does structural, content-preserving= \n" +"transformations on PDF files. It could have been called something like= \n" +"pdf-to-pdf. It includes support for merging and splitting PDFs and to\= n" +"manipulate the list of pages in a PDF file. It is not a PDF viewer or = a\n" +"program capable of converting PDF into other formats." +msgstr "" + +#: gnu/packages/pdf.scm:538 +msgid "Notetaking using a stylus" +msgstr "" + +#: gnu/packages/pdf.scm:540 +msgid "" +"Xournal is an application for notetaking, sketching, keeping a journal\= n" +"using a stylus." +msgstr "" + +#: gnu/packages/pem.scm:41 +msgid "Personal expenses manager" +msgstr "" + +#: gnu/packages/pem.scm:43 +msgid "" +"GNU Pem is a simple tool for tracking personal income and\n" +"expenses. It operates from the command line and it stores its data\n" +"in a basic text format in your home directory. It can easily print\n" +"reports of your spending on different expenses via a basic search\n" +"feature." +msgstr "" + +#: gnu/packages/perl.scm:110 +msgid "Implementation of the Perl programming language" +msgstr "" + +#: gnu/packages/perl.scm:112 +msgid "" +"Perl 5 is a highly capable, feature-rich programming language with over= \n" +"24 years of development." +msgstr "" + +#: gnu/packages/perl.scm:131 +msgid "Module for merging hierarchies using the C3 algorithm" +msgstr "" + +#: gnu/packages/perl.scm:132 +msgid "" +"This module implements the C3 algorithm, which aims to\n" +"provide a sane method resolution order under multiple inheritance." +msgstr "" + +#: gnu/packages/perl.scm:150 +msgid "Compute differences between two files or lists" +msgstr "" + +#: gnu/packages/perl.scm:151 +msgid "" +"This is a module for computing the difference between two\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" +"algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" +"program. It is guaranteed to find the *smallest possible* set of\n" +"differences." +msgstr "" + +#: gnu/packages/perl.scm:173 +msgid "Use shorter versions of class names" +msgstr "" + +#: gnu/packages/perl.scm:174 +msgid "" +"The alias module loads the class you specify and exports\n" +"into your namespace a subroutine that returns the class name. You can\= n" +"explicitly alias the class to another name or, if you prefer, you can d= o so\n" +"implicitly." +msgstr "" + +#: gnu/packages/perl.scm:196 +msgid "Configuration files and command line parsing" +msgstr "" + +#: gnu/packages/perl.scm:197 +msgid "" +"AppConfig is a bundle of Perl5 modules for reading\n" +"configuration files and parsing command line arguments." +msgstr "" + +#: gnu/packages/perl.scm:215 +msgid "Perl API to zip files" +msgstr "" + +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 +msgid "" +"The Archive::Zip module allows a Perl program to create,\n" +"manipulate, read, and write Zip archive files." +msgstr "" + +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 +msgid "Establish an ISA relationship with base classes at compile time" +msgstr "" + +#: gnu/packages/perl.scm:236 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" +"parent." +msgstr "" + +#: gnu/packages/perl.scm:261 +msgid "Execute code after a scope finished compilation" +msgstr "" + +#: gnu/packages/perl.scm:262 +msgid "" +"This module allows you to execute code when perl finished\n" +"compiling the surrounding scope." +msgstr "" + +#: gnu/packages/perl.scm:280 +msgid "Benchmarking with statistical confidence" +msgstr "" + +#: gnu/packages/perl.scm:282 +msgid "" +"The Benchmark::Timer class allows you to time portions of code\n" +"conveniently, as well as benchmark code by allowing timings of repeated= \n" +"trials. It is perfect for when you need more precise information about= the\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" +"but don't want to go all out and profile your code." +msgstr "" + +#: gnu/packages/perl.scm:307 +msgid "Bit vector library" +msgstr "" + +#: gnu/packages/perl.scm:308 +msgid "" +"Bit::Vector is an efficient C library which allows you to\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" +"matrices, all of arbitrary sizes. The package also includes an\n" +"object-oriented Perl module for accessing the C library from Perl, and\= n" +"optionally features overloaded operators for maximum ease of use. The = C\n" +"library can nevertheless be used stand-alone, without Perl." +msgstr "" + +#: gnu/packages/perl.scm:330 +msgid "Boolean support for Perl" +msgstr "" + +#: gnu/packages/perl.scm:331 +msgid "" +"This module provides basic Boolean support, by defining two\n" +"special objects: true and false." +msgstr "" + +#: gnu/packages/perl.scm:352 +msgid "Cache interface for Perl" +msgstr "" + +#: gnu/packages/perl.scm:353 +msgid "" +"The Cache modules are designed to assist a developer in\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" +"in web applications to store data locally to save repeated and redundan= t\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" +"runs of an application or invocations of a CGI-style script or simply a= s an\n" +"easy to use abstraction of the filesystem or shared memory." +msgstr "" + +#: gnu/packages/perl.scm:376 +msgid "Shared memory interprocess cache via mmap" +msgstr "" + +#: gnu/packages/perl.scm:377 +msgid "" +"A shared memory cache through an mmap'ed file. It's core is\n" +"written in C for performance. It uses fcntl locking to ensure multiple= \n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" +"algorithm to keep the most used entries in the cache." +msgstr "" + +#: gnu/packages/perl.scm:398 +msgid "Capture STDOUT and STDERR from Perl, XS or external programs" +msgstr "" + +#: gnu/packages/perl.scm:400 +msgid "" +"Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" +"sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" +"is captured while being passed through to the original file handles." +msgstr "" + +#: gnu/packages/perl.scm:420 +msgid "Executable comments for Perl" +msgstr "" + +#: gnu/packages/perl.scm:421 +msgid "" +"Carp::Assert is intended for a purpose like the ANSI C\n" +"library assert.h." +msgstr "" + +#: gnu/packages/perl.scm:443 +msgid "Convenience wrappers around Carp::Assert" +msgstr "" + +#: gnu/packages/perl.scm:444 +msgid "" +"Carp::Assert::More is a set of handy assertion functions for\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:464 +msgid "Report errors from a \"clan\" of modules" +msgstr "" + +#: gnu/packages/perl.scm:465 +msgid "" +"This module allows errors from a clan (or family) of modules\n" +"to appear to originate from the caller of the clan. This is necessary = in\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" +"the Carp.pm module doesn't help." +msgstr "" + +#: gnu/packages/perl.scm:489 +msgid "Automated accessor generation" +msgstr "" + +#: gnu/packages/perl.scm:490 +msgid "" +"This module automagically generates accessors/mutators for\n" +"your class." +msgstr "" + +#: gnu/packages/perl.scm:512 +msgid "Faster, but less expandable, chained accessors" +msgstr "" + +#: gnu/packages/perl.scm:513 +msgid "" +"A chained accessor is one that always returns the object\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" +"the same mk_accessors interface." +msgstr "" + +#: gnu/packages/perl.scm:539 +msgid "Build groups of accessors" +msgstr "" + +#: gnu/packages/perl.scm:540 +msgid "" +"This class lets you build groups of accessors that will call\n" +"different getters and setters." +msgstr "" + +#: gnu/packages/perl.scm:560 +msgid "Pragma to use the C3 method resolution order algorithm" +msgstr "" + +#: gnu/packages/perl.scm:561 +msgid "" +"This is pragma to change Perl 5's standard method resolution\n" +"order from depth-first left-to-right (a.k.a - pre-order) to the more\n" +"sophisticated C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:585 +msgid "Drop-in replacement for NEXT" +msgstr "" + +#: gnu/packages/perl.scm:586 +msgid "" +"This module is intended as a drop-in replacement for NEXT,\n" +"supporting the same interface, but using Class::C3 to do the hard work.= " +msgstr "" + +#: gnu/packages/perl.scm:610 +msgid "Load mix-ins or components to your C3-based class" +msgstr "" + +#: gnu/packages/perl.scm:611 +msgid "" +"This module will inject base classes to your module using\n" +"the Class::C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:629 +msgid "Inheritable, overridable class data" +msgstr "" + +#: gnu/packages/perl.scm:630 +msgid "" +"Class::Data::Inheritable is for creating accessor/mutators\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" +"subclasses and can be overridden." +msgstr "" + +#: gnu/packages/perl.scm:651 +msgid "Class for easy date and time manipulation" +msgstr "" + +#: gnu/packages/perl.scm:652 +msgid "" +"This module provides a general-purpose date and datetime\n" +"type for perl." +msgstr "" + +#: gnu/packages/perl.scm:671 +msgid "Utility methods for factory classes" +msgstr "" + +#: gnu/packages/perl.scm:672 +msgid "This module exports methods useful for factory classes." +msgstr "" + +#: gnu/packages/perl.scm:689 +msgid "Get information about a class and its structure" +msgstr "" + +#: gnu/packages/perl.scm:690 +msgid "" +"Class::Inspector allows you to get information about a\n" +"loaded class." +msgstr "" + +#: gnu/packages/perl.scm:718 +msgid "Working (require \"Class::Name\") and more" +msgstr "" + +#: gnu/packages/perl.scm:719 +msgid "" +"\"require EXPR\" only accepts Class/Name.pm style module\n" +"names, not Class::Name. For that, this module provides \"load_class\n" +"'Class::Name'\"." +msgstr "" + +#: gnu/packages/perl.scm:742 +msgid "XS implementation of parts of Class::Load" +msgstr "" + +#: gnu/packages/perl.scm:743 +msgid "" +"This module provides an XS implementation for portions of\n" +"Class::Load." +msgstr "" + +#: gnu/packages/perl.scm:762 +msgid "Create generic methods for OO Perl" +msgstr "" + +#: gnu/packages/perl.scm:763 +msgid "" +"This module solves the problem of having to continually\n" +"write accessor methods for your objects that perform standard tasks." +msgstr "" + +#: gnu/packages/perl.scm:784 +msgid "Moose-like method modifiers" +msgstr "" + +#: gnu/packages/perl.scm:785 +msgid "" +"Class::Method::Modifiers provides three modifiers: 'before',\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" +"is run in place of the original method, with a hook to easily call that= \n" +"original method." +msgstr "" + +#: gnu/packages/perl.scm:806 +msgid "Implementation of a singleton class for Perl" +msgstr "" + +#: gnu/packages/perl.scm:807 +msgid "" +"This module implements a Singleton class from which other\n" +"classes can be derived. By itself, the Class::Singleton module does ve= ry\n" +"little other than manage the instantiation of a single object." +msgstr "" + +#: gnu/packages/perl.scm:826 +msgid "Minimalist class construction" +msgstr "" + +#: gnu/packages/perl.scm:827 +msgid "" +"This module offers a minimalist class construction kit. It\n" +"uses no non-core modules for any recent Perl." +msgstr "" + +#: gnu/packages/perl.scm:847 +msgid "Unload a class" +msgstr "" + +#: gnu/packages/perl.scm:848 +msgid "" +"Class:Unload unloads a given class by clearing out its\n" +"symbol table and removing it from %INC." +msgstr "" + +#: gnu/packages/perl.scm:866 +msgid "Generate fast XS accessors without runtime compilation" +msgstr "" + +#: gnu/packages/perl.scm:867 +msgid "" +"Class::XSAccessor implements fast read, write, and\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" +"\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" +"Class::XSAccessor::Array implements the same interface for objects that= use\n" +"arrays for their internal representation." +msgstr "" + +#: gnu/packages/perl.scm:887 +msgid "Recursively copy Perl datatypes" +msgstr "" + +#: gnu/packages/perl.scm:889 +msgid "" +"This module provides a clone() method which makes recursive copies of\n= " +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" +"objects." +msgstr "" + +#: gnu/packages/perl.scm:910 +msgid "Sane defaults for Perl programs" +msgstr "" + +#: gnu/packages/perl.scm:911 +msgid "" +"This module implements some sane defaults for Perl programs,\n" +"as defined by two typical specimens of Perl coders." +msgstr "" + +#: gnu/packages/perl.scm:931 +msgid "Load configuration from different file formats" +msgstr "" + +#: gnu/packages/perl.scm:932 +msgid "" +"Config::Any provides a facility for Perl applications and\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" +"supports XML, YAML, JSON, Apache-style configuration, and Perl code." +msgstr "" + +#: gnu/packages/perl.scm:953 +msgid "Module to implement some AutoConf macros in Perl" +msgstr "" + +#: gnu/packages/perl.scm:954 +msgid "" +"Config::AutoConf is intended to provide the same\n" +"opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." +msgstr "" + +#: gnu/packages/perl.scm:972 +msgid "Generic Config Module" +msgstr "" + +#: gnu/packages/perl.scm:973 +msgid "" +"This module opens a config file and parses its contents for\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" +"the well known Apache config format and is 100% compatible with Apache\= n" +"configs, but you can also just use simple name/value pairs in your conf= ig\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" +"some enhancements such as here-documents, C-style comments, and multili= ne\n" +"options." +msgstr "" + +#: gnu/packages/perl.scm:999 +msgid "Preserve context during subroutine call" +msgstr "" + +#: gnu/packages/perl.scm:1000 +msgid "" +"This module runs code after a subroutine call, preserving\n" +"the context the subroutine would have seen if it were the last statemen= t in\n" +"the caller." +msgstr "" + +#: gnu/packages/perl.scm:1021 +msgid "Verify requirements in a CPAN::Meta object" +msgstr "" + +#: gnu/packages/perl.scm:1022 +msgid "" +"This module verifies if requirements described in a\n" +"CPAN::Meta object are present." +msgstr "" + +#: gnu/packages/perl.scm:1042 +msgid "JSON::XS for Cpanel" +msgstr "" + +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa." +msgstr "" + +#: gnu/packages/perl.scm:1061 +msgid "Random password generator" +msgstr "" + +#: gnu/packages/perl.scm:1062 +msgid "" +"Crypt::RandPasswd provides three functions that can be used\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" +"This code is a Perl implementation of the Automated Password Generator\= n" +"standard, like the program described in \"A Random Word Generator For\n= " +"Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" +"contained in Appendix A of FIPS Publication 181, \"Standard for Automat= ed\n" +"Password Generator\"." +msgstr "" + +#: gnu/packages/perl.scm:1105 +msgid "Library for genomic analysis" +msgstr "" + +#: gnu/packages/perl.scm:1106 +msgid "" +"Chaolin Zhang's Perl Library (czplib) contains assorted\n" +"functions and data structures for processing and analysing genomic and\= n" +"bioinformatics data." +msgstr "" + +#: gnu/packages/perl.scm:1125 +msgid "Pretty printing of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1126 +msgid "" +"This module provide functions that takes a list of values as\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" +"code that, when \"eval\"ed, produces a deep copy of the original argume= nts." +msgstr "" + +#: gnu/packages/perl.scm:1145 +msgid "Concise data dumper" +msgstr "" + +#: gnu/packages/perl.scm:1146 +msgid "" +"Data::Dumper::Concise provides a dumper with Less\n" +"indentation and newlines plus sub deparsing." +msgstr "" + +#: gnu/packages/perl.scm:1168 +msgid "Parse and validate simple name/value option pairs" +msgstr "" + +#: gnu/packages/perl.scm:1170 +msgid "Data::OptList provides a simple syntax for name/value option pair= s." +msgstr "" + +#: gnu/packages/perl.scm:1192 +msgid "Help when paging through sets of results" +msgstr "" + +#: gnu/packages/perl.scm:1193 +msgid "" +"When searching through large amounts of data, it is often\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" +"The maths behind this is unfortunately fiddly, hence this module." +msgstr "" + +#: gnu/packages/perl.scm:1215 +msgid "Structured tags datastructures" +msgstr "" + +#: gnu/packages/perl.scm:1217 +msgid "" +"This module is for manipulating data as hierarchical tag/value\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:1244 +msgid "N at a time iteration API" +msgstr "" + +#: gnu/packages/perl.scm:1245 +msgid "" +"This module tries to find middle ground between one at a\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" +"to avoid the overhead of implementing an iterative api when this isn't\= n" +"necessary, without breaking forward compatibility in case that becomes\= n" +"necessary later on." +msgstr "" + +#: gnu/packages/perl.scm:1270 +msgid "Dynamic generation of nested combinations of variants" +msgstr "" + +#: gnu/packages/perl.scm:1271 +msgid "" +"Data::Tumbler - Dynamic generation of nested combinations of\n" +"variants." +msgstr "" + +#: gnu/packages/perl.scm:1297 +msgid "Visitor style traversal of Perl data structures" +msgstr "" + +#: gnu/packages/perl.scm:1298 +msgid "" +"This module is a simple visitor implementation for Perl\n" +"values. It has a main dispatcher method, visit, which takes a single p= erl\n" +"value and then calls the methods appropriate for that value. It can\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" +"support for per-object behavior, circular structures, visiting tied\n" +"structures, and all ref types (hashes, arrays, scalars, code, globs)." +msgstr "" + +#: gnu/packages/perl.scm:1323 +msgid "Gregorian calendar date calculations" +msgstr "" + +#: gnu/packages/perl.scm:1324 +msgid "" +"This package consists of a Perl module for date calculations\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" +"standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" +"applicable)." +msgstr "" + +#: gnu/packages/perl.scm:1348 +msgid "XS wrapper for Date::Calc" +msgstr "" + +#: gnu/packages/perl.scm:1349 +msgid "" +"Date::Calc::XS is an XS wrapper and C library plug-in for\n" +"Date::Calc." +msgstr "" + +#: gnu/packages/perl.scm:1373 +msgid "Date manipulation routines" +msgstr "" + +#: gnu/packages/perl.scm:1374 +msgid "" +"Date::Manip is a series of modules for common date/time\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" +"time from another, or parsing international times." +msgstr "" + +#: gnu/packages/perl.scm:1402 +msgid "Date and time object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1403 +msgid "" +"DateTime is a class for the representation of date/time\n" +"combinations. It represents the Gregorian calendar, extended backwards= in\n" +"time before its creation (in 1582)." +msgstr "" + +#: gnu/packages/perl.scm:1428 +msgid "DateTime set objects" +msgstr "" + +#: gnu/packages/perl.scm:1429 +msgid "" +"The DateTime::Set module provides a date/time sets\n" +"implementation. It allows, for example, the generation of groups of da= tes,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" +"within a time range." +msgstr "" + +#: gnu/packages/perl.scm:1452 +msgid "DateTime rfc2445 recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1453 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for RFC 2445 style recurrences." +msgstr "" + +#: gnu/packages/perl.scm:1474 +msgid "DateTime::Set extension for basic recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1475 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" +"\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." +msgstr "" + +#: gnu/packages/perl.scm:1500 +msgid "Create DateTime parser classes and objects" +msgstr "" + +#: gnu/packages/perl.scm:1501 +msgid "" +"DateTime::Format::Builder creates DateTime parsers. Many\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" +"to do this without writing reams of structural code." +msgstr "" + +#: gnu/packages/perl.scm:1528 +msgid "Parse data/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1529 +msgid "" +"DateTime::Format::Flexible attempts to take any string you\n" +"give it and parse it into a DateTime object." +msgstr "" + +#: gnu/packages/perl.scm:1555 +msgid "Parse and format iCal datetime and duration strings" +msgstr "" + +#: gnu/packages/perl.scm:1556 +msgid "" +"This module understands the ICal date/time and duration\n" +"formats, as defined in RFC 2445. It can be used to parse these formats= in\n" +"order to create the appropriate objects." +msgstr "" + +#: gnu/packages/perl.scm:1588 +msgid "Machine-readable date/time with natural parsing" +msgstr "" + +#: gnu/packages/perl.scm:1589 +msgid "" +"DateTime::Format::Natural takes a string with a human\n" +"readable date/time and creates a machine readable one by applying natur= al\n" +"parsing logic." +msgstr "" + +#: gnu/packages/perl.scm:1613 +msgid "Parse and format strp and strf time patterns" +msgstr "" + +#: gnu/packages/perl.scm:1614 +msgid "" +"This module implements most of `strptime(3)`, the POSIX\n" +"function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" +"takes a string and a pattern and returns the `DateTime` object associat= ed." +msgstr "" + +#: gnu/packages/perl.scm:1639 +msgid "Localization support for DateTime.pm" +msgstr "" + +#: gnu/packages/perl.scm:1640 +msgid "" +"The DateTime::Locale modules provide localization data for\n" +"the DateTime.pm class." +msgstr "" + +#: gnu/packages/perl.scm:1667 +msgid "Time zone object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1668 +msgid "" +"This class is the base class for all time zone objects. A\n" +"time zone is represented internally as a set of observances, each of wh= ich\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" +"DateTime module, this module does not do much. It's primary interface = is\n" +"through a DateTime object, and most users will not need to directly use= \n" +"DateTime::TimeZone methods." +msgstr "" + +#: gnu/packages/perl.scm:1698 +msgid "Parse date/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1699 +msgid "" +"DateTimeX::Easy uses a variety of DateTime::Format packages\n" +"to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" +"edges (mainly concerning timezone detection and selection)." +msgstr "" + +#: gnu/packages/perl.scm:1720 +msgid "Meatier version of caller" +msgstr "" + +#: gnu/packages/perl.scm:1721 +msgid "Devel::Caller provides meatier version of caller." +msgstr "" + +#: gnu/packages/perl.scm:1739 +msgid "Check that a command is available" +msgstr "" + +#: gnu/packages/perl.scm:1740 +msgid "" +"Devel::CheckBin is a perl module that checks whether a\n" +"particular command is available." +msgstr "" + +#: gnu/packages/perl.scm:1760 +msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" +msgstr "" + +#: gnu/packages/perl.scm:1761 +msgid "" +"Devel::GlobalDestruction provides a function returning the\n" +"equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." +msgstr "" + +#: gnu/packages/perl.scm:1781 +msgid "Alias lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:1782 +msgid "" +"Devel::LexAlias provides the ability to alias a lexical\n" +"variable in a subroutines scope to one of your choosing." +msgstr "" + +#: gnu/packages/perl.scm:1804 +msgid "Introspect overloaded operators" +msgstr "" + +#: gnu/packages/perl.scm:1805 +msgid "" +"Devel::OverloadInfo returns information about overloaded\n" +"operators for a given class (or object), including where in the inherit= ance\n" +"hierarchy the overloads are declared and where the code implementing it= is." +msgstr "" + +#: gnu/packages/perl.scm:1832 +msgid "Partial dumping of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1833 +msgid "" +"This module is a data dumper optimized for logging of\n" +"arbitrary parameters." +msgstr "" + +#: gnu/packages/perl.scm:1851 +msgid "Object representing a stack trace" +msgstr "" + +#: gnu/packages/perl.scm:1852 +msgid "" +"The Devel::StackTrace module contains two classes,\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" +"information that can be retrieved via Perl's caller() function, as well= as\n" +"providing a simple interface to this data." +msgstr "" + +#: gnu/packages/perl.scm:1874 +msgid "Displays stack trace in HTML" +msgstr "" + +#: gnu/packages/perl.scm:1875 +msgid "" +"Devel::StackTrace::AsHTML adds as_html method to\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" +"snippet context and function parameters. If you call it on an instance= of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" +"each stack frame." +msgstr "" + +#: gnu/packages/perl.scm:1896 +msgid "Dump symbol names or the symbol table" +msgstr "" + +#: gnu/packages/perl.scm:1897 +msgid "Devel::Symdump provides access to the perl symbol table." +msgstr "" + +#: gnu/packages/perl.scm:1914 +msgid "Keyed-Hashing for Message Authentication" +msgstr "" + +#: gnu/packages/perl.scm:1915 +msgid "" +"The Digest::HMAC module follows the common Digest::\n" +"interface for the RFC 2104 HMAC mechanism." +msgstr "" + +#: gnu/packages/perl.scm:1931 +msgid "Perl implementation of the SHA-1 message digest algorithm" +msgstr "" + +#: gnu/packages/perl.scm:1933 +msgid "" +"This package provides 'Digest::SHA1', an implementation of the NIST\n" +"SHA-1 message digest algorithm for use by Perl programs." +msgstr "" + +#: gnu/packages/perl.scm:1955 +msgid "Declare version conflicts for your dist" +msgstr "" + +#: gnu/packages/perl.scm:1956 +msgid "" +"This module allows you to specify conflicting versions of\n" +"modules separately and deal with them after the module is done installi= ng." +msgstr "" + +#: gnu/packages/perl.scm:1974 +msgid "OO-ish Error/Exception handling for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1975 +msgid "" +"The Error package provides two interfaces. Firstly Error\n" +"provides a procedural interface to exception handling. Secondly Error = is a\n" +"base class for errors/exceptions that can either be thrown, for subsequ= ent\n" +"catch, or can simply be recorded." +msgstr "" + +#: gnu/packages/perl.scm:2000 +msgid "Safely and cleanly create closures via string eval" +msgstr "" + +#: gnu/packages/perl.scm:2001 +msgid "" +"String eval is often used for dynamic code generation. For\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" +"them in $@@ instead. This module attempts to solve these problems. It= \n" +"provides an eval_closure function, which evals a string in a clean\n" +"environment, other than a fixed list of specified variables. Compilati= on\n" +"errors are rethrown automatically." +msgstr "" + +#: gnu/packages/perl.scm:2030 +msgid "Allows you to declare real exception classes in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2031 +msgid "" +"Exception::Class allows you to declare exception hierarchies\n" +"in your modules in a \"Java-esque\" manner." +msgstr "" + +#: gnu/packages/perl.scm:2047 +msgid "Lightweight exporting of functions and variables" +msgstr "" + +#: gnu/packages/perl.scm:2049 +msgid "" +"Exporter::Lite is an alternative to Exporter, intended to provide a\n" +"lightweight subset of the most commonly-used functionality. It support= s\n" +"import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." +msgstr "" + +#: gnu/packages/perl.scm:2070 +msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" +msgstr "" + +#: gnu/packages/perl.scm:2071 +msgid "" +"Exporter::Tiny supports many of Sub::Exporter's\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" +"only about 40% as many lines of code and with zero non-core dependencie= s." +msgstr "" + +#: gnu/packages/perl.scm:2094 +msgid "Build.PL install path logic made easy" +msgstr "" + +#: gnu/packages/perl.scm:2095 +msgid "" +"This module tries to make install path resolution as easy as\n" +"possible." +msgstr "" + +#: gnu/packages/perl.scm:2113 +msgid "Wrapper for perl's configuration" +msgstr "" + +#: gnu/packages/perl.scm:2114 +msgid "" +"ExtUtils::Config is an abstraction around the %Config hash.\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" +"it ties together a family of modern toolchain modules." +msgstr "" + +#: gnu/packages/perl.scm:2133 +msgid "Various portability utilities for module builders" +msgstr "" + +#: gnu/packages/perl.scm:2134 +msgid "" +"This module provides various portable helper functions for\n" +"module building modules." +msgstr "" + +#: gnu/packages/perl.scm:2164 +msgid "Watch for changes to files" +msgstr "" + +#: gnu/packages/perl.scm:2165 +msgid "" +"This module provides a class to monitor a directory for\n" +"changes made to any file." +msgstr "" + +#: gnu/packages/perl.scm:2183 +msgid "Recursively copy files and directories" +msgstr "" + +#: gnu/packages/perl.scm:2184 +msgid "" +"This module has 3 functions: one to copy files only, one to\n" +"copy directories only, and one to do either depending on the argument's= \n" +"type." +msgstr "" + +#: gnu/packages/perl.scm:2206 +msgid "Alternative interface to File::Find" +msgstr "" + +#: gnu/packages/perl.scm:2207 +msgid "" +"File::Find::Rule is a friendlier interface to File::Find.\n" +"It allows you to build rules which specify the desired files and\n" +"directories." +msgstr "" + +#: gnu/packages/perl.scm:2230 +msgid "Common rules for searching for Perl things" +msgstr "" + +#: gnu/packages/perl.scm:2231 +msgid "" +"File::Find::Rule::Perl provides methods for finding various\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" +"in various parts of the CPAN ecosystem." +msgstr "" + +#: gnu/packages/perl.scm:2254 +msgid "Find your home and other directories on any platform" +msgstr "" + +#: gnu/packages/perl.scm:2255 +msgid "" +"File::HomeDir is a module for locating the directories that\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" +"that arise trying to find them consistently across a wide variety of\n" +"platforms." +msgstr "" + +#: gnu/packages/perl.scm:2282 +msgid "" +"Perl extension for crawling directory trees and compiling\n" +"lists of files" +msgstr "" + +#: gnu/packages/perl.scm:2285 +msgid "" +"The File::List module crawls the directory tree starting at the\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" +"matching a regular expression." +msgstr "" + +#: gnu/packages/perl.scm:2304 +msgid "Remove files and directories in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2305 +msgid "" +"File::Remove::remove removes files and directories. It acts\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" +"files, it will not remove directories; this module remedies that. It a= lso\n" +"accepts wildcards, * and ?, as arguments for file names." +msgstr "" + +#: gnu/packages/perl.scm:2329 +msgid "Locate per-dist and per-module shared files" +msgstr "" + +#: gnu/packages/perl.scm:2330 +msgid "" +"The intent of File::ShareDir is to provide a companion to\n" +"Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" +"module to have access to a large amount of read-only data that is store= d on\n" +"the file-system at run-time. Once the files have been installed to the= \n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" +"the installation." +msgstr "" + +#: gnu/packages/perl.scm:2352 +msgid "Install shared files" +msgstr "" + +#: gnu/packages/perl.scm:2353 +msgid "" +"File::ShareDir::Install allows you to install read-only data\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" +"allows you to locate these files after installation." +msgstr "" + +#: gnu/packages/perl.scm:2372 +msgid "Reading/Writing/Modifying of complete files" +msgstr "" + +#: gnu/packages/perl.scm:2373 +msgid "" +"File::Slurp provides subroutines to read or write entire\n" +"files with a simple call. It also has a subroutine for reading the lis= t of\n" +"file names in a directory." +msgstr "" + +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 +msgid "Return name and handle of a temporary file safely" +msgstr "" + +#: gnu/packages/perl.scm:2413 +msgid "" +"File::Temp can be used to create and open temporary files in\n" +"a safe way." +msgstr "" + +#: gnu/packages/perl.scm:2430 +msgid "Portable implementation of the `which' utility" +msgstr "" + +#: gnu/packages/perl.scm:2432 +msgid "" +"File::Which was created to be able to get the paths to executable\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" +"shell." +msgstr "" + +#: gnu/packages/perl.scm:2459 +msgid "Getopt::Long, but simpler and more powerful" +msgstr "" + +#: gnu/packages/perl.scm:2460 +msgid "" +"Getopt::Long::Descriptive is yet another Getopt library.\n" +"It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" +"avoid making you think about its huge array of options. It also provid= es\n" +"usage (help) messages, data validation, and a few other useful features= ." +msgstr "" + +#: gnu/packages/perl.scm:2478 +msgid "Table-driven argument parsing for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2480 +msgid "" +"Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " +"vaguely inspired by John Ousterhout's Tk_ParseArgv." +msgstr "" + +#: gnu/packages/perl.scm:2500 +msgid "Merge arbitrarily deep hashes into a single hash" +msgstr "" + +#: gnu/packages/perl.scm:2501 +msgid "" +"Hash::Merge merges two arbitrarily deep hashes into a single\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" +"value conflicts. The hash is followed recursively, so that deeply nest= ed\n" +"hashes that are at the same level will be merged when the parent hashes= are\n" +"merged." +msgstr "" + +#: gnu/packages/perl.scm:2523 +msgid "Store multiple values per key" +msgstr "" + +#: gnu/packages/perl.scm:2524 +msgid "" +"Hash::MultiValue is an object (and a plain hash reference)\n" +"that may contain multiple values per key, inspired by MultiDict of WebO= b." +msgstr "" + +#: gnu/packages/perl.scm:2544 +msgid "Import packages into other packages" +msgstr "" + +#: gnu/packages/perl.scm:2545 +msgid "" +"Writing exporters is a pain. Some use Exporter, some use\n" +"Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" +"exporters don't provide a consistent API for this, and pragmas need to = have\n" +"their import method called directly, since they effect the current unit= of\n" +"compilation. Import::Into provides global methods to make this painles= s." +msgstr "" + +#: gnu/packages/perl.scm:2567 +msgid "Use modules in inc/ if newer than installed" +msgstr "" + +#: gnu/packages/perl.scm:2568 +msgid "" +"The inc::latest module helps bootstrap configure-time\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" +"inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." +msgstr "" + +#: gnu/packages/perl.scm:2587 +msgid "Utilities for interactive I/O" +msgstr "" + +#: gnu/packages/perl.scm:2588 +msgid "" +"This module provides three utility subroutines that make it\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" +"and busy()." +msgstr "" + +#: gnu/packages/perl.scm:2607 +msgid "Emulate file interface for in-core strings" +msgstr "" + +#: gnu/packages/perl.scm:2608 +msgid "" +"IO::String is an IO::File (and IO::Handle) compatible class\n" +"that reads or writes data from in-core strings." +msgstr "" + +#: gnu/packages/perl.scm:2626 +msgid "IO:: interface for reading/writing an array of lines" +msgstr "" + +#: gnu/packages/perl.scm:2627 +msgid "" +"This toolkit primarily provides modules for performing both\n" +"traditional and object-oriented i/o) on things *other* than normal\n" +"filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " +msgstr "" + +#: gnu/packages/perl.scm:2645 +msgid "Perl interface to pseudo ttys" +msgstr "" + +#: gnu/packages/perl.scm:2647 +msgid "" +"This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" +"pseudo ttys." +msgstr "" + +#: gnu/packages/perl.scm:2675 +msgid "Run system() and background procs w/ piping, redirs, ptys" +msgstr "" + +#: gnu/packages/perl.scm:2676 +msgid "" +"IPC::Run allows you run and interact with child processes\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" +"are supported and may be mixed. Likewise, functional and OO API styles= are\n" +"both supported and may be mixed." +msgstr "" + +#: gnu/packages/perl.scm:2694 +msgid "Run a subprocess with input/output redirection" +msgstr "" + +#: gnu/packages/perl.scm:2696 +msgid "" +"The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" +"99% of the need for using system, qx, and open3 with a simple, extremel= y\n" +"Perlish API and none of the bloat and rarely used features of IPC::Run.= " +msgstr "" + +#: gnu/packages/perl.scm:2720 +msgid "Lightweight interface to shared memory" +msgstr "" + +#: gnu/packages/perl.scm:2721 +msgid "" +"IPC::ShareLite provides a simple interface to shared memory,\n" +"allowing data to be efficiently communicated between processes." +msgstr "" + +#: gnu/packages/perl.scm:2741 +msgid "JSON encoder/decoder for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2742 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa using either JSON::XS or JSON::PP." +msgstr "" + +#: gnu/packages/perl.scm:2767 +msgid "Wrapper for Perl JSON classes" +msgstr "" + +#: gnu/packages/perl.scm:2769 +msgid "" +"This module tries to provide a coherent API to bring together the\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" +"any JSON API and have it work regardless of which JSON module is actual= ly\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:2793 +msgid "Cpanel::JSON::XS with fallback" +msgstr "" + +#: gnu/packages/perl.scm:2794 +msgid "" +"This module first checks to see if either Cpanel::JSON::XS\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" +"either uses the first module it finds or throws an error." +msgstr "" + +#: gnu/packages/perl.scm:2817 +msgid "JSON serialising/deserialising for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 +msgid "Combination of List::Util and List::MoreUtils" +msgstr "" + +#: gnu/packages/perl.scm:2890 +msgid "" +"This module exports all of the functions that either\n" +"List::Util or List::MoreUtils defines, with preference to List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2914 +msgid "Provide the stuff missing in List::Util" +msgstr "" + +#: gnu/packages/perl.scm:2915 +msgid "" +"List::MoreUtils provides some trivial but commonly needed\n" +"functionality on lists which is not going to go into List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2933 +msgid "Expiry plug-in for Memoize that adds LRU cache expiration" +msgstr "" + +#: gnu/packages/perl.scm:2934 +msgid "" +"This module implements an expiry policy for Memoize that\n" +"follows LRU semantics, that is, the last n results, where n is specifie= d as\n" +"the argument to the CACHESIZE parameter, will be cached." +msgstr "" + +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 +msgid "Definition of MIME types" +msgstr "" + +#: gnu/packages/perl.scm:2973 +msgid "" +"This module provides a list of known mime-types, combined\n" +"from various sources. For instance, it contains all IANA types and the= \n" +"knowledge of Apache." +msgstr "" + +#: gnu/packages/perl.scm:3002 +msgid "Tiny replacement for Module::Build" +msgstr "" + +#: gnu/packages/perl.scm:3003 +msgid "" +"Many Perl distributions use a Build.PL file instead of a\n" +"Makefile.PL file to drive distribution configuration, build, test and\n= " +"installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" +"build system. This module provides a simple, lightweight, drop-in\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" +"has less than 120, yet supports the features needed by most distributio= ns." +msgstr "" + +#: gnu/packages/perl.scm:3025 +msgid "Find and use installed modules in a (sub)category" +msgstr "" + +#: gnu/packages/perl.scm:3026 +msgid "" +"Module::Find lets you find and use modules in categories.\n" +"This can be useful for auto-detecting driver or plugin modules. You ca= n\n" +"differentiate between looking in the category itself or in all\n" +"subcategories." +msgstr "" + +#: gnu/packages/perl.scm:3052 +msgid "Loads alternate underlying implementations for a module" +msgstr "" + +#: gnu/packages/perl.scm:3053 +msgid "" +"This module abstracts out the process of choosing one of\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" +"implementations." +msgstr "" + +#: gnu/packages/perl.scm:3091 +msgid "Standalone, extensible Perl module installer" +msgstr "" + +#: gnu/packages/perl.scm:3092 +msgid "" +"Module::Install is a package for writing installers for\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" +"strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" +"installation version 5.005 or newer." +msgstr "" + +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 +msgid "Perl runtime module handling" +msgstr "" + +#: gnu/packages/perl.scm:3134 +msgid "" +"The functions exported by this module deal with runtime\n" +"handling of Perl modules, which are normally handled at compile time." +msgstr "" + +#: gnu/packages/perl.scm:3157 +msgid "Provide information on conflicts for Module::Runtime" +msgstr "" + +#: gnu/packages/perl.scm:3158 +msgid "" +"This module provides conflicts checking for Module::Runtime,\n" +"which had a recent release that broke some versions of Moose. It is ca= lled\n" +"from Moose::Conflicts and moose-outdated." +msgstr "" + +#: gnu/packages/perl.scm:3179 +msgid "Recursively scan Perl code for dependencies" +msgstr "" + +#: gnu/packages/perl.scm:3180 +msgid "" +"Module::ScanDeps is a module to recursively scan Perl\n" +"programs for dependencies." +msgstr "" + +#: gnu/packages/perl.scm:3200 +msgid "Module name tools and transformations" +msgstr "" + +#: gnu/packages/perl.scm:3201 +msgid "" +"This module provides a few useful functions for manipulating\n" +"module names. Its main aim is to centralise some of the functions comm= only\n" +"used by modules that manipulate other modules in some way, like convert= ing\n" +"module names to relative paths." +msgstr "" + +#: gnu/packages/perl.scm:3231 +msgid "Minimalist Object Orientation (with Moose compatibility)" +msgstr "" + +#: gnu/packages/perl.scm:3232 +msgid "" +"Moo is an extremely light-weight Object Orientation system.\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" +"that avoids the details of Perl's object system. Moo contains a subset= of\n" +"Moose and is optimised for rapid startup." +msgstr "" + +#: gnu/packages/perl.scm:3308 +msgid "Postmodern object system for Perl 5" +msgstr "" + +#: gnu/packages/perl.scm:3310 +msgid "" +"Moose is a complete object system for Perl 5. It provides keywords for= \n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" +"Moose, you define your class declaratively, without needing to know abo= ut\n" +"blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" +"A class definition with Moose reads like a list of very concise English= \n" +"sentences." +msgstr "" + +#: gnu/packages/perl.scm:3338 +msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" +msgstr "" + +#: gnu/packages/perl.scm:3339 +msgid "" +"This module attempts to emulate the behavior of\n" +"Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" +"private methods are not." +msgstr "" + +#: gnu/packages/perl.scm:3371 +msgid "Moose role for processing command line options" +msgstr "" + +#: gnu/packages/perl.scm:3372 +msgid "" +"This is a Moose role which provides an alternate constructor\n" +"for creating objects using parameters passed in from the command line." +msgstr "" + +#: gnu/packages/perl.scm:3393 +msgid "Mark overload code symbols as methods" +msgstr "" + +#: gnu/packages/perl.scm:3394 +msgid "" +"MooseX::MarkAsMethods allows one to easily mark certain\n" +"functions as Moose methods. This will allow other packages such as\n" +"namespace::autoclean to operate without blowing away your overloads. A= fter\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" +"being methods, and class extension as well as composition from roles wi= th\n" +"overloads will \"just work\"." +msgstr "" + +#: gnu/packages/perl.scm:3424 +msgid "Code attribute introspection" +msgstr "" + +#: gnu/packages/perl.scm:3425 +msgid "" +"This module allows code attributes of methods to be\n" +"introspected using Moose meta method objects." +msgstr "" + +#: gnu/packages/perl.scm:3451 +msgid "Subclassing of non-Moose classes" +msgstr "" + +#: gnu/packages/perl.scm:3452 +msgid "" +"MooseX::NonMoose allows for easily subclassing non-Moose\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" +"as setting up proper inheritance from Moose::Object and installing (and= \n" +"inlining, at make_immutable time) a constructor that makes sure things = like\n" +"BUILD methods are called. It tries to be as non-intrusive as possible.= " +msgstr "" + +#: gnu/packages/perl.scm:3481 +msgid "Extension of Params::Validate using Moose's types" +msgstr "" + +#: gnu/packages/perl.scm:3482 +msgid "" +"This module fills a gap in Moose by adding method parameter\n" +"validation to Moose." +msgstr "" + +#: gnu/packages/perl.scm:3503 +msgid "Apply roles to a related Perl class" +msgstr "" + +#: gnu/packages/perl.scm:3504 +msgid "" +"This module applies roles to make a subclass instead of\n" +"manually setting up a subclass." +msgstr "" + +#: gnu/packages/perl.scm:3531 +msgid "Moose roles with composition parameters" +msgstr "" + +#: gnu/packages/perl.scm:3532 +msgid "" +"Because Moose roles serve many different masters, they\n" +"usually provide only the least common denominator of functionality. To= \n" +"empower roles further, more configurability than -alias and -excludes i= s\n" +"required. Perhaps your role needs to know which method to call when it= is\n" +"done processing, or what default value to use for its url attribute.\n" +"Parameterized roles offer a solution to these (and other) kinds of prob= lems." +msgstr "" + +#: gnu/packages/perl.scm:3558 +msgid "Roles which support overloading" +msgstr "" + +#: gnu/packages/perl.scm:3559 +msgid "" +"MooseX::Role::WithOverloading allows you to write a\n" +"Moose::Role which defines overloaded operators and allows those overloa= d\n" +"methods to be composed into the classes/roles/instances it's compiled t= o,\n" +"where plain Moose::Roles would lose the overloading." +msgstr "" + +#: gnu/packages/perl.scm:3581 +msgid "Name your accessors foo() and set_foo()" +msgstr "" + +#: gnu/packages/perl.scm:3582 +msgid "" +"This module does not provide any methods. Simply loading it\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" +"accessor, while set methods are prefixed with \"_set_\"." +msgstr "" + +#: gnu/packages/perl.scm:3608 +msgid "Strict object constructors for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3609 +msgid "" +"Simply loading this module makes your constructors\n" +"\"strict\". If your constructor is called with an attribute init argum= ent\n" +"that your class does not declare, then it calls Moose->throw_error()." +msgstr "" + +#: gnu/packages/perl.scm:3637 +msgid "Trait loading and resolution for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3638 +msgid "" +"Adds support on top of MooseX::Traits for class precedence\n" +"search for traits and some extra attributes." +msgstr "" + +#: gnu/packages/perl.scm:3664 +msgid "Organise your Moose types in libraries" +msgstr "" + +#: gnu/packages/perl.scm:3665 +msgid "" +"This package lets you declare types using short names, but\n" +"behind the scenes it namespaces all your type declarations, effectively= \n" +"prevent name clashes between packages." +msgstr "" + +#: gnu/packages/perl.scm:3696 +msgid "DateTime related constraints and coercions for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3697 +msgid "" +"This module packages several Moose::Util::TypeConstraints\n" +"with coercions, designed to work with the DateTime suite of objects." +msgstr "" + +#: gnu/packages/perl.scm:3729 +msgid "Extensions to MooseX::Types::DateTime" +msgstr "" + +#: gnu/packages/perl.scm:3730 +msgid "" +"This module builds on MooseX::Types::DateTime to add\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" +"all coercions and constraints are inherited." +msgstr "" + +#: gnu/packages/perl.scm:3759 +msgid "ClassName type constraints for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3760 +msgid "" +"MooseX::Types::LoadableClass provides a ClassName type\n" +"constraint with coercion to load the class." +msgstr "" + +#: gnu/packages/perl.scm:3784 +msgid "Moosish types and type builder" +msgstr "" + +#: gnu/packages/perl.scm:3785 +msgid "" +"MooX::Types::MooseLike provides a possibility to build your\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" +"fields in Moo-based classes." +msgstr "" + +#: gnu/packages/perl.scm:3804 +msgid "MRO interface compatibility for Perls < 5.9.5" +msgstr "" + +#: gnu/packages/perl.scm:3805 +msgid "" +"The \"mro\" namespace provides several utilities for dealing\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" +"higher. This module provides those interfaces for earlier versions of\= n" +"Perl (back to 5.6.0)." +msgstr "" + +#: gnu/packages/perl.scm:3832 +msgid "Keep imports out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3833 +msgid "" +"The namespace::autoclean pragma will remove all imported\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" +"up as methods on your class or instances. It is very similar to\n" +"namespace::clean, except it will clean all imported functions, no matte= r if\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" +"anything that looks like a method." +msgstr "" + +#: gnu/packages/perl.scm:3859 +msgid "Keep imports and functions out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3860 +msgid "" +"The namespace::clean pragma will remove all previously\n" +"declared or imported symbols at the end of the current package's compil= e\n" +"cycle. Functions called in the package itself will still be bound by t= heir\n" +"name, but they won't show up as methods on your class or instances." +msgstr "" + +#: gnu/packages/perl.scm:3880 +msgid "Numeric comparisons" +msgstr "" + +#: gnu/packages/perl.scm:3881 +msgid "" +"Number::Compare compiles a simple comparison to an anonymous\n" +"subroutine, which you can call with a value to be tested against." +msgstr "" + +#: gnu/packages/perl.scm:3899 +msgid "Generate cryptographic signatures for objects" +msgstr "" + +#: gnu/packages/perl.scm:3900 +msgid "" +"Object::Signature is an abstract base class that you can\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" +"signatures." +msgstr "" + +#: gnu/packages/perl.scm:3922 +#, fuzzy +msgid "Anonymous packages" +msgstr "~A: unbekanntes Paket~%" + +#: gnu/packages/perl.scm:3923 +msgid "" +"This module allows for anonymous packages that are\n" +"independent of the main namespace and only available through an object\= n" +"instance, not by name." +msgstr "" + +#: gnu/packages/perl.scm:3951 +msgid "Manage deprecation warnings for your distribution" +msgstr "" + +#: gnu/packages/perl.scm:3952 +msgid "" +"This module allows you to manage a set of deprecations for\n" +"one or more modules." +msgstr "" + +#: gnu/packages/perl.scm:3979 +msgid "Routines for manipulating stashes" +msgstr "" + +#: gnu/packages/perl.scm:3980 +msgid "" +"Manipulating stashes (Perl's symbol tables) is occasionally\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" +"of that behind a simple API." +msgstr "" + +#: gnu/packages/perl.scm:4003 +msgid "Faster implementation of the Package::Stash API" +msgstr "" + +#: gnu/packages/perl.scm:4004 +msgid "" +"This is a backend for Package::Stash, which provides the\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" +"compiler." +msgstr "" + +#: gnu/packages/perl.scm:4024 +msgid "Play with other peoples' lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:4025 +msgid "" +"PadWalker is a module which allows you to inspect (and even\n" +"change) lexical variables in any subroutine which called you. It will = only\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" +"is particularly useful for debugging." +msgstr "" + +#: gnu/packages/perl.scm:4046 +msgid "Simple, compact and correct param-checking functions" +msgstr "" + +#: gnu/packages/perl.scm:4048 +msgid "" +"Params::Util provides a basic set of importable functions that makes\n" +"checking parameters easier." +msgstr "" + +#: gnu/packages/perl.scm:4072 +msgid "Validate method/function parameters" +msgstr "" + +#: gnu/packages/perl.scm:4073 +msgid "" +"The Params::Validate module allows you to validate method or\n" +"function call parameters to an arbitrary level of specificity." +msgstr "" + +#: gnu/packages/perl.scm:4091 +msgid "Create and manipulate PAR distributions" +msgstr "" + +#: gnu/packages/perl.scm:4092 +msgid "" +"PAR::Dist is a toolkit to create and manipulate PAR\n" +"distributions." +msgstr "" + +#: gnu/packages/perl.scm:4111 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time." +msgstr "" + +#: gnu/packages/perl.scm:4130 +msgid "Path specification manipulation" +msgstr "" + +#: gnu/packages/perl.scm:4131 +msgid "" +"Path::Class is a module for manipulation of file and\n" +"directory specifications in a cross-platform manner." +msgstr "" + +#: gnu/packages/perl.scm:4151 +msgid "Check for comprehensive documentation of a module" +msgstr "" + +#: gnu/packages/perl.scm:4152 +msgid "" +"This module provides a mechanism for determining if the pod\n" +"for a given module is comprehensive." +msgstr "" + +#: gnu/packages/perl.scm:4169 +msgid "Parsing library for text in Pod format" +msgstr "" + +#: gnu/packages/perl.scm:4170 +msgid "" +"Pod::Simple is a Perl library for parsing text in\n" +"the Pod (plain old documentation) markup language that is typically\n" +"used for writing documentation for Perl and for Perl modules." +msgstr "" + +#: gnu/packages/perl.scm:4191 +msgid "GNU C library compatible strftime for loggers and servers" +msgstr "" + +#: gnu/packages/perl.scm:4192 +msgid "" +"POSIX::strftime::Compiler provides GNU C library compatible\n" +"strftime(3). But this module is not affected by the system locale. Th= is\n" +"feature is useful when you want to write loggers, servers, and portable= \n" +"applications." +msgstr "" + +#: gnu/packages/perl.scm:4210 +msgid "Information about the currently running perl" +msgstr "" + +#: gnu/packages/perl.scm:4212 +msgid "" +"Probe::Perl provides methods for obtaining information about the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" +"Module::Build project, but has been externalized here for general use." +msgstr "" + +#: gnu/packages/perl.scm:4234 +msgid "Create read-only scalars, arrays, hashes" +msgstr "" + +#: gnu/packages/perl.scm:4235 +msgid "" +"This module provides a facility for creating non-modifiable\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" +"variables that should not be changed." +msgstr "" + +#: gnu/packages/perl.scm:4253 +msgid "Provide commonly requested regular expressions" +msgstr "" + +#: gnu/packages/perl.scm:4255 +msgid "" +"This module exports a single hash (`%RE') that stores or generates\n" +"commonly needed regular expressions. Patterns currently provided inclu= de:\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" +"floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" +"offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" +"codes." +msgstr "" + +#: gnu/packages/perl.scm:4285 +msgid "Roles, as a slice of Moose" +msgstr "" + +#: gnu/packages/perl.scm:4286 +msgid "Role::Tiny is a minimalist role composition tool." +msgstr "" + +#: gnu/packages/perl.scm:4303 +msgid "Call isa, can, does, and DOES safely" +msgstr "" + +#: gnu/packages/perl.scm:4304 +msgid "" +"This module allows you to call isa, can, does, and DOES\n" +"safely on things that may not be objects." +msgstr "" + +#: gnu/packages/perl.scm:4322 +msgid "Lexically-scoped resource management" +msgstr "" + +#: gnu/packages/perl.scm:4323 +msgid "" +"This module provides a convenient way to perform cleanup or\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" +"useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" +"\"promises\" to be made that are automatically honoured by perl's garba= ge\n" +"collector." +msgstr "" + +#: gnu/packages/perl.scm:4346 +msgid "Infinite sets" +msgstr "" + +#: gnu/packages/perl.scm:4347 +msgid "Set::Infinite is a set theory module for infinite sets." +msgstr "" + +#: gnu/packages/perl.scm:4367 +msgid "Unordered collections of Perl Objects" +msgstr "" + +#: gnu/packages/perl.scm:4368 +msgid "" +"Set::Object provides efficient sets, unordered collections\n" +"of Perl objects without duplicates for scalars and references." +msgstr "" + +#: gnu/packages/perl.scm:4386 +msgid "Set operations for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4387 +msgid "" +"The first priority of Set::Scalar is to be a convenient\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" +"designed to be slow or big, neither has it been designed to be fast or\= n" +"compact." +msgstr "" + +#: gnu/packages/perl.scm:4407 +msgid "Spiffy Perl Interface Framework For You" +msgstr "" + +#: gnu/packages/perl.scm:4408 +msgid "" +"Spiffy is a framework and methodology for doing object\n" +"oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" +"other OO languages like Python, Ruby, Java and Perl 6." +msgstr "" + +#: gnu/packages/perl.scm:4430 +msgid "Temporary buffer to save bytes" +msgstr "" + +#: gnu/packages/perl.scm:4431 +msgid "" +"Stream::Buffered is a buffer class to store arbitrary length\n" +"of byte strings and then get a seekable filehandle once everything is\n= " +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" +"on the length of the size." +msgstr "" + +#: gnu/packages/perl.scm:4451 +msgid "Turn on strict and make all warnings fatal" +msgstr "" + +#: gnu/packages/perl.scm:4452 +msgid "" +"Strictures turns on strict and make all warnings fatal when\n" +"run from within a source-controlled directory." +msgstr "" + +#: gnu/packages/perl.scm:4470 +msgid "Camelcase and de-camelcase" +msgstr "" + +#: gnu/packages/perl.scm:4471 +msgid "" +"This module may be used to convert from under_score text to\n" +"CamelCase and back again." +msgstr "" + +#: gnu/packages/perl.scm:4491 +msgid "Rewrite strings based on a set of known prefixes" +msgstr "" + +#: gnu/packages/perl.scm:4492 +msgid "" +"This module allows you to rewrite strings based on a set of\n" +"known prefixes." +msgstr "" + +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 +msgid "Sophisticated exporter for custom-built routines" +msgstr "" + +#: gnu/packages/perl.scm:4538 +msgid "" +"Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " +"custom-built routines." +msgstr "" + +#: gnu/packages/perl.scm:4557 +msgid "Only use Sub::Exporter if you need it" +msgstr "" + +#: gnu/packages/perl.scm:4558 +msgid "" +"Sub::Exporter is an incredibly powerful module, but with\n" +"that power comes great responsibility, as well as some runtime penaltie= s.\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" +"if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" +"renaming exports, if they try to use them." +msgstr "" + +#: gnu/packages/perl.scm:4580 +msgid "Retrieve names of code references" +msgstr "" + +#: gnu/packages/perl.scm:4581 +msgid "" +"Sub::Identify allows you to retrieve the real name of code\n" +"references." +msgstr "" + +#: gnu/packages/perl.scm:4600 +msgid "Install subroutines into packages easily" +msgstr "" + +#: gnu/packages/perl.scm:4602 +msgid "" +"Sub::Install makes it easy to install subroutines into packages without= \n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" +"can see them." +msgstr "" + +#: gnu/packages/perl.scm:4623 +msgid "(Re)name a sub" +msgstr "" + +#: gnu/packages/perl.scm:4624 +msgid "" +"Assigns a new name to referenced sub. If package\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" +"return value is the sub." +msgstr "" + +#: gnu/packages/perl.scm:4643 +msgid "Apparently run a function in a higher stack frame" +msgstr "" + +#: gnu/packages/perl.scm:4644 +msgid "" +"Like Tcl's uplevel() function, but not quite so dangerous.\n" +"The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" +"uplevel() are avoided." +msgstr "" + +#: gnu/packages/perl.scm:4663 +msgid "Perl extension for generating SVG documents" +msgstr "" + +#: gnu/packages/perl.scm:4664 +msgid "" +"SVG is a Perl module which generates a nested data structure\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" +"Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" +"access the DOM object, create and access Javascript, and generate SMIL\= n" +"animation content." +msgstr "" + +#: gnu/packages/perl.scm:4683 +msgid "Perl extension for getting CPU information" +msgstr "" + +#: gnu/packages/perl.scm:4685 +msgid "" +"In responce to a post on perlmonks.org, a module for counting the numbe= r\n" +"of CPU's on a system. Support has now also been added for type of CPU = and\n" +"clock speed." +msgstr "" + +#: gnu/packages/perl.scm:4707 +msgid "Get full hostname in Perl" +msgstr "" + +#: gnu/packages/perl.scm:4708 +msgid "" +"Sys::Hostname::Long tries very hard to get the full hostname\n" +"of a system." +msgstr "" + +#: gnu/packages/perl.scm:4726 +msgid "Ensure that a platform has weaken support" +msgstr "" + +#: gnu/packages/perl.scm:4727 +msgid "" +"One recurring problem in modules that use Scalar::Util's\n" +"weaken function is that it is not present in the pure-perl variant. If= \n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" +"error encouraging the user to seek support." +msgstr "" + +#: gnu/packages/perl.scm:4752 +msgid "Template processing system for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4753 +msgid "" +"The Template Toolkit is a collection of modules which\n" +"implement an extensible template processing system. It was originally\= n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" +"it can be used equally well for processing any other kind of text based= \n" +"documents: HTML, XML, POD, PostScript, LaTeX, and so on." +msgstr "" + +#: gnu/packages/perl.scm:4776 +msgid "Profiling for Template Toolkit" +msgstr "" + +#: gnu/packages/perl.scm:4777 +msgid "" +"Template::Timer provides inline profiling of the template\n" +"processing in Perl code." +msgstr "" + +#: gnu/packages/perl.scm:4795 +msgid "Detect encoding of the current terminal" +msgstr "" + +#: gnu/packages/perl.scm:4796 +msgid "" +"Term::Encoding is a simple module to detect the encoding of\n" +"the current terminal expects in various ways." +msgstr "" + +#: gnu/packages/perl.scm:4820 +msgid "Progress meter on a standard terminal" +msgstr "" + +#: gnu/packages/perl.scm:4821 +msgid "" +"Term::ProgressBar provides a simple progress bar on the\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" +"stuff has been done, and maybe an estimate at how long remains." +msgstr "" + +#: gnu/packages/perl.scm:4844 +msgid "Progress meter if run interactively" +msgstr "" + +#: gnu/packages/perl.scm:4845 +msgid "" +"Term::ProgressBar is a wonderful module for showing progress\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" +"a cron job) then it does not show the progress bar." +msgstr "" + +#: gnu/packages/perl.scm:4867 +msgid "Simple progress bars" +msgstr "" + +#: gnu/packages/perl.scm:4868 +msgid "" +"Term::ProgressBar::Simple tells you how much work has been\n" +"done, how much is left to do, and estimate how long it will take." +msgstr "" + +#: gnu/packages/perl.scm:4886 +msgid "Simple terminal control" +msgstr "" + +#: gnu/packages/perl.scm:4887 +msgid "" +"This module, ReadKey, provides ioctl control for terminals\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" +"other terminal related features, including retrieval/modification of th= e\n" +"screen size, and retrieval/modification of the control characters." +msgstr "" + +#: gnu/packages/perl.scm:4914 +msgid "Data-driven testing framework for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4915 +msgid "" +"Test::Base gives a way to trivially write your own test\n" +"framework base class. It concentrates on offering reusable data driven= \n" +"patterns, so that you can write tests with a minimum of code." +msgstr "" + +#: gnu/packages/perl.scm:4946 +msgid "Check for uncleaned imports" +msgstr "" + +#: gnu/packages/perl.scm:4947 +msgid "" +"This module lets you check your module's namespaces for\n" +"imported functions you might have forgotten to remove with\n" +"namespace::autoclean or namespace::clean and are therefore available to= be\n" +"called as methods, which usually isn't want you want." +msgstr "" + +#: gnu/packages/perl.scm:4967 +msgid "Flexible deep comparison for the Test::Builder framework" +msgstr "" + +#: gnu/packages/perl.scm:4969 +msgid "" +"Test::Deep compares two structures by going through each level, ensurin= g\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" +"structures without getting caught in an infinite loop." +msgstr "" + +#: gnu/packages/perl.scm:4996 +msgid "Test strings and data structures and show differences" +msgstr "" + +#: gnu/packages/perl.scm:4997 +msgid "" +"This module exports three test functions and four diff-style\n" +"functions." +msgstr "" + +#: gnu/packages/perl.scm:5018 +msgid "Perl extension for maintaining test directories" +msgstr "" + +#: gnu/packages/perl.scm:5019 +msgid "" +"Testing code can involve making sure that files are created\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" +"to forget a file, or miss that some unexpected file was added. This mo= dule\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" +"modified or tested with this API, making it simple to test both individ= ual\n" +"files, as well as to verify that there are no missing or unknown files.= " +msgstr "" + +#: gnu/packages/perl.scm:5045 +msgid "Test exception based code" +msgstr "" + +#: gnu/packages/perl.scm:5046 +msgid "" +"This module provides a few convenience methods for testing\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" +"Test::More and friends." +msgstr "" + +#: gnu/packages/perl.scm:5066 +msgid "Simple helpers for testing code with exceptions" +msgstr "" + +#: gnu/packages/perl.scm:5067 +msgid "" +"Test::Fatal is an alternative to the popular\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" +"testing exception-throwing code with about the same amount of typing." +msgstr "" + +#: gnu/packages/perl.scm:5097 +msgid "Run Perl standard test scripts with statistics" +msgstr "" + +#: gnu/packages/perl.scm:5098 +msgid "" +"Simple test harness which allows tests to be run and results\n" +"automatically aggregated and output to STDOUT." +msgstr "" + +#: gnu/packages/perl.scm:5116 +msgid "Traces memory leaks in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5117 +msgid "" +"Test::LeakTrace provides several functions that trace memory\n" +"leaks. This module scans arenas, the memory allocation system, so it c= an\n" +"detect any leaked SVs in given blocks." +msgstr "" + +#: gnu/packages/perl.scm:5136 +msgid "Tests strings for equality, with more helpful failures" +msgstr "" + +#: gnu/packages/perl.scm:5137 +msgid "" +"This module provides some drop-in replacements for the\n" +"string comparison functions of Test::More, but which are more suitable = when\n" +"you test against long strings." +msgstr "" + +#: gnu/packages/perl.scm:5165 +msgid "Emulate troublesome interfaces in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5166 +msgid "" +"Test::MockObject allows you to create objects that conform\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" +"the behavior, just the input and the output." +msgstr "" + +#: gnu/packages/perl.scm:5185 +msgid "Replaces actual time with simulated time" +msgstr "" + +#: gnu/packages/perl.scm:5186 +msgid "" +"This module was created to enable test suites to test code\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" +"time at compile time and then relies on the user supplying a mock time = via\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" +"to gmtime,time or localtime." +msgstr "" + +#: gnu/packages/perl.scm:5213 +msgid "Most commonly needed test functions and features" +msgstr "" + +#: gnu/packages/perl.scm:5214 +msgid "" +"This module provides the most commonly used testing\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" +"bit more fine-grained control over test suites." +msgstr "" + +#: gnu/packages/perl.scm:5232 +msgid "Ensure no warnings are produced while testing" +msgstr "" + +#: gnu/packages/perl.scm:5234 +msgid "" +"This modules causes any warnings during testing to be captured and\n" +"stored. It automatically adds an extra test that will run when your sc= ript\n" +"ends to check that there were no warnings. If there were any warnings,= the\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" +"including a stack trace of what was going on when it occurred." +msgstr "" + +#: gnu/packages/perl.scm:5259 +msgid "Utilities to test STDOUT and STDERR messages" +msgstr "" + +#: gnu/packages/perl.scm:5261 +msgid "" +"Test::Output provides a simple interface for testing output sent to\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" +"as flexible as possible to the tester." +msgstr "" + +#: gnu/packages/perl.scm:5283 +msgid "Check for POD errors in files" +msgstr "" + +#: gnu/packages/perl.scm:5284 +msgid "" +"Check POD files for errors or warnings in a test file, using\n" +"Pod::Simple to do the heavy lifting." +msgstr "" + +#: gnu/packages/perl.scm:5304 +msgid "Check for pod coverage" +msgstr "" + +#: gnu/packages/perl.scm:5305 +msgid "" +"This module adds a test to your Perl distribution which\n" +"checks for pod coverage of all appropriate files." +msgstr "" + +#: gnu/packages/perl.scm:5323 +msgid "Checks to see if the module can be loaded" +msgstr "" + +#: gnu/packages/perl.scm:5324 +msgid "" +"Test::Requires checks to see if the module can be loaded.\n" +"If this fails, then rather than failing tests this skips all tests." +msgstr "" + +#: gnu/packages/perl.scm:5343 +msgid "Basic cross-platform tests for scripts" +msgstr "" + +#: gnu/packages/perl.scm:5345 +msgid "" +"The intent of the Test::Script module is to provide a series of basic\n= " +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" +"bin as is also commonly used) paths of your Perl distribution." +msgstr "" + +#: gnu/packages/perl.scm:5368 +msgid "Fork test in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5369 +msgid "" +"Test::SharedFork is a utility module for Test::Builder. It\n" +"makes fork(2) safe to use in test cases." +msgstr "" + +#: gnu/packages/perl.scm:5385 +msgid "Basic utilities for writing tests" +msgstr "" + +#: gnu/packages/perl.scm:5387 +msgid "Test::Simple contains basic utilities for writing tests." +msgstr "" + +#: gnu/packages/perl.scm:5404 +msgid "Simplify running Test::Builder tests" +msgstr "" + +#: gnu/packages/perl.scm:5406 +msgid "" +"Test::Tester allows testing of test modules based on Test::Builder with= \n" +"a minimum of effort." +msgstr "" + +#: gnu/packages/perl.scm:5432 +msgid "Trap exit codes, exceptions, output, etc." +msgstr "" + +#: gnu/packages/perl.scm:5433 +msgid "" +"This module is primarily (but not exclusively) for use in\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" +"from boxed blocks of test code." +msgstr "" + +#: gnu/packages/perl.scm:5453 +msgid "UTF-8 testing in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5454 +msgid "" +"This module is a collection of tests useful for dealing with\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" +"will check that string has a given set of characteristics." +msgstr "" + +#: gnu/packages/perl.scm:5476 +msgid "Perl extension to test methods for warnings" +msgstr "" + +#: gnu/packages/perl.scm:5477 +msgid "" +"This module provides a few convenience methods for testing\n" +"warning based code." +msgstr "" + +#: gnu/packages/perl.scm:5495 +msgid "Test for warnings and the lack of them" +msgstr "" + +#: gnu/packages/perl.scm:5496 +msgid "" +"This module is intended to be used as a drop-in replacement\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" +"done_testing calculates the test count, rather than after. It does thi= s by\n" +"hooking into done_testing as well as via an END block. You can declare= a\n" +"plan, or not, and things will still Just Work." +msgstr "" + +#: gnu/packages/perl.scm:5517 +msgid "Test fallback behaviour in absence of modules" +msgstr "" + +#: gnu/packages/perl.scm:5518 +msgid "" +"This module allows you to deliberately hide modules from a\n" +"program even though they are installed. This is mostly useful for test= ing\n" +"modules that have a fallback when a certain dependency module is not\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:5545 +msgid "Dynamic generation of tests" +msgstr "" + +#: gnu/packages/perl.scm:5546 +msgid "" +"The Test::WriteVariants module provides for the dynamic\n" +"generation of tests in nested combinations of contexts." +msgstr "" + +#: gnu/packages/perl.scm:5566 +msgid "Testing module for YAML implementations" +msgstr "" + +#: gnu/packages/perl.scm:5567 +msgid "" +"Test::YAML is a subclass of Test::Base with YAML specific\n" +"support." +msgstr "" + +#: gnu/packages/perl.scm:5586 +msgid "Align text" +msgstr "" + +#: gnu/packages/perl.scm:5587 +msgid "" +"Text::Aligner exports a single function, align(), which is\n" +"used to justify strings to various alignment styles." +msgstr "" + +#: gnu/packages/perl.scm:5605 +msgid "Extract delimited text sequences from strings" +msgstr "" + +#: gnu/packages/perl.scm:5606 +msgid "" +"The Text::Balanced module can be used to extract delimited\n" +"text sequences from strings." +msgstr "" + +#: gnu/packages/perl.scm:5624 +msgid "Manipulate comma-separated values" +msgstr "" + +#: gnu/packages/perl.scm:5625 +msgid "" +"Text::CSV provides facilities for the composition and\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" +"can combine fields into a CSV string and parse a CSV string into fields= ." +msgstr "" + +#: gnu/packages/perl.scm:5646 +msgid "Perform diffs on files and record sets" +msgstr "" + +#: gnu/packages/perl.scm:5647 +msgid "" +"Text::Diff provides a basic set of services akin to the GNU\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" +"is better integrated with Perl and available on all platforms. It is o= ften\n" +"faster than shelling out to a system's diff executable for small files,= and\n" +"generally slower on larger files." +msgstr "" + +#: gnu/packages/perl.scm:5669 +msgid "Match globbing patterns against text" +msgstr "" + +#: gnu/packages/perl.scm:5670 +msgid "" +"Text::Glob implements glob(3) style matching that can be\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" +"you want to do full file globbing use the File::Glob module instead." +msgstr "" + +#: gnu/packages/perl.scm:5689 +msgid "Simple ASCII tables" +msgstr "" + +#: gnu/packages/perl.scm:5690 +msgid "Text::SimpleTable draws simple ASCII tables." +msgstr "" + +#: gnu/packages/perl.scm:5711 +msgid "Organize Data in Tables" +msgstr "" + +#: gnu/packages/perl.scm:5712 +msgid "Text::Table renders plaintext tables." +msgstr "" + +#: gnu/packages/perl.scm:5729 +msgid "Provide plain ASCII transliterations of Unicode text" +msgstr "" + +#: gnu/packages/perl.scm:5730 +msgid "" +"Text::Unidecode provides a function, unidecode(...) that\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" +"is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" +"letters, the pronunciation expressed by the text in some other writing\= n" +"system." +msgstr "" + +#: gnu/packages/perl.scm:5758 +msgid "Role for classes that can be thrown" +msgstr "" + +#: gnu/packages/perl.scm:5759 +msgid "" +"Throwable is a role for classes that are meant to be thrown\n" +"as exceptions to standard program flow." +msgstr "" + +#: gnu/packages/perl.scm:5778 +msgid "Ordered associative arrays for Perl" +msgstr "" + +#: gnu/packages/perl.scm:5779 +msgid "" +"This Perl module implements Perl hashes that preserve the\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" +"can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" +"operations can also be performed on the IxHash." +msgstr "" + +#: gnu/packages/perl.scm:5802 +msgid "Tie to an existing Perl object" +msgstr "" + +#: gnu/packages/perl.scm:5803 +msgid "" +"This class provides a tie constructor that returns the\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" +"$object->TIEHASH are avoided." +msgstr "" + +#: gnu/packages/perl.scm:5825 +msgid "English expression of durations" +msgstr "" + +#: gnu/packages/perl.scm:5826 +msgid "" +"This module provides functions for expressing durations in\n" +"rounded or exact terms." +msgstr "" + +#: gnu/packages/perl.scm:5848 +msgid "Parse time duration strings" +msgstr "" + +#: gnu/packages/perl.scm:5849 +msgid "" +"Time::Duration::Parse is a module to parse human readable\n" +"duration strings like \"2 minutes\" and \"3 seconds\" to seconds." +msgstr "" + +#: gnu/packages/perl.scm:5867 +msgid "Efficiently compute time from local and GMT time" +msgstr "" + +#: gnu/packages/perl.scm:5868 +msgid "" +"This module provides functions that are the inverse of\n" +"built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" +"the system epoch." +msgstr "" + +#: gnu/packages/perl.scm:5888 +msgid "Date parsing/formatting subroutines" +msgstr "" + +#: gnu/packages/perl.scm:5889 +msgid "" +"This module provides routines for parsing date string into\n" +"time values and formatting dates into ASCII strings." +msgstr "" + +#: gnu/packages/perl.scm:5911 +msgid "Shift and scale time" +msgstr "" + +#: gnu/packages/perl.scm:5912 +msgid "" +"This module allows you to speed up your sleep(), alarm(),\n" +"and time() calls." +msgstr "" + +#: gnu/packages/perl.scm:5935 +msgid "Simple tree object" +msgstr "" + +#: gnu/packages/perl.scm:5936 +msgid "" +"This module in a fully object-oriented implementation of a\n" +"simple n-ary tree." +msgstr "" + +#: gnu/packages/perl.scm:5960 +msgid "Factory object for dispensing Visitor objects" +msgstr "" + +#: gnu/packages/perl.scm:5961 +msgid "" +"This module is a factory for dispensing\n" +"Tree::Simple::Visitor::* objects." +msgstr "" + +#: gnu/packages/perl.scm:5979 +msgid "Minimal try/catch with proper preservation of $@" +msgstr "" + +#: gnu/packages/perl.scm:5980 +msgid "" +"This module provides bare bones try/catch/finally statements\n" +"that are designed to minimize common mistakes with eval blocks, and not= hing\n" +"else." +msgstr "" + +#: gnu/packages/perl.scm:6001 +msgid "Data types for common serialisation formats" +msgstr "" + +#: gnu/packages/perl.scm:6002 +msgid "" +"This module provides some extra datatypes that are used by\n" +"common serialisation formats such as JSON or CBOR." +msgstr "" + +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 +msgid "UNIVERSAL::can() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6043 +msgid "" +"This module attempts to work around people calling\n" +"UNIVERSAL::can() as a function, which it is not." +msgstr "" + +#: gnu/packages/perl.scm:6063 +msgid "UNIVERSAL::isa() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6064 +msgid "" +"This module attempts to recover from people calling\n" +"UNIVERSAL::isa as a function." +msgstr "" + +#: gnu/packages/perl.scm:6082 +msgid "Associate user-defined magic to variables from Perl" +msgstr "" + +#: gnu/packages/perl.scm:6083 +msgid "" +"Magic is Perl's way of enhancing variables. This mechanism\n" +"lets the user add extra data to any variable and hook syntactical\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" +"it. With this module, you can add your own magic to any variable witho= ut\n" +"having to write a single line of XS." +msgstr "" + +#: gnu/packages/perl.scm:6106 +msgid "YAML for Perl" +msgstr "" + +#: gnu/packages/perl.scm:6107 +msgid "" +"The YAML.pm module implements a YAML Loader and Dumper based\n" +"on the YAML 1.0 specification." +msgstr "" + +#: gnu/packages/perl.scm:6130 +msgid "Read/Write YAML files" +msgstr "" + +#: gnu/packages/perl.scm:6131 +msgid "" +"YAML::Tiny is a perl class for reading and writing\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" +"and memory overhead." +msgstr "" + +#: gnu/packages/perl.scm:6158 +msgid "Distribution metadata for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6159 +msgid "" +"Software distributions released to the CPAN include a\n" +"META.json or, for older distributions, META.yml, which describes the\n" +"distribution, its contents, and the requirements for building and " +"installing\n" +"the distribution. The data structure stored in the META.json file is\n= " +"described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " +"represent this distribution metadata (or distmeta), along with some hel= pful\n" +"methods for interrogating that data." +msgstr "" + +#: gnu/packages/perl.scm:6182 +msgid "Set of version requirements for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6183 +msgid "" +"A CPAN::Meta::Requirements object models a set of version\n" +"constraints like those specified in the META.yml or META.json files in = CPAN\n" +"distributions, and as defined by CPAN::Meta::Spec. It can be built up = by\n" +"adding more and more constraints, and will reduce them to the simplest\= n" +"representation." +msgstr "" + +#: gnu/packages/perl.scm:6206 +msgid "Read and write a subset of YAML for CPAN Meta files" +msgstr "" + +#: gnu/packages/perl.scm:6207 +msgid "" +"This module implements a subset of the YAML specification\n" +"for use in reading and writing CPAN metadata files like META.yml and\n" +"MYMETA.yml." +msgstr "" + +#: gnu/packages/perl.scm:6228 +msgid "Build and install Perl modules" +msgstr "" + +#: gnu/packages/perl.scm:6229 +msgid "" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" +"through subclassing in a much more straightforward way than with\n" +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." +msgstr "" + +#: gnu/packages/perl.scm:6254 +msgid "Parse META.yml and META.json CPAN metadata files" +msgstr "" + +#: gnu/packages/perl.scm:6255 +msgid "" +"Parse::CPAN::Meta is a parser for META.json and META.yml\n" +"files, using JSON::PP and/or CPAN::Meta::YAML." +msgstr "" + +#: gnu/packages/perl.scm:6273 +msgid "Common Scalar and List utility subroutines" +msgstr "" + +#: gnu/packages/perl.scm:6274 +msgid "" +"This package contains a selection of subroutines that people\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" +"such that being individual extensions would be wasteful." +msgstr "" + +#: gnu/packages/photo.scm:61 +msgid "Raw image decoder" +msgstr "" + +#: gnu/packages/photo.scm:63 +msgid "" +"LibRaw is a library for reading RAW files obtained from digital photo\n= " +"cameras (CRW/CR2, NEF, RAF, DNG, and others)." +msgstr "" + +#: gnu/packages/photo.scm:80 +msgid "Read and manipulate EXIF data in digital photographs" +msgstr "" + +#: gnu/packages/photo.scm:82 +msgid "" +"The libexif C library allows applications to read, edit, and save EXIF\= n" +"data as produced by digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:107 +msgid "Accessing digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:109 +msgid "" +"This is the library backend for gphoto2. It contains the code for PTP,= \n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" +"from digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:150 +msgid "Command-line tools to access digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:152 +msgid "" +"Gphoto2 is a set of command line utilities for manipulating a large\n" +"number of different digital cameras. Through libgphoto2, it supports P= TP,\n" +"MTP, and much more." +msgstr "" + +#: gnu/packages/photo.scm:186 +msgid "Program and Perl library to manipulate EXIF tags" +msgstr "" + +#: gnu/packages/photo.scm:188 +msgid "" +"This package provides the 'exiftool' command and the 'Image::ExifTool'\= n" +"Perl library to manipulate EXIF tags of digital images." +msgstr "" + +#: gnu/packages/photo.scm:211 +msgid "Library for panoramic images" +msgstr "" + +#: gnu/packages/photo.scm:213 +msgid "" +"The libpano13 package contains the backend library written by the\n" +"Panorama Tools project for building panoramic images from a set of\n" +"overlapping images, as well as some command line tools." +msgstr "" + +#: gnu/packages/photo.scm:255 +msgid "Tools for combining and blending images" +msgstr "" + +#: gnu/packages/photo.scm:257 +msgid "" +"Enblend blends away the seams in a panoramic image mosaic using a\n" +"multi-resolution spline. Enfuse merges different exposures of the same= \n" +"scene to produce an image that looks much like a tone-mapped image." +msgstr "" + +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" +msgstr "" + +#: gnu/packages/qemu.scm:153 +msgid "" +"QEMU is a generic machine emulator and virtualizer.\n" +"\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" +"machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" +"using dynamic translation, it achieves very good performance.\n" +"\n" +"When used as a virtualizer, QEMU achieves near native performances by\n= " +"executing the guest code directly on the host CPU. QEMU supports\n" +"virtualization when executing under the Xen hypervisor or using\n" +"the KVM kernel module in Linux. When using KVM, QEMU can virtualize x8= 6,\n" +"server and embedded PowerPC, and S390 guests." +msgstr "" + +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" +msgstr "" + +#: gnu/packages/ratpoison.scm:85 +msgid "Simple mouse-free tiling window manager" +msgstr "" + +#: gnu/packages/ratpoison.scm:87 +msgid "" +"Ratpoison is a simple window manager with no fat library\n" +"dependencies, no fancy graphics, no window decorations, and no\n" +"rodent dependence. It is largely modelled after GNU Screen which\n" +"has done wonders in the virtual terminal market.\n" +"\n" +"The screen can be split into non-overlapping frames. All windows\n" +"are kept maximized inside their frames to take full advantage of\n" +"your precious screen real estate.\n" +"\n" +"All interaction with the window manager is done through keystrokes.\n" +"Ratpoison has a prefix map to minimize the key clobbering that\n" +"cripples Emacs and other quality pieces of software." +msgstr "" + +#: gnu/packages/readline.scm:68 +msgid "Edit command lines while typing, with history support" +msgstr "" + +#: gnu/packages/readline.scm:70 +msgid "" +"The GNU readline library allows users to edit command lines as they\n" +"are typed in. It can maintain a searchable history of previously enter= ed\n" +"commands, letting you easily recall, edit and re-enter past commands. = It\n" +"features both Emacs-like and vi-like keybindings, making its usage\n" +"comfortable for anyone." +msgstr "" + +#: gnu/packages/scanner.scm:70 +msgid "Raster image scanner library and drivers" +msgstr "" + +#: gnu/packages/scanner.scm:71 +msgid "" +"SANE stands for \"Scanner Access Now Easy\" and is an API\n" +"proving access to any raster image scanner hardware (flatbed scanner,\n= " +"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" +"package contains the library and drivers." +msgstr "" + +#: gnu/packages/scheme.scm:169 +#, fuzzy +msgid "A Scheme implementation with integrated editor and debugger" +msgstr "Scheme-Implementation, die speziell f=C3=BCr Erweiterungen gedac= ht ist" + +#: gnu/packages/scheme.scm:171 +msgid "" +"GNU/MIT Scheme is an implementation of the Scheme programming\n" +"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" +"features an integrated Emacs-like editor and a large runtime library." +msgstr "" + +#: gnu/packages/scheme.scm:254 +msgid "Efficient Scheme compiler" +msgstr "" + +#: gnu/packages/scheme.scm:256 +msgid "" +"Bigloo is a Scheme implementation devoted to one goal: enabling\n" +"Scheme based programming style where C(++) is usually\n" +"required. Bigloo attempts to make Scheme practical by offering\n" +"features usually presented by traditional programming languages\n" +"but not offered by Scheme and functional programming. Bigloo\n" +"compiles Scheme modules. It delivers small and fast stand alone\n" +"binary executables. Bigloo enables full connections between\n" +"Scheme and C programs and between Scheme and Java programs." +msgstr "" + +#: gnu/packages/scheme.scm:300 +msgid "Multi-tier programming language for the Web 2.0" +msgstr "" + +#: gnu/packages/scheme.scm:302 +msgid "" +"HOP is a multi-tier programming language for the Web 2.0 and the\n" +"so-called diffuse Web. It is designed for programming interactive web\= n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" +"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" +"mashups, office (web agendas, mail clients, ...), etc." +msgstr "" + +#: gnu/packages/scheme.scm:342 +msgid "R5RS Scheme implementation that compiles native code via C" +msgstr "" + +#: gnu/packages/scheme.scm:344 +msgid "" +"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" +"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" +"language standard, and includes many enhancements and extensions." +msgstr "" + +#: gnu/packages/scheme.scm:363 +#, fuzzy +msgid "Scheme implementation using a bytecode interpreter" +msgstr "Scheme-Implementation, die speziell f=C3=BCr Erweiterungen gedac= ht ist" + +#: gnu/packages/scheme.scm:365 +msgid "" +"Scheme 48 is an implementation of Scheme based on a byte-code\n" +"interpreter and is designed to be used as a testbed for experiments in\= n" +"implementation techniques and as an expository tool." +msgstr "" + +#: gnu/packages/scheme.scm:441 +msgid "Implementation of Scheme and related languages" +msgstr "" + +#: gnu/packages/scheme.scm:443 +msgid "" +"Racket is an implementation of the Scheme programming language (R5RS an= d\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" +"of libraries." +msgstr "" + +#: gnu/packages/scheme.scm:481 +msgid "Efficient Scheme interpreter and compiler" +msgstr "" + +#: gnu/packages/scheme.scm:483 +msgid "" +"Gambit consists of two main programs: gsi, the Gambit Scheme\n" +"interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" +"the complete execution and debugging environment. The compiler is the\= n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" +"loaded at run time. Interpreted code and compiled code can be freely\n= " +"mixed." +msgstr "" + +#: gnu/packages/scheme.scm:520 +msgid "Small embeddable Scheme implementation" +msgstr "" + +#: gnu/packages/scheme.scm:522 +msgid "" +"Chibi-Scheme is a very small library with no external dependencies\n" +"intended for use as an extension and scripting language in C programs. = In\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" +"threads." +msgstr "" + +#: gnu/packages/scheme.scm:699 +msgid "Scmutils library for MIT Scheme" +msgstr "" + +#: gnu/packages/scheme.scm:700 +msgid "" +"The Scmutils system is an integrated library of\n" +"procedures, embedded in the programming language Scheme, and intended t= o\n" +"support teaching and research in mathematical physics and electrical\n" +"engineering." +msgstr "" + +#: gnu/packages/search.scm:52 +msgid "Search Engine Library" +msgstr "" + +#: gnu/packages/search.scm:54 +msgid "" +"Xapian is a highly adaptable toolkit which allows developers to easily\= n" +"add advanced indexing and search facilities to their own applications. = It\n" +"supports the Probabilistic Information Retrieval model and also support= s a\n" +"rich set of boolean query operators." +msgstr "" + +#: gnu/packages/search.scm:97 +msgid "Tool for Obsessive Compulsive Classifiers" +msgstr "" + +#: gnu/packages/search.scm:99 +msgid "" +"libtocc is the engine of the Tocc project, a tag-based file management\= n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" +"that is more flexible than classic file systems that are based on a tre= e of\n" +"files and directories." +msgstr "" + +#: gnu/packages/search.scm:121 +msgid "Command-line interface to libtocc" +msgstr "" + +#: gnu/packages/search.scm:123 +msgid "" +"Tocc is a tag-based file management system. This package contains the\= n" +"command line tool for interacting with libtocc." +msgstr "" + +#: gnu/packages/search.scm:141 +msgid "Finding text and HTML files that match boolean expressions" +msgstr "" + +#: gnu/packages/search.scm:143 +msgid "" +"GNU Bool is a utility to perform text searches on files using Boolean\n= " +"expressions. For example, a search for \"hello AND world\" would retur= n a\n" +"file containing the phrase \"Hello, world!\". It supports both AND and= OR\n" +"statements, as well as the NEAR statement to search for the occurrence = of\n" +"words in close proximity to each other. It handles context gracefully,= \n" +"accounting for new lines and paragraph changes. It also has robust sup= port\n" +"for parsing HTML files." +msgstr "" + +#: gnu/packages/serveez.scm:51 +msgid "Framework for implementing IP-based servers" +msgstr "" + +#: gnu/packages/serveez.scm:53 +msgid "" +"GNU Serveez is a server framework providing the routines necessary to\n= " +"easily implement IP-based servers in your application. It\n" +"demonstrates aspects of network programming in a portable manner,\n" +"making it convenient for both simplifying the process of adding a\n" +"server to your application or for learning about how network services\n= " +"work. Several example servers are provided already, such as an HTTP\n" +"server and an IRC server." +msgstr "" + +#: gnu/packages/telephony.scm:52 +msgid "(u)Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:53 +msgid "" +"GNU Common C++ is an portable, optimized class framework for\n" +"threaded applications, supporting concurrent synchronization, inter-pro= cess\n" +"communications via sockets, and various methods for data handling, such= as\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" +"reimplementation." +msgstr "" + +#: gnu/packages/telephony.scm:73 +msgid "Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:74 +msgid "" +"GNU uCommon C++ is meant as a very light-weight C++ library\n" +"to facilitate using C++ design patterns even for very deeply embedded\n= " +"applications, such as for systems using uclibc along with posix threadi= ng\n" +"support." +msgstr "" + +#: gnu/packages/telephony.scm:95 +msgid "Implementation of RTP (real-time transport protocol)" +msgstr "" + +#: gnu/packages/telephony.scm:96 +msgid "" +"GNU ccRTP is an implementation of RTP, the real-time transport\n" +"protocol from the IETF. It is suitable both for high capacity servers = and\n" +"personal client applications. It is flexible in its design, allowing i= t to\n" +"function as a framework for the framework, rather than just being a\n" +"packet-manipulation library." +msgstr "" + +#: gnu/packages/telephony.scm:116 +msgid "Library implementing SIP (RFC-3261)" +msgstr "" + +#: gnu/packages/telephony.scm:117 +msgid "" +"GNU oSIP is an implementation of the SIP protocol. It is\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" +"to initiate and control SIP sessions." +msgstr "" + +#: gnu/packages/telephony.scm:137 +msgid "Sip abstraction library" +msgstr "" + +#: gnu/packages/telephony.scm:138 +msgid "" +"EXosip is a library that hides the complexity of using the\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" +"be used by VoIP telephony applications (endpoints or conference server)= but\n" +"might be also useful for any application that wish to establish session= s " +"like\n" +"multiplayer games." +msgstr "" + +#: gnu/packages/telephony.scm:181 +msgid "Secure peer-to-peer VoIP server for the SIP protocol" +msgstr "" + +#: gnu/packages/telephony.scm:182 +msgid "" +"GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" +"uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" +"there is no central point for media intercept or capture and thus it ca= n be\n" +"used to construct a secure telephone system that operates over the publ= ic\n" +"internet." +msgstr "" + +#: gnu/packages/telephony.scm:207 +msgid "Secure RTP (SRTP) Reference Implementation" +msgstr "" + +#: gnu/packages/telephony.scm:208 +msgid "" +"This package provides an implementation of the Secure\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" +"and a supporting cryptographic kernel." +msgstr "" + +#: gnu/packages/texinfo.scm:55 +msgid "The GNU documentation format" +msgstr "" + +#: gnu/packages/texinfo.scm:57 +msgid "" +"Texinfo is the official documentation format of the GNU project. It\n" +"uses a single source file using explicit commands to produce a final " +"document\n" +"in any of several supported output formats, such as HTML or PDF. This\= n" +"package includes both the tools necessary to produce Info documents fro= m\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" +"is on expressing the content semantically, avoiding physical markup com= mands." +msgstr "" + +#: gnu/packages/texinfo.scm:132 +msgid "Convert Texinfo to HTML" +msgstr "" + +#: gnu/packages/texinfo.scm:134 +msgid "" +"Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" +"output. It now supports many advanced features, such as " +"internationalization\n" +"and extremely configurable output formats.\n" +"\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" +"was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" +"Texi2HTML." +msgstr "" + +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 +msgid "TeX Live, a package of the TeX typesetting system" +msgstr "" + +#: gnu/packages/texlive.scm:157 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the binaries." +msgstr "" + +#: gnu/packages/texlive.scm:220 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete tree of texmf-dist data." +msgstr "" + +#: gnu/packages/texlive.scm:278 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete TeX Live distribution." +msgstr "" + +#: gnu/packages/texlive.scm:307 +msgid "Wrapper for LaTeX and friends" +msgstr "" + +#: gnu/packages/texlive.scm:309 +msgid "" +"Rubber is a program whose purpose is to handle all tasks related to the= \n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" +"PDF documents." +msgstr "" + +#: gnu/packages/textutils.scm:61 +msgid "Text encoding converter" +msgstr "" + +#: gnu/packages/textutils.scm:62 +msgid "" +"The Recode library converts files between character sets and\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" +"any pair. When exact transliteration are not possible, it gets rid of\= n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" +"handy front-end to the library." +msgstr "" + +#: gnu/packages/textutils.scm:90 +msgid "Text encoding detection tool" +msgstr "" + +#: gnu/packages/textutils.scm:91 +msgid "" +"Enca (Extremely Naive Charset Analyser) consists of libenca,\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" +"libenca and several charset conversion libraries and tools." +msgstr "" + +#: gnu/packages/textutils.scm:118 +msgid "C library for processing UTF-8 Unicode data" +msgstr "" + +#: gnu/packages/textutils.scm:119 +msgid "" +"utf8proc is a small C library that provides Unicode\n" +"normalization, case-folding, and other operations for data in the UTF-8= \n" +"encoding, supporting Unicode version 7.0." +msgstr "" + +#: gnu/packages/textutils.scm:148 +msgid "Gordon's text utils library" +msgstr "" + +#: gnu/packages/textutils.scm:150 +msgid "" +"libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" +"the Hannon Lab." +msgstr "" + +#: gnu/packages/textutils.scm:171 +msgid "C++ hash functions for strings" +msgstr "" + +#: gnu/packages/textutils.scm:173 +msgid "" +"CityHash provides hash functions for strings. The functions mix the\n" +"input bits thoroughly but are not suitable for cryptography." +msgstr "" + +#: gnu/packages/textutils.scm:190 +#, fuzzy +msgid "C/C++ configuration file library" +msgstr "Keine Konfigurationsdatei angegeben~%" + +#: gnu/packages/textutils.scm:192 +msgid "" +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." +msgstr "" + +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" + +#: gnu/packages/textutils.scm:214 +msgid "" +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." +msgstr "" + +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" +msgstr "" + +#: gnu/packages/version-control.scm:105 +msgid "" +"GNU Bazaar is a version control system that allows you to record\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" +"as well as the classic centralized workflow." +msgstr "" + +#: gnu/packages/version-control.scm:264 +msgid "Distributed version control system" +msgstr "" + +#: gnu/packages/version-control.scm:266 +msgid "" +"Git is a free distributed version control system designed to handle\n" +"everything from small to very large projects with speed and efficiency.= " +msgstr "" + +#: gnu/packages/version-control.scm:311 +msgid "Man pages of the Git version control system" +msgstr "" + +#: gnu/packages/version-control.scm:313 +msgid "" +"This package provides the man pages of the Git version control system.\= n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" +"command." +msgstr "" + +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" + +#: gnu/packages/version-control.scm:354 +msgid "" +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." +msgstr "" + +#: gnu/packages/version-control.scm:393 +msgid "Command-line flags library for shell scripts" +msgstr "" + +#: gnu/packages/version-control.scm:395 +msgid "" +"Shell Flags (shFlags) is a library written to greatly simplify the\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" +"ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" +"different versions of getopt on various OSes make writing portable shel= l\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" +"shell and OS versions so the script writer can be confident that the sc= ript\n" +"will work." +msgstr "" + +#: gnu/packages/version-control.scm:438 +msgid "Git extensions for Vincent Driessen's branching model" +msgstr "" + +#: gnu/packages/version-control.scm:440 +msgid "" +"Vincent Driessen's branching model is a git branching and release\n" +"management strategy that helps developers keep track of features, hotfi= xes,\n" +"and releases in bigger software projects. The git-flow library of git\= n" +"subcommands helps automate some parts of the flow to make working with = it a\n" +"lot easier." +msgstr "" + +#: gnu/packages/version-control.scm:475 +msgid "Run a command over a sequence of commits" +msgstr "" + +#: gnu/packages/version-control.scm:477 +msgid "" +"git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" +"linear. It will test every change between two points in the DAG. It w= ill\n" +"also walk each side of a merge and test those changes individually." +msgstr "" + +#: gnu/packages/version-control.scm:535 +msgid "Git access control layer" +msgstr "" + +#: gnu/packages/version-control.scm:537 +msgid "" +"Gitolite is an access control layer on top of Git, providing fine acces= s\n" +"control to Git repositories." +msgstr "" + +#: gnu/packages/version-control.scm:561 +msgid "Decentralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:563 +msgid "" +"Mercurial is a free, distributed source control management tool.\n" +"It efficiently handles projects of any size\n" +"and offers an easy and intuitive interface." +msgstr "" + +#: gnu/packages/version-control.scm:597 +msgid "HTTP and WebDAV client library" +msgstr "" + +#: gnu/packages/version-control.scm:598 +msgid "" +"Neon is an HTTP and WebDAV client library, with a\n" +"C interface. Features:\n" +"High-level wrappers for common HTTP and WebDAV operations (GET, MOVE,\n= " +"DELETE, etc.);\n" +"low-level interface to the HTTP request/response engine, allowing the u= se\n" +"of arbitrary HTTP methods, headers, etc.;\n" +"authentication support including Basic and Digest support, along with\n= " +"GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32;= \n" +"SSL/TLS support using OpenSSL or GnuTLS, exposing an abstraction layer = for\n" +"verifying server certificates, handling client certificates, and examin= ing\n" +"certificate properties, smartcard-based client certificates are also\n" +"supported via a PKCS#11 wrapper interface;\n" +"abstract interface to parsing XML using libxml2 or expat, and wrappers = for\n" +"simplifying handling XML HTTP response bodies;\n" +"WebDAV metadata support, wrappers for PROPFIND and PROPPATCH to simplif= y\n" +"property manipulation." +msgstr "" + +#: gnu/packages/version-control.scm:677 +msgid "Revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:679 +msgid "" +"Subversion exists to be universally recognized and adopted as a\n" +"centralized version control system characterized by its\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" +"usage; and its ability to support the needs of a wide variety of users = and\n" +"projects, from individuals to large-scale enterprise operations." +msgstr "" + +#: gnu/packages/version-control.scm:700 +msgid "Per-file local revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:702 +msgid "" +"RCS is the original Revision Control System. It works on a\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" +"CVS, Subversion, and Git. This can make it suitable for system\n" +"administration files, for example, which are often inherently local to = one\n" +"machine." +msgstr "" + +#: gnu/packages/version-control.scm:729 +msgid "Historical centralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:731 +msgid "" +"CVS is a version control system, an important component of Source\n" +"Configuration Management (SCM). Using it, you can record the history o= f\n" +"sources files, and documents. It fills a similar role to the free soft= ware\n" +"RCS, PRCS, and Aegis packages." +msgstr "" + +#: gnu/packages/version-control.scm:764 +msgid "Export an RCS or CVS history as a fast-import stream" +msgstr "" + +#: gnu/packages/version-control.scm:765 +msgid "" +"This program analyzes a collection of RCS files in a CVS\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" +"in the form of a fast-import stream. Not all possible histories can be= \n" +"rendered this way; the program tries to emit useful warnings when it ca= n't.\n" +"\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" +"acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" +"masters from remote CVS hosts." +msgstr "" + +#: gnu/packages/version-control.scm:792 +msgid "Version-control-agnostic ChangeLog diff and commit tool" +msgstr "" + +#: gnu/packages/version-control.scm:794 +msgid "" +"The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " +"vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" +"using version control at the same time, for example by printing a remin= der\n" +"when a file change has been described in the ChangeLog but the file has= not\n" +"been added to the VC. vc-chlog scans changed files and generates\n" +"standards-compliant ChangeLog entries based on the changes that it dete= cts." +msgstr "" + +#: gnu/packages/version-control.scm:816 +msgid "Make histograms from the output of 'diff'" +msgstr "" + +#: gnu/packages/version-control.scm:818 +msgid "" +"Diffstat reads the output of 'diff' and displays a histogram of the\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" +"large, complex patch files." +msgstr "" + +#: gnu/packages/version-control.scm:859 +msgid "File-based version control like SCCS" +msgstr "" + +#: gnu/packages/version-control.scm:860 +msgid "" +"GNU CSSC provides a replacement for the legacy Unix source\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" +"accessed and migrated on modern systems." +msgstr "" + +#: gnu/packages/version-control.scm:941 +msgid "Project change supervisor" +msgstr "" + +#: gnu/packages/version-control.scm:942 +msgid "" +"Aegis is a project change supervisor, and performs some of\n" +"the Software Configuration Management needed in a CASE environment. Ae= gis\n" +"provides a framework within which a team of developers may work on many= \n" +"changes to a program independently, and Aegis coordinates integrating t= hese\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" +"any project with more than one developer, is one of Aegis's major funct= ions." +msgstr "" + +#: gnu/packages/version-control.scm:970 +msgid "Ncurses-based text user interface for Git" +msgstr "" + +#: gnu/packages/version-control.scm:972 +msgid "" +"Tig is an ncurses text user interface for Git, primarily intended as\n" +"a history browser. It can also stage hunks for commit, or colorize the= \n" +"output of the 'git' command." +msgstr "" + +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" + +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." +msgstr "" + +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" + +#: gnu/packages/version-control.scm:1027 +msgid "" +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." +msgstr "" + +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" + +#: gnu/packages/version-control.scm:1059 +msgid "" +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." +msgstr "" + +#: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" + +#: gnu/packages/webkit.scm:125 +msgid "" +"WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" +"suitable for projects requiring any kind of web integration, from hybri= d\n" +"HTML/CSS applications to full-fledged web browsers." +msgstr "" + +#: gnu/packages/web.scm:89 +msgid "Featureful HTTP server" +msgstr "" + +#: gnu/packages/web.scm:91 +msgid "" +"The Apache HTTP Server Project is a collaborative software development\= n" +"effort aimed at creating a robust, commercial-grade, featureful, and\n" +"freely-available source code implementation of an HTTP (Web) server. T= he\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" +"using the Internet and the Web to communicate, plan, and develop the se= rver\n" +"and its related documentation." +msgstr "" + +#: gnu/packages/web.scm:169 +msgid "HTTP and reverse proxy server" +msgstr "" + +#: gnu/packages/web.scm:171 +msgid "" +"Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" +"created by Igor Sysoev. It can be used both as a standalone web server= \n" +"and as a proxy to reduce the load on back-end HTTP or mail servers." +msgstr "" + +#: gnu/packages/web.scm:207 +msgid "PSGI/Plack web server" +msgstr "" + +#: gnu/packages/web.scm:208 +msgid "" +"Starman is a PSGI perl web server that has unique features\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" +"and UNIX socket support." +msgstr "" + +#: gnu/packages/web.scm:227 +#, fuzzy +msgid "JSON C library" +msgstr "Die GNU C-Bibliothek" + +#: gnu/packages/web.scm:229 +msgid "" +"Jansson is a C library for encoding, decoding and manipulating JSON\n" +"data." +msgstr "" + +#: gnu/packages/web.scm:261 +msgid "JSON implementation in C" +msgstr "" + +#: gnu/packages/web.scm:263 +msgid "" +"JSON-C implements a reference counting object model that allows you to\= n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" +"parse JSON formatted strings back into the C representation of JSON obj= ects." +msgstr "" + +#: gnu/packages/web.scm:289 +msgid "JSON parser/generator for C++ with both SAX/DOM style API" +msgstr "" + +#: gnu/packages/web.scm:291 +msgid "" +"RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" +"style API." +msgstr "" + +#: gnu/packages/web.scm:309 +msgid "C library for parsing JSON" +msgstr "" + +#: gnu/packages/web.scm:311 +msgid "" +"Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" +"parser written in ANSI C and a small validating JSON generator." +msgstr "" + +#: gnu/packages/web.scm:341 +msgid "WebSockets library written in C" +msgstr "" + +#: gnu/packages/web.scm:343 +msgid "" +"Libwebsockets is a library that allows C programs to establish client\n= " +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" +"for efficient socket-like bidirectional reliable communication channels= ." +msgstr "" + +#: gnu/packages/web.scm:378 +msgid "C library for the Publix Suffix List" +msgstr "" + +#: gnu/packages/web.scm:380 +msgid "" +"A \"public suffix\" is a domain name under which Internet users can\n" +"directly register own names.\n" +"\n" +"Browsers and other web clients can use it to avoid privacy-leaking\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" +"by site.\n" +"\n" +"Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" +"domain verification, finds the longest public part of a given domain, f= inds\n" +"the shortest private part of a given domain, works with international\n= " +"domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" +"UTS#46." +msgstr "" + +#: gnu/packages/web.scm:426 +msgid "HTML validator and tidier" +msgstr "" + +#: gnu/packages/web.scm:427 +msgid "" +"HTML Tidy is a command-line tool and C library that can be\n" +"used to validate and fix HTML data." +msgstr "" + +#: gnu/packages/web.scm:468 +msgid "Light-weight HTTP/HTTPS proxy daemon" +msgstr "" + +#: gnu/packages/web.scm:469 +msgid "" +"Tinyproxy is a light-weight HTTP/HTTPS proxy\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" +"proxy is required, but the system resources for a larger proxy are\n" +"unavailable." +msgstr "" + +#: gnu/packages/web.scm:502 +msgid "Small caching web proxy" +msgstr "" + +#: gnu/packages/web.scm:504 +msgid "" +"Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " +"server). It was primarily designed to be used by one person or a small= " +"group\n" +"of people." +msgstr "" + +#: gnu/packages/web.scm:524 +msgid "YAML 1.1 parser and emitter written in C" +msgstr "" + +#: gnu/packages/web.scm:526 +msgid "LibYAML is a YAML 1.1 parser and emitter written in C." +msgstr "" + +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 +msgid "Media stream URL parser" +msgstr "" + +#: gnu/packages/web.scm:543 +msgid "" +"This package contains support scripts called by libquvi to\n" +"parse media stream properties." +msgstr "" + +#: gnu/packages/web.scm:576 +msgid "" +"libquvi is a library with a C API for parsing media stream\n" +"URLs and extracting their actual media files." +msgstr "" + +#: gnu/packages/web.scm:598 +msgid "" +"quvi is a command-line-tool suite to extract media files\n" +"from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." +msgstr "" + +#: gnu/packages/web.scm:661 +msgid "High-performance asynchronous HTTP client library" +msgstr "" + +#: gnu/packages/web.scm:663 +msgid "" +"serf is a C-based HTTP client library built upon the Apache Portable\n" +"Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" +"minimum to provide high performance operation." +msgstr "" + +#: gnu/packages/web.scm:718 +msgid "CSS pre-processor" +msgstr "" + +#: gnu/packages/web.scm:719 +msgid "" +"SassC is a compiler written in C for the CSS pre-processor\n" +"language known as SASS." +msgstr "" + +#: gnu/packages/web.scm:748 +msgid "Compile a log format string to perl-code" +msgstr "" + +#: gnu/packages/web.scm:749 +msgid "" +"This module provides methods to compile a log format string\n" +"to perl-code, for faster generation of access_log lines." +msgstr "" + +#: gnu/packages/web.scm:770 +msgid "SASL authentication framework" +msgstr "" + +#: gnu/packages/web.scm:771 +msgid "Authen::SASL provides an SASL authentication framework." +msgstr "" + +#: gnu/packages/web.scm:795 +msgid "Sensible default Catalyst action" +msgstr "" + +#: gnu/packages/web.scm:796 +msgid "" +"This Catalyst action implements a sensible default end\n" +"action, which will forward to the first available view." +msgstr "" + +#: gnu/packages/web.scm:824 +msgid "Automated REST Method Dispatching" +msgstr "" + +#: gnu/packages/web.scm:825 +msgid "" +"This Action handles doing automatic method dispatching for\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" +"append an underscore and method name. First it will try dispatching to= an\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" +"regular method." +msgstr "" + +#: gnu/packages/web.scm:861 +msgid "Storage class for Catalyst authentication using DBIx::Class" +msgstr "" + +#: gnu/packages/web.scm:862 +msgid "" +"The Catalyst::Authentication::Store::DBIx::Class class\n" +"provides access to authentication information stored in a database via\= n" +"DBIx::Class." +msgstr "" + +#: gnu/packages/web.scm:886 +msgid "Create only one instance of Moose component per context" +msgstr "" + +#: gnu/packages/web.scm:887 +msgid "" +"Catalyst::Component::InstancePerContext returns a new\n" +"instance of a component on each request." +msgstr "" + +#: gnu/packages/web.scm:924 +msgid "Catalyst Development Tools" +msgstr "" + +#: gnu/packages/web.scm:925 +msgid "" +"The Catalyst-Devel distribution includes a variety of\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" +"to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" +"modules." +msgstr "" + +#: gnu/packages/web.scm:954 +msgid "Regex DispatchType for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:955 +msgid "" +"Dispatch type managing path-matching behaviour using\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" +"core. It is recommend that you use Chained methods or other techniques= \n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" +"when the dispatch type is first seen in your application." +msgstr "" + +#: gnu/packages/web.scm:1003 +msgid "DBIx::Class::Schema Model Class" +msgstr "" + +#: gnu/packages/web.scm:1004 +msgid "" +"This is a Catalyst Model for DBIx::Class::Schema-based\n" +"Models." +msgstr "" + +#: gnu/packages/web.scm:1028 +msgid "Request logging from within Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1029 +msgid "" +"This Catalyst plugin enables you to create \"access logs\"\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" +"for you. It will work even with Catalyst debug logging turned off." +msgstr "" + +#: gnu/packages/web.scm:1061 +msgid "Infrastructure plugin for the Catalyst authentication framework" +msgstr "" + +#: gnu/packages/web.scm:1062 +msgid "" +"The authentication plugin provides generic user support for\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" +"who they claim to be), and authorization (allowing the user to do what = the\n" +"system authorises them to do)." +msgstr "" + +#: gnu/packages/web.scm:1092 +msgid "Role-based authorization for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1093 +msgid "" +"Catalyst::Plugin::Authorization::Roles provides role-based\n" +"authorization for Catalyst based on Catalyst::Plugin::Authentication." +msgstr "" + +#: gnu/packages/web.scm:1116 +msgid "Captchas for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1117 +msgid "" +"This plugin creates and validates Captcha images for\n" +"Catalyst." +msgstr "" + +#: gnu/packages/web.scm:1143 +msgid "Load config files of various types" +msgstr "" + +#: gnu/packages/web.scm:1144 +msgid "" +"This module will attempt to load find and load configuration\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" +"formats." +msgstr "" + +#: gnu/packages/web.scm:1174 +msgid "Catalyst generic session plugin" +msgstr "" + +#: gnu/packages/web.scm:1175 +msgid "" +"This plugin links the two pieces required for session\n" +"management in web applications together: the state, and the store." +msgstr "" + +#: gnu/packages/web.scm:1201 +msgid "Maintain session IDs using cookies" +msgstr "" + +#: gnu/packages/web.scm:1202 +msgid "" +"In order for Catalyst::Plugin::Session to work, the session\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" +"on the server. This plugin stores the session ID on the client using t= he\n" +"cookie mechanism." +msgstr "" + +#: gnu/packages/web.scm:1232 +msgid "FastMmap session storage backend" +msgstr "" + +#: gnu/packages/web.scm:1233 +msgid "" +"Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" +"storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" +"memory interprocess cache. It is based on Cache::FastMmap." +msgstr "" + +#: gnu/packages/web.scm:1256 +msgid "Stack trace on the Catalyst debug screen" +msgstr "" + +#: gnu/packages/web.scm:1257 +msgid "" +"This plugin enhances the standard Catalyst debug screen by\n" +"including a stack trace of your application up to the point where the e= rror\n" +"occurred. Each stack frame is displayed along with the package name, l= ine\n" +"number, file name, and code context surrounding the line number." +msgstr "" + +#: gnu/packages/web.scm:1283 +msgid "Simple serving of static pages" +msgstr "" + +#: gnu/packages/web.scm:1284 +msgid "" +"The Static::Simple plugin is designed to make serving static\n" +"content in your application during development quick and easy, without\= n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" +"plugin uses the lightweight MIME::Types module to map file extensions t= o\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" +"MIME type directly to the browser, without being processed through Cata= lyst." +msgstr "" + +#: gnu/packages/web.scm:1351 +msgid "The Catalyst Framework Runtime" +msgstr "" + +#: gnu/packages/web.scm:1352 +msgid "" +"Catalyst is a modern framework for making web applications.\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" +"\"plug in\" existing Perl modules that do what you need." +msgstr "" + +#: gnu/packages/web.scm:1382 +msgid "Replace request base with value passed by HTTP proxy" +msgstr "" + +#: gnu/packages/web.scm:1383 +msgid "" +"This module is a Moose::Role which allows you more\n" +"flexibility in your application's deployment configurations when deploy= ed\n" +"behind a proxy. Using this module, the request base ($c->req->base) is= \n" +"replaced with the contents of the X-Request-Base header." +msgstr "" + +#: gnu/packages/web.scm:1409 +msgid "Download data in many formats" +msgstr "" + +#: gnu/packages/web.scm:1410 +msgid "" +"The purpose of this module is to provide a method for\n" +"downloading data into many supportable formats. For example, downloadi= ng a\n" +"table based report in a variety of formats (CSV, HTML, etc.)." +msgstr "" + +#: gnu/packages/web.scm:1435 +msgid "Catalyst JSON view" +msgstr "" + +#: gnu/packages/web.scm:1436 +msgid "" +"Catalyst::View::JSON is a Catalyst View handler that returns\n" +"stash data in JSON format." +msgstr "" + +#: gnu/packages/web.scm:1461 +msgid "Template View Class" +msgstr "" + +#: gnu/packages/web.scm:1462 +msgid "" +"This module is a Catalyst view class for the Template\n" +"Toolkit." +msgstr "" + +#: gnu/packages/web.scm:1491 +msgid "Trait Loading and Resolution for Catalyst Components" +msgstr "" + +#: gnu/packages/web.scm:1492 +msgid "" +"Adds a \"COMPONENT\" in Catalyst::Component method to your\n" +"Catalyst component base class that reads the optional \"traits\" parame= ter\n" +"from app and component config and instantiates the component subclass w= ith\n" +"those traits using \"new_with_traits\" in MooseX::Traits from\n" +"MooseX::Traits::Pluggable." +msgstr "" + +#: gnu/packages/web.scm:1517 +msgid "Apply roles to Catalyst classes" +msgstr "" + +#: gnu/packages/web.scm:1518 +msgid "" +"CatalystX::RoleApplicator applies roles to Catalyst\n" +"application classes." +msgstr "" + +#: gnu/packages/web.scm:1544 +msgid "Catalyst development server with Starman" +msgstr "" + +#: gnu/packages/web.scm:1545 +msgid "" +"This module provides a Catalyst extension to replace the\n" +"development server with Starman." +msgstr "" + +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" + +#: gnu/packages/web.scm:1570 +msgid "" +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." +msgstr "" + +#: gnu/packages/web.scm:1594 +msgid "CGI interface that is CGI.pm compliant" +msgstr "" + +#: gnu/packages/web.scm:1595 +msgid "" +"CGI::Simple provides a relatively lightweight drop in\n" +"replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" +"parameter parsing, file upload, cookie handling and header generation." +msgstr "" + +#: gnu/packages/web.scm:1616 +msgid "Build structures from CGI data" +msgstr "" + +#: gnu/packages/web.scm:1617 +msgid "" +"This is a module for building structured data from CGI\n" +"inputs, in a manner reminiscent of how PHP does." +msgstr "" + +#: gnu/packages/web.scm:1640 +msgid "Date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:1641 +msgid "" +"This module provides functions that deal with the date\n" +"formats used by the HTTP protocol." +msgstr "" + +#: gnu/packages/web.scm:1661 +msgid "MD5 sums for files and urls" +msgstr "" + +#: gnu/packages/web.scm:1662 +msgid "" +"Digest::MD5::File is a Perl extension for getting MD5 sums\n" +"for files and urls." +msgstr "" + +#: gnu/packages/web.scm:1680 +msgid "Perl locale encoding determination" +msgstr "" + +#: gnu/packages/web.scm:1682 +msgid "" +"The POSIX locale system is used to specify both the language\n" +"conventions requested by the user and the preferred character set to\n" +"consume and output. The Encode::Locale module looks up the charset and= \n" +"encoding (called a CODESET in the locale jargon) and arranges for the\n= " +"Encode module to know this encoding under the name \"locale\". It mean= s\n" +"bytes obtained from the environment can be converted to Unicode strings= \n" +"by calling Encode::encode(locale =3D> $bytes) and converted back again\= n" +"with Encode::decode(locale =3D> $string)." +msgstr "" + +#: gnu/packages/web.scm:1708 +msgid "Perl directory listing parser" +msgstr "" + +#: gnu/packages/web.scm:1710 +msgid "" +"The File::Listing module exports a single function called parse_dir(),\= n" +"which can be used to parse directory listings." +msgstr "" + +#: gnu/packages/web.scm:1742 +msgid "Stock and mutual fund quotes" +msgstr "" + +#: gnu/packages/web.scm:1744 +msgid "" +"Finance::Quote gets stock quotes from various internet sources, includi= ng\n" +"Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." +msgstr "" + +#: gnu/packages/web.scm:1766 +msgid "Perl extension providing access to the GSSAPIv2 library" +msgstr "" + +#: gnu/packages/web.scm:1767 +msgid "" +"This is a Perl extension for using GSSAPI C bindings as\n" +"described in RFC 2744." +msgstr "" + +#: gnu/packages/web.scm:1787 +msgid "Manipulate tables of HTML::Element" +msgstr "" + +#: gnu/packages/web.scm:1789 +msgid "" +"HTML::Element::Extended is a Perl extension for manipulating a table\n" +"composed of HTML::Element style components." +msgstr "" + +#: gnu/packages/web.scm:1813 +msgid "Perl class representing an HTML form element" +msgstr "" + +#: gnu/packages/web.scm:1814 +msgid "" +"Objects of the HTML::Form class represents a single HTML\n" +"
...
instance." +msgstr "" + +#: gnu/packages/web.scm:1836 +msgid "Check for HTML errors in a string or file" +msgstr "" + +#: gnu/packages/web.scm:1837 +msgid "" +"HTML::Lint is a pure-Perl HTML parser and checker for\n" +"syntactic legitmacy." +msgstr "" + +#: gnu/packages/web.scm:1858 +msgid "Extract contents from HTML tables" +msgstr "" + +#: gnu/packages/web.scm:1860 +msgid "" +"HTML::TableExtract is a Perl module for extracting the content containe= d\n" +"in tables within an HTML document, either as text or encoded element tr= ees." +msgstr "" + +#: gnu/packages/web.scm:1885 +msgid "Work with HTML in a DOM-like tree structure" +msgstr "" + +#: gnu/packages/web.scm:1886 +msgid "" +"This distribution contains a suite of modules for\n" +"representing, creating, and extracting information from HTML syntax tre= es." +msgstr "" + +#: gnu/packages/web.scm:1906 +msgid "Perl HTML parser class" +msgstr "" + +#: gnu/packages/web.scm:1908 +msgid "" +"Objects of the HTML::Parser class will recognize markup and separate\n" +"it from plain text (alias data content) in HTML documents. As differen= t\n" +"kinds of markup and text are recognized, the corresponding event handle= rs\n" +"are invoked." +msgstr "" + +#: gnu/packages/web.scm:1928 +msgid "Perl data tables useful in parsing HTML" +msgstr "" + +#: gnu/packages/web.scm:1930 +msgid "" +"The HTML::Tagset module contains several data tables useful in various\= n" +"kinds of HTML parsing operations." +msgstr "" + +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" + +#: gnu/packages/web.scm:1951 +msgid "" +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." +msgstr "" + +#: gnu/packages/web.scm:1979 +msgid "HTTP Body Parser" +msgstr "" + +#: gnu/packages/web.scm:1980 +msgid "" +"HTTP::Body parses chunks of HTTP POST data and supports\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" +"and multipart/form-data." +msgstr "" + +#: gnu/packages/web.scm:2006 +msgid "Minimalist HTTP user agent cookie jar" +msgstr "" + +#: gnu/packages/web.scm:2007 +msgid "" +"This module implements a minimalist HTTP user agent cookie\n" +"jar in conformance with RFC 6265 ." +msgstr "" + +#: gnu/packages/web.scm:2027 +msgid "Perl HTTP cookie jars" +msgstr "" + +#: gnu/packages/web.scm:2029 +msgid "" +"The HTTP::Cookies class is for objects that represent a cookie jar,\n" +"that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" +"object knows about." +msgstr "" + +#: gnu/packages/web.scm:2051 +msgid "Perl simple http server class" +msgstr "" + +#: gnu/packages/web.scm:2053 +msgid "" +"Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" +"on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " +"IO::Socket::INET, so you can perform socket operations directly on it t= oo." +msgstr "" + +#: gnu/packages/web.scm:2072 +msgid "Perl date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:2074 +msgid "" +"The HTTP::Date module provides functions that deal with date formats\n" +"used by the HTTP protocol (and then some more)." +msgstr "" + +#: gnu/packages/web.scm:2097 +msgid "Perl HTTP style message" +msgstr "" + +#: gnu/packages/web.scm:2099 +msgid "An HTTP::Message object contains some headers and a content body.= " +msgstr "" + +#: gnu/packages/web.scm:2118 +msgid "Perl http content negotiation" +msgstr "" + +#: gnu/packages/web.scm:2120 +msgid "" +"The HTTP::Negotiate module provides a complete implementation of the\n" +"HTTP content negotiation algorithm specified in\n" +"draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows = for\n" +"the selection of a preferred content representation based upon attribut= es\n" +"of the negotiable variants and the value of the various Accept* header\= n" +"fields in the request." +msgstr "" + +#: gnu/packages/web.scm:2145 +msgid "Parse HTTP/1.1 requests" +msgstr "" + +#: gnu/packages/web.scm:2146 +msgid "" +"This is an HTTP request parser. It takes chunks of text as\n" +"received and returns a 'hint' as to what is required, or returns the\n" +"HTTP::Request when a complete request has been read. HTTP/1.1 chunking= is\n" +"supported." +msgstr "" + +#: gnu/packages/web.scm:2166 +msgid "Fast HTTP request parser" +msgstr "" + +#: gnu/packages/web.scm:2167 +msgid "" +"HTTP::Parser::XS is a fast, primitive HTTP request/response\n" +"parser." +msgstr "" + +#: gnu/packages/web.scm:2188 +msgid "Set up a CGI environment from an HTTP::Request" +msgstr "" + +#: gnu/packages/web.scm:2189 +msgid "" +"This module provides a convenient way to set up a CGI\n" +"environment from an HTTP::Request." +msgstr "" + +#: gnu/packages/web.scm:2213 +msgid "Lightweight HTTP server" +msgstr "" + +#: gnu/packages/web.scm:2214 +msgid "" +"HTTP::Server::Simple is a simple standalone HTTP daemon with\n" +"no non-core module dependencies. It can be used for building a standal= one\n" +"http-based UI to your existing tools." +msgstr "" + +#: gnu/packages/web.scm:2238 +msgid "HTTP/1.1 client" +msgstr "" + +#: gnu/packages/web.scm:2239 +msgid "" +"This is a very simple HTTP/1.1 client, designed for doing\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" +"It supports proxies and redirection. It also correctly resumes after E= INTR." +msgstr "" + +#: gnu/packages/web.scm:2258 +msgid "Perl module to open an HTML file with automatic charset detection= " +msgstr "" + +#: gnu/packages/web.scm:2260 +msgid "" +"IO::HTML provides an easy way to open a file containing HTML while\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" +"algorithm specified in section 8.2.2.1 of the draft standard." +msgstr "" + +#: gnu/packages/web.scm:2280 +msgid "Family-neutral IP socket supporting both IPv4 and IPv6" +msgstr "" + +#: gnu/packages/web.scm:2281 +msgid "" +"This module provides a protocol-independent way to use IPv4\n" +"and IPv6 sockets, intended as a replacement for IO::Socket::INET." +msgstr "" + +#: gnu/packages/web.scm:2301 +msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" +msgstr "" + +#: gnu/packages/web.scm:2303 +msgid "" +"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" +"select or poll." +msgstr "" + +#: gnu/packages/web.scm:2334 +msgid "Perl modules for the WWW" +msgstr "" + +#: gnu/packages/web.scm:2336 +msgid "" +"The libwww-perl collection is a set of Perl modules which provides a\n" +"simple and consistent application programming interface to the\n" +"World-Wide Web. The main focus of the library is to provide classes\n" +"and functions that allow you to write WWW clients. The library also\n" +"contains modules that are of more general use and even classes that\n" +"help you implement simple HTTP servers." +msgstr "" + +#: gnu/packages/web.scm:2358 +msgid "Perl module to guess the media type for a file or a URL" +msgstr "" + +#: gnu/packages/web.scm:2360 +#, scheme-format +msgid "" +"The LWP::MediaTypes module provides functions for handling media (also\= n" +"known as MIME) types and encodings. The mapping from file extensions t= o\n" +"media types is defined by the media.types file. If the ~/.media.types = file\n" +"exists it is used instead." +msgstr "" + +#: gnu/packages/web.scm:2386 +msgid "HTTPS support for LWP::UserAgent" +msgstr "" + +#: gnu/packages/web.scm:2387 +msgid "" +"The LWP::Protocol::https module provides support for using\n" +"https schemed URLs with LWP." +msgstr "" + +#: gnu/packages/web.scm:2407 +msgid "Virtual browser that retries errors" +msgstr "" + +#: gnu/packages/web.scm:2408 +msgid "" +"LWP::UserAgent::Determined works just like LWP::UserAgent,\n" +"except that when you use it to get a web page but run into a\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" +"and retry a few times." +msgstr "" + +#: gnu/packages/web.scm:2453 +msgid "Perl interface to Amazon S3" +msgstr "" + +#: gnu/packages/web.scm:2454 +msgid "This module provides a Perlish interface to Amazon S3." +msgstr "" + +#: gnu/packages/web.scm:2474 +msgid "Perl low-level HTTP connection (client)" +msgstr "" + +#: gnu/packages/web.scm:2476 +msgid "" +"The Net::HTTP class is a low-level HTTP client. An instance of the\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" +"is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" +"HTTP/1.1." +msgstr "" + +#: gnu/packages/web.scm:2496 +msgid "Extensible Perl server engine" +msgstr "" + +#: gnu/packages/web.scm:2497 +msgid "" +"Net::Server is an extensible, generic Perl server engine.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" +"It includes with it the ability to run as an inetd\n" +"process (Net::Server::INET), a single connection server (Net::Server or= \n" +"Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" +"server which maintains a constant number of preforked\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" +"or to multiple server ports." +msgstr "" + +#: gnu/packages/web.scm:2525 +msgid "SSL support for Net::SMTP" +msgstr "" + +#: gnu/packages/web.scm:2526 +msgid "SSL support for Net::SMTP." +msgstr "" + +#: gnu/packages/web.scm:2560 +msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" +msgstr "" + +#: gnu/packages/web.scm:2561 +msgid "" +"Plack is a set of tools for using the PSGI stack. It\n" +"contains middleware components, a reference server, and utilities for W= eb\n" +"application frameworks. Plack is like Ruby's Rack or Python's Paste fo= r\n" +"WSGI." +msgstr "" + +#: gnu/packages/web.scm:2587 +msgid "Plack::Middleware which sets body for redirect response" +msgstr "" + +#: gnu/packages/web.scm:2588 +msgid "" +"This module sets the body in redirect response, if it's not\n" +"already set." +msgstr "" + +#: gnu/packages/web.scm:2611 +msgid "Override REST methods to Plack apps via POST" +msgstr "" + +#: gnu/packages/web.scm:2612 +msgid "" +"This middleware allows for POST requests that pretend to be\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" +"can say what method it actually meant." +msgstr "" + +#: gnu/packages/web.scm:2636 +msgid "Plack::Middleware which removes body for HTTP response" +msgstr "" + +#: gnu/packages/web.scm:2637 +msgid "" +"This module removes the body in an HTTP response if it's not\n" +"required." +msgstr "" + +#: gnu/packages/web.scm:2658 +msgid "Supports app to run as a reverse proxy backend" +msgstr "" + +#: gnu/packages/web.scm:2659 +msgid "" +"Plack::Middleware::ReverseProxy resets some HTTP headers,\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" +"and stop fake requests using 'enable_if' directive in your app.psgi." +msgstr "" + +#: gnu/packages/web.scm:2680 +msgid "Run HTTP tests on external live servers" +msgstr "" + +#: gnu/packages/web.scm:2681 +msgid "" +"This module allows your to run your Plack::Test tests\n" +"against an external server instead of just against a local application = " +"through\n" +"either mocked HTTP or a locally spawned server." +msgstr "" + +#: gnu/packages/web.scm:2703 +msgid "Testing TCP programs" +msgstr "" + +#: gnu/packages/web.scm:2704 +msgid "Test::TCP is test utilities for TCP/IP programs." +msgstr "" + +#: gnu/packages/web.scm:2732 +msgid "Testing-specific WWW::Mechanize subclass" +msgstr "" + +#: gnu/packages/web.scm:2733 +msgid "" +"Test::WWW::Mechanize is a subclass of the Perl module\n" +"WWW::Mechanize that incorporates features for web application testing." +msgstr "" + +#: gnu/packages/web.scm:2766 +msgid "Test::WWW::Mechanize for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:2767 +msgid "" +"The Test::WWW::Mechanize::Catalyst module meshes the\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" +"testing of Catalyst applications without needing to start up a web serv= er." +msgstr "" + +#: gnu/packages/web.scm:2791 +msgid "Test PSGI programs using WWW::Mechanize" +msgstr "" + +#: gnu/packages/web.scm:2792 +msgid "" +"PSGI is a specification to decouple web server environments\n" +"from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" +"WWW::Mechanize that incorporates features for web application testing. = The\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" +"applications." +msgstr "" + +#: gnu/packages/web.scm:2812 +msgid "Perl Uniform Resource Identifiers (absolute and relative)" +msgstr "" + +#: gnu/packages/web.scm:2814 +msgid "" +"The URI module implements the URI class. Objects of this class\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" +"and updated by RFC 2732." +msgstr "" + +#: gnu/packages/web.scm:2837 +msgid "Find URIs in arbitrary text" +msgstr "" + +#: gnu/packages/web.scm:2838 msgid "" -"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" -"command-line arguments, multiple languages, and so on." +"This module finds URIs and URLs (according to what URI.pm\n" +"considers a URI) in plain text. It only finds URIs which include a\n" +"scheme (http:// or the like), for something a bit less strict, consider= \n" +"URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." msgstr "" -"GNU Hello gibt die Meldung =C2=BBHello, world!=C2=AB aus und beendet si= ch dann.\n" -"Es dient als ein Beispiel f=C3=BCr die Standardwege zur Erzeugung von G= NU-Code.\n" -"Als solches unterst=C3=BCtzt es Befehlszeilenargumente, mehrere Sprache= n usw." =20 -#: gnu/packages/base.scm:85 -msgid "Print lines matching a pattern" -msgstr "Zeilen zur=C3=BCckgeben, die auf ein Muster passen" +#: gnu/packages/web.scm:2860 +msgid "WebSocket support for URI package" +msgstr "" =20 -#: gnu/packages/base.scm:87 +#: gnu/packages/web.scm:2861 msgid "" -"grep is a tool for finding text inside files. Text is found by\n" -"matching a pattern provided by the user in one or many files. The patt= ern\n" -"may be provided as a basic or extended regular expression, or as fixed\= n" -"strings. By default, the matching text is simply printed to the screen= ,\n" -"however the output can be greatly customized to include, for example, l= ine\n" -"numbers. GNU grep offers many extensions over the standard utility,\n" -"including, for example, recursive directory searching." +"With this module, the URI package provides the same set of\n" +"methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -"Grep ist ein Werkzeug zum Finden von Text in Dateien. Textteile werden = durch\n" -"Vergleichen anhand eines vom Benutzer angegebenen Musters in einer oder= \n" -"mehreren Dateien gesucht. Das Muster kann als einfacher oder erweiterte= r\n" -"regul=C3=A4rer Ausdruck oder auch als einfache Zeichenkette angegeben w= erden.\n" -"In der Voreinstellung wird der Suchtreffer auf dem Bildschirm ausgegebe= n,\n" -"aber die Ausgabe kann auf vielf=C3=A4ltige Weise angepasst werden, um b= eispiels-\n" -"weise Zeilennummern mit anzuzeigen. GNU Grep bietet viele Erweiterungen= \n" -"im Vergleich zum Standardwerkzeug, zum Beispiel die rekursive Suche\n" -"in Verzeichnisstrukturen." =20 -#: gnu/packages/base.scm:109 -msgid "Stream editor" -msgstr "Datenstromeditor" +#: gnu/packages/web.scm:2881 +msgid "Perl extension interface for libcurl" +msgstr "" =20 -#: gnu/packages/base.scm:124 +#: gnu/packages/web.scm:2883 msgid "" -"Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" -"is often used for substituting text patterns in a stream. The GNU\n" -"implementation offers several extensions over the standard utility." +"This is a Perl extension interface for the libcurl file downloading\n" +"library." msgstr "" -"Sed ist ein nicht-interaktiver Editor f=C3=BCr Text-Datenstr=C3=B6me. E= r empf=C3=A4ngt eine\n" -"Texteingabe aus einer Datei oder der Standardeingabe und wendet eine Re= ihe von\n" -"Textbearbeitungsbefehlen darauf an. Das Ergebnis wird in der Standardau= sgabe\n" -"ausgegeben. Er wird h=C3=A4ufig zum Ersetzen von Textmustern in einem D= atenstrom\n" -"verwendet. Die GNU-Implementation bietet gegen=C3=BCber dem Standardwer= kzeug\n" -"diverse Erweiterungen." =20 -#: gnu/packages/base.scm:144 -msgid "Managing tar archives" -msgstr "Tar-Archive verwalten" +#: gnu/packages/web.scm:2912 +msgid "Web browsing in a Perl object" +msgstr "" =20 -#: gnu/packages/base.scm:146 +#: gnu/packages/web.scm:2913 msgid "" -"Tar provides the ability to create tar archives, as well as the\n" -"ability to extract, update or list files in an existing archive. It is= \n" -"useful for combining many files into one larger file, while maintaining= \n" -"directory structure and file information such as permissions and\n" -"creation/modification dates. GNU tar offers many extensions over the\n= " -"standard utility." +"WWW::Mechanize is a Perl module for stateful programmatic\n" +"web browsing, used for automating interaction with websites." msgstr "" -"Tar erm=C3=B6glicht Ihnen das Erstellen oder Entpacken von Tar-Archiven= sowie\n" -"die Aktualisierung oder Auflistung von Dateien eines existierenden Arch= ivs.\n" -"Es dient zum Zusammenfassen mehrerer Dateien in einer einzigen Datei, w= obei\n" -"die Verzeichnisstruktur und Dsateiinformationen wie Erstellungs- und\n" -"=C3=84nderungszeitpunkte sowie Zugriffsrechte erhalten bleiben. GNU Tar= bietet\n" -"viele Erweiterungen =C3=BCber die F=C3=A4higkeiten des Standardwerkzeug= s hinaus." =20 -#: gnu/packages/base.scm:173 -msgid "Apply differences to originals, with optional backups" -msgstr "Unterschiede auf Originaldateien anwenden, mit optionaler Datens= icherung" +#: gnu/packages/web.scm:2933 +msgid "Perl database of robots.txt-derived permissions" +msgstr "" =20 -#: gnu/packages/base.scm:175 +#: gnu/packages/web.scm:2935 msgid "" -"Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" -"files depending on the contents of the diff file. It accepts several\n= " -"different diff formats. It may also be used to revert previously appli= ed\n" -"differences." +"The WWW::RobotRules module parses /robots.txt files as specified in\n" +"\"A Standard for Robot Exclusion\", at\n" +". Webmasters can use the\n" +"/robots.txt file to forbid conforming robots from accessing parts of\n" +"their web site." msgstr "" -"Patch ist ein Programm, das =C3=84nderungen auf Dateien anwendet, die d= urch das\n" -"Programm =C2=BBdiff=C2=AB erzeugt wurden. Die =C3=84nderungen k=C3=B6nn= en auf eine oder mehrere\n" -"Dateien angewendet werden, abh=C3=A4ngig vom Inhalt der Diff-Datei. Es = akzeptiert\n" -"verschiedene Diff-Formate. Es kann auch dazu genutzt werden, fr=C3=BChe= re\n" -"Anwendungen von Diff-Dateien r=C3=BCckg=C3=A4ngig zu machen." =20 -#: gnu/packages/base.scm:195 -msgid "Comparing and merging files" -msgstr "Dateien vergleichen und zusammenf=C3=BChren" +#: gnu/packages/web.scm:2955 +msgid "HTTP and WebSocket server library for R" +msgstr "" =20 -#: gnu/packages/base.scm:197 +#: gnu/packages/web.scm:2957 msgid "" -"GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" -"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer. \n" -"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" -"interactive means to merge two files." +"The httpuv package provides low-level socket and protocol support for\n= " +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" +"intended as a building block for other packages, rather than making it\= n" +"particularly easy to create complete web applications using httpuv alon= e." msgstr "" -"Das Paket GNU Diffutils enth=C3=A4lt Werkzeuge zum Finden von Unterschi= eden\n" -"zwischen Dateien. Der Befehl =C2=BBdiff=C2=AB wird dazu verwendet, zwei= Dateien\n" -"zu vergleichen, um die Unterschiede kenntlich zu machen, w=C3=A4hrend =C2= =BBcmp=C2=AB anhand\n" -"von Position und Zeilennummern zeigt, wo genau die Unterschiede liegen.= \n" -"Weiterhin bietet =C2=BBsdiff=C2=AB eine M=C3=B6glichkeit, zwei Dateien = interaktiv\n" -"zusammenzuf=C3=BChren." =20 -#: gnu/packages/base.scm:224 -msgid "Operating on files matching given criteria" -msgstr "Verarbeitung von Dateien anhand gegebener Kriterien" +#: gnu/packages/web.scm:2978 +msgid "Robust, high performance JSON parser and generator for R" +msgstr "" =20 -#: gnu/packages/base.scm:226 +#: gnu/packages/web.scm:2980 msgid "" -"Findutils supplies the basic file directory searching utilities of the\= n" -"GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" -"used to apply commands with arbitrarily long arguments." +"The jsonlite package provides a fast JSON parser and generator optimize= d\n" +"for statistical data and the web. It offers flexible, robust, high\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" +"in systems and applications." msgstr "" -"Das Paket Findutils stellt im GNU-System die grundlegenden Werkzeuge zu= m Suchen\n" -"in Verzeichnissen bereit. Zwei prim=C3=A4re Suchwerkzeuge sind enthalte= n: =C2=BBfind=C2=AB\n" -"sucht anhand angegebener Kriterien rekursiv nach Dateien in Verzeichnis= sen\n" -"und =C2=BBlocate=C2=AB listet Dateien in einer Datenbank auf, die einer= Abfrage\n" -"entsprechen. Zwei Hilfswerkzeuge sind au=C3=9Ferdem enthalten: =C2=BBup= datedb=C2=AB aktualisiert\n" -"die Dateinamendatenbank und =C2=BBxargs=C2=AB dient dazu, Befehle mit w= illk=C3=BCrlich\n" -"langen Argumenten anzuwenden." =20 -#: gnu/packages/base.scm:278 -msgid "Core GNU utilities (file, text, shell)" -msgstr "GNU-Kernprogramme (Datei, Text, Shell)" +#: gnu/packages/web.scm:3008 +msgid "Simple HTTP server to serve static files or dynamic documents" +msgstr "" =20 -#: gnu/packages/base.scm:280 +#: gnu/packages/web.scm:3010 msgid "" -"GNU Coreutils includes all of the basic command-line tools that are\n" -"expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" -"functionality beyond that which is outlined in the POSIX standard." +"Servr provides an HTTP server in R to serve static files, or dynamic\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" +"directory." msgstr "" -"Die GNU Coreutils enthalten alle grundlegenden Befehlszeilenwerkzeuge, = die\n" -"Sie in einem POSIX-System erwarten. Diese bieten Ihnen die Bearbeitungs= funktionen\n" -"f=C3=BCr Dateien, Text und Shell des GNU-Systems. Die meisten dieser We= rkzeuge bieten\n" -"im Vergleich zu den in POSIX festgelegten Standards erweiterte Funktion= alit=C3=A4t." =20 -#: gnu/packages/base.scm:314 -msgid "Remake files automatically" -msgstr "Automatisches Remake von Dateien" +#: gnu/packages/web.scm:3029 +msgid "R tools for HTML" +msgstr "" + +#: gnu/packages/web.scm:3031 +msgid "This package provides tools for HTML generation and output in R." +msgstr "" + +#: gnu/packages/web.scm:3050 +msgid "HTML Widgets for R" +msgstr "" =20 -#: gnu/packages/base.scm:316 +#: gnu/packages/web.scm:3052 msgid "" -"Make is a program that is used to control the production of\n" -"executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" -"generated from its source. It has powerful dependency resolution and t= he\n" -"ability to determine when files have to be regenerated after their sour= ces\n" -"change. GNU make offers many powerful extensions over the standard uti= lity." +"HTML widgets is a framework for creating HTML widgets that render in\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" +"applications." msgstr "" -"Make ist ein Programm, das zur Steuerung der Erstellung von ausf=C3=BCh= rbaren\n" -"oder anderen Dateien aus deren Quelldateien verwendet wird. Der Prozess= \n" -"wird =C3=BCber ein =C2=BBMakefile=C2=AB gesteuert, in welchem der Entwi= ckler angibt, auf\n" -"welche Weise jede der Dateien aus den Quellen erzeugt werden soll. Das\= n" -"Programm verf=C3=BCgt =C3=BCber eine leistungsf=C3=A4hige Abh=C3=A4ngig= keitsaufl=C3=B6sung und die\n" -"F=C3=A4higkeit zu bestimmen, wann eine Datei neu erstellt werden muss, = wenn sich\n" -"deren Quellen ge=C3=A4ndert haben. GNU Make bietet m=C3=A4chtige Erweit= erungen =C3=BCber die\n" -"F=C3=A4higkeiten des Standardwerkzeugs hinaus. " =20 -#: gnu/packages/base.scm:361 -msgid "Binary utilities: bfd gas gprof ld" -msgstr "Bin=C3=A4r-Dienstprogramme: bfd gas gprof ld" +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" +msgstr "" =20 -#: gnu/packages/base.scm:363 +#: gnu/packages/web.scm:3073 msgid "" -"GNU Binutils is a collection of tools for working with binary files.\n" -"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= . Other\n" -"tools include programs to display binary profiling information, list th= e\n" -"strings in a binary file, and utilities for working with archives. The= \"bfd\"\n" -"library for working with executable and object formats is also included= ." +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." msgstr "" -"Die GNU Binutils sind eine Werkzeugsammlung zum Arbeiten mit Bin=C3=A4r= dateien.\n" -"Die erw=C3=A4hnenswertesten sind =C2=BBld=C2=AB, ein Linker, und =C2=BB= as=C2=AB, ein Assembler. Weitere\n" -"enthaltene Werkzeuge zeigen Profiling-Informationen an, listen die\n" -"Zeichenketten in einer Bin=C3=A4rdatei auf oder dienen der Arbeit mit A= rchiven.\n" -"Die =C2=BBbfd=C2=AB-Bibliothek zum Arbeiten mit ausf=C3=BChrbaren oder = Objektformaten\n" -"ist ebenfalls enthalten." =20 -#: gnu/packages/base.scm:504 -msgid "The GNU C Library" -msgstr "Die GNU C-Bibliothek" +#: gnu/packages/web.scm:3107 +msgid "HTML5 parsing library" +msgstr "" =20 -#: gnu/packages/base.scm:506 +#: gnu/packages/web.scm:3109 msgid "" -"Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" -"printf, exit...\n" -"\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" -"with the Linux kernel." +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." msgstr "" -"Jedes Unix-=C3=A4hnliche Betriebssystem braucht eine C-Bibliothek: Dies= ist die\n" -"Bibliothek, welche die =C2=BBSystemaufrufe=C2=AB und andere Grundfunkti= onen wie =C2=BBopen=C2=AB,\n" -"=C2=BBmalloc=C2=AB, =C2=BBprintf=C2=AB, =C2=BBexit=C2=AB usw. definiert= .\n" -"\n" -"Die GNU-C-Bibliothek wird als die C-Bibliothek im GNU-System sowie den = meisten\n" -"Systemen mit dem Linux-Kernel verwendet." =20 -#: gnu/packages/base.scm:575 -msgid "Database of current and historical time zones" -msgstr "Datenbank aktueller und historischer Zeitzonen" +#: gnu/packages/weechat.scm:98 +msgid "Extensible chat client" +msgstr "" =20 -#: gnu/packages/base.scm:576 +#: gnu/packages/weechat.scm:99 msgid "" -"The Time Zone Database (often called tz or zoneinfo)\n" -"contains code and data that represent the history of local time for man= y\n" -"representative locations around the globe. It is updated periodically t= o\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" -"and daylight-saving rules." +"WeeChat (Wee Enhanced Environment for Chat) is an\n" +"Internet Relay Chat client, which is designed to be light and fast.\n" +"The client uses a curses frontend, and there are remote interfaces\n" +"for Web, Qt, Android and Emacs. In WeeChat everything can be done\n" +"with a keyboard, though it also supports mouse. It is customizable\n" +"and extensible with plugins and scripts." msgstr "" -"Die Zeitzonen-Datenbank (oft =C2=BBtz=C2=AB oder =C2=BBzoneinfo=C2=AB g= enannt) enth=C3=A4lt Code\n" -"und Daten, welche den Verlauf der lokalen Zeit f=C3=BCr zahlreiche\n" -"repr=C3=A4sentative Orte rund um den Globus bereitstellen. Diese Daten = werden\n" -"regelm=C3=A4=C3=9Fig aktualisiert, um politisch begr=C3=BCndete =C3=84n= derungen der Zeitzonengrenzen,\n" -"Verschiebung gegen=C3=BCber der Weltzeit oder den Sommerzeit-Winterzeit= -Regelungen\n" -"zu reflektieren." =20 -#: gnu/packages/base.scm:1004 -msgid "GNU C++ standard library (intermediate)" +#: gnu/packages/wordnet.scm:79 +msgid "Lexical database for the English language" msgstr "" =20 -#: gnu/packages/base.scm:1098 -msgid "The linker wrapper" -msgstr "Der Linker-Wrapper" +#: gnu/packages/wordnet.scm:81 +msgid "" +"WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" +"each expressing a distinct concept. Synsets are interlinked by means o= f\n" +"conceptual-semantic and lexical relations. The resulting network of\n" +"meaningfully related words and concepts can be navigated with the brows= er.\n" +"WordNet is also freely and publicly available for download. WordNet's\= n" +"structure makes it a useful tool for computational linguistics and natu= ral\n" +"language processing." +msgstr "" + +#: gnu/packages/xiph.scm:66 +msgid "Library for manipulating the ogg multimedia format" +msgstr "" =20 -#: gnu/packages/base.scm:1100 +#: gnu/packages/xiph.scm:68 msgid "" -"The linker wrapper (or `ld-wrapper') wraps the linker to add any\n" -"missing `-rpath' flags, and to detect any misuse of libraries outside o= f the\n" -"store." +"The libogg library allows to manipulate the ogg multimedia container\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" +"audio and video data. In addition to encapsulation and interleaving of= \n" +"multiple data streams, ogg provides packet framing, error detection, an= d\n" +"periodic timestamps for seeking." msgstr "" =20 -#: gnu/packages/base.scm:1264 -msgid "Complete GCC tool chain for C/C++ development" -msgstr "Vollst=C3=A4ndige GCC-Werkzeugsammlung f=C3=BCr die Entwicklung = in C/C++" +#: gnu/packages/xiph.scm:92 +msgid "Library implementing the vorbis audio format" +msgstr "" =20 -#: gnu/packages/base.scm:1266 +#: gnu/packages/xiph.scm:94 msgid "" -"This package provides a complete GCC tool chain for C/C++ development t= o\n" -"be installed in user profiles. This includes GCC, as well as libc (hea= ders\n" -"and binaries, plus debugging symbols in the 'debug' output), and Binuti= ls." +"The libvorbis library implements the ogg vorbis audio format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit,= \n" +"polyphonic) audio and music at fixed and variable bitrates from 16 to\n= " +"128 kbps/channel." msgstr "" -"Dieses Paket bietet eine vollst=C3=A4ndige GCC-Werkzeugsammlung, die f=C3= =BCr die\n" -"C/C++-Entwicklung in Benutzerprofilen installiert werden kann. Enthalte= n sind\n" -"sowohl GCC als auch die libc (Header und Binaries sowie Debugging-Symbo= le in\n" -"der Debug-Ausgabe) und die Binutils." =20 -#: gnu/packages/guile.scm:99 gnu/packages/guile.scm:166 -msgid "Scheme implementation intended especially for extensions" -msgstr "Scheme-Implementation, die speziell f=C3=BCr Erweiterungen gedac= ht ist" +#: gnu/packages/xiph.scm:119 +msgid "Library implementing the Theora video format" +msgstr "" =20 -#: gnu/packages/guile.scm:101 gnu/packages/guile.scm:168 +#: gnu/packages/xiph.scm:121 msgid "" -"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" -"official extension language of the GNU system. It is an implementation= of\n" -"the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" -"without requiring the source code to be rewritten." +"The libtheora library implements the ogg theora video format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed video format." msgstr "" =20 -#: gnu/packages/guile.scm:211 -msgid "Framework for building readers for GNU Guile" +#: gnu/packages/xiph.scm:142 +msgid "Library for patent-free audio compression format" msgstr "" =20 -#: gnu/packages/guile.scm:213 +#: gnu/packages/xiph.scm:144 msgid "" -"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"GNU Speex is a patent-free audio compression codec specially designed\n= " +"for speech. It is well-adapted to internet applications, such as VoIP.= It\n" +"features compression of different bands in the same bitstream, intensit= y\n" +"stereo encoding, and voice activity detection." +msgstr "" + +#: gnu/packages/xiph.scm:174 +msgid "Cross platform audio library" +msgstr "" + +#: gnu/packages/xiph.scm:176 +msgid "" +"Libao is a cross-platform audio library that allows programs to\n" +"output audio using a simple API on a wide variety of platforms.\n" +"It currently supports:\n" +"Null output (handy for testing without a sound device),\n" +"WAV files,\n" +"AU files,\n" +"RAW files,\n" +"OSS (Open Sound System, used on Linux and FreeBSD),\n" +"ALSA (Advanced Linux Sound Architecture),\n" +"aRts (Analog RealTime Synth, used by KDE),\n" +"PulseAudio (next generation GNOME sound server),\n" +"esd (EsounD or Enlightened Sound Daemon),\n" +"Mac OS X,\n" +"Windows (98 and later),\n" +"AIX,\n" +"Sun/NetBSD/OpenBSD,\n" +"IRIX,\n" +"NAS (Network Audio Server),\n" +"RoarAudio (Modern, multi-OS, networked Sound System),\n" +"OpenBSD's sndio." +msgstr "" + +#: gnu/packages/xiph.scm:215 +msgid "Free lossless audio codec" +msgstr "" + +#: gnu/packages/xiph.scm:217 +msgid "" +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" +"meaning that audio is compressed in FLAC without any loss in quality." +msgstr "" + +#: gnu/packages/xiph.scm:243 +msgid "Karaoke and text codec for embedding in ogg" +msgstr "" + +#: gnu/packages/xiph.scm:245 +msgid "" +"Kate is an overlay codec, originally designed for karaoke and text,\n" +"that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" +"stream, and animated. Most of the time, this would be multiplexed with= \n" +"audio/video to carry subtitles, song lyrics (with or without karaoke da= ta),\n" +"etc., but doesn't have to be.\n" "\n" -"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wri= tten,\n" -"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" -"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-d= erived\n" -"document syntax.\n" +"Series of curves (splines, segments, etc.) may be attached to various\n= " +"properties (text position, font size, etc.) to create animated overlays= .\n" +"This allows scrolling or fading text to be defined. This can even be u= sed\n" +"to draw arbitrary shapes, so hand drawing can also be represented by a\= n" +"Kate stream." +msgstr "" + +#: gnu/packages/xiph.scm:279 +msgid "Ogg vorbis tools" +msgstr "" + +#: gnu/packages/xiph.scm:281 +msgid "" +"Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" +"general-purpose compressed audio format.\n" "\n" -"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" -"hopefully more powerful and flexible (for instance, one may instantiate= as\n" -"many readers as needed)." +"The package vorbis-tools contains\n" +"ogg123, an ogg vorbis command line audio player;\n" +"oggenc, the ogg vorbis encoder;\n" +"oggdec, a simple, portable command line decoder (to wav and raw);\n" +"ogginfo, to obtain information (tags, bitrate, length, etc.) about\n" +" an ogg vorbis file." msgstr "" =20 -#: gnu/packages/guile.scm:267 -msgid "Guile bindings to ncurses" -msgstr "Guile-Bindungen zu Ncurses" +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 +msgid "Versatile audio codec" +msgstr "" =20 -#: gnu/packages/guile.scm:269 +#: gnu/packages/xiph.scm:308 msgid "" -"guile-ncurses provides Guile language bindings for the ncurses\n" -"library." +"Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" +"but is also intended for storage and streaming applications. It is\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" +"incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." msgstr "" -"guile-ncurses stellt Guile-Sprachbindungen f=C3=BCr die ncurses-\n" -"Bibliothek bereit." =20 -#: gnu/packages/guile.scm:289 -msgid "Run jobs at scheduled times" -msgstr "Aufgaben planm=C3=A4=C3=9Fig ausf=C3=BChren" +#: gnu/packages/xiph.scm:342 +msgid "Command line utilities to encode, inspect, and decode .opus files= " +msgstr "" =20 -#: gnu/packages/guile.scm:291 +#: gnu/packages/xiph.scm:343 msgid "" -"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" -"Guile, so its configuration can be written in Scheme; the original cron= \n" -"format is also supported." +"Opus is a royalty-free, highly versatile audio codec.\n" +"Opus-tools provide command line utilities for creating, inspecting and\= n" +"decoding .opus files." msgstr "" -"GNU Mcron ist ein vollst=C3=A4ndiger Ersatz f=C3=BCr Vixie cron. Es wir= d dazu verwendet,\n" -"Aufgaben nach Plan ausf=C3=BChren zu lassen, zum Beispiel jede Stunde o= der jeden\n" -"Montag. Mcron ist in Guile geschrieben, so dass dessen Konfiguration in= Scheme\n" -"verwaltet werden kann. Das originale Cron-Format wird ebenfalls unterst= =C3=BCtzt." =20 -#: gnu/packages/guile.scm:319 -msgid "Collection of useful Guile Scheme modules" -msgstr "Sammlung n=C3=BCtzlicher Guile-Scheme-Modulen" +#: gnu/packages/xiph.scm:371 +msgid "" +"The opusfile library provides seeking, decode, and playback of Opus\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" +"windows systems." +msgstr "" + +#: gnu/packages/xiph.scm:401 +#, fuzzy +msgid "Streaming media server" +msgstr "Datenstromeditor" =20 -#: gnu/packages/guile.scm:321 +#: gnu/packages/xiph.scm:402 msgid "" -"guile-lib is intended as an accumulation place for pure-scheme Guile\n" -"modules, allowing for people to cooperate integrating their generic Gui= le\n" -"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" -"for Guile\"." +"Icecast is a streaming media server which currently supports\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" +"create an Internet radio station or a privately running jukebox and man= y\n" +"things in between." msgstr "" =20 -#: gnu/packages/guile.scm:352 -msgid "JSON module for Guile" -msgstr "JSON-Modul f=C3=BCr Guile" +#: gnu/packages/xiph.scm:430 +msgid "Audio streaming library for icecast encoders" +msgstr "" =20 -#: gnu/packages/guile.scm:354 +#: gnu/packages/xiph.scm:432 msgid "" -"Guile-json supports parsing and building JSON documents according to th= e\n" -"http:://json.org specification. These are the main features:\n" -"- Strictly complies to http://json.org specification.\n" -"- Build JSON documents programmatically via macros.\n" -"- Unicode support for strings.\n" -"- Allows JSON pretty printing." +"Libshout is a library for communicating with and sending data to an\n" +"icecast server. It handles the socket connection, the timing of the da= ta,\n" +"and prevents bad data from getting to the icecast server." msgstr "" =20 -#: gnu/packages/lout.scm:109 -msgid "Lout, a document layout system similar in style to LaTeX" -msgstr "Lout, ein Dokument-Layoutsystem =C3=A4hnlich LaTeX" +#: gnu/packages/zip.scm:57 +#, fuzzy +msgid "Compression and file packing utility" +msgstr "Dateien vergleichen und zusammenf=C3=BChren" =20 -#: gnu/packages/lout.scm:111 +#: gnu/packages/zip.scm:59 msgid "" -"The Lout document formatting system is now reads a high-level descripti= on of\n" -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" -"output file.\n" +"Zip is a compression and file packaging/archive utility. Zip is useful= \n" +"for packaging a set of files for distribution, for archiving files, and= for\n" +"saving disk space by temporarily compressing unused files or directorie= s.\n" +"Zip puts one or more compressed files into a single ZIP archive, along = with\n" +"information about the files (name, path, date, time of last modificatio= n,\n" +"protection, and check information to verify file integrity). An entire= \n" +"directory structure can be packed into a ZIP archive with a single comm= and.\n" "\n" -"Lout offers an unprecedented range of advanced features, including opti= mal\n" -"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" -"scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" -"hyphenation (most European languages are supported), formatting of comp= uter\n" -"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" -"extended with definitions which are very much easier to write than trof= f of\n" -"TeX macros because Lout is a high-level, purely functional language, th= e\n" -"outcome of an eight-year research project that went back to the\n" -"beginning." +"Zip has one compression method (deflation) and can also store files wit= hout\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" +"Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" =20 -#: gnu/packages/recutils.scm:58 -msgid "Manipulate plain text files as databases" -msgstr "Bearbeitung von Datenbanken in Form einfacher Textdateien" +#: gnu/packages/zip.scm:113 +msgid "Decompression and file extraction utility" +msgstr "" =20 -#: gnu/packages/recutils.scm:60 +#: gnu/packages/zip.scm:115 msgid "" -"GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" -"databases created with Recutils carry all of the expected features such= as\n" -"unique fields, primary keys, time stamps and more. Many different field= types\n" -"are supported, as is encryption." +"UnZip is an extraction utility for archives compressed in .zip format,\= n" +"also called \"zipfiles\".\n" +"\n" +"UnZip lists, tests, or extracts files from a .zip archive. The default= \n" +"behaviour (with no options) is to extract into the current directory, a= nd\n" +"subdirectories below it, all files from the specified zipfile. UnZip\n= " +"recreates the stored directory structure by default." +msgstr "" + +#: gnu/packages/zip.scm:149 +msgid "Library for accessing zip files" +msgstr "" + +#: gnu/packages/zip.scm:151 +msgid "ZZipLib is a library based on zlib for accessing zip files." +msgstr "" + +#: gnu/packages/zip.scm:169 +msgid "Provides an interface to ZIP archive files" +msgstr "" + +#: gnu/packages/zsh.scm:71 +msgid "Powerful shell for interactive use and scripting" +msgstr "" + +#: gnu/packages/zsh.scm:72 +msgid "" +"The Z shell (zsh) is a Unix shell that can be used\n" +"as an interactive login shell and as a powerful command interpreter\n" +"for shell scripting. Zsh can be thought of as an extended Bourne shell= \n" +"with a large number of improvements, including some features of bash,\n= " +"ksh, and tcsh." msgstr "" -"Die GNU Recutils sind eine Sammlung von Werkzeugen und Bibliotheken zum= \n" -"Erstellen und Bearbeiten textbasierter, menschenlesbarer Datenbanken. O= bwohl\n" -"rein textbasiert, bieten die mit Recutils erzeugten Datenbanken alles, = was Sie\n" -"von einer Datenbank erwarten, wie eindeutige Felder, Prim=C3=A4rschl=C3= =BCssel,\n" -"Zeitstempel und vieles mehr. Viele verschiedene Feldtypen sowie Verschl= =C3=BCsselung\n" -"werden unterst=C3=BCtzt." + +#~ msgid "Complete GCC tool chain for C/C++ development" +#~ msgstr "Vollst=C3=A4ndige GCC-Werkzeugsammlung f=C3=BCr die Entwicklu= ng in C/C++" + +#~ msgid "" +#~ "This package provides a complete GCC tool chain for C/C++ developmen= t to\n" +#~ "be installed in user profiles. This includes GCC, as well as libc " +#~ "(headers\n" +#~ "and binaries, plus debugging symbols in the 'debug' output), and Bin= utils." +#~ msgstr "" +#~ "Dieses Paket bietet eine vollst=C3=A4ndige GCC-Werkzeugsammlung, die= f=C3=BCr die\n" +#~ "C/C++-Entwicklung in Benutzerprofilen installiert werden kann. Entha= lten " +#~ "sind\n" +#~ "sowohl GCC als auch die libc (Header und Binaries sowie Debugging-Sy= mbole " +#~ "in\n" +#~ "der Debug-Ausgabe) und die Binutils." + +#~ msgid "Lout, a document layout system similar in style to LaTeX" +#~ msgstr "Lout, ein Dokument-Layoutsystem =C3=A4hnlich LaTeX" =20 #~ msgid "cannot access `~a': ~a~%" #~ msgstr "Zugriff auf =C2=BB~a=C2=AB nicht m=C3=B6glich: ~a~%" @@ -413,9 +11534,6 @@ msgstr "" #~ msgid "~A: package not found for version ~a~%" #~ msgstr "~A: Paket nicht gefunden f=C3=BCr Version ~a~%" =20 -#~ msgid "~A: unknown package~%" -#~ msgstr "~A: unbekanntes Paket~%" - #~ msgid "~a: not a number~%" #~ msgstr "~a: keine Zahl~%" =20 @@ -495,9 +11613,6 @@ msgstr "" #~ msgid "~a: unknown action~%" #~ msgstr "~a: unbekannte Aktion~%" =20 -#~ msgid "no configuration file specified~%" -#~ msgstr "Keine Konfigurationsdatei angegeben~%" - #~ msgid "signature verification failed for `~a'~%" #~ msgstr "Verifizierung der Signatur fehlgeschlagen f=C3=BCr =C2=BB~a=C2= =AB~%" =20 @@ -553,7 +11668,8 @@ msgstr "" #~ msgstr "Ung=C3=BCltiges Argument: ~a~%" =20 #~ msgid "Try `guix --help' for more information.~%" -#~ msgstr "Rufen Sie =C2=BBguix --help=C2=AB auf, um weitere Information= en zu erhalten.~%" +#~ msgstr "" +#~ "Rufen Sie =C2=BBguix --help=C2=AB auf, um weitere Informationen zu e= rhalten.~%" =20 #~ msgid "" #~ "Usage: guix COMMAND ARGS...\n" diff --git a/po/packages/eo.po b/po/packages/eo.po index 3c7505b..c88c08e 100644 --- a/po/packages/eo.po +++ b/po/packages/eo.po @@ -3,11 +3,12 @@ # This file is distributed under the same license as the guix package. # Felipe Castro , 2013, 2014, 2015. # +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix-packages 0.8.1\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2015-01-27 00:07+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2015-02-05 09:41-0300\n" "Last-Translator: Felipe Castro \n" "Language-Team: Esperanto \n" @@ -21,1922 +22,11245 @@ msgstr "" msgid "Word processing program" msgstr "Teksto-proceza programaro" =20 -#: gnu/packages/abiword.scm:103 +#. TRANSLATORS: Dear translator, We would like to inform you that packag= e +#. descriptions may occasionally include Texinfo markup. Texinfo markup +#. looks like "@code{rm -rf}", "@emph{important}", etc. When translatin= g, +#. please leave markup as is. +#: gnu/packages/abiword.scm:110 +#, fuzzy msgid "" -"AbiWord is a word processing program. It is rapidly becoming a state\n= " -"of the art word processor, with lots of features useful for your daily = work,\n" -"personal needs, or for just some good old typing fun." +"AbiWord is a word processing program. It is rapidly\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" +"your daily work, personal needs, or for just some good old typing fun." msgstr "" "AbiWord estas teksto-procezilo. =C4=9Ci rapide progresas al stato-de-l= a-arta\n" "teksto-procezilo, kun multe da distinga=C4=B5oj utilaj por via =C4=89iu= taga laboro,\n" "personaj bezonoj, a=C5=AD simple por iom da bona amuzi=C4=9Do per tajpa= do." =20 -#: gnu/packages/aspell.scm:42 +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 msgid "Spell checker" msgstr "Literumilo" =20 -#: gnu/packages/aspell.scm:44 +#: gnu/packages/aspell.scm:55 msgid "" "Aspell is a spell-checker which can be used either as a library or as\n= " -"a standalone program. Notable features of Aspell include its full supp= ort of\n" +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" "documents written in the UTF-8 encoding and its ability to use multiple= \n" "dictionaries, including personal ones." msgstr "" =20 -#: gnu/packages/aspell.scm:84 +#: gnu/packages/aspell.scm:95 msgid "This package provides a dictionary for the GNU Aspell spell check= er." msgstr "Tiu =C4=89i pako provizas vortaron por la literumilo GNU Aspell.= " =20 -#: gnu/packages/backup.scm:87 +#: gnu/packages/audio.scm:95 +msgid "Realtime modular synthesizer and effect processor" +msgstr "" + +#: gnu/packages/audio.scm:97 +msgid "" +"AlsaModularSynth is a digital implementation of a classical analog\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" +"e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" +"Filter) modules follow the convention of 1V / Octave." +msgstr "" + +#: gnu/packages/audio.scm:134 +#, fuzzy +msgid "Library for audio labelling" +msgstr "Biblioteko por trakti dosierojn PNG" + +#: gnu/packages/audio.scm:136 +msgid "" +"aubio is a tool designed for the extraction of annotations from audio\n= " +"signals. Its features include segmenting a sound file before each of i= ts\n" +"attacks, performing pitch detection, tapping the beat and producing MID= I\n" +"streams from live audio." +msgstr "" + +#: gnu/packages/audio.scm:228 +msgid "Digital audio workstation" +msgstr "" + +#: gnu/packages/audio.scm:230 +msgid "" +"Ardour is a multi-channel digital audio workstation, allowing users to\= n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" +"engineers, musicians, soundtrack editors and composers." +msgstr "" + +#: gnu/packages/audio.scm:262 +msgid "Tonewheel organ synthesizer" +msgstr "" + +#: gnu/packages/audio.scm:264 +msgid "" +"AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" +"with drawbars, distortion and rotating speakers. The organ has three\n= " +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" +"bass section with five drawbars. A standalone JACK application and LV2= \n" +"plugins are provided." +msgstr "" + +#: gnu/packages/audio.scm:301 +msgid "Audio plug-in pack for LV2 and JACK environments" +msgstr "" + +#: gnu/packages/audio.scm:303 +msgid "" +"Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" +"The suite contains lots of effects (delay, modulation, signal processin= g,\n" +"filters, equalizers, dynamics, distortion and mastering effects),\n" +"instruments (SF2 player, organ simulator and a monophonic synthesizer) = and\n" +"tools (analyzer, mono/stereo tools, crossovers)." +msgstr "" + +#: gnu/packages/audio.scm:346 +msgid "Sound and music computing system" +msgstr "" + +#: gnu/packages/audio.scm:348 +msgid "" +"Csound is a user-programmable and user-extensible sound processing\n" +"language and software synthesizer." +msgstr "" + +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 +msgid "C++ wrapper around the ALSA API" +msgstr "" + +#: gnu/packages/audio.scm:393 +msgid "" +"clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" +"ALSA PCM devices." +msgstr "" + +#: gnu/packages/audio.scm:428 +msgid "SoundFont synthesizer" +msgstr "" + +#: gnu/packages/audio.scm:430 +msgid "" +"FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" +"device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" +"also play midifiles using a Soundfont." +msgstr "" + +#: gnu/packages/audio.scm:462 +msgid "MPEG-4 and MPEG-2 AAC decoder" +msgstr "" + +#: gnu/packages/audio.scm:464 +msgid "" +"FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" +"PS, and DAB+." +msgstr "" + +#: gnu/packages/audio.scm:493 +msgid "Signal processing language" +msgstr "" + +#: gnu/packages/audio.scm:495 +msgid "Faust is a programming language for realtime audio signal process= ing." +msgstr "" + +#: gnu/packages/audio.scm:530 +msgid "GUS compatible patches for MIDI players" +msgstr "" + +#: gnu/packages/audio.scm:532 +msgid "" +"FreePats is a project to create a free and open set of GUS compatible\n= " +"patches that can be used with softsynths such as Timidity and WildMidi.= " +msgstr "" + +#: gnu/packages/audio.scm:585 +msgid "Virtual guitar amplifier" +msgstr "" + +#: gnu/packages/audio.scm:586 +msgid "" +"Guitarix is a virtual guitar amplifier running JACK.\n" +"Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" +"routed separately and deliver a processed stereo-signal via JACK. You = may\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" +"from a simple noise gate to modulation effects like flanger, phaser or\= n" +"auto-wah." +msgstr "" + +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" +msgstr "" + +#: gnu/packages/audio.scm:634 +msgid "" +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." +msgstr "" + +#: gnu/packages/audio.scm:678 +msgid "LV2 convolution reverb" +msgstr "" + +#: gnu/packages/audio.scm:680 +msgid "" +"IR is a low-latency, real-time, high performance signal convolver\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" +"2 or 4 channels, in any soundfile format supported by libsndfile." +msgstr "" + +#: gnu/packages/audio.scm:710 +msgid "JACK audio connection kit" +msgstr "" + +#: gnu/packages/audio.scm:712 +msgid "" +"JACK is a low-latency audio server. It can connect a number of\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" +"in that it has been designed from the ground up to be suitable for\n" +"professional audio work. This means that it focuses on two key areas:\= n" +"synchronous execution of all clients, and low latency operation." +msgstr "" + +#: gnu/packages/audio.scm:810 +msgid "Simple LV2 host for JACK" +msgstr "" + +#: gnu/packages/audio.scm:812 +msgid "" +"Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" +"plugins and exposes their ports as JACK ports, essentially making any L= V2\n" +"plugin function as a JACK application." +msgstr "" + +#: gnu/packages/audio.scm:855 +msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" +msgstr "" + +#: gnu/packages/audio.scm:857 +msgid "" +"LADSPA is a standard that allows software audio processors and effects\= n" +"to be plugged into a wide range of audio synthesis and recording packag= es." +msgstr "" + +#: gnu/packages/audio.scm:893 +msgid "Audio application session manager" +msgstr "" + +#: gnu/packages/audio.scm:895 +msgid "" +"LASH is a session management system for audio applications. It allows\= n" +"you to save and restore audio sessions consisting of multiple interconn= eced\n" +"applications, restoring program state (i.e. loaded patches) and the\n" +"connections between them." +msgstr "" + +#: gnu/packages/audio.scm:916 +msgid "Bauer stereophonic-to-binaural DSP" +msgstr "" + +#: gnu/packages/audio.scm:918 +msgid "" +"The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" +"for headphone prolonged listening to disable superstereo fatigue withou= t\n" +"essential distortions." +msgstr "" + +#: gnu/packages/audio.scm:943 +#, fuzzy +msgid "Implementation of the Open Sound Control protocol" +msgstr "Realigo de Scheme kaj rilataj program-lingvoj" + +#: gnu/packages/audio.scm:945 +msgid "" +"liblo is a lightweight library that provides an easy to use\n" +"implementation of the Open Sound Control (OSC) protocol." +msgstr "" + +#: gnu/packages/audio.scm:982 +msgid "Library to simplify use of LV2 plugins in applications" +msgstr "" + +#: gnu/packages/audio.scm:984 +msgid "" +"Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" +"for applications. Lilv is the successor to SLV2, rewritten to be\n" +"significantly faster and have minimal dependencies." +msgstr "" + +#: gnu/packages/audio.scm:1011 +msgid "LV2 audio plugin specification" +msgstr "" + +#: gnu/packages/audio.scm:1013 +msgid "" +"LV2 is an open specification for audio plugins and host applications.\n= " +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" +"add functionality to support the needs of increasingly powerful audio\n= " +"software." +msgstr "" + +#: gnu/packages/audio.scm:1048 +msgid "LV2 port of the mda Piano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1049 +msgid "An LV2 port of the mda Piano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1062 +msgid "LV2 port of the mda EPiano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1063 +msgid "An LV2 port of the mda EPiano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1101 +msgid "C++ libraries for LV2 plugins" +msgstr "" + +#: gnu/packages/audio.scm:1103 +msgid "" +"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " +"extensions into easy to use C++ classes. It is the successor of\n" +"lv2-c++-tools." +msgstr "" + +#: gnu/packages/audio.scm:1144 +msgid "3D audio API" +msgstr "3D-sona API" + +#: gnu/packages/audio.scm:1146 +msgid "" +"OpenAL provides capabilities for playing audio in a virtual 3D\n" +"environment. Distance attenuation, doppler shift, and directional soun= d\n" +"emitters are among the features handled by the API. More advanced effe= cts,\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" +"buffers, and audio capture." +msgstr "" + +#: gnu/packages/audio.scm:1180 +msgid "Modular patch bay for audio and MIDI systems" +msgstr "" + +#: gnu/packages/audio.scm:1182 +msgid "" +"Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" +"and ALSA." +msgstr "" + +#: gnu/packages/audio.scm:1207 +msgid "Real-time audio utility library" +msgstr "" + +#: gnu/packages/audio.scm:1209 +msgid "" +"Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" +"aimed at audio/musical applications." +msgstr "" + +#: gnu/packages/audio.scm:1235 +msgid "Audio time-stretching and pitch-shifting library" +msgstr "" + +#: gnu/packages/audio.scm:1237 +msgid "" +"Rubber Band is a library and utility program that permits changing the\= n" +"tempo and pitch of an audio recording independently of one another." +msgstr "" + +#: gnu/packages/audio.scm:1285 +#, fuzzy +msgid "Cross-platform MIDI library for C++" +msgstr "Plursistema son-biblioteko" + +#: gnu/packages/audio.scm:1287 +msgid "" +"RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " +"classes) that provide a common cross-platform API for realtime MIDI\n" +"input/output." +msgstr "" + +#: gnu/packages/audio.scm:1313 +msgid "Library for serialising LV2 atoms to/from RDF" +msgstr "" + +#: gnu/packages/audio.scm:1315 +msgid "" +"Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" +"the Turtle syntax." +msgstr "" + +#: gnu/packages/audio.scm:1340 +msgid "Library for loading and wrapping LV2 plugin UIs" +msgstr "" + +#: gnu/packages/audio.scm:1342 +msgid "" +"Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" +"\n" +"Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" +"toolkit. The API is designed such that hosts do not need to explicitly= \n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" +"that toolkit will work in all hosts that use Suil automatically.\n" +"\n" +"Suil currently supports every combination of Gtk 2, Qt 4, and X11." +msgstr "" + +#: gnu/packages/audio.scm:1399 +msgid "Software synthesizer for playing MIDI files" +msgstr "" + +#: gnu/packages/audio.scm:1401 +msgid "" +"TiMidity++ is a software synthesizer. It can play MIDI files by\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" +"disks as various audio file formats." +msgstr "" + +#: gnu/packages/audio.scm:1440 +msgid "Modular and extensible audio processing system" +msgstr "" + +#: gnu/packages/audio.scm:1442 +msgid "" +"Vamp is an audio processing plugin system for plugins that extract\n" +"descriptive information from audio data =E2=80=94 typically referred to= as audio\n" +"analysis plugins or audio feature extraction plugins." +msgstr "" + +#: gnu/packages/audio.scm:1481 +msgid "Library for time stretching and pitch scaling of audio" +msgstr "" + +#: gnu/packages/audio.scm:1483 +msgid "" +"SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" +"stretching and pitch scaling of audio. This package contains the libra= ry." +msgstr "" + +#: gnu/packages/audio.scm:1506 +#, fuzzy +msgid "Hybrid lossless audio codec" +msgstr "Libera senperda sona kodeko" + +#: gnu/packages/audio.scm:1508 +msgid "" +"WavPack is an audio compression format with lossless, lossy and hybrid\= n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" +"encode and decode wavpack files." +msgstr "" + +#: gnu/packages/audio.scm:1527 +msgid "Mod file playing library" +msgstr "" + +#: gnu/packages/audio.scm:1529 +msgid "" +"Libmodplug renders mod music files as raw audio data, for playing or\n" +"conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" +"surround and reverb." +msgstr "" + +#: gnu/packages/audio.scm:1548 +msgid "Module player library" +msgstr "" + +#: gnu/packages/audio.scm:1550 +msgid "" +"Libxmp is a library that renders module files to PCM data. It supports= \n" +"over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" +"Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " +msgstr "" + +#: gnu/packages/audio.scm:1573 +msgid "Extended module player" +msgstr "" + +#: gnu/packages/audio.scm:1575 +msgid "" +"Xmp is a portable module player that plays over 90 mainstream and\n" +"obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" +"Tracker 3 S3M and Impulse Tracker IT files." +msgstr "" + +#: gnu/packages/audio.scm:1607 +msgid "Audio processing library for changing tempo, pitch and playback r= ate" +msgstr "" + +#: gnu/packages/audio.scm:1609 +msgid "" +"SoundTouch is an audio processing library for changing the tempo, pitch= \n" +"and playback rates of audio streams or audio files. It is intended for= \n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" +"control functionality, or just for playing around with the sound effect= s." +msgstr "" + +#: gnu/packages/audio.scm:1646 +msgid "Sound processing utility" +msgstr "" + +#: gnu/packages/audio.scm:1648 +msgid "" +"SoX (Sound eXchange) is a command line utility that can convert\n" +"various formats of computer audio files to other formats. It can also\= n" +"apply various effects to these sound files, and, as an added bonus, SoX= \n" +"can play and record audio files." +msgstr "" + +#: gnu/packages/audio.scm:1671 +msgid "One-dimensional sample-rate conversion library" +msgstr "" + +#: gnu/packages/audio.scm:1673 +msgid "" +"The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" +"conversion. It may be used, for example, to resample PCM-encoded audio= ." +msgstr "" + +#: gnu/packages/audio.scm:1695 +msgid "MPEG Audio Layer 2 (MP2) encoder" +msgstr "" + +#: gnu/packages/audio.scm:1697 +msgid "" +"TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" +"tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" +"portions of LAME." +msgstr "" + +#: gnu/packages/audio.scm:1737 +msgid "Audio I/O library" +msgstr "" + +#: gnu/packages/audio.scm:1739 +msgid "" +"PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" +"interface." +msgstr "" + +#: gnu/packages/audio.scm:1762 +#, fuzzy +msgid "Graphical user interface for FluidSynth" +msgstr "Grafikinterfacon por =C5=9Dak-programarojn" + +#: gnu/packages/audio.scm:1764 +msgid "" +"Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" +"synthesizer written in C++." +msgstr "" + +#: gnu/packages/audio.scm:1802 +msgid "Networked audio system" +msgstr "" + +#: gnu/packages/audio.scm:1804 +msgid "" +"RSound allows you to send audio from an application and transfer it\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" +"with a much different focus than most other audio daemons." +msgstr "" + +#: gnu/packages/audio.scm:1835 +msgid "JACK audio frequency analyzer and display" +msgstr "" + +#: gnu/packages/audio.scm:1837 +msgid "" +"XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" +"result." +msgstr "" + +#: gnu/packages/audio.scm:1883 +msgid "Fast, partitioned convolution engine library" +msgstr "" + +#: gnu/packages/audio.scm:1885 +msgid "" +"Zita convolver is a C++ library providing a real-time convolution\n" +"engine." +msgstr "" + +#: gnu/packages/audio.scm:1930 +#, fuzzy +msgid "C++ library for resampling audio signals" +msgstr "Biblioteko por aliri zip-dosierojn" + +#: gnu/packages/audio.scm:1932 +msgid "" +"Libzita-resampler is a C++ library for resampling audio signals. It is= \n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" +"provide high-quality sample rate conversion." +msgstr "" + +#: gnu/packages/audio.scm:1978 +msgid "" +"Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" +"access to ALSA PCM devices, taking care of the many functions required = to\n" +"open, initialise and use a hw: device in mmap mode, and providing float= ing\n" +"point audio data." +msgstr "" + +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" + +#: gnu/packages/audio.scm:2010 +msgid "" +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." +msgstr "" + +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" + +#: gnu/packages/audio.scm:2030 +msgid "" +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 msgid "Encrypted backup using rsync algorithm" msgstr "=C4=88ifrita savkopio uzanta algoritmon rsync" =20 -#: gnu/packages/backup.scm:89 +#: gnu/packages/backup.scm:94 +msgid "" +"Duplicity backs up directories by producing encrypted tar-format volume= s\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" +"librsync, the incremental archives are space efficient and only record = the\n" +"parts of files that have changed since the last backup. Because duplic= ity\n" +"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" +"spying and/or modification by the server." +msgstr "" + +#: gnu/packages/backup.scm:128 +msgid "Simple incremental backup tool" +msgstr "Simpla alkrementa savkopiilo" + +#: gnu/packages/backup.scm:130 +msgid "" +"Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" +"backup scheduling is done by means of a cron job. It supports an\n" +"include/exclude mechanism, remote backups, encrypted backups and split\= n" +"backups (called chunks) to allow easy burning to CD/DVD." +msgstr "" + +#: gnu/packages/backup.scm:185 +msgid "Multi-format archive and compression library" +msgstr "Mult-forma biblioteko por ar=C4=A5ivi kaj densigi" + +#: gnu/packages/backup.scm:187 +msgid "" +"Libarchive provides a flexible interface for reading and writing\n" +"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" +"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" +"serially iterate through the archive, writers serially add things to th= e\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" +"random access nor for in-place modification." +msgstr "" + +#: gnu/packages/backup.scm:250 +msgid "Provide a list of files to backup" +msgstr "Provizas liston da dosieroj por savkopii" + +#: gnu/packages/backup.scm:252 +msgid "" +"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" +"Rdup itself does not backup anything, it only print a list of absolute\= n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" +"list and implement the backup strategy." +msgstr "" + +#: gnu/packages/backup.scm:282 +msgid "Tar-compatible archiver" +msgstr "Ar=C4=A5ivilo kongrua al tar" + +#: gnu/packages/backup.scm:284 +msgid "" +"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" +"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" +"errors." +msgstr "" + +#: gnu/packages/backup.scm:312 +msgid "Local/remote mirroring+incremental backup" +msgstr "Loka/demalproksima spegula+alkrementa savkopio" + +#: gnu/packages/backup.scm:314 +msgid "" +"Rdiff-backup backs up one directory to another, possibly over a network= .\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" +"diffs are stored in a special subdirectory of that target directory, so= you\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" +"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" +"modification times, extended attributes, acls, and resource forks. Als= o,\n" +"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" +"rdiff-backup is easy to use and settings have sensible defaults." +msgstr "" + +#: gnu/packages/backup.scm:353 +msgid "Deduplicating backup program" +msgstr "" + +#: gnu/packages/backup.scm:354 +msgid "" +"Attic is a deduplicating backup program. The main goal of\n" +"Attic is to provide an efficient and secure way to backup data. The da= ta\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" +"changes are stored." +msgstr "" + +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 +msgid "Hello, GNU world: An example GNU package" +msgstr "Saluton, mondo GNU: ekzemplo de pako GNU" + +#: gnu/packages/base.scm:68 +msgid "" +"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" +"command-line arguments, multiple languages, and so on." +msgstr "" +"GNU Hello montras la mesa=C4=9Don \"Hello, world!\" kaj fini=C4=9Das. = =C4=9Ci\n" +"funkcias kiel ekzemplo de norma kodumada tradicio de GNU. Tiel, =C4=9D= i " +"subtenas\n" +"komand-liniajn argumentojn, plurajn lingvojn, kaj tiel plu." + +#: gnu/packages/base.scm:89 +msgid "Print lines matching a pattern" +msgstr "Montri liniojn kongruajn al =C5=9Dablono" + +#: gnu/packages/base.scm:91 +msgid "" +"grep is a tool for finding text inside files. Text is found by\n" +"matching a pattern provided by the user in one or many files. The patt= ern\n" +"may be provided as a basic or extended regular expression, or as fixed\= n" +"strings. By default, the matching text is simply printed to the screen= ,\n" +"however the output can be greatly customized to include, for example, l= ine\n" +"numbers. GNU grep offers many extensions over the standard utility,\n" +"including, for example, recursive directory searching." +msgstr "" +"grep estas ilo por trovi tekstojn interne de dosieroj. Teksto estas " +"trovita\n" +"per kongruo al =C5=9Dablono indikita de la uzanto en unu a=C5=AD pluraj= dosieroj.\n" +"La =C5=9Dablono povas esti indikata kiel bazan a=C5=AD etenditan regul-= esprimon, a=C5=AD\n" +"kiel fiksajn =C4=89enojn. Apriore, la kongruita teksto estas simple mo= ntrata\n" +"en la ekrano, tamen la eligo povas esti ege personigita por inkluzivigi= ,\n" +"ekzemple, lini-numerojn. GNU grep oferaj multajn aldonojn kompare al l= a\n" +"originala aplika=C4=B5o, inkluzive, ekzemple, rikuran ser=C4=89adon en = dosierujoj." + +#: gnu/packages/base.scm:114 +msgid "Stream editor" +msgstr "Flu-redaktilo" + +#: gnu/packages/base.scm:129 +msgid "" +"Sed is a non-interactive, text stream editor. It receives a text\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" +"is often used for substituting text patterns in a stream. The GNU\n" +"implementation offers several extensions over the standard utility." +msgstr "" +"Sed estas ne-interaga, teksta flu-redaktilo. =C4=9Ci ricevas tekstan\n= " +"enigon el dosiero a=C5=AD=C2=A0el la =C4=89efenigujo kaj tiam =C4=9Di a= plikas serion da teksto-" +"redaktaj komandoj al la fluo kaj montras sian eligon en la =C4=89efelig= ujo. \n" +"=C4=9Ci estas ofte uzata por anstata=C5=ADigi teksto-=C5=9Dablonojn en = fluo. La GNU-a \n" +"realigo oferas plurajn aldonojn kompare al la ordinara aplika=C4=B5o." + +#: gnu/packages/base.scm:152 +msgid "Managing tar archives" +msgstr "Administrado de ar=C4=A5ivoj tar" + +#: gnu/packages/base.scm:154 +msgid "" +"Tar provides the ability to create tar archives, as well as the\n" +"ability to extract, update or list files in an existing archive. It is= \n" +"useful for combining many files into one larger file, while maintaining= \n" +"directory structure and file information such as permissions and\n" +"creation/modification dates. GNU tar offers many extensions over the\n= " +"standard utility." +msgstr "" +"Tar aldonas la eblecon krei ar=C4=A5ivojn tar, kaj anka=C5=AD la ebleco= n\n" +"eltiri, =C4=9Disdatigi a=C5=AD listigi dosierojn en ekzistanta ar=C4=A5= ivo. =C4=9Ci estas\n" +"utila por kombini multajn dosierojn en unu granda dosiero, tenante\n" +"dosierujan strukturon kaj dosierinformojn kiel permesojn kaj\n" +"dato de kreo/modifo. GNU tar oferas multajn aldonojn kompare\n" +"al la ordinara aplika=C4=B5o." + +#: gnu/packages/base.scm:177 +msgid "Apply differences to originals, with optional backups" +msgstr "Apliki malsamojn al originaloj, kun nedevigaj savkopioj" + +#: gnu/packages/base.scm:179 +msgid "" +"Patch is a program that applies changes to files based on differences\n= " +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" +"files depending on the contents of the diff file. It accepts several\n= " +"different diff formats. It may also be used to revert previously appli= ed\n" +"differences." +msgstr "" + +#: gnu/packages/base.scm:199 +msgid "Comparing and merging files" +msgstr "Komparo kaj kunmikso de dosieroj" + +#: gnu/packages/base.scm:201 +msgid "" +"GNU Diffutils is a package containing tools for finding the\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" +"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" +"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" +"interactive means to merge two files." +msgstr "" + +#: gnu/packages/base.scm:234 +msgid "Operating on files matching given criteria" +msgstr "Operacio sur dosieroj kongruantaj al indikita kriterio" + +#: gnu/packages/base.scm:236 +msgid "" +"Findutils supplies the basic file directory searching utilities of the\= n" +"GNU system. It consists of two primary searching utilities: \"find\"\n= " +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" +"used to apply commands with arbitrarily long arguments." +msgstr "" + +#: gnu/packages/base.scm:300 +msgid "Core GNU utilities (file, text, shell)" +msgstr "Nukleaj utila=C4=B5oj GNU (file, text, shell)" + +#: gnu/packages/base.scm:302 +msgid "" +"GNU Coreutils includes all of the basic command-line tools that are\n" +"expected in a POSIX system. These provide the basic file, shell and te= xt\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" +"functionality beyond that which is outlined in the POSIX standard." +msgstr "" + +#: gnu/packages/base.scm:344 +msgid "Remake files automatically" +msgstr "Reprocezi dosierojn a=C5=ADtomate" + +#: gnu/packages/base.scm:346 +msgid "" +"Make is a program that is used to control the production of\n" +"executables or other files from their source files. The process is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" +"generated from its source. It has powerful dependency resolution and t= he\n" +"ability to determine when files have to be regenerated after their sour= ces\n" +"change. GNU make offers many powerful extensions over the standard uti= lity." +msgstr "" + +#: gnu/packages/base.scm:391 +msgid "Binary utilities: bfd gas gprof ld" +msgstr "Duumaj utila=C4=B5oj: bfd gas gprof ld" + +#: gnu/packages/base.scm:393 +msgid "" +"GNU Binutils is a collection of tools for working with binary files.\n" +"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" +"Other tools include programs to display binary profiling information, l= ist\n" +"the strings in a binary file, and utilities for working with archives. = The\n" +"\"bfd\" library for working with executable and object formats is also\= n" +"included." +msgstr "" + +#: gnu/packages/base.scm:458 +msgid "The linker wrapper" +msgstr "La ligila =C4=89irka=C5=ADanto" + +#: gnu/packages/base.scm:460 +msgid "" +"The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" +"store." +msgstr "" + +#: gnu/packages/base.scm:637 +msgid "The GNU C Library" +msgstr "La Biblioteko GNU C" + +#: gnu/packages/base.scm:639 +msgid "" +"Any Unix-like operating system needs a C library: the library which\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" +"printf, exit...\n" +"\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" +"with the Linux kernel." +msgstr "" + +#: gnu/packages/base.scm:670 +msgid "All the locales supported by the GNU C Library" +msgstr "" + +#: gnu/packages/base.scm:672 +msgid "" +"This package provides all the locales supported by the GNU C Library,\n= " +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" +"the 'share/locale' sub-directory of this package." +msgstr "" + +#: gnu/packages/base.scm:740 +msgid "Small sample of UTF-8 locales" +msgstr "" + +#: gnu/packages/base.scm:742 +msgid "" +"This package provides a small sample of UTF-8 locales mostly useful in\= n" +"test environments." +msgstr "" + +#: gnu/packages/base.scm:760 +msgid "Find full path of shell commands" +msgstr "" + +#: gnu/packages/base.scm:762 +msgid "" +"The which program finds the location of executables in PATH, with a\n" +"variety of options. It is an alternative to the shell \"type\" built-i= n\n" +"command." +msgstr "" + +#: gnu/packages/base.scm:832 +#, fuzzy +msgid "The GNU C Library (GNU Hurd variant)" +msgstr "La Biblioteko GNU C" + +#: gnu/packages/base.scm:934 +msgid "Database of current and historical time zones" +msgstr "Datumbazo de nuna kaj pasintaj temp-zonoj" + +#: gnu/packages/base.scm:935 +msgid "" +"The Time Zone Database (often called tz or zoneinfo)\n" +"contains code and data that represent the history of local time for man= y\n" +"representative locations around the globe. It is updated periodically = to\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" +"and daylight-saving rules." +msgstr "" + +#: gnu/packages/bittorrent.scm:90 +msgid "Fast and easy BitTorrent client" +msgstr "Rapida kaj facila kliento por BitTorrent" + +#: gnu/packages/bittorrent.scm:92 +msgid "" +"Transmission is a BitTorrent client that comes with graphical,\n" +"textual, and Web user interfaces. Transmission also has a daemon for\n= " +"unattended operations. It supports local peer discovery, full encrypti= on,\n" +"DHT, =C2=B5TP, PEX and Magnet Links." +msgstr "" + +#: gnu/packages/bittorrent.scm:124 +msgid "BitTorrent library of rtorrent" +msgstr "Biblioteko BitTorrent de rTorrent" + +#: gnu/packages/bittorrent.scm:126 +msgid "" +"LibTorrent is a BitTorrent library used by and developed in parallel\n" +"with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" +"speed and efficiency." +msgstr "" + +#: gnu/packages/bittorrent.scm:153 +msgid "BitTorrent client with ncurses interface" +msgstr "Kliento BitTorrent kun interfaco ncurses" + +#: gnu/packages/bittorrent.scm:155 +msgid "" +"rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" +"full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" +"XML-RPC over SCGI." +msgstr "" + +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + +#: gnu/packages/certs.scm:65 +msgid "Python script to extract .pem data from certificate collection" +msgstr "" + +#: gnu/packages/certs.scm:67 +msgid "" +"certdata2pem.py is a Python script to transform X.509 certificate\n" +"\"source code\" as contained, for example, in the Mozilla sources, into= \n" +".pem formatted certificates." +msgstr "" + +#: gnu/packages/certs.scm:124 +msgid "CA certificates from Mozilla" +msgstr "" + +#: gnu/packages/certs.scm:126 +msgid "" +"This package provides certificates for Certification Authorities (CA)\n= " +"taken from the NSS package and thus ultimately from the Mozilla project= ." +msgstr "" + +#: gnu/packages/compression.scm:75 +#, fuzzy +msgid "Compression library" +msgstr "Datumar-fonta abstrakta biblioteko" + +#: gnu/packages/compression.scm:77 +msgid "" +"zlib is designed to be a free, general-purpose, legally unencumbered --= \n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" +"use on virtually any computer hardware and operating system. The zlib = data\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" +"triple the file size in extreme cases.) zlib's memory footprint is als= o\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" +"in compression." +msgstr "" + +#: gnu/packages/compression.scm:102 +msgid "Replacement for Sun's 'jar' utility" +msgstr "" + +#: gnu/packages/compression.scm:104 +msgid "" +"FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" +"utility. Instead of being written in Java, FastJar is written in C." +msgstr "" + +#: gnu/packages/compression.scm:122 +#, fuzzy +msgid "C library for manipulating POSIX tar files" +msgstr "Biblioteko por trakti dosierojn PNG" + +#: gnu/packages/compression.scm:124 +msgid "" +"libtar is a C library for manipulating POSIX tar files. It handles\n" +"adding and extracting files to/from a tar archive." +msgstr "" + +#: gnu/packages/compression.scm:141 +msgid "General file (de)compression (using lzw)" +msgstr "" + +#: gnu/packages/compression.scm:146 +msgid "" +"GNU Gzip provides data compression and decompression utilities; the\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" +"\".tar.gz\" or \".tgz\", etc." +msgstr "" + +#: gnu/packages/compression.scm:222 +msgid "High-quality data compression program" +msgstr "" + +#: gnu/packages/compression.scm:224 +msgid "" +"bzip2 is a freely available, patent free (see below), high-quality data= \n" +"compressor. It typically compresses files to within 10% to 15% of the = best\n" +"available techniques (the PPM family of statistical compressors), whils= t\n" +"being around twice as fast at compression and six times faster at\n" +"decompression." +msgstr "" + +#: gnu/packages/compression.scm:254 +#, fuzzy +msgid "Parallel bzip2 implementation" +msgstr "Kompleta realigo de =C5=9Dako" + +#: gnu/packages/compression.scm:256 +msgid "" +"Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" +"compressed with pbzip2 can be decompressed with bzip2)." +msgstr "" + +#: gnu/packages/compression.scm:277 +msgid "General-purpose data compression" +msgstr "" + +#: gnu/packages/compression.scm:279 +msgid "" +"XZ Utils is free general-purpose data compression software with high\n" +"compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" +"\n" +"The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" +"been modified quite a lot to be suitable for XZ Utils. The primary\n" +"compression algorithm is currently LZMA2, which is used inside the .xz\= n" +"container format. With typical files, XZ Utils create 30 % smaller out= put\n" +"than gzip and 15 % smaller output than bzip2." +msgstr "" + +#: gnu/packages/compression.scm:307 +msgid "Data compression library suitable for real-time data de-/compress= ion" +msgstr "" + +#: gnu/packages/compression.scm:309 +msgid "" +"LZO is a data compression library which is suitable for data\n" +"de-/compression in real-time. This means it favours speed over\n" +"compression ratio.\n" +"\n" +"LZO is written in ANSI C. Both the source code and the compressed data= \n" +"format are designed to be portable across platforms." +msgstr "" + +#: gnu/packages/compression.scm:332 +#, fuzzy +msgid "Compress or expand files" +msgstr "Utila=C4=B5o por densigi kaj pakigi dosierojn" + +#: gnu/packages/compression.scm:334 +msgid "" +"Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" +"some compression ratio)." +msgstr "" + +#: gnu/packages/compression.scm:353 +msgid "Lossless data compressor based on the LZMA algorithm" +msgstr "" + +#: gnu/packages/compression.scm:355 +msgid "" +"Lzip is a lossless data compressor with a user interface similar to the= \n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" +"archiving. Lzip is a clean implementation of the LZMA algorithm." +msgstr "" + +#: gnu/packages/compression.scm:387 +msgid "Archives in shell scripts, uuencode/uudecode" +msgstr "" + +#: gnu/packages/compression.scm:389 +msgid "" +"GNU sharutils is a package for creating and manipulating shell\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" +"This package is mostly for compatibility and historical interest." +msgstr "" + +#: gnu/packages/compression.scm:420 +#, fuzzy +msgid "Library for SoundFont decompression" +msgstr "Biblioteko por senpatenta sondensiga formo" + +#: gnu/packages/compression.scm:422 +msgid "" +"SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" +"with the sfArk algorithm." +msgstr "" + +#: gnu/packages/compression.scm:454 +msgid "Basic sfArk decompressor" +msgstr "" + +#: gnu/packages/compression.scm:455 +msgid "" +"SfArk extractor converts SoundFonts in the compressed legacy\n" +"sfArk file format to the uncompressed sf2 format." +msgstr "" + +#: gnu/packages/compression.scm:472 +msgid "Compression tools for some formats used by Microsoft" +msgstr "" + +#: gnu/packages/compression.scm:474 +msgid "" +"The purpose of libmspack is to provide both compression and\n" +"decompression of some loosely related file formats used by Microsoft." +msgstr "" + +#: gnu/packages/compression.scm:493 +msgid "Low-level interface to bzip2 compression library" +msgstr "" + +#: gnu/packages/compression.scm:494 +msgid "" +"This module provides a Perl interface to the bzip2\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:528 +#, fuzzy +msgid "Low-level interface to zlib compression library" +msgstr "Interfaco C++ por la alirebla biblioteko ATK" + +#: gnu/packages/compression.scm:529 +msgid "" +"This module provides a Perl interface to the zlib\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:550 +msgid "IO Interface to compressed files/buffers" +msgstr "" + +#: gnu/packages/compression.scm:551 +msgid "" +"IO-Compress provides a Perl interface to allow reading and\n" +"writing of compressed data created with the zlib and bzip2 libraries." +msgstr "" + +#: gnu/packages/compression.scm:577 +msgid "Compression algorithm focused on speed" +msgstr "" + +#: gnu/packages/compression.scm:578 +msgid "" +"LZ4 is a lossless compression algorithm, providing\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" +"time for compression ratio." +msgstr "" + +#: gnu/packages/compression.scm:618 +msgid "Tools to create and extract squashfs filesystems" +msgstr "" + +#: gnu/packages/compression.scm:620 +msgid "" +"Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" +"zlib to compress files, inodes, and directories. All blocks are packed= to\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" +"It is intended to be used for archival use, for live CDs, and for embed= ded\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" +"extract such filesystems." +msgstr "" + +#: gnu/packages/compression.scm:657 +#, fuzzy +msgid "Parallel implementation of gzip" +msgstr "Kompleta realigo de =C5=9Dako" + +#: gnu/packages/compression.scm:659 +msgid "" +"This package provides a parallel implementation of gzip that exploits\n= " +"multiple processors and multiple cores when compressing data." +msgstr "" + +#: gnu/packages/compression.scm:683 +msgid "Parallel indexing implementation of LZMA" +msgstr "" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 +msgid "Berkeley database" +msgstr "Datumbazo de Berkeley" + +#: gnu/packages/databases.scm:124 +msgid "" +"Berkeley DB is an embeddable database allowing developers the choice of= \n" +"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +msgstr "" + +#: gnu/packages/databases.scm:198 +msgid "Fast, easy to use, and popular database" +msgstr "Rapida, faciluzebla, kaj populara datumbazo" + +#: gnu/packages/databases.scm:200 +msgid "" +"MySQL is a fast, reliable, and easy to use relational database\n" +"management system that supports the standardized Structured Query\n" +"Language." +msgstr "" + +#: gnu/packages/databases.scm:267 +msgid "SQL database server" +msgstr "" + +#: gnu/packages/databases.scm:269 +msgid "" +"MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" +"as a drop-in replacement of MySQL." +msgstr "" + +#: gnu/packages/databases.scm:289 +msgid "Powerful object-relational database system" +msgstr "Potenca objekt-rilata datumbaza sistemo" + +#: gnu/packages/databases.scm:291 +msgid "" +"PostgreSQL is a powerful object-relational database system. It is full= y\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" +"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" +"TIMESTAMP. It also supports storage of binary large objects, including= \n" +"pictures, sounds, or video." +msgstr "" + +#: gnu/packages/databases.scm:329 +msgid "Manipulate plain text files as databases" +msgstr "Manipuli simplajn tekst-dosierojn kiel datumbazojn" + +#: gnu/packages/databases.scm:331 +msgid "" +"GNU Recutils is a set of tools and libraries for creating and\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" +"databases created with Recutils carry all of the expected features such= as\n" +"unique fields, primary keys, time stamps and more. Many different fiel= d\n" +"types are supported, as is encryption." +msgstr "" + +#: gnu/packages/databases.scm:383 +msgid "The SQLite database management system" +msgstr "La datumbaza administra sistemo SQLite" + +#: gnu/packages/databases.scm:385 +msgid "" +"SQLite is a software library that implements a self-contained, serverle= ss,\n" +"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" +"is in the public domain." +msgstr "" + +#: gnu/packages/databases.scm:420 +msgid "Trivial database" +msgstr "Ordinara datumbazo" + +#: gnu/packages/databases.scm:422 +msgid "" +"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" +"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" +"extremely small." +msgstr "" + +#: gnu/packages/databases.scm:441 +msgid "Database independent interface for Perl" +msgstr "Datumbaz-sendependa interfaco por Perl" + +#: gnu/packages/databases.scm:442 +msgid "This package provides an database interface for Perl." +msgstr "Tiu =C4=89i pako provizas datumbazan interfacon por Perl." + +#: gnu/packages/databases.scm:489 +msgid "Extensible and flexible object <-> relational mapper" +msgstr "" + +#: gnu/packages/databases.scm:490 +msgid "" +"An SQL to OO mapper with an object API inspired by\n" +"Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" +"still providing access to as many of the capabilities of the database a= s\n" +"possible, including retrieving related records from multiple tables in = a\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" +"\"ORDER BY\" and \"HAVING\" support." +msgstr "" + +#: gnu/packages/databases.scm:520 +msgid "Cursor with built-in caching support" +msgstr "" + +#: gnu/packages/databases.scm:521 +msgid "" +"DBIx::Class::Cursor::Cached provides a cursor class with\n" +"built-in caching support." +msgstr "" + +#: gnu/packages/databases.scm:541 +msgid "Introspect many-to-many relationships" +msgstr "" + +#: gnu/packages/databases.scm:542 +msgid "" +"Because the many-to-many relationships are not real\n" +"relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" +"all relevant information about these non-relationships so they can late= r be\n" +"introspected and examined." +msgstr "" + +#: gnu/packages/databases.scm:599 +msgid "Create a DBIx::Class::Schema based on a database" +msgstr "" + +#: gnu/packages/databases.scm:600 +msgid "" +"DBIx::Class::Schema::Loader automates the definition of a\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" +"columns, primary keys, unique constraints and relationships." +msgstr "" + +#: gnu/packages/databases.scm:624 +msgid "DBI PostgreSQL interface" +msgstr "" + +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +#, fuzzy +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "Tiu =C4=89i pako provizas datumbazan interfacon por Perl." + +#: gnu/packages/databases.scm:667 +msgid "SQlite interface for Perl" +msgstr "Interfaco de SQLite por Perl" + +#: gnu/packages/databases.scm:668 +msgid "" +"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" +"capable RDBMS working for your Perl project you simply have to install = this\n" +"module, and nothing else." +msgstr "" + +#: gnu/packages/databases.scm:698 +msgid "Generate SQL from Perl data structures" +msgstr "" + +#: gnu/packages/databases.scm:699 +msgid "" +"This module was inspired by the excellent DBIx::Abstract.\n" +"While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" +"been modified to make the SQL easier to generate from Perl data structu= res.\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" +"structures you provide it, so that you don't have to modify your code e= very\n" +"time your data changes." +msgstr "" + +#: gnu/packages/databases.scm:728 +msgid "Split SQL code into atomic statements" +msgstr "" + +#: gnu/packages/databases.scm:729 +msgid "" +"This module tries to split any SQL code, even including\n" +"non-standard extensions, into the atomic statements it is composed of." +msgstr "" + +#: gnu/packages/databases.scm:747 +msgid "SQL tokenizer" +msgstr "" + +#: gnu/packages/databases.scm:748 +msgid "" +"SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" +"claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" +"valid SQL query." +msgstr "" + +#: gnu/packages/databases.scm:765 +msgid "Data source abstraction library" +msgstr "Datumar-fonta abstrakta biblioteko" + +#: gnu/packages/databases.scm:766 +msgid "" +"Unixodbc is a library providing an API with which to access\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" +"Driver." +msgstr "" + +#: gnu/packages/databases.scm:790 +msgid "In-memory key/value and document store" +msgstr "" + +#: gnu/packages/databases.scm:792 +msgid "" +"UnQLite is an in-process software library which implements a\n" +"self-contained, serverless, zero-configuration, transactional NoSQL\n" +"database engine. UnQLite is a document store database similar to\n" +"MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store\n" +"similar to BerkeleyDB, LevelDB, etc." +msgstr "" + +#: gnu/packages/databases.scm:819 +msgid "Key-value cache and store" +msgstr "" + +#: gnu/packages/databases.scm:820 +msgid "" +"Redis is an advanced key-value cache and store. Redis\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" +"sets, bitmaps and hyperloglogs." +msgstr "" + +#: gnu/packages/debug.scm:74 +msgid "Heuristical file minimizer" +msgstr "" + +#: gnu/packages/debug.scm:76 +msgid "" +"Delta assists you in minimizing \"interesting\" files subject to a test= \n" +"of their interestingness. A common such situation is when attempting t= o\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" +"program to exhibit a bug." +msgstr "" + +#: gnu/packages/debug.scm:135 +msgid "Reducer for interesting code" +msgstr "" + +#: gnu/packages/debug.scm:137 +msgid "" +"C-Reduce is a tool that takes a large C or C++ program that has a\n" +"property of interest (such as triggering a compiler bug) and automatica= lly\n" +"produces a much smaller C/C++ program that has the same property. It i= s\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" +"tools that process C/C++ code." +msgstr "" + +#: gnu/packages/debug.scm:249 +msgid "Security-oriented fuzzer" +msgstr "" + +#: gnu/packages/debug.scm:251 +msgid "" +"American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" +"fuzzed code. The compact synthesized corpora produced by the tool are = also\n" +"useful for seeding other, more labor- or resource-intensive testing reg= imes\n" +"down the road." +msgstr "" + +#: gnu/packages/dejagnu.scm:78 +msgid "GNU software testing framework" +msgstr "" + +#: gnu/packages/dejagnu.scm:80 +msgid "" +"DejaGnu is a framework for testing software. In effect, it serves as\n= " +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" +"multiple test suites, which are then all managed by a single harness." +msgstr "" + +#: gnu/packages/feh.scm:54 +msgid "Fast and light imlib2-based image viewer" +msgstr "" + +#: gnu/packages/feh.scm:56 +msgid "" +"feh is an X11 image viewer aimed mostly at console users.\n" +"Unlike most other viewers, it does not have a fancy GUI, but simply\n" +"displays images. It can also be used to set the desktop wallpaper.\n" +"It is controlled via commandline arguments and configurable key/mouse\n= " +"actions." +msgstr "" + +#: gnu/packages/games.scm:116 +msgid "Backgammon game" +msgstr "Triktrako (Bakgamono)" + +#: gnu/packages/games.scm:117 +msgid "" +"The GNU backgammon application can be used for playing, analyzing and\n= " +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" +"neural networks suitable for both beginners and advanced players. In\n= " +"addition to a command-line interface, it also features an attractive, 3= D\n" +"representation of the playing board." +msgstr "" + +#: gnu/packages/games.scm:146 +msgid "3d Rubik's cube game" +msgstr "3D Rubika kubo" + +#: gnu/packages/games.scm:148 +msgid "" +"GNUbik is a puzzle game in which you must manipulate a cube to make\n" +"each of its faces have a uniform color. The game is customizable, allo= wing\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" +"You may even apply photos to the faces instead of colors. The game is\= n" +"scriptable with Guile." +msgstr "" + +#: gnu/packages/games.scm:198 +msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" +msgstr "Pordo GNU/Linux de la sendependa ludo \"l'Abbaye des Morts\"" + +#: gnu/packages/games.scm:199 +msgid "" +"L'Abbaye des Morts is a 2D platform game set in 13th century\n" +"France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" +"that beneath its ruins lay buried an ancient evil." +msgstr "" + +#: gnu/packages/games.scm:242 +msgid "Lemmings clone" +msgstr "Klono de 'Lemmings'" + +#: gnu/packages/games.scm:244 +msgid "" +"Pingus is a free Lemmings-like puzzle game in which the player takes\n" +"command of a bunch of small animals and has to guide them through level= s.\n" +"Since the animals walk on their own, the player can only influence them= by\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" +"in the other direction. Multiple such commands are necessary to reach = the\n" +"level's exit. The game is presented in a 2D side view." +msgstr "" + +#: gnu/packages/games.scm:266 +msgid "Convert English text to humorous dialects" +msgstr "Konverti anglajn tekstojn al humuraj dialekta=C4=B5oj" + +#: gnu/packages/games.scm:267 +msgid "" +"The GNU Talk Filters are programs that convert English text\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" +"a C library, so they can easily be integrated into other programs." +msgstr "" + +#: gnu/packages/games.scm:299 +msgid "Simulate the display from \"The Matrix\"" +msgstr "Simuli la ekranon el \"The Matrix\"" + +#: gnu/packages/games.scm:300 +msgid "" +"CMatrix simulates the display from \"The Matrix\" and is\n" +"based on the screensaver from the movie's website. It works with termi= nal\n" +"settings up to 132x300 and can scroll lines all at the same rate or\n" +"asynchronously and at a user-defined speed." +msgstr "" + +#: gnu/packages/games.scm:320 +msgid "Full chess implementation" +msgstr "Kompleta realigo de =C5=9Dako" + +#: gnu/packages/games.scm:321 +msgid "" +"GNU Chess is a chess engine. It allows you to compete\n" +"against the computer in a game of chess, either through the default " +"terminal\n" +"interface or via an external visual interface such as GNU XBoard." +msgstr "" + +#: gnu/packages/games.scm:349 +msgid "Twisted adventures of young pig farmer Dink Smallwood" +msgstr "Frenezaj aventuroj de la juna pork-bredisto Dink Smallwood" + +#: gnu/packages/games.scm:351 +msgid "" +"GNU FreeDink is a free and portable re-implementation of the engine\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" +"game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" +"To that extent, it also includes a front-end for managing all of your D= -Mods." +msgstr "" + +#: gnu/packages/games.scm:373 +msgid "Game data for GNU Freedink" +msgstr "Ludo-datumaro por GNU Freedink" + +#: gnu/packages/games.scm:375 +msgid "This package contains the game data of GNU Freedink." +msgstr "Tiu =C4=89i pako enhavas ludan datumaron por GNU Freedink." + +#: gnu/packages/games.scm:427 +msgid "Graphical user interface for chess programs" +msgstr "Grafikinterfacon por =C5=9Dak-programarojn" + +#: gnu/packages/games.scm:428 +msgid "" +"GNU XBoard is a graphical board for all varieties of chess,\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" +"fully interactive graphical interface and it can load and save games in= the\n" +"Portable Game Notation." +msgstr "" + +#: gnu/packages/games.scm:481 +msgid "Ball and paddle game" +msgstr "Ludo kun pilko kaj padelo" + +#: gnu/packages/games.scm:482 +msgid "" +"XBoing is a blockout type game where you have a paddle which\n" +"you control to bounce a ball around the game zone destroying blocks wit= h a\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" +"destroy, the better your score. The person with the highest score wins= ." +msgstr "" + +#: gnu/packages/games.scm:514 +msgid "Typing tutor" +msgstr "Instruilo por tajpado" + +#: gnu/packages/games.scm:516 +msgid "" +"GNU Typist is a universal typing tutor. It can be used to learn and\n" +"practice touch-typing. Several tutorials are included; in addition to\= n" +"tutorials for the standard QWERTY layout, there are also tutorials for = the\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" +"are primarily in English, however some in other languages are provided.= " +msgstr "" + +#: gnu/packages/games.scm:569 +msgid "3D game engine written in C++" +msgstr "3D-luda ma=C5=9Dino verkita en C++" + +#: gnu/packages/games.scm:571 +msgid "" +"The Irrlicht Engine is a high performance realtime 3D engine written in= \n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" +"for common mesh file formats, and collision detection." +msgstr "" + +#: gnu/packages/games.scm:623 +msgid "2D space shooter" +msgstr "" + +#: gnu/packages/games.scm:625 +msgid "" +"M.A.R.S. is a 2D space shooter with pretty visual effects and\n" +"attractive physics. Players can battle each other or computer controll= ed\n" +"enemies in different game modes such as space ball, death match, team d= eath\n" +"match, cannon keep, and grave-itation pit." +msgstr "" + +#: gnu/packages/games.scm:666 +msgid "Main game data for the Minetest game engine" +msgstr "Datumaro de =C4=89efa ludo por la lud-ma=C5=9Dino Minetest" + +#: gnu/packages/games.scm:668 +msgid "Game data for the Minetest infinite-world block sandox game." +msgstr "" + +#: gnu/packages/games.scm:720 +msgid "Infinite-world block sandbox game" +msgstr "Senlima-monda bloka sablo-skatola ludo" + +#: gnu/packages/games.scm:722 +msgid "" +"Minetest is a sandbox construction game. Players can create and destro= y\n" +"various types of blocks in a three-dimensional open world. This allows= \n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" +"in different ways." +msgstr "" + +#: gnu/packages/games.scm:761 +msgid "Curses Implementation of the Glk API" +msgstr "Realigo curses de la API Glk" + +#: gnu/packages/games.scm:763 +msgid "" +"Glk defines a portable API for applications with text UIs. It was\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" +"interactive text utilities, particularly those based on a command line.= \n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" +"using the curses.h library for screen control." +msgstr "" + +#: gnu/packages/games.scm:800 +msgid "Interpreter for Glulx VM" +msgstr "Interpretilo por Glulx VM" + +#: gnu/packages/games.scm:802 +msgid "" +"Glulx is a 32-bit portable virtual machine intended for writing and\n" +"playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" +"some of the restrictions in the venerable Z-machine format. This is th= e\n" +"reference interpreter, using Glk API." +msgstr "" + +#: gnu/packages/games.scm:838 +msgid "Z-machine interpreter" +msgstr "" + +#: gnu/packages/games.scm:840 +msgid "" +"Fizmo is a console-based Z-machine interpreter. It is used to play\n" +"interactive fiction, also known as text adventures, which were implemen= ted\n" +"either by Infocom or created using the Inform compiler." +msgstr "" + +#: gnu/packages/games.scm:890 +msgid "Reference frontend for the libretro API" +msgstr "Referenca fasono por la API libretro" + +#: gnu/packages/games.scm:892 +msgid "" +"Libretro is a simple but powerful development interface that allows for= \n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" +"straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" +"multi-system game/emulator system." +msgstr "" + +#: gnu/packages/games.scm:912 +msgid "Play the game of Go" +msgstr "" + +#: gnu/packages/games.scm:914 +msgid "" +"GNU Go is a program that plays the game of Go, in which players\n" +"place stones on a grid to form territory or capture other stones. Whil= e\n" +"it can be played directly from the terminal, rendered in ASCII characte= rs,\n" +"it is also possible to play GNU Go with 3rd party graphical interfaces = or\n" +"even in Emacs. It supports the standard game storage format (SGF, Smar= t\n" +"Game Format) and inter-process communication format (GMP, Go Modem\n" +"Protocol)." +msgstr "" + +#: gnu/packages/games.scm:964 +msgid "High speed arctic racing game based on Tux Racer" +msgstr "" + +#: gnu/packages/games.scm:966 +msgid "" +"Extreme Tux Racer, or etracer as it is called for short, is\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" +"avoiding the trees and rocks that will slow you down.\n" +"\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" +"bones.\n" +"\n" +"This game is based on the GPL version of the famous game TuxRacer." +msgstr "" + +#: gnu/packages/games.scm:1004 +msgid "Game of jumping to the next floor, trying not to fall" +msgstr "" + +#: gnu/packages/games.scm:1006 +msgid "" +"GNUjump is a simple, yet addictive game in which you must jump from\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" +"falling, themeable graphics and sounds, and replays." +msgstr "" + +#: gnu/packages/games.scm:1047 +msgid "Turn-based strategy game" +msgstr "" + +#: gnu/packages/games.scm:1049 +msgid "" +"The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" +"local).\n" +"\n" +"Battle for control on a range of maps, using variety of units which hav= e\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" +"next campaign." +msgstr "" + +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" +msgstr "" + +#: gnu/packages/games.scm:1094 +msgid "" +"DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" +"also emulates CPU:286/386 realmode/protected mode, Directory\n" +"FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a\n" +"SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility = with\n" +"older games." +msgstr "" + +#: gnu/packages/games.scm:1139 +msgid "Mouse and keyboard discovery for children" +msgstr "" + +#: gnu/packages/games.scm:1141 +msgid "" +"Gamine is a game designed for young children who are learning to use th= e\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" +"on the screen and keyboard to display letters." +msgstr "" + +#: gnu/packages/games.scm:1172 +msgid "Puzzle game with a cat in lead role" +msgstr "" + +#: gnu/packages/games.scm:1173 +msgid "" +"Project Raincat is a game developed by Carnegie Mellon\n" +"students through GCS during the Fall 2008 semester. Raincat features g= ame\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" +"is programmed in Haskell." +msgstr "" + +#: gnu/packages/games.scm:1208 +msgid "Client for 'The Mana World' and similar games" +msgstr "" + +#: gnu/packages/games.scm:1210 +msgid "" +"ManaPlus is a 2D MMORPG client for game servers. It is the only\n" +"fully supported client for @uref{http://www.themanaworld.org, The mana\= n" +"world}, @uref{http://evolonline.org, Evol Online} and\n" +"@uref{http://landoffire.org, Land of fire}." +msgstr "" + +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +msgid "Pinball simulator" +msgstr "" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 +msgid "GNU Compiler Collection" +msgstr "GNU-a kompila kolekto" + +#: gnu/packages/gcc.scm:315 +msgid "" +"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" +"Go. It also includes runtime support libraries for these languages." +msgstr "" + +#: gnu/packages/gcc.scm:380 +#, fuzzy +msgid "GNU C++ standard library" +msgstr "GNU C++ norma biblioteko (intermeza)" + +#: gnu/packages/gcc.scm:415 +msgid "Collection of subroutines used by various GNU programs" +msgstr "" + +#: gnu/packages/gcc.scm:610 +msgid "GNU libstdc++ documentation" +msgstr "" + +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" +msgstr "" +"Manipulo de aroj kaj rilatoj de entjeraj punktoj ligataj per linearaj l= imigoj" + +#: gnu/packages/gcc.scm:681 +msgid "" +"isl is a library for manipulating sets and relations of integer points\= n" +"bounded by linear constraints. Supported operations on sets include\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" +"affine hull, integer projection, computing the lexicographic minimum us= ing\n" +"parametric integer programming, coalescing and parametric vertex\n" +"enumeration. It also includes an ILP solver based on generalized basis= \n" +"reduction, transitive closures on maps (which may encode infinite graph= s),\n" +"dependence analysis and bounds on piecewise step-polynomials." +msgstr "" + +#: gnu/packages/gcc.scm:713 +msgid "Library to generate code for scanning Z-polyhedra" +msgstr "Biblioteko por krei kodumaron por skani Z-pluredrojn" + +#: gnu/packages/gcc.scm:715 +msgid "" +"CLooG is a free software library to generate code for scanning\n" +"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" +"reaches each integral point of one or more parameterized polyhedra.\n" +"CLooG has been originally written to solve the code generation problem\= n" +"for optimizing compilers based on the polytope model. Nevertheless it\= n" +"is used now in various area e.g., to build control automata for\n" +"high-level synthesis or to find the best polynomial approximation of a\= n" +"function. CLooG may help in any situation where scanning polyhedra\n" +"matters. While the user has full control on generated code quality,\n" +"CLooG is designed to avoid control overhead and to produce a very\n" +"effective code." +msgstr "" + +#: gnu/packages/gcc.scm:770 +msgid "Reference manual for the C programming language" +msgstr "" + +#: gnu/packages/gcc.scm:772 +msgid "" +"This is a reference manual for the C programming language, as\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" +"of the language. Library functions are not included." +msgstr "" + +#: gnu/packages/geeqie.scm:48 +msgid "Library and command-line utility to manage image metadata" +msgstr "" + +#: gnu/packages/geeqie.scm:50 +msgid "" +"Exiv2 is a C++ library and a command line utility to manage image\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" +"and XMP metadata of images in various formats." +msgstr "" + +#: gnu/packages/geeqie.scm:82 +msgid "Lightweight GTK+ based image viewer" +msgstr "" + +#: gnu/packages/geeqie.scm:84 +msgid "" +"Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" +"systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" +"image formats; tools for image comparison, sorting and managing photo\n= " +"collection. Geeqie was initially based on GQview." +msgstr "" + +#: gnu/packages/gettext.scm:93 +msgid "Tools and documentation for translation" +msgstr "Iloj kaj dokumentado por tradukado" + +#: gnu/packages/gettext.scm:95 +msgid "" +"GNU Gettext is a package providing a framework for translating the\n" +"textual output of programs into multiple languages. It provides " +"translators\n" +"with the means to create message catalogs, as well as an Emacs mode to = work\n" +"with them, and a runtime library to load translated messages from the\n= " +"catalogs. Nearly all GNU packages use Gettext." +msgstr "" + +#: gnu/packages/gettext.scm:151 +msgid "Scripts to ease maintenance of translations" +msgstr "" + +#: gnu/packages/gettext.scm:153 +msgid "" +"The po4a (PO for anything) project goal is to ease translations (and\n" +"more interestingly, the maintenance of translations) using gettext tool= s on\n" +"areas where they were not expected like documentation." +msgstr "" + +#: gnu/packages/gimp.scm:53 +msgid "Image pixel format conversion library" +msgstr "" + +#: gnu/packages/gimp.scm:55 +msgid "" +"Babl is a dynamic, any to any, pixel format translation library.\n" +"It allows converting between different methods of storing pixels known = as\n" +"pixel formats that have with different bitdepths and other data\n" +"representations, color models and component permutations.\n" +"\n" +"A vocabulary to formulate new pixel formats from existing primitives is= \n" +"provided as well as the framework to add new color models and data type= s." +msgstr "" + +#: gnu/packages/gimp.scm:110 +msgid "Graph based image processing framework" +msgstr "" + +#: gnu/packages/gimp.scm:111 +msgid "" +"GEGL (Generic Graphics Library) provides infrastructure to\n" +"do demand based cached non destructive image editing on larger than RAM= \n" +"buffers." +msgstr "" + +#: gnu/packages/gimp.scm:153 +msgid "GNU Image Manipulation Program" +msgstr "" + +#: gnu/packages/gimp.scm:155 +msgid "" +"GIMP is an application for image manipulation tasks such as photo\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" +"as well as specialized ones. It features a highly customizable interfa= ce\n" +"that is extensible via a plugin system." +msgstr "" + +#: gnu/packages/gnome.scm:154 +msgid "CD/DVD burning tool for Gnome" +msgstr "" + +#: gnu/packages/gnome.scm:155 +msgid "" +"Brasero is an application to burn CD/DVD for the Gnome\n" +"Desktop. It is designed to be as simple as possible and has some uniqu= e\n" +"features to enable users to create their discs easily and quickly." +msgstr "" + +#: gnu/packages/gnome.scm:175 +msgid "Bootstrap GNOME modules built from Git" +msgstr "" + +#: gnu/packages/gnome.scm:176 +msgid "" +"gnome-common contains various files needed to bootstrap\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" +"can be used to configure a source directory checked out from Git and so= me\n" +"commonly used macros." +msgstr "" + +#: gnu/packages/gnome.scm:217 +msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" +msgstr "" + +#: gnu/packages/gnome.scm:219 +msgid "" +"The libgnome-desktop library provides API shared by several application= s\n" +"on the desktop, but that cannot live in the platform for various reason= s.\n" +"There is no API or ABI guarantee, although we are doing our best to pro= vide\n" +"stability. Documentation for the API is available with gtk-doc.\n" +"\n" +"The gnome-about program helps find which version of GNOME is installed.= " +msgstr "" + +#: gnu/packages/gnome.scm:252 +#, fuzzy +msgid "Documentation utilities for the Gnome project" +msgstr "Aro da utila=C4=B5oj por la Linuks-kerno" + +#: gnu/packages/gnome.scm:254 +msgid "" +"Gnome-doc-utils is a collection of documentation utilities for the\n" +"Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" +"and keep up to date translations of documentation." +msgstr "" + +#: gnu/packages/gnome.scm:298 +msgid "Libraries for displaying certificates and accessing key stores" +msgstr "" + +#: gnu/packages/gnome.scm:300 +msgid "" +"The GCR package contains libraries used for displaying certificates and= \n" +"accessing key stores. It also provides the viewer for crypto files on = the\n" +"GNOME Desktop." +msgstr "" + +#: gnu/packages/gnome.scm:329 +msgid "Accessing passwords from the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:331 +msgid "Client library to access passwords from the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:393 +msgid "Daemon to store passwords and encryption keys" +msgstr "" + +#: gnu/packages/gnome.scm:395 +msgid "" +"gnome-keyring is a program that keeps passwords and other secrets for\n= " +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" +"applications locate it via an environment variable or D-Bus.\n" +"\n" +"The program can manage several keyrings, each with its own master passw= ord,\n" +"and there is also a session keyring which is never stored to disk, but\= n" +"forgotten when the session ends." +msgstr "" + +#: gnu/packages/gnome.scm:460 +msgid "GNOME's document viewer" +msgstr "" + +#: gnu/packages/gnome.scm:462 +msgid "" +"Evince is a document viewer for multiple document formats. It\n" +"currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" +"of Evince is to replace the multiple document viewers that exist\n" +"on the GNOME Desktop with a single simple application." +msgstr "" + +#: gnu/packages/gnome.scm:491 +msgid "GNOME settings for various desktop components" +msgstr "" + +#: gnu/packages/gnome.scm:493 +msgid "" +"Gsettings-desktop-schemas contains a collection of GSettings schemas\n" +"for settings shared by various components of the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:527 +msgid "Utility to implement the Freedesktop Icon Naming Specification" +msgstr "" + +#: gnu/packages/gnome.scm:529 +msgid "" +"To help with the transition to the Freedesktop Icon Naming\n" +"Specification, the icon naming utility maps the icon names used by the\= n" +"GNOME and KDE desktops to the icon names proposed in the specification.= " +msgstr "" + +#: gnu/packages/gnome.scm:551 +msgid "Utilities for working with desktop entries" +msgstr "" + +#: gnu/packages/gnome.scm:553 +msgid "" +"This package contains a few command line utilities for working with\n" +"desktop entries:\n" +"\n" +"desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" +" about desktop entry specification violations.\n" +"\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" +" optionally munging it a bit in transit.\n" +"\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" +" handled by desktop files." +msgstr "" + +#: gnu/packages/gnome.scm:587 +msgid "GNOME icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:589 +msgid "Icons for the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:628 +msgid "Database of common MIME types" +msgstr "" + +#: gnu/packages/gnome.scm:630 +msgid "" +"The shared-mime-info package contains the core database of common types= \n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" +"database is translated at Transifex." +msgstr "" + +#: gnu/packages/gnome.scm:654 +msgid "Freedesktop icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:656 +msgid "Freedesktop icon theme." +msgstr "" + +#: gnu/packages/gnome.scm:683 +#, fuzzy +msgid "GNOME desktop notification library" +msgstr "Biblioteko de GNOME por traktado de teksto kaj tiparo" + +#: gnu/packages/gnome.scm:685 +msgid "" +"Libnotify is a library that sends desktop notifications to a\n" +"notification daemon, as defined in the Desktop Notifications spec. The= se\n" +"notifications can be used to inform the user about an event or display\= n" +"some form of information without getting in the user's way." +msgstr "" + +#: gnu/packages/gnome.scm:717 +msgid "GObject plugin system" +msgstr "" + +#: gnu/packages/gnome.scm:719 +msgid "" +"Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" +"the API." +msgstr "" + +#: gnu/packages/gnome.scm:748 +msgid "OpenGL extension to GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:749 +msgid "" +"GtkGLExt is an OpenGL extension to GTK+. It provides\n" +"additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" +"API add-ons to make GTK+ widgets OpenGL-capable." +msgstr "" + +#: gnu/packages/gnome.scm:792 +msgid "GTK+ rapid application development tool" +msgstr "" + +#: gnu/packages/gnome.scm:793 +msgid "" +"Glade is a rapid application development (RAD) tool to\n" +"enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" +"the GNOME desktop environment." +msgstr "" + +#: gnu/packages/gnome.scm:818 +#, fuzzy +msgid "CSS2 parsing and manipulation library" +msgstr "Biblioteko de GNOME por =C5=9Dargi kaj manipuli bildojn" + +#: gnu/packages/gnome.scm:820 +msgid "" +"Libcroco is a standalone CSS2 parsing and manipulation library.\n" +"The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" +"XML/CSS rendering engine." +msgstr "" + +#: gnu/packages/gnome.scm:853 +msgid "GNOME's Structured File Library" +msgstr "" + +#: gnu/packages/gnome.scm:855 +msgid "" +"Libgsf aims to provide an efficient extensible I/O abstraction for\n" +"dealing with different structured file formats." +msgstr "" + +#: gnu/packages/gnome.scm:920 +msgid "Render SVG files using Cairo" +msgstr "" + +#: gnu/packages/gnome.scm:922 +msgid "" +"Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:946 +msgid "Create trees of CORBA Interface Definition Language files" +msgstr "" + +#: gnu/packages/gnome.scm:947 +msgid "" +"Libidl is a library for creating trees of CORBA Interface\n" +"Definition Language (idl) files, which is a specification for defining\= n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" +"GNOME project, and the primary means of libidl distribution). However,= the\n" +"functionality was designed to be as reusable and portable as possible." +msgstr "" + +#: gnu/packages/gnome.scm:987 +msgid "CORBA 2.4-compliant Object Request Broker" +msgstr "" + +#: gnu/packages/gnome.scm:988 +msgid "" +"ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" +"featuring mature C, C++ and Python bindings." +msgstr "" + +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" +msgstr "" + +#: gnu/packages/gnome.scm:1035 +msgid "" +"Bonobo is a framework for creating reusable components for\n" +"use in GNOME applications, built on top of CORBA." +msgstr "" + +#: gnu/packages/gnome.scm:1066 +msgid "Store application preferences" +msgstr "" + +#: gnu/packages/gnome.scm:1067 +msgid "" +"Gconf is a system for storing application preferences. It\n" +"is intended for user preferences; not arbitrary data storage." +msgstr "" + +#: gnu/packages/gnome.scm:1089 +msgid "Base MIME and Application database for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1090 +msgid "" +"GNOME Mime Data is a module which contains the base MIME\n" +"and Application database for GNOME. The data stored by this module is\= n" +"designed to be accessed through the MIME functions in GnomeVFS." +msgstr "" + +#: gnu/packages/gnome.scm:1134 +msgid "Access files and folders in GNOME applications" +msgstr "" + +#: gnu/packages/gnome.scm:1136 +msgid "" +"GnomeVFS is the core library used to access files and folders in GNOME\= n" +"applications. It provides a file system abstraction which allows " +"applications\n" +"to access local and remote files with a single consistent API." +msgstr "" + +#: gnu/packages/gnome.scm:1180 +msgid "Useful routines for building applications" +msgstr "" + +#: gnu/packages/gnome.scm:1181 +msgid "" +"The libgnome library provides a number of useful routines\n" +"for building modern applications, including session management, activat= ion " +"of\n" +"files and URIs, and displaying help." +msgstr "" + +#: gnu/packages/gnome.scm:1204 +#, fuzzy +msgid "2D drawing library" +msgstr "PDF-bildiga biblioteko" + +#: gnu/packages/gnome.scm:1205 +msgid "" +"Libart is a 2D drawing library intended as a\n" +"high-quality vector-based 2D library with antialiasing and alpha compos= ition." +msgstr "" + +#: gnu/packages/gnome.scm:1232 +msgid "Flexible widget for creating interactive structured graphics" +msgstr "" + +#: gnu/packages/gnome.scm:1233 +msgid "" +"The GnomeCanvas widget provides a flexible widget for\n" +"creating interactive structured graphics." +msgstr "" + +#: gnu/packages/gnome.scm:1257 +#, fuzzy +msgid "C++ bindings to the GNOME Canvas library" +msgstr "Bindoj de C++ por la 2D-grafika biblioteko Cairo" + +#: gnu/packages/gnome.scm:1258 +#, fuzzy +msgid "C++ bindings to the GNOME Canvas library." +msgstr "Bindoj de C++ por la 2D-grafika biblioteko Cairo" + +#: gnu/packages/gnome.scm:1289 +msgid "Additional widgets for applications" +msgstr "" + +#: gnu/packages/gnome.scm:1290 +msgid "" +"The libgnomeui library provides additional widgets for\n" +"applications. Many of the widgets from libgnomeui have already been\n" +"ported to GTK+." +msgstr "" + +#: gnu/packages/gnome.scm:1316 +msgid "Load glade interfaces and access the glade built widgets" +msgstr "" + +#: gnu/packages/gnome.scm:1317 +msgid "" +"Libglade is a library that provides interfaces for loading\n" +"graphical interfaces described in glade files and for accessing the\n" +"widgets built in the loading process." +msgstr "" + +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 +msgid "Printing framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1356 +msgid "" +"GNOME-print was a printing framework for GNOME. It has been deprecated= \n" +"since ca. 2006, when GTK+ itself incorporated printing support." +msgstr "" + +#: gnu/packages/gnome.scm:1431 +msgid "Some user interface controls using Bonobo" +msgstr "" + +#: gnu/packages/gnome.scm:1432 +msgid "" +"The Bonobo UI library provides a number of user interface\n" +"controls using the Bonobo component framework." +msgstr "" + +#: gnu/packages/gnome.scm:1456 +msgid "Window Navigator Construction Kit" +msgstr "" + +#: gnu/packages/gnome.scm:1458 +msgid "" +"Libwnck is the Window Navigator Construction Kit, a library for use in\= n" +"writing pagers, tasklists, and more generally applications that are dea= ling\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" +"Hints specification (EWMH)." +msgstr "" + +#: gnu/packages/gnome.scm:1511 +msgid "Document-centric objects and utilities" +msgstr "" + +#: gnu/packages/gnome.scm:1512 +msgid "A GLib/GTK+ set of document-centric objects and utilities." +msgstr "" + +#: gnu/packages/gnome.scm:1594 +msgid "Spreadsheet application" +msgstr "" + +#: gnu/packages/gnome.scm:1596 +msgid "" +"GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" +"interoperable with other spreadsheet applications. It has a vast array= of\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" +"and non-linear solvers, statistical analysis, and telecommunication\n" +"engineering." +msgstr "" + +#: gnu/packages/gnome.scm:1642 +msgid "Default GNOME 3 themes" +msgstr "" + +#: gnu/packages/gnome.scm:1644 +msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." +msgstr "" + +#: gnu/packages/gnome.scm:1677 +msgid "Manage encryption keys and passwords in the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:1679 +msgid "" +"Seahorse is a GNOME application for managing encryption keys and\n" +"passwords in the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 +msgid "Compiler for the GObject type system" +msgstr "" + +#: gnu/packages/gnome.scm:1717 +msgid "" +"Vala is a programming language that aims to bring modern programming\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" +"requirements and without using a different ABI compared to applications= and\n" +"libraries written in C." +msgstr "" + +#: gnu/packages/gnome.scm:1747 +msgid "Virtual Terminal Emulator" +msgstr "" + +#: gnu/packages/gnome.scm:1749 +msgid "" +"VTE is a library (libvte) implementing a terminal emulator widget for\n= " +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" +"gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" +"editors, IDEs, etc." +msgstr "" + +#: gnu/packages/gnome.scm:1847 +msgid "Low-level GNOME configuration system" +msgstr "" + +#: gnu/packages/gnome.scm:1848 +msgid "" +"Dconf is a low-level configuration system. Its main purpose\n" +"is to provide a backend to GSettings on platforms that don't already ha= ve\n" +"configuration storage systems." +msgstr "" + +#: gnu/packages/gnome.scm:1882 +msgid "" +"JSON-GLib is a C library based on GLib providing serialization and\n" +"deserialization support for the JavaScript Object Notation (JSON) forma= t\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" +"and objects." +msgstr "" + +#: gnu/packages/gnome.scm:1921 +msgid "High-level API for X Keyboard Extension" +msgstr "" + +#: gnu/packages/gnome.scm:1923 +msgid "" +"LibXklavier is a library providing high-level API for X Keyboard\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" +"indicators etc)." +msgstr "" + +#: gnu/packages/gnome.scm:1951 +#, fuzzy +msgid "Python bindings to librsvg" +msgstr "Bindoj de Python por Cairo" + +#: gnu/packages/gnome.scm:1953 +msgid "" +"This packages provides Python bindings to librsvg, the SVG rendering\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2002 +msgid "Network-related GIO modules" +msgstr "" + +#: gnu/packages/gnome.scm:2004 +msgid "" +"This package contains various network related extensions for the GIO\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2035 +msgid "RESTful web api query library" +msgstr "" + +#: gnu/packages/gnome.scm:2037 +msgid "" +"This library was designed to make it easier to access web services that= \n" +"claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" +"libxml to ease remote use of the RESTful API." +msgstr "" + +#: gnu/packages/gnome.scm:2106 +msgid "GLib-based HTTP Library" +msgstr "" + +#: gnu/packages/gnome.scm:2108 +msgid "" +"LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " +"and the GLib main loop, to integrate well with GNOME applications." +msgstr "" + +#: gnu/packages/gnome.scm:2154 +msgid "GObject bindings for \"Secret Service\" API" +msgstr "" + +#: gnu/packages/gnome.scm:2156 +msgid "" +"Libsecret is a GObject based library for storing and retrieving passwor= ds\n" +"and other secrets. It communicates with the \"Secret Service\" using D= Bus." +msgstr "" + +#: gnu/packages/gnome.scm:2200 +msgid "Minesweeper game" +msgstr "" + +#: gnu/packages/gnome.scm:2202 +msgid "" +"Mines (previously gnomine) is a puzzle game where you locate mines\n" +"floating in an ocean using only your brain and a little bit of luck." +msgstr "" + +#: gnu/packages/gnome.scm:2246 +msgid "Terminal emulator" +msgstr "" + +#: gnu/packages/gnome.scm:2248 +msgid "" +"GNOME Terminal is a terminal emulator application for accessing a\n" +"UNIX shell environment which can be used to run programs available on\n= " +"your system.\n" +"\n" +"It supports several profiles, multiple tabs and implements several\n" +"keyboard shortcuts." +msgstr "" + +#: gnu/packages/gnome.scm:2314 +msgid "Color management service" +msgstr "" + +#: gnu/packages/gnome.scm:2315 +msgid "" +"Colord is a system service that makes it easy to manage,\n" +"install and generate color profiles to accurately color manage input an= d\n" +"output devices." +msgstr "" + +#: gnu/packages/gnome.scm:2357 +msgid "Geolocation service" +msgstr "" + +#: gnu/packages/gnome.scm:2358 +msgid "" +"Geoclue is a D-Bus service that provides location\n" +"information. The primary goal of the Geoclue project is to make creati= ng\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" +"permission from user." +msgstr "" + +#: gnu/packages/gnome.scm:2393 +msgid "Geocoding and reverse-geocoding library" +msgstr "" + +#: gnu/packages/gnome.scm:2395 +msgid "" +"geocode-glib is a convenience library for geocoding (finding longitude,= \n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" +"coordinates) using the Nominatim service. geocode-glib caches requests= for\n" +"faster results and to avoid unnecessary server load." +msgstr "" + +#: gnu/packages/gnome.scm:2448 +msgid "System daemon for managing power devices" +msgstr "" + +#: gnu/packages/gnome.scm:2450 +msgid "" +"UPower is an abstraction for enumerating power devices,\n" +"listening to device events and querying history and statistics. Any\n" +"application or service on the system can access the org.freedesktop.UPo= wer\n" +"service via the system message bus." +msgstr "" + +#: gnu/packages/gnome.scm:2500 +msgid "Location, time zone, and weather library for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2502 +msgid "" +"libgweather is a library to access weather information from online\n" +"services for numerous locations." +msgstr "" + +#: gnu/packages/gnome.scm:2554 +msgid "GNOME settings daemon" +msgstr "" + +#: gnu/packages/gnome.scm:2556 +msgid "" +"This package contains the daemon responsible for setting the various\n" +"parameters of a GNOME session and the applications that run under it. = It\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" +"settings, themes, mouse settings, and startup of other daemons." +msgstr "" + +#: gnu/packages/gnome.scm:2592 +msgid "Library to parse and save media playlists for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2593 +msgid "" +"Totem-pl-parser is a GObjects-based library to parse and save\n" +"playlists in a variety of formats." +msgstr "" + +#: gnu/packages/gnome.scm:2627 +msgid "Solitaire card games" +msgstr "" + +#: gnu/packages/gnome.scm:2629 +msgid "" +"Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" +"which are easy to play with the aid of a mouse." +msgstr "" + +#: gnu/packages/gnome.scm:2653 +msgid "API documentation browser for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2655 +msgid "" +"Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " +"natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" +"throughout GNOME for API documentation)." +msgstr "" + +#: gnu/packages/gnome.scm:2716 +msgid "Object oriented GL/GLES Abstraction/Utility Layer" +msgstr "" + +#: gnu/packages/gnome.scm:2718 +msgid "" +"Cogl is a small library for using 3D graphics hardware to draw pretty\n= " +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" +"designed to make it easy to write orthogonal components that can render= \n" +"without stepping on each others toes." +msgstr "" + +#: gnu/packages/gnome.scm:2773 +msgid "Open GL based interactive canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 +msgid "" +"Clutter is an Open GL based interactive canvas library, designed for\n" +"creating fast, mainly 2D single window applications such as media box U= Is,\n" +"presentations, kiosk style applications and so on." +msgstr "" + +#: gnu/packages/gnome.scm:2802 +msgid "Open GL based interactive canvas library GTK+ widget" +msgstr "" + +#: gnu/packages/gnome.scm:2832 +msgid "Integration library for using GStreamer with Clutter" +msgstr "" + +#: gnu/packages/gnome.scm:2834 +msgid "" +"Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" +"It provides a GStreamer sink to upload frames to GL and an actor that\n= " +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" +"GL based interactive canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:2864 +msgid "C library providing a ClutterActor to display maps" +msgstr "" + +#: gnu/packages/gnome.scm:2866 +msgid "" +"libchamplain is a C library providing a ClutterActor to display maps.\n= " +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" +"such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." +msgstr "" + +#: gnu/packages/gnome.scm:2897 +msgid "Object mapper from GObjects to SQLite" +msgstr "" + +#: gnu/packages/gnome.scm:2899 +msgid "" +"Gom provides an object mapper from GObjects to SQLite. It helps you\n" +"write applications that need to store structured data as well as make " +"complex\n" +"queries upon that data." +msgstr "" + +#: gnu/packages/gnome.scm:2927 +msgid "Sliding block puzzles" +msgstr "" + +#: gnu/packages/gnome.scm:2929 +msgid "" +"GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" +"as possible!" +msgstr "" + +#: gnu/packages/gnome.scm:2980 +msgid "Framework for discovering and browsing media" +msgstr "" + +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 +msgid "" +"Grilo is a framework focused on making media discovery and browsing eas= y\n" +"for application developers." +msgstr "" + +#: gnu/packages/gnome.scm:3032 +msgid "Plugins for the Grilo media discovery library" +msgstr "" + +#: gnu/packages/gnome.scm:3109 +msgid "Simple media player for GNOME based on GStreamer" +msgstr "" + +#: gnu/packages/gnome.scm:3110 +msgid "" +"Totem is a simple yet featureful media player for GNOME\n" +"which can read a large number of file formats." +msgstr "" + +#: gnu/packages/gnome.scm:3199 +#, fuzzy +msgid "Music player for GNOME" +msgstr "Music Player Daemon (muzik-ludila demono)" + +#: gnu/packages/gnome.scm:3200 +msgid "" +"Rhythmbox is a music playing application for GNOME. It\n" +"supports playlists, song ratings, and any codecs installed through gstr= eamer." +msgstr "" + +#: gnu/packages/gnome.scm:3250 +msgid "GNOME image viewer" +msgstr "" + +#: gnu/packages/gnome.scm:3251 +msgid "" +"Eye of GNOME is the GNOME image viewer. It\n" +"supports image conversion, rotation, and slideshows." +msgstr "" + +#: gnu/packages/gnome.scm:3276 +#, fuzzy +msgid "GObject bindings for libudev" +msgstr "Bindoj de Python por Cairo" + +#: gnu/packages/gnome.scm:3278 +msgid "" +"This library provides GObject bindings for libudev. It was originally\= n" +"part of udev-extras, then udev, then systemd. It's now a project on it= s own." +msgstr "" + +#: gnu/packages/gnome.scm:3324 +#, fuzzy +msgid "Userspace virtual filesystem for GIO" +msgstr "Uzant-spaca unuiga dosiersistemo" + +#: gnu/packages/gnome.scm:3326 +msgid "" +"GVFS is a userspace virtual filesystem designed to work with the I/O\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" +"to all applications using the GIO API. It also supports exposing the G= VFS\n" +"mounts to non-GIO applications using FUSE.\n" +"\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" +"DAV, and others." +msgstr "" + +#: gnu/packages/gnome.scm:3372 +#, fuzzy +msgid "GLib binding for libusb1" +msgstr "Bindoj de Guile por ncurses" + +#: gnu/packages/gnome.scm:3374 +msgid "" +"GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" +"asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" +"and integration into a mainloop. This makes it easy to integrate low l= evel\n" +"USB transfers with your high-level application or system daemon." +msgstr "" + +#: gnu/packages/gnome.scm:3411 +msgid "Document and image scanner" +msgstr "" + +#: gnu/packages/gnome.scm:3412 +msgid "" +"Simple Scan is an easy-to-use application, designed to let\n" +"users connect their scanner and quickly have the image/document in an\n= " +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" +"the same backend as XSANE uses. This means that all existing scanners w= ill\n" +"work and the interface is well tested." +msgstr "" + +#: gnu/packages/gnome.scm:3461 +msgid "GNOME web browser" +msgstr "" + +#: gnu/packages/gnome.scm:3463 +msgid "" +"Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " +"principles are simplicity and standards compliance." +msgstr "" + +#: gnu/packages/gnome.scm:3519 +msgid "D-Bus debugger" +msgstr "" + +#: gnu/packages/gnome.scm:3521 +msgid "" +"D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" +"of running programs and invoke methods on those interfaces." +msgstr "" + +#: gnu/packages/gnome.scm:3543 +msgid "XSL stylesheets for Yelp" +msgstr "" + +#: gnu/packages/gnome.scm:3545 +msgid "" +"Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" +"to format Docbook and Mallard documents." +msgstr "" + +#: gnu/packages/gnome.scm:3575 +msgid "GNOME help browser" +msgstr "" + +#: gnu/packages/gnome.scm:3577 +msgid "" +"Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" +"man, info, and HTML documents. It can locate documents according to th= e\n" +"freedesktop.org help system specification." +msgstr "" + +#: gnu/packages/gnome.scm:3605 +msgid "Yelp documentation tools" +msgstr "" + +#: gnu/packages/gnome.scm:3607 +msgid "" +"Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" +"manage, and publish documentation for Yelp and the web. Most of the he= avy\n" +"lifting is done by packages like yelp-xsl and itstool. This package ju= st\n" +"wraps things up in a developer-friendly way." +msgstr "" + +#: gnu/packages/gnome.scm:3644 +msgid "GObject collection library" +msgstr "" + +#: gnu/packages/gnome.scm:3646 +msgid "" +"Libgee is a utility library providing GObject-based interfaces and\n" +"classes for commonly used data structures." +msgstr "" + +#: gnu/packages/gnome.scm:3673 +msgid "GObject wrapper around the Exiv2 photo metadata library" +msgstr "" + +#: gnu/packages/gnome.scm:3675 +msgid "" +"Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" +"metadata in photo and video files of various formats." +msgstr "" + +#: gnu/packages/gnome.scm:3727 +msgid "Photo manager for GNOME 3" +msgstr "" + +#: gnu/packages/gnome.scm:3729 +msgid "" +"Shotwell is a digital photo manager designed for the GNOME desktop\n" +"environment. It allows you to import photos from disk or camera, organ= ize\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" +"share them with others via social networking and more." +msgstr "" + +#: gnu/packages/gnome.scm:3761 +msgid "Graphical archive manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3762 +msgid "" +"File Roller is an archive manager for the GNOME desktop\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" +"such as gzip tarballs." +msgstr "" + +#: gnu/packages/gnome.scm:3797 +msgid "Session manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +#, fuzzy +msgid "Javascript bindings for GNOME" +msgstr "Bindoj de Cairo por GNU Guile" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "Flu-redaktilo" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +#, fuzzy +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "Tiu =C4=89i pako provizas vortaron por la literumilo GNU Aspell.= " + +#: gnu/packages/gnome.scm:4356 +msgid "Display manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +#, fuzzy +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" +"Tiu =C4=89i pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/= ext4." + +#: gnu/packages/gnome.scm:4484 +msgid "Utilities to configure the GNOME desktop" +msgstr "" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +msgid "File manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +msgid "Disk usage analyzer for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 +msgid "Mozilla javascript engine" +msgstr "=C4=B4avaskripta ma=C5=9Dino de Mozilla" + +#: gnu/packages/gnuzilla.scm:96 +msgid "" +"SpiderMonkey is Mozilla's JavaScript engine written\n" +"in C/C++." +msgstr "" + +#: gnu/packages/gnuzilla.scm:171 +msgid "Netscape API for system level and libc-like functions" +msgstr "Netscape API por sistem-nivelaj kaj libc-similaj funkcioj" + +#: gnu/packages/gnuzilla.scm:172 +msgid "" +"Netscape Portable Runtime (NSPR) provides a\n" +"platform-neutral API for system level and libc-like functions. It is u= sed\n" +"in the Mozilla clients." +msgstr "" + +#: gnu/packages/gnuzilla.scm:268 +msgid "Network Security Services" +msgstr "Network Security Services" + +#: gnu/packages/gnuzilla.scm:270 +msgid "" +"Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" +"PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " +"standards." +msgstr "" + +#: gnu/packages/gnuzilla.scm:506 +msgid "Entirely free browser derived from Mozilla Firefox" +msgstr "Tute libera foliumilo derivita de Mozilla Firefox" + +#: gnu/packages/gnuzilla.scm:508 +msgid "" +"IceCat is the GNU version of the Firefox browser. It is entirely free\= n" +"software, which does not recommend non-free plugins and addons. It als= o\n" +"features built-in privacy-protecting features." +msgstr "" + +#: gnu/packages/gtk.scm:87 +msgid "GNOME accessibility toolkit" +msgstr "Alireca ilaro de GNOME" + +#: gnu/packages/gtk.scm:89 +msgid "" +"ATK provides the set of accessibility interfaces that are implemented\n= " +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" +"tools have full access to view and control running applications." +msgstr "" + +#: gnu/packages/gtk.scm:128 +msgid "2D graphics library" +msgstr "2D-bildiga biblioteko" + +#: gnu/packages/gtk.scm:130 +msgid "" +"Cairo is a 2D graphics library with support for multiple output devices= .\n" +"Currently supported output targets include the X Window System (via bot= h\n" +"Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG f= ile\n" +"output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB= .\n" +"\n" +"Cairo is designed to produce consistent output on all output media whil= e\n" +"taking advantage of display hardware acceleration when available\n" +"eg. through the X Render Extension).\n" +"\n" +"The cairo API provides operations similar to the drawing operators of\n= " +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" +"B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" +"affine transformation (scale, rotation, shear, etc.)." +msgstr "" + +#: gnu/packages/gtk.scm:178 +msgid "OpenType text shaping engine" +msgstr "Teksto-formiga ma=C5=9Dino OpenType" + +#: gnu/packages/gtk.scm:180 +msgid "HarfBuzz is an OpenType text shaping engine." +msgstr "HarfBuzz estas tekst-formiga ma=C5=9Dino OpenType." + +#: gnu/packages/gtk.scm:211 +msgid "GNOME text and font handling library" +msgstr "Biblioteko de GNOME por traktado de teksto kaj tiparo" + +#: gnu/packages/gtk.scm:213 +msgid "" +"Pango is the core text and font handling library used in GNOME\n" +"applications. It has extensive support for the different writing syste= ms\n" +"used throughout the world." +msgstr "" + +#: gnu/packages/gtk.scm:239 +msgid "Obsolete pango functions" +msgstr "Malrekomendindaj funkcioj de Pango" + +#: gnu/packages/gtk.scm:240 +msgid "" +"Pangox was a X backend to pango. It is now obsolete and no\n" +"longer provided by recent pango releases. pangox-compat provides the\n= " +"functions which were removed." +msgstr "" + +#: gnu/packages/gtk.scm:276 +msgid "GTK+ widget for interactive graph-like environments" +msgstr "" + +#: gnu/packages/gtk.scm:278 +msgid "" +"Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" +"graph-like environments, e.g. modular synths or finite state machine\n" +"diagrams." +msgstr "" + +#: gnu/packages/gtk.scm:330 +msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" +msgstr "Fenestra=C4=B5o kiu pliri=C4=89igas la ordinaran 'GtkTextView' = de GTK+ 2.x" + +#: gnu/packages/gtk.scm:332 +msgid "" +"GtkSourceView is a portable C library that extends the standard GTK+\n" +"framework for multiline text editing with support for configurable synt= ax\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" +"printing and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 +msgid "GNOME image loading and manipulation library" +msgstr "Biblioteko de GNOME por =C5=9Dargi kaj manipuli bildojn" + +#: gnu/packages/gtk.scm:431 +msgid "" +"GdkPixbuf is a library for image loading and manipulation developed\n" +"in the GNOME project." +msgstr "" + +#: gnu/packages/gtk.scm:474 +msgid "Assistive Technology Service Provider Interface, core components" +msgstr "'Asista Teknologia Serv-Provizila Interfaco', =C4=89efaj element= oj" + +#: gnu/packages/gtk.scm:476 +msgid "" +"The Assistive Technology Service Provider Interface, core components,\n= " +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:509 +msgid "Assistive Technology Service Provider Interface, ATK bindings" +msgstr "'Asista Teknologia Serv-Provizila Interfaco', bindoj de ATK" + +#: gnu/packages/gtk.scm:511 +msgid "" +"The Assistive Technology Service Provider Interface\n" +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:568 +msgid "Cross-platform toolkit for creating graphical user interfaces" +msgstr "Plursistema ilaro por krei grafik-uzantajn interfacojn" + +#: gnu/packages/gtk.scm:570 +msgid "" +"GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" +"graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" +"suitable for projects ranging from small one-off tools to complete\n" +"application suites." +msgstr "" + +#: gnu/packages/gtk.scm:705 +msgid "Cairo bindings for GNU Guile" +msgstr "Bindoj de Cairo por GNU Guile" + +#: gnu/packages/gtk.scm:707 +msgid "" +"Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" +"Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" +"stable, providing a firm base on which to do graphics work. Finally, a= nd\n" +"importantly, it is pleasant to use. You get a powerful and well-mainta= ined\n" +"graphics library with all of the benefits of Scheme: memory management,= \n" +"exceptions, macros, and a dynamic programming environment." +msgstr "" + +#: gnu/packages/gtk.scm:747 +msgid "Render SVG images using Cairo from Guile" +msgstr "" + +#: gnu/packages/gtk.scm:749 +msgid "" +"Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" +"images onto Cairo surfaces." +msgstr "" + +#: gnu/packages/gtk.scm:793 +#, fuzzy +msgid "Create SVG or PDF presentations in Guile" +msgstr "Krei diagramojn kaj grafika=C4=B5ojn en Guile" + +#: gnu/packages/gtk.scm:795 +msgid "" +"Guile-Present defines a declarative vocabulary for presentations,\n" +"together with tools to render presentation documents as SVG or PDF.\n" +"Guile-Present can be used to make presentations programmatically, but a= lso\n" +"includes a tools to generate PDF presentations out of Org mode and Texi= nfo\n" +"documents." +msgstr "" + +#: gnu/packages/gtk.scm:829 +msgid "C++ bindings to the Cairo 2D graphics library" +msgstr "Bindoj de C++ por la 2D-grafika biblioteko Cairo" + +#: gnu/packages/gtk.scm:831 +msgid "" +"Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " +"library." +msgstr "" + +#: gnu/packages/gtk.scm:855 +msgid "C++ interface to the Pango text rendering library" +msgstr "Interfaco C++ por la tekst-bildiga biblioteko Pango" + +#: gnu/packages/gtk.scm:857 +msgid "" +"Pangomm provides a C++ programming interface to the Pango text renderin= g\n" +"library." +msgstr "" + +#: gnu/packages/gtk.scm:878 +msgid "C++ interface to the ATK accessibility library" +msgstr "Interfaco C++ por la alirebla biblioteko ATK" + +#: gnu/packages/gtk.scm:880 +msgid "" +"ATKmm provides a C++ programming interface to the ATK accessibility\n" +"toolkit." +msgstr "" + +#: gnu/packages/gtk.scm:907 +msgid "C++ interface to the GTK+ graphical user interface library" +msgstr "Interfaco C++ por la grafik-uzanta interfaca biblioteko GTK+" + +#: gnu/packages/gtk.scm:909 +msgid "" +"gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" +"extensive documentation, including API reference and a tutorial." +msgstr "" + +#: gnu/packages/gtk.scm:968 +msgid "Python bindings for cairo" +msgstr "Bindoj de Python por Cairo" + +#: gnu/packages/gtk.scm:970 +msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." +msgstr "" + +#: gnu/packages/gtk.scm:1053 +msgid "Python bindings for GTK+" +msgstr "Bindoj de Python por GTK+" + +#: gnu/packages/gtk.scm:1055 +msgid "" +"PyGTK allows you to write full featured GTK programs in Python. It is\= n" +"targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" +"write GNOME applications." +msgstr "" + +#: gnu/packages/gtk.scm:1086 +msgid "Library for minimalistic gtk+3 user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:1087 +msgid "" +"Girara is a library that implements a user interface that\n" +"focuses on simplicity and minimalism. Currently based on GTK+, a\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" +"main components: a so-called view widget that represents the actual\n" +"application, an input bar that is used to execute commands of the\n" +"application and the status bar which provides the user with current\n" +"information." +msgstr "" + +#: gnu/packages/gtk.scm:1130 +msgid "Documentation generator from C source code" +msgstr "" + +#: gnu/packages/gtk.scm:1132 +msgid "" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" +"can also be used to document application code." +msgstr "" + +#: gnu/packages/gtk.scm:1159 +#, fuzzy +msgid "Theming engines for GTK+ 2.x" +msgstr "Bindoj de Python por GTK+" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 +msgid "Scheme implementation intended especially for extensions" +msgstr "Realigo de Scheme celata speciale por aldonoj" + +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 +msgid "" +"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" +"official extension language of the GNU system. It is an implementation= of\n" +"the Scheme language which can be easily embedded in other applications = to\n" +"provide a convenient means of extending the functionality of the " +"application\n" +"without requiring the source code to be rewritten." +msgstr "" + +#: gnu/packages/guile.scm:213 +msgid "Snapshot of what will become version 2.2 of GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 +msgid "Framework for building readers for GNU Guile" +msgstr "Framo por konstrui legilojn por GNU Guile" + +#: gnu/packages/guile.scm:327 +msgid "" +"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"\n" +"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" +"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" +"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" +"document syntax.\n" +"\n" +"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" +"hopefully more powerful and flexible (for instance, one may instantiate= as\n" +"many readers as needed)." +msgstr "" + +#: gnu/packages/guile.scm:376 +msgid "Guile bindings to ncurses" +msgstr "Bindoj de Guile por ncurses" + +#: gnu/packages/guile.scm:378 +msgid "" +"guile-ncurses provides Guile language bindings for the ncurses\n" +"library." +msgstr "" +"guile-ncurses provizas lingvo-bindojn de Guile por la biblioteko\n" +"ncurses." + +#: gnu/packages/guile.scm:398 +msgid "Run jobs at scheduled times" +msgstr "Lan=C4=89i taskojn je anta=C5=ADplanitaj horoj" + +#: gnu/packages/guile.scm:400 +msgid "" +"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" +"Guile, so its configuration can be written in Scheme; the original cron= \n" +"format is also supported." +msgstr "" + +#: gnu/packages/guile.scm:428 +msgid "Collection of useful Guile Scheme modules" +msgstr "Aro da utilaj moduloj de Guile Scheme" + +#: gnu/packages/guile.scm:430 +msgid "" +"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" +"modules, allowing for people to cooperate integrating their generic Gui= le\n" +"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" +"for Guile\"." +msgstr "" + +#: gnu/packages/guile.scm:461 +msgid "JSON module for Guile" +msgstr "Modulo JSON por Guile" + +#: gnu/packages/guile.scm:463 +msgid "" +"Guile-json supports parsing and building JSON documents according to th= e\n" +"http:://json.org specification. These are the main features:\n" +"- Strictly complies to http://json.org specification.\n" +"- Build JSON documents programmatically via macros.\n" +"- Unicode support for strings.\n" +"- Allows JSON pretty printing." +msgstr "" + +#: gnu/packages/guile.scm:534 +msgid "MiniKanren declarative logic system, packaged for Guile" +msgstr "" + +#: gnu/packages/guile.scm:536 +msgid "" +"MiniKanren is a relational programming extension to the Scheme\n" +"programming Language, written as a smaller version of Kanren suitable f= or\n" +"pedagogical purposes. It is featured in the book, The Reasoned Schemer= ,\n" +"written by Dan Friedman, William Byrd, and Oleg Kiselyov.\n" +"\n" +"This is Ian Price's r6rs packaged version of miniKanren, which deviates= \n" +"slightly from miniKanren mainline.\n" +"\n" +"See http://minikanren.org/ for more on miniKanren generally." +msgstr "" + +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 +msgid "Guile bindings to the GDBM library via Guile's FFI" +msgstr "" + +#: gnu/packages/guile.scm:687 +msgid "" +"Guile bindings to the GDBM key-value storage system, using\n" +"Guile's foreign function interface." +msgstr "" + +#: gnu/packages/guile.scm:727 +msgid "Functional static site generator" +msgstr "" + +#: gnu/packages/guile.scm:728 +msgid "" +"Haunt is a static site generator written in Guile\n" +"Scheme. Haunt features a functional build system and an extensible\n" +"interface for reading articles in any format." +msgstr "" + +#: gnu/packages/guile.scm:758 +msgid "Redis client library for Guile" +msgstr "" + +#: gnu/packages/guile.scm:759 +msgid "" +"Guile-redis provides a Scheme interface to the Redis\n" +"key-value cache and store." +msgstr "" + +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" +msgstr "" + +#: gnu/packages/guile.scm:834 +msgid "" +"Wisp is a syntax for Guile which provides a Python-like\n" +"whitespace-significant language. It may be easier on the eyes for some= \n" +"users and in some situations." +msgstr "" + +#: gnu/packages/guile.scm:867 +#, fuzzy +msgid "2D/3D game engine for GNU Guile" +msgstr "Bindoj de Cairo por GNU Guile" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +#, fuzzy +msgid "Generate C bindings for Guile" +msgstr "Bindoj de Cairo por GNU Guile" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 +msgid "Create, edit, compose, or convert bitmap images" +msgstr "Krei, redakti, kunmeti, a=C5=AD konverti bitmapajn bildojn" + +#: gnu/packages/imagemagick.scm:103 +msgid "" +"ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" +"text, lines, polygons, ellipses and B=C3=A9zier curves." +msgstr "" + +#: gnu/packages/imagemagick.scm:147 +msgid "Perl interface to ImageMagick" +msgstr "" + +#: gnu/packages/imagemagick.scm:148 +msgid "" +"This Perl extension allows the reading, manipulation and\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" +"script." +msgstr "" + +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." +msgstr "" + +#: gnu/packages/image.scm:71 +msgid "Library for handling PNG files" +msgstr "Biblioteko por trakti dosierojn PNG" + +#: gnu/packages/image.scm:73 +msgid "" +"Libpng is the official PNG (Portable Network Graphics) reference\n" +"library. It supports almost all PNG features and is extensible." +msgstr "" + +#: gnu/packages/image.scm:89 +msgid "Library for handling JPEG files" +msgstr "Biblioteko por trakti dosierojn JPEG" + +#: gnu/packages/image.scm:91 +msgid "" +"Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" +"JPEG is a standardized compression method for full-color and gray-scale= \n" +"images.\n" +"The included programs provide conversion between the JPEG format and\n" +"image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." +msgstr "" + +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 +msgid "Library for handling TIFF files" +msgstr "Biblioteko por trakti dosierojn TIFF" + +#: gnu/packages/image.scm:159 +msgid "" +"Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" +"used for storing image data.\n" +"Included are a library, libtiff, for reading and writing TIFF and a sma= ll\n" +"collection of tools for doing simple manipulations of TIFF images." +msgstr "" + +#: gnu/packages/image.scm:202 +msgid "Library for reading images in the Microsoft WMF format" +msgstr "Biblioteko por legi bildojn la=C5=AD la formo Microsoft WMF" + +#: gnu/packages/image.scm:204 +msgid "" +"libwmf is a library for reading vector images in Microsoft's native\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" +"the W3C's XML-based Scaleable Vector Graphic (SVG) format." +msgstr "" + +#: gnu/packages/image.scm:271 +msgid "Library and tools for image processing and analysis" +msgstr "" + +#: gnu/packages/image.scm:273 +msgid "" +"Leptonica is a C library and set of command-line tools for efficient\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" +"scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" +"arithmetic ops." +msgstr "" + +#: gnu/packages/image.scm:296 +msgid "Decoder of the JBIG2 image compression format" +msgstr "Dekodilo de la bild-densiga formo JBIG2" + +#: gnu/packages/image.scm:298 +msgid "" +"JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" +"monochrome) images at moderately high resolution, and in particular sca= nned\n" +"paper documents. In this domain it is very efficient, offering compres= sion\n" +"ratios on the order of 100:1.\n" +"\n" +"This is a decoder only implementation, and currently is in the alpha\n" +"stage, meaning it doesn't completely work yet. However, it is\n" +"maintaining parity with available encoders, so it is useful for real\n" +"work." +msgstr "" + +#: gnu/packages/image.scm:333 +msgid "JPEG 2000 codec" +msgstr "Kodeko JPEG 2000" + +#: gnu/packages/image.scm:335 +msgid "" +"The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" +"been developed in order to promote the use of JPEG 2000, the new\n" +"still-image compression standard from the Joint Photographic Experts\n" +"Group (JPEG).\n" +"\n" +"In addition to the basic codec, various other features are under\n" +"development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats= ,\n" +"an indexing tool useful for the JPIP protocol, JPWL-tools for\n" +"error-resilience, a Java-viewer for j2k-images, ..." +msgstr "" + +#: gnu/packages/image.scm:414 +msgid "Tools and library for working with GIF images" +msgstr "Iloj kaj biblioteko por labori kun bildoj GIF" + +#: gnu/packages/image.scm:416 +msgid "" +"GIFLIB is a library for reading and writing GIF images. It is API and\= n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" +"algorithm was patented. Tools are also included to convert, manipulate= ,\n" +"compose, and analyze GIF images." +msgstr "" + +#: gnu/packages/image.scm:437 +#, fuzzy +msgid "GIF decompression library" +msgstr "PDF-bildiga biblioteko" + +#: gnu/packages/image.scm:439 +msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." +msgstr "" + +#: gnu/packages/image.scm:468 +msgid "Loading, saving, rendering and manipulating image files" +msgstr "=C5=9Cargi, konservi, bildigi kaj manipuli bild-dosierojn" + +#: gnu/packages/image.scm:470 +msgid "" +"Imlib2 is a library that does image file loading and saving as well as\= n" +"rendering, manipulation, arbitrary polygon support, etc.\n" +"\n" +"It does ALL of these operations FAST. Imlib2 also tries to be highly\n= " +"intelligent about doing them, so writing naive programs can be done eas= ily,\n" +"without sacrificing speed.\n" +"\n" +"This is a complete rewrite over the Imlib 1.x series. The architecture= is\n" +"more modular, simple, and flexible." +msgstr "" + +#: gnu/packages/image.scm:498 +msgid "Wrapper library for imlib2" +msgstr "=C4=88irka=C5=ADira biblioteko por imlib2" + +#: gnu/packages/image.scm:500 +msgid "" +"Giblib is a simple library which wraps imlib2's context API, avoiding\n= " +"all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" +"supplies a generic doubly-linked list and some string functions." +msgstr "" + +#: gnu/packages/image.scm:540 +msgid "Library for handling popular graphics image formats" +msgstr "Biblioteko por trakti popularajn grafika=C4=B5ajn bild-formojn" + +#: gnu/packages/image.scm:542 +msgid "" +"FreeImage is a library for developers who would like to support popular= \n" +"graphics image formats like PNG, BMP, JPEG, TIFF and others." +msgstr "" + +#: gnu/packages/image.scm:592 +#, fuzzy +msgid "Computer vision library" +msgstr "Plursistema son-biblioteko" + +#: gnu/packages/image.scm:594 +msgid "" +"VIGRA stands for Vision with Generic Algorithms. It is an image\n" +"processing and analysis library that puts its main emphasis on customiz= able\n" +"algorithms and data structures. It is particularly strong for\n" +"multi-dimensional image processing." +msgstr "" + +#: gnu/packages/image.scm:625 +msgid "Lossless and lossy image compression" +msgstr "" + +#: gnu/packages/image.scm:627 +msgid "" +"WebP is a new image format that provides lossless and lossy compression= \n" +"for images. WebP lossless images are 26% smaller in size compared to\n= " +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" +"equivalent SSIM index. WebP supports lossless transparency (also known= as\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" +"to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" +"channels." +msgstr "" + +#: gnu/packages/image.scm:655 +#, fuzzy +msgid "Library for handling MNG files" +msgstr "Biblioteko por trakti dosierojn PNG" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +#, fuzzy +msgid "Library for manipulating many image formats" +msgstr "Biblioteko por manipuli la a=C5=ADdvidan formon ogg" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" +msgstr "" + +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." +msgstr "" + +#: gnu/packages/inkscape.scm:88 +msgid "Vector graphics editor" +msgstr "Vektor-grafika redaktilo" + +#: gnu/packages/inkscape.scm:89 +msgid "" +"Inkscape is a vector graphics editor. What sets Inkscape\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" +"as the native format." +msgstr "" + +#: gnu/packages/jemalloc.scm:47 +msgid "General-purpose scalable concurrent malloc implementation" +msgstr "" + +#: gnu/packages/jemalloc.scm:49 +msgid "" +"This library providing a malloc(3) implementation that emphasizes\n" +"fragmentation avoidance and scalable concurrency support." +msgstr "" + +#: gnu/packages/key-mon.scm:65 +msgid "Show keyboard and mouse status" +msgstr "" + +#: gnu/packages/key-mon.scm:67 +msgid "" +"The key-mon utility displays the current keyboard and mouse status.\n" +"This is useful for teaching and screencasts." +msgstr "" + +#: gnu/packages/less.scm:41 +msgid "Paginator for terminals" +msgstr "" + +#: gnu/packages/less.scm:43 +msgid "" +"GNU less is a pager, a program that allows you to view large amounts\n" +"of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" +"text editors." +msgstr "" + +#: gnu/packages/lesstif.scm:47 +msgid "Clone of the Motif toolkit for the X window system" +msgstr "" + +#: gnu/packages/lesstif.scm:48 +msgid "Clone of the Motif toolkit for the X window system." +msgstr "" + +#: gnu/packages/libreoffice.scm:86 +msgid "General purpose formula parser and interpreter" +msgstr "" + +#: gnu/packages/libreoffice.scm:87 +msgid "" +"Ixion is a library for calculating the results of formula\n" +"expressions stored in multiple named targets, or \"cells\". The cells = can\n" +"be referenced from each other, and the library takes care of resolving\= n" +"their dependencies automatically upon calculation." +msgstr "" + +#: gnu/packages/libreoffice.scm:112 +msgid "File import filter library for spreadsheet documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:113 +msgid "" +"Orcus is a library that provides a collection of standalone\n" +"file processing filters. It is currently focused on providing filters = for\n" +"spreadsheet documents. The library includes import filters for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" +"CSV, CSS and XML." +msgstr "" + +#: gnu/packages/libreoffice.scm:147 +msgid "Document importer for office suites" +msgstr "" + +#: gnu/packages/libreoffice.scm:148 +msgid "" +"Librevenge is a base library for writing document import\n" +"filters. It has interfaces for text documents, vector graphics,\n" +"spreadsheets and presentations." +msgstr "" + +#: gnu/packages/libreoffice.scm:173 +msgid "Library for importing WordPerfect documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:174 +msgid "" +"Libwpd is a C++ library designed to help process\n" +"WordPerfect documents. It is most commonly used to import such documen= ts\n" +"into other word processors." +msgstr "" + +#: gnu/packages/libreoffice.scm:206 +msgid "Library for import of reflowable e-book formats" +msgstr "" + +#: gnu/packages/libreoffice.scm:207 +msgid "" +"Libe-book is a library and a set of tools for reading and\n" +"converting various reflowable e-book formats. Currently supported are:= \n" +"Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped file= s),\n" +"PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled\n" +"cellphones), TCR (simple compressed text format), TealDoc, zTXT,\n" +"ZVR (simple compressed text format)." +msgstr "" + +#: gnu/packages/libreoffice.scm:236 +msgid "Library and tools for the WordPerfect Graphics format" +msgstr "" + +#: gnu/packages/libreoffice.scm:237 +msgid "" +"The libwpg project provides a library and tools for\n" +"working with graphics in the WPG (WordPerfect Graphics) format." +msgstr "" + +#: gnu/packages/libreoffice.scm:278 +#, fuzzy +msgid "CMIS client library" +msgstr "Klienta biblioteko por \"Music Player Daemon\"" + +#: gnu/packages/libreoffice.scm:279 +msgid "" +"LibCMIS is a C++ client library for the CMIS interface. It\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" +"as Alfresco or Nuxeo." +msgstr "" + +#: gnu/packages/libreoffice.scm:310 +#, fuzzy +msgid "Library for parsing the AbiWord format" +msgstr "Biblioteko por manipuli la a=C5=ADdvidan formon ogg" + +#: gnu/packages/libreoffice.scm:311 +msgid "" +"Libabw is a library that parses the file format of\n" +"AbiWord documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:341 +#, fuzzy +msgid "Library for parsing the CorelDRAW format" +msgstr "Biblioteko por manipuli la a=C5=ADdvidan formon ogg" + +#: gnu/packages/libreoffice.scm:342 +msgid "" +"Libcdr is a library that parses the file format of\n" +"CorelDRAW documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:371 +#, fuzzy +msgid "Library for parsing the Apple Keynote format" +msgstr "Biblioteko por manipuli la a=C5=ADdvidan formon ogg" + +#: gnu/packages/libreoffice.scm:372 +msgid "" +"Libetonyek is a library that parses the file format of\n" +"Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." +msgstr "" + +#: gnu/packages/libreoffice.scm:389 +#, fuzzy +msgid "Text Categorization library" +msgstr "Datumar-fonta abstrakta biblioteko" + +#: gnu/packages/libreoffice.scm:390 +msgid "" +"Libexttextcat is an N-Gram-Based Text Categorization\n" +"library primarily intended for language guessing." +msgstr "" + +#: gnu/packages/libreoffice.scm:416 +#, fuzzy +msgid "Library for parsing the FreeHand format" +msgstr "Biblioteko por manipuli la a=C5=ADdvidan formon ogg" + +#: gnu/packages/libreoffice.scm:417 +msgid "" +"Libfreehand is a library that parses the file format of\n" +"Aldus/Macromedia/Adobe FreeHand documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:443 +#, fuzzy +msgid "Library for parsing the Microsoft Publisher format" +msgstr "Biblioteko por legi bildojn la=C5=AD la formo Microsoft WMF" + +#: gnu/packages/libreoffice.scm:444 +msgid "" +"Libmspub is a library that parses the file format of\n" +"Microsoft Publisher documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:472 +#, fuzzy +msgid "Library for parsing the PageMaker format" +msgstr "Biblioteko por manipuli la a=C5=ADdvidan formon ogg" + +#: gnu/packages/libreoffice.scm:473 +msgid "" +"Libpagemaker is a library that parses the file format of\n" +"Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" +"created by PageMaker version 6.x and 7." +msgstr "" + +#: gnu/packages/libreoffice.scm:508 +#, fuzzy +msgid "Library for parsing the Microsoft Visio format" +msgstr "Biblioteko por legi bildojn la=C5=AD la formo Microsoft WMF" + +#: gnu/packages/libreoffice.scm:509 +msgid "" +"Libvisio is a library that parses the file format of\n" +"Microsoft Visio documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:537 +msgid "ODF (Open Document Format) library" +msgstr "" + +#: gnu/packages/libreoffice.scm:538 +msgid "" +"Libodfgen is a library for generating documents in the\n" +"Open Document Format (ODF). It provides generator implementations for = all\n" +"document interfaces supported by librevenge:\n" +"text documents, vector drawings, presentations and spreadsheets." +msgstr "" + +#: gnu/packages/libreoffice.scm:568 +msgid "Import library for some old Macintosh text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:569 +msgid "" +"Libmwaw contains some import filters for old Macintosh\n" +"text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" +"spreadsheet documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:598 +msgid "Import library for Microsoft Works text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:599 +#, fuzzy +msgid "" +"Libwps is a library for importing files in the Microsoft\n" +"Works word processor file format." +msgstr "Biblioteko por legi bildojn la=C5=AD la formo Microsoft WMF" + +#: gnu/packages/libreoffice.scm:617 +msgid "" +"Hunspell is a spell checker and morphological analyzer\n" +"library and program designed for languages with rich morphology and com= plex\n" +"word compounding or character encoding." +msgstr "" + +#: gnu/packages/libreoffice.scm:638 +#, fuzzy +msgid "Hyphenation library" +msgstr "PDF-bildiga biblioteko" + +#: gnu/packages/libreoffice.scm:639 +msgid "" +"Hyphen is a hyphenation library using TeX hyphenation\n" +"patterns, which are pre-processed by a perl script." +msgstr "" + +#: gnu/packages/libreoffice.scm:662 +msgid "Thesaurus" +msgstr "" + +#: gnu/packages/libreoffice.scm:663 +msgid "" +"MyThes is a simple thesaurus that uses a structured text\n" +"data file and an index file with binary search to look up words and phr= ases\n" +"and to return information on pronunciations, meanings and synonyms." +msgstr "" + +#: gnu/packages/libreoffice.scm:829 +msgid "Office suite" +msgstr "" + +#: gnu/packages/libreoffice.scm:830 +msgid "" +"LibreOffice is a comprehensive office suite. It contains\n" +"a number of components: Writer, a word processor; Calc, a spreadsheet\n= " +"application; Impress, a presentation engine; Draw, a drawing and\n" +"flowcharting application; Base, a database and database frontend;\n" +"Math for editing mathematics." +msgstr "" + +#: gnu/packages/linux.scm:155 +msgid "GNU Linux-Libre kernel headers" +msgstr "GNU Linux-Libre kernaj kapdosieroj" + +#: gnu/packages/linux.scm:156 +msgid "Headers of the Linux-Libre kernel." +msgstr "Kapdosieroj de la kerno Linux-Libre." + +#: gnu/packages/linux.scm:187 +msgid "Tools for loading and managing Linux kernel modules" +msgstr "Iloj por =C5=9Dargi kaj administri linuks-kernajn modulojn" + +#: gnu/packages/linux.scm:189 +msgid "" +"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" +"`insmod', `lsmod', and more." +msgstr "" + +#: gnu/packages/linux.scm:322 +msgid "100% free redistribution of a cleaned Linux kernel" +msgstr "100% libera redistribuo de purigita Linuks-kerno" + +#: gnu/packages/linux.scm:324 +msgid "" +"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" +"It has been modified to remove all non-free binary blobs." +msgstr "" +"GNU Linux-Libre estas libera varia=C4=B5o de la linuksa kerno.\n" +"=C4=9Ci estas modifita por forigi =C4=89iujn ne-liberajn ciferecajn sen= koduma=C4=B5ojn." + +#: gnu/packages/linux.scm:384 +msgid "Pluggable authentication modules for Linux" +msgstr "Konekteblaj a=C5=ADtentikigaj moduloj por Linukso" + +#: gnu/packages/linux.scm:386 +msgid "" +"A *Free* project to implement OSF's RFC 86.0.\n" +"Pluggable authentication modules are small shared object files that can= \n" +"be used through the PAM API to perform tasks, like authenticating a use= r\n" +"at login. Local and dynamic reconfiguration are its key features." +msgstr "" + +#: gnu/packages/linux.scm:413 +msgid "Small utilities that use the proc filesystem" +msgstr "Etaj utila=C4=B5oj kiuj uzas la dosiersistemon proc" + +#: gnu/packages/linux.scm:415 +msgid "" +"This PSmisc package is a set of some small useful utilities that\n" +"use the proc filesystem. We're not about changing the world, but\n" +"providing the system administrator with some help in common tasks." +msgstr "" + +#: gnu/packages/linux.scm:480 +msgid "Collection of utilities for the Linux kernel" +msgstr "Aro da utila=C4=B5oj por la Linuks-kerno" + +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." +msgstr "" + +#: gnu/packages/linux.scm:522 +msgid "Utilities that give information about processes" +msgstr "Utila=C4=B5oj kiuj informas pri procezoj" + +#: gnu/packages/linux.scm:524 +msgid "" +"Procps is the package that has a bunch of small useful utilities\n" +"that give information about processes using the Linux /proc file system= .\n" +"The package includes the programs ps, top, vmstat, w, kill, free,\n" +"slabtop, and skill." +msgstr "" + +#: gnu/packages/linux.scm:549 +msgid "Tools for working with USB devices, such as lsusb" +msgstr "Iloj por labori kun USB-aparatoj, kiel lsusb" + +#: gnu/packages/linux.scm:551 +msgid "Tools for working with USB devices, such as lsusb." +msgstr "Iloj por labori kun USB-aparatoj, kiel lsusb." + +#: gnu/packages/linux.scm:625 +msgid "Creating and checking ext2/ext3/ext4 file systems" +msgstr "Kreo kaj kontrolo de dosiersistemoj ext2/ext3/ext4" + +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." +msgstr "" +"Tiu =C4=89i pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/= ext4." + +#: gnu/packages/linux.scm:669 +msgid "Statically-linked fsck.* commands from e2fsprogs" +msgstr "Statik-ligitaj komandoj fsck.* el e2fsprogs" + +#: gnu/packages/linux.scm:671 +msgid "" +"This package provides statically-linked command of fsck.ext[234] taken\= n" +"from the e2fsprogs package. It is meant to be used in initrds." +msgstr "" + +#: gnu/packages/linux.scm:690 +msgid "Recover deleted files from ext2/3/4 partitions" +msgstr "" + +#: gnu/packages/linux.scm:692 +msgid "" +"Extundelete is a set of tools that can recover deleted files from an\n" +"ext3 or ext4 partition." +msgstr "" + +#: gnu/packages/linux.scm:724 +msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" +msgstr "Neniu ne-rezervita regiono en dosiersistemoj ext2/ext3/ext4" + +#: gnu/packages/linux.scm:726 +msgid "" +"The zerofree command scans the free blocks in an ext2 file system and\n= " +"fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" +"images more compressible." +msgstr "" + +#: gnu/packages/linux.scm:745 +msgid "System call tracer for Linux" +msgstr "Sistem-voka =C5=9Dpursekvilo por Linukso" + +#: gnu/packages/linux.scm:747 +msgid "" +"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" +"trace of all the system calls made by a another process/program." +msgstr "" + +#: gnu/packages/linux.scm:768 +#, fuzzy +msgid "Library call tracer for Linux" +msgstr "Sistem-voka =C5=9Dpursekvilo por Linukso" + +#: gnu/packages/linux.scm:770 +msgid "" +"ltrace intercepts and records dynamic library calls which are called by= \n" +"an executed process and the signals received by that process. It can a= lso\n" +"intercept and print the system calls executed by the program." +msgstr "" + +#: gnu/packages/linux.scm:790 +msgid "The Advanced Linux Sound Architecture libraries" +msgstr "La bibliotekoj de Altnivela Linuksa Sona Arkitekturo" + +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 +msgid "" +"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" +"MIDI functionality to the Linux-based operating system." +msgstr "" +"La Altnivela Linuksa Sona Arkitekturo (ALSA) provizas sonan kaj\n" +"MIDI-an funkciojn por linuks-surbazita operaci-sistemo." + +#: gnu/packages/linux.scm:832 +msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" +msgstr "Utila=C4=B5oj por la Altnivela Linuksa Sona Arkitekturo (ALSA)" + +#: gnu/packages/linux.scm:859 +msgid "Program to configure the Linux IP packet filtering rules" +msgstr "Programo por agordi la IP-pakajn filtrajn regulojn de Linukso" + +#: gnu/packages/linux.scm:861 +msgid "" +"iptables is the userspace command line program used to configure the\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" +"packet filter." +msgstr "" + +#: gnu/packages/linux.scm:908 +msgid "Utilities for controlling TCP/IP networking and traffic in Linux" +msgstr "Utila=C4=B5oj por regi reton TCP/IP kaj trafikon en Linukso" + +#: gnu/packages/linux.scm:910 +msgid "" +"Iproute2 is a collection of utilities for controlling TCP/IP\n" +"networking and traffic with the Linux kernel.\n" +"\n" +"Most network configuration manuals still refer to ifconfig and route as= the\n" +"primary network configuration tools, but ifconfig is known to behave\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" +"to support most modern network technologies, as it doesn't use ifconfig= and\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" +"traffic control.\n" +"\n" +"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" +"consists of several tools, of which the most important are ip and tc. = ip\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" +"tools print detailed usage messages and are accompanied by a set of\n" +"manpages." +msgstr "" + +#: gnu/packages/linux.scm:1022 +msgid "Tools for controlling the network subsystem in Linux" +msgstr "Iloj por regi la retan subsistemon en Linukso" + +#: gnu/packages/linux.scm:1024 +msgid "" +"This package includes the important tools for controlling the network\n= " +"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" +"netstat, rarp and route. Additionally, this package contains utilities= \n" +"relating to particular network hardware types (plipconfig, slattach) an= d\n" +"advanced aspects of IP configuration (iptunnel, ipmaddr)." +msgstr "" + +#: gnu/packages/linux.scm:1061 +msgid "Library for working with POSIX capabilities" +msgstr "Biblioteko por labori kun kapabloj POSIX" + +#: gnu/packages/linux.scm:1063 +msgid "" +"Libcap2 provides a programming interface to POSIX capabilities on\n" +"Linux-based operating systems." +msgstr "" +"Libcap2 provizas program-interfacon por kapabloj POSIX en\n" +"operaciumaj sistemoj bazitaj sur Linukso." + +#: gnu/packages/linux.scm:1106 +msgid "Manipulate Ethernet bridges" +msgstr "Manipuli pontojn Ethernet" + +#: gnu/packages/linux.scm:1108 +msgid "" +"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" +"to connect two Ethernet segments together in a protocol independent way= .\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" +"a router). Since forwarding is done at Layer 2, all protocols can go\n= " +"transparently through a bridge." +msgstr "" + +#: gnu/packages/linux.scm:1130 +msgid "NetLink protocol library suite" +msgstr "Biblioteka programaro por la protokolo NetLink" + +#: gnu/packages/linux.scm:1132 +msgid "" +"The libnl suite is a collection of libraries providing APIs to netlink\= n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" +"between the kernel and user space processes. It was designed to be a m= ore\n" +"flexible successor to ioctl to provide mainly networking related kernel= \n" +"configuration and monitoring interfaces." +msgstr "" + +#: gnu/packages/linux.scm:1162 +msgid "Tool for configuring wireless devices" +msgstr "Iloj por agordi linuksajn sendratajn aparatojn" + +#: gnu/packages/linux.scm:1164 +msgid "" +"iw is a new nl80211 based CLI configuration utility for wireless\n" +"devices. It replaces 'iwconfig', which is deprecated." +msgstr "" + +#: gnu/packages/linux.scm:1190 +msgid "Analyze power consumption on Intel-based laptops" +msgstr "Analizi konsumon de potenco en tekkomputiloj bazitaj sur Intel" + +#: gnu/packages/linux.scm:1192 +msgid "" +"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" +"an interactive mode where the user can experiment various power managem= ent\n" +"settings for cases where the operating system has not enabled these\n" +"settings." +msgstr "" + +#: gnu/packages/linux.scm:1214 +msgid "Audio mixer for X and the console" +msgstr "Son-miksilo por X kaj la konzolo" + +#: gnu/packages/linux.scm:1216 +msgid "" +"Aumix adjusts an audio mixer from X, the console, a terminal,\n" +"the command line or a script." +msgstr "" +"Aumix agordas son-miksilo el X, la konzolo, terminalo,\n" +"la komandlinio a=C5=AD el skripto." + +#: gnu/packages/linux.scm:1240 +msgid "Displays the IO activity of running processes" +msgstr "Montri la en/eligan aktiva=C4=B5on de rulantaj procezoj" + +#: gnu/packages/linux.scm:1242 +msgid "" +"Iotop is a Python program with a top like user interface to show the\n" +"processes currently causing I/O." +msgstr "" + +#: gnu/packages/linux.scm:1297 +msgid "Support file systems implemented in user space" +msgstr "Subteni dosiersistemojn realigatajn en la uzant-spaco" + +#: gnu/packages/linux.scm:1299 +msgid "" +"As a consequence of its monolithic design, file system code for Linux\n= " +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" +"user-space processes." +msgstr "" + +#: gnu/packages/linux.scm:1324 +msgid "User-space union file system" +msgstr "Uzant-spaca unuiga dosiersistemo" + +#: gnu/packages/linux.scm:1326 +msgid "" +"UnionFS-FUSE is a flexible union file system implementation in user\n" +"space, using the FUSE library. Mounting a union file system allows you= to\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" +"UnionFS-FUSE additionally supports copy-on-write." +msgstr "" + +#: gnu/packages/linux.scm:1351 +msgid "User-space union file system (statically linked)" +msgstr "Uzant-spaca unuiga dosiersistemo (statike ligita)" + +#: gnu/packages/linux.scm:1396 +msgid "Mount remote file systems over SSH" +msgstr "Munti demalproksimajn dosiersistemojn per SSH" + +#: gnu/packages/linux.scm:1398 +msgid "" +"This is a file system client based on the SSH File Transfer Protocol.\n= " +"Since most SSH servers already support this protocol it is very easy to= set\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" +"file system is as easy as logging into the server with an SSH client." +msgstr "" + +#: gnu/packages/linux.scm:1427 +msgid "Tools for non-uniform memory access (NUMA) machines" +msgstr "Iloj por ma=C5=9Dinoj kun ne-kontinua memor-aliro (NUMA)" + +#: gnu/packages/linux.scm:1429 +msgid "" +"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" +"memory is not all in one place. The numactl program allows you to run = your\n" +"application program on specific CPU's and memory nodes. It does this b= y\n" +"supplying a NUMA memory policy to the operating system before running y= our\n" +"program.\n" +"\n" +"The package contains other commands, such as numademo, numastat and mem= hog.\n" +"The numademo command provides a quick overview of NUMA performance on y= our\n" +"system." +msgstr "" + +#: gnu/packages/linux.scm:1492 +msgid "Linux keyboard utilities and keyboard maps" +msgstr "Linuksaj klavar-utila=C4=B5oj kaj klavar-mapoj" + +#: gnu/packages/linux.scm:1494 +msgid "" +"This package contains keytable files and keyboard utilities compatible\= n" +"for systems using the Linux kernel. This includes commands such as\n" +"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +msgstr "" + +#: gnu/packages/linux.scm:1513 +msgid "Monitor file accesses" +msgstr "Observi dosier-alirojn" + +#: gnu/packages/linux.scm:1515 +msgid "" +"The inotify-tools packages provides a C library and command-line tools\= n" +"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +msgstr "" + +#: gnu/packages/linux.scm:1553 +msgid "Kernel module tools" +msgstr "Iloj por kerno-moduloj" + +#: gnu/packages/linux.scm:1554 +msgid "" +"Kmod is a set of tools to handle common tasks with Linux\n" +"kernel modules like insert, remove, list, check properties, resolve\n" +"dependencies and aliases.\n" +"\n" +"These tools are designed on top of libkmod, a library that is shipped w= ith\n" +"kmod. The aim is to be compatible with tools, configurations and indic= es\n" +"from the module-init-tools project." +msgstr "" + +#: gnu/packages/linux.scm:1586 +msgid "Userspace device management" +msgstr "Administro de uzant-spaca aparato" + +#: gnu/packages/linux.scm:1587 +msgid "" +"Udev is a daemon which dynamically creates and removes\n" +"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" +"time." +msgstr "" + +#: gnu/packages/linux.scm:1659 +msgid "Logical volume management for Linux" +msgstr "Administro de logika volumo por Linukso" + +#: gnu/packages/linux.scm:1661 +msgid "" +"LVM2 is the logical volume management tool set for Linux-based systems.= \n" +"This package includes the user-space libraries and tools, including the= " +"device\n" +"mapper. Kernel components are part of Linux-libre." +msgstr "" + +#: gnu/packages/linux.scm:1697 +msgid "Tools for manipulating Linux Wireless Extensions" +msgstr "Iloj por manipuli linuksan \"Wireless Extensions\"" + +#: gnu/packages/linux.scm:1698 +msgid "" +"Wireless Tools are used to manipulate the now-deprecated\n" +"Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " +"Extension was an interface allowing you to set Wireless LAN specific\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" +"interface." +msgstr "" + +#: gnu/packages/linux.scm:1770 +msgid "Central regulatory domain agent (CRDA) for WiFi" +msgstr "" + +#: gnu/packages/linux.scm:1772 +msgid "" +"The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" +"communication between the kernel Linux and user space for regulatory\n" +"compliance." +msgstr "" + +#: gnu/packages/linux.scm:1818 +#, fuzzy +msgid "Wireless regulatory database" +msgstr "Datumbazo de Berkeley" + +#: gnu/packages/linux.scm:1820 +msgid "" +"This package contains the wireless regulatory database Central\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" +"country-specific regulations for the wireless spectrum." +msgstr "" + +#: gnu/packages/linux.scm:1891 +msgid "Utilities to read temperature/voltage/fan sensors" +msgstr "Utila=C4=B5oj por legi temperaturan/tensian/ventolilan sensilojn= " + +#: gnu/packages/linux.scm:1893 +msgid "" +"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" +"you to access information from temperature, voltage, and fan speed sens= ors.\n" +"It works with most newer systems." +msgstr "" + +#: gnu/packages/linux.scm:1920 +msgid "I2C tools for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1922 +msgid "" +"The i2c-tools package contains a heterogeneous set of I2C tools for\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" +"EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" +"SMBus access." +msgstr "" + +#: gnu/packages/linux.scm:1958 +msgid "Hardware health information viewer" +msgstr "Montrilo de informoj pri la aparatara sano" + +#: gnu/packages/linux.scm:1960 +msgid "" +"Xsensors reads data from the libsensors library regarding hardware\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" +"in a digital read-out." +msgstr "" + +#: gnu/packages/linux.scm:2008 +msgid "Linux profiling with performance counters" +msgstr "Linuksa trajt-esplorado kun rendiment-akumuliloj" + +#: gnu/packages/linux.scm:2010 +msgid "" +"perf is a tool suite for profiling using hardware performance counters,= \n" +"with support in the Linux kernel. perf can instrument CPU performance\= n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" +"of lightweight profiling. This package contains the user-land tools an= d in\n" +"particular the 'perf' command." +msgstr "" + +#: gnu/packages/linux.scm:2033 +msgid "Simple tool for creating Linux namespace containers" +msgstr "Simpla ilo por krei linuksajn nomspacajn ujojn" + +#: gnu/packages/linux.scm:2034 +msgid "" +"pflask is a simple tool for creating Linux namespace\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" +"an isolated container, created with the help of Linux namespaces. It i= s\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" +"thanks to the use of namespaces." +msgstr "" + +#: gnu/packages/linux.scm:2061 +msgid "Tune hard disk parameters for high performance" +msgstr "" + +#: gnu/packages/linux.scm:2063 +msgid "" +"Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" +"is for enabling irq-unmasking and IDE multiple-mode." +msgstr "" + +#: gnu/packages/linux.scm:2086 +#, fuzzy +msgid "Tool for enabling and disabling wireless devices" +msgstr "Iloj por agordi linuksajn sendratajn aparatojn" + +#: gnu/packages/linux.scm:2088 +msgid "" +"rfkill is a simple tool for accessing the rfkill device interface,\n" +"which is used to enable and disable wireless networking devices, typica= lly\n" +"WLAN, Bluetooth and mobile broadband." +msgstr "" + +#: gnu/packages/linux.scm:2107 +msgid "Daemon for delivering ACPI events to user-space programs" +msgstr "" + +#: gnu/packages/linux.scm:2109 +msgid "" +"acpid is designed to notify user-space programs of Advanced\n" +"Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" +"during the system boot, and will run as a background process. When an = ACPI\n" +"event is received from the kernel, acpid will examine the list of rules= \n" +"specified in /etc/acpi/events and execute the rules that match the even= t." +msgstr "" + +#: gnu/packages/linux.scm:2131 +msgid "System utilities based on Linux sysfs" +msgstr "" + +#: gnu/packages/linux.scm:2133 +msgid "" +"These are a set of utilities built upon sysfs, a virtual filesystem in\= n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" +"also contains the libsysfs library." +msgstr "" + +#: gnu/packages/linux.scm:2162 +msgid "System utilities based on Linux sysfs (version 1.x)" +msgstr "" + +#: gnu/packages/linux.scm:2185 +msgid "Utilities to get and set CPU frequency on Linux" +msgstr "" + +#: gnu/packages/linux.scm:2187 +msgid "" +"The cpufrequtils suite contains utilities to retrieve CPU frequency\n" +"information, and set the CPU frequency if supported, using the cpufreq\= n" +"capabilities of the Linux kernel." +msgstr "" + +#: gnu/packages/linux.scm:2206 +msgid "Interface library for the Linux IEEE1394 drivers" +msgstr "" + +#: gnu/packages/linux.scm:2208 +msgid "" +"Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" +"protocol in question." +msgstr "" + +#: gnu/packages/linux.scm:2232 +msgid "AV/C protocol library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2234 +msgid "" +"Libavc1394 is a programming interface to the AV/C specification from\n" +"the 1394 Trade Association. AV/C stands for Audio/Video Control." +msgstr "" + +#: gnu/packages/linux.scm:2256 +msgid "Isochronous streaming media library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2258 +msgid "" +"The libiec61883 library provides a higher level API for streaming DV,\n= " +"MPEG-2 and audio over Linux IEEE 1394." +msgstr "" + +#: gnu/packages/linux.scm:2298 +msgid "Tool for managing Linux Software RAID arrays" +msgstr "" + +#: gnu/packages/linux.scm:2300 +msgid "" +"mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" +"arrays when needed." +msgstr "" + +#: gnu/packages/linux.scm:2327 +msgid "Linux-native asynchronous I/O access library" +msgstr "" + +#: gnu/packages/linux.scm:2329 +msgid "" +"This library enables userspace to use Linux kernel asynchronous I/O\n" +"system calls, important for the performance of databases and other adva= nced\n" +"applications." +msgstr "" + +#: gnu/packages/linux.scm:2365 +msgid "Linux Bluetooth protocol stack" +msgstr "" + +#: gnu/packages/linux.scm:2367 +msgid "" +"BlueZ provides support for the core Bluetooth layers and protocols. It= \n" +"is flexible, efficient and uses a modular implementation." +msgstr "" + +#: gnu/packages/linux.scm:2423 +#, fuzzy +msgid "Mount exFAT file systems" +msgstr "Munti demalproksimajn dosiersistemojn per SSH" + +#: gnu/packages/linux.scm:2425 +msgid "" +"This package provides a FUSE-based file system that provides read and\n= " +"write access to exFAT devices." +msgstr "" + +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + +#: gnu/packages/lout.scm:109 +msgid "Document layout system" +msgstr "Dokument-aran=C4=B5a sistemo" + +#: gnu/packages/lout.scm:111 +msgid "" +"The Lout document formatting system reads a high-level description of\n= " +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" +"output file.\n" +"\n" +"Lout offers an unprecedented range of advanced features, including opti= mal\n" +"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" +"scaling, sorted indexes, bibliographic databases, running headers and\n= " +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" +"hyphenation (most European languages are supported), formatting of comp= uter\n" +"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" +"extended with definitions which are very much easier to write than trof= f of\n" +"TeX macros because Lout is a high-level, purely functional language, th= e\n" +"outcome of an eight-year research project that went back to the\n" +"beginning." +msgstr "" + +#: gnu/packages/messaging.scm:77 +msgid "Off-the-Record (OTR) Messaging Library and Toolkit" +msgstr "" + +#: gnu/packages/messaging.scm:79 +msgid "" +"OTR allows you to have private conversations over instant messaging by\= n" +"providing: (1) Encryption: No one else can read your instant messages. = (2)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" +"Deniability: The messages you send do not have digital signatures that = are\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" +"correspondent is assured the messages he sees are authentic and\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" +"keys, no previous conversation is compromised." +msgstr "" + +#: gnu/packages/messaging.scm:135 +msgid "IRC to instant messaging gateway" +msgstr "" + +#: gnu/packages/messaging.scm:136 +msgid "" +"BitlBee brings IM (instant messaging) to IRC clients, for\n" +"people who have an IRC client running all the time and don't want to ru= n an\n" +"additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" +"microblogging network (plus all other Twitter API compatible services l= ike\n" +"identi.ca and status.net)." +msgstr "" + +#: gnu/packages/messaging.scm:169 +msgid "Graphical IRC Client" +msgstr "" + +#: gnu/packages/messaging.scm:171 +msgid "" +"HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" +"users and to highlight messages. It checks spelling using available\n" +"dictionaries. HexChat can be extended with multiple addons." +msgstr "" + +#: gnu/packages/messaging.scm:237 +msgid "Lightweight Internet Relay Chat server for small networks" +msgstr "" + +#: gnu/packages/messaging.scm:239 +msgid "" +"ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" +"networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" +"supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." +msgstr "" + +#: gnu/packages/messaging.scm:310 +msgid "Graphical multi-protocol instant messaging client" +msgstr "" + +#: gnu/packages/messaging.scm:312 +msgid "" +"Pidgin is a modular instant messaging client that supports many popular= \n" +"chat protocols." +msgstr "" + +#: gnu/packages/messaging.scm:350 +msgid "Off-the-Record Messaging plugin for Pidgin" +msgstr "" + +#: gnu/packages/messaging.scm:352 +msgid "" +"Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" +"can read your instant messages. (2) Authentication: You are assured th= e\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" +"do not have digital signatures that are checkable by a third party. An= yone\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" +"you. However, during a conversation, your correspondent is assured the= \n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" +"If you lose control of your private keys, no previous conversation is\n= " +"compromised." +msgstr "" + +#: gnu/packages/messaging.scm:392 +msgid "IRC network bouncer" +msgstr "" + +#: gnu/packages/messaging.scm:393 +msgid "" +"ZNC is an IRC network bouncer or BNC. It can detach the\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" +"clients from different locations can connect to a single ZNC account\n" +"simultaneously and therefore appear under the same nickname on IRC." +msgstr "" + +#: gnu/packages/messaging.scm:415 +msgid "Non-blocking Jabber/XMPP module" +msgstr "" + +#: gnu/packages/messaging.scm:417 +msgid "" +"The goal of this python library is to provide a way for Python\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" +"was initially a fork of xmpppy, but is using non-blocking sockets." +msgstr "" + +#: gnu/packages/messaging.scm:474 +msgid "Jabber (XMPP) client" +msgstr "" + +#: gnu/packages/messaging.scm:475 +msgid "" +"Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" +"transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" +"end-to-end encryption support; XML console." +msgstr "" + +#: gnu/packages/mpd.scm:63 +msgid "Music Player Daemon client library" +msgstr "Klienta biblioteko por \"Music Player Daemon\"" + +#: gnu/packages/mpd.scm:64 +msgid "" +"A stable, documented, asynchronous API library for\n" +"interfacing MPD in the C, C++ & Objective C languages." +msgstr "" + +#: gnu/packages/mpd.scm:124 +msgid "Music Player Daemon" +msgstr "Music Player Daemon (muzik-ludila demono)" + +#: gnu/packages/mpd.scm:125 +msgid "" +"Music Player Daemon (MPD) is a flexible, powerful,\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" +"can play a variety of sound files while being controlled by its network= \n" +"protocol." +msgstr "" + +#: gnu/packages/mpd.scm:148 +#, fuzzy +msgid "Music Player Daemon client" +msgstr "Kliento por \"Curses Music Player Daemon\"" + +#: gnu/packages/mpd.scm:149 +msgid "" +"MPC is a minimalist command line interface to MPD, the music\n" +"player daemon." +msgstr "" + +#: gnu/packages/mpd.scm:172 +msgid "Curses Music Player Daemon client" +msgstr "Kliento por \"Curses Music Player Daemon\"" + +#: gnu/packages/mpd.scm:173 +msgid "" +"ncmpc is a fully featured MPD client, which runs in a\n" +"terminal using ncurses." +msgstr "" + +#: gnu/packages/mpd.scm:211 +msgid "Featureful ncurses based MPD client inspired by ncmpc" +msgstr "Ri=C4=89a MPD-kliento bazita sur ncurses kaj inspirita de ncmpc" + +#: gnu/packages/mpd.scm:212 +msgid "" +"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" +"but it provides new useful features such as support for regular express= ions\n" +"for library searches, extended song format, items filtering, the abilit= y to\n" +"sort playlists, and a local filesystem browser." +msgstr "" + +#: gnu/packages/mpd.scm:235 +msgid "MPD client for track scrobbling" +msgstr "" + +#: gnu/packages/mpd.scm:236 +msgid "" +"mpdscribble is a Music Player Daemon client which submits\n" +"information about tracks being played to a scrobbler, such as Libre.FM.= " +msgstr "" + +#: gnu/packages/netpbm.scm:146 +#, fuzzy +msgid "Toolkit for manipulation of images" +msgstr "Iloj por manipuli linuksan \"Wireless Extensions\"" + +#: gnu/packages/netpbm.scm:148 +msgid "" +"Netpbm is a toolkit for the manipulation of graphic images, including\n= " +"the conversion of images between a variety of different formats.\n" +"There are over 300 separate tools in the package including converters f= or\n" +"about 100 graphics formats." +msgstr "" + +#: gnu/packages/nettle.scm:51 +msgid "C library for low-level cryptographic functionality" +msgstr "" + +#: gnu/packages/nettle.scm:53 +msgid "" +"GNU Nettle is a low-level cryptographic library. It is designed to\n" +"fit in easily in almost any context. It can be easily included in\n" +"cryptographic toolkits for object-oriented languages or in applications= \n" +"themselves." +msgstr "" + +#: gnu/packages/networking.scm:52 +msgid "Teredo IPv6 tunneling software" +msgstr "" + +#: gnu/packages/networking.scm:54 +msgid "" +"Miredo is an implementation (client, relay, server) of the Teredo\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" +"residing in IPv4-only networks, even when they are behind a NAT device.= " +msgstr "" + +#: gnu/packages/networking.scm:76 +msgid "Open bidirectional communication channels from the command line" +msgstr "" + +#: gnu/packages/networking.scm:78 +msgid "" +"socat is a relay for bidirectional data transfer between two independen= t\n" +"data channels---files, pipes, devices, sockets, etc. It can create\n" +"\"listening\" sockets, named pipes, and pseudo terminals.\n" +"\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" +"line, to logically connect serial lines on different computers, or to\n= " +"establish a relatively secure environment (su and chroot) for running " +"client\n" +"or server shell scripts with network connections." +msgstr "" + +#: gnu/packages/networking.scm:102 +msgid "Library for message-based applications" +msgstr "" + +#: gnu/packages/networking.scm:104 +msgid "" +"The 0MQ lightweight messaging kernel is a library which extends the\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" +"messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" +"asynchronous message queues, multiple messaging patterns, message\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" +"more." +msgstr "" + +#: gnu/packages/networking.scm:125 +msgid "Library for Neighbor Discovery Protocol" +msgstr "" + +#: gnu/packages/networking.scm:127 +msgid "" +"libndp contains a library which provides a wrapper for IPv6 Neighbor\n" +"Discovery Protocol. It also provides a tool named ndptool for sending = and\n" +"receiving NDP messages." +msgstr "" + +#: gnu/packages/networking.scm:145 +msgid "Display or change Ethernet device settings" +msgstr "" + +#: gnu/packages/networking.scm:147 +msgid "" +"ethtool can be used to query and change settings such as speed,\n" +"auto-negotiation and checksum offload on many network devices, especial= ly\n" +"Ethernet devices." +msgstr "" + +#: gnu/packages/networking.scm:183 +msgid "Text based network interface status monitor" +msgstr "" + +#: gnu/packages/networking.scm:185 +msgid "" +"IFStatus is a simple, easy-to-use program for displaying commonly\n" +"needed/wanted real-time traffic statistics of multiple network\n" +"interfaces, with a simple and efficient view on the command line. It i= s\n" +"intended as a substitute for the PPPStatus and EthStatus projects." +msgstr "" + +#: gnu/packages/pdf.scm:101 +msgid "PDF rendering library" +msgstr "PDF-bildiga biblioteko" + +#: gnu/packages/pdf.scm:103 +msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +msgstr "" +"Poppler estas PDF-bildiga biblioteko bazita sur la kodum-bazo de xpdf-3= .0" + +#: gnu/packages/pdf.scm:112 +#, fuzzy +msgid "Qt4 frontend for the Poppler PDF rendering library" +msgstr "Interfaco C++ por la tekst-bildiga biblioteko Pango" + +#: gnu/packages/pdf.scm:145 +#, fuzzy +msgid "Python bindings for Poppler-Qt4" +msgstr "Bindoj de Python por Cairo" + +#: gnu/packages/pdf.scm:147 +#, fuzzy +msgid "" +"This package provides Python bindings for the Qt4 interface of the\n" +"Poppler PDF rendering library." +msgstr "Tiu =C4=89i pako provizas datumbazan interfacon por Perl." + +#: gnu/packages/pdf.scm:194 +msgid "Viewer for PDF files based on the Motif toolkit" +msgstr "Montrilo por PDF-dosieroj bazitaj sur la ilaro Motif" + +#: gnu/packages/pdf.scm:196 +#, fuzzy +msgid "Xpdf is a viewer for Portable Document Format (PDF) files." +msgstr "Xpdf estas montrilo por dosieroj PDF (portebla dokument-formo)" + +#: gnu/packages/pdf.scm:226 +msgid "Comic book support for zathura (libarchive backend)" +msgstr "" + +#: gnu/packages/pdf.scm:227 +msgid "" +"The zathura-cb plugin adds comic book support to zathura\n" +"using libarchive." +msgstr "" + +#: gnu/packages/pdf.scm:257 +msgid "PS support for zathura (libspectre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:258 +msgid "" +"The zathura-ps plugin adds PS support to zathura\n" +"using libspectre." +msgstr "" + +#: gnu/packages/pdf.scm:289 +msgid "DjVu support for zathura (DjVuLibre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:290 +msgid "" +"The zathura-djvu plugin adds DjVu support to zathura\n" +"using the DjVuLibre library." +msgstr "" + +#: gnu/packages/pdf.scm:322 +msgid "PDF support for zathura (poppler backend)" +msgstr "" + +#: gnu/packages/pdf.scm:323 +msgid "" +"The zathura-pdf-poppler plugin adds PDF support to zathura\n" +"by using the poppler rendering engine." +msgstr "" + +#: gnu/packages/pdf.scm:361 +#, fuzzy +msgid "Lightweight keyboard-driven PDF viewer" +msgstr "Malpeza PDF-montrilo kaj ilaro" + +#: gnu/packages/pdf.scm:362 +msgid "" +"Zathura is a customizable document viewer. It provides a\n" +"minimalistic interface and an interface that mainly focuses on keyboard= \n" +"interaction." +msgstr "" + +#: gnu/packages/pdf.scm:401 +msgid "Tools to work with the PDF file format" +msgstr "Iloj por labori kun la PDF dosierformo" + +#: gnu/packages/pdf.scm:403 +msgid "" +"PoDoFo is a C++ library and set of command-line tools to work with the\= n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" +"for applications that wish to do lower level manipulation of PDF, such = as\n" +"extracting content or merging files." +msgstr "" + +#: gnu/packages/pdf.scm:464 +msgid "Lightweight PDF viewer and toolkit" +msgstr "Malpeza PDF-montrilo kaj ilaro" + +#: gnu/packages/pdf.scm:466 +msgid "" +"MuPDF is a C library that implements a PDF and XPS parsing and\n" +"rendering engine. It is used primarily to render pages into bitmaps,\n= " +"but also provides support for other operations such as searching and\n" +"listing the table of contents and hyperlinks.\n" +"\n" +"The library ships with a rudimentary X11 viewer, and a set of command\n= " +"line tools for batch rendering (pdfdraw), rewriting files (pdfclean),\n= " +"and examining the file structure (pdfshow)." +msgstr "" + +#: gnu/packages/pdf.scm:506 +msgid "Command-line tools and library for transforming PDF files" +msgstr "Komandliniaj iloj kaj biblioteko por transformi PDF-dosierojn" + +#: gnu/packages/pdf.scm:508 +msgid "" +"QPDF is a command-line program that does structural, content-preserving= \n" +"transformations on PDF files. It could have been called something like= \n" +"pdf-to-pdf. It includes support for merging and splitting PDFs and to\= n" +"manipulate the list of pages in a PDF file. It is not a PDF viewer or = a\n" +"program capable of converting PDF into other formats." +msgstr "" + +#: gnu/packages/pdf.scm:538 +msgid "Notetaking using a stylus" +msgstr "" + +#: gnu/packages/pdf.scm:540 +msgid "" +"Xournal is an application for notetaking, sketching, keeping a journal\= n" +"using a stylus." +msgstr "" + +#: gnu/packages/pem.scm:41 +msgid "Personal expenses manager" +msgstr "" + +#: gnu/packages/pem.scm:43 +msgid "" +"GNU Pem is a simple tool for tracking personal income and\n" +"expenses. It operates from the command line and it stores its data\n" +"in a basic text format in your home directory. It can easily print\n" +"reports of your spending on different expenses via a basic search\n" +"feature." +msgstr "" + +#: gnu/packages/perl.scm:110 +#, fuzzy +msgid "Implementation of the Perl programming language" +msgstr "Realigo de Scheme kaj rilataj program-lingvoj" + +#: gnu/packages/perl.scm:112 +msgid "" +"Perl 5 is a highly capable, feature-rich programming language with over= \n" +"24 years of development." +msgstr "" + +#: gnu/packages/perl.scm:131 +msgid "Module for merging hierarchies using the C3 algorithm" +msgstr "" + +#: gnu/packages/perl.scm:132 +msgid "" +"This module implements the C3 algorithm, which aims to\n" +"provide a sane method resolution order under multiple inheritance." +msgstr "" + +#: gnu/packages/perl.scm:150 +msgid "Compute differences between two files or lists" +msgstr "" + +#: gnu/packages/perl.scm:151 +msgid "" +"This is a module for computing the difference between two\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" +"algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" +"program. It is guaranteed to find the *smallest possible* set of\n" +"differences." +msgstr "" + +#: gnu/packages/perl.scm:173 +msgid "Use shorter versions of class names" +msgstr "" + +#: gnu/packages/perl.scm:174 +msgid "" +"The alias module loads the class you specify and exports\n" +"into your namespace a subroutine that returns the class name. You can\= n" +"explicitly alias the class to another name or, if you prefer, you can d= o so\n" +"implicitly." +msgstr "" + +#: gnu/packages/perl.scm:196 +msgid "Configuration files and command line parsing" +msgstr "" + +#: gnu/packages/perl.scm:197 +msgid "" +"AppConfig is a bundle of Perl5 modules for reading\n" +"configuration files and parsing command line arguments." +msgstr "" + +#: gnu/packages/perl.scm:215 +msgid "Perl API to zip files" +msgstr "" + +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 +msgid "" +"The Archive::Zip module allows a Perl program to create,\n" +"manipulate, read, and write Zip archive files." +msgstr "" +"La modulo Archive::Zip ebligas al Perl-programo krei,\n" +"manipuli, legi, kaj skribi ar=C4=A5iv-dosierojn ZIP." + +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 +msgid "Establish an ISA relationship with base classes at compile time" +msgstr "" + +#: gnu/packages/perl.scm:236 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" +"parent." +msgstr "" + +#: gnu/packages/perl.scm:261 +msgid "Execute code after a scope finished compilation" +msgstr "" + +#: gnu/packages/perl.scm:262 +msgid "" +"This module allows you to execute code when perl finished\n" +"compiling the surrounding scope." +msgstr "" + +#: gnu/packages/perl.scm:280 +msgid "Benchmarking with statistical confidence" +msgstr "" + +#: gnu/packages/perl.scm:282 +msgid "" +"The Benchmark::Timer class allows you to time portions of code\n" +"conveniently, as well as benchmark code by allowing timings of repeated= \n" +"trials. It is perfect for when you need more precise information about= the\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" +"but don't want to go all out and profile your code." +msgstr "" + +#: gnu/packages/perl.scm:307 +msgid "Bit vector library" +msgstr "" + +#: gnu/packages/perl.scm:308 +msgid "" +"Bit::Vector is an efficient C library which allows you to\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" +"matrices, all of arbitrary sizes. The package also includes an\n" +"object-oriented Perl module for accessing the C library from Perl, and\= n" +"optionally features overloaded operators for maximum ease of use. The = C\n" +"library can nevertheless be used stand-alone, without Perl." +msgstr "" + +#: gnu/packages/perl.scm:330 +msgid "Boolean support for Perl" +msgstr "" + +#: gnu/packages/perl.scm:331 +msgid "" +"This module provides basic Boolean support, by defining two\n" +"special objects: true and false." +msgstr "" + +#: gnu/packages/perl.scm:352 +#, fuzzy +msgid "Cache interface for Perl" +msgstr "Interfaco de SQLite por Perl" + +#: gnu/packages/perl.scm:353 +msgid "" +"The Cache modules are designed to assist a developer in\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" +"in web applications to store data locally to save repeated and redundan= t\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" +"runs of an application or invocations of a CGI-style script or simply a= s an\n" +"easy to use abstraction of the filesystem or shared memory." +msgstr "" + +#: gnu/packages/perl.scm:376 +msgid "Shared memory interprocess cache via mmap" +msgstr "" + +#: gnu/packages/perl.scm:377 +msgid "" +"A shared memory cache through an mmap'ed file. It's core is\n" +"written in C for performance. It uses fcntl locking to ensure multiple= \n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" +"algorithm to keep the most used entries in the cache." +msgstr "" + +#: gnu/packages/perl.scm:398 +msgid "Capture STDOUT and STDERR from Perl, XS or external programs" +msgstr "" + +#: gnu/packages/perl.scm:400 +msgid "" +"Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" +"sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" +"is captured while being passed through to the original file handles." +msgstr "" + +#: gnu/packages/perl.scm:420 +msgid "Executable comments for Perl" +msgstr "" + +#: gnu/packages/perl.scm:421 +msgid "" +"Carp::Assert is intended for a purpose like the ANSI C\n" +"library assert.h." +msgstr "" + +#: gnu/packages/perl.scm:443 +msgid "Convenience wrappers around Carp::Assert" +msgstr "" + +#: gnu/packages/perl.scm:444 +msgid "" +"Carp::Assert::More is a set of handy assertion functions for\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:464 +msgid "Report errors from a \"clan\" of modules" +msgstr "" + +#: gnu/packages/perl.scm:465 +msgid "" +"This module allows errors from a clan (or family) of modules\n" +"to appear to originate from the caller of the clan. This is necessary = in\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" +"the Carp.pm module doesn't help." +msgstr "" + +#: gnu/packages/perl.scm:489 +msgid "Automated accessor generation" +msgstr "" + +#: gnu/packages/perl.scm:490 +msgid "" +"This module automagically generates accessors/mutators for\n" +"your class." +msgstr "" + +#: gnu/packages/perl.scm:512 +msgid "Faster, but less expandable, chained accessors" +msgstr "" + +#: gnu/packages/perl.scm:513 +msgid "" +"A chained accessor is one that always returns the object\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" +"the same mk_accessors interface." +msgstr "" + +#: gnu/packages/perl.scm:539 +msgid "Build groups of accessors" +msgstr "" + +#: gnu/packages/perl.scm:540 +msgid "" +"This class lets you build groups of accessors that will call\n" +"different getters and setters." +msgstr "" + +#: gnu/packages/perl.scm:560 +msgid "Pragma to use the C3 method resolution order algorithm" +msgstr "" + +#: gnu/packages/perl.scm:561 +msgid "" +"This is pragma to change Perl 5's standard method resolution\n" +"order from depth-first left-to-right (a.k.a - pre-order) to the more\n" +"sophisticated C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:585 +msgid "Drop-in replacement for NEXT" +msgstr "" + +#: gnu/packages/perl.scm:586 +msgid "" +"This module is intended as a drop-in replacement for NEXT,\n" +"supporting the same interface, but using Class::C3 to do the hard work.= " +msgstr "" + +#: gnu/packages/perl.scm:610 +msgid "Load mix-ins or components to your C3-based class" +msgstr "" + +#: gnu/packages/perl.scm:611 +msgid "" +"This module will inject base classes to your module using\n" +"the Class::C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:629 +msgid "Inheritable, overridable class data" +msgstr "" + +#: gnu/packages/perl.scm:630 +msgid "" +"Class::Data::Inheritable is for creating accessor/mutators\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" +"subclasses and can be overridden." +msgstr "" + +#: gnu/packages/perl.scm:651 +msgid "Class for easy date and time manipulation" +msgstr "" + +#: gnu/packages/perl.scm:652 +msgid "" +"This module provides a general-purpose date and datetime\n" +"type for perl." +msgstr "" + +#: gnu/packages/perl.scm:671 +msgid "Utility methods for factory classes" +msgstr "" + +#: gnu/packages/perl.scm:672 +msgid "This module exports methods useful for factory classes." +msgstr "" + +#: gnu/packages/perl.scm:689 +msgid "Get information about a class and its structure" +msgstr "" + +#: gnu/packages/perl.scm:690 +msgid "" +"Class::Inspector allows you to get information about a\n" +"loaded class." +msgstr "" + +#: gnu/packages/perl.scm:718 +msgid "Working (require \"Class::Name\") and more" +msgstr "" + +#: gnu/packages/perl.scm:719 +msgid "" +"\"require EXPR\" only accepts Class/Name.pm style module\n" +"names, not Class::Name. For that, this module provides \"load_class\n" +"'Class::Name'\"." +msgstr "" + +#: gnu/packages/perl.scm:742 +msgid "XS implementation of parts of Class::Load" +msgstr "" + +#: gnu/packages/perl.scm:743 +msgid "" +"This module provides an XS implementation for portions of\n" +"Class::Load." +msgstr "" + +#: gnu/packages/perl.scm:762 +msgid "Create generic methods for OO Perl" +msgstr "" + +#: gnu/packages/perl.scm:763 +msgid "" +"This module solves the problem of having to continually\n" +"write accessor methods for your objects that perform standard tasks." +msgstr "" + +#: gnu/packages/perl.scm:784 +msgid "Moose-like method modifiers" +msgstr "" + +#: gnu/packages/perl.scm:785 +msgid "" +"Class::Method::Modifiers provides three modifiers: 'before',\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" +"is run in place of the original method, with a hook to easily call that= \n" +"original method." +msgstr "" + +#: gnu/packages/perl.scm:806 +msgid "Implementation of a singleton class for Perl" +msgstr "" + +#: gnu/packages/perl.scm:807 +msgid "" +"This module implements a Singleton class from which other\n" +"classes can be derived. By itself, the Class::Singleton module does ve= ry\n" +"little other than manage the instantiation of a single object." +msgstr "" + +#: gnu/packages/perl.scm:826 +msgid "Minimalist class construction" +msgstr "" + +#: gnu/packages/perl.scm:827 +msgid "" +"This module offers a minimalist class construction kit. It\n" +"uses no non-core modules for any recent Perl." +msgstr "" + +#: gnu/packages/perl.scm:847 +msgid "Unload a class" +msgstr "" + +#: gnu/packages/perl.scm:848 +msgid "" +"Class:Unload unloads a given class by clearing out its\n" +"symbol table and removing it from %INC." +msgstr "" + +#: gnu/packages/perl.scm:866 +msgid "Generate fast XS accessors without runtime compilation" +msgstr "" + +#: gnu/packages/perl.scm:867 +msgid "" +"Class::XSAccessor implements fast read, write, and\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" +"\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" +"Class::XSAccessor::Array implements the same interface for objects that= use\n" +"arrays for their internal representation." +msgstr "" + +#: gnu/packages/perl.scm:887 +msgid "Recursively copy Perl datatypes" +msgstr "" + +#: gnu/packages/perl.scm:889 +msgid "" +"This module provides a clone() method which makes recursive copies of\n= " +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" +"objects." +msgstr "" + +#: gnu/packages/perl.scm:910 +msgid "Sane defaults for Perl programs" +msgstr "" + +#: gnu/packages/perl.scm:911 +msgid "" +"This module implements some sane defaults for Perl programs,\n" +"as defined by two typical specimens of Perl coders." +msgstr "" + +#: gnu/packages/perl.scm:931 +msgid "Load configuration from different file formats" +msgstr "" + +#: gnu/packages/perl.scm:932 +msgid "" +"Config::Any provides a facility for Perl applications and\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" +"supports XML, YAML, JSON, Apache-style configuration, and Perl code." +msgstr "" + +#: gnu/packages/perl.scm:953 +msgid "Module to implement some AutoConf macros in Perl" +msgstr "" + +#: gnu/packages/perl.scm:954 +msgid "" +"Config::AutoConf is intended to provide the same\n" +"opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." +msgstr "" + +#: gnu/packages/perl.scm:972 +msgid "Generic Config Module" +msgstr "" + +#: gnu/packages/perl.scm:973 +msgid "" +"This module opens a config file and parses its contents for\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" +"the well known Apache config format and is 100% compatible with Apache\= n" +"configs, but you can also just use simple name/value pairs in your conf= ig\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" +"some enhancements such as here-documents, C-style comments, and multili= ne\n" +"options." +msgstr "" + +#: gnu/packages/perl.scm:999 +msgid "Preserve context during subroutine call" +msgstr "" + +#: gnu/packages/perl.scm:1000 +msgid "" +"This module runs code after a subroutine call, preserving\n" +"the context the subroutine would have seen if it were the last statemen= t in\n" +"the caller." +msgstr "" + +#: gnu/packages/perl.scm:1021 +msgid "Verify requirements in a CPAN::Meta object" +msgstr "" + +#: gnu/packages/perl.scm:1022 +msgid "" +"This module verifies if requirements described in a\n" +"CPAN::Meta object are present." +msgstr "" + +#: gnu/packages/perl.scm:1042 +msgid "JSON::XS for Cpanel" +msgstr "" + +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa." +msgstr "" + +#: gnu/packages/perl.scm:1061 +msgid "Random password generator" +msgstr "" + +#: gnu/packages/perl.scm:1062 +msgid "" +"Crypt::RandPasswd provides three functions that can be used\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" +"This code is a Perl implementation of the Automated Password Generator\= n" +"standard, like the program described in \"A Random Word Generator For\n= " +"Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" +"contained in Appendix A of FIPS Publication 181, \"Standard for Automat= ed\n" +"Password Generator\"." +msgstr "" + +#: gnu/packages/perl.scm:1105 +#, fuzzy +msgid "Library for genomic analysis" +msgstr "Biblioteko por aliri zip-dosierojn" + +#: gnu/packages/perl.scm:1106 +msgid "" +"Chaolin Zhang's Perl Library (czplib) contains assorted\n" +"functions and data structures for processing and analysing genomic and\= n" +"bioinformatics data." +msgstr "" + +#: gnu/packages/perl.scm:1125 +msgid "Pretty printing of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1126 +msgid "" +"This module provide functions that takes a list of values as\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" +"code that, when \"eval\"ed, produces a deep copy of the original argume= nts." +msgstr "" + +#: gnu/packages/perl.scm:1145 +msgid "Concise data dumper" +msgstr "" + +#: gnu/packages/perl.scm:1146 +msgid "" +"Data::Dumper::Concise provides a dumper with Less\n" +"indentation and newlines plus sub deparsing." +msgstr "" + +#: gnu/packages/perl.scm:1168 +msgid "Parse and validate simple name/value option pairs" +msgstr "" + +#: gnu/packages/perl.scm:1170 +msgid "Data::OptList provides a simple syntax for name/value option pair= s." +msgstr "" + +#: gnu/packages/perl.scm:1192 +msgid "Help when paging through sets of results" +msgstr "" + +#: gnu/packages/perl.scm:1193 +msgid "" +"When searching through large amounts of data, it is often\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" +"The maths behind this is unfortunately fiddly, hence this module." +msgstr "" + +#: gnu/packages/perl.scm:1215 +msgid "Structured tags datastructures" +msgstr "" + +#: gnu/packages/perl.scm:1217 +msgid "" +"This module is for manipulating data as hierarchical tag/value\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:1244 +msgid "N at a time iteration API" +msgstr "" + +#: gnu/packages/perl.scm:1245 +msgid "" +"This module tries to find middle ground between one at a\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" +"to avoid the overhead of implementing an iterative api when this isn't\= n" +"necessary, without breaking forward compatibility in case that becomes\= n" +"necessary later on." +msgstr "" + +#: gnu/packages/perl.scm:1270 +msgid "Dynamic generation of nested combinations of variants" +msgstr "" + +#: gnu/packages/perl.scm:1271 +msgid "" +"Data::Tumbler - Dynamic generation of nested combinations of\n" +"variants." +msgstr "" + +#: gnu/packages/perl.scm:1297 +msgid "Visitor style traversal of Perl data structures" +msgstr "" + +#: gnu/packages/perl.scm:1298 +msgid "" +"This module is a simple visitor implementation for Perl\n" +"values. It has a main dispatcher method, visit, which takes a single p= erl\n" +"value and then calls the methods appropriate for that value. It can\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" +"support for per-object behavior, circular structures, visiting tied\n" +"structures, and all ref types (hashes, arrays, scalars, code, globs)." +msgstr "" + +#: gnu/packages/perl.scm:1323 +msgid "Gregorian calendar date calculations" +msgstr "" + +#: gnu/packages/perl.scm:1324 +msgid "" +"This package consists of a Perl module for date calculations\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" +"standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" +"applicable)." +msgstr "" + +#: gnu/packages/perl.scm:1348 +msgid "XS wrapper for Date::Calc" +msgstr "" + +#: gnu/packages/perl.scm:1349 +msgid "" +"Date::Calc::XS is an XS wrapper and C library plug-in for\n" +"Date::Calc." +msgstr "" + +#: gnu/packages/perl.scm:1373 +msgid "Date manipulation routines" +msgstr "" + +#: gnu/packages/perl.scm:1374 +msgid "" +"Date::Manip is a series of modules for common date/time\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" +"time from another, or parsing international times." +msgstr "" + +#: gnu/packages/perl.scm:1402 +msgid "Date and time object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1403 +msgid "" +"DateTime is a class for the representation of date/time\n" +"combinations. It represents the Gregorian calendar, extended backwards= in\n" +"time before its creation (in 1582)." +msgstr "" + +#: gnu/packages/perl.scm:1428 +msgid "DateTime set objects" +msgstr "" + +#: gnu/packages/perl.scm:1429 +msgid "" +"The DateTime::Set module provides a date/time sets\n" +"implementation. It allows, for example, the generation of groups of da= tes,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" +"within a time range." +msgstr "" + +#: gnu/packages/perl.scm:1452 +msgid "DateTime rfc2445 recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1453 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for RFC 2445 style recurrences." +msgstr "" + +#: gnu/packages/perl.scm:1474 +msgid "DateTime::Set extension for basic recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1475 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" +"\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." +msgstr "" + +#: gnu/packages/perl.scm:1500 +msgid "Create DateTime parser classes and objects" +msgstr "" + +#: gnu/packages/perl.scm:1501 +msgid "" +"DateTime::Format::Builder creates DateTime parsers. Many\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" +"to do this without writing reams of structural code." +msgstr "" + +#: gnu/packages/perl.scm:1528 +msgid "Parse data/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1529 +msgid "" +"DateTime::Format::Flexible attempts to take any string you\n" +"give it and parse it into a DateTime object." +msgstr "" + +#: gnu/packages/perl.scm:1555 +msgid "Parse and format iCal datetime and duration strings" +msgstr "" + +#: gnu/packages/perl.scm:1556 +msgid "" +"This module understands the ICal date/time and duration\n" +"formats, as defined in RFC 2445. It can be used to parse these formats= in\n" +"order to create the appropriate objects." +msgstr "" + +#: gnu/packages/perl.scm:1588 +msgid "Machine-readable date/time with natural parsing" +msgstr "" + +#: gnu/packages/perl.scm:1589 +msgid "" +"DateTime::Format::Natural takes a string with a human\n" +"readable date/time and creates a machine readable one by applying natur= al\n" +"parsing logic." +msgstr "" + +#: gnu/packages/perl.scm:1613 +msgid "Parse and format strp and strf time patterns" +msgstr "" + +#: gnu/packages/perl.scm:1614 +msgid "" +"This module implements most of `strptime(3)`, the POSIX\n" +"function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" +"takes a string and a pattern and returns the `DateTime` object associat= ed." +msgstr "" + +#: gnu/packages/perl.scm:1639 +msgid "Localization support for DateTime.pm" +msgstr "" + +#: gnu/packages/perl.scm:1640 +msgid "" +"The DateTime::Locale modules provide localization data for\n" +"the DateTime.pm class." +msgstr "" + +#: gnu/packages/perl.scm:1667 +#, fuzzy +msgid "Time zone object for Perl" +msgstr "Interfaco de SQLite por Perl" + +#: gnu/packages/perl.scm:1668 +msgid "" +"This class is the base class for all time zone objects. A\n" +"time zone is represented internally as a set of observances, each of wh= ich\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" +"DateTime module, this module does not do much. It's primary interface = is\n" +"through a DateTime object, and most users will not need to directly use= \n" +"DateTime::TimeZone methods." +msgstr "" + +#: gnu/packages/perl.scm:1698 +msgid "Parse date/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1699 +msgid "" +"DateTimeX::Easy uses a variety of DateTime::Format packages\n" +"to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" +"edges (mainly concerning timezone detection and selection)." +msgstr "" + +#: gnu/packages/perl.scm:1720 +msgid "Meatier version of caller" +msgstr "" + +#: gnu/packages/perl.scm:1721 +msgid "Devel::Caller provides meatier version of caller." +msgstr "" + +#: gnu/packages/perl.scm:1739 +msgid "Check that a command is available" +msgstr "" + +#: gnu/packages/perl.scm:1740 +msgid "" +"Devel::CheckBin is a perl module that checks whether a\n" +"particular command is available." +msgstr "" + +#: gnu/packages/perl.scm:1760 +msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" +msgstr "" + +#: gnu/packages/perl.scm:1761 +msgid "" +"Devel::GlobalDestruction provides a function returning the\n" +"equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." +msgstr "" + +#: gnu/packages/perl.scm:1781 +msgid "Alias lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:1782 +msgid "" +"Devel::LexAlias provides the ability to alias a lexical\n" +"variable in a subroutines scope to one of your choosing." +msgstr "" + +#: gnu/packages/perl.scm:1804 +msgid "Introspect overloaded operators" +msgstr "" + +#: gnu/packages/perl.scm:1805 +msgid "" +"Devel::OverloadInfo returns information about overloaded\n" +"operators for a given class (or object), including where in the inherit= ance\n" +"hierarchy the overloads are declared and where the code implementing it= is." +msgstr "" + +#: gnu/packages/perl.scm:1832 +msgid "Partial dumping of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1833 +msgid "" +"This module is a data dumper optimized for logging of\n" +"arbitrary parameters." +msgstr "" + +#: gnu/packages/perl.scm:1851 +msgid "Object representing a stack trace" +msgstr "" + +#: gnu/packages/perl.scm:1852 +msgid "" +"The Devel::StackTrace module contains two classes,\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" +"information that can be retrieved via Perl's caller() function, as well= as\n" +"providing a simple interface to this data." +msgstr "" + +#: gnu/packages/perl.scm:1874 +msgid "Displays stack trace in HTML" +msgstr "" + +#: gnu/packages/perl.scm:1875 +msgid "" +"Devel::StackTrace::AsHTML adds as_html method to\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" +"snippet context and function parameters. If you call it on an instance= of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" +"each stack frame." +msgstr "" + +#: gnu/packages/perl.scm:1896 +msgid "Dump symbol names or the symbol table" +msgstr "" + +#: gnu/packages/perl.scm:1897 +msgid "Devel::Symdump provides access to the perl symbol table." +msgstr "" + +#: gnu/packages/perl.scm:1914 +msgid "Keyed-Hashing for Message Authentication" +msgstr "" + +#: gnu/packages/perl.scm:1915 +msgid "" +"The Digest::HMAC module follows the common Digest::\n" +"interface for the RFC 2104 HMAC mechanism." +msgstr "" + +#: gnu/packages/perl.scm:1931 +msgid "Perl implementation of the SHA-1 message digest algorithm" +msgstr "" + +#: gnu/packages/perl.scm:1933 +msgid "" +"This package provides 'Digest::SHA1', an implementation of the NIST\n" +"SHA-1 message digest algorithm for use by Perl programs." +msgstr "" + +#: gnu/packages/perl.scm:1955 +msgid "Declare version conflicts for your dist" +msgstr "" + +#: gnu/packages/perl.scm:1956 +msgid "" +"This module allows you to specify conflicting versions of\n" +"modules separately and deal with them after the module is done installi= ng." +msgstr "" + +#: gnu/packages/perl.scm:1974 +msgid "OO-ish Error/Exception handling for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1975 +msgid "" +"The Error package provides two interfaces. Firstly Error\n" +"provides a procedural interface to exception handling. Secondly Error = is a\n" +"base class for errors/exceptions that can either be thrown, for subsequ= ent\n" +"catch, or can simply be recorded." +msgstr "" + +#: gnu/packages/perl.scm:2000 +msgid "Safely and cleanly create closures via string eval" +msgstr "" + +#: gnu/packages/perl.scm:2001 +msgid "" +"String eval is often used for dynamic code generation. For\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" +"them in $@@ instead. This module attempts to solve these problems. It= \n" +"provides an eval_closure function, which evals a string in a clean\n" +"environment, other than a fixed list of specified variables. Compilati= on\n" +"errors are rethrown automatically." +msgstr "" + +#: gnu/packages/perl.scm:2030 +msgid "Allows you to declare real exception classes in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2031 +msgid "" +"Exception::Class allows you to declare exception hierarchies\n" +"in your modules in a \"Java-esque\" manner." +msgstr "" + +#: gnu/packages/perl.scm:2047 +msgid "Lightweight exporting of functions and variables" +msgstr "" + +#: gnu/packages/perl.scm:2049 +msgid "" +"Exporter::Lite is an alternative to Exporter, intended to provide a\n" +"lightweight subset of the most commonly-used functionality. It support= s\n" +"import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." +msgstr "" + +#: gnu/packages/perl.scm:2070 +msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" +msgstr "" + +#: gnu/packages/perl.scm:2071 +msgid "" +"Exporter::Tiny supports many of Sub::Exporter's\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" +"only about 40% as many lines of code and with zero non-core dependencie= s." +msgstr "" + +#: gnu/packages/perl.scm:2094 +msgid "Build.PL install path logic made easy" +msgstr "" + +#: gnu/packages/perl.scm:2095 +msgid "" +"This module tries to make install path resolution as easy as\n" +"possible." +msgstr "" + +#: gnu/packages/perl.scm:2113 +msgid "Wrapper for perl's configuration" +msgstr "" + +#: gnu/packages/perl.scm:2114 +msgid "" +"ExtUtils::Config is an abstraction around the %Config hash.\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" +"it ties together a family of modern toolchain modules." +msgstr "" + +#: gnu/packages/perl.scm:2133 +msgid "Various portability utilities for module builders" +msgstr "" + +#: gnu/packages/perl.scm:2134 +msgid "" +"This module provides various portable helper functions for\n" +"module building modules." +msgstr "" + +#: gnu/packages/perl.scm:2164 +#, fuzzy +msgid "Watch for changes to files" +msgstr "Biblioteko por trakti dosierojn PNG" + +#: gnu/packages/perl.scm:2165 +msgid "" +"This module provides a class to monitor a directory for\n" +"changes made to any file." +msgstr "" + +#: gnu/packages/perl.scm:2183 +msgid "Recursively copy files and directories" +msgstr "" + +#: gnu/packages/perl.scm:2184 +msgid "" +"This module has 3 functions: one to copy files only, one to\n" +"copy directories only, and one to do either depending on the argument's= \n" +"type." +msgstr "" + +#: gnu/packages/perl.scm:2206 +msgid "Alternative interface to File::Find" +msgstr "" + +#: gnu/packages/perl.scm:2207 +msgid "" +"File::Find::Rule is a friendlier interface to File::Find.\n" +"It allows you to build rules which specify the desired files and\n" +"directories." +msgstr "" + +#: gnu/packages/perl.scm:2230 +msgid "Common rules for searching for Perl things" +msgstr "" + +#: gnu/packages/perl.scm:2231 +msgid "" +"File::Find::Rule::Perl provides methods for finding various\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" +"in various parts of the CPAN ecosystem." +msgstr "" + +#: gnu/packages/perl.scm:2254 +msgid "Find your home and other directories on any platform" +msgstr "" + +#: gnu/packages/perl.scm:2255 +msgid "" +"File::HomeDir is a module for locating the directories that\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" +"that arise trying to find them consistently across a wide variety of\n" +"platforms." +msgstr "" + +#: gnu/packages/perl.scm:2282 +msgid "" +"Perl extension for crawling directory trees and compiling\n" +"lists of files" +msgstr "" + +#: gnu/packages/perl.scm:2285 +msgid "" +"The File::List module crawls the directory tree starting at the\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" +"matching a regular expression." +msgstr "" + +#: gnu/packages/perl.scm:2304 +msgid "Remove files and directories in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2305 +msgid "" +"File::Remove::remove removes files and directories. It acts\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" +"files, it will not remove directories; this module remedies that. It a= lso\n" +"accepts wildcards, * and ?, as arguments for file names." +msgstr "" + +#: gnu/packages/perl.scm:2329 +msgid "Locate per-dist and per-module shared files" +msgstr "" + +#: gnu/packages/perl.scm:2330 +msgid "" +"The intent of File::ShareDir is to provide a companion to\n" +"Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" +"module to have access to a large amount of read-only data that is store= d on\n" +"the file-system at run-time. Once the files have been installed to the= \n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" +"the installation." +msgstr "" + +#: gnu/packages/perl.scm:2352 +msgid "Install shared files" +msgstr "" + +#: gnu/packages/perl.scm:2353 +msgid "" +"File::ShareDir::Install allows you to install read-only data\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" +"allows you to locate these files after installation." +msgstr "" + +#: gnu/packages/perl.scm:2372 +msgid "Reading/Writing/Modifying of complete files" +msgstr "" + +#: gnu/packages/perl.scm:2373 +msgid "" +"File::Slurp provides subroutines to read or write entire\n" +"files with a simple call. It also has a subroutine for reading the lis= t of\n" +"file names in a directory." +msgstr "" + +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 +msgid "Return name and handle of a temporary file safely" +msgstr "" + +#: gnu/packages/perl.scm:2413 +msgid "" +"File::Temp can be used to create and open temporary files in\n" +"a safe way." +msgstr "" + +#: gnu/packages/perl.scm:2430 +#, fuzzy +msgid "Portable implementation of the `which' utility" +msgstr "Realigo curses de la API Glk" + +#: gnu/packages/perl.scm:2432 +msgid "" +"File::Which was created to be able to get the paths to executable\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" +"shell." +msgstr "" + +#: gnu/packages/perl.scm:2459 +msgid "Getopt::Long, but simpler and more powerful" +msgstr "" + +#: gnu/packages/perl.scm:2460 +msgid "" +"Getopt::Long::Descriptive is yet another Getopt library.\n" +"It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" +"avoid making you think about its huge array of options. It also provid= es\n" +"usage (help) messages, data validation, and a few other useful features= ." +msgstr "" + +#: gnu/packages/perl.scm:2478 +msgid "Table-driven argument parsing for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2480 +msgid "" +"Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " +"vaguely inspired by John Ousterhout's Tk_ParseArgv." +msgstr "" + +#: gnu/packages/perl.scm:2500 +msgid "Merge arbitrarily deep hashes into a single hash" +msgstr "" + +#: gnu/packages/perl.scm:2501 +msgid "" +"Hash::Merge merges two arbitrarily deep hashes into a single\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" +"value conflicts. The hash is followed recursively, so that deeply nest= ed\n" +"hashes that are at the same level will be merged when the parent hashes= are\n" +"merged." +msgstr "" + +#: gnu/packages/perl.scm:2523 +msgid "Store multiple values per key" +msgstr "" + +#: gnu/packages/perl.scm:2524 +msgid "" +"Hash::MultiValue is an object (and a plain hash reference)\n" +"that may contain multiple values per key, inspired by MultiDict of WebO= b." +msgstr "" + +#: gnu/packages/perl.scm:2544 +msgid "Import packages into other packages" +msgstr "" + +#: gnu/packages/perl.scm:2545 +msgid "" +"Writing exporters is a pain. Some use Exporter, some use\n" +"Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" +"exporters don't provide a consistent API for this, and pragmas need to = have\n" +"their import method called directly, since they effect the current unit= of\n" +"compilation. Import::Into provides global methods to make this painles= s." +msgstr "" + +#: gnu/packages/perl.scm:2567 +msgid "Use modules in inc/ if newer than installed" +msgstr "" + +#: gnu/packages/perl.scm:2568 +msgid "" +"The inc::latest module helps bootstrap configure-time\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" +"inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." +msgstr "" + +#: gnu/packages/perl.scm:2587 +msgid "Utilities for interactive I/O" +msgstr "" + +#: gnu/packages/perl.scm:2588 +msgid "" +"This module provides three utility subroutines that make it\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" +"and busy()." +msgstr "" + +#: gnu/packages/perl.scm:2607 +msgid "Emulate file interface for in-core strings" +msgstr "" + +#: gnu/packages/perl.scm:2608 +msgid "" +"IO::String is an IO::File (and IO::Handle) compatible class\n" +"that reads or writes data from in-core strings." +msgstr "" + +#: gnu/packages/perl.scm:2626 +msgid "IO:: interface for reading/writing an array of lines" +msgstr "" + +#: gnu/packages/perl.scm:2627 +msgid "" +"This toolkit primarily provides modules for performing both\n" +"traditional and object-oriented i/o) on things *other* than normal\n" +"filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " +msgstr "" + +#: gnu/packages/perl.scm:2645 +msgid "Perl interface to pseudo ttys" +msgstr "" + +#: gnu/packages/perl.scm:2647 +#, fuzzy +msgid "" +"This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" +"pseudo ttys." +msgstr "Tiu =C4=89i pako provizas datumbazan interfacon por Perl." + +#: gnu/packages/perl.scm:2675 +msgid "Run system() and background procs w/ piping, redirs, ptys" +msgstr "" + +#: gnu/packages/perl.scm:2676 +msgid "" +"IPC::Run allows you run and interact with child processes\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" +"are supported and may be mixed. Likewise, functional and OO API styles= are\n" +"both supported and may be mixed." +msgstr "" + +#: gnu/packages/perl.scm:2694 +msgid "Run a subprocess with input/output redirection" +msgstr "" + +#: gnu/packages/perl.scm:2696 +msgid "" +"The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" +"99% of the need for using system, qx, and open3 with a simple, extremel= y\n" +"Perlish API and none of the bloat and rarely used features of IPC::Run.= " +msgstr "" + +#: gnu/packages/perl.scm:2720 +#, fuzzy +msgid "Lightweight interface to shared memory" +msgstr "Interfaco de SQLite por Perl" + +#: gnu/packages/perl.scm:2721 +msgid "" +"IPC::ShareLite provides a simple interface to shared memory,\n" +"allowing data to be efficiently communicated between processes." +msgstr "" + +#: gnu/packages/perl.scm:2741 +msgid "JSON encoder/decoder for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2742 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa using either JSON::XS or JSON::PP." +msgstr "" + +#: gnu/packages/perl.scm:2767 +msgid "Wrapper for Perl JSON classes" +msgstr "" + +#: gnu/packages/perl.scm:2769 +msgid "" +"This module tries to provide a coherent API to bring together the\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" +"any JSON API and have it work regardless of which JSON module is actual= ly\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:2793 +msgid "Cpanel::JSON::XS with fallback" +msgstr "" + +#: gnu/packages/perl.scm:2794 +msgid "" +"This module first checks to see if either Cpanel::JSON::XS\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" +"either uses the first module it finds or throws an error." +msgstr "" + +#: gnu/packages/perl.scm:2817 +msgid "JSON serialising/deserialising for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 +msgid "Combination of List::Util and List::MoreUtils" +msgstr "" + +#: gnu/packages/perl.scm:2890 +msgid "" +"This module exports all of the functions that either\n" +"List::Util or List::MoreUtils defines, with preference to List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2914 +msgid "Provide the stuff missing in List::Util" +msgstr "" + +#: gnu/packages/perl.scm:2915 +msgid "" +"List::MoreUtils provides some trivial but commonly needed\n" +"functionality on lists which is not going to go into List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2933 +msgid "Expiry plug-in for Memoize that adds LRU cache expiration" +msgstr "" + +#: gnu/packages/perl.scm:2934 +msgid "" +"This module implements an expiry policy for Memoize that\n" +"follows LRU semantics, that is, the last n results, where n is specifie= d as\n" +"the argument to the CACHESIZE parameter, will be cached." +msgstr "" + +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 +msgid "Definition of MIME types" +msgstr "" + +#: gnu/packages/perl.scm:2973 +msgid "" +"This module provides a list of known mime-types, combined\n" +"from various sources. For instance, it contains all IANA types and the= \n" +"knowledge of Apache." +msgstr "" + +#: gnu/packages/perl.scm:3002 +msgid "Tiny replacement for Module::Build" +msgstr "" + +#: gnu/packages/perl.scm:3003 +msgid "" +"Many Perl distributions use a Build.PL file instead of a\n" +"Makefile.PL file to drive distribution configuration, build, test and\n= " +"installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" +"build system. This module provides a simple, lightweight, drop-in\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" +"has less than 120, yet supports the features needed by most distributio= ns." +msgstr "" + +#: gnu/packages/perl.scm:3025 +msgid "Find and use installed modules in a (sub)category" +msgstr "" + +#: gnu/packages/perl.scm:3026 +msgid "" +"Module::Find lets you find and use modules in categories.\n" +"This can be useful for auto-detecting driver or plugin modules. You ca= n\n" +"differentiate between looking in the category itself or in all\n" +"subcategories." +msgstr "" + +#: gnu/packages/perl.scm:3052 +msgid "Loads alternate underlying implementations for a module" +msgstr "" + +#: gnu/packages/perl.scm:3053 +msgid "" +"This module abstracts out the process of choosing one of\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" +"implementations." +msgstr "" + +#: gnu/packages/perl.scm:3091 +msgid "Standalone, extensible Perl module installer" +msgstr "" + +#: gnu/packages/perl.scm:3092 +msgid "" +"Module::Install is a package for writing installers for\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" +"strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" +"installation version 5.005 or newer." +msgstr "" + +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 +msgid "Perl runtime module handling" +msgstr "" + +#: gnu/packages/perl.scm:3134 +msgid "" +"The functions exported by this module deal with runtime\n" +"handling of Perl modules, which are normally handled at compile time." +msgstr "" + +#: gnu/packages/perl.scm:3157 +msgid "Provide information on conflicts for Module::Runtime" +msgstr "" + +#: gnu/packages/perl.scm:3158 +msgid "" +"This module provides conflicts checking for Module::Runtime,\n" +"which had a recent release that broke some versions of Moose. It is ca= lled\n" +"from Moose::Conflicts and moose-outdated." +msgstr "" + +#: gnu/packages/perl.scm:3179 +msgid "Recursively scan Perl code for dependencies" +msgstr "" + +#: gnu/packages/perl.scm:3180 +msgid "" +"Module::ScanDeps is a module to recursively scan Perl\n" +"programs for dependencies." +msgstr "" + +#: gnu/packages/perl.scm:3200 +msgid "Module name tools and transformations" +msgstr "" + +#: gnu/packages/perl.scm:3201 +msgid "" +"This module provides a few useful functions for manipulating\n" +"module names. Its main aim is to centralise some of the functions comm= only\n" +"used by modules that manipulate other modules in some way, like convert= ing\n" +"module names to relative paths." +msgstr "" + +#: gnu/packages/perl.scm:3231 +msgid "Minimalist Object Orientation (with Moose compatibility)" +msgstr "" + +#: gnu/packages/perl.scm:3232 +msgid "" +"Moo is an extremely light-weight Object Orientation system.\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" +"that avoids the details of Perl's object system. Moo contains a subset= of\n" +"Moose and is optimised for rapid startup." +msgstr "" + +#: gnu/packages/perl.scm:3308 +msgid "Postmodern object system for Perl 5" +msgstr "" + +#: gnu/packages/perl.scm:3310 +msgid "" +"Moose is a complete object system for Perl 5. It provides keywords for= \n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" +"Moose, you define your class declaratively, without needing to know abo= ut\n" +"blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" +"A class definition with Moose reads like a list of very concise English= \n" +"sentences." +msgstr "" + +#: gnu/packages/perl.scm:3338 +msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" +msgstr "" + +#: gnu/packages/perl.scm:3339 +msgid "" +"This module attempts to emulate the behavior of\n" +"Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" +"private methods are not." +msgstr "" + +#: gnu/packages/perl.scm:3371 +msgid "Moose role for processing command line options" +msgstr "" + +#: gnu/packages/perl.scm:3372 +msgid "" +"This is a Moose role which provides an alternate constructor\n" +"for creating objects using parameters passed in from the command line." +msgstr "" + +#: gnu/packages/perl.scm:3393 +msgid "Mark overload code symbols as methods" +msgstr "" + +#: gnu/packages/perl.scm:3394 +msgid "" +"MooseX::MarkAsMethods allows one to easily mark certain\n" +"functions as Moose methods. This will allow other packages such as\n" +"namespace::autoclean to operate without blowing away your overloads. A= fter\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" +"being methods, and class extension as well as composition from roles wi= th\n" +"overloads will \"just work\"." +msgstr "" + +#: gnu/packages/perl.scm:3424 +msgid "Code attribute introspection" +msgstr "" + +#: gnu/packages/perl.scm:3425 +msgid "" +"This module allows code attributes of methods to be\n" +"introspected using Moose meta method objects." +msgstr "" + +#: gnu/packages/perl.scm:3451 +msgid "Subclassing of non-Moose classes" +msgstr "" + +#: gnu/packages/perl.scm:3452 +msgid "" +"MooseX::NonMoose allows for easily subclassing non-Moose\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" +"as setting up proper inheritance from Moose::Object and installing (and= \n" +"inlining, at make_immutable time) a constructor that makes sure things = like\n" +"BUILD methods are called. It tries to be as non-intrusive as possible.= " +msgstr "" + +#: gnu/packages/perl.scm:3481 +msgid "Extension of Params::Validate using Moose's types" +msgstr "" + +#: gnu/packages/perl.scm:3482 +msgid "" +"This module fills a gap in Moose by adding method parameter\n" +"validation to Moose." +msgstr "" + +#: gnu/packages/perl.scm:3503 +msgid "Apply roles to a related Perl class" +msgstr "" + +#: gnu/packages/perl.scm:3504 +msgid "" +"This module applies roles to make a subclass instead of\n" +"manually setting up a subclass." +msgstr "" + +#: gnu/packages/perl.scm:3531 +msgid "Moose roles with composition parameters" +msgstr "" + +#: gnu/packages/perl.scm:3532 +msgid "" +"Because Moose roles serve many different masters, they\n" +"usually provide only the least common denominator of functionality. To= \n" +"empower roles further, more configurability than -alias and -excludes i= s\n" +"required. Perhaps your role needs to know which method to call when it= is\n" +"done processing, or what default value to use for its url attribute.\n" +"Parameterized roles offer a solution to these (and other) kinds of prob= lems." +msgstr "" + +#: gnu/packages/perl.scm:3558 +msgid "Roles which support overloading" +msgstr "" + +#: gnu/packages/perl.scm:3559 +msgid "" +"MooseX::Role::WithOverloading allows you to write a\n" +"Moose::Role which defines overloaded operators and allows those overloa= d\n" +"methods to be composed into the classes/roles/instances it's compiled t= o,\n" +"where plain Moose::Roles would lose the overloading." +msgstr "" + +#: gnu/packages/perl.scm:3581 +msgid "Name your accessors foo() and set_foo()" +msgstr "" + +#: gnu/packages/perl.scm:3582 +msgid "" +"This module does not provide any methods. Simply loading it\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" +"accessor, while set methods are prefixed with \"_set_\"." +msgstr "" + +#: gnu/packages/perl.scm:3608 +msgid "Strict object constructors for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3609 +msgid "" +"Simply loading this module makes your constructors\n" +"\"strict\". If your constructor is called with an attribute init argum= ent\n" +"that your class does not declare, then it calls Moose->throw_error()." +msgstr "" + +#: gnu/packages/perl.scm:3637 +msgid "Trait loading and resolution for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3638 +msgid "" +"Adds support on top of MooseX::Traits for class precedence\n" +"search for traits and some extra attributes." +msgstr "" + +#: gnu/packages/perl.scm:3664 +msgid "Organise your Moose types in libraries" +msgstr "" + +#: gnu/packages/perl.scm:3665 +msgid "" +"This package lets you declare types using short names, but\n" +"behind the scenes it namespaces all your type declarations, effectively= \n" +"prevent name clashes between packages." +msgstr "" + +#: gnu/packages/perl.scm:3696 +msgid "DateTime related constraints and coercions for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3697 +msgid "" +"This module packages several Moose::Util::TypeConstraints\n" +"with coercions, designed to work with the DateTime suite of objects." +msgstr "" + +#: gnu/packages/perl.scm:3729 +msgid "Extensions to MooseX::Types::DateTime" +msgstr "" + +#: gnu/packages/perl.scm:3730 +msgid "" +"This module builds on MooseX::Types::DateTime to add\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" +"all coercions and constraints are inherited." +msgstr "" + +#: gnu/packages/perl.scm:3759 +msgid "ClassName type constraints for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3760 +msgid "" +"MooseX::Types::LoadableClass provides a ClassName type\n" +"constraint with coercion to load the class." +msgstr "" + +#: gnu/packages/perl.scm:3784 +msgid "Moosish types and type builder" +msgstr "" + +#: gnu/packages/perl.scm:3785 +msgid "" +"MooX::Types::MooseLike provides a possibility to build your\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" +"fields in Moo-based classes." +msgstr "" + +#: gnu/packages/perl.scm:3804 +msgid "MRO interface compatibility for Perls < 5.9.5" +msgstr "" + +#: gnu/packages/perl.scm:3805 +msgid "" +"The \"mro\" namespace provides several utilities for dealing\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" +"higher. This module provides those interfaces for earlier versions of\= n" +"Perl (back to 5.6.0)." +msgstr "" + +#: gnu/packages/perl.scm:3832 +msgid "Keep imports out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3833 +msgid "" +"The namespace::autoclean pragma will remove all imported\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" +"up as methods on your class or instances. It is very similar to\n" +"namespace::clean, except it will clean all imported functions, no matte= r if\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" +"anything that looks like a method." +msgstr "" + +#: gnu/packages/perl.scm:3859 +msgid "Keep imports and functions out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3860 +msgid "" +"The namespace::clean pragma will remove all previously\n" +"declared or imported symbols at the end of the current package's compil= e\n" +"cycle. Functions called in the package itself will still be bound by t= heir\n" +"name, but they won't show up as methods on your class or instances." +msgstr "" + +#: gnu/packages/perl.scm:3880 +msgid "Numeric comparisons" +msgstr "" + +#: gnu/packages/perl.scm:3881 +msgid "" +"Number::Compare compiles a simple comparison to an anonymous\n" +"subroutine, which you can call with a value to be tested against." +msgstr "" + +#: gnu/packages/perl.scm:3899 +msgid "Generate cryptographic signatures for objects" +msgstr "" + +#: gnu/packages/perl.scm:3900 +msgid "" +"Object::Signature is an abstract base class that you can\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" +"signatures." +msgstr "" + +#: gnu/packages/perl.scm:3922 +msgid "Anonymous packages" +msgstr "" + +#: gnu/packages/perl.scm:3923 +msgid "" +"This module allows for anonymous packages that are\n" +"independent of the main namespace and only available through an object\= n" +"instance, not by name." +msgstr "" + +#: gnu/packages/perl.scm:3951 +msgid "Manage deprecation warnings for your distribution" +msgstr "" + +#: gnu/packages/perl.scm:3952 +msgid "" +"This module allows you to manage a set of deprecations for\n" +"one or more modules." +msgstr "" + +#: gnu/packages/perl.scm:3979 +msgid "Routines for manipulating stashes" +msgstr "" + +#: gnu/packages/perl.scm:3980 +msgid "" +"Manipulating stashes (Perl's symbol tables) is occasionally\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" +"of that behind a simple API." +msgstr "" + +#: gnu/packages/perl.scm:4003 +#, fuzzy +msgid "Faster implementation of the Package::Stash API" +msgstr "Realigo curses de la API Glk" + +#: gnu/packages/perl.scm:4004 +msgid "" +"This is a backend for Package::Stash, which provides the\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" +"compiler." +msgstr "" + +#: gnu/packages/perl.scm:4024 +msgid "Play with other peoples' lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:4025 +msgid "" +"PadWalker is a module which allows you to inspect (and even\n" +"change) lexical variables in any subroutine which called you. It will = only\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" +"is particularly useful for debugging." +msgstr "" + +#: gnu/packages/perl.scm:4046 +msgid "Simple, compact and correct param-checking functions" +msgstr "" + +#: gnu/packages/perl.scm:4048 +msgid "" +"Params::Util provides a basic set of importable functions that makes\n" +"checking parameters easier." +msgstr "" + +#: gnu/packages/perl.scm:4072 +msgid "Validate method/function parameters" +msgstr "" + +#: gnu/packages/perl.scm:4073 +msgid "" +"The Params::Validate module allows you to validate method or\n" +"function call parameters to an arbitrary level of specificity." +msgstr "" + +#: gnu/packages/perl.scm:4091 +msgid "Create and manipulate PAR distributions" +msgstr "" + +#: gnu/packages/perl.scm:4092 +msgid "" +"PAR::Dist is a toolkit to create and manipulate PAR\n" +"distributions." +msgstr "" + +#: gnu/packages/perl.scm:4111 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time." +msgstr "" + +#: gnu/packages/perl.scm:4130 +msgid "Path specification manipulation" +msgstr "" + +#: gnu/packages/perl.scm:4131 +msgid "" +"Path::Class is a module for manipulation of file and\n" +"directory specifications in a cross-platform manner." +msgstr "" + +#: gnu/packages/perl.scm:4151 +msgid "Check for comprehensive documentation of a module" +msgstr "" + +#: gnu/packages/perl.scm:4152 +msgid "" +"This module provides a mechanism for determining if the pod\n" +"for a given module is comprehensive." +msgstr "" + +#: gnu/packages/perl.scm:4169 +msgid "Parsing library for text in Pod format" +msgstr "" + +#: gnu/packages/perl.scm:4170 +msgid "" +"Pod::Simple is a Perl library for parsing text in\n" +"the Pod (plain old documentation) markup language that is typically\n" +"used for writing documentation for Perl and for Perl modules." +msgstr "" + +#: gnu/packages/perl.scm:4191 +msgid "GNU C library compatible strftime for loggers and servers" +msgstr "" + +#: gnu/packages/perl.scm:4192 +msgid "" +"POSIX::strftime::Compiler provides GNU C library compatible\n" +"strftime(3). But this module is not affected by the system locale. Th= is\n" +"feature is useful when you want to write loggers, servers, and portable= \n" +"applications." +msgstr "" + +#: gnu/packages/perl.scm:4210 +msgid "Information about the currently running perl" +msgstr "" + +#: gnu/packages/perl.scm:4212 +msgid "" +"Probe::Perl provides methods for obtaining information about the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" +"Module::Build project, but has been externalized here for general use." +msgstr "" + +#: gnu/packages/perl.scm:4234 +msgid "Create read-only scalars, arrays, hashes" +msgstr "" + +#: gnu/packages/perl.scm:4235 +msgid "" +"This module provides a facility for creating non-modifiable\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" +"variables that should not be changed." +msgstr "" + +#: gnu/packages/perl.scm:4253 +msgid "Provide commonly requested regular expressions" +msgstr "" + +#: gnu/packages/perl.scm:4255 +msgid "" +"This module exports a single hash (`%RE') that stores or generates\n" +"commonly needed regular expressions. Patterns currently provided inclu= de:\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" +"floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" +"offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" +"codes." +msgstr "" + +#: gnu/packages/perl.scm:4285 +msgid "Roles, as a slice of Moose" +msgstr "" + +#: gnu/packages/perl.scm:4286 +msgid "Role::Tiny is a minimalist role composition tool." +msgstr "" + +#: gnu/packages/perl.scm:4303 +msgid "Call isa, can, does, and DOES safely" +msgstr "" + +#: gnu/packages/perl.scm:4304 +msgid "" +"This module allows you to call isa, can, does, and DOES\n" +"safely on things that may not be objects." +msgstr "" + +#: gnu/packages/perl.scm:4322 +#, fuzzy +msgid "Lexically-scoped resource management" +msgstr "Administro de uzant-spaca aparato" + +#: gnu/packages/perl.scm:4323 +msgid "" +"This module provides a convenient way to perform cleanup or\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" +"useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" +"\"promises\" to be made that are automatically honoured by perl's garba= ge\n" +"collector." +msgstr "" + +#: gnu/packages/perl.scm:4346 +msgid "Infinite sets" +msgstr "" + +#: gnu/packages/perl.scm:4347 +msgid "Set::Infinite is a set theory module for infinite sets." +msgstr "" + +#: gnu/packages/perl.scm:4367 +msgid "Unordered collections of Perl Objects" +msgstr "" + +#: gnu/packages/perl.scm:4368 +msgid "" +"Set::Object provides efficient sets, unordered collections\n" +"of Perl objects without duplicates for scalars and references." +msgstr "" + +#: gnu/packages/perl.scm:4386 +#, fuzzy +msgid "Set operations for Perl" +msgstr "Interfaco de SQLite por Perl" + +#: gnu/packages/perl.scm:4387 +msgid "" +"The first priority of Set::Scalar is to be a convenient\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" +"designed to be slow or big, neither has it been designed to be fast or\= n" +"compact." +msgstr "" + +#: gnu/packages/perl.scm:4407 +msgid "Spiffy Perl Interface Framework For You" +msgstr "" + +#: gnu/packages/perl.scm:4408 +msgid "" +"Spiffy is a framework and methodology for doing object\n" +"oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" +"other OO languages like Python, Ruby, Java and Perl 6." +msgstr "" + +#: gnu/packages/perl.scm:4430 +msgid "Temporary buffer to save bytes" +msgstr "" + +#: gnu/packages/perl.scm:4431 +msgid "" +"Stream::Buffered is a buffer class to store arbitrary length\n" +"of byte strings and then get a seekable filehandle once everything is\n= " +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" +"on the length of the size." +msgstr "" + +#: gnu/packages/perl.scm:4451 +msgid "Turn on strict and make all warnings fatal" +msgstr "" + +#: gnu/packages/perl.scm:4452 +msgid "" +"Strictures turns on strict and make all warnings fatal when\n" +"run from within a source-controlled directory." +msgstr "" + +#: gnu/packages/perl.scm:4470 +msgid "Camelcase and de-camelcase" +msgstr "" + +#: gnu/packages/perl.scm:4471 +msgid "" +"This module may be used to convert from under_score text to\n" +"CamelCase and back again." +msgstr "" + +#: gnu/packages/perl.scm:4491 +msgid "Rewrite strings based on a set of known prefixes" +msgstr "" + +#: gnu/packages/perl.scm:4492 +msgid "" +"This module allows you to rewrite strings based on a set of\n" +"known prefixes." +msgstr "" + +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 +msgid "Sophisticated exporter for custom-built routines" +msgstr "" + +#: gnu/packages/perl.scm:4538 +msgid "" +"Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " +"custom-built routines." +msgstr "" + +#: gnu/packages/perl.scm:4557 +msgid "Only use Sub::Exporter if you need it" +msgstr "" + +#: gnu/packages/perl.scm:4558 +msgid "" +"Sub::Exporter is an incredibly powerful module, but with\n" +"that power comes great responsibility, as well as some runtime penaltie= s.\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" +"if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" +"renaming exports, if they try to use them." +msgstr "" + +#: gnu/packages/perl.scm:4580 +msgid "Retrieve names of code references" +msgstr "" + +#: gnu/packages/perl.scm:4581 +msgid "" +"Sub::Identify allows you to retrieve the real name of code\n" +"references." +msgstr "" + +#: gnu/packages/perl.scm:4600 +msgid "Install subroutines into packages easily" +msgstr "" + +#: gnu/packages/perl.scm:4602 +msgid "" +"Sub::Install makes it easy to install subroutines into packages without= \n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" +"can see them." +msgstr "" + +#: gnu/packages/perl.scm:4623 +msgid "(Re)name a sub" +msgstr "" + +#: gnu/packages/perl.scm:4624 +msgid "" +"Assigns a new name to referenced sub. If package\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" +"return value is the sub." +msgstr "" + +#: gnu/packages/perl.scm:4643 +msgid "Apparently run a function in a higher stack frame" +msgstr "" + +#: gnu/packages/perl.scm:4644 +msgid "" +"Like Tcl's uplevel() function, but not quite so dangerous.\n" +"The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" +"uplevel() are avoided." +msgstr "" + +#: gnu/packages/perl.scm:4663 +msgid "Perl extension for generating SVG documents" +msgstr "" + +#: gnu/packages/perl.scm:4664 +msgid "" +"SVG is a Perl module which generates a nested data structure\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" +"Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" +"access the DOM object, create and access Javascript, and generate SMIL\= n" +"animation content." +msgstr "" + +#: gnu/packages/perl.scm:4683 +msgid "Perl extension for getting CPU information" +msgstr "" + +#: gnu/packages/perl.scm:4685 +msgid "" +"In responce to a post on perlmonks.org, a module for counting the numbe= r\n" +"of CPU's on a system. Support has now also been added for type of CPU = and\n" +"clock speed." +msgstr "" + +#: gnu/packages/perl.scm:4707 +msgid "Get full hostname in Perl" +msgstr "" + +#: gnu/packages/perl.scm:4708 +msgid "" +"Sys::Hostname::Long tries very hard to get the full hostname\n" +"of a system." +msgstr "" + +#: gnu/packages/perl.scm:4726 +msgid "Ensure that a platform has weaken support" +msgstr "" + +#: gnu/packages/perl.scm:4727 +msgid "" +"One recurring problem in modules that use Scalar::Util's\n" +"weaken function is that it is not present in the pure-perl variant. If= \n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" +"error encouraging the user to seek support." +msgstr "" + +#: gnu/packages/perl.scm:4752 +msgid "Template processing system for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4753 +msgid "" +"The Template Toolkit is a collection of modules which\n" +"implement an extensible template processing system. It was originally\= n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" +"it can be used equally well for processing any other kind of text based= \n" +"documents: HTML, XML, POD, PostScript, LaTeX, and so on." +msgstr "" + +#: gnu/packages/perl.scm:4776 +msgid "Profiling for Template Toolkit" +msgstr "" + +#: gnu/packages/perl.scm:4777 +msgid "" +"Template::Timer provides inline profiling of the template\n" +"processing in Perl code." +msgstr "" + +#: gnu/packages/perl.scm:4795 +msgid "Detect encoding of the current terminal" +msgstr "" + +#: gnu/packages/perl.scm:4796 +msgid "" +"Term::Encoding is a simple module to detect the encoding of\n" +"the current terminal expects in various ways." +msgstr "" + +#: gnu/packages/perl.scm:4820 +msgid "Progress meter on a standard terminal" +msgstr "" + +#: gnu/packages/perl.scm:4821 +msgid "" +"Term::ProgressBar provides a simple progress bar on the\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" +"stuff has been done, and maybe an estimate at how long remains." +msgstr "" + +#: gnu/packages/perl.scm:4844 +msgid "Progress meter if run interactively" +msgstr "" + +#: gnu/packages/perl.scm:4845 +msgid "" +"Term::ProgressBar is a wonderful module for showing progress\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" +"a cron job) then it does not show the progress bar." +msgstr "" + +#: gnu/packages/perl.scm:4867 +msgid "Simple progress bars" +msgstr "" + +#: gnu/packages/perl.scm:4868 +msgid "" +"Term::ProgressBar::Simple tells you how much work has been\n" +"done, how much is left to do, and estimate how long it will take." +msgstr "" + +#: gnu/packages/perl.scm:4886 +#, fuzzy +msgid "Simple terminal control" +msgstr "Simpla alkrementa savkopiilo" + +#: gnu/packages/perl.scm:4887 +msgid "" +"This module, ReadKey, provides ioctl control for terminals\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" +"other terminal related features, including retrieval/modification of th= e\n" +"screen size, and retrieval/modification of the control characters." +msgstr "" + +#: gnu/packages/perl.scm:4914 +msgid "Data-driven testing framework for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4915 +msgid "" +"Test::Base gives a way to trivially write your own test\n" +"framework base class. It concentrates on offering reusable data driven= \n" +"patterns, so that you can write tests with a minimum of code." +msgstr "" + +#: gnu/packages/perl.scm:4946 +msgid "Check for uncleaned imports" +msgstr "" + +#: gnu/packages/perl.scm:4947 +msgid "" +"This module lets you check your module's namespaces for\n" +"imported functions you might have forgotten to remove with\n" +"namespace::autoclean or namespace::clean and are therefore available to= be\n" +"called as methods, which usually isn't want you want." +msgstr "" + +#: gnu/packages/perl.scm:4967 +msgid "Flexible deep comparison for the Test::Builder framework" +msgstr "" + +#: gnu/packages/perl.scm:4969 +msgid "" +"Test::Deep compares two structures by going through each level, ensurin= g\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" +"structures without getting caught in an infinite loop." +msgstr "" + +#: gnu/packages/perl.scm:4996 +msgid "Test strings and data structures and show differences" +msgstr "" + +#: gnu/packages/perl.scm:4997 +msgid "" +"This module exports three test functions and four diff-style\n" +"functions." +msgstr "" + +#: gnu/packages/perl.scm:5018 +msgid "Perl extension for maintaining test directories" +msgstr "" + +#: gnu/packages/perl.scm:5019 +msgid "" +"Testing code can involve making sure that files are created\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" +"to forget a file, or miss that some unexpected file was added. This mo= dule\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" +"modified or tested with this API, making it simple to test both individ= ual\n" +"files, as well as to verify that there are no missing or unknown files.= " +msgstr "" + +#: gnu/packages/perl.scm:5045 +msgid "Test exception based code" +msgstr "" + +#: gnu/packages/perl.scm:5046 +msgid "" +"This module provides a few convenience methods for testing\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" +"Test::More and friends." +msgstr "" + +#: gnu/packages/perl.scm:5066 +msgid "Simple helpers for testing code with exceptions" +msgstr "" + +#: gnu/packages/perl.scm:5067 +msgid "" +"Test::Fatal is an alternative to the popular\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" +"testing exception-throwing code with about the same amount of typing." +msgstr "" + +#: gnu/packages/perl.scm:5097 +msgid "Run Perl standard test scripts with statistics" +msgstr "" + +#: gnu/packages/perl.scm:5098 +msgid "" +"Simple test harness which allows tests to be run and results\n" +"automatically aggregated and output to STDOUT." +msgstr "" + +#: gnu/packages/perl.scm:5116 +msgid "Traces memory leaks in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5117 +msgid "" +"Test::LeakTrace provides several functions that trace memory\n" +"leaks. This module scans arenas, the memory allocation system, so it c= an\n" +"detect any leaked SVs in given blocks." +msgstr "" + +#: gnu/packages/perl.scm:5136 +msgid "Tests strings for equality, with more helpful failures" +msgstr "" + +#: gnu/packages/perl.scm:5137 +msgid "" +"This module provides some drop-in replacements for the\n" +"string comparison functions of Test::More, but which are more suitable = when\n" +"you test against long strings." +msgstr "" + +#: gnu/packages/perl.scm:5165 +#, fuzzy +msgid "Emulate troublesome interfaces in Perl" +msgstr "Interfaco de SQLite por Perl" + +#: gnu/packages/perl.scm:5166 +msgid "" +"Test::MockObject allows you to create objects that conform\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" +"the behavior, just the input and the output." +msgstr "" + +#: gnu/packages/perl.scm:5185 +msgid "Replaces actual time with simulated time" +msgstr "" + +#: gnu/packages/perl.scm:5186 +msgid "" +"This module was created to enable test suites to test code\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" +"time at compile time and then relies on the user supplying a mock time = via\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" +"to gmtime,time or localtime." +msgstr "" + +#: gnu/packages/perl.scm:5213 +msgid "Most commonly needed test functions and features" +msgstr "" + +#: gnu/packages/perl.scm:5214 +msgid "" +"This module provides the most commonly used testing\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" +"bit more fine-grained control over test suites." +msgstr "" + +#: gnu/packages/perl.scm:5232 +msgid "Ensure no warnings are produced while testing" +msgstr "" + +#: gnu/packages/perl.scm:5234 +msgid "" +"This modules causes any warnings during testing to be captured and\n" +"stored. It automatically adds an extra test that will run when your sc= ript\n" +"ends to check that there were no warnings. If there were any warnings,= the\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" +"including a stack trace of what was going on when it occurred." +msgstr "" + +#: gnu/packages/perl.scm:5259 +msgid "Utilities to test STDOUT and STDERR messages" +msgstr "" + +#: gnu/packages/perl.scm:5261 +msgid "" +"Test::Output provides a simple interface for testing output sent to\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" +"as flexible as possible to the tester." +msgstr "" + +#: gnu/packages/perl.scm:5283 +msgid "Check for POD errors in files" +msgstr "" + +#: gnu/packages/perl.scm:5284 +msgid "" +"Check POD files for errors or warnings in a test file, using\n" +"Pod::Simple to do the heavy lifting." +msgstr "" + +#: gnu/packages/perl.scm:5304 +msgid "Check for pod coverage" +msgstr "" + +#: gnu/packages/perl.scm:5305 +msgid "" +"This module adds a test to your Perl distribution which\n" +"checks for pod coverage of all appropriate files." +msgstr "" + +#: gnu/packages/perl.scm:5323 +msgid "Checks to see if the module can be loaded" +msgstr "" + +#: gnu/packages/perl.scm:5324 +msgid "" +"Test::Requires checks to see if the module can be loaded.\n" +"If this fails, then rather than failing tests this skips all tests." +msgstr "" + +#: gnu/packages/perl.scm:5343 +msgid "Basic cross-platform tests for scripts" +msgstr "" + +#: gnu/packages/perl.scm:5345 +msgid "" +"The intent of the Test::Script module is to provide a series of basic\n= " +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" +"bin as is also commonly used) paths of your Perl distribution." +msgstr "" + +#: gnu/packages/perl.scm:5368 +msgid "Fork test in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5369 +msgid "" +"Test::SharedFork is a utility module for Test::Builder. It\n" +"makes fork(2) safe to use in test cases." +msgstr "" + +#: gnu/packages/perl.scm:5385 +msgid "Basic utilities for writing tests" +msgstr "" + +#: gnu/packages/perl.scm:5387 +msgid "Test::Simple contains basic utilities for writing tests." +msgstr "" + +#: gnu/packages/perl.scm:5404 +msgid "Simplify running Test::Builder tests" +msgstr "" + +#: gnu/packages/perl.scm:5406 +msgid "" +"Test::Tester allows testing of test modules based on Test::Builder with= \n" +"a minimum of effort." +msgstr "" + +#: gnu/packages/perl.scm:5432 +msgid "Trap exit codes, exceptions, output, etc." +msgstr "" + +#: gnu/packages/perl.scm:5433 +msgid "" +"This module is primarily (but not exclusively) for use in\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" +"from boxed blocks of test code." +msgstr "" + +#: gnu/packages/perl.scm:5453 +msgid "UTF-8 testing in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5454 +msgid "" +"This module is a collection of tests useful for dealing with\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" +"will check that string has a given set of characteristics." +msgstr "" + +#: gnu/packages/perl.scm:5476 +msgid "Perl extension to test methods for warnings" +msgstr "" + +#: gnu/packages/perl.scm:5477 +msgid "" +"This module provides a few convenience methods for testing\n" +"warning based code." +msgstr "" + +#: gnu/packages/perl.scm:5495 +msgid "Test for warnings and the lack of them" +msgstr "" + +#: gnu/packages/perl.scm:5496 +msgid "" +"This module is intended to be used as a drop-in replacement\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" +"done_testing calculates the test count, rather than after. It does thi= s by\n" +"hooking into done_testing as well as via an END block. You can declare= a\n" +"plan, or not, and things will still Just Work." +msgstr "" + +#: gnu/packages/perl.scm:5517 +msgid "Test fallback behaviour in absence of modules" +msgstr "" + +#: gnu/packages/perl.scm:5518 +msgid "" +"This module allows you to deliberately hide modules from a\n" +"program even though they are installed. This is mostly useful for test= ing\n" +"modules that have a fallback when a certain dependency module is not\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:5545 +msgid "Dynamic generation of tests" +msgstr "" + +#: gnu/packages/perl.scm:5546 +msgid "" +"The Test::WriteVariants module provides for the dynamic\n" +"generation of tests in nested combinations of contexts." +msgstr "" + +#: gnu/packages/perl.scm:5566 +msgid "Testing module for YAML implementations" +msgstr "" + +#: gnu/packages/perl.scm:5567 +msgid "" +"Test::YAML is a subclass of Test::Base with YAML specific\n" +"support." +msgstr "" + +#: gnu/packages/perl.scm:5586 +msgid "Align text" +msgstr "" + +#: gnu/packages/perl.scm:5587 +msgid "" +"Text::Aligner exports a single function, align(), which is\n" +"used to justify strings to various alignment styles." +msgstr "" + +#: gnu/packages/perl.scm:5605 +msgid "Extract delimited text sequences from strings" +msgstr "" + +#: gnu/packages/perl.scm:5606 +msgid "" +"The Text::Balanced module can be used to extract delimited\n" +"text sequences from strings." +msgstr "" + +#: gnu/packages/perl.scm:5624 +msgid "Manipulate comma-separated values" +msgstr "" + +#: gnu/packages/perl.scm:5625 +msgid "" +"Text::CSV provides facilities for the composition and\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" +"can combine fields into a CSV string and parse a CSV string into fields= ." +msgstr "" + +#: gnu/packages/perl.scm:5646 +msgid "Perform diffs on files and record sets" +msgstr "" + +#: gnu/packages/perl.scm:5647 +msgid "" +"Text::Diff provides a basic set of services akin to the GNU\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" +"is better integrated with Perl and available on all platforms. It is o= ften\n" +"faster than shelling out to a system's diff executable for small files,= and\n" +"generally slower on larger files." +msgstr "" + +#: gnu/packages/perl.scm:5669 +msgid "Match globbing patterns against text" +msgstr "" + +#: gnu/packages/perl.scm:5670 +msgid "" +"Text::Glob implements glob(3) style matching that can be\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" +"you want to do full file globbing use the File::Glob module instead." +msgstr "" + +#: gnu/packages/perl.scm:5689 +msgid "Simple ASCII tables" +msgstr "" + +#: gnu/packages/perl.scm:5690 +msgid "Text::SimpleTable draws simple ASCII tables." +msgstr "" + +#: gnu/packages/perl.scm:5711 +msgid "Organize Data in Tables" +msgstr "" + +#: gnu/packages/perl.scm:5712 +msgid "Text::Table renders plaintext tables." +msgstr "" + +#: gnu/packages/perl.scm:5729 +msgid "Provide plain ASCII transliterations of Unicode text" +msgstr "" + +#: gnu/packages/perl.scm:5730 +msgid "" +"Text::Unidecode provides a function, unidecode(...) that\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" +"is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" +"letters, the pronunciation expressed by the text in some other writing\= n" +"system." +msgstr "" + +#: gnu/packages/perl.scm:5758 +msgid "Role for classes that can be thrown" +msgstr "" + +#: gnu/packages/perl.scm:5759 +msgid "" +"Throwable is a role for classes that are meant to be thrown\n" +"as exceptions to standard program flow." +msgstr "" + +#: gnu/packages/perl.scm:5778 +msgid "Ordered associative arrays for Perl" +msgstr "" + +#: gnu/packages/perl.scm:5779 +msgid "" +"This Perl module implements Perl hashes that preserve the\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" +"can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" +"operations can also be performed on the IxHash." +msgstr "" + +#: gnu/packages/perl.scm:5802 +msgid "Tie to an existing Perl object" +msgstr "" + +#: gnu/packages/perl.scm:5803 +msgid "" +"This class provides a tie constructor that returns the\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" +"$object->TIEHASH are avoided." +msgstr "" + +#: gnu/packages/perl.scm:5825 +msgid "English expression of durations" +msgstr "" + +#: gnu/packages/perl.scm:5826 +msgid "" +"This module provides functions for expressing durations in\n" +"rounded or exact terms." +msgstr "" + +#: gnu/packages/perl.scm:5848 +msgid "Parse time duration strings" +msgstr "" + +#: gnu/packages/perl.scm:5849 +msgid "" +"Time::Duration::Parse is a module to parse human readable\n" +"duration strings like \"2 minutes\" and \"3 seconds\" to seconds." +msgstr "" + +#: gnu/packages/perl.scm:5867 +msgid "Efficiently compute time from local and GMT time" +msgstr "" + +#: gnu/packages/perl.scm:5868 +msgid "" +"This module provides functions that are the inverse of\n" +"built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" +"the system epoch." +msgstr "" + +#: gnu/packages/perl.scm:5888 +msgid "Date parsing/formatting subroutines" +msgstr "" + +#: gnu/packages/perl.scm:5889 +msgid "" +"This module provides routines for parsing date string into\n" +"time values and formatting dates into ASCII strings." +msgstr "" + +#: gnu/packages/perl.scm:5911 +msgid "Shift and scale time" +msgstr "" + +#: gnu/packages/perl.scm:5912 +msgid "" +"This module allows you to speed up your sleep(), alarm(),\n" +"and time() calls." +msgstr "" + +#: gnu/packages/perl.scm:5935 +msgid "Simple tree object" +msgstr "" + +#: gnu/packages/perl.scm:5936 +msgid "" +"This module in a fully object-oriented implementation of a\n" +"simple n-ary tree." +msgstr "" + +#: gnu/packages/perl.scm:5960 +msgid "Factory object for dispensing Visitor objects" +msgstr "" + +#: gnu/packages/perl.scm:5961 +msgid "" +"This module is a factory for dispensing\n" +"Tree::Simple::Visitor::* objects." +msgstr "" + +#: gnu/packages/perl.scm:5979 +msgid "Minimal try/catch with proper preservation of $@" +msgstr "" + +#: gnu/packages/perl.scm:5980 +msgid "" +"This module provides bare bones try/catch/finally statements\n" +"that are designed to minimize common mistakes with eval blocks, and not= hing\n" +"else." +msgstr "" + +#: gnu/packages/perl.scm:6001 +msgid "Data types for common serialisation formats" +msgstr "" + +#: gnu/packages/perl.scm:6002 +msgid "" +"This module provides some extra datatypes that are used by\n" +"common serialisation formats such as JSON or CBOR." +msgstr "" + +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 +msgid "UNIVERSAL::can() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6043 +msgid "" +"This module attempts to work around people calling\n" +"UNIVERSAL::can() as a function, which it is not." +msgstr "" + +#: gnu/packages/perl.scm:6063 +msgid "UNIVERSAL::isa() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6064 +msgid "" +"This module attempts to recover from people calling\n" +"UNIVERSAL::isa as a function." +msgstr "" + +#: gnu/packages/perl.scm:6082 +msgid "Associate user-defined magic to variables from Perl" +msgstr "" + +#: gnu/packages/perl.scm:6083 +msgid "" +"Magic is Perl's way of enhancing variables. This mechanism\n" +"lets the user add extra data to any variable and hook syntactical\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" +"it. With this module, you can add your own magic to any variable witho= ut\n" +"having to write a single line of XS." +msgstr "" + +#: gnu/packages/perl.scm:6106 +msgid "YAML for Perl" +msgstr "" + +#: gnu/packages/perl.scm:6107 +msgid "" +"The YAML.pm module implements a YAML Loader and Dumper based\n" +"on the YAML 1.0 specification." +msgstr "" + +#: gnu/packages/perl.scm:6130 +msgid "Read/Write YAML files" +msgstr "" + +#: gnu/packages/perl.scm:6131 +msgid "" +"YAML::Tiny is a perl class for reading and writing\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" +"and memory overhead." +msgstr "" + +#: gnu/packages/perl.scm:6158 +msgid "Distribution metadata for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6159 +msgid "" +"Software distributions released to the CPAN include a\n" +"META.json or, for older distributions, META.yml, which describes the\n" +"distribution, its contents, and the requirements for building and " +"installing\n" +"the distribution. The data structure stored in the META.json file is\n= " +"described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " +"represent this distribution metadata (or distmeta), along with some hel= pful\n" +"methods for interrogating that data." +msgstr "" + +#: gnu/packages/perl.scm:6182 +msgid "Set of version requirements for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6183 +msgid "" +"A CPAN::Meta::Requirements object models a set of version\n" +"constraints like those specified in the META.yml or META.json files in = CPAN\n" +"distributions, and as defined by CPAN::Meta::Spec. It can be built up = by\n" +"adding more and more constraints, and will reduce them to the simplest\= n" +"representation." +msgstr "" + +#: gnu/packages/perl.scm:6206 +msgid "Read and write a subset of YAML for CPAN Meta files" +msgstr "" + +#: gnu/packages/perl.scm:6207 +msgid "" +"This module implements a subset of the YAML specification\n" +"for use in reading and writing CPAN metadata files like META.yml and\n" +"MYMETA.yml." +msgstr "" + +#: gnu/packages/perl.scm:6228 +msgid "Build and install Perl modules" +msgstr "" + +#: gnu/packages/perl.scm:6229 +msgid "" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" +"through subclassing in a much more straightforward way than with\n" +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." +msgstr "" + +#: gnu/packages/perl.scm:6254 +msgid "Parse META.yml and META.json CPAN metadata files" +msgstr "" + +#: gnu/packages/perl.scm:6255 +msgid "" +"Parse::CPAN::Meta is a parser for META.json and META.yml\n" +"files, using JSON::PP and/or CPAN::Meta::YAML." +msgstr "" + +#: gnu/packages/perl.scm:6273 +msgid "Common Scalar and List utility subroutines" +msgstr "" + +#: gnu/packages/perl.scm:6274 +msgid "" +"This package contains a selection of subroutines that people\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" +"such that being individual extensions would be wasteful." +msgstr "" + +#: gnu/packages/photo.scm:61 +msgid "Raw image decoder" +msgstr "" + +#: gnu/packages/photo.scm:63 msgid "" -"Duplicity backs up directories by producing encrypted tar-format volume= s\n" -"and uploading them to a remote or local file server. Because duplicity= uses\n" -"librsync, the incremental archives are space efficient and only record = the\n" -"parts of files that have changed since the last backup. Because duplic= ity\n" -"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" -"spying and/or modification by the server." +"LibRaw is a library for reading RAW files obtained from digital photo\n= " +"cameras (CRW/CR2, NEF, RAF, DNG, and others)." msgstr "" =20 -#: gnu/packages/backup.scm:123 -msgid "Simple incremental backup tool" -msgstr "Simpla alkrementa savkopiilo" +#: gnu/packages/photo.scm:80 +msgid "Read and manipulate EXIF data in digital photographs" +msgstr "Legi kaj manipuli datumaron EXIF en ciferecaj fota=C4=B5oj" =20 -#: gnu/packages/backup.scm:125 +#: gnu/packages/photo.scm:82 msgid "" -"Hdup2 is a backup utilty, its aim is to make backup really simple. The= \n" -"backup scheduling is done by means of a cron job. It supports an\n" -"include/exclude mechanism, remote backups, encrypted backups and split\= n" -"backups (called chunks) to allow easy burning to CD/DVD." +"The libexif C library allows applications to read, edit, and save EXIF\= n" +"data as produced by digital cameras." msgstr "" +"La C-biblioteko libexif ebligas ke aplika=C4=B5oj legu, redaktu kaj kon= servu\n" +"datumaron EXIF samkiel produktite de ciferecaj kameraoj." =20 -#: gnu/packages/backup.scm:178 -msgid "Multi-format archive and compression library" -msgstr "Mult-forma biblioteko por ar=C4=A5ivi kaj densigi" +#: gnu/packages/photo.scm:107 +msgid "Accessing digital cameras" +msgstr "Aliro al ciferecaj kameraoj" =20 -#: gnu/packages/backup.scm:180 +#: gnu/packages/photo.scm:109 msgid "" -"Libarchive provides a flexible interface for reading and writing\n" -"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" -"reading and writing archives compressed using various compression filte= rs such\n" -"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" -"serially iterate through the archive, writers serially add things to th= e\n" -"archive. In particular, note that there is currently no built-in suppo= rt for\n" -"random access nor for in-place modification." +"This is the library backend for gphoto2. It contains the code for PTP,= \n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" +"from digital cameras." msgstr "" =20 -#: gnu/packages/backup.scm:243 -msgid "Provide a list of files to backup" -msgstr "Provizas liston da dosieroj por savkopii" +#: gnu/packages/photo.scm:150 +msgid "Command-line tools to access digital cameras" +msgstr "Komandliniaj iloj por aliri ciferecajn kameraojn" =20 -#: gnu/packages/backup.scm:245 +#: gnu/packages/photo.scm:152 msgid "" -"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" -"Rdup itself does not backup anything, it only print a list of absolute\= n" -"filenames to standard output. Auxiliary scripts are needed that act on= this\n" -"list and implement the backup strategy." +"Gphoto2 is a set of command line utilities for manipulating a large\n" +"number of different digital cameras. Through libgphoto2, it supports P= TP,\n" +"MTP, and much more." msgstr "" =20 -#: gnu/packages/backup.scm:275 -msgid "Tar-compatible archiver" -msgstr "Ar=C4=A5ivilo kongrua al tar" +#: gnu/packages/photo.scm:186 +msgid "Program and Perl library to manipulate EXIF tags" +msgstr "Programaro kaj biblioteko Perl por manipuli etikedojn EXIF" =20 -#: gnu/packages/backup.scm:277 +#: gnu/packages/photo.scm:188 msgid "" -"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" -"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" -"compression, input and output serialisation, and tolerance to partial a= rchive\n" -"errors." +"This package provides the 'exiftool' command and the 'Image::ExifTool'\= n" +"Perl library to manipulate EXIF tags of digital images." msgstr "" +"Tiu =C4=89i pako provizas la komandon 'exiftool' kaj la bibliotekon Per= l\n" +"'Image::ExifTool' por manipuli etikedojn EXIF el ciferecaj bildoj." =20 -#: gnu/packages/backup.scm:305 -msgid "Local/remote mirroring+incremental backup" -msgstr "Loka/demalproksima spegula+alkrementa savkopio" +#: gnu/packages/photo.scm:211 +#, fuzzy +msgid "Library for panoramic images" +msgstr "Biblioteko por trakti popularajn grafika=C4=B5ajn bild-formojn" =20 -#: gnu/packages/backup.scm:307 +#: gnu/packages/photo.scm:213 msgid "" -"Rdiff-backup backs up one directory to another, possibly over a network= .\n" -"The target directory ends up a copy of the source directory, but extra = reverse\n" -"diffs are stored in a special subdirectory of that target directory, so= you\n" -"can still recover files lost some time ago. The idea is to combine the= best\n" -"features of a mirror and an incremental backup. Rdiff-backup also pres= erves\n" -"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" -"modification times, extended attributes, acls, and resource forks. Als= o,\n" -"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" -"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive up\n" -"to a remote location, and only the differences will be transmitted. Fi= nally,\n" -"rdiff-backup is easy to use and settings have sensical defaults." +"The libpano13 package contains the backend library written by the\n" +"Panorama Tools project for building panoramic images from a set of\n" +"overlapping images, as well as some command line tools." msgstr "" =20 -#: gnu/packages/base.scm:57 -msgid "Hello, GNU world: An example GNU package" -msgstr "Saluton, mondo GNU: ekzemplo de pako GNU" +#: gnu/packages/photo.scm:255 +#, fuzzy +msgid "Tools for combining and blending images" +msgstr "Iloj por =C5=9Dargi kaj administri linuks-kernajn modulojn" =20 -#: gnu/packages/base.scm:59 +#: gnu/packages/photo.scm:257 msgid "" -"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" -"command-line arguments, multiple languages, and so on." +"Enblend blends away the seams in a panoramic image mosaic using a\n" +"multi-resolution spline. Enfuse merges different exposures of the same= \n" +"scene to produce an image that looks much like a tone-mapped image." msgstr "" -"GNU Hello montras la mesa=C4=9Don \"Hello, world!\" kaj fini=C4=9Das. = =C4=9Ci\n" -"funkcias kiel ekzemplo de norma kodumada tradicio de GNU. Tiel, =C4=9D= i subtenas\n" -"komand-liniajn argumentojn, plurajn lingvojn, kaj tiel plu." =20 -#: gnu/packages/base.scm:77 -msgid "Print lines matching a pattern" -msgstr "Montri liniojn kongruajn al =C5=9Dablono" +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" +msgstr "" =20 -#: gnu/packages/base.scm:79 +#: gnu/packages/qemu.scm:153 msgid "" -"grep is a tool for finding text inside files. Text is found by\n" -"matching a pattern provided by the user in one or many files. The patt= ern\n" -"may be provided as a basic or extended regular expression, or as fixed\= n" -"strings. By default, the matching text is simply printed to the screen= ,\n" -"however the output can be greatly customized to include, for example, l= ine\n" -"numbers. GNU grep offers many extensions over the standard utility,\n" -"including, for example, recursive directory searching." +"QEMU is a generic machine emulator and virtualizer.\n" +"\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" +"machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" +"using dynamic translation, it achieves very good performance.\n" +"\n" +"When used as a virtualizer, QEMU achieves near native performances by\n= " +"executing the guest code directly on the host CPU. QEMU supports\n" +"virtualization when executing under the Xen hypervisor or using\n" +"the KVM kernel module in Linux. When using KVM, QEMU can virtualize x8= 6,\n" +"server and embedded PowerPC, and S390 guests." msgstr "" -"grep estas ilo por trovi tekstojn interne de dosieroj. Teksto estas tr= ovita\n" -"per kongruo al =C5=9Dablono indikita de la uzanto en unu a=C5=AD pluraj= dosieroj.\n" -"La =C5=9Dablono povas esti indikata kiel bazan a=C5=AD etenditan regul-= esprimon, a=C5=AD\n" -"kiel fiksajn =C4=89enojn. Apriore, la kongruita teksto estas simple mo= ntrata\n" -"en la ekrano, tamen la eligo povas esti ege personigita por inkluzivigi= ,\n" -"ekzemple, lini-numerojn. GNU grep oferaj multajn aldonojn kompare al l= a\n" -"originala aplika=C4=B5o, inkluzive, ekzemple, rikuran ser=C4=89adon en = dosierujoj." =20 -#: gnu/packages/base.scm:101 -msgid "Stream editor" -msgstr "Flu-redaktilo" +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" +msgstr "" =20 -#: gnu/packages/base.scm:116 +#: gnu/packages/ratpoison.scm:85 +msgid "Simple mouse-free tiling window manager" +msgstr "Simpla mus-libera kaheleca fenestr-administrilo" + +#: gnu/packages/ratpoison.scm:87 msgid "" -"Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" -"is often used for substituting text patterns in a stream. The GNU\n" -"implementation offers several extensions over the standard utility." +"Ratpoison is a simple window manager with no fat library\n" +"dependencies, no fancy graphics, no window decorations, and no\n" +"rodent dependence. It is largely modelled after GNU Screen which\n" +"has done wonders in the virtual terminal market.\n" +"\n" +"The screen can be split into non-overlapping frames. All windows\n" +"are kept maximized inside their frames to take full advantage of\n" +"your precious screen real estate.\n" +"\n" +"All interaction with the window manager is done through keystrokes.\n" +"Ratpoison has a prefix map to minimize the key clobbering that\n" +"cripples Emacs and other quality pieces of software." msgstr "" -"Sed estas ne-interaga, teksta flu-redaktilo. =C4=9Ci ricevas tekstan\n= " -"enigon el dosiero a=C5=AD=C2=A0el la =C4=89efenigujo kaj tiam =C4=9Di a= plikas serion da teksto-redaktaj komandoj al la fluo kaj montras sian eli= gon en la =C4=89efeligujo. \n" -"=C4=9Ci estas ofte uzata por anstata=C5=ADigi teksto-=C5=9Dablonojn en = fluo. La GNU-a \n" -"realigo oferas plurajn aldonojn kompare al la ordinara aplika=C4=B5o." =20 -#: gnu/packages/base.scm:136 -msgid "Managing tar archives" -msgstr "Administrado de ar=C4=A5ivoj tar" +#: gnu/packages/readline.scm:68 +msgid "Edit command lines while typing, with history support" +msgstr "" =20 -#: gnu/packages/base.scm:138 +#: gnu/packages/readline.scm:70 msgid "" -"Tar provides the ability to create tar archives, as well as the\n" -"ability to extract, update or list files in an existing archive. It is= \n" -"useful for combining many files into one larger file, while maintaining= \n" -"directory structure and file information such as permissions and\n" -"creation/modification dates. GNU tar offers many extensions over the\n= " -"standard utility." +"The GNU readline library allows users to edit command lines as they\n" +"are typed in. It can maintain a searchable history of previously enter= ed\n" +"commands, letting you easily recall, edit and re-enter past commands. = It\n" +"features both Emacs-like and vi-like keybindings, making its usage\n" +"comfortable for anyone." msgstr "" -"Tar aldonas la eblecon krei ar=C4=A5ivojn tar, kaj anka=C5=AD la ebleco= n\n" -"eltiri, =C4=9Disdatigi a=C5=AD listigi dosierojn en ekzistanta ar=C4=A5= ivo. =C4=9Ci estas\n" -"utila por kombini multajn dosierojn en unu granda dosiero, tenante\n" -"dosierujan strukturon kaj dosierinformojn kiel permesojn kaj\n" -"dato de kreo/modifo. GNU tar oferas multajn aldonojn kompare\n" -"al la ordinara aplika=C4=B5o." =20 -#: gnu/packages/base.scm:162 -msgid "Apply differences to originals, with optional backups" -msgstr "Apliki malsamojn al originaloj, kun nedevigaj savkopioj" +#: gnu/packages/scanner.scm:70 +msgid "Raster image scanner library and drivers" +msgstr "Rastruma bild-skanila biblioteko kaj peliloj" =20 -#: gnu/packages/base.scm:164 +#: gnu/packages/scanner.scm:71 msgid "" -"Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" -"files depending on the contents of the diff file. It accepts several\n= " -"different diff formats. It may also be used to revert previously appli= ed\n" -"differences." +"SANE stands for \"Scanner Access Now Easy\" and is an API\n" +"proving access to any raster image scanner hardware (flatbed scanner,\n= " +"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" +"package contains the library and drivers." +msgstr "" + +#: gnu/packages/scheme.scm:169 +msgid "A Scheme implementation with integrated editor and debugger" +msgstr "Realigo de Scheme kun integrita redaktilo kaj erarser=C4=89ilo" + +#: gnu/packages/scheme.scm:171 +msgid "" +"GNU/MIT Scheme is an implementation of the Scheme programming\n" +"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" +"features an integrated Emacs-like editor and a large runtime library." +msgstr "" + +#: gnu/packages/scheme.scm:254 +msgid "Efficient Scheme compiler" +msgstr "Efika kompililo Scheme" + +#: gnu/packages/scheme.scm:256 +msgid "" +"Bigloo is a Scheme implementation devoted to one goal: enabling\n" +"Scheme based programming style where C(++) is usually\n" +"required. Bigloo attempts to make Scheme practical by offering\n" +"features usually presented by traditional programming languages\n" +"but not offered by Scheme and functional programming. Bigloo\n" +"compiles Scheme modules. It delivers small and fast stand alone\n" +"binary executables. Bigloo enables full connections between\n" +"Scheme and C programs and between Scheme and Java programs." +msgstr "" + +#: gnu/packages/scheme.scm:300 +msgid "Multi-tier programming language for the Web 2.0" +msgstr "Plurtavola programlingvo por la Web 2.0" + +#: gnu/packages/scheme.scm:302 +msgid "" +"HOP is a multi-tier programming language for the Web 2.0 and the\n" +"so-called diffuse Web. It is designed for programming interactive web\= n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" +"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" +"mashups, office (web agendas, mail clients, ...), etc." +msgstr "" + +#: gnu/packages/scheme.scm:342 +msgid "R5RS Scheme implementation that compiles native code via C" +msgstr "Realigo R5RS de Scheme kiu kompilas originalan kodumaron per C" + +#: gnu/packages/scheme.scm:344 +msgid "" +"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" +"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" +"language standard, and includes many enhancements and extensions." +msgstr "" + +#: gnu/packages/scheme.scm:363 +msgid "Scheme implementation using a bytecode interpreter" +msgstr "Realigo de Scheme, kiu uzas bajtkodan interpretilon" + +#: gnu/packages/scheme.scm:365 +msgid "" +"Scheme 48 is an implementation of Scheme based on a byte-code\n" +"interpreter and is designed to be used as a testbed for experiments in\= n" +"implementation techniques and as an expository tool." +msgstr "" + +#: gnu/packages/scheme.scm:441 +msgid "Implementation of Scheme and related languages" +msgstr "Realigo de Scheme kaj rilataj program-lingvoj" + +#: gnu/packages/scheme.scm:443 +msgid "" +"Racket is an implementation of the Scheme programming language (R5RS an= d\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" +"of libraries." +msgstr "" + +#: gnu/packages/scheme.scm:481 +#, fuzzy +msgid "Efficient Scheme interpreter and compiler" +msgstr "Efika kompililo Scheme" + +#: gnu/packages/scheme.scm:483 +msgid "" +"Gambit consists of two main programs: gsi, the Gambit Scheme\n" +"interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" +"the complete execution and debugging environment. The compiler is the\= n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" +"loaded at run time. Interpreted code and compiled code can be freely\n= " +"mixed." +msgstr "" + +#: gnu/packages/scheme.scm:520 +#, fuzzy +msgid "Small embeddable Scheme implementation" +msgstr "Kompleta realigo de =C5=9Dako" + +#: gnu/packages/scheme.scm:522 +msgid "" +"Chibi-Scheme is a very small library with no external dependencies\n" +"intended for use as an extension and scripting language in C programs. = In\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" +"threads." +msgstr "" + +#: gnu/packages/scheme.scm:699 +msgid "Scmutils library for MIT Scheme" +msgstr "" + +#: gnu/packages/scheme.scm:700 +msgid "" +"The Scmutils system is an integrated library of\n" +"procedures, embedded in the programming language Scheme, and intended t= o\n" +"support teaching and research in mathematical physics and electrical\n" +"engineering." +msgstr "" + +#: gnu/packages/search.scm:52 +msgid "Search Engine Library" +msgstr "" + +#: gnu/packages/search.scm:54 +msgid "" +"Xapian is a highly adaptable toolkit which allows developers to easily\= n" +"add advanced indexing and search facilities to their own applications. = It\n" +"supports the Probabilistic Information Retrieval model and also support= s a\n" +"rich set of boolean query operators." +msgstr "" + +#: gnu/packages/search.scm:97 +msgid "Tool for Obsessive Compulsive Classifiers" +msgstr "" + +#: gnu/packages/search.scm:99 +msgid "" +"libtocc is the engine of the Tocc project, a tag-based file management\= n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" +"that is more flexible than classic file systems that are based on a tre= e of\n" +"files and directories." +msgstr "" + +#: gnu/packages/search.scm:121 +msgid "Command-line interface to libtocc" +msgstr "" + +#: gnu/packages/search.scm:123 +msgid "" +"Tocc is a tag-based file management system. This package contains the\= n" +"command line tool for interacting with libtocc." +msgstr "" + +#: gnu/packages/search.scm:141 +msgid "Finding text and HTML files that match boolean expressions" +msgstr "" + +#: gnu/packages/search.scm:143 +msgid "" +"GNU Bool is a utility to perform text searches on files using Boolean\n= " +"expressions. For example, a search for \"hello AND world\" would retur= n a\n" +"file containing the phrase \"Hello, world!\". It supports both AND and= OR\n" +"statements, as well as the NEAR statement to search for the occurrence = of\n" +"words in close proximity to each other. It handles context gracefully,= \n" +"accounting for new lines and paragraph changes. It also has robust sup= port\n" +"for parsing HTML files." +msgstr "" + +#: gnu/packages/serveez.scm:51 +msgid "Framework for implementing IP-based servers" +msgstr "" + +#: gnu/packages/serveez.scm:53 +msgid "" +"GNU Serveez is a server framework providing the routines necessary to\n= " +"easily implement IP-based servers in your application. It\n" +"demonstrates aspects of network programming in a portable manner,\n" +"making it convenient for both simplifying the process of adding a\n" +"server to your application or for learning about how network services\n= " +"work. Several example servers are provided already, such as an HTTP\n" +"server and an IRC server." +msgstr "" + +#: gnu/packages/telephony.scm:52 +msgid "(u)Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:53 +msgid "" +"GNU Common C++ is an portable, optimized class framework for\n" +"threaded applications, supporting concurrent synchronization, inter-pro= cess\n" +"communications via sockets, and various methods for data handling, such= as\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" +"reimplementation." +msgstr "" + +#: gnu/packages/telephony.scm:73 +msgid "Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:74 +msgid "" +"GNU uCommon C++ is meant as a very light-weight C++ library\n" +"to facilitate using C++ design patterns even for very deeply embedded\n= " +"applications, such as for systems using uclibc along with posix threadi= ng\n" +"support." +msgstr "" + +#: gnu/packages/telephony.scm:95 +msgid "Implementation of RTP (real-time transport protocol)" +msgstr "" + +#: gnu/packages/telephony.scm:96 +msgid "" +"GNU ccRTP is an implementation of RTP, the real-time transport\n" +"protocol from the IETF. It is suitable both for high capacity servers = and\n" +"personal client applications. It is flexible in its design, allowing i= t to\n" +"function as a framework for the framework, rather than just being a\n" +"packet-manipulation library." +msgstr "" + +#: gnu/packages/telephony.scm:116 +msgid "Library implementing SIP (RFC-3261)" +msgstr "" + +#: gnu/packages/telephony.scm:117 +msgid "" +"GNU oSIP is an implementation of the SIP protocol. It is\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" +"to initiate and control SIP sessions." msgstr "" =20 -#: gnu/packages/base.scm:184 -msgid "Comparing and merging files" -msgstr "Komparo kaj kunmikso de dosieroj" +#: gnu/packages/telephony.scm:137 +#, fuzzy +msgid "Sip abstraction library" +msgstr "Datumar-fonta abstrakta biblioteko" =20 -#: gnu/packages/base.scm:186 +#: gnu/packages/telephony.scm:138 msgid "" -"GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" -"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer. \n" -"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" -"interactive means to merge two files." +"EXosip is a library that hides the complexity of using the\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" +"be used by VoIP telephony applications (endpoints or conference server)= but\n" +"might be also useful for any application that wish to establish session= s " +"like\n" +"multiplayer games." msgstr "" =20 -#: gnu/packages/base.scm:213 -msgid "Operating on files matching given criteria" -msgstr "Operacio sur dosieroj kongruantaj al indikita kriterio" +#: gnu/packages/telephony.scm:181 +msgid "Secure peer-to-peer VoIP server for the SIP protocol" +msgstr "" =20 -#: gnu/packages/base.scm:215 +#: gnu/packages/telephony.scm:182 msgid "" -"Findutils supplies the basic file directory searching utilities of the\= n" -"GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" -"used to apply commands with arbitrarily long arguments." +"GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" +"uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" +"there is no central point for media intercept or capture and thus it ca= n be\n" +"used to construct a secure telephone system that operates over the publ= ic\n" +"internet." msgstr "" =20 -#: gnu/packages/base.scm:265 -msgid "Core GNU utilities (file, text, shell)" -msgstr "Nukleaj utila=C4=B5oj GNU (file, text, shell)" +#: gnu/packages/telephony.scm:207 +msgid "Secure RTP (SRTP) Reference Implementation" +msgstr "" =20 -#: gnu/packages/base.scm:267 +#: gnu/packages/telephony.scm:208 msgid "" -"GNU Coreutils includes all of the basic command-line tools that are\n" -"expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" -"functionality beyond that which is outlined in the POSIX standard." +"This package provides an implementation of the Secure\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" +"and a supporting cryptographic kernel." msgstr "" =20 -#: gnu/packages/base.scm:301 -msgid "Remake files automatically" -msgstr "Reprocezi dosierojn a=C5=ADtomate" +#: gnu/packages/texinfo.scm:55 +#, fuzzy +msgid "The GNU documentation format" +msgstr "Iloj kaj dokumentado por tradukado" =20 -#: gnu/packages/base.scm:303 +#: gnu/packages/texinfo.scm:57 msgid "" -"Make is a program that is used to control the production of\n" -"executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" -"generated from its source. It has powerful dependency resolution and t= he\n" -"ability to determine when files have to be regenerated after their sour= ces\n" -"change. GNU make offers many powerful extensions over the standard uti= lity." +"Texinfo is the official documentation format of the GNU project. It\n" +"uses a single source file using explicit commands to produce a final " +"document\n" +"in any of several supported output formats, such as HTML or PDF. This\= n" +"package includes both the tools necessary to produce Info documents fro= m\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" +"is on expressing the content semantically, avoiding physical markup com= mands." msgstr "" =20 -#: gnu/packages/base.scm:348 -msgid "Binary utilities: bfd gas gprof ld" -msgstr "Duumaj utila=C4=B5oj: bfd gas gprof ld" +#: gnu/packages/texinfo.scm:132 +msgid "Convert Texinfo to HTML" +msgstr "" =20 -#: gnu/packages/base.scm:350 +#: gnu/packages/texinfo.scm:134 msgid "" -"GNU Binutils is a collection of tools for working with binary files.\n" -"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" -"Other tools include programs to display binary profiling information, l= ist\n" -"the strings in a binary file, and utilities for working with archives. = The\n" -"\"bfd\" library for working with executable and object formats is also\= n" -"included." +"Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" +"output. It now supports many advanced features, such as " +"internationalization\n" +"and extremely configurable output formats.\n" +"\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" +"was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" +"Texi2HTML." +msgstr "" + +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 +msgid "TeX Live, a package of the TeX typesetting system" +msgstr "" + +#: gnu/packages/texlive.scm:157 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the binaries." msgstr "" =20 -#: gnu/packages/base.scm:493 -msgid "The GNU C Library" -msgstr "La Biblioteko GNU C" +#: gnu/packages/texlive.scm:220 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete tree of texmf-dist data." +msgstr "" =20 -#: gnu/packages/base.scm:495 +#: gnu/packages/texlive.scm:278 msgid "" -"Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" -"printf, exit...\n" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" "\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" -"with the Linux kernel." +"This package contains the complete TeX Live distribution." msgstr "" =20 -#: gnu/packages/base.scm:564 -msgid "Database of current and historical time zones" -msgstr "Datumbazo de nuna kaj pasintaj temp-zonoj" +#: gnu/packages/texlive.scm:307 +msgid "Wrapper for LaTeX and friends" +msgstr "" =20 -#: gnu/packages/base.scm:565 +#: gnu/packages/texlive.scm:309 msgid "" -"The Time Zone Database (often called tz or zoneinfo)\n" -"contains code and data that represent the history of local time for man= y\n" -"representative locations around the globe. It is updated periodically = to\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" -"and daylight-saving rules." +"Rubber is a program whose purpose is to handle all tasks related to the= \n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" +"PDF documents." msgstr "" =20 -#: gnu/packages/bittorrent.scm:82 -msgid "Fast and easy BitTorrent client" -msgstr "Rapida kaj facila kliento por BitTorrent" +#: gnu/packages/textutils.scm:61 +msgid "Text encoding converter" +msgstr "" =20 -#: gnu/packages/bittorrent.scm:84 +#: gnu/packages/textutils.scm:62 msgid "" -"Transmission is a BitTorrent client that comes with graphical,\n" -"textual, and Web user interfaces. Transmission also has a daemon for\n= " -"unattended operationg. It supports local peer discovery, full encrypti= on,\n" -"DHT, =C2=B5TP, PEX and Magnet Links." +"The Recode library converts files between character sets and\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" +"any pair. When exact transliteration are not possible, it gets rid of\= n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" +"handy front-end to the library." msgstr "" =20 -#: gnu/packages/bittorrent.scm:122 -msgid "BitTorrent library of rtorrent" -msgstr "Biblioteko BitTorrent de rTorrent" +#: gnu/packages/textutils.scm:90 +msgid "Text encoding detection tool" +msgstr "" =20 -#: gnu/packages/bittorrent.scm:124 +#: gnu/packages/textutils.scm:91 msgid "" -"LibTorrent is a BitTorrent library used by and developed in parallel\n" -"with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" -"speed and efficiency." +"Enca (Extremely Naive Charset Analyser) consists of libenca,\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" +"libenca and several charset conversion libraries and tools." msgstr "" =20 -#: gnu/packages/bittorrent.scm:151 -msgid "BitTorrent client with ncurses interface" -msgstr "Kliento BitTorrent kun interfaco ncurses" +#: gnu/packages/textutils.scm:118 +msgid "C library for processing UTF-8 Unicode data" +msgstr "" =20 -#: gnu/packages/bittorrent.scm:153 +#: gnu/packages/textutils.scm:119 msgid "" -"rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" -"full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" -"XML-RPC over SCGI." +"utf8proc is a small C library that provides Unicode\n" +"normalization, case-folding, and other operations for data in the UTF-8= \n" +"encoding, supporting Unicode version 7.0." msgstr "" =20 -#: gnu/packages/databases.scm:83 -msgid "Berkeley database" -msgstr "Datumbazo de Berkeley" +#: gnu/packages/textutils.scm:148 +msgid "Gordon's text utils library" +msgstr "" =20 -#: gnu/packages/databases.scm:85 +#: gnu/packages/textutils.scm:150 msgid "" -"Berkeley DB is an embeddable database allowing developers the choice of= \n" -"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +"libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" +"the Hannon Lab." msgstr "" =20 -#: gnu/packages/databases.scm:143 -msgid "Fast, easy to use, and popular database" -msgstr "Rapida, faciluzebla, kaj populara datumbazo" +#: gnu/packages/textutils.scm:171 +msgid "C++ hash functions for strings" +msgstr "" =20 -#: gnu/packages/databases.scm:145 +#: gnu/packages/textutils.scm:173 msgid "" -"MySQL is a fast, reliable, and easy to use relational database\n" -"management system that supports the standardized Structured Query\n" -"Language." +"CityHash provides hash functions for strings. The functions mix the\n" +"input bits thoroughly but are not suitable for cryptography." msgstr "" =20 -#: gnu/packages/databases.scm:166 -msgid "Powerful object-relational database system" -msgstr "Potenca objekt-rilata datumbaza sistemo" +#: gnu/packages/textutils.scm:190 +msgid "C/C++ configuration file library" +msgstr "" =20 -#: gnu/packages/databases.scm:168 +#: gnu/packages/textutils.scm:192 msgid "" -"PostgreSQL is a powerful object-relational database system. It is full= y\n" -"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, and\n" -"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" -"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, and\n" -"TIMESTAMP. It also supports storage of binary large objects, including= \n" -"pictures, sounds, or video." +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." msgstr "" =20 -#: gnu/packages/databases.scm:203 -msgid "Manipulate plain text files as databases" -msgstr "Manipuli simplajn tekst-dosierojn kiel datumbazojn" +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" =20 -#: gnu/packages/databases.scm:205 +#: gnu/packages/textutils.scm:214 msgid "" -"GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" -"databases created with Recutils carry all of the expected features such= as\n" -"unique fields, primary keys, time stamps and more. Many different fiel= d\n" -"types are supported, as is encryption." +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." msgstr "" =20 -#: gnu/packages/databases.scm:241 -msgid "The SQLite database management system" -msgstr "La datumbaza administra sistemo SQLite" +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" +msgstr "" =20 -#: gnu/packages/databases.scm:243 +#: gnu/packages/version-control.scm:105 msgid "" -"SQLite is a software library that implements a self-contained, serverle= ss,\n" -"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" -"widely deployed SQL database engine in the world. The source code for = SQLite\n" -"is in the public domain." +"GNU Bazaar is a version control system that allows you to record\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" +"as well as the classic centralized workflow." msgstr "" =20 -#: gnu/packages/databases.scm:278 -msgid "Trivial database" -msgstr "Ordinara datumbazo" +#: gnu/packages/version-control.scm:264 +msgid "Distributed version control system" +msgstr "" =20 -#: gnu/packages/databases.scm:280 +#: gnu/packages/version-control.scm:266 msgid "" -"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" -"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" -"locking internally to keep writers from trampling on each other. TDB i= s also\n" -"extremely small." +"Git is a free distributed version control system designed to handle\n" +"everything from small to very large projects with speed and efficiency.= " msgstr "" =20 -#: gnu/packages/databases.scm:299 -msgid "Database independent interface for Perl" -msgstr "Datumbaz-sendependa interfaco por Perl" +#: gnu/packages/version-control.scm:311 +msgid "Man pages of the Git version control system" +msgstr "" =20 -#: gnu/packages/databases.scm:300 -msgid "This package provides an database interface for Perl." -msgstr "Tiu =C4=89i pako provizas datumbazan interfacon por Perl." +#: gnu/packages/version-control.scm:313 +msgid "" +"This package provides the man pages of the Git version control system.\= n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" +"command." +msgstr "" =20 -#: gnu/packages/databases.scm:319 -msgid "SQlite interface for Perl" -msgstr "Interfaco de SQLite por Perl" +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" =20 -#: gnu/packages/databases.scm:320 +#: gnu/packages/version-control.scm:354 msgid "" -"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" -"the entire thing in the distribution. So in order to get a fast transa= ction\n" -"capable RDBMS working for your Perl project you simply have to install = this\n" -"module, and nothing else." +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." msgstr "" =20 -#: gnu/packages/databases.scm:340 -msgid "Data source abstraction library" -msgstr "Datumar-fonta abstrakta biblioteko" +#: gnu/packages/version-control.scm:393 +#, fuzzy +msgid "Command-line flags library for shell scripts" +msgstr "Komandliniaj iloj kaj biblioteko por transformi PDF-dosierojn" =20 -#: gnu/packages/databases.scm:341 +#: gnu/packages/version-control.scm:395 msgid "" -"Unixodbc is a library providing an API with which to access\n" -"data sources. Data sources include SQL Servers and any software with a= n ODBC\n" -"Driver." +"Shell Flags (shFlags) is a library written to greatly simplify the\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" +"ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" +"different versions of getopt on various OSes make writing portable shel= l\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" +"shell and OS versions so the script writer can be confident that the sc= ript\n" +"will work." msgstr "" =20 -#: gnu/packages/games.scm:95 -msgid "Backgammon game" -msgstr "Triktrako (Bakgamono)" +#: gnu/packages/version-control.scm:438 +msgid "Git extensions for Vincent Driessen's branching model" +msgstr "" =20 -#: gnu/packages/games.scm:96 +#: gnu/packages/version-control.scm:440 msgid "" -"The GNU backgammon application can be used for playing, analyzing and\n= " -"teaching the game. It has an advanced evaluation engine based on artif= icial\n" -"neural networks suitable for both beginners and advanced players. In\n= " -"addition to a command-line interface, it also features an attractive, 3= D\n" -"representation of the playing board." +"Vincent Driessen's branching model is a git branching and release\n" +"management strategy that helps developers keep track of features, hotfi= xes,\n" +"and releases in bigger software projects. The git-flow library of git\= n" +"subcommands helps automate some parts of the flow to make working with = it a\n" +"lot easier." msgstr "" =20 -#: gnu/packages/games.scm:125 -msgid "3d Rubik's cube game" -msgstr "3D Rubika kubo" +#: gnu/packages/version-control.scm:475 +msgid "Run a command over a sequence of commits" +msgstr "" =20 -#: gnu/packages/games.scm:127 +#: gnu/packages/version-control.scm:477 msgid "" -"GNUbik is a puzzle game in which you must manipulate a cube to make\n" -"each of its faces have a uniform color. The game is customizable, allo= wing\n" -"you to set the size of the cube (the default is 3x3) or to change the c= olors.\n" -"You may even apply photos to the faces instead of colors. The game is\= n" -"scriptable with Guile." +"git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" +"linear. It will test every change between two points in the DAG. It w= ill\n" +"also walk each side of a merge and test those changes individually." msgstr "" =20 -#: gnu/packages/games.scm:189 -msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" -msgstr "Pordo GNU/Linux de la sendependa ludo \"l'Abbaye des Morts\"" +#: gnu/packages/version-control.scm:535 +msgid "Git access control layer" +msgstr "" =20 -#: gnu/packages/games.scm:190 +#: gnu/packages/version-control.scm:537 msgid "" -"L'Abbaye des Morts is a 2D platform game set in 13th century\n" -"France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" -"expelled by the Catholic Church out of the Languedoc region in France. = One of\n" -"them, called Jean Raymond, found an old church in which to hide, not kn= owing\n" -"that beneath its ruins lay buried an ancient evil." +"Gitolite is an access control layer on top of Git, providing fine acces= s\n" +"control to Git repositories." msgstr "" =20 -#: gnu/packages/games.scm:233 -msgid "Lemmings clone" -msgstr "Klono de 'Lemmings'" +#: gnu/packages/version-control.scm:561 +msgid "Decentralized version control system" +msgstr "" =20 -#: gnu/packages/games.scm:235 +#: gnu/packages/version-control.scm:563 msgid "" -"Pingus is a free Lemmings-like puzzle game in which the player takes\n" -"command of a bunch of small animals and has to guide them through level= s.\n" -"Since the animals walk on their own, the player can only influence them= by\n" -"giving them commands, like build a bridge, dig a hole, or redirect all = animals\n" -"in the other direction. Multiple such commands are necessary to reach = the\n" -"level's exit. The game is presented in a 2D side view." +"Mercurial is a free, distributed source control management tool.\n" +"It efficiently handles projects of any size\n" +"and offers an easy and intuitive interface." msgstr "" =20 -#: gnu/packages/games.scm:257 -msgid "Convert English text to humorous dialects" -msgstr "Konverti anglajn tekstojn al humuraj dialekta=C4=B5oj" +#: gnu/packages/version-control.scm:597 +msgid "HTTP and WebDAV client library" +msgstr "" =20 -#: gnu/packages/games.scm:258 +#: gnu/packages/version-control.scm:598 msgid "" -"The GNU Talk Filters are programs that convert English text\n" -"into stereotyped or otherwise humorous dialects. The filters are provi= ded as\n" -"a C library, so they can easily be integrated into other programs." +"Neon is an HTTP and WebDAV client library, with a\n" +"C interface. Features:\n" +"High-level wrappers for common HTTP and WebDAV operations (GET, MOVE,\n= " +"DELETE, etc.);\n" +"low-level interface to the HTTP request/response engine, allowing the u= se\n" +"of arbitrary HTTP methods, headers, etc.;\n" +"authentication support including Basic and Digest support, along with\n= " +"GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32;= \n" +"SSL/TLS support using OpenSSL or GnuTLS, exposing an abstraction layer = for\n" +"verifying server certificates, handling client certificates, and examin= ing\n" +"certificate properties, smartcard-based client certificates are also\n" +"supported via a PKCS#11 wrapper interface;\n" +"abstract interface to parsing XML using libxml2 or expat, and wrappers = for\n" +"simplifying handling XML HTTP response bodies;\n" +"WebDAV metadata support, wrappers for PROPFIND and PROPPATCH to simplif= y\n" +"property manipulation." msgstr "" =20 -#: gnu/packages/games.scm:290 -msgid "Simulate the display from \"The Matrix\"" -msgstr "Simuli la ekranon el \"The Matrix\"" +#: gnu/packages/version-control.scm:677 +msgid "Revision control system" +msgstr "" =20 -#: gnu/packages/games.scm:291 +#: gnu/packages/version-control.scm:679 msgid "" -"CMatrix simulates the display from \"The Matrix\" and is\n" -"based on the screensaver from the movie's website. It works with termi= nal\n" -"settings up to 132x300 and can scroll lines all at the same rate or\n" -"asynchronously and at a user-defined speed." +"Subversion exists to be universally recognized and adopted as a\n" +"centralized version control system characterized by its\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" +"usage; and its ability to support the needs of a wide variety of users = and\n" +"projects, from individuals to large-scale enterprise operations." msgstr "" =20 -#: gnu/packages/games.scm:311 -msgid "Full chess implementation" -msgstr "Kompleta realigo de =C5=9Dako" +#: gnu/packages/version-control.scm:700 +msgid "Per-file local revision control system" +msgstr "" =20 -#: gnu/packages/games.scm:312 +#: gnu/packages/version-control.scm:702 msgid "" -"GNU Chess is a chess engine. It allows you to compete\n" -"against the computer in a game of chess, either through the default ter= minal\n" -"interface or via an external visual interface such as GNU XBoard." +"RCS is the original Revision Control System. It works on a\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" +"CVS, Subversion, and Git. This can make it suitable for system\n" +"administration files, for example, which are often inherently local to = one\n" +"machine." msgstr "" =20 -#: gnu/packages/games.scm:340 -msgid "Twisted adventures of young pig farmer Dink Smallwood" -msgstr "Frenezaj aventuroj de la juna pork-bredisto Dink Smallwood" +#: gnu/packages/version-control.scm:729 +msgid "Historical centralized version control system" +msgstr "" =20 -#: gnu/packages/games.scm:342 +#: gnu/packages/version-control.scm:731 msgid "" -"GNU FreeDink is a free and portable re-implementation of the engine\n" -"for the role-playing game Dink Smallwood. It supports not only the ori= ginal\n" -"game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" -"To that extent, it also includes a front-end for managing all of your D= -Mods." +"CVS is a version control system, an important component of Source\n" +"Configuration Management (SCM). Using it, you can record the history o= f\n" +"sources files, and documents. It fills a similar role to the free soft= ware\n" +"RCS, PRCS, and Aegis packages." msgstr "" =20 -#: gnu/packages/games.scm:364 -msgid "Game data for GNU Freedink" -msgstr "Ludo-datumaro por GNU Freedink" +#: gnu/packages/version-control.scm:764 +msgid "Export an RCS or CVS history as a fast-import stream" +msgstr "" =20 -#: gnu/packages/games.scm:366 -msgid "This package contains the game data of GNU Freedink." -msgstr "Tiu =C4=89i pako enhavas ludan datumaron por GNU Freedink." +#: gnu/packages/version-control.scm:765 +msgid "" +"This program analyzes a collection of RCS files in a CVS\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" +"in the form of a fast-import stream. Not all possible histories can be= \n" +"rendered this way; the program tries to emit useful warnings when it ca= n't.\n" +"\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" +"acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" +"masters from remote CVS hosts." +msgstr "" =20 -#: gnu/packages/games.scm:427 -msgid "Graphical user interface for chess programs" -msgstr "Grafikinterfacon por =C5=9Dak-programarojn" +#: gnu/packages/version-control.scm:792 +msgid "Version-control-agnostic ChangeLog diff and commit tool" +msgstr "" =20 -#: gnu/packages/games.scm:428 +#: gnu/packages/version-control.scm:794 msgid "" -"GNU XBoard is a graphical board for all varieties of chess,\n" -"including international chess, xiangqi (Chinese chess), shogi (Japanese= chess)\n" -"and Makruk. Several lesser-known variants are also supported. It pres= ents a\n" -"fully interactive graphical interface and it can load and save games in= the\n" -"Portable Game Notation." +"The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " +"vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" +"using version control at the same time, for example by printing a remin= der\n" +"when a file change has been described in the ChangeLog but the file has= not\n" +"been added to the VC. vc-chlog scans changed files and generates\n" +"standards-compliant ChangeLog entries based on the changes that it dete= cts." msgstr "" =20 -#: gnu/packages/games.scm:481 -msgid "Ball and paddle game" -msgstr "Ludo kun pilko kaj padelo" +#: gnu/packages/version-control.scm:816 +msgid "Make histograms from the output of 'diff'" +msgstr "" =20 -#: gnu/packages/games.scm:482 +#: gnu/packages/version-control.scm:818 msgid "" -"XBoing is a blockout type game where you have a paddle which\n" -"you control to bounce a ball around the game zone destroying blocks wit= h a\n" -"proton ball. Each block carries a different point value. The more blo= cks you\n" -"destroy, the better your score. The person with the highest score wins= ." +"Diffstat reads the output of 'diff' and displays a histogram of the\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" +"large, complex patch files." msgstr "" =20 -#: gnu/packages/games.scm:514 -msgid "Typing tutor" -msgstr "Instruilo por tajpado" +#: gnu/packages/version-control.scm:859 +msgid "File-based version control like SCCS" +msgstr "" =20 -#: gnu/packages/games.scm:516 +#: gnu/packages/version-control.scm:860 msgid "" -"GNU Typist is a universal typing tutor. It can be used to learn and\n" -"practice touch-typing. Several tutorials are included; in addition to\= n" -"tutorials for the standard QWERTY layout, there are also tutorials for = the\n" -"alternative layouts Dvorak and Colemak, as well as for the numpad. Tut= orials\n" -"are primarily in English, however some in other languages are provided.= " +"GNU CSSC provides a replacement for the legacy Unix source\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" +"accessed and migrated on modern systems." msgstr "" =20 -#: gnu/packages/games.scm:541 -msgid "3D audio API" -msgstr "3D-sona API" +#: gnu/packages/version-control.scm:941 +msgid "Project change supervisor" +msgstr "" =20 -#: gnu/packages/games.scm:543 +#: gnu/packages/version-control.scm:942 msgid "" -"OpenAL provides capabilities for playing audio in a virtual 3D\n" -"environment. Distance attenuation, doppler shift, and directional soun= d\n" -"emitters are among the features handled by the API. More advanced effe= cts,\n" -"including air absorption, occlusion, and environmental reverb, are avai= lable\n" -"through the EFX extension. It also facilitates streaming audio, multi-= channel\n" -"buffers, and audio capture." +"Aegis is a project change supervisor, and performs some of\n" +"the Software Configuration Management needed in a CASE environment. Ae= gis\n" +"provides a framework within which a team of developers may work on many= \n" +"changes to a program independently, and Aegis coordinates integrating t= hese\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" +"any project with more than one developer, is one of Aegis's major funct= ions." msgstr "" =20 -#: gnu/packages/games.scm:598 -msgid "3D game engine written in C++" -msgstr "3D-luda ma=C5=9Dino verkita en C++" +#: gnu/packages/version-control.scm:970 +msgid "Ncurses-based text user interface for Git" +msgstr "" =20 -#: gnu/packages/games.scm:600 +#: gnu/packages/version-control.scm:972 msgid "" -"The Irrlicht Engine is a high performance realtime 3D engine written in= \n" -"C++. Features include an OpenGL renderer, extensible materials, scene = graph\n" -"management, character animation, particle and other special effects, su= pport\n" -"for common mesh file formats, and collision detection." +"Tig is an ncurses text user interface for Git, primarily intended as\n" +"a history browser. It can also stage hunks for commit, or colorize the= \n" +"output of the 'git' command." msgstr "" =20 -#: gnu/packages/games.scm:641 -msgid "Main game data for the Minetest game engine" -msgstr "Datumaro de =C4=89efa ludo por la lud-ma=C5=9Dino Minetest" +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" =20 -#: gnu/packages/games.scm:643 -msgid "Game data for the Minetest infinite-world block sandox game." +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." msgstr "" =20 -#: gnu/packages/games.scm:705 -msgid "Infinite-world block sandbox game" -msgstr "Senlima-monda bloka sablo-skatola ludo" +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" =20 -#: gnu/packages/games.scm:707 +#: gnu/packages/version-control.scm:1027 msgid "" -"Minetest is a sandbox construction game. Players can create and destro= y\n" -"various types of blocks in a three-dimensional open world. This allows= \n" -"forming structures in every possible creation, on multiplayer servers o= r as a\n" -"single player. Mods and texture packs allow players to personalize the= game\n" -"in different ways." +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" =20 -#: gnu/packages/games.scm:746 -msgid "Curses Implementation of the Glk API" -msgstr "Realigo curses de la API Glk" +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" =20 -#: gnu/packages/games.scm:748 +#: gnu/packages/version-control.scm:1059 msgid "" -"Glk defines a portable API for applications with text UIs. It was\n" -"primarily designed for interactive fiction, but it should be suitable f= or many\n" -"interactive text utilities, particularly those based on a command line.= \n" -"This is an implementation of the Glk library which runs in a terminal w= indow,\n" -"using the curses.h library for screen control." +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." msgstr "" =20 -#: gnu/packages/games.scm:785 -msgid "Interpreter for Glulx VM" -msgstr "Interpretilo por Glulx VM" +#: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" =20 -#: gnu/packages/games.scm:787 +#: gnu/packages/webkit.scm:125 msgid "" -"Glulx is a 32-bit portable virtual machine intended for writing and\n" -"playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" -"some of the restrictions in the venerable Z-machine format. This is th= e\n" -"reference interpreter, using Glk API." +"WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" +"suitable for projects requiring any kind of web integration, from hybri= d\n" +"HTML/CSS applications to full-fledged web browsers." msgstr "" =20 -#: gnu/packages/games.scm:837 -msgid "Reference frontend for the libretro API" -msgstr "Referenca fasono por la API libretro" +#: gnu/packages/web.scm:89 +msgid "Featureful HTTP server" +msgstr "" + +#: gnu/packages/web.scm:91 +msgid "" +"The Apache HTTP Server Project is a collaborative software development\= n" +"effort aimed at creating a robust, commercial-grade, featureful, and\n" +"freely-available source code implementation of an HTTP (Web) server. T= he\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" +"using the Internet and the Web to communicate, plan, and develop the se= rver\n" +"and its related documentation." +msgstr "" + +#: gnu/packages/web.scm:169 +msgid "HTTP and reverse proxy server" +msgstr "" =20 -#: gnu/packages/games.scm:839 +#: gnu/packages/web.scm:171 msgid "" -"Libretro is a simple but powerful development interface that allows for= \n" -"the easy creation of emulators, games and multimedia applications that = can plug\n" -"straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" -"reference frontend for the libretro API, currently used by most as a mo= dular\n" -"multi-system game/emulator system." +"Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" +"created by Igor Sysoev. It can be used both as a standalone web server= \n" +"and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" =20 -#: gnu/packages/gcc.scm:279 -msgid "GNU Compiler Collection" -msgstr "GNU-a kompila kolekto" +#: gnu/packages/web.scm:207 +msgid "PSGI/Plack web server" +msgstr "" =20 -#: gnu/packages/gcc.scm:281 +#: gnu/packages/web.scm:208 msgid "" -"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" -"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, and\n" -"Go. It also includes runtime support libraries for these languages." +"Starman is a PSGI perl web server that has unique features\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" +"and UNIX socket support." msgstr "" =20 -#: gnu/packages/gcc.scm:364 -msgid "Manipulating sets and relations of integer points bounded by line= ar constraints" -msgstr "Manipulo de aroj kaj rilatoj de entjeraj punktoj ligataj per lin= earaj limigoj" +#: gnu/packages/web.scm:227 +#, fuzzy +msgid "JSON C library" +msgstr "La Biblioteko GNU C" =20 -#: gnu/packages/gcc.scm:367 +#: gnu/packages/web.scm:229 msgid "" -"isl is a library for manipulating sets and relations of integer points\= n" -"bounded by linear constraints. Supported operations on sets include\n" -"intersection, union, set difference, emptiness check, convex hull, (int= eger)\n" -"affine hull, integer projection, computing the lexicographic minimum us= ing\n" -"parametric integer programming, coalescing and parametric vertex\n" -"enumeration. It also includes an ILP solver based on generalized basis= \n" -"reduction, transitive closures on maps (which may encode infinite graph= s),\n" -"dependence analysis and bounds on piecewise step-polynomials." +"Jansson is a C library for encoding, decoding and manipulating JSON\n" +"data." msgstr "" =20 -#: gnu/packages/gcc.scm:399 -msgid "Library to generate code for scanning Z-polyhedra" -msgstr "Biblioteko por krei kodumaron por skani Z-pluredrojn" +#: gnu/packages/web.scm:261 +#, fuzzy +msgid "JSON implementation in C" +msgstr "Kompleta realigo de =C5=9Dako" =20 -#: gnu/packages/gcc.scm:401 +#: gnu/packages/web.scm:263 msgid "" -"CLooG is a free software library to generate code for scanning\n" -"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" -"reaches each integral point of one or more parameterized polyhedra.\n" -"CLooG has been originally written to solve the code generation problem\= n" -"for optimizing compilers based on the polytope model. Nevertheless it\= n" -"is used now in various area e.g., to build control automata for\n" -"high-level synthesis or to find the best polynomial approximation of a\= n" -"function. CLooG may help in any situation where scanning polyhedra\n" -"matters. While the user has full control on generated code quality,\n" -"CLooG is designed to avoid control overhead and to produce a very\n" -"effective code." +"JSON-C implements a reference counting object model that allows you to\= n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" +"parse JSON formatted strings back into the C representation of JSON obj= ects." msgstr "" =20 -#: gnu/packages/gettext.scm:74 -msgid "Tools and documentation for translation" -msgstr "Iloj kaj dokumentado por tradukado" +#: gnu/packages/web.scm:289 +msgid "JSON parser/generator for C++ with both SAX/DOM style API" +msgstr "" =20 -#: gnu/packages/gettext.scm:76 +#: gnu/packages/web.scm:291 msgid "" -"GNU Gettext is a package providing a framework for translating the\n" -"textual output of programs into multiple languages. It provides transl= ators\n" -"with the means to create message catalogs, as well as an Emacs mode to = work\n" -"with them, and a runtime library to load translated messages from the\n= " -"catalogs. Nearly all GNU packages use Gettext." +"RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" +"style API." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:81 -msgid "Mozilla javascript engine" -msgstr "=C4=B4avaskripta ma=C5=9Dino de Mozilla" +#: gnu/packages/web.scm:309 +#, fuzzy +msgid "C library for parsing JSON" +msgstr "Biblioteko por trakti dosierojn PNG" =20 -#: gnu/packages/gnuzilla.scm:82 +#: gnu/packages/web.scm:311 msgid "" -"SpiderMonkey is Mozilla's JavaScript engine written\n" -"in C/C++." +"Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" +"parser written in ANSI C and a small validating JSON generator." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:113 -msgid "Netscape API for system level and libc-like functions" -msgstr "Netscape API por sistem-nivelaj kaj libc-similaj funkcioj" +#: gnu/packages/web.scm:341 +msgid "WebSockets library written in C" +msgstr "" =20 -#: gnu/packages/gnuzilla.scm:114 +#: gnu/packages/web.scm:343 msgid "" -"Netscape Portable Runtime (NSPR) provides a\n" -"platform-neutral API for system level and libc-like functions. It is u= sed\n" -"in the Mozilla clients." +"Libwebsockets is a library that allows C programs to establish client\n= " +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" +"for efficient socket-like bidirectional reliable communication channels= ." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:204 -msgid "Network Security Services" -msgstr "Network Security Services" +#: gnu/packages/web.scm:378 +msgid "C library for the Publix Suffix List" +msgstr "" =20 -#: gnu/packages/gnuzilla.scm:206 +#: gnu/packages/web.scm:380 msgid "" -"Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" -"cross-platform development of security-enabled client and server applic= ations.\n" -"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS #7,\n" -"PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " -"standards." +"A \"public suffix\" is a domain name under which Internet users can\n" +"directly register own names.\n" +"\n" +"Browsers and other web clients can use it to avoid privacy-leaking\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" +"by site.\n" +"\n" +"Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" +"domain verification, finds the longest public part of a given domain, f= inds\n" +"the shortest private part of a given domain, works with international\n= " +"domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" +"UTS#46." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:332 -msgid "Entirely free browser derived from Mozilla Firefox" -msgstr "Tute libera foliumilo derivita de Mozilla Firefox" +#: gnu/packages/web.scm:426 +msgid "HTML validator and tidier" +msgstr "" =20 -#: gnu/packages/gnuzilla.scm:334 +#: gnu/packages/web.scm:427 msgid "" -"IceCat is the GNU version of the Firefox browser. It is entirely free\= n" -"software, which does not recommend non-free plugins and addons. It als= o\n" -"features built-in privacy-protecting features." +"HTML Tidy is a command-line tool and C library that can be\n" +"used to validate and fix HTML data." msgstr "" =20 -#: gnu/packages/gtk.scm:65 -msgid "GNOME accessibility toolkit" -msgstr "Alireca ilaro de GNOME" +#: gnu/packages/web.scm:468 +msgid "Light-weight HTTP/HTTPS proxy daemon" +msgstr "" =20 -#: gnu/packages/gtk.scm:67 +#: gnu/packages/web.scm:469 msgid "" -"ATK provides the set of accessibility interfaces that are implemented\n= " -"by other toolkits and applications. Using the ATK interfaces, accessib= ility\n" -"tools have full access to view and control running applications." +"Tinyproxy is a light-weight HTTP/HTTPS proxy\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" +"proxy is required, but the system resources for a larger proxy are\n" +"unavailable." msgstr "" =20 -#: gnu/packages/gtk.scm:105 -msgid "2D graphics library" -msgstr "2D-bildiga biblioteko" +#: gnu/packages/web.scm:502 +msgid "Small caching web proxy" +msgstr "" =20 -#: gnu/packages/gtk.scm:107 +#: gnu/packages/web.scm:504 msgid "" -"Cairo is a 2D graphics library with support for multiple output devices= .\n" -"Currently supported output targets include the X Window System (via bot= h\n" -"Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG f= ile\n" -"output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB= .\n" -"\n" -"Cairo is designed to produce consistent output on all output media whil= e\n" -"taking advantage of display hardware acceleration when available\n" -"eg. through the X Render Extension).\n" -"\n" -"The cairo API provides operations similar to the drawing operators of\n= " -"PostScript and PDF. Operations in cairo including stroking and filling= cubic\n" -"B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" -"antialiased text rendering. All drawing operations can be transformed = by any\n" -"affine transformation (scale, rotation, shear, etc.)" +"Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " +"server). It was primarily designed to be used by one person or a small= " +"group\n" +"of people." msgstr "" =20 -#: gnu/packages/gtk.scm:145 -msgid "OpenType text shaping engine" -msgstr "Teksto-formiga ma=C5=9Dino OpenType" +#: gnu/packages/web.scm:524 +msgid "YAML 1.1 parser and emitter written in C" +msgstr "" =20 -#: gnu/packages/gtk.scm:147 -msgid "HarfBuzz is an OpenType text shaping engine." -msgstr "HarfBuzz estas tekst-formiga ma=C5=9Dino OpenType." +#: gnu/packages/web.scm:526 +msgid "LibYAML is a YAML 1.1 parser and emitter written in C." +msgstr "" =20 -#: gnu/packages/gtk.scm:178 -msgid "GNOME text and font handling library" -msgstr "Biblioteko de GNOME por traktado de teksto kaj tiparo" +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 +msgid "Media stream URL parser" +msgstr "" =20 -#: gnu/packages/gtk.scm:180 +#: gnu/packages/web.scm:543 msgid "" -"Pango is the core text and font handling library used in GNOME\n" -"applications. It has extensive support for the different writing syste= ms\n" -"used throughout the world." +"This package contains support scripts called by libquvi to\n" +"parse media stream properties." msgstr "" =20 -#: gnu/packages/gtk.scm:206 -msgid "Obsolete pango functions" -msgstr "Malrekomendindaj funkcioj de Pango" +#: gnu/packages/web.scm:576 +msgid "" +"libquvi is a library with a C API for parsing media stream\n" +"URLs and extracting their actual media files." +msgstr "" =20 -#: gnu/packages/gtk.scm:207 +#: gnu/packages/web.scm:598 msgid "" -"Pangox was a X backend to pango. It is now obsolete and no\n" -"longer provided by recent pango releases. pangox-compat provides the\n= " -"functions which were removed." +"quvi is a command-line-tool suite to extract media files\n" +"from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." msgstr "" =20 -#: gnu/packages/gtk.scm:258 -msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" -msgstr "Fenestra=C4=B5o kiu pliri=C4=89igas la ordinaran 'GtkTextView' = de GTK+ 2.x" +#: gnu/packages/web.scm:661 +msgid "High-performance asynchronous HTTP client library" +msgstr "" =20 -#: gnu/packages/gtk.scm:260 +#: gnu/packages/web.scm:663 msgid "" -"GtkSourceView is a portable C library that extends the standard GTK+\n" -"framework for multiline text editing with support for configurable synt= ax\n" -"highlighting, unlimited undo/redo, search and replace, a completion fra= mework,\n" -"printing and other features typical of a source code editor." +"serf is a C-based HTTP client library built upon the Apache Portable\n" +"Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" +"minimum to provide high performance operation." msgstr "" =20 -#: gnu/packages/gtk.scm:290 -msgid "GNOME image loading and manipulation library" -msgstr "Biblioteko de GNOME por =C5=9Dargi kaj manipuli bildojn" +#: gnu/packages/web.scm:718 +msgid "CSS pre-processor" +msgstr "" =20 -#: gnu/packages/gtk.scm:292 +#: gnu/packages/web.scm:719 msgid "" -"GdkPixbuf is a library for image loading and manipulation developed\n" -"in the GNOME project." +"SassC is a compiler written in C for the CSS pre-processor\n" +"language known as SASS." msgstr "" =20 -#: gnu/packages/gtk.scm:320 -msgid "Assistive Technology Service Provider Interface, core components" -msgstr "'Asista Teknologia Serv-Provizila Interfaco', =C4=89efaj element= oj" +#: gnu/packages/web.scm:748 +msgid "Compile a log format string to perl-code" +msgstr "" =20 -#: gnu/packages/gtk.scm:322 +#: gnu/packages/web.scm:749 msgid "" -"The Assistive Technology Service Provider Interface, core components,\n= " -"is part of the GNOME accessibility project." +"This module provides methods to compile a log format string\n" +"to perl-code, for faster generation of access_log lines." msgstr "" =20 -#: gnu/packages/gtk.scm:349 -msgid "Assistive Technology Service Provider Interface, ATK bindings" -msgstr "'Asista Teknologia Serv-Provizila Interfaco', bindoj de ATK" +#: gnu/packages/web.scm:770 +msgid "SASL authentication framework" +msgstr "" =20 -#: gnu/packages/gtk.scm:351 -msgid "" -"The Assistive Technology Service Provider Interface\n" -"is part of the GNOME accessibility project." +#: gnu/packages/web.scm:771 +msgid "Authen::SASL provides an SASL authentication framework." msgstr "" =20 -#: gnu/packages/gtk.scm:387 -msgid "Cross-platform toolkit for creating graphical user interfaces" -msgstr "Plursistema ilaro por krei grafik-uzantajn interfacojn" +#: gnu/packages/web.scm:795 +msgid "Sensible default Catalyst action" +msgstr "" =20 -#: gnu/packages/gtk.scm:389 +#: gnu/packages/web.scm:796 msgid "" -"GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" -"graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" -"suitable for projects ranging from small one-off tools to complete\n" -"application suites." +"This Catalyst action implements a sensible default end\n" +"action, which will forward to the first available view." msgstr "" =20 -#: gnu/packages/gtk.scm:494 -msgid "Cairo bindings for GNU Guile" -msgstr "Bindoj de Cairo por GNU Guile" +#: gnu/packages/web.scm:824 +msgid "Automated REST Method Dispatching" +msgstr "" =20 -#: gnu/packages/gtk.scm:496 +#: gnu/packages/web.scm:825 msgid "" -"Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" -"Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" -"stable, providing a firm base on which to do graphics work. Finally, a= nd\n" -"importantly, it is pleasant to use. You get a powerful and well-mainta= ined\n" -"graphics library with all of the benefits of Scheme: memory management,= \n" -"exceptions, macros, and a dynamic programming environment." +"This Action handles doing automatic method dispatching for\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" +"append an underscore and method name. First it will try dispatching to= an\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" +"regular method." msgstr "" =20 -#: gnu/packages/gtk.scm:531 -msgid "C++ bindings to the Cairo 2D graphics library" -msgstr "Bindoj de C++ por la 2D-grafika biblioteko Cairo" +#: gnu/packages/web.scm:861 +msgid "Storage class for Catalyst authentication using DBIx::Class" +msgstr "" =20 -#: gnu/packages/gtk.scm:533 +#: gnu/packages/web.scm:862 msgid "" -"Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " -"library." +"The Catalyst::Authentication::Store::DBIx::Class class\n" +"provides access to authentication information stored in a database via\= n" +"DBIx::Class." msgstr "" =20 -#: gnu/packages/gtk.scm:557 -msgid "C++ interface to the Pango text rendering library" -msgstr "Interfaco C++ por la tekst-bildiga biblioteko Pango" +#: gnu/packages/web.scm:886 +msgid "Create only one instance of Moose component per context" +msgstr "" =20 -#: gnu/packages/gtk.scm:559 +#: gnu/packages/web.scm:887 msgid "" -"Pangomm provides a C++ programming interface to the Pango text renderin= g\n" -"library." +"Catalyst::Component::InstancePerContext returns a new\n" +"instance of a component on each request." msgstr "" =20 -#: gnu/packages/gtk.scm:580 -msgid "C++ interface to the ATK accessibility library" -msgstr "Interfaco C++ por la alirebla biblioteko ATK" +#: gnu/packages/web.scm:924 +msgid "Catalyst Development Tools" +msgstr "" =20 -#: gnu/packages/gtk.scm:582 +#: gnu/packages/web.scm:925 msgid "" -"ATKmm provides a C++ programming interface to the ATK accessibility\n" -"toolkit." +"The Catalyst-Devel distribution includes a variety of\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" +"to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" +"modules." msgstr "" =20 -#: gnu/packages/gtk.scm:608 -msgid "C++ interface to the GTK+ graphical user interface library" -msgstr "Interfaco C++ por la grafik-uzanta interfaca biblioteko GTK+" +#: gnu/packages/web.scm:954 +msgid "Regex DispatchType for Catalyst" +msgstr "" =20 -#: gnu/packages/gtk.scm:610 +#: gnu/packages/web.scm:955 msgid "" -"gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " -"Highlights include typesafe callbacks, and a comprehensive set of widge= ts that\n" -"are easily extensible via inheritance. You can create user interfaces = either\n" -"in code or with the Glade User Interface designer, using libglademm. T= here's\n" -"extensive documentation, including API reference and a tutorial." +"Dispatch type managing path-matching behaviour using\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" +"core. It is recommend that you use Chained methods or other techniques= \n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" +"when the dispatch type is first seen in your application." msgstr "" =20 -#: gnu/packages/gtk.scm:672 -msgid "Python bindings for cairo" -msgstr "Bindoj de Python por Cairo" +#: gnu/packages/web.scm:1003 +msgid "DBIx::Class::Schema Model Class" +msgstr "" =20 -#: gnu/packages/gtk.scm:674 -msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." +#: gnu/packages/web.scm:1004 +msgid "" +"This is a Catalyst Model for DBIx::Class::Schema-based\n" +"Models." msgstr "" =20 -#: gnu/packages/gtk.scm:736 -msgid "Python bindings for GTK+" -msgstr "Bindoj de Python por GTK+" +#: gnu/packages/web.scm:1028 +msgid "Request logging from within Catalyst" +msgstr "" =20 -#: gnu/packages/gtk.scm:738 +#: gnu/packages/web.scm:1029 msgid "" -"PyGTK allows you to write full featured GTK programs in Python. It is\= n" -"targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" -"write GNOME applications." +"This Catalyst plugin enables you to create \"access logs\"\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" +"for you. It will work even with Catalyst debug logging turned off." msgstr "" =20 -#: gnu/packages/guile.scm:99 gnu/packages/guile.scm:166 -msgid "Scheme implementation intended especially for extensions" -msgstr "Realigo de Scheme celata speciale por aldonoj" +#: gnu/packages/web.scm:1061 +msgid "Infrastructure plugin for the Catalyst authentication framework" +msgstr "" =20 -#: gnu/packages/guile.scm:101 gnu/packages/guile.scm:168 +#: gnu/packages/web.scm:1062 msgid "" -"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" -"official extension language of the GNU system. It is an implementation= of\n" -"the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" -"without requiring the source code to be rewritten." +"The authentication plugin provides generic user support for\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" +"who they claim to be), and authorization (allowing the user to do what = the\n" +"system authorises them to do)." msgstr "" =20 -#: gnu/packages/guile.scm:211 -msgid "Framework for building readers for GNU Guile" -msgstr "Framo por konstrui legilojn por GNU Guile" +#: gnu/packages/web.scm:1092 +msgid "Role-based authorization for Catalyst" +msgstr "" =20 -#: gnu/packages/guile.scm:213 +#: gnu/packages/web.scm:1093 msgid "" -"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" -"\n" -"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wr= itten,\n" -"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" -"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" -"document syntax.\n" -"\n" -"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" -"hopefully more powerful and flexible (for instance, one may instantiate= as\n" -"many readers as needed)." +"Catalyst::Plugin::Authorization::Roles provides role-based\n" +"authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" =20 -#: gnu/packages/guile.scm:275 -msgid "Guile bindings to ncurses" -msgstr "Bindoj de Guile por ncurses" +#: gnu/packages/web.scm:1116 +msgid "Captchas for Catalyst" +msgstr "" =20 -#: gnu/packages/guile.scm:277 +#: gnu/packages/web.scm:1117 msgid "" -"guile-ncurses provides Guile language bindings for the ncurses\n" -"library." +"This plugin creates and validates Captcha images for\n" +"Catalyst." msgstr "" -"guile-ncurses provizas lingvo-bindojn de Guile por la biblioteko\n" -"ncurses." =20 -#: gnu/packages/guile.scm:297 -msgid "Run jobs at scheduled times" -msgstr "Lan=C4=89i taskojn je anta=C5=ADplanitaj horoj" +#: gnu/packages/web.scm:1143 +msgid "Load config files of various types" +msgstr "" =20 -#: gnu/packages/guile.scm:299 +#: gnu/packages/web.scm:1144 msgid "" -"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" -"Guile, so its configuration can be written in Scheme; the original cron= \n" -"format is also supported." +"This module will attempt to load find and load configuration\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" +"formats." msgstr "" =20 -#: gnu/packages/guile.scm:327 -msgid "Collection of useful Guile Scheme modules" -msgstr "Aro da utilaj moduloj de Guile Scheme" +#: gnu/packages/web.scm:1174 +msgid "Catalyst generic session plugin" +msgstr "" =20 -#: gnu/packages/guile.scm:329 +#: gnu/packages/web.scm:1175 msgid "" -"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" -"modules, allowing for people to cooperate integrating their generic Gui= le\n" -"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" -"for Guile\"." +"This plugin links the two pieces required for session\n" +"management in web applications together: the state, and the store." msgstr "" =20 -#: gnu/packages/guile.scm:360 -msgid "JSON module for Guile" -msgstr "Modulo JSON por Guile" +#: gnu/packages/web.scm:1201 +msgid "Maintain session IDs using cookies" +msgstr "" =20 -#: gnu/packages/guile.scm:362 +#: gnu/packages/web.scm:1202 msgid "" -"Guile-json supports parsing and building JSON documents according to th= e\n" -"http:://json.org specification. These are the main features:\n" -"- Strictly complies to http://json.org specification.\n" -"- Build JSON documents programmatically via macros.\n" -"- Unicode support for strings.\n" -"- Allows JSON pretty printing." +"In order for Catalyst::Plugin::Session to work, the session\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" +"on the server. This plugin stores the session ID on the client using t= he\n" +"cookie mechanism." msgstr "" =20 -#: gnu/packages/image.scm:59 -msgid "Library for handling PNG files" -msgstr "Biblioteko por trakti dosierojn PNG" +#: gnu/packages/web.scm:1232 +msgid "FastMmap session storage backend" +msgstr "" =20 -#: gnu/packages/image.scm:61 +#: gnu/packages/web.scm:1233 msgid "" -"Libpng is the official PNG (Portable Network Graphics) reference\n" -"library. It supports almost all PNG features and is extensible." +"Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" +"storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" +"memory interprocess cache. It is based on Cache::FastMmap." msgstr "" =20 -#: gnu/packages/image.scm:77 -msgid "Library for handling JPEG files" -msgstr "Biblioteko por trakti dosierojn JPEG" +#: gnu/packages/web.scm:1256 +msgid "Stack trace on the Catalyst debug screen" +msgstr "" =20 -#: gnu/packages/image.scm:79 +#: gnu/packages/web.scm:1257 msgid "" -"Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" -"JPEG is a standardized compression method for full-color and gray-scale= \n" -"images.\n" -"The included programs provide conversion between the JPEG format and\n" -"image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." +"This plugin enhances the standard Catalyst debug screen by\n" +"including a stack trace of your application up to the point where the e= rror\n" +"occurred. Each stack frame is displayed along with the package name, l= ine\n" +"number, file name, and code context surrounding the line number." msgstr "" =20 -#: gnu/packages/image.scm:116 -msgid "Library for handling TIFF files" -msgstr "Biblioteko por trakti dosierojn TIFF" +#: gnu/packages/web.scm:1283 +msgid "Simple serving of static pages" +msgstr "" =20 -#: gnu/packages/image.scm:118 +#: gnu/packages/web.scm:1284 msgid "" -"Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" -"used for storing image data.\n" -"Included are a library, libtiff, for reading and writing TIFF and a sma= ll\n" -"collection of tools for doing simple manipulations of TIFF images." +"The Static::Simple plugin is designed to make serving static\n" +"content in your application during development quick and easy, without\= n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" +"plugin uses the lightweight MIME::Types module to map file extensions t= o\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" +"MIME type directly to the browser, without being processed through Cata= lyst." msgstr "" =20 -#: gnu/packages/image.scm:148 -msgid "Library for reading images in the Microsoft WMF format" -msgstr "Biblioteko por legi bildojn la=C5=AD la formo Microsoft WMF" +#: gnu/packages/web.scm:1351 +msgid "The Catalyst Framework Runtime" +msgstr "" =20 -#: gnu/packages/image.scm:150 +#: gnu/packages/web.scm:1352 msgid "" -"libwmf is a library for reading vector images in Microsoft's native\n" -"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., an X\n" -"window; or (b) converting them to more standard/free file formats such = as, e.g.,\n" -"the W3C's XML-based Scaleable Vector Graphic (SVG) format." +"Catalyst is a modern framework for making web applications.\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" +"\"plug in\" existing Perl modules that do what you need." msgstr "" =20 -#: gnu/packages/image.scm:174 -msgid "Decoder of the JBIG2 image compression format" -msgstr "Dekodilo de la bild-densiga formo JBIG2" +#: gnu/packages/web.scm:1382 +msgid "Replace request base with value passed by HTTP proxy" +msgstr "" =20 -#: gnu/packages/image.scm:176 -msgid "" -"JBIG2 is designed for lossy or lossless encoding of 'bilevel'\n" -"(1-bit monochrome) images at moderately high resolution, and in\n" -"particular scanned paper documents. In this domain it is very\n" -"efficient, offering compression ratios on the order of 100:1.\n" -"\n" -"This is a decoder only implementation, and currently is in the alpha\n" -"stage, meaning it doesn't completely work yet. However, it is\n" -"maintaining parity with available encoders, so it is useful for real\n" -"work." +#: gnu/packages/web.scm:1383 +msgid "" +"This module is a Moose::Role which allows you more\n" +"flexibility in your application's deployment configurations when deploy= ed\n" +"behind a proxy. Using this module, the request base ($c->req->base) is= \n" +"replaced with the contents of the X-Request-Base header." msgstr "" =20 -#: gnu/packages/image.scm:209 -msgid "JPEG 2000 codec" -msgstr "Kodeko JPEG 2000" +#: gnu/packages/web.scm:1409 +msgid "Download data in many formats" +msgstr "" =20 -#: gnu/packages/image.scm:211 +#: gnu/packages/web.scm:1410 msgid "" -"The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" -"been developed in order to promote the use of JPEG 2000, the new\n" -"still-image compression standard from the Joint Photographic Experts\n" -"Group (JPEG).\n" -"\n" -"In addition to the basic codec, various other features are under\n" -"development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats= ,\n" -"an indexing tool useful for the JPIP protocol, JPWL-tools for\n" -"error-resilience, a Java-viewer for j2k-images, ..." +"The purpose of this module is to provide a method for\n" +"downloading data into many supportable formats. For example, downloadi= ng a\n" +"table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" =20 -#: gnu/packages/image.scm:275 -msgid "Tools and library for working with GIF images" -msgstr "Iloj kaj biblioteko por labori kun bildoj GIF" +#: gnu/packages/web.scm:1435 +msgid "Catalyst JSON view" +msgstr "" =20 -#: gnu/packages/image.scm:277 +#: gnu/packages/web.scm:1436 msgid "" -"GIFLIB is a library for reading and writing GIF images. It is API and\= n" -"ABI compatible with libungif which was in wide use while the LZW compre= ssion\n" -"algorithm was patented. Tools are also included to convert, manipulate= ,\n" -"compose, and analyze GIF images." +"Catalyst::View::JSON is a Catalyst View handler that returns\n" +"stash data in JSON format." msgstr "" =20 -#: gnu/packages/image.scm:319 -msgid "Loading, saving, rendering and manipulating image files" -msgstr "=C5=9Cargi, konservi, bildigi kaj manipuli bild-dosierojn" +#: gnu/packages/web.scm:1461 +msgid "Template View Class" +msgstr "" =20 -#: gnu/packages/image.scm:321 +#: gnu/packages/web.scm:1462 msgid "" -"Imlib2 is a library that does image file loading and saving as well as\= n" -"rendering, manipulation, arbitrary polygon support, etc.\n" -"\n" -"It does ALL of these operations FAST. Imlib2 also tries to be highly\n= " -"intelligent about doing them, so writing naive programs can be done eas= ily,\n" -"without sacrificing speed.\n" -"\n" -"This is a complete rewrite over the Imlib 1.x series. The architecture= is\n" -"more modular, simple, and flexible." +"This module is a Catalyst view class for the Template\n" +"Toolkit." msgstr "" =20 -#: gnu/packages/image.scm:349 -msgid "Wrapper library for imlib2" -msgstr "=C4=88irka=C5=ADira biblioteko por imlib2" +#: gnu/packages/web.scm:1491 +msgid "Trait Loading and Resolution for Catalyst Components" +msgstr "" =20 -#: gnu/packages/image.scm:351 +#: gnu/packages/web.scm:1492 msgid "" -"Giblib is a simple library which wraps imlib2's context API, avoiding\n= " -"all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" -"supplies a generic doubly-linked list and some string functions." +"Adds a \"COMPONENT\" in Catalyst::Component method to your\n" +"Catalyst component base class that reads the optional \"traits\" parame= ter\n" +"from app and component config and instantiates the component subclass w= ith\n" +"those traits using \"new_with_traits\" in MooseX::Traits from\n" +"MooseX::Traits::Pluggable." msgstr "" =20 -#: gnu/packages/image.scm:395 -msgid "Library for handling popular graphics image formats" -msgstr "Biblioteko por trakti popularajn grafika=C4=B5ajn bild-formojn" +#: gnu/packages/web.scm:1517 +msgid "Apply roles to Catalyst classes" +msgstr "" =20 -#: gnu/packages/image.scm:397 +#: gnu/packages/web.scm:1518 msgid "" -"FreeImage is a library for developers who would like to support popular= \n" -"graphics image formats like PNG, BMP, JPEG, TIFF and others." +"CatalystX::RoleApplicator applies roles to Catalyst\n" +"application classes." msgstr "" =20 -#: gnu/packages/imagemagick.scm:84 -msgid "Create, edit, compose, or convert bitmap images" -msgstr "Krei, redakti, kunmeti, a=C5=AD konverti bitmapajn bildojn" +#: gnu/packages/web.scm:1544 +msgid "Catalyst development server with Starman" +msgstr "" =20 -#: gnu/packages/imagemagick.scm:86 +#: gnu/packages/web.scm:1545 msgid "" -"ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" -"bitmap images. It can read and write images in a variety of formats (o= ver 100)\n" -"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , SVG,\n" -"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear and\n" -"transform images, adjust image colors, apply various special effects, o= r draw\n" -"text, lines, polygons, ellipses and B=C3=A9zier curves." +"This module provides a Catalyst extension to replace the\n" +"development server with Starman." msgstr "" =20 -#: gnu/packages/inkscape.scm:81 -msgid "Vector graphics editor" -msgstr "Vektor-grafika redaktilo" +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" =20 -#: gnu/packages/inkscape.scm:82 +#: gnu/packages/web.scm:1570 msgid "" -"Inkscape is a vector graphics editor. What sets Inkscape\n" -"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C st= andard,\n" -"as the native format." +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." msgstr "" =20 -#: gnu/packages/linux.scm:136 -msgid "GNU Linux-Libre kernel headers" -msgstr "GNU Linux-Libre kernaj kapdosieroj" +#: gnu/packages/web.scm:1594 +msgid "CGI interface that is CGI.pm compliant" +msgstr "" =20 -#: gnu/packages/linux.scm:137 -msgid "Headers of the Linux-Libre kernel." -msgstr "Kapdosieroj de la kerno Linux-Libre." +#: gnu/packages/web.scm:1595 +msgid "" +"CGI::Simple provides a relatively lightweight drop in\n" +"replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" +"parameter parsing, file upload, cookie handling and header generation." +msgstr "" =20 -#: gnu/packages/linux.scm:168 -msgid "Tools for loading and managing Linux kernel modules" -msgstr "Iloj por =C5=9Dargi kaj administri linuks-kernajn modulojn" +#: gnu/packages/web.scm:1616 +msgid "Build structures from CGI data" +msgstr "" =20 -#: gnu/packages/linux.scm:170 +#: gnu/packages/web.scm:1617 msgid "" -"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" -"`insmod', `lsmod', and more." +"This is a module for building structured data from CGI\n" +"inputs, in a manner reminiscent of how PHP does." msgstr "" =20 -#: gnu/packages/linux.scm:301 -msgid "100% free redistribution of a cleaned Linux kernel" -msgstr "100% libera redistribuo de purigita Linuks-kerno" +#: gnu/packages/web.scm:1640 +msgid "Date conversion routines" +msgstr "" =20 -#: gnu/packages/linux.scm:303 +#: gnu/packages/web.scm:1641 msgid "" -"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" -"It has been modified to remove all non-free binary blobs." +"This module provides functions that deal with the date\n" +"formats used by the HTTP protocol." msgstr "" -"GNU Linux-Libre estas libera varia=C4=B5o de la linuksa kerno.\n" -"=C4=9Ci estas modifita por forigi =C4=89iujn ne-liberajn ciferecajn sen= koduma=C4=B5ojn." =20 -#: gnu/packages/linux.scm:346 -msgid "Pluggable authentication modules for Linux" -msgstr "Konekteblaj a=C5=ADtentikigaj moduloj por Linukso" +#: gnu/packages/web.scm:1661 +msgid "MD5 sums for files and urls" +msgstr "" =20 -#: gnu/packages/linux.scm:348 +#: gnu/packages/web.scm:1662 msgid "" -"A *Free* project to implement OSF's RFC 86.0.\n" -"Pluggable authentication modules are small shared object files that can= \n" -"be used through the PAM API to perform tasks, like authenticating a use= r\n" -"at login. Local and dynamic reconfiguration are its key features" +"Digest::MD5::File is a Perl extension for getting MD5 sums\n" +"for files and urls." msgstr "" =20 -#: gnu/packages/linux.scm:375 -msgid "Small utilities that use the proc filesystem" -msgstr "Etaj utila=C4=B5oj kiuj uzas la dosiersistemon proc" +#: gnu/packages/web.scm:1680 +msgid "Perl locale encoding determination" +msgstr "" =20 -#: gnu/packages/linux.scm:377 +#: gnu/packages/web.scm:1682 msgid "" -"This PSmisc package is a set of some small useful utilities that\n" -"use the proc filesystem. We're not about changing the world, but\n" -"providing the system administrator with some help in common tasks." +"The POSIX locale system is used to specify both the language\n" +"conventions requested by the user and the preferred character set to\n" +"consume and output. The Encode::Locale module looks up the charset and= \n" +"encoding (called a CODESET in the locale jargon) and arranges for the\n= " +"Encode module to know this encoding under the name \"locale\". It mean= s\n" +"bytes obtained from the environment can be converted to Unicode strings= \n" +"by calling Encode::encode(locale =3D> $bytes) and converted back again\= n" +"with Encode::decode(locale =3D> $string)." msgstr "" =20 -#: gnu/packages/linux.scm:423 -msgid "Collection of utilities for the Linux kernel" -msgstr "Aro da utila=C4=B5oj por la Linuks-kerno" +#: gnu/packages/web.scm:1708 +msgid "Perl directory listing parser" +msgstr "" =20 -#: gnu/packages/linux.scm:425 -msgid "Util-linux is a random collection of utilities for the Linux kern= el." -msgstr "Util-linux estas hazarda aro da utila=C4=B5oj por la Linuks-kern= o." +#: gnu/packages/web.scm:1710 +msgid "" +"The File::Listing module exports a single function called parse_dir(),\= n" +"which can be used to parse directory listings." +msgstr "" =20 -#: gnu/packages/linux.scm:479 -msgid "Utilities that give information about processes" -msgstr "Utila=C4=B5oj kiuj informas pri procezoj" +#: gnu/packages/web.scm:1742 +msgid "Stock and mutual fund quotes" +msgstr "" =20 -#: gnu/packages/linux.scm:481 +#: gnu/packages/web.scm:1744 msgid "" -"Procps is the package that has a bunch of small useful utilities\n" -"that give information about processes using the Linux /proc file system= .\n" -"The package includes the programs ps, top, vmstat, w, kill, free,\n" -"slabtop, and skill." +"Finance::Quote gets stock quotes from various internet sources, includi= ng\n" +"Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." msgstr "" =20 -#: gnu/packages/linux.scm:506 -msgid "Tools for working with USB devices, such as lsusb" -msgstr "Iloj por labori kun USB-aparatoj, kiel lsusb" +#: gnu/packages/web.scm:1766 +msgid "Perl extension providing access to the GSSAPIv2 library" +msgstr "" =20 -#: gnu/packages/linux.scm:508 -msgid "Tools for working with USB devices, such as lsusb." -msgstr "Iloj por labori kun USB-aparatoj, kiel lsusb." +#: gnu/packages/web.scm:1767 +msgid "" +"This is a Perl extension for using GSSAPI C bindings as\n" +"described in RFC 2744." +msgstr "" =20 -#: gnu/packages/linux.scm:567 -msgid "Creating and checking ext2/ext3/ext4 file systems" -msgstr "Kreo kaj kontrolo de dosiersistemoj ext2/ext3/ext4" +#: gnu/packages/web.scm:1787 +msgid "Manipulate tables of HTML::Element" +msgstr "" =20 -#: gnu/packages/linux.scm:569 -msgid "This package provides tools for manipulating ext2/ext3/ext4 file = systems." -msgstr "Tiu =C4=89i pako provizas ilojn por manipuli dosiersistemojn ext= 2/ext3/ext4." +#: gnu/packages/web.scm:1789 +msgid "" +"HTML::Element::Extended is a Perl extension for manipulating a table\n" +"composed of HTML::Element style components." +msgstr "" =20 -#: gnu/packages/linux.scm:611 -msgid "Statically-linked fsck.* commands from e2fsprogs" -msgstr "Statik-ligitaj komandoj fsck.* el e2fsprogs" +#: gnu/packages/web.scm:1813 +msgid "Perl class representing an HTML form element" +msgstr "" =20 -#: gnu/packages/linux.scm:613 +#: gnu/packages/web.scm:1814 msgid "" -"This package provides statically-linked command of fsck.ext[234] taken\= n" -"from the e2fsprogs package. It is meant to be used in initrds." +"Objects of the HTML::Form class represents a single HTML\n" +"
...
instance." msgstr "" =20 -#: gnu/packages/linux.scm:646 -msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" -msgstr "Neniu ne-rezervita regiono en dosiersistemoj ext2/ext3/ext4" +#: gnu/packages/web.scm:1836 +msgid "Check for HTML errors in a string or file" +msgstr "" =20 -#: gnu/packages/linux.scm:648 +#: gnu/packages/web.scm:1837 msgid "" -"The zerofree command scans the free blocks in an ext2 file system and\n= " -"fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" -"images more compressible." +"HTML::Lint is a pure-Perl HTML parser and checker for\n" +"syntactic legitmacy." msgstr "" =20 -#: gnu/packages/linux.scm:667 -msgid "System call tracer for Linux" -msgstr "Sistem-voka =C5=9Dpursekvilo por Linukso" +#: gnu/packages/web.scm:1858 +msgid "Extract contents from HTML tables" +msgstr "" =20 -#: gnu/packages/linux.scm:669 +#: gnu/packages/web.scm:1860 msgid "" -"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" -"trace of all the system calls made by a another process/program." +"HTML::TableExtract is a Perl module for extracting the content containe= d\n" +"in tables within an HTML document, either as text or encoded element tr= ees." msgstr "" =20 -#: gnu/packages/linux.scm:688 -msgid "The Advanced Linux Sound Architecture libraries" -msgstr "La bibliotekoj de Altnivela Linuksa Sona Arkitekturo" +#: gnu/packages/web.scm:1885 +msgid "Work with HTML in a DOM-like tree structure" +msgstr "" =20 -#: gnu/packages/linux.scm:690 gnu/packages/linux.scm:732 +#: gnu/packages/web.scm:1886 msgid "" -"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" -"MIDI functionality to the Linux-based operating system." +"This distribution contains a suite of modules for\n" +"representing, creating, and extracting information from HTML syntax tre= es." msgstr "" -"La Altnivela Linuksa Sona Arkitekturo (ALSA) provizas sonan kaj\n" -"MIDI-an funkciojn por linuks-surbazita operaci-sistemo." =20 -#: gnu/packages/linux.scm:730 -msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" -msgstr "Utila=C4=B5oj por la Altnivela Linuksa Sona Arkitekturo (ALSA)" - -#: gnu/packages/linux.scm:754 -msgid "Program to configure the Linux IP packet filtering rules" -msgstr "Programo por agordi la IP-pakajn filtrajn regulojn de Linukso" +#: gnu/packages/web.scm:1906 +msgid "Perl HTML parser class" +msgstr "" =20 -#: gnu/packages/linux.scm:756 +#: gnu/packages/web.scm:1908 msgid "" -"iptables is the userspace command line program used to configure the\n" -"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted to= wards\n" -"system administrators. Since Network Address Translation is also confi= gured\n" -"from the packet filter ruleset, iptables is used for this, too. The ip= tables\n" -"package also includes ip6tables. ip6tables is used for configuring the= IPv6\n" -"packet filter." +"Objects of the HTML::Parser class will recognize markup and separate\n" +"it from plain text (alias data content) in HTML documents. As differen= t\n" +"kinds of markup and text are recognized, the corresponding event handle= rs\n" +"are invoked." msgstr "" =20 -#: gnu/packages/linux.scm:804 -msgid "Utilities for controlling TCP/IP networking and traffic in Linux" -msgstr "Utila=C4=B5oj por regi reton TCP/IP kaj trafikon en Linukso" +#: gnu/packages/web.scm:1928 +msgid "Perl data tables useful in parsing HTML" +msgstr "" =20 -#: gnu/packages/linux.scm:806 +#: gnu/packages/web.scm:1930 msgid "" -"Iproute2 is a collection of utilities for controlling TCP/IP\n" -"networking and traffic with the Linux kernel.\n" -"\n" -"Most network configuration manuals still refer to ifconfig and route as= the\n" -"primary network configuration tools, but ifconfig is known to behave\n" -"inadequately in modern network environments. They should be deprecated= , but\n" -"most distros still include them. Most network configuration systems ma= ke use\n" -"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct aims\n" -"to support most modern network technologies, as it doesn't use ifconfig= and\n" -"allows a system administrator to make use of all iproute2 features, inc= luding\n" -"traffic control.\n" -"\n" -"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" -"consists of several tools, of which the most important are ip and tc. = ip\n" -"controls IPv4 and IPv6 configuration and tc stands for traffic control.= Both\n" -"tools print detailed usage messages and are accompanied by a set of\n" -"manpages." +"The HTML::Tagset module contains several data tables useful in various\= n" +"kinds of HTML parsing operations." msgstr "" =20 -#: gnu/packages/linux.scm:898 -msgid "Tools for controlling the network subsystem in Linux" -msgstr "Iloj por regi la retan subsistemon en Linukso" +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" =20 -#: gnu/packages/linux.scm:900 +#: gnu/packages/web.scm:1951 msgid "" -"This package includes the important tools for controlling the network\n= " -"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" -"netstat, rarp and route. Additionally, this package contains utilities= \n" -"relating to particular network hardware types (plipconfig, slattach) an= d\n" -"advanced aspects of IP configuration (iptunnel, ipmaddr)." +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." msgstr "" =20 -#: gnu/packages/linux.scm:933 -msgid "Library for working with POSIX capabilities" -msgstr "Biblioteko por labori kun kapabloj POSIX" +#: gnu/packages/web.scm:1979 +msgid "HTTP Body Parser" +msgstr "" =20 -#: gnu/packages/linux.scm:935 +#: gnu/packages/web.scm:1980 msgid "" -"Libcap2 provides a programming interface to POSIX capabilities on\n" -"Linux-based operating systems." +"HTTP::Body parses chunks of HTTP POST data and supports\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" +"and multipart/form-data." msgstr "" -"Libcap2 provizas program-interfacon por kapabloj POSIX en\n" -"operaciumaj sistemoj bazitaj sur Linukso." =20 -#: gnu/packages/linux.scm:967 -msgid "Manipulate Ethernet bridges" -msgstr "Manipuli pontojn Ethernet" +#: gnu/packages/web.scm:2006 +msgid "Minimalist HTTP user agent cookie jar" +msgstr "" =20 -#: gnu/packages/linux.scm:969 +#: gnu/packages/web.scm:2007 msgid "" -"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" -"to connect two Ethernet segments together in a protocol independent way= .\n" -"Packets are forwarded based on Ethernet address, rather than IP address= (like\n" -"a router). Since forwarding is done at Layer 2, all protocols can go\n= " -"transparently through a bridge." +"This module implements a minimalist HTTP user agent cookie\n" +"jar in conformance with RFC 6265 ." msgstr "" =20 -#: gnu/packages/linux.scm:991 -msgid "NetLink protocol library suite" -msgstr "Biblioteka programaro por la protokolo NetLink" +#: gnu/packages/web.scm:2027 +msgid "Perl HTTP cookie jars" +msgstr "" =20 -#: gnu/packages/linux.scm:993 +#: gnu/packages/web.scm:2029 msgid "" -"The libnl suite is a collection of libraries providing APIs to netlink\= n" -"protocol based Linux kernel interfaces. Netlink is an IPC mechanism pr= imarly\n" -"between the kernel and user space processes. It was designed to be a m= ore\n" -"flexible successor to ioctl to provide mainly networking related kernel= \n" -"configuration and monitoring interfaces." +"The HTTP::Cookies class is for objects that represent a cookie jar,\n" +"that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" +"object knows about." msgstr "" =20 -#: gnu/packages/linux.scm:1023 -msgid "Tool for configuring wireless devices" -msgstr "Iloj por agordi linuksajn sendratajn aparatojn" +#: gnu/packages/web.scm:2051 +msgid "Perl simple http server class" +msgstr "" =20 -#: gnu/packages/linux.scm:1025 +#: gnu/packages/web.scm:2053 msgid "" -"iw is a new nl80211 based CLI configuration utility for wireless\n" -"devices. It replaces 'iwconfig', which is deprecated." +"Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" +"on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " +"IO::Socket::INET, so you can perform socket operations directly on it t= oo." msgstr "" =20 -#: gnu/packages/linux.scm:1052 -msgid "Analyze power consumption on Intel-based laptops" -msgstr "Analizi konsumon de potenco en tekkomputiloj bazitaj sur Intel" +#: gnu/packages/web.scm:2072 +msgid "Perl date conversion routines" +msgstr "" =20 -#: gnu/packages/linux.scm:1054 +#: gnu/packages/web.scm:2074 msgid "" -"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" -"power management. In addition to being a diagnostic tool, PowerTOP als= o has\n" -"an interactive mode where the user can experiment various power managem= ent\n" -"settings for cases where the operating system has not enabled these\n" -"settings." +"The HTTP::Date module provides functions that deal with date formats\n" +"used by the HTTP protocol (and then some more)." msgstr "" =20 -#: gnu/packages/linux.scm:1076 -msgid "Audio mixer for X and the console" -msgstr "Son-miksilo por X kaj la konzolo" +#: gnu/packages/web.scm:2097 +msgid "Perl HTTP style message" +msgstr "" =20 -#: gnu/packages/linux.scm:1078 -msgid "" -"Aumix adjusts an audio mixer from X, the console, a terminal,\n" -"the command line or a script." +#: gnu/packages/web.scm:2099 +msgid "An HTTP::Message object contains some headers and a content body.= " msgstr "" -"Aumix agordas son-miksilo el X, la konzolo, terminalo,\n" -"la komandlinio a=C5=AD el skripto." =20 -#: gnu/packages/linux.scm:1102 -msgid "Displays the IO activity of running processes" -msgstr "Montri la en/eligan aktiva=C4=B5on de rulantaj procezoj" +#: gnu/packages/web.scm:2118 +msgid "Perl http content negotiation" +msgstr "" =20 -#: gnu/packages/linux.scm:1104 +#: gnu/packages/web.scm:2120 msgid "" -"Iotop is a Python program with a top like user interface to show the\n" -"processes currently causing I/O." +"The HTTP::Negotiate module provides a complete implementation of the\n" +"HTTP content negotiation algorithm specified in\n" +"draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows = for\n" +"the selection of a preferred content representation based upon attribut= es\n" +"of the negotiable variants and the value of the various Accept* header\= n" +"fields in the request." msgstr "" =20 -#: gnu/packages/linux.scm:1155 -msgid "Support file systems implemented in user space" -msgstr "Subteni dosiersistemojn realigatajn en la uzant-spaco" +#: gnu/packages/web.scm:2145 +msgid "Parse HTTP/1.1 requests" +msgstr "" =20 -#: gnu/packages/linux.scm:1157 +#: gnu/packages/web.scm:2146 msgid "" -"As a consequence of its monolithic design, file system code for Linux\n= " -"normally goes into the kernel itself---which is not only a robustness i= ssue,\n" -"but also an impediment to system extensibility. FUSE, for \"file syste= ms in\n" -"user space\", is a kernel module and user-space library that tries to a= ddress\n" -"part of this problem by allowing users to run file system implementatio= ns as\n" -"user-space processes." +"This is an HTTP request parser. It takes chunks of text as\n" +"received and returns a 'hint' as to what is required, or returns the\n" +"HTTP::Request when a complete request has been read. HTTP/1.1 chunking= is\n" +"supported." msgstr "" =20 -#: gnu/packages/linux.scm:1182 -msgid "User-space union file system" -msgstr "Uzant-spaca unuiga dosiersistemo" +#: gnu/packages/web.scm:2166 +msgid "Fast HTTP request parser" +msgstr "" =20 -#: gnu/packages/linux.scm:1184 +#: gnu/packages/web.scm:2167 msgid "" -"UnionFS-FUSE is a flexible union file system implementation in user\n" -"space, using the FUSE library. Mounting a union file system allows you= to\n" -"\"aggregate\" the contents of several directories into a single mount p= oint.\n" -"UnionFS-FUSE additionally supports copy-on-write." +"HTTP::Parser::XS is a fast, primitive HTTP request/response\n" +"parser." msgstr "" =20 -#: gnu/packages/linux.scm:1209 -msgid "User-space union file system (statically linked)" -msgstr "Uzant-spaca unuiga dosiersistemo (statike ligita)" +#: gnu/packages/web.scm:2188 +msgid "Set up a CGI environment from an HTTP::Request" +msgstr "" =20 -#: gnu/packages/linux.scm:1251 -msgid "Mount remote file systems over SSH" -msgstr "Munti demalproksimajn dosiersistemojn per SSH" +#: gnu/packages/web.scm:2189 +msgid "" +"This module provides a convenient way to set up a CGI\n" +"environment from an HTTP::Request." +msgstr "" + +#: gnu/packages/web.scm:2213 +msgid "Lightweight HTTP server" +msgstr "" =20 -#: gnu/packages/linux.scm:1253 +#: gnu/packages/web.scm:2214 msgid "" -"This is a file system client based on the SSH File Transfer Protocol.\n= " -"Since most SSH servers already support this protocol it is very easy to= set\n" -"up: on the server side there's nothing to do; on the client side mounti= ng the\n" -"file system is as easy as logging into the server with an SSH client." +"HTTP::Server::Simple is a simple standalone HTTP daemon with\n" +"no non-core module dependencies. It can be used for building a standal= one\n" +"http-based UI to your existing tools." msgstr "" =20 -#: gnu/packages/linux.scm:1301 -msgid "Tools for non-uniform memory access (NUMA) machines" -msgstr "Iloj por ma=C5=9Dinoj kun ne-kontinua memor-aliro (NUMA)" +#: gnu/packages/web.scm:2238 +msgid "HTTP/1.1 client" +msgstr "" =20 -#: gnu/packages/linux.scm:1303 +#: gnu/packages/web.scm:2239 msgid "" -"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" -"memory is not all in one place. The numactl program allows you to run = your\n" -"application program on specific CPU's and memory nodes. It does this b= y\n" -"supplying a NUMA memory policy to the operating system before running y= our\n" -"program.\n" -"\n" -"The package contains other commands, such as numademo, numastat and mem= hog.\n" -"The numademo command provides a quick overview of NUMA performance on y= our\n" -"system." +"This is a very simple HTTP/1.1 client, designed for doing\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" +"It supports proxies and redirection. It also correctly resumes after E= INTR." msgstr "" =20 -#: gnu/packages/linux.scm:1366 -msgid "Linux keyboard utilities and keyboard maps" -msgstr "Linuksaj klavar-utila=C4=B5oj kaj klavar-mapoj" +#: gnu/packages/web.scm:2258 +msgid "Perl module to open an HTML file with automatic charset detection= " +msgstr "" =20 -#: gnu/packages/linux.scm:1368 +#: gnu/packages/web.scm:2260 msgid "" -"This package contains keytable files and keyboard utilities compatible\= n" -"for systems using the Linux kernel. This includes commands such as\n" -"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +"IO::HTML provides an easy way to open a file containing HTML while\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" +"algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" =20 -#: gnu/packages/linux.scm:1387 -msgid "Monitor file accesses" -msgstr "Observi dosier-alirojn" +#: gnu/packages/web.scm:2280 +msgid "Family-neutral IP socket supporting both IPv4 and IPv6" +msgstr "" + +#: gnu/packages/web.scm:2281 +msgid "" +"This module provides a protocol-independent way to use IPv4\n" +"and IPv6 sockets, intended as a replacement for IO::Socket::INET." +msgstr "" =20 -#: gnu/packages/linux.scm:1389 +#: gnu/packages/web.scm:2301 +msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" +msgstr "" + +#: gnu/packages/web.scm:2303 msgid "" -"The inotify-tools packages provides a C library and command-line tools\= n" -"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" +"select or poll." msgstr "" =20 -#: gnu/packages/linux.scm:1427 -msgid "Kernel module tools" -msgstr "Iloj por kerno-moduloj" +#: gnu/packages/web.scm:2334 +msgid "Perl modules for the WWW" +msgstr "" =20 -#: gnu/packages/linux.scm:1428 +#: gnu/packages/web.scm:2336 msgid "" -"Kmod is a set of tools to handle common tasks with Linux\n" -"kernel modules like insert, remove, list, check properties, resolve\n" -"dependencies and aliases.\n" -"\n" -"These tools are designed on top of libkmod, a library that is shipped w= ith\n" -"kmod. The aim is to be compatible with tools, configurations and indic= es\n" -"from the module-init-tools project." +"The libwww-perl collection is a set of Perl modules which provides a\n" +"simple and consistent application programming interface to the\n" +"World-Wide Web. The main focus of the library is to provide classes\n" +"and functions that allow you to write WWW clients. The library also\n" +"contains modules that are of more general use and even classes that\n" +"help you implement simple HTTP servers." msgstr "" =20 -#: gnu/packages/linux.scm:1499 -msgid "Userspace device management" -msgstr "Administro de uzant-spaca aparato" +#: gnu/packages/web.scm:2358 +msgid "Perl module to guess the media type for a file or a URL" +msgstr "" =20 -#: gnu/packages/linux.scm:1500 +#: gnu/packages/web.scm:2360 +#, scheme-format msgid "" -"Udev is a daemon which dynamically creates and removes\n" -"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" -"time." +"The LWP::MediaTypes module provides functions for handling media (also\= n" +"known as MIME) types and encodings. The mapping from file extensions t= o\n" +"media types is defined by the media.types file. If the ~/.media.types = file\n" +"exists it is used instead." msgstr "" =20 -#: gnu/packages/linux.scm:1560 -msgid "Logical volume management for Linux" -msgstr "Administro de logika volumo por Linukso" +#: gnu/packages/web.scm:2386 +msgid "HTTPS support for LWP::UserAgent" +msgstr "" =20 -#: gnu/packages/linux.scm:1562 +#: gnu/packages/web.scm:2387 msgid "" -"LVM2 is the logical volume management tool set for Linux-based systems.= \n" -"This package includes the user-space libraries and tools, including the= device\n" -"mapper. Kernel components are part of Linux-libre." +"The LWP::Protocol::https module provides support for using\n" +"https schemed URLs with LWP." msgstr "" =20 -#: gnu/packages/linux.scm:1595 -msgid "Tools for manipulating Linux Wireless Extensions" -msgstr "Iloj por manipuli linuksan \"Wireless Extensions\"" +#: gnu/packages/web.scm:2407 +msgid "Virtual browser that retries errors" +msgstr "" =20 -#: gnu/packages/linux.scm:1596 +#: gnu/packages/web.scm:2408 msgid "" -"Wireless Tools are used to manipulate the now-deprecated\n" -"Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " -"Extension was an interface allowing you to set Wireless LAN specific\n" -"parameters and get the specific stats. It is deprecated in favor the n= l80211\n" -"interface." +"LWP::UserAgent::Determined works just like LWP::UserAgent,\n" +"except that when you use it to get a web page but run into a\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" +"and retry a few times." msgstr "" =20 -#: gnu/packages/linux.scm:1670 -msgid "Utilities to read temperature/voltage/fan sensors" -msgstr "Utila=C4=B5oj por legi temperaturan/tensian/ventolilan sensilojn= " +#: gnu/packages/web.scm:2453 +msgid "Perl interface to Amazon S3" +msgstr "" + +#: gnu/packages/web.scm:2454 +#, fuzzy +msgid "This module provides a Perlish interface to Amazon S3." +msgstr "Tiu =C4=89i pako provizas datumbazan interfacon por Perl." + +#: gnu/packages/web.scm:2474 +msgid "Perl low-level HTTP connection (client)" +msgstr "" =20 -#: gnu/packages/linux.scm:1672 +#: gnu/packages/web.scm:2476 msgid "" -"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" -"you to access information from temperature, voltage, and fan speed sens= ors.\n" -"It works with most newer systems." +"The Net::HTTP class is a low-level HTTP client. An instance of the\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" +"is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" +"HTTP/1.1." msgstr "" =20 -#: gnu/packages/linux.scm:1707 -msgid "Hardware health information viewer" -msgstr "Montrilo de informoj pri la aparatara sano" +#: gnu/packages/web.scm:2496 +msgid "Extensible Perl server engine" +msgstr "" =20 -#: gnu/packages/linux.scm:1709 +#: gnu/packages/web.scm:2497 msgid "" -"Xsensors reads data from the libsensors library regarding hardware\n" -"health such as temperature, voltage and fan speed and displays the info= rmation\n" -"in a digital read-out." +"Net::Server is an extensible, generic Perl server engine.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" +"It includes with it the ability to run as an inetd\n" +"process (Net::Server::INET), a single connection server (Net::Server or= \n" +"Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" +"server which maintains a constant number of preforked\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" +"or to multiple server ports." msgstr "" =20 -#: gnu/packages/linux.scm:1757 -msgid "Linux profiling with performance counters" -msgstr "Linuksa trajt-esplorado kun rendiment-akumuliloj" +#: gnu/packages/web.scm:2525 +msgid "SSL support for Net::SMTP" +msgstr "" =20 -#: gnu/packages/linux.scm:1759 -msgid "" -"perf is a tool suite for profiling using hardware performance counters,= \n" -"with support in the Linux kernel. perf can instrument CPU performance\= n" -"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is c= apable\n" -"of lightweight profiling. This package contains the user-land tools an= d in\n" -"particular the 'perf' command." +#: gnu/packages/web.scm:2526 +msgid "SSL support for Net::SMTP." msgstr "" =20 -#: gnu/packages/linux.scm:1781 -msgid "Simple tool for creating Linux namespace containers" -msgstr "Simpla ilo por krei linuksajn nomspacajn ujojn" +#: gnu/packages/web.scm:2560 +msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" +msgstr "" =20 -#: gnu/packages/linux.scm:1782 +#: gnu/packages/web.scm:2561 msgid "" -"pflask is a simple tool for creating Linux namespace\n" -"containers. It can be used for running a command or even booting an OS= inside\n" -"an isolated container, created with the help of Linux namespaces. It i= s\n" -"similar in functionality to chroot, although pflask provides better iso= lation\n" -"thanks to the use of namespaces." +"Plack is a set of tools for using the PSGI stack. It\n" +"contains middleware components, a reference server, and utilities for W= eb\n" +"application frameworks. Plack is like Ruby's Rack or Python's Paste fo= r\n" +"WSGI." msgstr "" =20 -#: gnu/packages/lout.scm:109 -msgid "Document layout system" -msgstr "Dokument-aran=C4=B5a sistemo" +#: gnu/packages/web.scm:2587 +msgid "Plack::Middleware which sets body for redirect response" +msgstr "" =20 -#: gnu/packages/lout.scm:111 +#: gnu/packages/web.scm:2588 msgid "" -"The Lout document formatting system reads a high-level description of\n= " -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" -"output file.\n" -"\n" -"Lout offers an unprecedented range of advanced features, including opti= mal\n" -"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" -"scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" -"hyphenation (most European languages are supported), formatting of comp= uter\n" -"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" -"extended with definitions which are very much easier to write than trof= f of\n" -"TeX macros because Lout is a high-level, purely functional language, th= e\n" -"outcome of an eight-year research project that went back to the\n" -"beginning." +"This module sets the body in redirect response, if it's not\n" +"already set." msgstr "" =20 -#: gnu/packages/mpd.scm:62 -msgid "Music Player Daemon client library" -msgstr "Klienta biblioteko por \"Music Player Daemon\"" +#: gnu/packages/web.scm:2611 +msgid "Override REST methods to Plack apps via POST" +msgstr "" =20 -#: gnu/packages/mpd.scm:63 +#: gnu/packages/web.scm:2612 msgid "" -"A stable, documented, asynchronous API library for\n" -"interfacing MPD in the C, C++ & Objective C languages." +"This middleware allows for POST requests that pretend to be\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" +"can say what method it actually meant." msgstr "" =20 -#: gnu/packages/mpd.scm:121 -msgid "Music Player Daemon" -msgstr "Music Player Daemon (muzik-ludila demono)" +#: gnu/packages/web.scm:2636 +msgid "Plack::Middleware which removes body for HTTP response" +msgstr "" =20 -#: gnu/packages/mpd.scm:122 +#: gnu/packages/web.scm:2637 msgid "" -"Music Player Daemon (MPD) is a flexible, powerful,\n" -"server-side application for playing music. Through plugins and librari= es it\n" -"can play a variety of sound files while being controlled by its network= \n" -"protocol." +"This module removes the body in an HTTP response if it's not\n" +"required." msgstr "" =20 -#: gnu/packages/mpd.scm:147 -msgid "Curses Music Player Daemon client" -msgstr "Kliento por \"Curses Music Player Daemon\"" +#: gnu/packages/web.scm:2658 +msgid "Supports app to run as a reverse proxy backend" +msgstr "" =20 -#: gnu/packages/mpd.scm:148 +#: gnu/packages/web.scm:2659 msgid "" -"ncmpc is a fully featured MPD client, which runs in a\n" -"terminal using ncurses." +"Plack::Middleware::ReverseProxy resets some HTTP headers,\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" +"and stop fake requests using 'enable_if' directive in your app.psgi." msgstr "" =20 -#: gnu/packages/mpd.scm:169 -msgid "Featureful ncurses based MPD client inspired by ncmpc" -msgstr "Ri=C4=89a MPD-kliento bazita sur ncurses kaj inspirita de ncmpc" +#: gnu/packages/web.scm:2680 +msgid "Run HTTP tests on external live servers" +msgstr "" =20 -#: gnu/packages/mpd.scm:170 +#: gnu/packages/web.scm:2681 msgid "" -"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" -"but it provides new useful features such as support for regular express= ions\n" -"for library searches, extended song format, items filtering, the abilit= y to\n" -"sort playlists, and a local filesystem browser." +"This module allows your to run your Plack::Test tests\n" +"against an external server instead of just against a local application = " +"through\n" +"either mocked HTTP or a locally spawned server." msgstr "" =20 -#: gnu/packages/pdf.scm:94 -msgid "PDF rendering library" -msgstr "PDF-bildiga biblioteko" +#: gnu/packages/web.scm:2703 +#, fuzzy +msgid "Testing TCP programs" +msgstr "Teksto-proceza programaro" =20 -#: gnu/packages/pdf.scm:96 -msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." -msgstr "Poppler estas PDF-bildiga biblioteko bazita sur la kodum-bazo de= xpdf-3.0" +#: gnu/packages/web.scm:2704 +msgid "Test::TCP is test utilities for TCP/IP programs." +msgstr "" =20 -#: gnu/packages/pdf.scm:139 -msgid "Viewer for PDF files based on the Motif toolkit" -msgstr "Montrilo por PDF-dosieroj bazitaj sur la ilaro Motif" +#: gnu/packages/web.scm:2732 +msgid "Testing-specific WWW::Mechanize subclass" +msgstr "" =20 -#: gnu/packages/pdf.scm:141 -msgid "Xpdf is a viewer for Portable Document Format (PDF) files" -msgstr "Xpdf estas montrilo por dosieroj PDF (portebla dokument-formo)" +#: gnu/packages/web.scm:2733 +msgid "" +"Test::WWW::Mechanize is a subclass of the Perl module\n" +"WWW::Mechanize that incorporates features for web application testing." +msgstr "" =20 -#: gnu/packages/pdf.scm:169 -msgid "Tools to work with the PDF file format" -msgstr "Iloj por labori kun la PDF dosierformo" +#: gnu/packages/web.scm:2766 +msgid "Test::WWW::Mechanize for Catalyst" +msgstr "" =20 -#: gnu/packages/pdf.scm:171 +#: gnu/packages/web.scm:2767 msgid "" -"PoDoFo is a C++ library and set of command-line tools to work with the\= n" -"PDF file format. It can parse PDF files and load them into memory, and= makes\n" -"it easy to modify them and write the changes to disk. It is primarily = useful\n" -"for applications that wish to do lower level manipulation of PDF, such = as\n" -"extracting content or merging files." +"The Test::WWW::Mechanize::Catalyst module meshes the\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" +"testing of Catalyst applications without needing to start up a web serv= er." msgstr "" =20 -#: gnu/packages/pdf.scm:232 -msgid "Lightweight PDF viewer and toolkit" -msgstr "Malpeza PDF-montrilo kaj ilaro" +#: gnu/packages/web.scm:2791 +msgid "Test PSGI programs using WWW::Mechanize" +msgstr "" =20 -#: gnu/packages/pdf.scm:234 +#: gnu/packages/web.scm:2792 msgid "" -"MuPDF is a C library that implements a PDF and XPS parsing and\n" -"rendering engine. It is used primarily to render pages into bitmaps,\n= " -"but also provides support for other operations such as searching and\n" -"listing the table of contents and hyperlinks.\n" -"\n" -"The library ships with a rudimentary X11 viewer, and a set of command\n= " -"line tools for batch rendering (pdfdraw), examining the file structure\= n" -"(pdfshow), and rewriting files (pdfclean)." +"PSGI is a specification to decouple web server environments\n" +"from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" +"WWW::Mechanize that incorporates features for web application testing. = The\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" +"applications." msgstr "" =20 -#: gnu/packages/pdf.scm:274 -msgid "Command-line tools and library for transforming PDF files" -msgstr "Komandliniaj iloj kaj biblioteko por transformi PDF-dosierojn" +#: gnu/packages/web.scm:2812 +msgid "Perl Uniform Resource Identifiers (absolute and relative)" +msgstr "" =20 -#: gnu/packages/pdf.scm:276 +#: gnu/packages/web.scm:2814 msgid "" -"QPDF is a command-line program that does structural, content-preserving= \n" -"transformations on PDF files. It could have been called something like= \n" -"pdf-to-pdf. It includes support for merging and splitting PDFs and to\= n" -"manipulate the list of pages in a PDF file. It is not a PDF viewer or = a\n" -"program capable of converting PDF into other formats." +"The URI module implements the URI class. Objects of this class\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" +"and updated by RFC 2732." msgstr "" =20 -#: gnu/packages/photo.scm:46 -msgid "Read and manipulate EXIF data in digital photographs" -msgstr "Legi kaj manipuli datumaron EXIF en ciferecaj fota=C4=B5oj" +#: gnu/packages/web.scm:2837 +msgid "Find URIs in arbitrary text" +msgstr "" =20 -#: gnu/packages/photo.scm:48 +#: gnu/packages/web.scm:2838 msgid "" -"The libexif C library allows applications to read, edit, and save EXIF\= n" -"data as produced by digital cameras." +"This module finds URIs and URLs (according to what URI.pm\n" +"considers a URI) in plain text. It only finds URIs which include a\n" +"scheme (http:// or the like), for something a bit less strict, consider= \n" +"URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." msgstr "" -"La C-biblioteko libexif ebligas ke aplika=C4=B5oj legu, redaktu kaj kon= servu\n" -"datumaron EXIF samkiel produktite de ciferecaj kameraoj." =20 -#: gnu/packages/photo.scm:73 -msgid "Accessing digital cameras" -msgstr "Aliro al ciferecaj kameraoj" +#: gnu/packages/web.scm:2860 +msgid "WebSocket support for URI package" +msgstr "" =20 -#: gnu/packages/photo.scm:75 +#: gnu/packages/web.scm:2861 msgid "" -"This is the library backend for gphoto2. It contains the code for PTP,= \n" -"MTP, and other vendor specific protocols for controlling and transferri= ng data\n" -"from digital cameras." +"With this module, the URI package provides the same set of\n" +"methods for WebSocket URIs as it does for HTTP URIs." msgstr "" =20 -#: gnu/packages/photo.scm:116 -msgid "Command-line tools to access digital cameras" -msgstr "Komandliniaj iloj por aliri ciferecajn kameraojn" +#: gnu/packages/web.scm:2881 +#, fuzzy +msgid "Perl extension interface for libcurl" +msgstr "Interfaco de SQLite por Perl" =20 -#: gnu/packages/photo.scm:118 +#: gnu/packages/web.scm:2883 msgid "" -"Gphoto2 is a set of command line utilities for manipulating a large\n" -"number of different digital cameras. Through libgphoto2, it supports P= TP,\n" -"MTP, and much more." +"This is a Perl extension interface for the libcurl file downloading\n" +"library." msgstr "" =20 -#: gnu/packages/photo.scm:152 -msgid "Program and Perl library to manipulate EXIF tags" -msgstr "Programaro kaj biblioteko Perl por manipuli etikedojn EXIF" +#: gnu/packages/web.scm:2912 +msgid "Web browsing in a Perl object" +msgstr "" =20 -#: gnu/packages/photo.scm:154 +#: gnu/packages/web.scm:2913 msgid "" -"This package provides the 'exiftool' command and the 'Image::ExifTool'\= n" -"Perl library to manipulate EXIF tags of digital images." +"WWW::Mechanize is a Perl module for stateful programmatic\n" +"web browsing, used for automating interaction with websites." msgstr "" -"Tiu =C4=89i pako provizas la komandon 'exiftool' kaj la bibliotekon Per= l\n" -"'Image::ExifTool' por manipuli etikedojn EXIF el ciferecaj bildoj." =20 -#: gnu/packages/ratpoison.scm:60 -msgid "Simple mouse-free tiling window manager" -msgstr "Simpla mus-libera kaheleca fenestr-administrilo" +#: gnu/packages/web.scm:2933 +msgid "Perl database of robots.txt-derived permissions" +msgstr "" =20 -#: gnu/packages/ratpoison.scm:62 +#: gnu/packages/web.scm:2935 msgid "" -"Ratpoison is a simple window manager with no fat library\n" -"dependencies, no fancy graphics, no window decorations, and no\n" -"rodent dependence. It is largely modelled after GNU Screen which\n" -"has done wonders in the virtual terminal market.\n" -"\n" -"The screen can be split into non-overlapping frames. All windows\n" -"are kept maximized inside their frames to take full advantage of\n" -"your precious screen real estate.\n" -"\n" -"All interaction with the window manager is done through keystrokes.\n" -"Ratpoison has a prefix map to minimize the key clobbering that\n" -"cripples Emacs and other quality pieces of software." +"The WWW::RobotRules module parses /robots.txt files as specified in\n" +"\"A Standard for Robot Exclusion\", at\n" +". Webmasters can use the\n" +"/robots.txt file to forbid conforming robots from accessing parts of\n" +"their web site." msgstr "" =20 -#: gnu/packages/scanner.scm:52 -msgid "Raster image scanner library and drivers" -msgstr "Rastruma bild-skanila biblioteko kaj peliloj" +#: gnu/packages/web.scm:2955 +msgid "HTTP and WebSocket server library for R" +msgstr "" =20 -#: gnu/packages/scanner.scm:53 +#: gnu/packages/web.scm:2957 msgid "" -"SANE stands for \"Scanner Access Now Easy\" and is an API\n" -"proving access to any raster image scanner hardware (flatbed scanner,\n= " -"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" -"package contains the library and drivers." +"The httpuv package provides low-level socket and protocol support for\n= " +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" +"intended as a building block for other packages, rather than making it\= n" +"particularly easy to create complete web applications using httpuv alon= e." msgstr "" =20 -#: gnu/packages/scheme.scm:126 -msgid "A Scheme implementation with integrated editor and debugger" -msgstr "Realigo de Scheme kun integrita redaktilo kaj erarser=C4=89ilo" +#: gnu/packages/web.scm:2978 +msgid "Robust, high performance JSON parser and generator for R" +msgstr "" =20 -#: gnu/packages/scheme.scm:128 +#: gnu/packages/web.scm:2980 msgid "" -"GNU/MIT Scheme is an implementation of the Scheme programming\n" -"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" -"features an integrated Emacs-like editor and a large runtime library." +"The jsonlite package provides a fast JSON parser and generator optimize= d\n" +"for statistical data and the web. It offers flexible, robust, high\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" +"in systems and applications." msgstr "" =20 -#: gnu/packages/scheme.scm:208 -msgid "Efficient Scheme compiler" -msgstr "Efika kompililo Scheme" +#: gnu/packages/web.scm:3008 +msgid "Simple HTTP server to serve static files or dynamic documents" +msgstr "" =20 -#: gnu/packages/scheme.scm:210 +#: gnu/packages/web.scm:3010 msgid "" -"Bigloo is a Scheme implementation devoted to one goal: enabling\n" -"Scheme based programming style where C(++) is usually\n" -"required. Bigloo attempts to make Scheme practical by offering\n" -"features usually presented by traditional programming languages\n" -"but not offered by Scheme and functional programming. Bigloo\n" -"compiles Scheme modules. It delivers small and fast stand alone\n" -"binary executables. Bigloo enables full connections between\n" -"Scheme and C programs and between Scheme and Java programs." +"Servr provides an HTTP server in R to serve static files, or dynamic\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" +"directory." msgstr "" =20 -#: gnu/packages/scheme.scm:281 -msgid "Multi-tier programming language for the Web 2.0" -msgstr "Plurtavola programlingvo por la Web 2.0" +#: gnu/packages/web.scm:3029 +msgid "R tools for HTML" +msgstr "" + +#: gnu/packages/web.scm:3031 +#, fuzzy +msgid "This package provides tools for HTML generation and output in R." +msgstr "" +"Tiu =C4=89i pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/= ext4." + +#: gnu/packages/web.scm:3050 +msgid "HTML Widgets for R" +msgstr "" =20 -#: gnu/packages/scheme.scm:283 +#: gnu/packages/web.scm:3052 msgid "" -"HOP is a multi-tier programming language for the Web 2.0 and the\n" -"so-called diffuse Web. It is designed for programming interactive web\= n" -"applications in many fields such as multimedia (web galleries, music pl= ayers,\n" -"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" -"mashups, office (web agendas, mail clients, ...), etc." +"HTML widgets is a framework for creating HTML widgets that render in\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" +"applications." msgstr "" =20 -#: gnu/packages/scheme.scm:323 -msgid "R5RS Scheme implementation that compiles native code via C" -msgstr "Realigo R5RS de Scheme kiu kompilas originalan kodumaron per C" +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" +msgstr "" =20 -#: gnu/packages/scheme.scm:325 +#: gnu/packages/web.scm:3073 msgid "" -"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" -"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" -"language standard, and includes many enhancements and extensions." +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." msgstr "" =20 -#: gnu/packages/scheme.scm:344 -msgid "Scheme implementation using a bytecode interpreter" -msgstr "Realigo de Scheme, kiu uzas bajtkodan interpretilon" +#: gnu/packages/web.scm:3107 +#, fuzzy +msgid "HTML5 parsing library" +msgstr "PDF-bildiga biblioteko" =20 -#: gnu/packages/scheme.scm:346 +#: gnu/packages/web.scm:3109 msgid "" -"Scheme 48 is an implementation of Scheme based on a byte-code\n" -"interpreter and is designed to be used as a testbed for experiments in\= n" -"implementation techniques and as an expository tool." +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." msgstr "" =20 -#: gnu/packages/scheme.scm:419 -msgid "Implementation of Scheme and related languages" -msgstr "Realigo de Scheme kaj rilataj program-lingvoj" +#: gnu/packages/weechat.scm:98 +msgid "Extensible chat client" +msgstr "" =20 -#: gnu/packages/scheme.scm:421 +#: gnu/packages/weechat.scm:99 msgid "" -"Racket is an implementation of the Scheme programming language (R5RS an= d\n" -"R6RS) and related languages, such as Typed Racket. It features a compi= ler and\n" -"a virtual machine with just-in-time native compilation, as well as a la= rge set\n" -"of libraries." +"WeeChat (Wee Enhanced Environment for Chat) is an\n" +"Internet Relay Chat client, which is designed to be light and fast.\n" +"The client uses a curses frontend, and there are remote interfaces\n" +"for Web, Qt, Android and Emacs. In WeeChat everything can be done\n" +"with a keyboard, though it also supports mouse. It is customizable\n" +"and extensible with plugins and scripts." msgstr "" =20 #: gnu/packages/wordnet.scm:79 @@ -1946,33 +11270,35 @@ msgstr "Leksika datumbazo por la angla lingvo" #: gnu/packages/wordnet.scm:81 msgid "" "WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" -"adjectives and adverbs are grouped into sets of cognitive synonyms\n" -"(synsets), each expressing a distinct concept. Synsets are interlinked= by\n" -"means of conceptual-semantic and lexical relations. The resulting netw= ork of\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" +"each expressing a distinct concept. Synsets are interlinked by means o= f\n" +"conceptual-semantic and lexical relations. The resulting network of\n" "meaningfully related words and concepts can be navigated with the brows= er.\n" "WordNet is also freely and publicly available for download. WordNet's\= n" "structure makes it a useful tool for computational linguistics and natu= ral\n" "language processing." msgstr "" =20 -#: gnu/packages/xiph.scm:61 +#: gnu/packages/xiph.scm:66 msgid "Library for manipulating the ogg multimedia format" msgstr "Biblioteko por manipuli la a=C5=ADdvidan formon ogg" =20 -#: gnu/packages/xiph.scm:63 +#: gnu/packages/xiph.scm:68 msgid "" "The libogg library allows to manipulate the ogg multimedia container\n" -"format, which encapsulates raw compressed data and allows the interleav= ing of\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" "audio and video data. In addition to encapsulation and interleaving of= \n" "multiple data streams, ogg provides packet framing, error detection, an= d\n" "periodic timestamps for seeking." msgstr "" =20 -#: gnu/packages/xiph.scm:87 +#: gnu/packages/xiph.scm:92 msgid "Library implementing the vorbis audio format" msgstr "Biblioteko kiu realigas la a=C5=ADdformon vorbis" =20 -#: gnu/packages/xiph.scm:89 +#: gnu/packages/xiph.scm:94 msgid "" "The libvorbis library implements the ogg vorbis audio format,\n" "a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" @@ -1981,22 +11307,22 @@ msgid "" "128 kbps/channel." msgstr "" =20 -#: gnu/packages/xiph.scm:114 +#: gnu/packages/xiph.scm:119 msgid "Library implementing the Theora video format" msgstr "Biblioteko kiu realigas la videformon Theora" =20 -#: gnu/packages/xiph.scm:116 +#: gnu/packages/xiph.scm:121 msgid "" "The libtheora library implements the ogg theora video format,\n" "a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" "compressed video format." msgstr "" =20 -#: gnu/packages/xiph.scm:137 +#: gnu/packages/xiph.scm:142 msgid "Library for patent-free audio compression format" msgstr "Biblioteko por senpatenta sondensiga formo" =20 -#: gnu/packages/xiph.scm:139 +#: gnu/packages/xiph.scm:144 msgid "" "GNU Speex is a patent-free audio compression codec specially designed\n= " "for speech. It is well-adapted to internet applications, such as VoIP.= It\n" @@ -2004,11 +11330,11 @@ msgid "" "stereo encoding, and voice activity detection." msgstr "" =20 -#: gnu/packages/xiph.scm:167 +#: gnu/packages/xiph.scm:174 msgid "Cross platform audio library" msgstr "Plursistema son-biblioteko" =20 -#: gnu/packages/xiph.scm:169 +#: gnu/packages/xiph.scm:176 msgid "" "Libao is a cross-platform audio library that allows programs to\n" "output audio using a simple API on a wide variety of platforms.\n" @@ -2032,23 +11358,24 @@ msgid "" "OpenBSD's sndio." msgstr "" =20 -#: gnu/packages/xiph.scm:208 +#: gnu/packages/xiph.scm:215 msgid "Free lossless audio codec" msgstr "Libera senperda sona kodeko" =20 -#: gnu/packages/xiph.scm:210 +#: gnu/packages/xiph.scm:217 msgid "" -"FLAC stands for Free Lossless Audio Codec, an audio format that is loss= less,\n" +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" "meaning that audio is compressed in FLAC without any loss in quality." msgstr "" "FLAC signifas Libera Senperda Son-kodeko, kio signifas ke,\n" "sono densigita per FLAC ne havas perdon en =C4=9Dia kvalito." =20 -#: gnu/packages/xiph.scm:236 +#: gnu/packages/xiph.scm:243 msgid "Karaoke and text codec for embedding in ogg" msgstr "Karaokea kaj teksta kodeko por enkorpigi en ogg" =20 -#: gnu/packages/xiph.scm:238 +#: gnu/packages/xiph.scm:245 msgid "" "Kate is an overlay codec, originally designed for karaoke and text,\n" "that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" @@ -2063,11 +11390,11 @@ msgid "" "Kate stream." msgstr "" =20 -#: gnu/packages/xiph.scm:272 +#: gnu/packages/xiph.scm:279 msgid "Ogg vorbis tools" msgstr "Ilaro ogg vorbis" =20 -#: gnu/packages/xiph.scm:274 +#: gnu/packages/xiph.scm:281 msgid "" "Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" "general-purpose compressed audio format.\n" @@ -2080,32 +11407,66 @@ msgid "" " an ogg vorbis file." msgstr "" =20 -#: gnu/packages/xiph.scm:299 +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 msgid "Versatile audio codec" msgstr "Diversutila son-kodeko" =20 -#: gnu/packages/xiph.scm:301 +#: gnu/packages/xiph.scm:308 msgid "" "Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" -"is unmatched for interactive speech and music transmission over the Int= ernet,\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" "but is also intended for storage and streaming applications. It is\n" -"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = which\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" "incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." msgstr "" =20 -#: gnu/packages/xiph.scm:334 -msgid "" -"Command line utilities to encode, inspect, and decode .opus\n" -"files" +#: gnu/packages/xiph.scm:342 +#, fuzzy +msgid "Command line utilities to encode, inspect, and decode .opus files= " msgstr "" "Komandliniaj utila=C4=B5oj por enkodigi, inspekti, kaj dekodigi\n" "dosierojn .opus" =20 -#: gnu/packages/xiph.scm:336 +#: gnu/packages/xiph.scm:343 msgid "" "Opus is a royalty-free, highly versatile audio codec.\n" "Opus-tools provide command line utilities for creating, inspecting and\= n" -"decoding .opus files" +"decoding .opus files." +msgstr "" + +#: gnu/packages/xiph.scm:371 +msgid "" +"The opusfile library provides seeking, decode, and playback of Opus\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" +"windows systems." +msgstr "" + +#: gnu/packages/xiph.scm:401 +#, fuzzy +msgid "Streaming media server" +msgstr "Flu-redaktilo" + +#: gnu/packages/xiph.scm:402 +msgid "" +"Icecast is a streaming media server which currently supports\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" +"create an Internet radio station or a privately running jukebox and man= y\n" +"things in between." +msgstr "" + +#: gnu/packages/xiph.scm:430 +msgid "Audio streaming library for icecast encoders" +msgstr "" + +#: gnu/packages/xiph.scm:432 +msgid "" +"Libshout is a library for communicating with and sending data to an\n" +"icecast server. It handles the socket connection, the timing of the da= ta,\n" +"and prevents bad data from getting to the icecast server." msgstr "" =20 #: gnu/packages/zip.scm:57 @@ -2123,15 +11484,16 @@ msgid "" "directory structure can be packed into a ZIP archive with a single comm= and.\n" "\n" "Zip has one compression method (deflation) and can also store files wit= hout\n" -"compression. Zip automatically chooses the better of the two for each = file.\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" =20 -#: gnu/packages/zip.scm:102 +#: gnu/packages/zip.scm:113 msgid "Decompression and file extraction utility" msgstr "Utila=C4=B5o por maldensigi kaj malpakigi dosierojn" =20 -#: gnu/packages/zip.scm:104 +#: gnu/packages/zip.scm:115 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\= n" "also called \"zipfiles\".\n" @@ -2142,31 +11504,23 @@ msgid "" "recreates the stored directory structure by default." msgstr "" =20 -#: gnu/packages/zip.scm:138 +#: gnu/packages/zip.scm:149 msgid "Library for accessing zip files" msgstr "Biblioteko por aliri zip-dosierojn" =20 -#: gnu/packages/zip.scm:140 +#: gnu/packages/zip.scm:151 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "ZZipLib estas biblioteko bazita sur zlib por aliri zip-dosierojn= ." =20 -#: gnu/packages/zip.scm:158 +#: gnu/packages/zip.scm:169 msgid "Provides an interface to ZIP archive files" msgstr "Provizas interfacon por ar=C4=A5iv-dosierojn ZIP" =20 -#: gnu/packages/zip.scm:159 -msgid "" -"The Archive::Zip module allows a Perl program to create,\n" -"manipulate, read, and write Zip archive files." -msgstr "" -"La modulo Archive::Zip ebligas al Perl-programo krei,\n" -"manipuli, legi, kaj skribi ar=C4=A5iv-dosierojn ZIP." - -#: gnu/packages/zsh.scm:63 +#: gnu/packages/zsh.scm:71 msgid "Powerful shell for interactive use and scripting" msgstr "Potenca =C5=9Delo por interaga uzo kaj por skriptoj" =20 -#: gnu/packages/zsh.scm:64 +#: gnu/packages/zsh.scm:72 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -2175,14 +11529,8 @@ msgid "" "ksh, and tcsh." msgstr "" =20 -#~ msgid "Create charts and graphs in Guile" -#~ msgstr "Krei diagramojn kaj grafika=C4=B5ojn en Guile" - -#~ msgid "GNU C++ standard library (intermediate)" -#~ msgstr "GNU C++ norma biblioteko (intermeza)" - -#~ msgid "The linker wrapper" -#~ msgstr "La ligila =C4=89irka=C5=ADanto" +#~ msgid "Util-linux is a random collection of utilities for the Linux k= ernel." +#~ msgstr "Util-linux estas hazarda aro da utila=C4=B5oj por la Linuks-k= erno." =20 #~ msgid "Complete GCC tool chain for C/C++ development" #~ msgstr "Kompleta ilaro GCC por kodumado en C/C++" diff --git a/po/packages/fr.po b/po/packages/fr.po index 5c086c0..834bd48 100644 --- a/po/packages/fr.po +++ b/po/packages/fr.po @@ -2,11 +2,12 @@ # Copyright (C) 2014 Free Software Foundation, Inc. # This file is distributed under the same license as the guix package. # R=C3=A9my Chevalier , 2014. +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix-packages 0.8\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-11-10 15:37+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2014-12-20 22:00+0100\n" "Last-Translator: R=C3=A9my Chevalier \n" "Language-Team: French \n" @@ -15,1472 +16,11817 @@ msgstr "" "Content-Type: text/plain; charset=3DUTF-8\n" "Content-Transfer-Encoding: 8bit\n" =20 -#: gnu/packages/aspell.scm:42 +#: gnu/packages/abiword.scm:101 +msgid "Word processing program" +msgstr "" + +#. TRANSLATORS: Dear translator, We would like to inform you that packag= e +#. descriptions may occasionally include Texinfo markup. Texinfo markup +#. looks like "@code{rm -rf}", "@emph{important}", etc. When translatin= g, +#. please leave markup as is. +#: gnu/packages/abiword.scm:110 +msgid "" +"AbiWord is a word processing program. It is rapidly\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" +"your daily work, personal needs, or for just some good old typing fun." +msgstr "" + +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 msgid "Spell checker" msgstr "Correcteur orthographique" =20 -#: gnu/packages/aspell.scm:44 +#: gnu/packages/aspell.scm:55 msgid "" "Aspell is a spell-checker which can be used either as a library or as\n= " -"a standalone program. Notable features of Aspell include its full supp= ort of\n" +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" "documents written in the UTF-8 encoding and its ability to use multiple= \n" "dictionaries, including personal ones." msgstr "" "Aspell est un correcteur orthographique pouvant =C3=AAtre utilis=C3=A9 = comme une\n" -"biblioth=C3=A8que ou comme un programme. Aspell inclut notamment un sup= port complet\n" -"des documents encod=C3=A9s UTF-8 et la possibilit=C3=A9 d'utiliser plus= ieurs dictionnaires\n" +"biblioth=C3=A8que ou comme un programme. Aspell inclut notamment un sup= port " +"complet\n" +"des documents encod=C3=A9s UTF-8 et la possibilit=C3=A9 d'utiliser plus= ieurs " +"dictionnaires\n" "y compris personnels." =20 -#: gnu/packages/aspell.scm:84 +#: gnu/packages/aspell.scm:95 msgid "This package provides a dictionary for the GNU Aspell spell check= er." -msgstr "Ce paquet fournit un dictionnaire pour le correcteur orthographi= que Aspell" +msgstr "" +"Ce paquet fournit un dictionnaire pour le correcteur orthographique Asp= ell" =20 -#: gnu/packages/backup.scm:87 -msgid "Encrypted backup using rsync algorithm" -msgstr "Syst=C3=A8me de sauvegarde chiffr=C3=A9e utilisant l'algorithme = rsync" +#: gnu/packages/audio.scm:95 +msgid "Realtime modular synthesizer and effect processor" +msgstr "" =20 -#: gnu/packages/backup.scm:89 +#: gnu/packages/audio.scm:97 msgid "" -"Duplicity backs up directories by producing encrypted tar-format volume= s\n" -"and uploading them to a remote or local file server. Because duplicity= uses\n" -"librsync, the incremental archives are space efficient and only record = the\n" -"parts of files that have changed since the last backup. Because duplic= ity\n" -"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" -"spying and/or modification by the server." +"AlsaModularSynth is a digital implementation of a classical analog\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" +"e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" +"Filter) modules follow the convention of 1V / Octave." msgstr "" -"Duplicity sauvegarde des dossiers en cr=C3=A9ant des volumes chiffr=C3=A9= s au format\n" -"tar et en envoyant ceux-ci vers un serveur de fichier local ou distant.= Parce que\n" -"Duplicity utilise librsync, les archives incr=C3=A9mentales sont peu en= combrantes\n" -"et ne contiennent que les parties des fichiers qui ont =C3=A9t=C3=A9 mo= difi=C3=A9es depuis la\n" -"derni=C3=A8re sauvegarde. L'utilisation de GnuPG pour chiffrer ou signe= r ces archives\n" -"permet de pr=C3=A9venir tout rique d'espionnage ou d'alt=C3=A9ration pa= r le serveur." =20 -#: gnu/packages/backup.scm:123 -msgid "Simple incremental backup tool" -msgstr "Outil simple de sauvegarde incr=C3=A9mentale" +#: gnu/packages/audio.scm:134 +msgid "Library for audio labelling" +msgstr "" =20 -#: gnu/packages/backup.scm:125 +#: gnu/packages/audio.scm:136 msgid "" -"Hdup2 is a backup utilty, its aim is to make backup really simple. The= \n" -"backup scheduling is done by means of a cron job. It supports an\n" -"include/exclude mechanism, remote backups, encrypted backups and split\= n" -"backups (called chunks) to allow easy burning to CD/DVD." +"aubio is a tool designed for the extraction of annotations from audio\n= " +"signals. Its features include segmenting a sound file before each of i= ts\n" +"attacks, performing pitch detection, tapping the beat and producing MID= I\n" +"streams from live audio." msgstr "" -"Hdup2 est un outil de sauvegarde convivial. La planification des sauveg= ardes\n" -"s'effectue au moyen de t=C3=A2ches cron. Il supporte un m=C3=A9canisme\= n" -"d'inclusion et d'exclusion, les sauvegardes distantes, chiffr=C3=A9es o= u\n" -"morcel=C3=A9es (appell=C3=A9es chunks) permettant un gravure sur CD/DVD= ais=C3=A9e." =20 -#: gnu/packages/backup.scm:178 -msgid "Multi-format archive and compression library" -msgstr "Biblioth=C3=A8que de compression et d'archivage multi-format" +#: gnu/packages/audio.scm:228 +msgid "Digital audio workstation" +msgstr "" =20 -#: gnu/packages/backup.scm:180 +#: gnu/packages/audio.scm:230 msgid "" -"Libarchive provides a flexible interface for reading and writing\n" -"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" -"reading and writing archives compressed using various compression filte= rs such\n" -"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" -"serially iterate through the archive, writers serially add things to th= e\n" -"archive. In particular, note that there is currently no built-in suppo= rt for\n" -"random access nor for in-place modification." +"Ardour is a multi-channel digital audio workstation, allowing users to\= n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" +"engineers, musicians, soundtrack editors and composers." msgstr "" -"Libarchive fournit une interface flexible pour lire et =C3=A9crire\n" -"des archives dans des formats vari=C3=A9s tels que tar ou cpio. Libarch= ive supporte\n" -"aussi la lecture et l'=C3=A9criture d'archives compress=C3=A9es au moye= n de filtres divers\n" -"comme gzip ou bzip2. La biblioth=C3=A8que est intrins=C3=A8quement orie= nt=C3=A9e flux; des\n" -"lecteurs it=C3=A8rent sur l'archive alors que des r=C3=A9dacteurs ajout= ent des donn=C3=A9es =C3=A0\n" -"l'archive en continu. Notez qu'il n'existe pour l'instant aucun support= int=C3=A9gr=C3=A9\n" -"pour les acc=C3=A8s al=C3=A9atoires ou les modifications ponctuelles." =20 -#: gnu/packages/backup.scm:243 -msgid "Provide a list of files to backup" -msgstr "Fournit une liste des fichiers =C3=A0 sauvegarder" +#: gnu/packages/audio.scm:262 +msgid "Tonewheel organ synthesizer" +msgstr "" =20 -#: gnu/packages/backup.scm:245 +#: gnu/packages/audio.scm:264 msgid "" -"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" -"Rdup itself does not backup anything, it only print a list of absolute\= n" -"filenames to standard output. Auxiliary scripts are needed that act on= this\n" -"list and implement the backup strategy." +"AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" +"with drawbars, distortion and rotating speakers. The organ has three\n= " +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" +"bass section with five drawbars. A standalone JACK application and LV2= \n" +"plugins are provided." msgstr "" -"Rdup est un utilitaire inspir=C3=A9 par rsync et par la fa=C3=A7on dont= plan9 r=C3=A9alise\n" -"les sauvegardes. Rdup ne sauvegarde rien en tant que tel mais affiche u= ne\n" -"liste de fichiers sur la sortie standard. Des scripts auxiliaires utili= sant\n" -"cette liste et implantant la strat=C3=A9gie de sauvegarde sont n=C3=A9c= essaires." =20 -#: gnu/packages/backup.scm:275 -msgid "Tar-compatible archiver" -msgstr "Archiveur compatible avec le format tar" +#: gnu/packages/audio.scm:301 +msgid "Audio plug-in pack for LV2 and JACK environments" +msgstr "" =20 -#: gnu/packages/backup.scm:277 +#: gnu/packages/audio.scm:303 msgid "" -"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" -"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" -"compression, input and output serialisation, and tolerance to partial a= rchive\n" -"errors." +"Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" +"The suite contains lots of effects (delay, modulation, signal processin= g,\n" +"filters, equalizers, dynamics, distortion and mastering effects),\n" +"instruments (SF2 player, organ simulator and a monophonic synthesizer) = and\n" +"tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -"Btar est un archiveur compatible avec le format tar permettant la compr= ession\n" -"et le chiffrement arbitraires, la redondance, les sauvegardes diff=C3=A9= rentielles,\n" -"l'extraction index=C3=A9e, la compression multi-coeurs, la s=C3=A9riali= sation des entr=C3=A9es-\n" -"sorties et la tol=C3=A9rance aux erreurs d'archivage partielles." =20 -#: gnu/packages/backup.scm:305 -msgid "Local/remote mirroring+incremental backup" -msgstr "Sauvegarde mirroir/incr=C3=A9mentales, locales ou distantes" +#: gnu/packages/audio.scm:346 +msgid "Sound and music computing system" +msgstr "" =20 -#: gnu/packages/backup.scm:307 +#: gnu/packages/audio.scm:348 msgid "" -"Rdiff-backup backs up one directory to another, possibly over a network= .\n" -"The target directory ends up a copy of the source directory, but extra = reverse\n" -"diffs are stored in a special subdirectory of that target directory, so= you\n" -"can still recover files lost some time ago. The idea is to combine the= best\n" -"features of a mirror and an incremental backup. Rdiff-backup also pres= erves\n" -"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" -"modification times, extended attributes, acls, and resource forks. Als= o,\n" -"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" -"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive up\n" -"to a remote location, and only the differences will be transmitted. Fi= nally,\n" -"rdiff-backup is easy to use and settings have sensical defaults." +"Csound is a user-programmable and user-extensible sound processing\n" +"language and software synthesizer." msgstr "" -"Rdiff-backup sauvegarde un r=C3=A9pertoire vers un autre, =C3=A9ventuel= lement sur un\n" -"r=C3=A9seau. Le r=C3=A9pertoire cible devient une copie du r=C3=A9perto= ire source, mais le\n" -"contenu en trop est stock=C3=A9 dans un sous-r=C3=A9pertoire du r=C3=A9= pertoire cible de fa=C3=A7on\n" -"=C3=A0 ce que vous puissiez r=C3=A9cup=C3=A9rer les fichiers perdus. L'= id=C3=A9e est de combiner les\n" -"meilleures fonctionnalit=C3=A9s d'un mirroir et d'une sauvegarde incr=C3= =A9mentale.\n" -"Rdiff-backup pr=C3=A9serve les sous-r=C3=A9pertoires, liens mat=C3=A9ri= els, fichiers dev,\n" -"permissions, uid/gid des propri=C3=A9taires, dates de modification, att= ributs =C3=A9tendus,\n" -"acls et forks de ressources. Rdiff-backup peut aussi op=C3=A9rer d'une = mani=C3=A8re efficace\n" -"sur un pipe tout comme rsync. Vous pouvez ainsi utiliser rdiff-bacup et= ssh pour\n" -"sauvegarder de mani=C3=A8re s=C3=BBre un disque dur vers une machine di= stante, et seule la\n" -"diff=C3=A9rence sera transmise. Enfin, rdiff-backup est simple d'utilis= ation et la\n" -"configuration par d=C3=A9faut sera g=C3=A9n=C3=A9ralement suffisante." =20 -#: gnu/packages/base.scm:56 -msgid "Hello, GNU world: An example GNU package" -msgstr "Hello, GNU world: Un exemple de paquet GNU" +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 +msgid "C++ wrapper around the ALSA API" +msgstr "" =20 -#: gnu/packages/base.scm:58 +#: gnu/packages/audio.scm:393 msgid "" -"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" -"command-line arguments, multiple languages, and so on." +"clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" +"ALSA PCM devices." msgstr "" -"GNU Hello affiche le message \"Hello, world!\" puis se termine. Il sert= \n" -"d'exemple pour les pratiques de programmation GNU standard. Il supporte= \n" -"les arguments en ligne de commande, plusieurs langages, etc." =20 -#: gnu/packages/base.scm:76 -msgid "Print lines matching a pattern" -msgstr "Affiche les lignes correspondant =C3=A0 un pattern donn=C3=A9" +#: gnu/packages/audio.scm:428 +msgid "SoundFont synthesizer" +msgstr "" =20 -#: gnu/packages/base.scm:78 +#: gnu/packages/audio.scm:430 msgid "" -"grep is a tool for finding text inside files. Text is found by\n" -"matching a pattern provided by the user in one or many files. The patt= ern\n" -"may be provided as a basic or extended regular expression, or as fixed\= n" -"strings. By default, the matching text is simply printed to the screen= ,\n" -"however the output can be greatly customized to include, for example, l= ine\n" -"numbers. GNU grep offers many extensions over the standard utility,\n" -"including, for example, recursive directory searching." +"FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" +"device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" +"also play midifiles using a Soundfont." msgstr "" -"grep est un outil d=C3=A9di=C3=A9 =C3=A0 la recherche de texte dans des= fichiers. Un texte\n" -"peut =C3=AAtre trouv=C3=A9 dans un ou plusieurs fichiers =C3=A0 partir = d'un pattern fourni par l'utilisateur.\n" -"Le pattern peut =C3=AAtre fourni comme un expression r=C3=A9guli=C3=A8r= e basique ou =C3=A9tendue, ou comme\n" -"des chaines fixes. Par d=C3=A9faut, le texte trouv=C3=A9 est simplement= affich=C3=A9 =C3=A0 l'=C3=A9cran\n" -"mais il est possible de personnaliser la sortie pour inclure, par exemp= le, les\n" -"les num=C3=A9ros de ligne. GNU grep offre de nombreuses extensions, inc= luant par exemple\n" -"la recherche r=C3=A9cursive sur des r=C3=A9pertoires." =20 -#: gnu/packages/base.scm:100 -msgid "Stream editor" -msgstr "=C3=89diteur de flux" +#: gnu/packages/audio.scm:462 +msgid "MPEG-4 and MPEG-2 AAC decoder" +msgstr "" =20 -#: gnu/packages/base.scm:115 +#: gnu/packages/audio.scm:464 msgid "" -"Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" -"is often used for substituting text patterns in a stream. The GNU\n" -"implementation offers several extensions over the standard utility." +"FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" +"PS, and DAB+." msgstr "" -"Sed est un =C3=A9diteur de texte par flux non interactif. Il re=C3=A7oi= t un texte\n" -"depuis un fichier ou l'entr=C3=A9e standard et lui applique une s=C3=A9= rie de moficiation\n" -"puis affiche le r=C3=A9sultat sur la sortie. Il est souvent utilis=C3=A9= pour substituer\n" -"des morceaux de texte dans un flux. L'implantation GNU ajoute plusieurs= extensions\n" -"=C3=A0 l'utilitaire standard." =20 -#: gnu/packages/base.scm:135 -msgid "Managing tar archives" -msgstr "Gestion d'archives tar" +#: gnu/packages/audio.scm:493 +msgid "Signal processing language" +msgstr "" =20 -#: gnu/packages/base.scm:137 -msgid "" -"Tar provides the ability to create tar archives, as well as the\n" -"ability to extract, update or list files in an existing archive. It is= \n" -"useful for combining many files into one larger file, while maintaining= \n" -"directory structure and file information such as permissions and\n" -"creation/modification dates. GNU tar offers many extensions over the\n= " -"standard utility." +#: gnu/packages/audio.scm:495 +msgid "Faust is a programming language for realtime audio signal process= ing." msgstr "" -"Tar permet de cr=C3=A9er des archives tar ainsi que d'extraire, de mett= re =C3=A0 jour\n" -"et de lister les fichiers pr=C3=A9sents dans ces archives. Il est utile= pour combiner\n" -"de nombreux fichiers au sein d'un fichier plus grand tout en pr=C3=A9se= rvant\n" -"la structure des r=C3=A9pertoires et certaines informations comme\n" -"les permissions et les dates de cr=C3=A9ation/modification. GNU tar ajo= ute de\n" -"nombreuses extensions =C3=A0 l'utilaire standard." =20 -#: gnu/packages/base.scm:161 -msgid "Apply differences to originals, with optional backups" -msgstr "Applique les diff=C3=A9rences aux originaux, avec sauvegardes op= tionnelles" +#: gnu/packages/audio.scm:530 +msgid "GUS compatible patches for MIDI players" +msgstr "" =20 -#: gnu/packages/base.scm:163 +#: gnu/packages/audio.scm:532 msgid "" -"Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" -"files depending on the contents of the diff file. It accepts several\n= " -"different diff formats. It may also be used to revert previously appli= ed\n" -"differences." +"FreePats is a project to create a free and open set of GUS compatible\n= " +"patches that can be used with softsynths such as Timidity and WildMidi.= " msgstr "" -"Patch est une programme qui applique des modifications aux fichiers bas= =C3=A9es\n" -"sur les diff=C3=A9rences donn=C3=A9es par le programme \"diff\". Les ch= angements peuvent\n" -"=C3=AAtre appliqu=C3=A9s sur un ou plusieurs fichiers selon le contenu = du fichier diff. Il\n" -"accepte diff=C3=A9rents formats diff. Il peut aussi =C3=AAtre utilis=C3= =A9 pour annuler des\n" -"diff=C3=A9rences appliqu=C3=A9es ant=C3=A9rieurement." =20 -#: gnu/packages/base.scm:183 -msgid "Comparing and merging files" -msgstr "Comparaison et fusion des fichiers" +#: gnu/packages/audio.scm:585 +msgid "Virtual guitar amplifier" +msgstr "" =20 -#: gnu/packages/base.scm:185 +#: gnu/packages/audio.scm:586 msgid "" -"GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" -"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer. \n" -"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" -"interactive means to merge two files." +"Guitarix is a virtual guitar amplifier running JACK.\n" +"Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" +"routed separately and deliver a processed stereo-signal via JACK. You = may\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" +"from a simple noise gate to modulation effects like flanger, phaser or\= n" +"auto-wah." msgstr "" -"GNU Diffutils est un paquet contenant des outils pour trouver\n" -"des diff=C3=A9rences entre fichiers. La commande \"diff\" est utilis=C3= =A9e pour\n" -"d=C3=A9terminer les diff=C3=A9rences entre fichiers alors que \"cmp\" m= ontre les\n" -"num=C3=A9ros de lignes et d=C3=A9calages o=C3=B9 ils diff=C3=A8rent. \"= diff3\" permet de comparer\n" -"trois fichiers. Enfin, \"sdiff\" offre un moyen interactif de fusionner= deux fichiers." =20 -#: gnu/packages/base.scm:212 -msgid "Operating on files matching given criteria" -msgstr "Op=C3=A9ration sur les fichiers correspondant au crit=C3=A8re do= nn=C3=A9" +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" +msgstr "" =20 -#: gnu/packages/base.scm:214 +#: gnu/packages/audio.scm:634 msgid "" -"Findutils supplies the basic file directory searching utilities of the\= n" -"GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" -"used to apply commands with arbitrarily long arguments." +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." msgstr "" -"Findutils fournit les outils basiques de recherche de fichier du syst=C3= =A8me GNU.\n" -"Il consiste en deux utilitaires de recherche : \"find\" cherche r=C3=A9= cursivement les fichiers\n" -"correspondant =C3=A0 un crit=C3=A8re donn=C3=A9 dans un dossier et \"lo= cate\" liste les fichiers\n" -"pr=C3=A9sents dans une base de donn=C3=A9es =C3=A0 partir d'une requ=C3= =AAte. Deux outils auxiliaires\n" -"sont inclus : \"updatedb\" met =C3=A0 jour la base de donn=C3=A9es et \= "xargs\" peut =C3=AAtre utilis=C3=A9 \n" -"pour appliquer des commandes avec des arguments longs et arbitraires" =20 -#: gnu/packages/base.scm:264 -msgid "Core GNU utilities (file, text, shell)" -msgstr "Utilitaires GNU (fichier, texte, shell)" +#: gnu/packages/audio.scm:678 +msgid "LV2 convolution reverb" +msgstr "" =20 -#: gnu/packages/base.scm:266 +#: gnu/packages/audio.scm:680 msgid "" -"GNU Coreutils includes all of the basic command-line tools that are\n" -"expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" -"functionality beyond that which is outlined in the POSIX standard." +"IR is a low-latency, real-time, high performance signal convolver\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" +"2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -"GNU Coreutils inclut tous les outils basiques en ligne de commande\n" -"attendus dans un syst=C3=A8me POSIX. Ceux-ci fournissent les fonctions = basiques de manipulation\n" -"de fichiers, du shell et de textes d'un syst=C3=A8me GNU. Ils offrent p= our la plupart\n" -"des fonctionnalit=C3=A9s =C3=A9tendues au-del=C3=A0 de ce qui est d=C3=A9= fini dans le standard POSIX." =20 -#: gnu/packages/base.scm:300 -msgid "Remake files automatically" -msgstr "Recompiler les fichiers automatiquement" +#: gnu/packages/audio.scm:710 +msgid "JACK audio connection kit" +msgstr "" =20 -#: gnu/packages/base.scm:302 +#: gnu/packages/audio.scm:712 msgid "" -"Make is a program that is used to control the production of\n" -"executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" -"generated from its source. It has powerful dependency resolution and t= he\n" -"ability to determine when files have to be regenerated after their sour= ces\n" -"change. GNU make offers many powerful extensions over the standard uti= lity." +"JACK is a low-latency audio server. It can connect a number of\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" +"in that it has been designed from the ground up to be suitable for\n" +"professional audio work. This means that it focuses on two key areas:\= n" +"synchronous execution of all clients, and low latency operation." msgstr "" -"Make est un programme pouvant =C3=AAtre utilis=C3=A9 pour contr=C3=B4le= r la cr=C3=A9ation\n" -"d'ex=C3=A9cutables ou d'autres fichiers depuis leurs fichiers sources. = Le processus\n" -"est contr=C3=B4l=C3=A9 depuis un fichier Makefile dans lequel le d=C3=A9= veloppeur sp=C3=A9cifie\n" -"comment chaque fichier est g=C3=A9n=C3=A9r=C3=A9 depuis ses sources. Ce= t outil a un puissant syst=C3=A8me\n" -"de r=C3=A9solution des d=C3=A9pendances et peut d=C3=A9terminer quand l= es fichiers doivent =C3=AAtre\n" -"reg=C3=A9n=C3=A9r=C3=A9s. GNU make poss=C3=A8de beaucoup d'extensions e= n plus de\n" -"l'utilitaire standard." =20 -#: gnu/packages/base.scm:347 -msgid "Binary utilities: bfd gas gprof ld" -msgstr "Utilitaires binaires: bfd gas gprof ld" +#: gnu/packages/audio.scm:810 +msgid "Simple LV2 host for JACK" +msgstr "" =20 -#: gnu/packages/base.scm:349 +#: gnu/packages/audio.scm:812 msgid "" -"GNU Binutils is a collection of tools for working with binary files.\n" -"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" -"Other tools include programs to display binary profiling information, l= ist\n" -"the strings in a binary file, and utilities for working with archives. = The\n" -"\"bfd\" library for working with executable and object formats is also\= n" -"included." +"Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" +"plugins and exposes their ports as JACK ports, essentially making any L= V2\n" +"plugin function as a JACK application." msgstr "" -"GNU Binutils est une collection d'outils pour travailler avec les fichi= ers binaires.\n" -"Les plus notables sont peut-=C3=AAtre \"ld\", un =C3=A9diteur de liens,= et \"as\", un assembleur.\n" -"Les autres outils incluent des programmes pour afficher des information= s de profilage sur \n" -"les binaires, lister les chaines de caract=C3=A8res et des utilitaires = pour travailler avec\n" -"des archives. La biblioth=C3=A8que \"bfd\", permettant de travailler av= ec des ex=C3=A9cutables et des\n" -"des formats objet, est aussi incluse." =20 -#: gnu/packages/base.scm:491 -msgid "The GNU C Library" -msgstr "La biblioth=C3=A8que GNU C" +#: gnu/packages/audio.scm:855 +msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" +msgstr "" =20 -#: gnu/packages/base.scm:493 +#: gnu/packages/audio.scm:857 msgid "" -"Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" -"printf, exit...\n" -"\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" -"with the Linux kernel." +"LADSPA is a standard that allows software audio processors and effects\= n" +"to be plugged into a wide range of audio synthesis and recording packag= es." msgstr "" -"Tout syst=C3=A8me d'exploitation bas=C3=A9 sur Unix requiert une biblio= th=C3=A8que C:\n" -"la biblioth=C3=A8que qui d=C3=A9finit les \"appels syst=C3=A8me\" et au= tres fonctions basiques\n" -"telles que open, malloc, printf, exit, ... La biblioth=C3=A8que GNU C e= st utilis=C3=A9e comme\n" -"biblioth=C3=A8que C dans les syst=C3=A8mes GNU et la plupart des syst=C3= =A8mes bas=C3=A9s sur le noyau Linux." =20 -#: gnu/packages/base.scm:562 -msgid "Database of current and historical time zones" -msgstr "Base de donn=C3=A9es des fuseaux horaires courant et historiques= " +#: gnu/packages/audio.scm:893 +msgid "Audio application session manager" +msgstr "" =20 -#: gnu/packages/base.scm:563 +#: gnu/packages/audio.scm:895 msgid "" -"The Time Zone Database (often called tz or zoneinfo)\n" -"contains code and data that represent the history of local time for man= y\n" -"representative locations around the globe. It is updated periodically = to\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" -"and daylight-saving rules." +"LASH is a session management system for audio applications. It allows\= n" +"you to save and restore audio sessions consisting of multiple interconn= eced\n" +"applications, restoring program state (i.e. loaded patches) and the\n" +"connections between them." msgstr "" -"La base de donn=C3=A9es des fuseaux horaires (souvent appel=C3=A9e \"tz= \" pour \"zoneinfo\")\n" -"contient du code et des donn=C3=A9es repr=C3=A9sentant l'historique de = l'heure locale pour\n" -"de nombreux endroits repr=C3=A9sentatifs dans le monde. Elle est mise =C3= =A0 jour p=C3=A9riodiquement\n" -"pour refl=C3=A9ter les changements effectu=C3=A9s par les entit=C3=A9s = politiques aux limites de ces zones,\n" -"les d=C3=A9calages UTC et les changements d'heures." =20 -#: gnu/packages/databases.scm:83 -msgid "Berkeley database" -msgstr "Base de donn=C3=A9es Berkeley" +#: gnu/packages/audio.scm:916 +msgid "Bauer stereophonic-to-binaural DSP" +msgstr "" =20 -#: gnu/packages/databases.scm:85 +#: gnu/packages/audio.scm:918 msgid "" -"Berkeley DB is an embeddable database allowing developers the choice of= \n" -"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +"The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" +"for headphone prolonged listening to disable superstereo fatigue withou= t\n" +"essential distortions." msgstr "" -"Berkeley DB est une base de donn=C3=A9es embarqu=C3=A9e proposant aux d= =C3=A9veloppeurs\n" -"le choix de SQL, cl=C3=A9/valeur, XML/XQuery ou Java Object Storage pou= r leur\n" -"mod=C3=A8le de donn=C3=A9es." =20 -#: gnu/packages/databases.scm:143 -msgid "Fast, easy to use, and popular database" -msgstr "Base de donn=C3=A9es rapide, facile d'utilisation et populaire" +#: gnu/packages/audio.scm:943 +#, fuzzy +msgid "Implementation of the Open Sound Control protocol" +msgstr "Implantation de Scheme et d'autres langages associ=C3=A9s" =20 -#: gnu/packages/databases.scm:145 +#: gnu/packages/audio.scm:945 msgid "" -"MySQL is a fast, reliable, and easy to use relational database\n" -"management system that supports the standardized Structured Query\n" -"Language." +"liblo is a lightweight library that provides an easy to use\n" +"implementation of the Open Sound Control (OSC) protocol." msgstr "" -"MySQL est un syst=C3=A8me de gestion de base de donn=C3=A9es relationne= lle rapide,\n" -" fiable et facile d'emploi, supportant le SQL standardis=C3=A9." =20 -#: gnu/packages/databases.scm:166 -msgid "Powerful object-relational database system" -msgstr "Syst=C3=A8me de base de donn=C3=A9es relationnelle puissant" +#: gnu/packages/audio.scm:982 +msgid "Library to simplify use of LV2 plugins in applications" +msgstr "" =20 -#: gnu/packages/databases.scm:168 +#: gnu/packages/audio.scm:984 msgid "" -"PostgreSQL is a powerful object-relational database system. It is full= y\n" -"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, and\n" -"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" -"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, and\n" -"TIMESTAMP. It also supports storage of binary large objects, including= \n" -"pictures, sounds, or video." +"Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" +"for applications. Lilv is the successor to SLV2, rewritten to be\n" +"significantly faster and have minimal dependencies." msgstr "" -"PostgreSQL est un syt=C3=A8me de base de donn=C3=A9es relationnelle pui= ssant. Totalement\n" -"conforme =C3=A0 ACID, il poss=C3=A8de un support complet des cl=C3=A9s = =C3=A9trang=C3=A8res, jointures, vues, \n" -"triggers, et proc=C3=A9dures stock=C3=A9es (dans plusieurs langages). I= l inclut la plupart des\n" -"types de donn=C3=A9es SQL:2008, y compris INTEGER, NUMERIC, BOOLEAN, CH= AR, VARCHAR, DATE, \n" -"INTERVAL et TIMESTAMP. Il supporte aussi le stockage binaire de grands = objets, dont\n" -"les images, le son et la vid=C3=A9o." =20 -#: gnu/packages/databases.scm:203 -msgid "Manipulate plain text files as databases" -msgstr "Manipule les fichiers texte comme des bases de donn=C3=A9es" +#: gnu/packages/audio.scm:1011 +msgid "LV2 audio plugin specification" +msgstr "" =20 -#: gnu/packages/databases.scm:205 +#: gnu/packages/audio.scm:1013 msgid "" -"GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" -"databases created with Recutils carry all of the expected features such= as\n" -"unique fields, primary keys, time stamps and more. Many different fiel= d\n" -"types are supported, as is encryption." +"LV2 is an open specification for audio plugins and host applications.\n= " +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" +"add functionality to support the needs of increasingly powerful audio\n= " +"software." msgstr "" -"GNU Recutils est un ensemble d'outils et de biblioth=C3=A8ques permetta= nt de\n" -"cr=C3=A9er et de manipuler des bases de donn=C3=A9es textuelles. Bien q= ue textuelles,\n" -"les bases de donn=C3=A9es cr=C3=A9=C3=A9es avec Recutils fournissent to= utes les fonctionnalit=C3=A9s\n" -"attendues d'une base de donn=C3=A9es, telles que les champs uniques, le= s cl=C3=A9s primaires,\n" -"les timestamps et plus encore. De nombreux types de champs sont support= =C3=A9s, tout comme\n" -"le chiffrement." =20 -#: gnu/packages/databases.scm:243 -msgid "The SQLite database management system" -msgstr "Le syst=C3=A8me de gestion de bases de donn=C3=A9es SQLite" +#: gnu/packages/audio.scm:1048 +msgid "LV2 port of the mda Piano plugin" +msgstr "" =20 -#: gnu/packages/databases.scm:245 -msgid "" -"SQLite is a software library that implements a self-contained, serverle= ss,\n" -"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" -"widely deployed SQL database engine in the world. The source code for = SQLite\n" -"is in the public domain." -msgstr "SQLite est une biblioth=C3=A8que logicielle implantant" +#: gnu/packages/audio.scm:1049 +msgid "An LV2 port of the mda Piano VSTi." +msgstr "" =20 -#: gnu/packages/databases.scm:280 -msgid "Trivial database" -msgstr "Base de donn=C3=A9es triviale" +#: gnu/packages/audio.scm:1062 +msgid "LV2 port of the mda EPiano plugin" +msgstr "" =20 -#: gnu/packages/databases.scm:282 -msgid "" -"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" -"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" -"locking internally to keep writers from trampling on each other. TDB i= s also\n" -"extremely small." +#: gnu/packages/audio.scm:1063 +msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -"TDB est une base de donn=C3=A9es triviale. Elle se rapproche conceptuel= lement\n" -"de GDBM et de la base de donn=C3=A9es de BSD, si ce n'est qu'elle autor= ise plusieurs\n" -"acc=C3=A8s simultan=C3=A9s en =C3=A9criture et utilise un verrouillage = interne pour =C3=A9viter les\n" -"empi=C3=A9tements. Notez que TDB est aussi tr=C3=A8s l=C3=A9ger." =20 -#: gnu/packages/databases.scm:301 -msgid "Database independent interface for Perl" -msgstr "Interface de base de donn=C3=A9es pour Perl" +#: gnu/packages/audio.scm:1101 +msgid "C++ libraries for LV2 plugins" +msgstr "" =20 -#: gnu/packages/databases.scm:302 -msgid "This package provides an database interface for Perl." -msgstr "Ce paquet fournit une interface de base de donn=C3=A9es pour Per= l." +#: gnu/packages/audio.scm:1103 +msgid "" +"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " +"extensions into easy to use C++ classes. It is the successor of\n" +"lv2-c++-tools." +msgstr "" =20 -#: gnu/packages/databases.scm:321 -msgid "SQlite interface for Perl" -msgstr "Interface SQLite pour Perl" +#: gnu/packages/audio.scm:1144 +msgid "3D audio API" +msgstr "" =20 -#: gnu/packages/databases.scm:322 +#: gnu/packages/audio.scm:1146 msgid "" -"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" -"the entire thing in the distribution. So in order to get a fast transa= ction\n" -"capable RDBMS working for your Perl project you simply have to install = this\n" -"module, and nothing else." +"OpenAL provides capabilities for playing audio in a virtual 3D\n" +"environment. Distance attenuation, doppler shift, and directional soun= d\n" +"emitters are among the features handled by the API. More advanced effe= cts,\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" +"buffers, and audio capture." msgstr "" -"DBD::SQLite est driver DBI pour SQLite =C3=A9crit en Perl. Il suffit d'= installer ce\n" -"module dans votre projet Perl pour obtenir une" =20 -#: gnu/packages/databases.scm:342 -msgid "Data source abstraction library" -msgstr "Biblioth=C3=A8que d'abstraction de source de donn=C3=A9es" +#: gnu/packages/audio.scm:1180 +msgid "Modular patch bay for audio and MIDI systems" +msgstr "" =20 -#: gnu/packages/databases.scm:343 +#: gnu/packages/audio.scm:1182 msgid "" -"Unixodbc is a library providing an API with which to access\n" -"data sources. Data sources include SQL Servers and any software with a= n ODBC\n" -"Driver." +"Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" +"and ALSA." msgstr "" -"Unixodbc est une biblioth=C3=A8que fournissant une API permettant\n" -"d'acc=C3=A9der =C3=A0 des sources de donn=C3=A9es. Ces sources incluent= des serveurs SQL\n" -"o=C3=B9 tout logiciel avec un driver ODBC." =20 -#: gnu/packages/gcc.scm:254 -msgid "GNU Compiler Collection" -msgstr "GNU Compiler Collection" +#: gnu/packages/audio.scm:1207 +msgid "Real-time audio utility library" +msgstr "" =20 -#: gnu/packages/gcc.scm:256 +#: gnu/packages/audio.scm:1209 msgid "" -"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" -"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, and\n" -"Go. It also includes runtime support libraries for these languages." +"Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" +"aimed at audio/musical applications." msgstr "" -"GCC est la collection de compilateurs GNU. Il fournit des compilateurs\= n" -"pour plusieurs langages, dont C, C++, Objective-C, Fortran, Java, Ada,\= n" -"et Go. Il inclut =C3=A9galement le support de biblioth=C3=A8ques pour c= es langages." =20 -#: gnu/packages/gcc.scm:340 -msgid "Manipulating sets and relations of integer points bounded by line= ar constraints" +#: gnu/packages/audio.scm:1235 +msgid "Audio time-stretching and pitch-shifting library" msgstr "" -"Manipulation des ensembles et relations d'entiers li=C3=A9s par des\n" -"contraintes lin=C3=A9aires." =20 -#: gnu/packages/gcc.scm:343 +#: gnu/packages/audio.scm:1237 msgid "" -"isl is a library for manipulating sets and relations of integer points\= n" -"bounded by linear constraints. Supported operations on sets include\n" -"intersection, union, set difference, emptiness check, convex hull, (int= eger)\n" -"affine hull, integer projection, computing the lexicographic minimum us= ing\n" -"parametric integer programming, coalescing and parametric vertex\n" -"enumeration. It also includes an ILP solver based on generalized basis= \n" -"reduction, transitive closures on maps (which may encode infinite graph= s),\n" -"dependence analysis and bounds on piecewise step-polynomials." +"Rubber Band is a library and utility program that permits changing the\= n" +"tempo and pitch of an audio recording independently of one another." msgstr "" =20 -#: gnu/packages/gcc.scm:375 -msgid "Library to generate code for scanning Z-polyhedra" +#: gnu/packages/audio.scm:1285 +msgid "Cross-platform MIDI library for C++" msgstr "" =20 -#: gnu/packages/gcc.scm:377 +#: gnu/packages/audio.scm:1287 msgid "" -"CLooG is a free software library to generate code for scanning\n" -"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" -"reaches each integral point of one or more parameterized polyhedra.\n" -"CLooG has been originally written to solve the code generation problem\= n" -"for optimizing compilers based on the polytope model. Nevertheless it\= n" -"is used now in various area e.g., to build control automata for\n" -"high-level synthesis or to find the best polynomial approximation of a\= n" -"function. CLooG may help in any situation where scanning polyhedra\n" -"matters. While the user has full control on generated code quality,\n" -"CLooG is designed to avoid control overhead and to produce a very\n" -"effective code." -msgstr "CLooG est biblioth=C3=A8que logiciel libre permettant de g=C3=A9= n=C3=A9rer du code" +"RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " +"classes) that provide a common cross-platform API for realtime MIDI\n" +"input/output." +msgstr "" =20 -#: gnu/packages/gettext.scm:74 -msgid "Tools and documentation for translation" -msgstr "Outils et documentation pour la traduction" +#: gnu/packages/audio.scm:1313 +msgid "Library for serialising LV2 atoms to/from RDF" +msgstr "" + +#: gnu/packages/audio.scm:1315 +msgid "" +"Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" +"the Turtle syntax." +msgstr "" + +#: gnu/packages/audio.scm:1340 +msgid "Library for loading and wrapping LV2 plugin UIs" +msgstr "" + +#: gnu/packages/audio.scm:1342 +msgid "" +"Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" +"\n" +"Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" +"toolkit. The API is designed such that hosts do not need to explicitly= \n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" +"that toolkit will work in all hosts that use Suil automatically.\n" +"\n" +"Suil currently supports every combination of Gtk 2, Qt 4, and X11." +msgstr "" + +#: gnu/packages/audio.scm:1399 +msgid "Software synthesizer for playing MIDI files" +msgstr "" + +#: gnu/packages/audio.scm:1401 +msgid "" +"TiMidity++ is a software synthesizer. It can play MIDI files by\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" +"disks as various audio file formats." +msgstr "" + +#: gnu/packages/audio.scm:1440 +msgid "Modular and extensible audio processing system" +msgstr "" + +#: gnu/packages/audio.scm:1442 +msgid "" +"Vamp is an audio processing plugin system for plugins that extract\n" +"descriptive information from audio data =E2=80=94 typically referred to= as audio\n" +"analysis plugins or audio feature extraction plugins." +msgstr "" + +#: gnu/packages/audio.scm:1481 +msgid "Library for time stretching and pitch scaling of audio" +msgstr "" + +#: gnu/packages/audio.scm:1483 +msgid "" +"SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" +"stretching and pitch scaling of audio. This package contains the libra= ry." +msgstr "" + +#: gnu/packages/audio.scm:1506 +msgid "Hybrid lossless audio codec" +msgstr "" + +#: gnu/packages/audio.scm:1508 +msgid "" +"WavPack is an audio compression format with lossless, lossy and hybrid\= n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" +"encode and decode wavpack files." +msgstr "" =20 -#: gnu/packages/gettext.scm:76 +#: gnu/packages/audio.scm:1527 +msgid "Mod file playing library" +msgstr "" + +#: gnu/packages/audio.scm:1529 +msgid "" +"Libmodplug renders mod music files as raw audio data, for playing or\n" +"conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" +"surround and reverb." +msgstr "" + +#: gnu/packages/audio.scm:1548 +msgid "Module player library" +msgstr "" + +#: gnu/packages/audio.scm:1550 +msgid "" +"Libxmp is a library that renders module files to PCM data. It supports= \n" +"over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" +"Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " +msgstr "" + +#: gnu/packages/audio.scm:1573 +msgid "Extended module player" +msgstr "" + +#: gnu/packages/audio.scm:1575 +msgid "" +"Xmp is a portable module player that plays over 90 mainstream and\n" +"obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" +"Tracker 3 S3M and Impulse Tracker IT files." +msgstr "" + +#: gnu/packages/audio.scm:1607 +msgid "Audio processing library for changing tempo, pitch and playback r= ate" +msgstr "" + +#: gnu/packages/audio.scm:1609 +msgid "" +"SoundTouch is an audio processing library for changing the tempo, pitch= \n" +"and playback rates of audio streams or audio files. It is intended for= \n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" +"control functionality, or just for playing around with the sound effect= s." +msgstr "" + +#: gnu/packages/audio.scm:1646 +msgid "Sound processing utility" +msgstr "" + +#: gnu/packages/audio.scm:1648 +msgid "" +"SoX (Sound eXchange) is a command line utility that can convert\n" +"various formats of computer audio files to other formats. It can also\= n" +"apply various effects to these sound files, and, as an added bonus, SoX= \n" +"can play and record audio files." +msgstr "" + +#: gnu/packages/audio.scm:1671 +msgid "One-dimensional sample-rate conversion library" +msgstr "" + +#: gnu/packages/audio.scm:1673 +msgid "" +"The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" +"conversion. It may be used, for example, to resample PCM-encoded audio= ." +msgstr "" + +#: gnu/packages/audio.scm:1695 +msgid "MPEG Audio Layer 2 (MP2) encoder" +msgstr "" + +#: gnu/packages/audio.scm:1697 +msgid "" +"TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" +"tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" +"portions of LAME." +msgstr "" + +#: gnu/packages/audio.scm:1737 +msgid "Audio I/O library" +msgstr "" + +#: gnu/packages/audio.scm:1739 +msgid "" +"PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" +"interface." +msgstr "" + +#: gnu/packages/audio.scm:1762 +msgid "Graphical user interface for FluidSynth" +msgstr "" + +#: gnu/packages/audio.scm:1764 +msgid "" +"Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" +"synthesizer written in C++." +msgstr "" + +#: gnu/packages/audio.scm:1802 +msgid "Networked audio system" +msgstr "" + +#: gnu/packages/audio.scm:1804 +msgid "" +"RSound allows you to send audio from an application and transfer it\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" +"with a much different focus than most other audio daemons." +msgstr "" + +#: gnu/packages/audio.scm:1835 +msgid "JACK audio frequency analyzer and display" +msgstr "" + +#: gnu/packages/audio.scm:1837 +msgid "" +"XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" +"result." +msgstr "" + +#: gnu/packages/audio.scm:1883 +msgid "Fast, partitioned convolution engine library" +msgstr "" + +#: gnu/packages/audio.scm:1885 +msgid "" +"Zita convolver is a C++ library providing a real-time convolution\n" +"engine." +msgstr "" + +#: gnu/packages/audio.scm:1930 #, fuzzy -#| msgid "" -#| "GNU Gettext is a package providing a framework for translating the\n= " -#| "textual output of programs into multiple languages. It provides tran= slators\n" -#| "with the means to create message catalogs, as well as an Emacs mode = to work\n" -#| "with them, and a runtime library to load translated messages from th= e\n" -#| "catalogs. Nearly all GNU packages use Gettext." +msgid "C++ library for resampling audio signals" +msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" + +#: gnu/packages/audio.scm:1932 msgid "" -"GNU Gettext is a package providing a framework for translating the\n" -"textual output of programs into multiple languages. It provides transl= ators\n" -"with the means to create message catalogs, as well as an Emacs mode to = work\n" -"with them, and a runtime library to load translated messages from the\n= " -"catalogs. Nearly all GNU packages use Gettext." +"Libzita-resampler is a C++ library for resampling audio signals. It is= \n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" +"provide high-quality sample rate conversion." msgstr "" -"GNU Gettext est un paquet fournissant un framework pour la traduction d= e\n" -"sorties textuelles de programmes vers de nombreux langages. Il fournit\= n" -"des traducteur dans le but de cr=C3=A9er des catalogues de messages, ai= nsi qu'un\n" -"mode Emacs pour travailler avec ceux-ci, et une biblioth=C3=A8que pour = charger lesmessages depuis les catalogues. Presque tous les paquets GNU u= tilisent Gettext." =20 -#: gnu/packages/guile.scm:100 gnu/packages/guile.scm:163 -msgid "Scheme implementation intended especially for extensions" -msgstr "Implantation de Scheme sp=C3=A9cialement destin=C3=A9e aux exten= sions" +#: gnu/packages/audio.scm:1978 +msgid "" +"Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" +"access to ALSA PCM devices, taking care of the many functions required = to\n" +"open, initialise and use a hw: device in mmap mode, and providing float= ing\n" +"point audio data." +msgstr "" + +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" =20 -#: gnu/packages/guile.scm:102 gnu/packages/guile.scm:165 +#: gnu/packages/audio.scm:2010 msgid "" -"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" -"official extension language of the GNU system. It is an implementation= of\n" -"the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" -"without requiring the source code to be rewritten." +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." msgstr "" -"Guile (GNU Ubiquitous Intelligent Langage for Extensions) est le langag= e\n" -"d'extension officiel du syst=C3=A8me GNU. Il s'agit d'une implantation = du langage\n" -"Scheme qui peut =C3=AAtre facilement incluse dans d'autres applications= pour faciliter\n" -"l'ajout de fonctionnalit=C3=A9s sans avoir =C3=A0 r=C3=A9=C3=A9crire le= code source." =20 -#: gnu/packages/guile.scm:208 -msgid "Framework for building readers for GNU Guile" -msgstr "Framework pour la construction de lecteurs GNU Guile" +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" =20 -#: gnu/packages/guile.scm:210 +#: gnu/packages/audio.scm:2030 msgid "" -"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" -"\n" -"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wr= itten,\n" -"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" -"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" -"document syntax.\n" -"\n" -"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" -"hopefully more powerful and flexible (for instance, one may instantiate= as\n" -"many readers as needed)." +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 +msgid "Encrypted backup using rsync algorithm" +msgstr "Syst=C3=A8me de sauvegarde chiffr=C3=A9e utilisant l'algorithme = rsync" + +#: gnu/packages/backup.scm:94 +msgid "" +"Duplicity backs up directories by producing encrypted tar-format volume= s\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" +"librsync, the incremental archives are space efficient and only record = the\n" +"parts of files that have changed since the last backup. Because duplic= ity\n" +"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" +"spying and/or modification by the server." +msgstr "" +"Duplicity sauvegarde des dossiers en cr=C3=A9ant des volumes chiffr=C3=A9= s au format\n" +"tar et en envoyant ceux-ci vers un serveur de fichier local ou distant.= " +"Parce que\n" +"Duplicity utilise librsync, les archives incr=C3=A9mentales sont peu " +"encombrantes\n" +"et ne contiennent que les parties des fichiers qui ont =C3=A9t=C3=A9 mo= difi=C3=A9es depuis " +"la\n" +"derni=C3=A8re sauvegarde. L'utilisation de GnuPG pour chiffrer ou signe= r ces " +"archives\n" +"permet de pr=C3=A9venir tout rique d'espionnage ou d'alt=C3=A9ration pa= r le serveur." + +#: gnu/packages/backup.scm:128 +msgid "Simple incremental backup tool" +msgstr "Outil simple de sauvegarde incr=C3=A9mentale" + +#: gnu/packages/backup.scm:130 +#, fuzzy +msgid "" +"Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" +"backup scheduling is done by means of a cron job. It supports an\n" +"include/exclude mechanism, remote backups, encrypted backups and split\= n" +"backups (called chunks) to allow easy burning to CD/DVD." +msgstr "" +"Hdup2 est un outil de sauvegarde convivial. La planification des " +"sauvegardes\n" +"s'effectue au moyen de t=C3=A2ches cron. Il supporte un m=C3=A9canisme\= n" +"d'inclusion et d'exclusion, les sauvegardes distantes, chiffr=C3=A9es o= u\n" +"morcel=C3=A9es (appell=C3=A9es chunks) permettant un gravure sur CD/DVD= ais=C3=A9e." + +#: gnu/packages/backup.scm:185 +msgid "Multi-format archive and compression library" +msgstr "Biblioth=C3=A8que de compression et d'archivage multi-format" + +#: gnu/packages/backup.scm:187 +msgid "" +"Libarchive provides a flexible interface for reading and writing\n" +"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" +"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" +"serially iterate through the archive, writers serially add things to th= e\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" +"random access nor for in-place modification." +msgstr "" +"Libarchive fournit une interface flexible pour lire et =C3=A9crire\n" +"des archives dans des formats vari=C3=A9s tels que tar ou cpio. Libarch= ive " +"supporte\n" +"aussi la lecture et l'=C3=A9criture d'archives compress=C3=A9es au moye= n de filtres " +"divers\n" +"comme gzip ou bzip2. La biblioth=C3=A8que est intrins=C3=A8quement orie= nt=C3=A9e flux; des\n" +"lecteurs it=C3=A8rent sur l'archive alors que des r=C3=A9dacteurs ajout= ent des donn=C3=A9es " +"=C3=A0\n" +"l'archive en continu. Notez qu'il n'existe pour l'instant aucun support= " +"int=C3=A9gr=C3=A9\n" +"pour les acc=C3=A8s al=C3=A9atoires ou les modifications ponctuelles." + +#: gnu/packages/backup.scm:250 +msgid "Provide a list of files to backup" +msgstr "Fournit une liste des fichiers =C3=A0 sauvegarder" + +#: gnu/packages/backup.scm:252 +#, fuzzy +msgid "" +"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" +"Rdup itself does not backup anything, it only print a list of absolute\= n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" +"list and implement the backup strategy." +msgstr "" +"Rdup est un utilitaire inspir=C3=A9 par rsync et par la fa=C3=A7on dont= plan9 r=C3=A9alise\n" +"les sauvegardes. Rdup ne sauvegarde rien en tant que tel mais affiche u= ne\n" +"liste de fichiers sur la sortie standard. Des scripts auxiliaires utili= sant\n" +"cette liste et implantant la strat=C3=A9gie de sauvegarde sont n=C3=A9c= essaires." + +#: gnu/packages/backup.scm:282 +msgid "Tar-compatible archiver" +msgstr "Archiveur compatible avec le format tar" + +#: gnu/packages/backup.scm:284 +msgid "" +"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" +"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" +"errors." +msgstr "" +"Btar est un archiveur compatible avec le format tar permettant la " +"compression\n" +"et le chiffrement arbitraires, la redondance, les sauvegardes " +"diff=C3=A9rentielles,\n" +"l'extraction index=C3=A9e, la compression multi-coeurs, la s=C3=A9riali= sation des " +"entr=C3=A9es-\n" +"sorties et la tol=C3=A9rance aux erreurs d'archivage partielles." + +#: gnu/packages/backup.scm:312 +msgid "Local/remote mirroring+incremental backup" +msgstr "Sauvegarde mirroir/incr=C3=A9mentales, locales ou distantes" + +#: gnu/packages/backup.scm:314 +#, fuzzy +msgid "" +"Rdiff-backup backs up one directory to another, possibly over a network= .\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" +"diffs are stored in a special subdirectory of that target directory, so= you\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" +"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" +"modification times, extended attributes, acls, and resource forks. Als= o,\n" +"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" +"rdiff-backup is easy to use and settings have sensible defaults." +msgstr "" +"Rdiff-backup sauvegarde un r=C3=A9pertoire vers un autre, =C3=A9ventuel= lement sur un\n" +"r=C3=A9seau. Le r=C3=A9pertoire cible devient une copie du r=C3=A9perto= ire source, mais le\n" +"contenu en trop est stock=C3=A9 dans un sous-r=C3=A9pertoire du r=C3=A9= pertoire cible de " +"fa=C3=A7on\n" +"=C3=A0 ce que vous puissiez r=C3=A9cup=C3=A9rer les fichiers perdus. L'= id=C3=A9e est de combiner " +"les\n" +"meilleures fonctionnalit=C3=A9s d'un mirroir et d'une sauvegarde incr=C3= =A9mentale.\n" +"Rdiff-backup pr=C3=A9serve les sous-r=C3=A9pertoires, liens mat=C3=A9ri= els, fichiers dev,\n" +"permissions, uid/gid des propri=C3=A9taires, dates de modification, att= ributs " +"=C3=A9tendus,\n" +"acls et forks de ressources. Rdiff-backup peut aussi op=C3=A9rer d'une = mani=C3=A8re " +"efficace\n" +"sur un pipe tout comme rsync. Vous pouvez ainsi utiliser rdiff-bacup et= ssh " +"pour\n" +"sauvegarder de mani=C3=A8re s=C3=BBre un disque dur vers une machine di= stante, et " +"seule la\n" +"diff=C3=A9rence sera transmise. Enfin, rdiff-backup est simple d'utilis= ation et " +"la\n" +"configuration par d=C3=A9faut sera g=C3=A9n=C3=A9ralement suffisante." + +#: gnu/packages/backup.scm:353 +msgid "Deduplicating backup program" +msgstr "" + +#: gnu/packages/backup.scm:354 +msgid "" +"Attic is a deduplicating backup program. The main goal of\n" +"Attic is to provide an efficient and secure way to backup data. The da= ta\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" +"changes are stored." +msgstr "" + +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 +msgid "Hello, GNU world: An example GNU package" +msgstr "Hello, GNU world: Un exemple de paquet GNU" + +#: gnu/packages/base.scm:68 +msgid "" +"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" +"command-line arguments, multiple languages, and so on." +msgstr "" +"GNU Hello affiche le message \"Hello, world!\" puis se termine. Il sert= \n" +"d'exemple pour les pratiques de programmation GNU standard. Il supporte= \n" +"les arguments en ligne de commande, plusieurs langages, etc." + +#: gnu/packages/base.scm:89 +msgid "Print lines matching a pattern" +msgstr "Affiche les lignes correspondant =C3=A0 un pattern donn=C3=A9" + +#: gnu/packages/base.scm:91 +msgid "" +"grep is a tool for finding text inside files. Text is found by\n" +"matching a pattern provided by the user in one or many files. The patt= ern\n" +"may be provided as a basic or extended regular expression, or as fixed\= n" +"strings. By default, the matching text is simply printed to the screen= ,\n" +"however the output can be greatly customized to include, for example, l= ine\n" +"numbers. GNU grep offers many extensions over the standard utility,\n" +"including, for example, recursive directory searching." +msgstr "" +"grep est un outil d=C3=A9di=C3=A9 =C3=A0 la recherche de texte dans des= fichiers. Un texte\n" +"peut =C3=AAtre trouv=C3=A9 dans un ou plusieurs fichiers =C3=A0 partir = d'un pattern fourni " +"par l'utilisateur.\n" +"Le pattern peut =C3=AAtre fourni comme un expression r=C3=A9guli=C3=A8r= e basique ou " +"=C3=A9tendue, ou comme\n" +"des chaines fixes. Par d=C3=A9faut, le texte trouv=C3=A9 est simplement= affich=C3=A9 =C3=A0 " +"l'=C3=A9cran\n" +"mais il est possible de personnaliser la sortie pour inclure, par exemp= le, " +"les\n" +"les num=C3=A9ros de ligne. GNU grep offre de nombreuses extensions, inc= luant par " +"exemple\n" +"la recherche r=C3=A9cursive sur des r=C3=A9pertoires." + +#: gnu/packages/base.scm:114 +msgid "Stream editor" +msgstr "=C3=89diteur de flux" + +#: gnu/packages/base.scm:129 +msgid "" +"Sed is a non-interactive, text stream editor. It receives a text\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" +"is often used for substituting text patterns in a stream. The GNU\n" +"implementation offers several extensions over the standard utility." +msgstr "" +"Sed est un =C3=A9diteur de texte par flux non interactif. Il re=C3=A7oi= t un texte\n" +"depuis un fichier ou l'entr=C3=A9e standard et lui applique une s=C3=A9= rie de " +"moficiation\n" +"puis affiche le r=C3=A9sultat sur la sortie. Il est souvent utilis=C3=A9= pour " +"substituer\n" +"des morceaux de texte dans un flux. L'implantation GNU ajoute plusieurs= " +"extensions\n" +"=C3=A0 l'utilitaire standard." + +#: gnu/packages/base.scm:152 +msgid "Managing tar archives" +msgstr "Gestion d'archives tar" + +#: gnu/packages/base.scm:154 +msgid "" +"Tar provides the ability to create tar archives, as well as the\n" +"ability to extract, update or list files in an existing archive. It is= \n" +"useful for combining many files into one larger file, while maintaining= \n" +"directory structure and file information such as permissions and\n" +"creation/modification dates. GNU tar offers many extensions over the\n= " +"standard utility." +msgstr "" +"Tar permet de cr=C3=A9er des archives tar ainsi que d'extraire, de mett= re =C3=A0 jour\n" +"et de lister les fichiers pr=C3=A9sents dans ces archives. Il est utile= pour " +"combiner\n" +"de nombreux fichiers au sein d'un fichier plus grand tout en pr=C3=A9se= rvant\n" +"la structure des r=C3=A9pertoires et certaines informations comme\n" +"les permissions et les dates de cr=C3=A9ation/modification. GNU tar ajo= ute de\n" +"nombreuses extensions =C3=A0 l'utilaire standard." + +#: gnu/packages/base.scm:177 +msgid "Apply differences to originals, with optional backups" +msgstr "Applique les diff=C3=A9rences aux originaux, avec sauvegardes op= tionnelles" + +#: gnu/packages/base.scm:179 +msgid "" +"Patch is a program that applies changes to files based on differences\n= " +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" +"files depending on the contents of the diff file. It accepts several\n= " +"different diff formats. It may also be used to revert previously appli= ed\n" +"differences." +msgstr "" +"Patch est une programme qui applique des modifications aux fichiers bas= =C3=A9es\n" +"sur les diff=C3=A9rences donn=C3=A9es par le programme \"diff\". Les ch= angements " +"peuvent\n" +"=C3=AAtre appliqu=C3=A9s sur un ou plusieurs fichiers selon le contenu = du fichier " +"diff. Il\n" +"accepte diff=C3=A9rents formats diff. Il peut aussi =C3=AAtre utilis=C3= =A9 pour annuler " +"des\n" +"diff=C3=A9rences appliqu=C3=A9es ant=C3=A9rieurement." + +#: gnu/packages/base.scm:199 +msgid "Comparing and merging files" +msgstr "Comparaison et fusion des fichiers" + +#: gnu/packages/base.scm:201 +#, fuzzy +msgid "" +"GNU Diffutils is a package containing tools for finding the\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" +"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" +"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" +"interactive means to merge two files." +msgstr "" +"GNU Diffutils est un paquet contenant des outils pour trouver\n" +"des diff=C3=A9rences entre fichiers. La commande \"diff\" est utilis=C3= =A9e pour\n" +"d=C3=A9terminer les diff=C3=A9rences entre fichiers alors que \"cmp\" m= ontre les\n" +"num=C3=A9ros de lignes et d=C3=A9calages o=C3=B9 ils diff=C3=A8rent. \"= diff3\" permet de " +"comparer\n" +"trois fichiers. Enfin, \"sdiff\" offre un moyen interactif de fusionner= deux " +"fichiers." + +#: gnu/packages/base.scm:234 +msgid "Operating on files matching given criteria" +msgstr "Op=C3=A9ration sur les fichiers correspondant au crit=C3=A8re do= nn=C3=A9" + +#: gnu/packages/base.scm:236 +msgid "" +"Findutils supplies the basic file directory searching utilities of the\= n" +"GNU system. It consists of two primary searching utilities: \"find\"\n= " +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" +"used to apply commands with arbitrarily long arguments." +msgstr "" +"Findutils fournit les outils basiques de recherche de fichier du syst=C3= =A8me " +"GNU.\n" +"Il consiste en deux utilitaires de recherche : \"find\" cherche " +"r=C3=A9cursivement les fichiers\n" +"correspondant =C3=A0 un crit=C3=A8re donn=C3=A9 dans un dossier et \"lo= cate\" liste les " +"fichiers\n" +"pr=C3=A9sents dans une base de donn=C3=A9es =C3=A0 partir d'une requ=C3= =AAte. Deux outils " +"auxiliaires\n" +"sont inclus : \"updatedb\" met =C3=A0 jour la base de donn=C3=A9es et \= "xargs\" peut " +"=C3=AAtre utilis=C3=A9 \n" +"pour appliquer des commandes avec des arguments longs et arbitraires" + +#: gnu/packages/base.scm:300 +msgid "Core GNU utilities (file, text, shell)" +msgstr "Utilitaires GNU (fichier, texte, shell)" + +#: gnu/packages/base.scm:302 +msgid "" +"GNU Coreutils includes all of the basic command-line tools that are\n" +"expected in a POSIX system. These provide the basic file, shell and te= xt\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" +"functionality beyond that which is outlined in the POSIX standard." +msgstr "" +"GNU Coreutils inclut tous les outils basiques en ligne de commande\n" +"attendus dans un syst=C3=A8me POSIX. Ceux-ci fournissent les fonctions = basiques " +"de manipulation\n" +"de fichiers, du shell et de textes d'un syst=C3=A8me GNU. Ils offrent p= our la " +"plupart\n" +"des fonctionnalit=C3=A9s =C3=A9tendues au-del=C3=A0 de ce qui est d=C3=A9= fini dans le standard " +"POSIX." + +#: gnu/packages/base.scm:344 +msgid "Remake files automatically" +msgstr "Recompiler les fichiers automatiquement" + +#: gnu/packages/base.scm:346 +msgid "" +"Make is a program that is used to control the production of\n" +"executables or other files from their source files. The process is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" +"generated from its source. It has powerful dependency resolution and t= he\n" +"ability to determine when files have to be regenerated after their sour= ces\n" +"change. GNU make offers many powerful extensions over the standard uti= lity." +msgstr "" +"Make est un programme pouvant =C3=AAtre utilis=C3=A9 pour contr=C3=B4le= r la cr=C3=A9ation\n" +"d'ex=C3=A9cutables ou d'autres fichiers depuis leurs fichiers sources. = Le " +"processus\n" +"est contr=C3=B4l=C3=A9 depuis un fichier Makefile dans lequel le d=C3=A9= veloppeur sp=C3=A9cifie\n" +"comment chaque fichier est g=C3=A9n=C3=A9r=C3=A9 depuis ses sources. Ce= t outil a un " +"puissant syst=C3=A8me\n" +"de r=C3=A9solution des d=C3=A9pendances et peut d=C3=A9terminer quand l= es fichiers doivent " +"=C3=AAtre\n" +"reg=C3=A9n=C3=A9r=C3=A9s. GNU make poss=C3=A8de beaucoup d'extensions e= n plus de\n" +"l'utilitaire standard." + +#: gnu/packages/base.scm:391 +msgid "Binary utilities: bfd gas gprof ld" +msgstr "Utilitaires binaires: bfd gas gprof ld" + +#: gnu/packages/base.scm:393 +msgid "" +"GNU Binutils is a collection of tools for working with binary files.\n" +"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" +"Other tools include programs to display binary profiling information, l= ist\n" +"the strings in a binary file, and utilities for working with archives. = The\n" +"\"bfd\" library for working with executable and object formats is also\= n" +"included." +msgstr "" +"GNU Binutils est une collection d'outils pour travailler avec les fichi= ers " +"binaires.\n" +"Les plus notables sont peut-=C3=AAtre \"ld\", un =C3=A9diteur de liens,= et \"as\", un " +"assembleur.\n" +"Les autres outils incluent des programmes pour afficher des information= s de " +"profilage sur \n" +"les binaires, lister les chaines de caract=C3=A8res et des utilitaires = pour " +"travailler avec\n" +"des archives. La biblioth=C3=A8que \"bfd\", permettant de travailler av= ec des " +"ex=C3=A9cutables et des\n" +"des formats objet, est aussi incluse." + +#: gnu/packages/base.scm:458 +msgid "The linker wrapper" +msgstr "" + +#: gnu/packages/base.scm:460 +msgid "" +"The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" +"store." +msgstr "" + +#: gnu/packages/base.scm:637 +msgid "The GNU C Library" +msgstr "La biblioth=C3=A8que GNU C" + +#: gnu/packages/base.scm:639 +msgid "" +"Any Unix-like operating system needs a C library: the library which\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" +"printf, exit...\n" +"\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" +"with the Linux kernel." +msgstr "" +"Tout syst=C3=A8me d'exploitation bas=C3=A9 sur Unix requiert une biblio= th=C3=A8que C:\n" +"la biblioth=C3=A8que qui d=C3=A9finit les \"appels syst=C3=A8me\" et au= tres fonctions " +"basiques\n" +"telles que open, malloc, printf, exit, ... La biblioth=C3=A8que GNU C e= st " +"utilis=C3=A9e comme\n" +"biblioth=C3=A8que C dans les syst=C3=A8mes GNU et la plupart des syst=C3= =A8mes bas=C3=A9s sur le " +"noyau Linux." + +#: gnu/packages/base.scm:670 +msgid "All the locales supported by the GNU C Library" +msgstr "" + +#: gnu/packages/base.scm:672 +msgid "" +"This package provides all the locales supported by the GNU C Library,\n= " +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" +"the 'share/locale' sub-directory of this package." +msgstr "" + +#: gnu/packages/base.scm:740 +msgid "Small sample of UTF-8 locales" +msgstr "" + +#: gnu/packages/base.scm:742 +msgid "" +"This package provides a small sample of UTF-8 locales mostly useful in\= n" +"test environments." +msgstr "" + +#: gnu/packages/base.scm:760 +msgid "Find full path of shell commands" +msgstr "" + +#: gnu/packages/base.scm:762 +msgid "" +"The which program finds the location of executables in PATH, with a\n" +"variety of options. It is an alternative to the shell \"type\" built-i= n\n" +"command." +msgstr "" + +#: gnu/packages/base.scm:832 +#, fuzzy +msgid "The GNU C Library (GNU Hurd variant)" +msgstr "La biblioth=C3=A8que GNU C" + +#: gnu/packages/base.scm:934 +msgid "Database of current and historical time zones" +msgstr "Base de donn=C3=A9es des fuseaux horaires courant et historiques= " + +#: gnu/packages/base.scm:935 +msgid "" +"The Time Zone Database (often called tz or zoneinfo)\n" +"contains code and data that represent the history of local time for man= y\n" +"representative locations around the globe. It is updated periodically = to\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" +"and daylight-saving rules." +msgstr "" +"La base de donn=C3=A9es des fuseaux horaires (souvent appel=C3=A9e \"tz= \" pour " +"\"zoneinfo\")\n" +"contient du code et des donn=C3=A9es repr=C3=A9sentant l'historique de = l'heure locale " +"pour\n" +"de nombreux endroits repr=C3=A9sentatifs dans le monde. Elle est mise =C3= =A0 jour " +"p=C3=A9riodiquement\n" +"pour refl=C3=A9ter les changements effectu=C3=A9s par les entit=C3=A9s = politiques aux " +"limites de ces zones,\n" +"les d=C3=A9calages UTC et les changements d'heures." + +#: gnu/packages/bittorrent.scm:90 +msgid "Fast and easy BitTorrent client" +msgstr "" + +#: gnu/packages/bittorrent.scm:92 +msgid "" +"Transmission is a BitTorrent client that comes with graphical,\n" +"textual, and Web user interfaces. Transmission also has a daemon for\n= " +"unattended operations. It supports local peer discovery, full encrypti= on,\n" +"DHT, =C2=B5TP, PEX and Magnet Links." +msgstr "" + +#: gnu/packages/bittorrent.scm:124 +msgid "BitTorrent library of rtorrent" +msgstr "" + +#: gnu/packages/bittorrent.scm:126 +msgid "" +"LibTorrent is a BitTorrent library used by and developed in parallel\n" +"with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" +"speed and efficiency." +msgstr "" + +#: gnu/packages/bittorrent.scm:153 +msgid "BitTorrent client with ncurses interface" +msgstr "" + +#: gnu/packages/bittorrent.scm:155 +msgid "" +"rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" +"full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" +"XML-RPC over SCGI." +msgstr "" + +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + +#: gnu/packages/certs.scm:65 +msgid "Python script to extract .pem data from certificate collection" +msgstr "" + +#: gnu/packages/certs.scm:67 +msgid "" +"certdata2pem.py is a Python script to transform X.509 certificate\n" +"\"source code\" as contained, for example, in the Mozilla sources, into= \n" +".pem formatted certificates." +msgstr "" + +#: gnu/packages/certs.scm:124 +msgid "CA certificates from Mozilla" +msgstr "" + +#: gnu/packages/certs.scm:126 +msgid "" +"This package provides certificates for Certification Authorities (CA)\n= " +"taken from the NSS package and thus ultimately from the Mozilla project= ." +msgstr "" + +#: gnu/packages/compression.scm:75 +#, fuzzy +msgid "Compression library" +msgstr "Biblioth=C3=A8que d'abstraction de source de donn=C3=A9es" + +#: gnu/packages/compression.scm:77 +msgid "" +"zlib is designed to be a free, general-purpose, legally unencumbered --= \n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" +"use on virtually any computer hardware and operating system. The zlib = data\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" +"triple the file size in extreme cases.) zlib's memory footprint is als= o\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" +"in compression." +msgstr "" + +#: gnu/packages/compression.scm:102 +msgid "Replacement for Sun's 'jar' utility" +msgstr "" + +#: gnu/packages/compression.scm:104 +msgid "" +"FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" +"utility. Instead of being written in Java, FastJar is written in C." +msgstr "" + +#: gnu/packages/compression.scm:122 +#, fuzzy +msgid "C library for manipulating POSIX tar files" +msgstr "Biblioth=C3=A8que pour travailler avec les possibilit=C3=A9s de = POSIX" + +#: gnu/packages/compression.scm:124 +msgid "" +"libtar is a C library for manipulating POSIX tar files. It handles\n" +"adding and extracting files to/from a tar archive." +msgstr "" + +#: gnu/packages/compression.scm:141 +msgid "General file (de)compression (using lzw)" +msgstr "" + +#: gnu/packages/compression.scm:146 +msgid "" +"GNU Gzip provides data compression and decompression utilities; the\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" +"\".tar.gz\" or \".tgz\", etc." +msgstr "" + +#: gnu/packages/compression.scm:222 +msgid "High-quality data compression program" +msgstr "" + +#: gnu/packages/compression.scm:224 +msgid "" +"bzip2 is a freely available, patent free (see below), high-quality data= \n" +"compressor. It typically compresses files to within 10% to 15% of the = best\n" +"available techniques (the PPM family of statistical compressors), whils= t\n" +"being around twice as fast at compression and six times faster at\n" +"decompression." +msgstr "" + +#: gnu/packages/compression.scm:254 +msgid "Parallel bzip2 implementation" +msgstr "" + +#: gnu/packages/compression.scm:256 +msgid "" +"Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" +"compressed with pbzip2 can be decompressed with bzip2)." +msgstr "" + +#: gnu/packages/compression.scm:277 +msgid "General-purpose data compression" +msgstr "" + +#: gnu/packages/compression.scm:279 +msgid "" +"XZ Utils is free general-purpose data compression software with high\n" +"compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" +"\n" +"The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" +"been modified quite a lot to be suitable for XZ Utils. The primary\n" +"compression algorithm is currently LZMA2, which is used inside the .xz\= n" +"container format. With typical files, XZ Utils create 30 % smaller out= put\n" +"than gzip and 15 % smaller output than bzip2." +msgstr "" + +#: gnu/packages/compression.scm:307 +msgid "Data compression library suitable for real-time data de-/compress= ion" +msgstr "" + +#: gnu/packages/compression.scm:309 +msgid "" +"LZO is a data compression library which is suitable for data\n" +"de-/compression in real-time. This means it favours speed over\n" +"compression ratio.\n" +"\n" +"LZO is written in ANSI C. Both the source code and the compressed data= \n" +"format are designed to be portable across platforms." +msgstr "" + +#: gnu/packages/compression.scm:332 +#, fuzzy +msgid "Compress or expand files" +msgstr "Utilitaire de compression et de paquetage de fichiers" + +#: gnu/packages/compression.scm:334 +msgid "" +"Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" +"some compression ratio)." +msgstr "" + +#: gnu/packages/compression.scm:353 +msgid "Lossless data compressor based on the LZMA algorithm" +msgstr "" + +#: gnu/packages/compression.scm:355 +msgid "" +"Lzip is a lossless data compressor with a user interface similar to the= \n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" +"archiving. Lzip is a clean implementation of the LZMA algorithm." +msgstr "" + +#: gnu/packages/compression.scm:387 +msgid "Archives in shell scripts, uuencode/uudecode" +msgstr "" + +#: gnu/packages/compression.scm:389 +msgid "" +"GNU sharutils is a package for creating and manipulating shell\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" +"This package is mostly for compatibility and historical interest." +msgstr "" + +#: gnu/packages/compression.scm:420 +msgid "Library for SoundFont decompression" +msgstr "" + +#: gnu/packages/compression.scm:422 +msgid "" +"SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" +"with the sfArk algorithm." +msgstr "" + +#: gnu/packages/compression.scm:454 +msgid "Basic sfArk decompressor" +msgstr "" + +#: gnu/packages/compression.scm:455 +msgid "" +"SfArk extractor converts SoundFonts in the compressed legacy\n" +"sfArk file format to the uncompressed sf2 format." +msgstr "" + +#: gnu/packages/compression.scm:472 +msgid "Compression tools for some formats used by Microsoft" +msgstr "" + +#: gnu/packages/compression.scm:474 +msgid "" +"The purpose of libmspack is to provide both compression and\n" +"decompression of some loosely related file formats used by Microsoft." +msgstr "" + +#: gnu/packages/compression.scm:493 +msgid "Low-level interface to bzip2 compression library" +msgstr "" + +#: gnu/packages/compression.scm:494 +msgid "" +"This module provides a Perl interface to the bzip2\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:528 +msgid "Low-level interface to zlib compression library" +msgstr "" + +#: gnu/packages/compression.scm:529 +msgid "" +"This module provides a Perl interface to the zlib\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:550 +msgid "IO Interface to compressed files/buffers" +msgstr "" + +#: gnu/packages/compression.scm:551 +msgid "" +"IO-Compress provides a Perl interface to allow reading and\n" +"writing of compressed data created with the zlib and bzip2 libraries." +msgstr "" + +#: gnu/packages/compression.scm:577 +msgid "Compression algorithm focused on speed" +msgstr "" + +#: gnu/packages/compression.scm:578 +msgid "" +"LZ4 is a lossless compression algorithm, providing\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" +"time for compression ratio." +msgstr "" + +#: gnu/packages/compression.scm:618 +msgid "Tools to create and extract squashfs filesystems" +msgstr "" + +#: gnu/packages/compression.scm:620 +msgid "" +"Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" +"zlib to compress files, inodes, and directories. All blocks are packed= to\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" +"It is intended to be used for archival use, for live CDs, and for embed= ded\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" +"extract such filesystems." +msgstr "" + +#: gnu/packages/compression.scm:657 +msgid "Parallel implementation of gzip" +msgstr "" + +#: gnu/packages/compression.scm:659 +msgid "" +"This package provides a parallel implementation of gzip that exploits\n= " +"multiple processors and multiple cores when compressing data." +msgstr "" + +#: gnu/packages/compression.scm:683 +msgid "Parallel indexing implementation of LZMA" +msgstr "" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 +msgid "Berkeley database" +msgstr "Base de donn=C3=A9es Berkeley" + +#: gnu/packages/databases.scm:124 +msgid "" +"Berkeley DB is an embeddable database allowing developers the choice of= \n" +"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +msgstr "" +"Berkeley DB est une base de donn=C3=A9es embarqu=C3=A9e proposant aux d= =C3=A9veloppeurs\n" +"le choix de SQL, cl=C3=A9/valeur, XML/XQuery ou Java Object Storage pou= r leur\n" +"mod=C3=A8le de donn=C3=A9es." + +#: gnu/packages/databases.scm:198 +msgid "Fast, easy to use, and popular database" +msgstr "Base de donn=C3=A9es rapide, facile d'utilisation et populaire" + +#: gnu/packages/databases.scm:200 +msgid "" +"MySQL is a fast, reliable, and easy to use relational database\n" +"management system that supports the standardized Structured Query\n" +"Language." +msgstr "" +"MySQL est un syst=C3=A8me de gestion de base de donn=C3=A9es relationne= lle rapide,\n" +" fiable et facile d'emploi, supportant le SQL standardis=C3=A9." + +#: gnu/packages/databases.scm:267 +msgid "SQL database server" +msgstr "" + +#: gnu/packages/databases.scm:269 +msgid "" +"MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" +"as a drop-in replacement of MySQL." +msgstr "" + +#: gnu/packages/databases.scm:289 +msgid "Powerful object-relational database system" +msgstr "Syst=C3=A8me de base de donn=C3=A9es relationnelle puissant" + +#: gnu/packages/databases.scm:291 +msgid "" +"PostgreSQL is a powerful object-relational database system. It is full= y\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" +"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" +"TIMESTAMP. It also supports storage of binary large objects, including= \n" +"pictures, sounds, or video." +msgstr "" +"PostgreSQL est un syt=C3=A8me de base de donn=C3=A9es relationnelle pui= ssant. " +"Totalement\n" +"conforme =C3=A0 ACID, il poss=C3=A8de un support complet des cl=C3=A9s = =C3=A9trang=C3=A8res, " +"jointures, vues, \n" +"triggers, et proc=C3=A9dures stock=C3=A9es (dans plusieurs langages). I= l inclut la " +"plupart des\n" +"types de donn=C3=A9es SQL:2008, y compris INTEGER, NUMERIC, BOOLEAN, CH= AR, " +"VARCHAR, DATE, \n" +"INTERVAL et TIMESTAMP. Il supporte aussi le stockage binaire de grands = " +"objets, dont\n" +"les images, le son et la vid=C3=A9o." + +#: gnu/packages/databases.scm:329 +msgid "Manipulate plain text files as databases" +msgstr "Manipule les fichiers texte comme des bases de donn=C3=A9es" + +#: gnu/packages/databases.scm:331 +msgid "" +"GNU Recutils is a set of tools and libraries for creating and\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" +"databases created with Recutils carry all of the expected features such= as\n" +"unique fields, primary keys, time stamps and more. Many different fiel= d\n" +"types are supported, as is encryption." +msgstr "" +"GNU Recutils est un ensemble d'outils et de biblioth=C3=A8ques permetta= nt de\n" +"cr=C3=A9er et de manipuler des bases de donn=C3=A9es textuelles. Bien q= ue textuelles,\n" +"les bases de donn=C3=A9es cr=C3=A9=C3=A9es avec Recutils fournissent to= utes les " +"fonctionnalit=C3=A9s\n" +"attendues d'une base de donn=C3=A9es, telles que les champs uniques, le= s cl=C3=A9s " +"primaires,\n" +"les timestamps et plus encore. De nombreux types de champs sont support= =C3=A9s, " +"tout comme\n" +"le chiffrement." + +#: gnu/packages/databases.scm:383 +msgid "The SQLite database management system" +msgstr "Le syst=C3=A8me de gestion de bases de donn=C3=A9es SQLite" + +#: gnu/packages/databases.scm:385 +msgid "" +"SQLite is a software library that implements a self-contained, serverle= ss,\n" +"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" +"is in the public domain." +msgstr "SQLite est une biblioth=C3=A8que logicielle implantant" + +#: gnu/packages/databases.scm:420 +msgid "Trivial database" +msgstr "Base de donn=C3=A9es triviale" + +#: gnu/packages/databases.scm:422 +msgid "" +"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" +"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" +"extremely small." +msgstr "" +"TDB est une base de donn=C3=A9es triviale. Elle se rapproche conceptuel= lement\n" +"de GDBM et de la base de donn=C3=A9es de BSD, si ce n'est qu'elle autor= ise " +"plusieurs\n" +"acc=C3=A8s simultan=C3=A9s en =C3=A9criture et utilise un verrouillage = interne pour =C3=A9viter " +"les\n" +"empi=C3=A9tements. Notez que TDB est aussi tr=C3=A8s l=C3=A9ger." + +#: gnu/packages/databases.scm:441 +msgid "Database independent interface for Perl" +msgstr "Interface de base de donn=C3=A9es pour Perl" + +#: gnu/packages/databases.scm:442 +msgid "This package provides an database interface for Perl." +msgstr "Ce paquet fournit une interface de base de donn=C3=A9es pour Per= l." + +#: gnu/packages/databases.scm:489 +msgid "Extensible and flexible object <-> relational mapper" +msgstr "" + +#: gnu/packages/databases.scm:490 +msgid "" +"An SQL to OO mapper with an object API inspired by\n" +"Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" +"still providing access to as many of the capabilities of the database a= s\n" +"possible, including retrieving related records from multiple tables in = a\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" +"\"ORDER BY\" and \"HAVING\" support." +msgstr "" + +#: gnu/packages/databases.scm:520 +msgid "Cursor with built-in caching support" +msgstr "" + +#: gnu/packages/databases.scm:521 +msgid "" +"DBIx::Class::Cursor::Cached provides a cursor class with\n" +"built-in caching support." +msgstr "" + +#: gnu/packages/databases.scm:541 +msgid "Introspect many-to-many relationships" +msgstr "" + +#: gnu/packages/databases.scm:542 +msgid "" +"Because the many-to-many relationships are not real\n" +"relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" +"all relevant information about these non-relationships so they can late= r be\n" +"introspected and examined." +msgstr "" + +#: gnu/packages/databases.scm:599 +msgid "Create a DBIx::Class::Schema based on a database" +msgstr "" + +#: gnu/packages/databases.scm:600 +msgid "" +"DBIx::Class::Schema::Loader automates the definition of a\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" +"columns, primary keys, unique constraints and relationships." +msgstr "" + +#: gnu/packages/databases.scm:624 +msgid "DBI PostgreSQL interface" +msgstr "" + +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +#, fuzzy +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "Ce paquet fournit une interface de base de donn=C3=A9es pour Per= l." + +#: gnu/packages/databases.scm:667 +msgid "SQlite interface for Perl" +msgstr "Interface SQLite pour Perl" + +#: gnu/packages/databases.scm:668 +msgid "" +"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" +"capable RDBMS working for your Perl project you simply have to install = this\n" +"module, and nothing else." +msgstr "" +"DBD::SQLite est driver DBI pour SQLite =C3=A9crit en Perl. Il suffit d'= installer " +"ce\n" +"module dans votre projet Perl pour obtenir une" + +#: gnu/packages/databases.scm:698 +msgid "Generate SQL from Perl data structures" +msgstr "" + +#: gnu/packages/databases.scm:699 +msgid "" +"This module was inspired by the excellent DBIx::Abstract.\n" +"While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" +"been modified to make the SQL easier to generate from Perl data structu= res.\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" +"structures you provide it, so that you don't have to modify your code e= very\n" +"time your data changes." +msgstr "" + +#: gnu/packages/databases.scm:728 +msgid "Split SQL code into atomic statements" +msgstr "" + +#: gnu/packages/databases.scm:729 +msgid "" +"This module tries to split any SQL code, even including\n" +"non-standard extensions, into the atomic statements it is composed of." +msgstr "" + +#: gnu/packages/databases.scm:747 +msgid "SQL tokenizer" +msgstr "" + +#: gnu/packages/databases.scm:748 +msgid "" +"SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" +"claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" +"valid SQL query." +msgstr "" + +#: gnu/packages/databases.scm:765 +msgid "Data source abstraction library" +msgstr "Biblioth=C3=A8que d'abstraction de source de donn=C3=A9es" + +#: gnu/packages/databases.scm:766 +msgid "" +"Unixodbc is a library providing an API with which to access\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" +"Driver." +msgstr "" +"Unixodbc est une biblioth=C3=A8que fournissant une API permettant\n" +"d'acc=C3=A9der =C3=A0 des sources de donn=C3=A9es. Ces sources incluent= des serveurs SQL\n" +"o=C3=B9 tout logiciel avec un driver ODBC." + +#: gnu/packages/databases.scm:790 +msgid "In-memory key/value and document store" +msgstr "" + +#: gnu/packages/databases.scm:792 +#, fuzzy +msgid "" +"UnQLite is an in-process software library which implements a\n" +"self-contained, serverless, zero-configuration, transactional NoSQL\n" +"database engine. UnQLite is a document store database similar to\n" +"MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store\n" +"similar to BerkeleyDB, LevelDB, etc." +msgstr "SQLite est une biblioth=C3=A8que logicielle implantant" + +#: gnu/packages/databases.scm:819 +msgid "Key-value cache and store" +msgstr "" + +#: gnu/packages/databases.scm:820 +msgid "" +"Redis is an advanced key-value cache and store. Redis\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" +"sets, bitmaps and hyperloglogs." +msgstr "" + +#: gnu/packages/debug.scm:74 +msgid "Heuristical file minimizer" +msgstr "" + +#: gnu/packages/debug.scm:76 +msgid "" +"Delta assists you in minimizing \"interesting\" files subject to a test= \n" +"of their interestingness. A common such situation is when attempting t= o\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" +"program to exhibit a bug." +msgstr "" + +#: gnu/packages/debug.scm:135 +msgid "Reducer for interesting code" +msgstr "" + +#: gnu/packages/debug.scm:137 +msgid "" +"C-Reduce is a tool that takes a large C or C++ program that has a\n" +"property of interest (such as triggering a compiler bug) and automatica= lly\n" +"produces a much smaller C/C++ program that has the same property. It i= s\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" +"tools that process C/C++ code." +msgstr "" + +#: gnu/packages/debug.scm:249 +msgid "Security-oriented fuzzer" +msgstr "" + +#: gnu/packages/debug.scm:251 +msgid "" +"American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" +"fuzzed code. The compact synthesized corpora produced by the tool are = also\n" +"useful for seeding other, more labor- or resource-intensive testing reg= imes\n" +"down the road." +msgstr "" + +#: gnu/packages/dejagnu.scm:78 +msgid "GNU software testing framework" +msgstr "" + +#: gnu/packages/dejagnu.scm:80 +msgid "" +"DejaGnu is a framework for testing software. In effect, it serves as\n= " +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" +"multiple test suites, which are then all managed by a single harness." +msgstr "" + +#: gnu/packages/feh.scm:54 +msgid "Fast and light imlib2-based image viewer" +msgstr "" + +#: gnu/packages/feh.scm:56 +msgid "" +"feh is an X11 image viewer aimed mostly at console users.\n" +"Unlike most other viewers, it does not have a fancy GUI, but simply\n" +"displays images. It can also be used to set the desktop wallpaper.\n" +"It is controlled via commandline arguments and configurable key/mouse\n= " +"actions." +msgstr "" + +#: gnu/packages/games.scm:116 +msgid "Backgammon game" +msgstr "" + +#: gnu/packages/games.scm:117 +msgid "" +"The GNU backgammon application can be used for playing, analyzing and\n= " +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" +"neural networks suitable for both beginners and advanced players. In\n= " +"addition to a command-line interface, it also features an attractive, 3= D\n" +"representation of the playing board." +msgstr "" + +#: gnu/packages/games.scm:146 +msgid "3d Rubik's cube game" +msgstr "" + +#: gnu/packages/games.scm:148 +msgid "" +"GNUbik is a puzzle game in which you must manipulate a cube to make\n" +"each of its faces have a uniform color. The game is customizable, allo= wing\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" +"You may even apply photos to the faces instead of colors. The game is\= n" +"scriptable with Guile." +msgstr "" + +#: gnu/packages/games.scm:198 +msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" +msgstr "" + +#: gnu/packages/games.scm:199 +msgid "" +"L'Abbaye des Morts is a 2D platform game set in 13th century\n" +"France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" +"that beneath its ruins lay buried an ancient evil." +msgstr "" + +#: gnu/packages/games.scm:242 +msgid "Lemmings clone" +msgstr "" + +#: gnu/packages/games.scm:244 +msgid "" +"Pingus is a free Lemmings-like puzzle game in which the player takes\n" +"command of a bunch of small animals and has to guide them through level= s.\n" +"Since the animals walk on their own, the player can only influence them= by\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" +"in the other direction. Multiple such commands are necessary to reach = the\n" +"level's exit. The game is presented in a 2D side view." +msgstr "" + +#: gnu/packages/games.scm:266 +msgid "Convert English text to humorous dialects" +msgstr "" + +#: gnu/packages/games.scm:267 +msgid "" +"The GNU Talk Filters are programs that convert English text\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" +"a C library, so they can easily be integrated into other programs." +msgstr "" + +#: gnu/packages/games.scm:299 +msgid "Simulate the display from \"The Matrix\"" +msgstr "" + +#: gnu/packages/games.scm:300 +msgid "" +"CMatrix simulates the display from \"The Matrix\" and is\n" +"based on the screensaver from the movie's website. It works with termi= nal\n" +"settings up to 132x300 and can scroll lines all at the same rate or\n" +"asynchronously and at a user-defined speed." +msgstr "" + +#: gnu/packages/games.scm:320 +msgid "Full chess implementation" +msgstr "" + +#: gnu/packages/games.scm:321 +msgid "" +"GNU Chess is a chess engine. It allows you to compete\n" +"against the computer in a game of chess, either through the default " +"terminal\n" +"interface or via an external visual interface such as GNU XBoard." +msgstr "" + +#: gnu/packages/games.scm:349 +msgid "Twisted adventures of young pig farmer Dink Smallwood" +msgstr "" + +#: gnu/packages/games.scm:351 +msgid "" +"GNU FreeDink is a free and portable re-implementation of the engine\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" +"game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" +"To that extent, it also includes a front-end for managing all of your D= -Mods." +msgstr "" + +#: gnu/packages/games.scm:373 +msgid "Game data for GNU Freedink" +msgstr "" + +#: gnu/packages/games.scm:375 +msgid "This package contains the game data of GNU Freedink." +msgstr "" + +#: gnu/packages/games.scm:427 +msgid "Graphical user interface for chess programs" +msgstr "" + +#: gnu/packages/games.scm:428 +msgid "" +"GNU XBoard is a graphical board for all varieties of chess,\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" +"fully interactive graphical interface and it can load and save games in= the\n" +"Portable Game Notation." +msgstr "" + +#: gnu/packages/games.scm:481 +msgid "Ball and paddle game" +msgstr "" + +#: gnu/packages/games.scm:482 +msgid "" +"XBoing is a blockout type game where you have a paddle which\n" +"you control to bounce a ball around the game zone destroying blocks wit= h a\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" +"destroy, the better your score. The person with the highest score wins= ." +msgstr "" + +#: gnu/packages/games.scm:514 +msgid "Typing tutor" +msgstr "" + +#: gnu/packages/games.scm:516 +msgid "" +"GNU Typist is a universal typing tutor. It can be used to learn and\n" +"practice touch-typing. Several tutorials are included; in addition to\= n" +"tutorials for the standard QWERTY layout, there are also tutorials for = the\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" +"are primarily in English, however some in other languages are provided.= " +msgstr "" + +#: gnu/packages/games.scm:569 +msgid "3D game engine written in C++" +msgstr "" + +#: gnu/packages/games.scm:571 +msgid "" +"The Irrlicht Engine is a high performance realtime 3D engine written in= \n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" +"for common mesh file formats, and collision detection." +msgstr "" + +#: gnu/packages/games.scm:623 +msgid "2D space shooter" +msgstr "" + +#: gnu/packages/games.scm:625 +msgid "" +"M.A.R.S. is a 2D space shooter with pretty visual effects and\n" +"attractive physics. Players can battle each other or computer controll= ed\n" +"enemies in different game modes such as space ball, death match, team d= eath\n" +"match, cannon keep, and grave-itation pit." +msgstr "" + +#: gnu/packages/games.scm:666 +msgid "Main game data for the Minetest game engine" +msgstr "" + +#: gnu/packages/games.scm:668 +msgid "Game data for the Minetest infinite-world block sandox game." +msgstr "" + +#: gnu/packages/games.scm:720 +msgid "Infinite-world block sandbox game" +msgstr "" + +#: gnu/packages/games.scm:722 +msgid "" +"Minetest is a sandbox construction game. Players can create and destro= y\n" +"various types of blocks in a three-dimensional open world. This allows= \n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" +"in different ways." +msgstr "" + +#: gnu/packages/games.scm:761 +msgid "Curses Implementation of the Glk API" +msgstr "" + +#: gnu/packages/games.scm:763 +msgid "" +"Glk defines a portable API for applications with text UIs. It was\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" +"interactive text utilities, particularly those based on a command line.= \n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" +"using the curses.h library for screen control." +msgstr "" + +#: gnu/packages/games.scm:800 +msgid "Interpreter for Glulx VM" +msgstr "" + +#: gnu/packages/games.scm:802 +msgid "" +"Glulx is a 32-bit portable virtual machine intended for writing and\n" +"playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" +"some of the restrictions in the venerable Z-machine format. This is th= e\n" +"reference interpreter, using Glk API." +msgstr "" + +#: gnu/packages/games.scm:838 +msgid "Z-machine interpreter" +msgstr "" + +#: gnu/packages/games.scm:840 +msgid "" +"Fizmo is a console-based Z-machine interpreter. It is used to play\n" +"interactive fiction, also known as text adventures, which were implemen= ted\n" +"either by Infocom or created using the Inform compiler." +msgstr "" + +#: gnu/packages/games.scm:890 +msgid "Reference frontend for the libretro API" +msgstr "" + +#: gnu/packages/games.scm:892 +msgid "" +"Libretro is a simple but powerful development interface that allows for= \n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" +"straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" +"multi-system game/emulator system." +msgstr "" + +#: gnu/packages/games.scm:912 +msgid "Play the game of Go" +msgstr "" + +#: gnu/packages/games.scm:914 +msgid "" +"GNU Go is a program that plays the game of Go, in which players\n" +"place stones on a grid to form territory or capture other stones. Whil= e\n" +"it can be played directly from the terminal, rendered in ASCII characte= rs,\n" +"it is also possible to play GNU Go with 3rd party graphical interfaces = or\n" +"even in Emacs. It supports the standard game storage format (SGF, Smar= t\n" +"Game Format) and inter-process communication format (GMP, Go Modem\n" +"Protocol)." +msgstr "" + +#: gnu/packages/games.scm:964 +msgid "High speed arctic racing game based on Tux Racer" +msgstr "" + +#: gnu/packages/games.scm:966 +msgid "" +"Extreme Tux Racer, or etracer as it is called for short, is\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" +"avoiding the trees and rocks that will slow you down.\n" +"\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" +"bones.\n" +"\n" +"This game is based on the GPL version of the famous game TuxRacer." +msgstr "" + +#: gnu/packages/games.scm:1004 +msgid "Game of jumping to the next floor, trying not to fall" +msgstr "" + +#: gnu/packages/games.scm:1006 +msgid "" +"GNUjump is a simple, yet addictive game in which you must jump from\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" +"falling, themeable graphics and sounds, and replays." +msgstr "" + +#: gnu/packages/games.scm:1047 +msgid "Turn-based strategy game" +msgstr "" + +#: gnu/packages/games.scm:1049 +msgid "" +"The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" +"local).\n" +"\n" +"Battle for control on a range of maps, using variety of units which hav= e\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" +"next campaign." +msgstr "" + +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" +msgstr "" + +#: gnu/packages/games.scm:1094 +msgid "" +"DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" +"also emulates CPU:286/386 realmode/protected mode, Directory\n" +"FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a\n" +"SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility = with\n" +"older games." +msgstr "" + +#: gnu/packages/games.scm:1139 +msgid "Mouse and keyboard discovery for children" +msgstr "" + +#: gnu/packages/games.scm:1141 +msgid "" +"Gamine is a game designed for young children who are learning to use th= e\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" +"on the screen and keyboard to display letters." +msgstr "" + +#: gnu/packages/games.scm:1172 +msgid "Puzzle game with a cat in lead role" +msgstr "" + +#: gnu/packages/games.scm:1173 +msgid "" +"Project Raincat is a game developed by Carnegie Mellon\n" +"students through GCS during the Fall 2008 semester. Raincat features g= ame\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" +"is programmed in Haskell." +msgstr "" + +#: gnu/packages/games.scm:1208 +msgid "Client for 'The Mana World' and similar games" +msgstr "" + +#: gnu/packages/games.scm:1210 +msgid "" +"ManaPlus is a 2D MMORPG client for game servers. It is the only\n" +"fully supported client for @uref{http://www.themanaworld.org, The mana\= n" +"world}, @uref{http://evolonline.org, Evol Online} and\n" +"@uref{http://landoffire.org, Land of fire}." +msgstr "" + +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +msgid "Pinball simulator" +msgstr "" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 +msgid "GNU Compiler Collection" +msgstr "GNU Compiler Collection" + +#: gnu/packages/gcc.scm:315 +msgid "" +"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" +"Go. It also includes runtime support libraries for these languages." +msgstr "" +"GCC est la collection de compilateurs GNU. Il fournit des compilateurs\= n" +"pour plusieurs langages, dont C, C++, Objective-C, Fortran, Java, Ada,\= n" +"et Go. Il inclut =C3=A9galement le support de biblioth=C3=A8ques pour c= es langages." + +#: gnu/packages/gcc.scm:380 +msgid "GNU C++ standard library" +msgstr "" + +#: gnu/packages/gcc.scm:415 +msgid "Collection of subroutines used by various GNU programs" +msgstr "" + +#: gnu/packages/gcc.scm:610 +msgid "GNU libstdc++ documentation" +msgstr "" + +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" +msgstr "" +"Manipulation des ensembles et relations d'entiers li=C3=A9s par des\n" +"contraintes lin=C3=A9aires." + +#: gnu/packages/gcc.scm:681 +msgid "" +"isl is a library for manipulating sets and relations of integer points\= n" +"bounded by linear constraints. Supported operations on sets include\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" +"affine hull, integer projection, computing the lexicographic minimum us= ing\n" +"parametric integer programming, coalescing and parametric vertex\n" +"enumeration. It also includes an ILP solver based on generalized basis= \n" +"reduction, transitive closures on maps (which may encode infinite graph= s),\n" +"dependence analysis and bounds on piecewise step-polynomials." +msgstr "" + +#: gnu/packages/gcc.scm:713 +msgid "Library to generate code for scanning Z-polyhedra" +msgstr "" + +#: gnu/packages/gcc.scm:715 +msgid "" +"CLooG is a free software library to generate code for scanning\n" +"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" +"reaches each integral point of one or more parameterized polyhedra.\n" +"CLooG has been originally written to solve the code generation problem\= n" +"for optimizing compilers based on the polytope model. Nevertheless it\= n" +"is used now in various area e.g., to build control automata for\n" +"high-level synthesis or to find the best polynomial approximation of a\= n" +"function. CLooG may help in any situation where scanning polyhedra\n" +"matters. While the user has full control on generated code quality,\n" +"CLooG is designed to avoid control overhead and to produce a very\n" +"effective code." +msgstr "CLooG est biblioth=C3=A8que logiciel libre permettant de g=C3=A9= n=C3=A9rer du code" + +#: gnu/packages/gcc.scm:770 +msgid "Reference manual for the C programming language" +msgstr "" + +#: gnu/packages/gcc.scm:772 +msgid "" +"This is a reference manual for the C programming language, as\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" +"of the language. Library functions are not included." +msgstr "" + +#: gnu/packages/geeqie.scm:48 +msgid "Library and command-line utility to manage image metadata" +msgstr "" + +#: gnu/packages/geeqie.scm:50 +msgid "" +"Exiv2 is a C++ library and a command line utility to manage image\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" +"and XMP metadata of images in various formats." +msgstr "" + +#: gnu/packages/geeqie.scm:82 +msgid "Lightweight GTK+ based image viewer" +msgstr "" + +#: gnu/packages/geeqie.scm:84 +msgid "" +"Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" +"systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" +"image formats; tools for image comparison, sorting and managing photo\n= " +"collection. Geeqie was initially based on GQview." +msgstr "" + +#: gnu/packages/gettext.scm:93 +msgid "Tools and documentation for translation" +msgstr "Outils et documentation pour la traduction" + +#: gnu/packages/gettext.scm:95 +#, fuzzy +msgid "" +"GNU Gettext is a package providing a framework for translating the\n" +"textual output of programs into multiple languages. It provides " +"translators\n" +"with the means to create message catalogs, as well as an Emacs mode to = work\n" +"with them, and a runtime library to load translated messages from the\n= " +"catalogs. Nearly all GNU packages use Gettext." +msgstr "" +"GNU Gettext est un paquet fournissant un framework pour la traduction d= e\n" +"sorties textuelles de programmes vers de nombreux langages. Il fournit\= n" +"des traducteur dans le but de cr=C3=A9er des catalogues de messages, ai= nsi qu'un\n" +"mode Emacs pour travailler avec ceux-ci, et une biblioth=C3=A8que pour = charger " +"lesmessages depuis les catalogues. Presque tous les paquets GNU utilise= nt " +"Gettext." + +#: gnu/packages/gettext.scm:151 +msgid "Scripts to ease maintenance of translations" +msgstr "" + +#: gnu/packages/gettext.scm:153 +msgid "" +"The po4a (PO for anything) project goal is to ease translations (and\n" +"more interestingly, the maintenance of translations) using gettext tool= s on\n" +"areas where they were not expected like documentation." +msgstr "" + +#: gnu/packages/gimp.scm:53 +msgid "Image pixel format conversion library" +msgstr "" + +#: gnu/packages/gimp.scm:55 +msgid "" +"Babl is a dynamic, any to any, pixel format translation library.\n" +"It allows converting between different methods of storing pixels known = as\n" +"pixel formats that have with different bitdepths and other data\n" +"representations, color models and component permutations.\n" +"\n" +"A vocabulary to formulate new pixel formats from existing primitives is= \n" +"provided as well as the framework to add new color models and data type= s." +msgstr "" + +#: gnu/packages/gimp.scm:110 +msgid "Graph based image processing framework" +msgstr "" + +#: gnu/packages/gimp.scm:111 +msgid "" +"GEGL (Generic Graphics Library) provides infrastructure to\n" +"do demand based cached non destructive image editing on larger than RAM= \n" +"buffers." +msgstr "" + +#: gnu/packages/gimp.scm:153 +msgid "GNU Image Manipulation Program" +msgstr "" + +#: gnu/packages/gimp.scm:155 +msgid "" +"GIMP is an application for image manipulation tasks such as photo\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" +"as well as specialized ones. It features a highly customizable interfa= ce\n" +"that is extensible via a plugin system." +msgstr "" + +#: gnu/packages/gnome.scm:154 +msgid "CD/DVD burning tool for Gnome" +msgstr "" + +#: gnu/packages/gnome.scm:155 +msgid "" +"Brasero is an application to burn CD/DVD for the Gnome\n" +"Desktop. It is designed to be as simple as possible and has some uniqu= e\n" +"features to enable users to create their discs easily and quickly." +msgstr "" + +#: gnu/packages/gnome.scm:175 +msgid "Bootstrap GNOME modules built from Git" +msgstr "" + +#: gnu/packages/gnome.scm:176 +msgid "" +"gnome-common contains various files needed to bootstrap\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" +"can be used to configure a source directory checked out from Git and so= me\n" +"commonly used macros." +msgstr "" + +#: gnu/packages/gnome.scm:217 +msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" +msgstr "" + +#: gnu/packages/gnome.scm:219 +msgid "" +"The libgnome-desktop library provides API shared by several application= s\n" +"on the desktop, but that cannot live in the platform for various reason= s.\n" +"There is no API or ABI guarantee, although we are doing our best to pro= vide\n" +"stability. Documentation for the API is available with gtk-doc.\n" +"\n" +"The gnome-about program helps find which version of GNOME is installed.= " +msgstr "" + +#: gnu/packages/gnome.scm:252 +#, fuzzy +msgid "Documentation utilities for the Gnome project" +msgstr "Collection d'utilitaires pour le noyau Linux" + +#: gnu/packages/gnome.scm:254 +msgid "" +"Gnome-doc-utils is a collection of documentation utilities for the\n" +"Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" +"and keep up to date translations of documentation." +msgstr "" + +#: gnu/packages/gnome.scm:298 +msgid "Libraries for displaying certificates and accessing key stores" +msgstr "" + +#: gnu/packages/gnome.scm:300 +msgid "" +"The GCR package contains libraries used for displaying certificates and= \n" +"accessing key stores. It also provides the viewer for crypto files on = the\n" +"GNOME Desktop." +msgstr "" + +#: gnu/packages/gnome.scm:329 +msgid "Accessing passwords from the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:331 +msgid "Client library to access passwords from the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:393 +msgid "Daemon to store passwords and encryption keys" +msgstr "" + +#: gnu/packages/gnome.scm:395 +msgid "" +"gnome-keyring is a program that keeps passwords and other secrets for\n= " +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" +"applications locate it via an environment variable or D-Bus.\n" +"\n" +"The program can manage several keyrings, each with its own master passw= ord,\n" +"and there is also a session keyring which is never stored to disk, but\= n" +"forgotten when the session ends." +msgstr "" + +#: gnu/packages/gnome.scm:460 +msgid "GNOME's document viewer" +msgstr "" + +#: gnu/packages/gnome.scm:462 +msgid "" +"Evince is a document viewer for multiple document formats. It\n" +"currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" +"of Evince is to replace the multiple document viewers that exist\n" +"on the GNOME Desktop with a single simple application." +msgstr "" + +#: gnu/packages/gnome.scm:491 +msgid "GNOME settings for various desktop components" +msgstr "" + +#: gnu/packages/gnome.scm:493 +msgid "" +"Gsettings-desktop-schemas contains a collection of GSettings schemas\n" +"for settings shared by various components of the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:527 +msgid "Utility to implement the Freedesktop Icon Naming Specification" +msgstr "" + +#: gnu/packages/gnome.scm:529 +msgid "" +"To help with the transition to the Freedesktop Icon Naming\n" +"Specification, the icon naming utility maps the icon names used by the\= n" +"GNOME and KDE desktops to the icon names proposed in the specification.= " +msgstr "" + +#: gnu/packages/gnome.scm:551 +msgid "Utilities for working with desktop entries" +msgstr "" + +#: gnu/packages/gnome.scm:553 +msgid "" +"This package contains a few command line utilities for working with\n" +"desktop entries:\n" +"\n" +"desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" +" about desktop entry specification violations.\n" +"\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" +" optionally munging it a bit in transit.\n" +"\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" +" handled by desktop files." +msgstr "" + +#: gnu/packages/gnome.scm:587 +msgid "GNOME icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:589 +msgid "Icons for the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:628 +msgid "Database of common MIME types" +msgstr "" + +#: gnu/packages/gnome.scm:630 +msgid "" +"The shared-mime-info package contains the core database of common types= \n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" +"database is translated at Transifex." +msgstr "" + +#: gnu/packages/gnome.scm:654 +msgid "Freedesktop icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:656 +msgid "Freedesktop icon theme." +msgstr "" + +#: gnu/packages/gnome.scm:683 +msgid "GNOME desktop notification library" +msgstr "" + +#: gnu/packages/gnome.scm:685 +msgid "" +"Libnotify is a library that sends desktop notifications to a\n" +"notification daemon, as defined in the Desktop Notifications spec. The= se\n" +"notifications can be used to inform the user about an event or display\= n" +"some form of information without getting in the user's way." +msgstr "" + +#: gnu/packages/gnome.scm:717 +msgid "GObject plugin system" +msgstr "" + +#: gnu/packages/gnome.scm:719 +msgid "" +"Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" +"the API." +msgstr "" + +#: gnu/packages/gnome.scm:748 +msgid "OpenGL extension to GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:749 +msgid "" +"GtkGLExt is an OpenGL extension to GTK+. It provides\n" +"additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" +"API add-ons to make GTK+ widgets OpenGL-capable." +msgstr "" + +#: gnu/packages/gnome.scm:792 +msgid "GTK+ rapid application development tool" +msgstr "" + +#: gnu/packages/gnome.scm:793 +msgid "" +"Glade is a rapid application development (RAD) tool to\n" +"enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" +"the GNOME desktop environment." +msgstr "" + +#: gnu/packages/gnome.scm:818 +msgid "CSS2 parsing and manipulation library" +msgstr "" + +#: gnu/packages/gnome.scm:820 +msgid "" +"Libcroco is a standalone CSS2 parsing and manipulation library.\n" +"The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" +"XML/CSS rendering engine." +msgstr "" + +#: gnu/packages/gnome.scm:853 +msgid "GNOME's Structured File Library" +msgstr "" + +#: gnu/packages/gnome.scm:855 +msgid "" +"Libgsf aims to provide an efficient extensible I/O abstraction for\n" +"dealing with different structured file formats." +msgstr "" + +#: gnu/packages/gnome.scm:920 +msgid "Render SVG files using Cairo" +msgstr "" + +#: gnu/packages/gnome.scm:922 +msgid "" +"Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:946 +msgid "Create trees of CORBA Interface Definition Language files" +msgstr "" + +#: gnu/packages/gnome.scm:947 +msgid "" +"Libidl is a library for creating trees of CORBA Interface\n" +"Definition Language (idl) files, which is a specification for defining\= n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" +"GNOME project, and the primary means of libidl distribution). However,= the\n" +"functionality was designed to be as reusable and portable as possible." +msgstr "" + +#: gnu/packages/gnome.scm:987 +msgid "CORBA 2.4-compliant Object Request Broker" +msgstr "" + +#: gnu/packages/gnome.scm:988 +msgid "" +"ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" +"featuring mature C, C++ and Python bindings." +msgstr "" + +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" +msgstr "" + +#: gnu/packages/gnome.scm:1035 +msgid "" +"Bonobo is a framework for creating reusable components for\n" +"use in GNOME applications, built on top of CORBA." +msgstr "" + +#: gnu/packages/gnome.scm:1066 +msgid "Store application preferences" +msgstr "" + +#: gnu/packages/gnome.scm:1067 +msgid "" +"Gconf is a system for storing application preferences. It\n" +"is intended for user preferences; not arbitrary data storage." +msgstr "" + +#: gnu/packages/gnome.scm:1089 +msgid "Base MIME and Application database for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1090 +msgid "" +"GNOME Mime Data is a module which contains the base MIME\n" +"and Application database for GNOME. The data stored by this module is\= n" +"designed to be accessed through the MIME functions in GnomeVFS." +msgstr "" + +#: gnu/packages/gnome.scm:1134 +msgid "Access files and folders in GNOME applications" +msgstr "" + +#: gnu/packages/gnome.scm:1136 +msgid "" +"GnomeVFS is the core library used to access files and folders in GNOME\= n" +"applications. It provides a file system abstraction which allows " +"applications\n" +"to access local and remote files with a single consistent API." +msgstr "" + +#: gnu/packages/gnome.scm:1180 +msgid "Useful routines for building applications" +msgstr "" + +#: gnu/packages/gnome.scm:1181 +msgid "" +"The libgnome library provides a number of useful routines\n" +"for building modern applications, including session management, activat= ion " +"of\n" +"files and URIs, and displaying help." +msgstr "" + +#: gnu/packages/gnome.scm:1204 +#, fuzzy +msgid "2D drawing library" +msgstr "Biblioth=C3=A8que de rendu PDF" + +#: gnu/packages/gnome.scm:1205 +msgid "" +"Libart is a 2D drawing library intended as a\n" +"high-quality vector-based 2D library with antialiasing and alpha compos= ition." +msgstr "" + +#: gnu/packages/gnome.scm:1232 +msgid "Flexible widget for creating interactive structured graphics" +msgstr "" + +#: gnu/packages/gnome.scm:1233 +msgid "" +"The GnomeCanvas widget provides a flexible widget for\n" +"creating interactive structured graphics." +msgstr "" + +#: gnu/packages/gnome.scm:1257 +msgid "C++ bindings to the GNOME Canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:1258 +msgid "C++ bindings to the GNOME Canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:1289 +msgid "Additional widgets for applications" +msgstr "" + +#: gnu/packages/gnome.scm:1290 +msgid "" +"The libgnomeui library provides additional widgets for\n" +"applications. Many of the widgets from libgnomeui have already been\n" +"ported to GTK+." +msgstr "" + +#: gnu/packages/gnome.scm:1316 +msgid "Load glade interfaces and access the glade built widgets" +msgstr "" + +#: gnu/packages/gnome.scm:1317 +msgid "" +"Libglade is a library that provides interfaces for loading\n" +"graphical interfaces described in glade files and for accessing the\n" +"widgets built in the loading process." +msgstr "" + +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 +msgid "Printing framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1356 +msgid "" +"GNOME-print was a printing framework for GNOME. It has been deprecated= \n" +"since ca. 2006, when GTK+ itself incorporated printing support." +msgstr "" + +#: gnu/packages/gnome.scm:1431 +msgid "Some user interface controls using Bonobo" +msgstr "" + +#: gnu/packages/gnome.scm:1432 +msgid "" +"The Bonobo UI library provides a number of user interface\n" +"controls using the Bonobo component framework." +msgstr "" + +#: gnu/packages/gnome.scm:1456 +msgid "Window Navigator Construction Kit" +msgstr "" + +#: gnu/packages/gnome.scm:1458 +msgid "" +"Libwnck is the Window Navigator Construction Kit, a library for use in\= n" +"writing pagers, tasklists, and more generally applications that are dea= ling\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" +"Hints specification (EWMH)." +msgstr "" + +#: gnu/packages/gnome.scm:1511 +msgid "Document-centric objects and utilities" +msgstr "" + +#: gnu/packages/gnome.scm:1512 +msgid "A GLib/GTK+ set of document-centric objects and utilities." +msgstr "" + +#: gnu/packages/gnome.scm:1594 +msgid "Spreadsheet application" +msgstr "" + +#: gnu/packages/gnome.scm:1596 +msgid "" +"GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" +"interoperable with other spreadsheet applications. It has a vast array= of\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" +"and non-linear solvers, statistical analysis, and telecommunication\n" +"engineering." +msgstr "" + +#: gnu/packages/gnome.scm:1642 +msgid "Default GNOME 3 themes" +msgstr "" + +#: gnu/packages/gnome.scm:1644 +msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." +msgstr "" + +#: gnu/packages/gnome.scm:1677 +msgid "Manage encryption keys and passwords in the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:1679 +msgid "" +"Seahorse is a GNOME application for managing encryption keys and\n" +"passwords in the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 +msgid "Compiler for the GObject type system" +msgstr "" + +#: gnu/packages/gnome.scm:1717 +msgid "" +"Vala is a programming language that aims to bring modern programming\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" +"requirements and without using a different ABI compared to applications= and\n" +"libraries written in C." +msgstr "" + +#: gnu/packages/gnome.scm:1747 +msgid "Virtual Terminal Emulator" +msgstr "" + +#: gnu/packages/gnome.scm:1749 +msgid "" +"VTE is a library (libvte) implementing a terminal emulator widget for\n= " +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" +"gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" +"editors, IDEs, etc." +msgstr "" + +#: gnu/packages/gnome.scm:1847 +msgid "Low-level GNOME configuration system" +msgstr "" + +#: gnu/packages/gnome.scm:1848 +msgid "" +"Dconf is a low-level configuration system. Its main purpose\n" +"is to provide a backend to GSettings on platforms that don't already ha= ve\n" +"configuration storage systems." +msgstr "" + +#: gnu/packages/gnome.scm:1882 +msgid "" +"JSON-GLib is a C library based on GLib providing serialization and\n" +"deserialization support for the JavaScript Object Notation (JSON) forma= t\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" +"and objects." +msgstr "" + +#: gnu/packages/gnome.scm:1921 +msgid "High-level API for X Keyboard Extension" +msgstr "" + +#: gnu/packages/gnome.scm:1923 +msgid "" +"LibXklavier is a library providing high-level API for X Keyboard\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" +"indicators etc)." +msgstr "" + +#: gnu/packages/gnome.scm:1951 +msgid "Python bindings to librsvg" +msgstr "" + +#: gnu/packages/gnome.scm:1953 +msgid "" +"This packages provides Python bindings to librsvg, the SVG rendering\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2002 +msgid "Network-related GIO modules" +msgstr "" + +#: gnu/packages/gnome.scm:2004 +msgid "" +"This package contains various network related extensions for the GIO\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2035 +msgid "RESTful web api query library" +msgstr "" + +#: gnu/packages/gnome.scm:2037 +msgid "" +"This library was designed to make it easier to access web services that= \n" +"claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" +"libxml to ease remote use of the RESTful API." +msgstr "" + +#: gnu/packages/gnome.scm:2106 +msgid "GLib-based HTTP Library" +msgstr "" + +#: gnu/packages/gnome.scm:2108 +msgid "" +"LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " +"and the GLib main loop, to integrate well with GNOME applications." +msgstr "" + +#: gnu/packages/gnome.scm:2154 +msgid "GObject bindings for \"Secret Service\" API" +msgstr "" + +#: gnu/packages/gnome.scm:2156 +msgid "" +"Libsecret is a GObject based library for storing and retrieving passwor= ds\n" +"and other secrets. It communicates with the \"Secret Service\" using D= Bus." +msgstr "" + +#: gnu/packages/gnome.scm:2200 +msgid "Minesweeper game" +msgstr "" + +#: gnu/packages/gnome.scm:2202 +msgid "" +"Mines (previously gnomine) is a puzzle game where you locate mines\n" +"floating in an ocean using only your brain and a little bit of luck." +msgstr "" + +#: gnu/packages/gnome.scm:2246 +msgid "Terminal emulator" +msgstr "" + +#: gnu/packages/gnome.scm:2248 +msgid "" +"GNOME Terminal is a terminal emulator application for accessing a\n" +"UNIX shell environment which can be used to run programs available on\n= " +"your system.\n" +"\n" +"It supports several profiles, multiple tabs and implements several\n" +"keyboard shortcuts." +msgstr "" + +#: gnu/packages/gnome.scm:2314 +msgid "Color management service" +msgstr "" + +#: gnu/packages/gnome.scm:2315 +msgid "" +"Colord is a system service that makes it easy to manage,\n" +"install and generate color profiles to accurately color manage input an= d\n" +"output devices." +msgstr "" + +#: gnu/packages/gnome.scm:2357 +msgid "Geolocation service" +msgstr "" + +#: gnu/packages/gnome.scm:2358 +msgid "" +"Geoclue is a D-Bus service that provides location\n" +"information. The primary goal of the Geoclue project is to make creati= ng\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" +"permission from user." +msgstr "" + +#: gnu/packages/gnome.scm:2393 +msgid "Geocoding and reverse-geocoding library" +msgstr "" + +#: gnu/packages/gnome.scm:2395 +msgid "" +"geocode-glib is a convenience library for geocoding (finding longitude,= \n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" +"coordinates) using the Nominatim service. geocode-glib caches requests= for\n" +"faster results and to avoid unnecessary server load." +msgstr "" + +#: gnu/packages/gnome.scm:2448 +msgid "System daemon for managing power devices" +msgstr "" + +#: gnu/packages/gnome.scm:2450 +msgid "" +"UPower is an abstraction for enumerating power devices,\n" +"listening to device events and querying history and statistics. Any\n" +"application or service on the system can access the org.freedesktop.UPo= wer\n" +"service via the system message bus." +msgstr "" + +#: gnu/packages/gnome.scm:2500 +msgid "Location, time zone, and weather library for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2502 +msgid "" +"libgweather is a library to access weather information from online\n" +"services for numerous locations." +msgstr "" + +#: gnu/packages/gnome.scm:2554 +msgid "GNOME settings daemon" +msgstr "" + +#: gnu/packages/gnome.scm:2556 +msgid "" +"This package contains the daemon responsible for setting the various\n" +"parameters of a GNOME session and the applications that run under it. = It\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" +"settings, themes, mouse settings, and startup of other daemons." +msgstr "" + +#: gnu/packages/gnome.scm:2592 +msgid "Library to parse and save media playlists for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2593 +msgid "" +"Totem-pl-parser is a GObjects-based library to parse and save\n" +"playlists in a variety of formats." +msgstr "" + +#: gnu/packages/gnome.scm:2627 +msgid "Solitaire card games" +msgstr "" + +#: gnu/packages/gnome.scm:2629 +msgid "" +"Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" +"which are easy to play with the aid of a mouse." +msgstr "" + +#: gnu/packages/gnome.scm:2653 +msgid "API documentation browser for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2655 +msgid "" +"Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " +"natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" +"throughout GNOME for API documentation)." +msgstr "" + +#: gnu/packages/gnome.scm:2716 +msgid "Object oriented GL/GLES Abstraction/Utility Layer" +msgstr "" + +#: gnu/packages/gnome.scm:2718 +msgid "" +"Cogl is a small library for using 3D graphics hardware to draw pretty\n= " +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" +"designed to make it easy to write orthogonal components that can render= \n" +"without stepping on each others toes." +msgstr "" + +#: gnu/packages/gnome.scm:2773 +msgid "Open GL based interactive canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 +msgid "" +"Clutter is an Open GL based interactive canvas library, designed for\n" +"creating fast, mainly 2D single window applications such as media box U= Is,\n" +"presentations, kiosk style applications and so on." +msgstr "" + +#: gnu/packages/gnome.scm:2802 +msgid "Open GL based interactive canvas library GTK+ widget" +msgstr "" + +#: gnu/packages/gnome.scm:2832 +msgid "Integration library for using GStreamer with Clutter" +msgstr "" + +#: gnu/packages/gnome.scm:2834 +msgid "" +"Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" +"It provides a GStreamer sink to upload frames to GL and an actor that\n= " +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" +"GL based interactive canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:2864 +msgid "C library providing a ClutterActor to display maps" +msgstr "" + +#: gnu/packages/gnome.scm:2866 +msgid "" +"libchamplain is a C library providing a ClutterActor to display maps.\n= " +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" +"such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." +msgstr "" + +#: gnu/packages/gnome.scm:2897 +msgid "Object mapper from GObjects to SQLite" +msgstr "" + +#: gnu/packages/gnome.scm:2899 +msgid "" +"Gom provides an object mapper from GObjects to SQLite. It helps you\n" +"write applications that need to store structured data as well as make " +"complex\n" +"queries upon that data." +msgstr "" + +#: gnu/packages/gnome.scm:2927 +msgid "Sliding block puzzles" +msgstr "" + +#: gnu/packages/gnome.scm:2929 +msgid "" +"GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" +"as possible!" +msgstr "" + +#: gnu/packages/gnome.scm:2980 +msgid "Framework for discovering and browsing media" +msgstr "" + +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 +msgid "" +"Grilo is a framework focused on making media discovery and browsing eas= y\n" +"for application developers." +msgstr "" + +#: gnu/packages/gnome.scm:3032 +msgid "Plugins for the Grilo media discovery library" +msgstr "" + +#: gnu/packages/gnome.scm:3109 +msgid "Simple media player for GNOME based on GStreamer" +msgstr "" + +#: gnu/packages/gnome.scm:3110 +msgid "" +"Totem is a simple yet featureful media player for GNOME\n" +"which can read a large number of file formats." +msgstr "" + +#: gnu/packages/gnome.scm:3199 +msgid "Music player for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3200 +msgid "" +"Rhythmbox is a music playing application for GNOME. It\n" +"supports playlists, song ratings, and any codecs installed through gstr= eamer." +msgstr "" + +#: gnu/packages/gnome.scm:3250 +msgid "GNOME image viewer" +msgstr "" + +#: gnu/packages/gnome.scm:3251 +msgid "" +"Eye of GNOME is the GNOME image viewer. It\n" +"supports image conversion, rotation, and slideshows." +msgstr "" + +#: gnu/packages/gnome.scm:3276 +#, fuzzy +msgid "GObject bindings for libudev" +msgstr "Bindings Guile pour ncurses" + +#: gnu/packages/gnome.scm:3278 +msgid "" +"This library provides GObject bindings for libudev. It was originally\= n" +"part of udev-extras, then udev, then systemd. It's now a project on it= s own." +msgstr "" + +#: gnu/packages/gnome.scm:3324 +msgid "Userspace virtual filesystem for GIO" +msgstr "" + +#: gnu/packages/gnome.scm:3326 +msgid "" +"GVFS is a userspace virtual filesystem designed to work with the I/O\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" +"to all applications using the GIO API. It also supports exposing the G= VFS\n" +"mounts to non-GIO applications using FUSE.\n" +"\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" +"DAV, and others." +msgstr "" + +#: gnu/packages/gnome.scm:3372 +#, fuzzy +msgid "GLib binding for libusb1" +msgstr "Bindings Guile pour ncurses" + +#: gnu/packages/gnome.scm:3374 +msgid "" +"GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" +"asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" +"and integration into a mainloop. This makes it easy to integrate low l= evel\n" +"USB transfers with your high-level application or system daemon." +msgstr "" + +#: gnu/packages/gnome.scm:3411 +msgid "Document and image scanner" +msgstr "" + +#: gnu/packages/gnome.scm:3412 +msgid "" +"Simple Scan is an easy-to-use application, designed to let\n" +"users connect their scanner and quickly have the image/document in an\n= " +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" +"the same backend as XSANE uses. This means that all existing scanners w= ill\n" +"work and the interface is well tested." +msgstr "" + +#: gnu/packages/gnome.scm:3461 +msgid "GNOME web browser" +msgstr "" + +#: gnu/packages/gnome.scm:3463 +msgid "" +"Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " +"principles are simplicity and standards compliance." +msgstr "" + +#: gnu/packages/gnome.scm:3519 +msgid "D-Bus debugger" +msgstr "" + +#: gnu/packages/gnome.scm:3521 +msgid "" +"D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" +"of running programs and invoke methods on those interfaces." +msgstr "" + +#: gnu/packages/gnome.scm:3543 +msgid "XSL stylesheets for Yelp" +msgstr "" + +#: gnu/packages/gnome.scm:3545 +msgid "" +"Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" +"to format Docbook and Mallard documents." +msgstr "" + +#: gnu/packages/gnome.scm:3575 +msgid "GNOME help browser" +msgstr "" + +#: gnu/packages/gnome.scm:3577 +msgid "" +"Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" +"man, info, and HTML documents. It can locate documents according to th= e\n" +"freedesktop.org help system specification." +msgstr "" + +#: gnu/packages/gnome.scm:3605 +msgid "Yelp documentation tools" +msgstr "" + +#: gnu/packages/gnome.scm:3607 +msgid "" +"Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" +"manage, and publish documentation for Yelp and the web. Most of the he= avy\n" +"lifting is done by packages like yelp-xsl and itstool. This package ju= st\n" +"wraps things up in a developer-friendly way." +msgstr "" + +#: gnu/packages/gnome.scm:3644 +msgid "GObject collection library" +msgstr "" + +#: gnu/packages/gnome.scm:3646 +msgid "" +"Libgee is a utility library providing GObject-based interfaces and\n" +"classes for commonly used data structures." +msgstr "" + +#: gnu/packages/gnome.scm:3673 +msgid "GObject wrapper around the Exiv2 photo metadata library" +msgstr "" + +#: gnu/packages/gnome.scm:3675 +msgid "" +"Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" +"metadata in photo and video files of various formats." +msgstr "" + +#: gnu/packages/gnome.scm:3727 +msgid "Photo manager for GNOME 3" +msgstr "" + +#: gnu/packages/gnome.scm:3729 +msgid "" +"Shotwell is a digital photo manager designed for the GNOME desktop\n" +"environment. It allows you to import photos from disk or camera, organ= ize\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" +"share them with others via social networking and more." +msgstr "" + +#: gnu/packages/gnome.scm:3761 +msgid "Graphical archive manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3762 +msgid "" +"File Roller is an archive manager for the GNOME desktop\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" +"such as gzip tarballs." +msgstr "" + +#: gnu/packages/gnome.scm:3797 +msgid "Session manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +msgid "Javascript bindings for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "=C3=89diteur de flux" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +#, fuzzy +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "" +"Ce paquet fournit un dictionnaire pour le correcteur orthographique Asp= ell" + +#: gnu/packages/gnome.scm:4356 +msgid "Display manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +#, fuzzy +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" +"Ce paquet fournit des outils pour manipuler les syst=C3=A8mes de fichie= rs ext2/" +"ext3/ext4" + +#: gnu/packages/gnome.scm:4484 +msgid "Utilities to configure the GNOME desktop" +msgstr "" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +msgid "File manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +msgid "Disk usage analyzer for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 +msgid "Mozilla javascript engine" +msgstr "" + +#: gnu/packages/gnuzilla.scm:96 +msgid "" +"SpiderMonkey is Mozilla's JavaScript engine written\n" +"in C/C++." +msgstr "" + +#: gnu/packages/gnuzilla.scm:171 +msgid "Netscape API for system level and libc-like functions" +msgstr "" + +#: gnu/packages/gnuzilla.scm:172 +msgid "" +"Netscape Portable Runtime (NSPR) provides a\n" +"platform-neutral API for system level and libc-like functions. It is u= sed\n" +"in the Mozilla clients." +msgstr "" + +#: gnu/packages/gnuzilla.scm:268 +msgid "Network Security Services" +msgstr "" + +#: gnu/packages/gnuzilla.scm:270 +msgid "" +"Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" +"PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " +"standards." +msgstr "" + +#: gnu/packages/gnuzilla.scm:506 +msgid "Entirely free browser derived from Mozilla Firefox" +msgstr "" + +#: gnu/packages/gnuzilla.scm:508 +msgid "" +"IceCat is the GNU version of the Firefox browser. It is entirely free\= n" +"software, which does not recommend non-free plugins and addons. It als= o\n" +"features built-in privacy-protecting features." +msgstr "" + +#: gnu/packages/gtk.scm:87 +msgid "GNOME accessibility toolkit" +msgstr "" + +#: gnu/packages/gtk.scm:89 +msgid "" +"ATK provides the set of accessibility interfaces that are implemented\n= " +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" +"tools have full access to view and control running applications." +msgstr "" + +#: gnu/packages/gtk.scm:128 +#, fuzzy +msgid "2D graphics library" +msgstr "Biblioth=C3=A8que de rendu PDF" + +#: gnu/packages/gtk.scm:130 +msgid "" +"Cairo is a 2D graphics library with support for multiple output devices= .\n" +"Currently supported output targets include the X Window System (via bot= h\n" +"Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG f= ile\n" +"output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB= .\n" +"\n" +"Cairo is designed to produce consistent output on all output media whil= e\n" +"taking advantage of display hardware acceleration when available\n" +"eg. through the X Render Extension).\n" +"\n" +"The cairo API provides operations similar to the drawing operators of\n= " +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" +"B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" +"affine transformation (scale, rotation, shear, etc.)." +msgstr "" + +#: gnu/packages/gtk.scm:178 +msgid "OpenType text shaping engine" +msgstr "" + +#: gnu/packages/gtk.scm:180 +msgid "HarfBuzz is an OpenType text shaping engine." +msgstr "" + +#: gnu/packages/gtk.scm:211 +msgid "GNOME text and font handling library" +msgstr "" + +#: gnu/packages/gtk.scm:213 +msgid "" +"Pango is the core text and font handling library used in GNOME\n" +"applications. It has extensive support for the different writing syste= ms\n" +"used throughout the world." +msgstr "" + +#: gnu/packages/gtk.scm:239 +msgid "Obsolete pango functions" +msgstr "" + +#: gnu/packages/gtk.scm:240 +msgid "" +"Pangox was a X backend to pango. It is now obsolete and no\n" +"longer provided by recent pango releases. pangox-compat provides the\n= " +"functions which were removed." +msgstr "" + +#: gnu/packages/gtk.scm:276 +msgid "GTK+ widget for interactive graph-like environments" +msgstr "" + +#: gnu/packages/gtk.scm:278 +msgid "" +"Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" +"graph-like environments, e.g. modular synths or finite state machine\n" +"diagrams." +msgstr "" + +#: gnu/packages/gtk.scm:330 +msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" +msgstr "" + +#: gnu/packages/gtk.scm:332 +msgid "" +"GtkSourceView is a portable C library that extends the standard GTK+\n" +"framework for multiline text editing with support for configurable synt= ax\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" +"printing and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 +msgid "GNOME image loading and manipulation library" +msgstr "" + +#: gnu/packages/gtk.scm:431 +msgid "" +"GdkPixbuf is a library for image loading and manipulation developed\n" +"in the GNOME project." +msgstr "" + +#: gnu/packages/gtk.scm:474 +msgid "Assistive Technology Service Provider Interface, core components" +msgstr "" + +#: gnu/packages/gtk.scm:476 +msgid "" +"The Assistive Technology Service Provider Interface, core components,\n= " +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:509 +msgid "Assistive Technology Service Provider Interface, ATK bindings" +msgstr "" + +#: gnu/packages/gtk.scm:511 +msgid "" +"The Assistive Technology Service Provider Interface\n" +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:568 +msgid "Cross-platform toolkit for creating graphical user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:570 +msgid "" +"GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" +"graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" +"suitable for projects ranging from small one-off tools to complete\n" +"application suites." +msgstr "" + +#: gnu/packages/gtk.scm:705 +#, fuzzy +msgid "Cairo bindings for GNU Guile" +msgstr "Framework pour la construction de lecteurs GNU Guile" + +#: gnu/packages/gtk.scm:707 +msgid "" +"Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" +"Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" +"stable, providing a firm base on which to do graphics work. Finally, a= nd\n" +"importantly, it is pleasant to use. You get a powerful and well-mainta= ined\n" +"graphics library with all of the benefits of Scheme: memory management,= \n" +"exceptions, macros, and a dynamic programming environment." +msgstr "" + +#: gnu/packages/gtk.scm:747 +msgid "Render SVG images using Cairo from Guile" +msgstr "" + +#: gnu/packages/gtk.scm:749 +msgid "" +"Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" +"images onto Cairo surfaces." +msgstr "" + +#: gnu/packages/gtk.scm:793 +#, fuzzy +msgid "Create SVG or PDF presentations in Guile" +msgstr "Cr=C3=A9ation de diagrammes et de graphiques dans Guile" + +#: gnu/packages/gtk.scm:795 +msgid "" +"Guile-Present defines a declarative vocabulary for presentations,\n" +"together with tools to render presentation documents as SVG or PDF.\n" +"Guile-Present can be used to make presentations programmatically, but a= lso\n" +"includes a tools to generate PDF presentations out of Org mode and Texi= nfo\n" +"documents." +msgstr "" + +#: gnu/packages/gtk.scm:829 +msgid "C++ bindings to the Cairo 2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:831 +msgid "" +"Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " +"library." +msgstr "" + +#: gnu/packages/gtk.scm:855 +msgid "C++ interface to the Pango text rendering library" +msgstr "" + +#: gnu/packages/gtk.scm:857 +msgid "" +"Pangomm provides a C++ programming interface to the Pango text renderin= g\n" +"library." +msgstr "" + +#: gnu/packages/gtk.scm:878 +msgid "C++ interface to the ATK accessibility library" +msgstr "" + +#: gnu/packages/gtk.scm:880 +msgid "" +"ATKmm provides a C++ programming interface to the ATK accessibility\n" +"toolkit." +msgstr "" + +#: gnu/packages/gtk.scm:907 +msgid "C++ interface to the GTK+ graphical user interface library" +msgstr "" + +#: gnu/packages/gtk.scm:909 +msgid "" +"gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" +"extensive documentation, including API reference and a tutorial." +msgstr "" + +#: gnu/packages/gtk.scm:968 +msgid "Python bindings for cairo" +msgstr "" + +#: gnu/packages/gtk.scm:970 +msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." +msgstr "" + +#: gnu/packages/gtk.scm:1053 +msgid "Python bindings for GTK+" +msgstr "" + +#: gnu/packages/gtk.scm:1055 +msgid "" +"PyGTK allows you to write full featured GTK programs in Python. It is\= n" +"targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" +"write GNOME applications." +msgstr "" + +#: gnu/packages/gtk.scm:1086 +msgid "Library for minimalistic gtk+3 user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:1087 +msgid "" +"Girara is a library that implements a user interface that\n" +"focuses on simplicity and minimalism. Currently based on GTK+, a\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" +"main components: a so-called view widget that represents the actual\n" +"application, an input bar that is used to execute commands of the\n" +"application and the status bar which provides the user with current\n" +"information." +msgstr "" + +#: gnu/packages/gtk.scm:1130 +msgid "Documentation generator from C source code" +msgstr "" + +#: gnu/packages/gtk.scm:1132 +msgid "" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" +"can also be used to document application code." +msgstr "" + +#: gnu/packages/gtk.scm:1159 +msgid "Theming engines for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 +msgid "Scheme implementation intended especially for extensions" +msgstr "Implantation de Scheme sp=C3=A9cialement destin=C3=A9e aux exten= sions" + +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 +msgid "" +"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" +"official extension language of the GNU system. It is an implementation= of\n" +"the Scheme language which can be easily embedded in other applications = to\n" +"provide a convenient means of extending the functionality of the " +"application\n" +"without requiring the source code to be rewritten." +msgstr "" +"Guile (GNU Ubiquitous Intelligent Langage for Extensions) est le langag= e\n" +"d'extension officiel du syst=C3=A8me GNU. Il s'agit d'une implantation = du " +"langage\n" +"Scheme qui peut =C3=AAtre facilement incluse dans d'autres applications= pour " +"faciliter\n" +"l'ajout de fonctionnalit=C3=A9s sans avoir =C3=A0 r=C3=A9=C3=A9crire le= code source." + +#: gnu/packages/guile.scm:213 +msgid "Snapshot of what will become version 2.2 of GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 +msgid "Framework for building readers for GNU Guile" +msgstr "Framework pour la construction de lecteurs GNU Guile" + +#: gnu/packages/guile.scm:327 +msgid "" +"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"\n" +"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" +"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" +"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" +"document syntax.\n" +"\n" +"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" +"hopefully more powerful and flexible (for instance, one may instantiate= as\n" +"many readers as needed)." +msgstr "" +"Guile-Reader est un framework permettant de construire des lecteurs pou= r\n" +"GNU Guile. L'id=C3=A9e est de rendre facile la construction de proc=C3=A9= dures " +"=C3=A9tendant\n" +"la proc=C3=A9dure de lecture de Guile. Il est possible d'=C3=A9crire fa= cilement des " +"lecteurs\n" +"supportant de nombreuses syntaxes. Par exemple, Guile-Reader est utilis= =C3=A9 " +"pour\n" +"implanter la syntaxe de documents bas=C3=A9s sur R5RS de Skribilo.\n" +"\n" +"L'approche de Guile-Reader est similaire =C3=A0 la table de lecture de = Lisp, " +"mais\n" +"plus puissante et plus flexible (il est par exemple possible d'instanci= er " +"autant\n" +"de lecteurs que n=C3=A9cessaires)." + +#: gnu/packages/guile.scm:376 +msgid "Guile bindings to ncurses" +msgstr "Bindings Guile pour ncurses" + +#: gnu/packages/guile.scm:378 +msgid "" +"guile-ncurses provides Guile language bindings for the ncurses\n" +"library." +msgstr "guile-ncurses fournit un binding Guile pour la bilioth=C3=A8que = ncurses." + +#: gnu/packages/guile.scm:398 +msgid "Run jobs at scheduled times" +msgstr "Plannification de t=C3=A2ches" + +#: gnu/packages/guile.scm:400 +msgid "" +"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" +"Guile, so its configuration can be written in Scheme; the original cron= \n" +"format is also supported." +msgstr "" +"GNU Mcron est un rempla=C3=A7ant =C3=A0 Vixie cron. Il est utilis=C3=A9= pour la " +"planification\n" +"de t=C3=A2ches =C3=A0 intervalles r=C3=A9guliers (toutes les heures, to= us les lundi, " +"etc...).\n" +"Mcron est =C3=A9crit en Guile et peut donc =C3=AAtre configur=C3=A9 en = Scheme ; le format " +"cron\n" +"original est aussi support=C3=A9." + +#: gnu/packages/guile.scm:428 +msgid "Collection of useful Guile Scheme modules" +msgstr "Collection de modules Scheme utiles pour Guile" + +#: gnu/packages/guile.scm:430 +msgid "" +"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" +"modules, allowing for people to cooperate integrating their generic Gui= le\n" +"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" +"for Guile\"." +msgstr "" +"Guile-Lib est con=C3=A7ue comme une collection de modules Scheme pour G= uile " +"permettant\n" +"aux utilisateurs d'int=C3=A9grer leurs modules Guile au sein d'une bilb= ioth=C3=A9que " +"commune\n" +"et coh=C3=A9rente. Voyez Guile-Lib comme une version plus simple de CPA= N limit=C3=A9e " +"=C3=A0 Guile." + +#: gnu/packages/guile.scm:461 +msgid "JSON module for Guile" +msgstr "Module JSON pour Guile" + +#: gnu/packages/guile.scm:463 +msgid "" +"Guile-json supports parsing and building JSON documents according to th= e\n" +"http:://json.org specification. These are the main features:\n" +"- Strictly complies to http://json.org specification.\n" +"- Build JSON documents programmatically via macros.\n" +"- Unicode support for strings.\n" +"- Allows JSON pretty printing." +msgstr "" +"Guile-json supporte l'analyse et la construction de documents JSON " +"respectant\n" +"la sp=C3=A9cification http:://json.org . Les principales fonctionnalit=C3= =A9es " +"propos=C3=A9es\n" +"sont les suivantes :\n" +"- stricte conformit=C3=A9 =C3=A0 la sp=C3=A9cification http://json.org = ;\n" +"- cr=C3=A9ation de documents JSON par programmation via macros ;\n" +"- support d'unicode pour les chaines de caract=C3=A8re ;\n" +"- formatage =C3=A9l=C3=A9gant." + +#: gnu/packages/guile.scm:534 +msgid "MiniKanren declarative logic system, packaged for Guile" +msgstr "" + +#: gnu/packages/guile.scm:536 +msgid "" +"MiniKanren is a relational programming extension to the Scheme\n" +"programming Language, written as a smaller version of Kanren suitable f= or\n" +"pedagogical purposes. It is featured in the book, The Reasoned Schemer= ,\n" +"written by Dan Friedman, William Byrd, and Oleg Kiselyov.\n" +"\n" +"This is Ian Price's r6rs packaged version of miniKanren, which deviates= \n" +"slightly from miniKanren mainline.\n" +"\n" +"See http://minikanren.org/ for more on miniKanren generally." +msgstr "" + +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 +msgid "Guile bindings to the GDBM library via Guile's FFI" +msgstr "" + +#: gnu/packages/guile.scm:687 +msgid "" +"Guile bindings to the GDBM key-value storage system, using\n" +"Guile's foreign function interface." +msgstr "" + +#: gnu/packages/guile.scm:727 +msgid "Functional static site generator" +msgstr "" + +#: gnu/packages/guile.scm:728 +msgid "" +"Haunt is a static site generator written in Guile\n" +"Scheme. Haunt features a functional build system and an extensible\n" +"interface for reading articles in any format." +msgstr "" + +#: gnu/packages/guile.scm:758 +msgid "Redis client library for Guile" +msgstr "" + +#: gnu/packages/guile.scm:759 +msgid "" +"Guile-redis provides a Scheme interface to the Redis\n" +"key-value cache and store." +msgstr "" + +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" +msgstr "" + +#: gnu/packages/guile.scm:834 +msgid "" +"Wisp is a syntax for Guile which provides a Python-like\n" +"whitespace-significant language. It may be easier on the eyes for some= \n" +"users and in some situations." +msgstr "" + +#: gnu/packages/guile.scm:867 +msgid "2D/3D game engine for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +#, fuzzy +msgid "Generate C bindings for Guile" +msgstr "Framework pour la construction de lecteurs GNU Guile" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 +msgid "Create, edit, compose, or convert bitmap images" +msgstr "" + +#: gnu/packages/imagemagick.scm:103 +msgid "" +"ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" +"text, lines, polygons, ellipses and B=C3=A9zier curves." +msgstr "" + +#: gnu/packages/imagemagick.scm:147 +msgid "Perl interface to ImageMagick" +msgstr "" + +#: gnu/packages/imagemagick.scm:148 +msgid "" +"This Perl extension allows the reading, manipulation and\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" +"script." +msgstr "" + +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." +msgstr "" + +#: gnu/packages/image.scm:71 +#, fuzzy +msgid "Library for handling PNG files" +msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" + +#: gnu/packages/image.scm:73 +msgid "" +"Libpng is the official PNG (Portable Network Graphics) reference\n" +"library. It supports almost all PNG features and is extensible." +msgstr "" + +#: gnu/packages/image.scm:89 +#, fuzzy +msgid "Library for handling JPEG files" +msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" + +#: gnu/packages/image.scm:91 +msgid "" +"Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" +"JPEG is a standardized compression method for full-color and gray-scale= \n" +"images.\n" +"The included programs provide conversion between the JPEG format and\n" +"image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." +msgstr "" + +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 +#, fuzzy +msgid "Library for handling TIFF files" +msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" + +#: gnu/packages/image.scm:159 +msgid "" +"Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" +"used for storing image data.\n" +"Included are a library, libtiff, for reading and writing TIFF and a sma= ll\n" +"collection of tools for doing simple manipulations of TIFF images." +msgstr "" + +#: gnu/packages/image.scm:202 +msgid "Library for reading images in the Microsoft WMF format" +msgstr "" + +#: gnu/packages/image.scm:204 +msgid "" +"libwmf is a library for reading vector images in Microsoft's native\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" +"the W3C's XML-based Scaleable Vector Graphic (SVG) format." +msgstr "" + +#: gnu/packages/image.scm:271 +msgid "Library and tools for image processing and analysis" +msgstr "" + +#: gnu/packages/image.scm:273 +msgid "" +"Leptonica is a C library and set of command-line tools for efficient\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" +"scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" +"arithmetic ops." +msgstr "" + +#: gnu/packages/image.scm:296 +msgid "Decoder of the JBIG2 image compression format" +msgstr "" + +#: gnu/packages/image.scm:298 +msgid "" +"JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" +"monochrome) images at moderately high resolution, and in particular sca= nned\n" +"paper documents. In this domain it is very efficient, offering compres= sion\n" +"ratios on the order of 100:1.\n" +"\n" +"This is a decoder only implementation, and currently is in the alpha\n" +"stage, meaning it doesn't completely work yet. However, it is\n" +"maintaining parity with available encoders, so it is useful for real\n" +"work." +msgstr "" + +#: gnu/packages/image.scm:333 +msgid "JPEG 2000 codec" +msgstr "" + +#: gnu/packages/image.scm:335 +msgid "" +"The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" +"been developed in order to promote the use of JPEG 2000, the new\n" +"still-image compression standard from the Joint Photographic Experts\n" +"Group (JPEG).\n" +"\n" +"In addition to the basic codec, various other features are under\n" +"development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats= ,\n" +"an indexing tool useful for the JPIP protocol, JPWL-tools for\n" +"error-resilience, a Java-viewer for j2k-images, ..." +msgstr "" + +#: gnu/packages/image.scm:414 +#, fuzzy +msgid "Tools and library for working with GIF images" +msgstr "Biblioth=C3=A8que pour travailler avec les possibilit=C3=A9s de = POSIX" + +#: gnu/packages/image.scm:416 +msgid "" +"GIFLIB is a library for reading and writing GIF images. It is API and\= n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" +"algorithm was patented. Tools are also included to convert, manipulate= ,\n" +"compose, and analyze GIF images." +msgstr "" + +#: gnu/packages/image.scm:437 +#, fuzzy +msgid "GIF decompression library" +msgstr "Biblioth=C3=A8que de rendu PDF" + +#: gnu/packages/image.scm:439 +msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." +msgstr "" + +#: gnu/packages/image.scm:468 +msgid "Loading, saving, rendering and manipulating image files" +msgstr "" + +#: gnu/packages/image.scm:470 +msgid "" +"Imlib2 is a library that does image file loading and saving as well as\= n" +"rendering, manipulation, arbitrary polygon support, etc.\n" +"\n" +"It does ALL of these operations FAST. Imlib2 also tries to be highly\n= " +"intelligent about doing them, so writing naive programs can be done eas= ily,\n" +"without sacrificing speed.\n" +"\n" +"This is a complete rewrite over the Imlib 1.x series. The architecture= is\n" +"more modular, simple, and flexible." +msgstr "" + +#: gnu/packages/image.scm:498 +msgid "Wrapper library for imlib2" +msgstr "" + +#: gnu/packages/image.scm:500 +msgid "" +"Giblib is a simple library which wraps imlib2's context API, avoiding\n= " +"all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" +"supplies a generic doubly-linked list and some string functions." +msgstr "" + +#: gnu/packages/image.scm:540 +msgid "Library for handling popular graphics image formats" +msgstr "" + +#: gnu/packages/image.scm:542 +msgid "" +"FreeImage is a library for developers who would like to support popular= \n" +"graphics image formats like PNG, BMP, JPEG, TIFF and others." +msgstr "" + +#: gnu/packages/image.scm:592 +msgid "Computer vision library" +msgstr "" + +#: gnu/packages/image.scm:594 +msgid "" +"VIGRA stands for Vision with Generic Algorithms. It is an image\n" +"processing and analysis library that puts its main emphasis on customiz= able\n" +"algorithms and data structures. It is particularly strong for\n" +"multi-dimensional image processing." +msgstr "" + +#: gnu/packages/image.scm:625 +msgid "Lossless and lossy image compression" +msgstr "" + +#: gnu/packages/image.scm:627 +msgid "" +"WebP is a new image format that provides lossless and lossy compression= \n" +"for images. WebP lossless images are 26% smaller in size compared to\n= " +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" +"equivalent SSIM index. WebP supports lossless transparency (also known= as\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" +"to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" +"channels." +msgstr "" + +#: gnu/packages/image.scm:655 +#, fuzzy +msgid "Library for handling MNG files" +msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +msgid "Library for manipulating many image formats" +msgstr "" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" +msgstr "" + +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." +msgstr "" + +#: gnu/packages/inkscape.scm:88 +msgid "Vector graphics editor" +msgstr "=C3=89diteur graphique vectoriel" + +#: gnu/packages/inkscape.scm:89 +msgid "" +"Inkscape is a vector graphics editor. What sets Inkscape\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" +"as the native format." +msgstr "" +"Inkscape est un =C3=A9diteur graphique vectoriel. Ce qui diff=C3=A9renc= ie Inkscape\n" +"est son utilisation du format SVG, un standard W3C bas=C3=A9 sur XML, c= omme " +"format natif." + +#: gnu/packages/jemalloc.scm:47 +msgid "General-purpose scalable concurrent malloc implementation" +msgstr "" + +#: gnu/packages/jemalloc.scm:49 +msgid "" +"This library providing a malloc(3) implementation that emphasizes\n" +"fragmentation avoidance and scalable concurrency support." +msgstr "" + +#: gnu/packages/key-mon.scm:65 +msgid "Show keyboard and mouse status" +msgstr "" + +#: gnu/packages/key-mon.scm:67 +msgid "" +"The key-mon utility displays the current keyboard and mouse status.\n" +"This is useful for teaching and screencasts." +msgstr "" + +#: gnu/packages/less.scm:41 +msgid "Paginator for terminals" +msgstr "" + +#: gnu/packages/less.scm:43 +msgid "" +"GNU less is a pager, a program that allows you to view large amounts\n" +"of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" +"text editors." +msgstr "" + +#: gnu/packages/lesstif.scm:47 +msgid "Clone of the Motif toolkit for the X window system" +msgstr "" + +#: gnu/packages/lesstif.scm:48 +msgid "Clone of the Motif toolkit for the X window system." +msgstr "" + +#: gnu/packages/libreoffice.scm:86 +msgid "General purpose formula parser and interpreter" +msgstr "" + +#: gnu/packages/libreoffice.scm:87 +msgid "" +"Ixion is a library for calculating the results of formula\n" +"expressions stored in multiple named targets, or \"cells\". The cells = can\n" +"be referenced from each other, and the library takes care of resolving\= n" +"their dependencies automatically upon calculation." +msgstr "" + +#: gnu/packages/libreoffice.scm:112 +msgid "File import filter library for spreadsheet documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:113 +msgid "" +"Orcus is a library that provides a collection of standalone\n" +"file processing filters. It is currently focused on providing filters = for\n" +"spreadsheet documents. The library includes import filters for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" +"CSV, CSS and XML." +msgstr "" + +#: gnu/packages/libreoffice.scm:147 +msgid "Document importer for office suites" +msgstr "" + +#: gnu/packages/libreoffice.scm:148 +msgid "" +"Librevenge is a base library for writing document import\n" +"filters. It has interfaces for text documents, vector graphics,\n" +"spreadsheets and presentations." +msgstr "" + +#: gnu/packages/libreoffice.scm:173 +msgid "Library for importing WordPerfect documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:174 +msgid "" +"Libwpd is a C++ library designed to help process\n" +"WordPerfect documents. It is most commonly used to import such documen= ts\n" +"into other word processors." +msgstr "" + +#: gnu/packages/libreoffice.scm:206 +msgid "Library for import of reflowable e-book formats" +msgstr "" + +#: gnu/packages/libreoffice.scm:207 +msgid "" +"Libe-book is a library and a set of tools for reading and\n" +"converting various reflowable e-book formats. Currently supported are:= \n" +"Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped file= s),\n" +"PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled\n" +"cellphones), TCR (simple compressed text format), TealDoc, zTXT,\n" +"ZVR (simple compressed text format)." +msgstr "" + +#: gnu/packages/libreoffice.scm:236 +msgid "Library and tools for the WordPerfect Graphics format" +msgstr "" + +#: gnu/packages/libreoffice.scm:237 +msgid "" +"The libwpg project provides a library and tools for\n" +"working with graphics in the WPG (WordPerfect Graphics) format." +msgstr "" + +#: gnu/packages/libreoffice.scm:278 +msgid "CMIS client library" +msgstr "" + +#: gnu/packages/libreoffice.scm:279 +msgid "" +"LibCMIS is a C++ client library for the CMIS interface. It\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" +"as Alfresco or Nuxeo." +msgstr "" + +#: gnu/packages/libreoffice.scm:310 +#, fuzzy +msgid "Library for parsing the AbiWord format" +msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" + +#: gnu/packages/libreoffice.scm:311 +msgid "" +"Libabw is a library that parses the file format of\n" +"AbiWord documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:341 +msgid "Library for parsing the CorelDRAW format" +msgstr "" + +#: gnu/packages/libreoffice.scm:342 +msgid "" +"Libcdr is a library that parses the file format of\n" +"CorelDRAW documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:371 +msgid "Library for parsing the Apple Keynote format" +msgstr "" + +#: gnu/packages/libreoffice.scm:372 +msgid "" +"Libetonyek is a library that parses the file format of\n" +"Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." +msgstr "" + +#: gnu/packages/libreoffice.scm:389 +#, fuzzy +msgid "Text Categorization library" +msgstr "Biblioth=C3=A8que d'abstraction de source de donn=C3=A9es" + +#: gnu/packages/libreoffice.scm:390 +msgid "" +"Libexttextcat is an N-Gram-Based Text Categorization\n" +"library primarily intended for language guessing." +msgstr "" + +#: gnu/packages/libreoffice.scm:416 +msgid "Library for parsing the FreeHand format" +msgstr "" + +#: gnu/packages/libreoffice.scm:417 +msgid "" +"Libfreehand is a library that parses the file format of\n" +"Aldus/Macromedia/Adobe FreeHand documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:443 +msgid "Library for parsing the Microsoft Publisher format" +msgstr "" + +#: gnu/packages/libreoffice.scm:444 +msgid "" +"Libmspub is a library that parses the file format of\n" +"Microsoft Publisher documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:472 +msgid "Library for parsing the PageMaker format" +msgstr "" + +#: gnu/packages/libreoffice.scm:473 +msgid "" +"Libpagemaker is a library that parses the file format of\n" +"Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" +"created by PageMaker version 6.x and 7." +msgstr "" + +#: gnu/packages/libreoffice.scm:508 +msgid "Library for parsing the Microsoft Visio format" +msgstr "" + +#: gnu/packages/libreoffice.scm:509 +msgid "" +"Libvisio is a library that parses the file format of\n" +"Microsoft Visio documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:537 +msgid "ODF (Open Document Format) library" +msgstr "" + +#: gnu/packages/libreoffice.scm:538 +msgid "" +"Libodfgen is a library for generating documents in the\n" +"Open Document Format (ODF). It provides generator implementations for = all\n" +"document interfaces supported by librevenge:\n" +"text documents, vector drawings, presentations and spreadsheets." +msgstr "" + +#: gnu/packages/libreoffice.scm:568 +msgid "Import library for some old Macintosh text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:569 +msgid "" +"Libmwaw contains some import filters for old Macintosh\n" +"text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" +"spreadsheet documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:598 +msgid "Import library for Microsoft Works text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:599 +msgid "" +"Libwps is a library for importing files in the Microsoft\n" +"Works word processor file format." +msgstr "" + +#: gnu/packages/libreoffice.scm:617 +msgid "" +"Hunspell is a spell checker and morphological analyzer\n" +"library and program designed for languages with rich morphology and com= plex\n" +"word compounding or character encoding." +msgstr "" + +#: gnu/packages/libreoffice.scm:638 +#, fuzzy +msgid "Hyphenation library" +msgstr "Biblioth=C3=A8que de rendu PDF" + +#: gnu/packages/libreoffice.scm:639 +msgid "" +"Hyphen is a hyphenation library using TeX hyphenation\n" +"patterns, which are pre-processed by a perl script." +msgstr "" + +#: gnu/packages/libreoffice.scm:662 +msgid "Thesaurus" +msgstr "" + +#: gnu/packages/libreoffice.scm:663 +msgid "" +"MyThes is a simple thesaurus that uses a structured text\n" +"data file and an index file with binary search to look up words and phr= ases\n" +"and to return information on pronunciations, meanings and synonyms." +msgstr "" + +#: gnu/packages/libreoffice.scm:829 +msgid "Office suite" +msgstr "" + +#: gnu/packages/libreoffice.scm:830 +msgid "" +"LibreOffice is a comprehensive office suite. It contains\n" +"a number of components: Writer, a word processor; Calc, a spreadsheet\n= " +"application; Impress, a presentation engine; Draw, a drawing and\n" +"flowcharting application; Base, a database and database frontend;\n" +"Math for editing mathematics." +msgstr "" + +#: gnu/packages/linux.scm:155 +msgid "GNU Linux-Libre kernel headers" +msgstr "Fichiers d'en-t=C3=AAte pour le noyau GNU Linux-Libre" + +#: gnu/packages/linux.scm:156 +msgid "Headers of the Linux-Libre kernel." +msgstr "Fichiers d'en-t=C3=AAte pour le noyau Linux-Libre" + +#: gnu/packages/linux.scm:187 +msgid "Tools for loading and managing Linux kernel modules" +msgstr "Outils de chargement et de gestion de modules noyau pour Linux" + +#: gnu/packages/linux.scm:189 +msgid "" +"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" +"`insmod', `lsmod', and more." +msgstr "" +"Outils pour le chargement et la gestion des modules noyau Linux, tels q= ue\n" +"\"modprob\", \"insmod\", \"lsmod\" et plus." + +#: gnu/packages/linux.scm:322 +msgid "100% free redistribution of a cleaned Linux kernel" +msgstr "Redistribution 100% libre d'un noyau Linux propre" + +#: gnu/packages/linux.scm:324 +msgid "" +"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" +"It has been modified to remove all non-free binary blobs." +msgstr "" +"GNU Linux-Libre est une variante libre du noyau Linux.\n" +"Il a =C3=A9t=C3=A9 modifi=C3=A9 pour en retirer toutes les composantes = non-libres." + +#: gnu/packages/linux.scm:384 +msgid "Pluggable authentication modules for Linux" +msgstr "Modules d'authentification pour Linux" + +#: gnu/packages/linux.scm:386 +#, fuzzy +msgid "" +"A *Free* project to implement OSF's RFC 86.0.\n" +"Pluggable authentication modules are small shared object files that can= \n" +"be used through the PAM API to perform tasks, like authenticating a use= r\n" +"at login. Local and dynamic reconfiguration are its key features." +msgstr "" +"Un projet libre implantant OSF (RFC 86.0).\n" +"Les modules d'authentification sont de petits fichiers objets partag=C3= =A9s " +"pouvant\n" +"=C3=AAtre utilis=C3=A9s =C3=A0 travers l'API PAM pour effectuer des t=C3= =A2ches, comme " +"l'authentification\n" +"d'un utilisateur au moment de la connexion. Ses principales fonctionnal= it=C3=A9s " +"sont\n" +"la reconfiguration locale et dynamique." + +#: gnu/packages/linux.scm:413 +msgid "Small utilities that use the proc filesystem" +msgstr "Petits utilitaires utilisant le syst=C3=A8me de fichier proc" + +#: gnu/packages/linux.scm:415 +msgid "" +"This PSmisc package is a set of some small useful utilities that\n" +"use the proc filesystem. We're not about changing the world, but\n" +"providing the system administrator with some help in common tasks." +msgstr "" +"Le paquet PSmisc est un ensemble de petits utilitaires utilisant le\n" +"syst=C3=A8me de fichier proc. Notre objectif n'est pas de changer le mo= nde\n" +"mais simplement de fournir de l'aide =C3=A0 l'administrateur syst=C3=A8= me dans ses\n" +"t=C3=A2ches les plus courantes." + +#: gnu/packages/linux.scm:480 +msgid "Collection of utilities for the Linux kernel" +msgstr "Collection d'utilitaires pour le noyau Linux" + +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." +msgstr "" + +#: gnu/packages/linux.scm:522 +msgid "Utilities that give information about processes" +msgstr "Utilitaires fournissant des informations sur les processus" + +#: gnu/packages/linux.scm:524 +msgid "" +"Procps is the package that has a bunch of small useful utilities\n" +"that give information about processes using the Linux /proc file system= .\n" +"The package includes the programs ps, top, vmstat, w, kill, free,\n" +"slabtop, and skill." +msgstr "" +"Procps est un paquet fournissant de nombreux outils simples donnant des= \n" +"des informations sur les processus utilisant le syst=C3=A8me de fichier= /proc.\n" +"Le paquet inclut les programmes ps, top, vmstat, w, kill, free,\n" +"slabtop et skill." + +#: gnu/packages/linux.scm:549 +msgid "Tools for working with USB devices, such as lsusb" +msgstr "Outils de manipulation des p=C3=A9riph=C3=A9riques USB, tels que= lsusb." + +#: gnu/packages/linux.scm:551 +msgid "Tools for working with USB devices, such as lsusb." +msgstr "Outils de manipulation des p=C3=A9riph=C3=A9riques USB, tels que= lsusb." + +#: gnu/packages/linux.scm:625 +msgid "Creating and checking ext2/ext3/ext4 file systems" +msgstr "Cr=C3=A9ation et v=C3=A9rification de syst=C3=A8mes de fichiers = ext1/ext3/ext4" + +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." +msgstr "" +"Ce paquet fournit des outils pour manipuler les syst=C3=A8mes de fichie= rs ext2/" +"ext3/ext4" + +#: gnu/packages/linux.scm:669 +msgid "Statically-linked fsck.* commands from e2fsprogs" +msgstr "Commandes de e2fsprogs (fsck.*) li=C3=A9es statiquement" + +#: gnu/packages/linux.scm:671 +msgid "" +"This package provides statically-linked command of fsck.ext[234] taken\= n" +"from the e2fsprogs package. It is meant to be used in initrds." +msgstr "" +"Ce paquet fournit la commande li=C3=A9e statiquement de fsck.ext[234] i= ssue\n" +"du paquet e2fsprogs. Il est cens=C3=A9 =C3=AAtre utilis=C3=A9 dans init= rds." + +#: gnu/packages/linux.scm:690 +msgid "Recover deleted files from ext2/3/4 partitions" +msgstr "" + +#: gnu/packages/linux.scm:692 +msgid "" +"Extundelete is a set of tools that can recover deleted files from an\n" +"ext3 or ext4 partition." +msgstr "" + +#: gnu/packages/linux.scm:724 +#, fuzzy +msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" +msgstr "Cr=C3=A9ation et v=C3=A9rification de syst=C3=A8mes de fichiers = ext1/ext3/ext4" + +#: gnu/packages/linux.scm:726 +msgid "" +"The zerofree command scans the free blocks in an ext2 file system and\n= " +"fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" +"images more compressible." +msgstr "" + +#: gnu/packages/linux.scm:745 +msgid "System call tracer for Linux" +msgstr "Traceur d'appel syst=C3=A8me pour Linux" + +#: gnu/packages/linux.scm:747 +msgid "" +"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" +"trace of all the system calls made by a another process/program." +msgstr "" +"strace est un traceur d'appels syst=C3=A8me, c-=C3=A0-d un outil de d=C3= =A9bogage " +"affichant\n" +"les appels syst=C3=A8me effectu=C3=A9s par un autre processus/programme= ." + +#: gnu/packages/linux.scm:768 +#, fuzzy +msgid "Library call tracer for Linux" +msgstr "Traceur d'appel syst=C3=A8me pour Linux" + +#: gnu/packages/linux.scm:770 +msgid "" +"ltrace intercepts and records dynamic library calls which are called by= \n" +"an executed process and the signals received by that process. It can a= lso\n" +"intercept and print the system calls executed by the program." +msgstr "" + +#: gnu/packages/linux.scm:790 +msgid "The Advanced Linux Sound Architecture libraries" +msgstr "Biblioth=C3=A8ques ALSA (Advanced Linux Sound Architecture)" + +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 +msgid "" +"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" +"MIDI functionality to the Linux-based operating system." +msgstr "" +"ALSA fournit des fonctionnalit=C3=A9s audio et MIDI pour les syt=C3=A8m= es\n" +"bas=C3=A9s sur Linux." + +#: gnu/packages/linux.scm:832 +msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" +msgstr "Utilitaires pour ALSA (Advanced Linux Sound Architecture)" + +#: gnu/packages/linux.scm:859 +msgid "Program to configure the Linux IP packet filtering rules" +msgstr "" +"Programme de configuration de r=C3=A8gles de filtrage des paquets IP po= ur Linux" + +#: gnu/packages/linux.scm:861 +msgid "" +"iptables is the userspace command line program used to configure the\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" +"packet filter." +msgstr "" +"iptables est un programme utilisateur en ligne de commande utilis=C3=A9= pour\n" +"configurer le filtrage des paquets IPv4 sur Linux depuis la version 2.4= .x.\n" +"Il s'adresse particuli=C3=A8rement aux administrateurs. iptables g=C3=A8= re aussi le " +"NAT\n" +"Network Address Translation). Le paquet inclut aussi ip6tables, utilis=C3= =A9 " +"pour\n" +"configurer le filtrage IPv6." + +#: gnu/packages/linux.scm:908 +msgid "Utilities for controlling TCP/IP networking and traffic in Linux" +msgstr "Utilitaires de contr=C3=B4le du traffic TCP/IP pour Linux" + +#: gnu/packages/linux.scm:910 +msgid "" +"Iproute2 is a collection of utilities for controlling TCP/IP\n" +"networking and traffic with the Linux kernel.\n" +"\n" +"Most network configuration manuals still refer to ifconfig and route as= the\n" +"primary network configuration tools, but ifconfig is known to behave\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" +"to support most modern network technologies, as it doesn't use ifconfig= and\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" +"traffic control.\n" +"\n" +"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" +"consists of several tools, of which the most important are ip and tc. = ip\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" +"tools print detailed usage messages and are accompanied by a set of\n" +"manpages." +msgstr "" +"Iproute2 est une collection d'utilitaires pour le contr=C3=B4le des r=C3= =A9seaux TCP/" +"IP\n" +"sous Linux. De nombreux manuels sur la configuration du r=C3=A9seau sou= s Linux " +"se\n" +"r=C3=A9f=C3=A8rent toujours =C3=A0 ifconfig et route comme des outils i= ndispensables\n" +"bien que ifconfig soit connu pour son inad=C3=A9quation aux r=C3=A9seau= x modernes. Ils " +"devraient\n" +"=C3=AAtre d=C3=A9pr=C3=A9ci=C3=A9s mais de nombreuses distributions les= incluent encore. Le " +"projet\n" +"/etc/net a pour but de supporter des technologies r=C3=A9seau plus mode= rnes. " +"Iproute2\n" +"est habituellement fourni dans un paquet appel=C3=A9 iproute ou iproute= 2 et " +"consiste\n" +"en plusieurs outils dont les plus importants sont ip et tc. ip contr=C3= =B4le la\n" +"configuration IPv4 et IPv6 tandis que tc se charge du contr=C3=B4le du = trafic. " +"Ces\n" +"deux outils sont accompagn=C3=A9s par leur manuel." + +#: gnu/packages/linux.scm:1022 +msgid "Tools for controlling the network subsystem in Linux" +msgstr "Outils pour contr=C3=B4ler le sous-syst=C3=A8me r=C3=A9seau dans= Linux" + +#: gnu/packages/linux.scm:1024 +msgid "" +"This package includes the important tools for controlling the network\n= " +"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" +"netstat, rarp and route. Additionally, this package contains utilities= \n" +"relating to particular network hardware types (plipconfig, slattach) an= d\n" +"advanced aspects of IP configuration (iptunnel, ipmaddr)." +msgstr "" +"Ce paquet inclut des outils importants pour contr=C3=B4ler le sous-syst= =C3=A8me " +"r=C3=A9seau\n" +"du noyau Linux. Cela inclut arp, hostname, ifconfig, netstat, rarp et " +"route.\n" +"Aditionnellement, ce paquet contient des utilitaires relatifs =C3=A0 de= s " +"architectures\n" +"particuli=C3=A8res (pliconfig, slattach) et =C3=A0 des aspects avanc=C3= =A9s de la " +"configuration\n" +"r=C3=A9seau (iptunnel, ipmaddr)." + +#: gnu/packages/linux.scm:1061 +msgid "Library for working with POSIX capabilities" +msgstr "Biblioth=C3=A8que pour travailler avec les possibilit=C3=A9s de = POSIX" + +#: gnu/packages/linux.scm:1063 +msgid "" +"Libcap2 provides a programming interface to POSIX capabilities on\n" +"Linux-based operating systems." +msgstr "" +"Libcap2 fournit une interface de programmation POSIX aux syst=C3=A8mes = bas=C3=A9s sur " +"Linux." + +#: gnu/packages/linux.scm:1106 +msgid "Manipulate Ethernet bridges" +msgstr "Manipulation des ponts Ethernet" + +#: gnu/packages/linux.scm:1108 +msgid "" +"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" +"to connect two Ethernet segments together in a protocol independent way= .\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" +"a router). Since forwarding is done at Layer 2, all protocols can go\n= " +"transparently through a bridge." +msgstr "" +"Utilitaires pour la gestion des ponts ethernet sous Linux. Un pont est = un\n" +"moyen de connecter deux segments Ethernet ind=C3=A9pendant du protocole= utilis=C3=A9.\n" +"Les paquets sont transf=C3=A9r=C3=A9s en se basant sur leur adresse Eth= ernet plut=C3=B4t " +"que\n" +"sur leur adresse IP (contrairement aux routeurs). Le forwarding se fais= ant " +"au\n" +"niveau 2, tous les protocoles peuvent transiter de mani=C3=A8re transpa= rente sur " +"un\n" +"un pont." + +#: gnu/packages/linux.scm:1130 +msgid "NetLink protocol library suite" +msgstr "Biblioth=C3=A8qye pour le protocole NetLink" + +#: gnu/packages/linux.scm:1132 +#, fuzzy +msgid "" +"The libnl suite is a collection of libraries providing APIs to netlink\= n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" +"between the kernel and user space processes. It was designed to be a m= ore\n" +"flexible successor to ioctl to provide mainly networking related kernel= \n" +"configuration and monitoring interfaces." +msgstr "" +"La suite libnl est une collection de biblioth=C3=A8ques fournissant des= API pour\n" +"le protocole netlink bas=C3=A9 sur des interfaces du noyau Linux. Netli= nk est un\n" +"m=C3=A9canisme IPC intervenant entre le noyay et les processus utilisat= eur. Il\n" +"est con=C3=A7u pour =C3=AAtre un successeur plus flexible =C3=A0 ioctl = permettant de " +"configurer\n" +"le r=C3=A9seau au niveau noyau et surveiller les interfaces." + +#: gnu/packages/linux.scm:1162 +#, fuzzy +msgid "Tool for configuring wireless devices" +msgstr "Outils de manipulation d'extensions sans fil pour Linux" + +#: gnu/packages/linux.scm:1164 +msgid "" +"iw is a new nl80211 based CLI configuration utility for wireless\n" +"devices. It replaces 'iwconfig', which is deprecated." +msgstr "" + +#: gnu/packages/linux.scm:1190 +msgid "Analyze power consumption on Intel-based laptops" +msgstr "Analyse de la consommation des portables bas=C3=A9s sur Intel" + +#: gnu/packages/linux.scm:1192 +msgid "" +"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" +"an interactive mode where the user can experiment various power managem= ent\n" +"settings for cases where the operating system has not enabled these\n" +"settings." +msgstr "" +"PowerTOP est un outil Linux permettant de diagnostiquer des probl=C3=A8= mes de\n" +"consommation =C3=A9lectrique ou de gestion de l'=C3=A9nergie. En plus d= '=C3=AAtre un outil\n" +"de diagnostique, PowerTOP propose aussi un mode interactif dans lequel\= n" +"l'utilisateur peut exp=C3=A9rimenter de multiples configurations de ges= tion de\n" +"l'=C3=A9nergie pour des cas o=C3=B9 le syst=C3=A8me d'exploitation n'a = pas " + +#: gnu/packages/linux.scm:1214 +msgid "Audio mixer for X and the console" +msgstr "Table de mixage audio bas=C3=A9e sur X et la console" + +#: gnu/packages/linux.scm:1216 +msgid "" +"Aumix adjusts an audio mixer from X, the console, a terminal,\n" +"the command line or a script." +msgstr "" +"Aumix ajuste un mixer audio depuis X, la console, un terminal,\n" +"la ligne de commande ou un script." + +#: gnu/packages/linux.scm:1240 +msgid "Displays the IO activity of running processes" +msgstr "" +"Affiche l'activit=C3=A9 des entr=C3=A9es-sorties des processus en cours= d'ex=C3=A9cution." + +#: gnu/packages/linux.scm:1242 +msgid "" +"Iotop is a Python program with a top like user interface to show the\n" +"processes currently causing I/O." +msgstr "" +"Iotop est un programme Python dot=C3=A9 d'une interface utilisateur aff= ichant " +"les\n" +"entr=C3=A9es-sorties en cours des processus." + +#: gnu/packages/linux.scm:1297 +msgid "Support file systems implemented in user space" +msgstr "Support des syst=C3=A8mes de fichiers implant=C3=A9s dans l'espa= ce utilisateur." + +#: gnu/packages/linux.scm:1299 +msgid "" +"As a consequence of its monolithic design, file system code for Linux\n= " +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" +"user-space processes." +msgstr "" +"Parce qu'il est bas=C3=A9 sur un mod=C3=A8le monolithique, la gestion d= u syst=C3=A8me de\n" +"de fichiers sous Linux se trouve normalement au sein du noyau, ce qui\n= " +"consititue un probl=C3=A8me de robustesse et =C3=A9galement une entrave= \n" +"=C3=A0 l'extensibilit=C3=A9 du syst=C3=A8me. FUSE (File systems in user= space) est\n" +"un module noyau et une biblioth=C3=A8que utilisateur destin=C3=A9e =C3=A0= r=C3=A9soudre\n" +"ce probl=C3=A8me en permettant aux utilisateurs de lancer les implantat= ions de\n" +"syst=C3=A8mes de fichiers comme des processus utilisateur." + +#: gnu/packages/linux.scm:1324 +msgid "User-space union file system" +msgstr "" + +#: gnu/packages/linux.scm:1326 +msgid "" +"UnionFS-FUSE is a flexible union file system implementation in user\n" +"space, using the FUSE library. Mounting a union file system allows you= to\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" +"UnionFS-FUSE additionally supports copy-on-write." +msgstr "" + +#: gnu/packages/linux.scm:1351 +msgid "User-space union file system (statically linked)" +msgstr "" + +#: gnu/packages/linux.scm:1396 +msgid "Mount remote file systems over SSH" +msgstr "Montage de syst=C3=A8mes de fichier distants avec SSH" + +#: gnu/packages/linux.scm:1398 +msgid "" +"This is a file system client based on the SSH File Transfer Protocol.\n= " +"Since most SSH servers already support this protocol it is very easy to= set\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" +"file system is as easy as logging into the server with an SSH client." +msgstr "" +"Syst=C3=A8me de fichier client bas=C3=A9 sur SFTP (SSH File Transfer Pr= otocole).\n" +"Beaucoup de serveurs SSH supportant le protocole, ce client est tr=C3=A8= s facile\n" +"=C3=A0 configurer : il n'y a rien =C3=A0 faire du c=C3=B4t=C3=A9 serveu= r ; du c=C3=B4t=C3=A9 client, il " +"est\n" +"aussi facile de monter le syst=C3=A8me de fichiers que de se connecter = avec un " +"client\n" +"SSH." + +#: gnu/packages/linux.scm:1427 +msgid "Tools for non-uniform memory access (NUMA) machines" +msgstr "Outils pour les machines bas=C3=A9es sur NUMA (non-uniform memor= y access)" + +#: gnu/packages/linux.scm:1429 +msgid "" +"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" +"memory is not all in one place. The numactl program allows you to run = your\n" +"application program on specific CPU's and memory nodes. It does this b= y\n" +"supplying a NUMA memory policy to the operating system before running y= our\n" +"program.\n" +"\n" +"The package contains other commands, such as numademo, numastat and mem= hog.\n" +"The numademo command provides a quick overview of NUMA performance on y= our\n" +"system." +msgstr "" +"NUMA (Non-Uniform Memory Access) est un syst=C3=A8me dans lequel la m=C3= =A9moire est\n" +"r=C3=A9partie en diff=C3=A9rents endroits. Le programme numactl permet = de lancer une\n" +"une application sur des noeuds CPU et m=C3=A9moire sp=C3=A9cifiques au = moyen de " +"politiques\n" +"fournies au syst=C3=A8me d'exploitation avant le lancement du programme= ." + +#: gnu/packages/linux.scm:1492 +msgid "Linux keyboard utilities and keyboard maps" +msgstr "" + +#: gnu/packages/linux.scm:1494 +msgid "" +"This package contains keytable files and keyboard utilities compatible\= n" +"for systems using the Linux kernel. This includes commands such as\n" +"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +msgstr "" + +#: gnu/packages/linux.scm:1513 +msgid "Monitor file accesses" +msgstr "Surveillance des acc=C3=A8s fichier" + +#: gnu/packages/linux.scm:1515 +msgid "" +"The inotify-tools packages provides a C library and command-line tools\= n" +"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +msgstr "" +"Le paquet inotify-tools fournit une biblioth=C3=A8que C et des outils e= n ligne de " +"commande\n" +"permettant d'utiliser le m=C3=A9canisme inotify de Linux qui autorise l= a " +"surveillance\n" +"des acc=C3=A8s fichier." + +#: gnu/packages/linux.scm:1553 +msgid "Kernel module tools" +msgstr "Outils de module noyau" + +#: gnu/packages/linux.scm:1554 +msgid "" +"Kmod is a set of tools to handle common tasks with Linux\n" +"kernel modules like insert, remove, list, check properties, resolve\n" +"dependencies and aliases.\n" +"\n" +"These tools are designed on top of libkmod, a library that is shipped w= ith\n" +"kmod. The aim is to be compatible with tools, configurations and indic= es\n" +"from the module-init-tools project." +msgstr "" +"Kmod est un ensemble d'outils g=C3=A9rant les op=C3=A9rations courantes= sur les\n" +"les modules noyau comme ins=C3=A9rer, supprimer, lister, v=C3=A9rifier = les " +"propri=C3=A9t=C3=A9s,\n" +"r=C3=A9soudre les d=C3=A9pendances et alias.\n" +"\n" +"Ces outils sont construits au-dessus libkmod, une biblioth=C3=A8que fou= rnie avec\n" +"kmod. L'objectif est d'=C3=AAtre compatible avec les outils, les config= urations " +"et\n" +"les indices du projet module-init-tools." + +#: gnu/packages/linux.scm:1586 +msgid "Userspace device management" +msgstr "Gestion de p=C3=A9riph=C3=A9riques utilisateurs" + +#: gnu/packages/linux.scm:1587 +msgid "" +"Udev is a daemon which dynamically creates and removes\n" +"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" +"time." +msgstr "" +"Udev est un daemon capable de cr=C3=A9er et supprimer dynamiquement\n" +"des noeuds de p=C3=A9riph=C3=A9riques dans /dev/, g=C3=A9rer leur branc= hement =C3=A0 chaud\n" +"et charger leur pilotes au d=C3=A9marrage." + +#: gnu/packages/linux.scm:1659 +msgid "Logical volume management for Linux" +msgstr "Gestion de volumes logiques pour Linux" + +#: gnu/packages/linux.scm:1661 +msgid "" +"LVM2 is the logical volume management tool set for Linux-based systems.= \n" +"This package includes the user-space libraries and tools, including the= " +"device\n" +"mapper. Kernel components are part of Linux-libre." +msgstr "" + +#: gnu/packages/linux.scm:1697 +msgid "Tools for manipulating Linux Wireless Extensions" +msgstr "Outils de manipulation d'extensions sans fil pour Linux" + +#: gnu/packages/linux.scm:1698 +msgid "" +"Wireless Tools are used to manipulate the now-deprecated\n" +"Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " +"Extension was an interface allowing you to set Wireless LAN specific\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" +"interface." +msgstr "" + +#: gnu/packages/linux.scm:1770 +msgid "Central regulatory domain agent (CRDA) for WiFi" +msgstr "" + +#: gnu/packages/linux.scm:1772 +msgid "" +"The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" +"communication between the kernel Linux and user space for regulatory\n" +"compliance." +msgstr "" + +#: gnu/packages/linux.scm:1818 +#, fuzzy +msgid "Wireless regulatory database" +msgstr "Base de donn=C3=A9es Berkeley" + +#: gnu/packages/linux.scm:1820 +msgid "" +"This package contains the wireless regulatory database Central\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" +"country-specific regulations for the wireless spectrum." +msgstr "" + +#: gnu/packages/linux.scm:1891 +msgid "Utilities to read temperature/voltage/fan sensors" +msgstr "" +"Utilitaires pour la lecture de capteurs de temp=C3=A9ture/voltage/venti= lateur" + +#: gnu/packages/linux.scm:1893 +msgid "" +"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" +"you to access information from temperature, voltage, and fan speed sens= ors.\n" +"It works with most newer systems." +msgstr "" +"Lm-sensors est un utilitaire de monitoring hardware pour Linux. Il perm= et\n" +"d'acc=C3=A9der =C3=A0 des informations sur les composants telles que la= temp=C3=A9rature,\n" +"le voltage ou la vitesse des ventilatuers. Il fonctionne avec la plupar= t " +"des\n" +"syst=C3=A8mes les plus r=C3=A9cents." + +#: gnu/packages/linux.scm:1920 +msgid "I2C tools for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1922 +msgid "" +"The i2c-tools package contains a heterogeneous set of I2C tools for\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" +"EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" +"SMBus access." +msgstr "" + +#: gnu/packages/linux.scm:1958 +msgid "Hardware health information viewer" +msgstr "Utiltaire de monitoring hardware" + +#: gnu/packages/linux.scm:1960 +msgid "" +"Xsensors reads data from the libsensors library regarding hardware\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" +"in a digital read-out." +msgstr "Xsensors lit les donn=C3=A9es depuis la biblioth=C3=A8que libsen= sors " + +#: gnu/packages/linux.scm:2008 +msgid "Linux profiling with performance counters" +msgstr "" + +#: gnu/packages/linux.scm:2010 +msgid "" +"perf is a tool suite for profiling using hardware performance counters,= \n" +"with support in the Linux kernel. perf can instrument CPU performance\= n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" +"of lightweight profiling. This package contains the user-land tools an= d in\n" +"particular the 'perf' command." +msgstr "" + +#: gnu/packages/linux.scm:2033 +msgid "Simple tool for creating Linux namespace containers" +msgstr "" + +#: gnu/packages/linux.scm:2034 +msgid "" +"pflask is a simple tool for creating Linux namespace\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" +"an isolated container, created with the help of Linux namespaces. It i= s\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" +"thanks to the use of namespaces." +msgstr "" + +#: gnu/packages/linux.scm:2061 +msgid "Tune hard disk parameters for high performance" +msgstr "" + +#: gnu/packages/linux.scm:2063 +msgid "" +"Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" +"is for enabling irq-unmasking and IDE multiple-mode." +msgstr "" + +#: gnu/packages/linux.scm:2086 +#, fuzzy +msgid "Tool for enabling and disabling wireless devices" +msgstr "Outils de chargement et de gestion de modules noyau pour Linux" + +#: gnu/packages/linux.scm:2088 +msgid "" +"rfkill is a simple tool for accessing the rfkill device interface,\n" +"which is used to enable and disable wireless networking devices, typica= lly\n" +"WLAN, Bluetooth and mobile broadband." +msgstr "" + +#: gnu/packages/linux.scm:2107 +msgid "Daemon for delivering ACPI events to user-space programs" +msgstr "" + +#: gnu/packages/linux.scm:2109 +msgid "" +"acpid is designed to notify user-space programs of Advanced\n" +"Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" +"during the system boot, and will run as a background process. When an = ACPI\n" +"event is received from the kernel, acpid will examine the list of rules= \n" +"specified in /etc/acpi/events and execute the rules that match the even= t." +msgstr "" + +#: gnu/packages/linux.scm:2131 +msgid "System utilities based on Linux sysfs" +msgstr "" + +#: gnu/packages/linux.scm:2133 +msgid "" +"These are a set of utilities built upon sysfs, a virtual filesystem in\= n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" +"also contains the libsysfs library." +msgstr "" + +#: gnu/packages/linux.scm:2162 +msgid "System utilities based on Linux sysfs (version 1.x)" +msgstr "" + +#: gnu/packages/linux.scm:2185 +msgid "Utilities to get and set CPU frequency on Linux" +msgstr "" + +#: gnu/packages/linux.scm:2187 +msgid "" +"The cpufrequtils suite contains utilities to retrieve CPU frequency\n" +"information, and set the CPU frequency if supported, using the cpufreq\= n" +"capabilities of the Linux kernel." +msgstr "" + +#: gnu/packages/linux.scm:2206 +msgid "Interface library for the Linux IEEE1394 drivers" +msgstr "" + +#: gnu/packages/linux.scm:2208 +msgid "" +"Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" +"protocol in question." +msgstr "" + +#: gnu/packages/linux.scm:2232 +msgid "AV/C protocol library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2234 +msgid "" +"Libavc1394 is a programming interface to the AV/C specification from\n" +"the 1394 Trade Association. AV/C stands for Audio/Video Control." +msgstr "" + +#: gnu/packages/linux.scm:2256 +msgid "Isochronous streaming media library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2258 +msgid "" +"The libiec61883 library provides a higher level API for streaming DV,\n= " +"MPEG-2 and audio over Linux IEEE 1394." +msgstr "" + +#: gnu/packages/linux.scm:2298 +msgid "Tool for managing Linux Software RAID arrays" +msgstr "" + +#: gnu/packages/linux.scm:2300 +msgid "" +"mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" +"arrays when needed." +msgstr "" + +#: gnu/packages/linux.scm:2327 +msgid "Linux-native asynchronous I/O access library" +msgstr "" + +#: gnu/packages/linux.scm:2329 +msgid "" +"This library enables userspace to use Linux kernel asynchronous I/O\n" +"system calls, important for the performance of databases and other adva= nced\n" +"applications." +msgstr "" + +#: gnu/packages/linux.scm:2365 +msgid "Linux Bluetooth protocol stack" +msgstr "" + +#: gnu/packages/linux.scm:2367 +msgid "" +"BlueZ provides support for the core Bluetooth layers and protocols. It= \n" +"is flexible, efficient and uses a modular implementation." +msgstr "" + +#: gnu/packages/linux.scm:2423 +#, fuzzy +msgid "Mount exFAT file systems" +msgstr "Montage de syst=C3=A8mes de fichier distants avec SSH" + +#: gnu/packages/linux.scm:2425 +msgid "" +"This package provides a FUSE-based file system that provides read and\n= " +"write access to exFAT devices." +msgstr "" + +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + +#: gnu/packages/lout.scm:109 +msgid "Document layout system" +msgstr "" + +#: gnu/packages/lout.scm:111 +msgid "" +"The Lout document formatting system reads a high-level description of\n= " +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" +"output file.\n" +"\n" +"Lout offers an unprecedented range of advanced features, including opti= mal\n" +"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" +"scaling, sorted indexes, bibliographic databases, running headers and\n= " +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" +"hyphenation (most European languages are supported), formatting of comp= uter\n" +"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" +"extended with definitions which are very much easier to write than trof= f of\n" +"TeX macros because Lout is a high-level, purely functional language, th= e\n" +"outcome of an eight-year research project that went back to the\n" +"beginning." +msgstr "" + +#: gnu/packages/messaging.scm:77 +msgid "Off-the-Record (OTR) Messaging Library and Toolkit" +msgstr "" + +#: gnu/packages/messaging.scm:79 +msgid "" +"OTR allows you to have private conversations over instant messaging by\= n" +"providing: (1) Encryption: No one else can read your instant messages. = (2)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" +"Deniability: The messages you send do not have digital signatures that = are\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" +"correspondent is assured the messages he sees are authentic and\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" +"keys, no previous conversation is compromised." +msgstr "" + +#: gnu/packages/messaging.scm:135 +msgid "IRC to instant messaging gateway" +msgstr "" + +#: gnu/packages/messaging.scm:136 +msgid "" +"BitlBee brings IM (instant messaging) to IRC clients, for\n" +"people who have an IRC client running all the time and don't want to ru= n an\n" +"additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" +"microblogging network (plus all other Twitter API compatible services l= ike\n" +"identi.ca and status.net)." +msgstr "" + +#: gnu/packages/messaging.scm:169 +msgid "Graphical IRC Client" +msgstr "" + +#: gnu/packages/messaging.scm:171 +msgid "" +"HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" +"users and to highlight messages. It checks spelling using available\n" +"dictionaries. HexChat can be extended with multiple addons." +msgstr "" + +#: gnu/packages/messaging.scm:237 +msgid "Lightweight Internet Relay Chat server for small networks" +msgstr "" + +#: gnu/packages/messaging.scm:239 +msgid "" +"ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" +"networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" +"supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." +msgstr "" + +#: gnu/packages/messaging.scm:310 +msgid "Graphical multi-protocol instant messaging client" +msgstr "" + +#: gnu/packages/messaging.scm:312 +msgid "" +"Pidgin is a modular instant messaging client that supports many popular= \n" +"chat protocols." +msgstr "" + +#: gnu/packages/messaging.scm:350 +msgid "Off-the-Record Messaging plugin for Pidgin" +msgstr "" + +#: gnu/packages/messaging.scm:352 +msgid "" +"Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" +"can read your instant messages. (2) Authentication: You are assured th= e\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" +"do not have digital signatures that are checkable by a third party. An= yone\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" +"you. However, during a conversation, your correspondent is assured the= \n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" +"If you lose control of your private keys, no previous conversation is\n= " +"compromised." +msgstr "" + +#: gnu/packages/messaging.scm:392 +msgid "IRC network bouncer" +msgstr "" + +#: gnu/packages/messaging.scm:393 +msgid "" +"ZNC is an IRC network bouncer or BNC. It can detach the\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" +"clients from different locations can connect to a single ZNC account\n" +"simultaneously and therefore appear under the same nickname on IRC." +msgstr "" + +#: gnu/packages/messaging.scm:415 +msgid "Non-blocking Jabber/XMPP module" +msgstr "" + +#: gnu/packages/messaging.scm:417 +msgid "" +"The goal of this python library is to provide a way for Python\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" +"was initially a fork of xmpppy, but is using non-blocking sockets." +msgstr "" + +#: gnu/packages/messaging.scm:474 +msgid "Jabber (XMPP) client" +msgstr "" + +#: gnu/packages/messaging.scm:475 +msgid "" +"Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" +"transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" +"end-to-end encryption support; XML console." +msgstr "" + +#: gnu/packages/mpd.scm:63 +msgid "Music Player Daemon client library" +msgstr "" + +#: gnu/packages/mpd.scm:64 +msgid "" +"A stable, documented, asynchronous API library for\n" +"interfacing MPD in the C, C++ & Objective C languages." +msgstr "" + +#: gnu/packages/mpd.scm:124 +msgid "Music Player Daemon" +msgstr "" + +#: gnu/packages/mpd.scm:125 +msgid "" +"Music Player Daemon (MPD) is a flexible, powerful,\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" +"can play a variety of sound files while being controlled by its network= \n" +"protocol." +msgstr "" + +#: gnu/packages/mpd.scm:148 +msgid "Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:149 +msgid "" +"MPC is a minimalist command line interface to MPD, the music\n" +"player daemon." +msgstr "" + +#: gnu/packages/mpd.scm:172 +msgid "Curses Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:173 +msgid "" +"ncmpc is a fully featured MPD client, which runs in a\n" +"terminal using ncurses." +msgstr "" + +#: gnu/packages/mpd.scm:211 +msgid "Featureful ncurses based MPD client inspired by ncmpc" +msgstr "" + +#: gnu/packages/mpd.scm:212 +msgid "" +"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" +"but it provides new useful features such as support for regular express= ions\n" +"for library searches, extended song format, items filtering, the abilit= y to\n" +"sort playlists, and a local filesystem browser." +msgstr "" + +#: gnu/packages/mpd.scm:235 +msgid "MPD client for track scrobbling" +msgstr "" + +#: gnu/packages/mpd.scm:236 +msgid "" +"mpdscribble is a Music Player Daemon client which submits\n" +"information about tracks being played to a scrobbler, such as Libre.FM.= " +msgstr "" + +#: gnu/packages/netpbm.scm:146 +#, fuzzy +msgid "Toolkit for manipulation of images" +msgstr "Outils de manipulation d'extensions sans fil pour Linux" + +#: gnu/packages/netpbm.scm:148 +msgid "" +"Netpbm is a toolkit for the manipulation of graphic images, including\n= " +"the conversion of images between a variety of different formats.\n" +"There are over 300 separate tools in the package including converters f= or\n" +"about 100 graphics formats." +msgstr "" + +#: gnu/packages/nettle.scm:51 +msgid "C library for low-level cryptographic functionality" +msgstr "" + +#: gnu/packages/nettle.scm:53 +msgid "" +"GNU Nettle is a low-level cryptographic library. It is designed to\n" +"fit in easily in almost any context. It can be easily included in\n" +"cryptographic toolkits for object-oriented languages or in applications= \n" +"themselves." +msgstr "" + +#: gnu/packages/networking.scm:52 +msgid "Teredo IPv6 tunneling software" +msgstr "" + +#: gnu/packages/networking.scm:54 +msgid "" +"Miredo is an implementation (client, relay, server) of the Teredo\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" +"residing in IPv4-only networks, even when they are behind a NAT device.= " +msgstr "" + +#: gnu/packages/networking.scm:76 +msgid "Open bidirectional communication channels from the command line" +msgstr "" + +#: gnu/packages/networking.scm:78 +msgid "" +"socat is a relay for bidirectional data transfer between two independen= t\n" +"data channels---files, pipes, devices, sockets, etc. It can create\n" +"\"listening\" sockets, named pipes, and pseudo terminals.\n" +"\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" +"line, to logically connect serial lines on different computers, or to\n= " +"establish a relatively secure environment (su and chroot) for running " +"client\n" +"or server shell scripts with network connections." +msgstr "" + +#: gnu/packages/networking.scm:102 +msgid "Library for message-based applications" +msgstr "" + +#: gnu/packages/networking.scm:104 +msgid "" +"The 0MQ lightweight messaging kernel is a library which extends the\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" +"messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" +"asynchronous message queues, multiple messaging patterns, message\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" +"more." +msgstr "" + +#: gnu/packages/networking.scm:125 +msgid "Library for Neighbor Discovery Protocol" +msgstr "" + +#: gnu/packages/networking.scm:127 +msgid "" +"libndp contains a library which provides a wrapper for IPv6 Neighbor\n" +"Discovery Protocol. It also provides a tool named ndptool for sending = and\n" +"receiving NDP messages." +msgstr "" + +#: gnu/packages/networking.scm:145 +msgid "Display or change Ethernet device settings" +msgstr "" + +#: gnu/packages/networking.scm:147 +msgid "" +"ethtool can be used to query and change settings such as speed,\n" +"auto-negotiation and checksum offload on many network devices, especial= ly\n" +"Ethernet devices." +msgstr "" + +#: gnu/packages/networking.scm:183 +msgid "Text based network interface status monitor" +msgstr "" + +#: gnu/packages/networking.scm:185 +msgid "" +"IFStatus is a simple, easy-to-use program for displaying commonly\n" +"needed/wanted real-time traffic statistics of multiple network\n" +"interfaces, with a simple and efficient view on the command line. It i= s\n" +"intended as a substitute for the PPPStatus and EthStatus projects." +msgstr "" + +#: gnu/packages/pdf.scm:101 +msgid "PDF rendering library" +msgstr "Biblioth=C3=A8que de rendu PDF" + +#: gnu/packages/pdf.scm:103 +msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +msgstr "" + +#: gnu/packages/pdf.scm:112 +msgid "Qt4 frontend for the Poppler PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:145 +msgid "Python bindings for Poppler-Qt4" +msgstr "" + +#: gnu/packages/pdf.scm:147 +#, fuzzy +msgid "" +"This package provides Python bindings for the Qt4 interface of the\n" +"Poppler PDF rendering library." +msgstr "Ce paquet fournit une interface de base de donn=C3=A9es pour Per= l." + +#: gnu/packages/pdf.scm:194 +msgid "Viewer for PDF files based on the Motif toolkit" +msgstr "Visionneuse pour fichiers PDF bas=C3=A9e sur la bo=C3=AEte =C3=A0= outil Motif" + +#: gnu/packages/pdf.scm:196 +#, fuzzy +msgid "Xpdf is a viewer for Portable Document Format (PDF) files." +msgstr "Xpdf est une visionneuse pour fichiers PDF (Portable Document Fo= rmat)" + +#: gnu/packages/pdf.scm:226 +msgid "Comic book support for zathura (libarchive backend)" +msgstr "" + +#: gnu/packages/pdf.scm:227 +msgid "" +"The zathura-cb plugin adds comic book support to zathura\n" +"using libarchive." +msgstr "" + +#: gnu/packages/pdf.scm:257 +msgid "PS support for zathura (libspectre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:258 +msgid "" +"The zathura-ps plugin adds PS support to zathura\n" +"using libspectre." +msgstr "" + +#: gnu/packages/pdf.scm:289 +msgid "DjVu support for zathura (DjVuLibre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:290 +msgid "" +"The zathura-djvu plugin adds DjVu support to zathura\n" +"using the DjVuLibre library." +msgstr "" + +#: gnu/packages/pdf.scm:322 +msgid "PDF support for zathura (poppler backend)" +msgstr "" + +#: gnu/packages/pdf.scm:323 +msgid "" +"The zathura-pdf-poppler plugin adds PDF support to zathura\n" +"by using the poppler rendering engine." +msgstr "" + +#: gnu/packages/pdf.scm:361 +#, fuzzy +msgid "Lightweight keyboard-driven PDF viewer" +msgstr "Boite =C3=A0 outils l=C3=A9g=C3=A8re pour la visualisation de do= cuments PDF" + +#: gnu/packages/pdf.scm:362 +msgid "" +"Zathura is a customizable document viewer. It provides a\n" +"minimalistic interface and an interface that mainly focuses on keyboard= \n" +"interaction." +msgstr "" + +#: gnu/packages/pdf.scm:401 +msgid "Tools to work with the PDF file format" +msgstr "Outils de manipulation de fichiers PDF" + +#: gnu/packages/pdf.scm:403 +msgid "" +"PoDoFo is a C++ library and set of command-line tools to work with the\= n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" +"for applications that wish to do lower level manipulation of PDF, such = as\n" +"extracting content or merging files." +msgstr "" + +#: gnu/packages/pdf.scm:464 +msgid "Lightweight PDF viewer and toolkit" +msgstr "Boite =C3=A0 outils l=C3=A9g=C3=A8re pour la visualisation de do= cuments PDF" + +#: gnu/packages/pdf.scm:466 +#, fuzzy +msgid "" +"MuPDF is a C library that implements a PDF and XPS parsing and\n" +"rendering engine. It is used primarily to render pages into bitmaps,\n= " +"but also provides support for other operations such as searching and\n" +"listing the table of contents and hyperlinks.\n" +"\n" +"The library ships with a rudimentary X11 viewer, and a set of command\n= " +"line tools for batch rendering (pdfdraw), rewriting files (pdfclean),\n= " +"and examining the file structure (pdfshow)." +msgstr "" +"MuPDF est une biblioth=C3=A8que C permettant d'analyser et de faire le = rendu de\n" +"fichiers PDF et XPS. Elle est surtout utilis=C3=A9e pour effectuer le r= endu de " +"pages dans\n" +"des bitmaps mais fournit aussi le support pour d'autres op=C3=A9rations= comme la " +"recherche\n" +"et l'affichage de tables des mati=C3=A8res et d'hyperliens.\n" +"\n" +"La biblioth=C3=A8que est fournie avec une visionneuse rudimentaire X11 = et un " +"ensemble\n" +"d'outils en ligne de commande pour le rendu par lots (pdfdraw), l'analy= se de " +"structure\n" +"(pdfshow), et la r=C3=A9=C3=A9criture de fichiers (pdfclean)." + +#: gnu/packages/pdf.scm:506 +msgid "Command-line tools and library for transforming PDF files" +msgstr "" + +#: gnu/packages/pdf.scm:508 +msgid "" +"QPDF is a command-line program that does structural, content-preserving= \n" +"transformations on PDF files. It could have been called something like= \n" +"pdf-to-pdf. It includes support for merging and splitting PDFs and to\= n" +"manipulate the list of pages in a PDF file. It is not a PDF viewer or = a\n" +"program capable of converting PDF into other formats." +msgstr "" + +#: gnu/packages/pdf.scm:538 +msgid "Notetaking using a stylus" +msgstr "" + +#: gnu/packages/pdf.scm:540 +msgid "" +"Xournal is an application for notetaking, sketching, keeping a journal\= n" +"using a stylus." +msgstr "" + +#: gnu/packages/pem.scm:41 +msgid "Personal expenses manager" +msgstr "" + +#: gnu/packages/pem.scm:43 +msgid "" +"GNU Pem is a simple tool for tracking personal income and\n" +"expenses. It operates from the command line and it stores its data\n" +"in a basic text format in your home directory. It can easily print\n" +"reports of your spending on different expenses via a basic search\n" +"feature." +msgstr "" + +#: gnu/packages/perl.scm:110 +#, fuzzy +msgid "Implementation of the Perl programming language" +msgstr "Implantation de Scheme et d'autres langages associ=C3=A9s" + +#: gnu/packages/perl.scm:112 +msgid "" +"Perl 5 is a highly capable, feature-rich programming language with over= \n" +"24 years of development." +msgstr "" + +#: gnu/packages/perl.scm:131 +msgid "Module for merging hierarchies using the C3 algorithm" +msgstr "" + +#: gnu/packages/perl.scm:132 +msgid "" +"This module implements the C3 algorithm, which aims to\n" +"provide a sane method resolution order under multiple inheritance." +msgstr "" + +#: gnu/packages/perl.scm:150 +msgid "Compute differences between two files or lists" +msgstr "" + +#: gnu/packages/perl.scm:151 +msgid "" +"This is a module for computing the difference between two\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" +"algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" +"program. It is guaranteed to find the *smallest possible* set of\n" +"differences." +msgstr "" + +#: gnu/packages/perl.scm:173 +msgid "Use shorter versions of class names" +msgstr "" + +#: gnu/packages/perl.scm:174 +msgid "" +"The alias module loads the class you specify and exports\n" +"into your namespace a subroutine that returns the class name. You can\= n" +"explicitly alias the class to another name or, if you prefer, you can d= o so\n" +"implicitly." +msgstr "" + +#: gnu/packages/perl.scm:196 +msgid "Configuration files and command line parsing" +msgstr "" + +#: gnu/packages/perl.scm:197 +msgid "" +"AppConfig is a bundle of Perl5 modules for reading\n" +"configuration files and parsing command line arguments." +msgstr "" + +#: gnu/packages/perl.scm:215 +msgid "Perl API to zip files" +msgstr "" + +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 +msgid "" +"The Archive::Zip module allows a Perl program to create,\n" +"manipulate, read, and write Zip archive files." +msgstr "" +"Le module Archive::Zip permet =C3=A0 un programme Perl de cr=C3=A9er,\n= " +"manipuler, lire et =C3=A9crire des archives Zip." + +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 +msgid "Establish an ISA relationship with base classes at compile time" +msgstr "" + +#: gnu/packages/perl.scm:236 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" +"parent." +msgstr "" + +#: gnu/packages/perl.scm:261 +msgid "Execute code after a scope finished compilation" +msgstr "" + +#: gnu/packages/perl.scm:262 +msgid "" +"This module allows you to execute code when perl finished\n" +"compiling the surrounding scope." +msgstr "" + +#: gnu/packages/perl.scm:280 +msgid "Benchmarking with statistical confidence" +msgstr "" + +#: gnu/packages/perl.scm:282 +msgid "" +"The Benchmark::Timer class allows you to time portions of code\n" +"conveniently, as well as benchmark code by allowing timings of repeated= \n" +"trials. It is perfect for when you need more precise information about= the\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" +"but don't want to go all out and profile your code." +msgstr "" + +#: gnu/packages/perl.scm:307 +msgid "Bit vector library" +msgstr "" + +#: gnu/packages/perl.scm:308 +msgid "" +"Bit::Vector is an efficient C library which allows you to\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" +"matrices, all of arbitrary sizes. The package also includes an\n" +"object-oriented Perl module for accessing the C library from Perl, and\= n" +"optionally features overloaded operators for maximum ease of use. The = C\n" +"library can nevertheless be used stand-alone, without Perl." +msgstr "" + +#: gnu/packages/perl.scm:330 +msgid "Boolean support for Perl" +msgstr "" + +#: gnu/packages/perl.scm:331 +msgid "" +"This module provides basic Boolean support, by defining two\n" +"special objects: true and false." +msgstr "" + +#: gnu/packages/perl.scm:352 +#, fuzzy +msgid "Cache interface for Perl" +msgstr "Interface SQLite pour Perl" + +#: gnu/packages/perl.scm:353 +msgid "" +"The Cache modules are designed to assist a developer in\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" +"in web applications to store data locally to save repeated and redundan= t\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" +"runs of an application or invocations of a CGI-style script or simply a= s an\n" +"easy to use abstraction of the filesystem or shared memory." +msgstr "" + +#: gnu/packages/perl.scm:376 +msgid "Shared memory interprocess cache via mmap" +msgstr "" + +#: gnu/packages/perl.scm:377 +msgid "" +"A shared memory cache through an mmap'ed file. It's core is\n" +"written in C for performance. It uses fcntl locking to ensure multiple= \n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" +"algorithm to keep the most used entries in the cache." +msgstr "" + +#: gnu/packages/perl.scm:398 +msgid "Capture STDOUT and STDERR from Perl, XS or external programs" +msgstr "" + +#: gnu/packages/perl.scm:400 +msgid "" +"Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" +"sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" +"is captured while being passed through to the original file handles." +msgstr "" + +#: gnu/packages/perl.scm:420 +msgid "Executable comments for Perl" +msgstr "" + +#: gnu/packages/perl.scm:421 +msgid "" +"Carp::Assert is intended for a purpose like the ANSI C\n" +"library assert.h." +msgstr "" + +#: gnu/packages/perl.scm:443 +msgid "Convenience wrappers around Carp::Assert" +msgstr "" + +#: gnu/packages/perl.scm:444 +msgid "" +"Carp::Assert::More is a set of handy assertion functions for\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:464 +msgid "Report errors from a \"clan\" of modules" +msgstr "" + +#: gnu/packages/perl.scm:465 +msgid "" +"This module allows errors from a clan (or family) of modules\n" +"to appear to originate from the caller of the clan. This is necessary = in\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" +"the Carp.pm module doesn't help." +msgstr "" + +#: gnu/packages/perl.scm:489 +msgid "Automated accessor generation" +msgstr "" + +#: gnu/packages/perl.scm:490 +msgid "" +"This module automagically generates accessors/mutators for\n" +"your class." +msgstr "" + +#: gnu/packages/perl.scm:512 +msgid "Faster, but less expandable, chained accessors" +msgstr "" + +#: gnu/packages/perl.scm:513 +msgid "" +"A chained accessor is one that always returns the object\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" +"the same mk_accessors interface." +msgstr "" + +#: gnu/packages/perl.scm:539 +msgid "Build groups of accessors" +msgstr "" + +#: gnu/packages/perl.scm:540 +msgid "" +"This class lets you build groups of accessors that will call\n" +"different getters and setters." +msgstr "" + +#: gnu/packages/perl.scm:560 +msgid "Pragma to use the C3 method resolution order algorithm" +msgstr "" + +#: gnu/packages/perl.scm:561 +msgid "" +"This is pragma to change Perl 5's standard method resolution\n" +"order from depth-first left-to-right (a.k.a - pre-order) to the more\n" +"sophisticated C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:585 +msgid "Drop-in replacement for NEXT" +msgstr "" + +#: gnu/packages/perl.scm:586 +msgid "" +"This module is intended as a drop-in replacement for NEXT,\n" +"supporting the same interface, but using Class::C3 to do the hard work.= " +msgstr "" + +#: gnu/packages/perl.scm:610 +msgid "Load mix-ins or components to your C3-based class" +msgstr "" + +#: gnu/packages/perl.scm:611 +msgid "" +"This module will inject base classes to your module using\n" +"the Class::C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:629 +msgid "Inheritable, overridable class data" +msgstr "" + +#: gnu/packages/perl.scm:630 +msgid "" +"Class::Data::Inheritable is for creating accessor/mutators\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" +"subclasses and can be overridden." +msgstr "" + +#: gnu/packages/perl.scm:651 +msgid "Class for easy date and time manipulation" +msgstr "" + +#: gnu/packages/perl.scm:652 +msgid "" +"This module provides a general-purpose date and datetime\n" +"type for perl." +msgstr "" + +#: gnu/packages/perl.scm:671 +msgid "Utility methods for factory classes" +msgstr "" + +#: gnu/packages/perl.scm:672 +msgid "This module exports methods useful for factory classes." +msgstr "" + +#: gnu/packages/perl.scm:689 +msgid "Get information about a class and its structure" +msgstr "" + +#: gnu/packages/perl.scm:690 +msgid "" +"Class::Inspector allows you to get information about a\n" +"loaded class." +msgstr "" + +#: gnu/packages/perl.scm:718 +msgid "Working (require \"Class::Name\") and more" +msgstr "" + +#: gnu/packages/perl.scm:719 +msgid "" +"\"require EXPR\" only accepts Class/Name.pm style module\n" +"names, not Class::Name. For that, this module provides \"load_class\n" +"'Class::Name'\"." +msgstr "" + +#: gnu/packages/perl.scm:742 +msgid "XS implementation of parts of Class::Load" +msgstr "" + +#: gnu/packages/perl.scm:743 +msgid "" +"This module provides an XS implementation for portions of\n" +"Class::Load." +msgstr "" + +#: gnu/packages/perl.scm:762 +msgid "Create generic methods for OO Perl" +msgstr "" + +#: gnu/packages/perl.scm:763 +msgid "" +"This module solves the problem of having to continually\n" +"write accessor methods for your objects that perform standard tasks." +msgstr "" + +#: gnu/packages/perl.scm:784 +msgid "Moose-like method modifiers" +msgstr "" + +#: gnu/packages/perl.scm:785 +msgid "" +"Class::Method::Modifiers provides three modifiers: 'before',\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" +"is run in place of the original method, with a hook to easily call that= \n" +"original method." +msgstr "" + +#: gnu/packages/perl.scm:806 +msgid "Implementation of a singleton class for Perl" +msgstr "" + +#: gnu/packages/perl.scm:807 +msgid "" +"This module implements a Singleton class from which other\n" +"classes can be derived. By itself, the Class::Singleton module does ve= ry\n" +"little other than manage the instantiation of a single object." +msgstr "" + +#: gnu/packages/perl.scm:826 +msgid "Minimalist class construction" +msgstr "" + +#: gnu/packages/perl.scm:827 +msgid "" +"This module offers a minimalist class construction kit. It\n" +"uses no non-core modules for any recent Perl." +msgstr "" + +#: gnu/packages/perl.scm:847 +msgid "Unload a class" +msgstr "" + +#: gnu/packages/perl.scm:848 +msgid "" +"Class:Unload unloads a given class by clearing out its\n" +"symbol table and removing it from %INC." +msgstr "" + +#: gnu/packages/perl.scm:866 +msgid "Generate fast XS accessors without runtime compilation" +msgstr "" + +#: gnu/packages/perl.scm:867 +msgid "" +"Class::XSAccessor implements fast read, write, and\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" +"\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" +"Class::XSAccessor::Array implements the same interface for objects that= use\n" +"arrays for their internal representation." +msgstr "" + +#: gnu/packages/perl.scm:887 +msgid "Recursively copy Perl datatypes" +msgstr "" + +#: gnu/packages/perl.scm:889 +msgid "" +"This module provides a clone() method which makes recursive copies of\n= " +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" +"objects." +msgstr "" + +#: gnu/packages/perl.scm:910 +msgid "Sane defaults for Perl programs" +msgstr "" + +#: gnu/packages/perl.scm:911 +msgid "" +"This module implements some sane defaults for Perl programs,\n" +"as defined by two typical specimens of Perl coders." +msgstr "" + +#: gnu/packages/perl.scm:931 +msgid "Load configuration from different file formats" +msgstr "" + +#: gnu/packages/perl.scm:932 +msgid "" +"Config::Any provides a facility for Perl applications and\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" +"supports XML, YAML, JSON, Apache-style configuration, and Perl code." +msgstr "" + +#: gnu/packages/perl.scm:953 +msgid "Module to implement some AutoConf macros in Perl" +msgstr "" + +#: gnu/packages/perl.scm:954 +msgid "" +"Config::AutoConf is intended to provide the same\n" +"opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." +msgstr "" + +#: gnu/packages/perl.scm:972 +msgid "Generic Config Module" +msgstr "" + +#: gnu/packages/perl.scm:973 +msgid "" +"This module opens a config file and parses its contents for\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" +"the well known Apache config format and is 100% compatible with Apache\= n" +"configs, but you can also just use simple name/value pairs in your conf= ig\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" +"some enhancements such as here-documents, C-style comments, and multili= ne\n" +"options." +msgstr "" + +#: gnu/packages/perl.scm:999 +msgid "Preserve context during subroutine call" +msgstr "" + +#: gnu/packages/perl.scm:1000 +msgid "" +"This module runs code after a subroutine call, preserving\n" +"the context the subroutine would have seen if it were the last statemen= t in\n" +"the caller." +msgstr "" + +#: gnu/packages/perl.scm:1021 +msgid "Verify requirements in a CPAN::Meta object" +msgstr "" + +#: gnu/packages/perl.scm:1022 +msgid "" +"This module verifies if requirements described in a\n" +"CPAN::Meta object are present." +msgstr "" + +#: gnu/packages/perl.scm:1042 +msgid "JSON::XS for Cpanel" +msgstr "" + +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa." +msgstr "" + +#: gnu/packages/perl.scm:1061 +msgid "Random password generator" +msgstr "" + +#: gnu/packages/perl.scm:1062 +msgid "" +"Crypt::RandPasswd provides three functions that can be used\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" +"This code is a Perl implementation of the Automated Password Generator\= n" +"standard, like the program described in \"A Random Word Generator For\n= " +"Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" +"contained in Appendix A of FIPS Publication 181, \"Standard for Automat= ed\n" +"Password Generator\"." +msgstr "" + +#: gnu/packages/perl.scm:1105 +#, fuzzy +msgid "Library for genomic analysis" +msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" + +#: gnu/packages/perl.scm:1106 +msgid "" +"Chaolin Zhang's Perl Library (czplib) contains assorted\n" +"functions and data structures for processing and analysing genomic and\= n" +"bioinformatics data." +msgstr "" + +#: gnu/packages/perl.scm:1125 +msgid "Pretty printing of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1126 +msgid "" +"This module provide functions that takes a list of values as\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" +"code that, when \"eval\"ed, produces a deep copy of the original argume= nts." +msgstr "" + +#: gnu/packages/perl.scm:1145 +msgid "Concise data dumper" +msgstr "" + +#: gnu/packages/perl.scm:1146 +msgid "" +"Data::Dumper::Concise provides a dumper with Less\n" +"indentation and newlines plus sub deparsing." +msgstr "" + +#: gnu/packages/perl.scm:1168 +msgid "Parse and validate simple name/value option pairs" +msgstr "" + +#: gnu/packages/perl.scm:1170 +msgid "Data::OptList provides a simple syntax for name/value option pair= s." +msgstr "" + +#: gnu/packages/perl.scm:1192 +msgid "Help when paging through sets of results" +msgstr "" + +#: gnu/packages/perl.scm:1193 +msgid "" +"When searching through large amounts of data, it is often\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" +"The maths behind this is unfortunately fiddly, hence this module." +msgstr "" + +#: gnu/packages/perl.scm:1215 +msgid "Structured tags datastructures" +msgstr "" + +#: gnu/packages/perl.scm:1217 +msgid "" +"This module is for manipulating data as hierarchical tag/value\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:1244 +msgid "N at a time iteration API" +msgstr "" + +#: gnu/packages/perl.scm:1245 +msgid "" +"This module tries to find middle ground between one at a\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" +"to avoid the overhead of implementing an iterative api when this isn't\= n" +"necessary, without breaking forward compatibility in case that becomes\= n" +"necessary later on." +msgstr "" + +#: gnu/packages/perl.scm:1270 +msgid "Dynamic generation of nested combinations of variants" +msgstr "" + +#: gnu/packages/perl.scm:1271 +msgid "" +"Data::Tumbler - Dynamic generation of nested combinations of\n" +"variants." +msgstr "" + +#: gnu/packages/perl.scm:1297 +msgid "Visitor style traversal of Perl data structures" +msgstr "" + +#: gnu/packages/perl.scm:1298 +msgid "" +"This module is a simple visitor implementation for Perl\n" +"values. It has a main dispatcher method, visit, which takes a single p= erl\n" +"value and then calls the methods appropriate for that value. It can\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" +"support for per-object behavior, circular structures, visiting tied\n" +"structures, and all ref types (hashes, arrays, scalars, code, globs)." +msgstr "" + +#: gnu/packages/perl.scm:1323 +msgid "Gregorian calendar date calculations" +msgstr "" + +#: gnu/packages/perl.scm:1324 +msgid "" +"This package consists of a Perl module for date calculations\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" +"standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" +"applicable)." +msgstr "" + +#: gnu/packages/perl.scm:1348 +msgid "XS wrapper for Date::Calc" +msgstr "" + +#: gnu/packages/perl.scm:1349 +msgid "" +"Date::Calc::XS is an XS wrapper and C library plug-in for\n" +"Date::Calc." +msgstr "" + +#: gnu/packages/perl.scm:1373 +msgid "Date manipulation routines" +msgstr "" + +#: gnu/packages/perl.scm:1374 +msgid "" +"Date::Manip is a series of modules for common date/time\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" +"time from another, or parsing international times." +msgstr "" + +#: gnu/packages/perl.scm:1402 +msgid "Date and time object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1403 +msgid "" +"DateTime is a class for the representation of date/time\n" +"combinations. It represents the Gregorian calendar, extended backwards= in\n" +"time before its creation (in 1582)." +msgstr "" + +#: gnu/packages/perl.scm:1428 +msgid "DateTime set objects" +msgstr "" + +#: gnu/packages/perl.scm:1429 +msgid "" +"The DateTime::Set module provides a date/time sets\n" +"implementation. It allows, for example, the generation of groups of da= tes,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" +"within a time range." +msgstr "" + +#: gnu/packages/perl.scm:1452 +msgid "DateTime rfc2445 recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1453 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for RFC 2445 style recurrences." +msgstr "" + +#: gnu/packages/perl.scm:1474 +msgid "DateTime::Set extension for basic recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1475 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" +"\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." +msgstr "" + +#: gnu/packages/perl.scm:1500 +msgid "Create DateTime parser classes and objects" +msgstr "" + +#: gnu/packages/perl.scm:1501 +msgid "" +"DateTime::Format::Builder creates DateTime parsers. Many\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" +"to do this without writing reams of structural code." +msgstr "" + +#: gnu/packages/perl.scm:1528 +msgid "Parse data/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1529 +msgid "" +"DateTime::Format::Flexible attempts to take any string you\n" +"give it and parse it into a DateTime object." +msgstr "" + +#: gnu/packages/perl.scm:1555 +msgid "Parse and format iCal datetime and duration strings" +msgstr "" + +#: gnu/packages/perl.scm:1556 +msgid "" +"This module understands the ICal date/time and duration\n" +"formats, as defined in RFC 2445. It can be used to parse these formats= in\n" +"order to create the appropriate objects." +msgstr "" + +#: gnu/packages/perl.scm:1588 +msgid "Machine-readable date/time with natural parsing" +msgstr "" + +#: gnu/packages/perl.scm:1589 +msgid "" +"DateTime::Format::Natural takes a string with a human\n" +"readable date/time and creates a machine readable one by applying natur= al\n" +"parsing logic." +msgstr "" + +#: gnu/packages/perl.scm:1613 +msgid "Parse and format strp and strf time patterns" +msgstr "" + +#: gnu/packages/perl.scm:1614 +msgid "" +"This module implements most of `strptime(3)`, the POSIX\n" +"function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" +"takes a string and a pattern and returns the `DateTime` object associat= ed." +msgstr "" + +#: gnu/packages/perl.scm:1639 +msgid "Localization support for DateTime.pm" +msgstr "" + +#: gnu/packages/perl.scm:1640 +msgid "" +"The DateTime::Locale modules provide localization data for\n" +"the DateTime.pm class." +msgstr "" + +#: gnu/packages/perl.scm:1667 +#, fuzzy +msgid "Time zone object for Perl" +msgstr "Interface SQLite pour Perl" + +#: gnu/packages/perl.scm:1668 +msgid "" +"This class is the base class for all time zone objects. A\n" +"time zone is represented internally as a set of observances, each of wh= ich\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" +"DateTime module, this module does not do much. It's primary interface = is\n" +"through a DateTime object, and most users will not need to directly use= \n" +"DateTime::TimeZone methods." +msgstr "" + +#: gnu/packages/perl.scm:1698 +msgid "Parse date/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1699 +msgid "" +"DateTimeX::Easy uses a variety of DateTime::Format packages\n" +"to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" +"edges (mainly concerning timezone detection and selection)." +msgstr "" + +#: gnu/packages/perl.scm:1720 +msgid "Meatier version of caller" +msgstr "" + +#: gnu/packages/perl.scm:1721 +msgid "Devel::Caller provides meatier version of caller." +msgstr "" + +#: gnu/packages/perl.scm:1739 +msgid "Check that a command is available" +msgstr "" + +#: gnu/packages/perl.scm:1740 +msgid "" +"Devel::CheckBin is a perl module that checks whether a\n" +"particular command is available." +msgstr "" + +#: gnu/packages/perl.scm:1760 +msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" +msgstr "" + +#: gnu/packages/perl.scm:1761 +msgid "" +"Devel::GlobalDestruction provides a function returning the\n" +"equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." +msgstr "" + +#: gnu/packages/perl.scm:1781 +msgid "Alias lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:1782 +msgid "" +"Devel::LexAlias provides the ability to alias a lexical\n" +"variable in a subroutines scope to one of your choosing." +msgstr "" + +#: gnu/packages/perl.scm:1804 +msgid "Introspect overloaded operators" +msgstr "" + +#: gnu/packages/perl.scm:1805 +msgid "" +"Devel::OverloadInfo returns information about overloaded\n" +"operators for a given class (or object), including where in the inherit= ance\n" +"hierarchy the overloads are declared and where the code implementing it= is." +msgstr "" + +#: gnu/packages/perl.scm:1832 +msgid "Partial dumping of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1833 +msgid "" +"This module is a data dumper optimized for logging of\n" +"arbitrary parameters." +msgstr "" + +#: gnu/packages/perl.scm:1851 +msgid "Object representing a stack trace" +msgstr "" + +#: gnu/packages/perl.scm:1852 +msgid "" +"The Devel::StackTrace module contains two classes,\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" +"information that can be retrieved via Perl's caller() function, as well= as\n" +"providing a simple interface to this data." +msgstr "" + +#: gnu/packages/perl.scm:1874 +msgid "Displays stack trace in HTML" +msgstr "" + +#: gnu/packages/perl.scm:1875 +msgid "" +"Devel::StackTrace::AsHTML adds as_html method to\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" +"snippet context and function parameters. If you call it on an instance= of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" +"each stack frame." +msgstr "" + +#: gnu/packages/perl.scm:1896 +msgid "Dump symbol names or the symbol table" +msgstr "" + +#: gnu/packages/perl.scm:1897 +msgid "Devel::Symdump provides access to the perl symbol table." +msgstr "" + +#: gnu/packages/perl.scm:1914 +msgid "Keyed-Hashing for Message Authentication" +msgstr "" + +#: gnu/packages/perl.scm:1915 +msgid "" +"The Digest::HMAC module follows the common Digest::\n" +"interface for the RFC 2104 HMAC mechanism." +msgstr "" + +#: gnu/packages/perl.scm:1931 +msgid "Perl implementation of the SHA-1 message digest algorithm" +msgstr "" + +#: gnu/packages/perl.scm:1933 +msgid "" +"This package provides 'Digest::SHA1', an implementation of the NIST\n" +"SHA-1 message digest algorithm for use by Perl programs." +msgstr "" + +#: gnu/packages/perl.scm:1955 +msgid "Declare version conflicts for your dist" +msgstr "" + +#: gnu/packages/perl.scm:1956 +msgid "" +"This module allows you to specify conflicting versions of\n" +"modules separately and deal with them after the module is done installi= ng." +msgstr "" + +#: gnu/packages/perl.scm:1974 +msgid "OO-ish Error/Exception handling for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1975 +msgid "" +"The Error package provides two interfaces. Firstly Error\n" +"provides a procedural interface to exception handling. Secondly Error = is a\n" +"base class for errors/exceptions that can either be thrown, for subsequ= ent\n" +"catch, or can simply be recorded." +msgstr "" + +#: gnu/packages/perl.scm:2000 +msgid "Safely and cleanly create closures via string eval" +msgstr "" + +#: gnu/packages/perl.scm:2001 +msgid "" +"String eval is often used for dynamic code generation. For\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" +"them in $@@ instead. This module attempts to solve these problems. It= \n" +"provides an eval_closure function, which evals a string in a clean\n" +"environment, other than a fixed list of specified variables. Compilati= on\n" +"errors are rethrown automatically." +msgstr "" + +#: gnu/packages/perl.scm:2030 +msgid "Allows you to declare real exception classes in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2031 +msgid "" +"Exception::Class allows you to declare exception hierarchies\n" +"in your modules in a \"Java-esque\" manner." +msgstr "" + +#: gnu/packages/perl.scm:2047 +msgid "Lightweight exporting of functions and variables" +msgstr "" + +#: gnu/packages/perl.scm:2049 +msgid "" +"Exporter::Lite is an alternative to Exporter, intended to provide a\n" +"lightweight subset of the most commonly-used functionality. It support= s\n" +"import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." +msgstr "" + +#: gnu/packages/perl.scm:2070 +msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" +msgstr "" + +#: gnu/packages/perl.scm:2071 +msgid "" +"Exporter::Tiny supports many of Sub::Exporter's\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" +"only about 40% as many lines of code and with zero non-core dependencie= s." +msgstr "" + +#: gnu/packages/perl.scm:2094 +msgid "Build.PL install path logic made easy" +msgstr "" + +#: gnu/packages/perl.scm:2095 +msgid "" +"This module tries to make install path resolution as easy as\n" +"possible." +msgstr "" + +#: gnu/packages/perl.scm:2113 +msgid "Wrapper for perl's configuration" +msgstr "" + +#: gnu/packages/perl.scm:2114 +msgid "" +"ExtUtils::Config is an abstraction around the %Config hash.\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" +"it ties together a family of modern toolchain modules." +msgstr "" + +#: gnu/packages/perl.scm:2133 +msgid "Various portability utilities for module builders" +msgstr "" + +#: gnu/packages/perl.scm:2134 +msgid "" +"This module provides various portable helper functions for\n" +"module building modules." +msgstr "" + +#: gnu/packages/perl.scm:2164 +msgid "Watch for changes to files" +msgstr "" + +#: gnu/packages/perl.scm:2165 +msgid "" +"This module provides a class to monitor a directory for\n" +"changes made to any file." +msgstr "" + +#: gnu/packages/perl.scm:2183 +msgid "Recursively copy files and directories" +msgstr "" + +#: gnu/packages/perl.scm:2184 +msgid "" +"This module has 3 functions: one to copy files only, one to\n" +"copy directories only, and one to do either depending on the argument's= \n" +"type." +msgstr "" + +#: gnu/packages/perl.scm:2206 +msgid "Alternative interface to File::Find" +msgstr "" + +#: gnu/packages/perl.scm:2207 +msgid "" +"File::Find::Rule is a friendlier interface to File::Find.\n" +"It allows you to build rules which specify the desired files and\n" +"directories." +msgstr "" + +#: gnu/packages/perl.scm:2230 +msgid "Common rules for searching for Perl things" +msgstr "" + +#: gnu/packages/perl.scm:2231 +msgid "" +"File::Find::Rule::Perl provides methods for finding various\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" +"in various parts of the CPAN ecosystem." +msgstr "" + +#: gnu/packages/perl.scm:2254 +msgid "Find your home and other directories on any platform" +msgstr "" + +#: gnu/packages/perl.scm:2255 +msgid "" +"File::HomeDir is a module for locating the directories that\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" +"that arise trying to find them consistently across a wide variety of\n" +"platforms." +msgstr "" + +#: gnu/packages/perl.scm:2282 +msgid "" +"Perl extension for crawling directory trees and compiling\n" +"lists of files" +msgstr "" + +#: gnu/packages/perl.scm:2285 +msgid "" +"The File::List module crawls the directory tree starting at the\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" +"matching a regular expression." +msgstr "" + +#: gnu/packages/perl.scm:2304 +msgid "Remove files and directories in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2305 +msgid "" +"File::Remove::remove removes files and directories. It acts\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" +"files, it will not remove directories; this module remedies that. It a= lso\n" +"accepts wildcards, * and ?, as arguments for file names." +msgstr "" + +#: gnu/packages/perl.scm:2329 +msgid "Locate per-dist and per-module shared files" +msgstr "" + +#: gnu/packages/perl.scm:2330 +msgid "" +"The intent of File::ShareDir is to provide a companion to\n" +"Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" +"module to have access to a large amount of read-only data that is store= d on\n" +"the file-system at run-time. Once the files have been installed to the= \n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" +"the installation." +msgstr "" + +#: gnu/packages/perl.scm:2352 +msgid "Install shared files" +msgstr "" + +#: gnu/packages/perl.scm:2353 +msgid "" +"File::ShareDir::Install allows you to install read-only data\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" +"allows you to locate these files after installation." +msgstr "" + +#: gnu/packages/perl.scm:2372 +msgid "Reading/Writing/Modifying of complete files" +msgstr "" + +#: gnu/packages/perl.scm:2373 +msgid "" +"File::Slurp provides subroutines to read or write entire\n" +"files with a simple call. It also has a subroutine for reading the lis= t of\n" +"file names in a directory." +msgstr "" + +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 +msgid "Return name and handle of a temporary file safely" +msgstr "" + +#: gnu/packages/perl.scm:2413 +msgid "" +"File::Temp can be used to create and open temporary files in\n" +"a safe way." +msgstr "" + +#: gnu/packages/perl.scm:2430 +msgid "Portable implementation of the `which' utility" +msgstr "" + +#: gnu/packages/perl.scm:2432 +msgid "" +"File::Which was created to be able to get the paths to executable\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" +"shell." +msgstr "" + +#: gnu/packages/perl.scm:2459 +msgid "Getopt::Long, but simpler and more powerful" +msgstr "" + +#: gnu/packages/perl.scm:2460 +msgid "" +"Getopt::Long::Descriptive is yet another Getopt library.\n" +"It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" +"avoid making you think about its huge array of options. It also provid= es\n" +"usage (help) messages, data validation, and a few other useful features= ." +msgstr "" + +#: gnu/packages/perl.scm:2478 +msgid "Table-driven argument parsing for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2480 +msgid "" +"Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " +"vaguely inspired by John Ousterhout's Tk_ParseArgv." +msgstr "" + +#: gnu/packages/perl.scm:2500 +msgid "Merge arbitrarily deep hashes into a single hash" +msgstr "" + +#: gnu/packages/perl.scm:2501 +msgid "" +"Hash::Merge merges two arbitrarily deep hashes into a single\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" +"value conflicts. The hash is followed recursively, so that deeply nest= ed\n" +"hashes that are at the same level will be merged when the parent hashes= are\n" +"merged." +msgstr "" + +#: gnu/packages/perl.scm:2523 +msgid "Store multiple values per key" +msgstr "" + +#: gnu/packages/perl.scm:2524 +msgid "" +"Hash::MultiValue is an object (and a plain hash reference)\n" +"that may contain multiple values per key, inspired by MultiDict of WebO= b." +msgstr "" + +#: gnu/packages/perl.scm:2544 +msgid "Import packages into other packages" +msgstr "" + +#: gnu/packages/perl.scm:2545 +msgid "" +"Writing exporters is a pain. Some use Exporter, some use\n" +"Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" +"exporters don't provide a consistent API for this, and pragmas need to = have\n" +"their import method called directly, since they effect the current unit= of\n" +"compilation. Import::Into provides global methods to make this painles= s." +msgstr "" + +#: gnu/packages/perl.scm:2567 +msgid "Use modules in inc/ if newer than installed" +msgstr "" + +#: gnu/packages/perl.scm:2568 +msgid "" +"The inc::latest module helps bootstrap configure-time\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" +"inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." +msgstr "" + +#: gnu/packages/perl.scm:2587 +msgid "Utilities for interactive I/O" +msgstr "" + +#: gnu/packages/perl.scm:2588 +msgid "" +"This module provides three utility subroutines that make it\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" +"and busy()." +msgstr "" + +#: gnu/packages/perl.scm:2607 +msgid "Emulate file interface for in-core strings" +msgstr "" + +#: gnu/packages/perl.scm:2608 +msgid "" +"IO::String is an IO::File (and IO::Handle) compatible class\n" +"that reads or writes data from in-core strings." +msgstr "" + +#: gnu/packages/perl.scm:2626 +msgid "IO:: interface for reading/writing an array of lines" +msgstr "" + +#: gnu/packages/perl.scm:2627 +msgid "" +"This toolkit primarily provides modules for performing both\n" +"traditional and object-oriented i/o) on things *other* than normal\n" +"filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " +msgstr "" + +#: gnu/packages/perl.scm:2645 +msgid "Perl interface to pseudo ttys" +msgstr "" + +#: gnu/packages/perl.scm:2647 +#, fuzzy +msgid "" +"This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" +"pseudo ttys." +msgstr "Ce paquet fournit une interface de base de donn=C3=A9es pour Per= l." + +#: gnu/packages/perl.scm:2675 +msgid "Run system() and background procs w/ piping, redirs, ptys" +msgstr "" + +#: gnu/packages/perl.scm:2676 +msgid "" +"IPC::Run allows you run and interact with child processes\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" +"are supported and may be mixed. Likewise, functional and OO API styles= are\n" +"both supported and may be mixed." +msgstr "" + +#: gnu/packages/perl.scm:2694 +msgid "Run a subprocess with input/output redirection" +msgstr "" + +#: gnu/packages/perl.scm:2696 +msgid "" +"The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" +"99% of the need for using system, qx, and open3 with a simple, extremel= y\n" +"Perlish API and none of the bloat and rarely used features of IPC::Run.= " +msgstr "" + +#: gnu/packages/perl.scm:2720 +#, fuzzy +msgid "Lightweight interface to shared memory" +msgstr "Interface SQLite pour Perl" + +#: gnu/packages/perl.scm:2721 +msgid "" +"IPC::ShareLite provides a simple interface to shared memory,\n" +"allowing data to be efficiently communicated between processes." +msgstr "" + +#: gnu/packages/perl.scm:2741 +msgid "JSON encoder/decoder for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2742 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa using either JSON::XS or JSON::PP." +msgstr "" + +#: gnu/packages/perl.scm:2767 +msgid "Wrapper for Perl JSON classes" +msgstr "" + +#: gnu/packages/perl.scm:2769 +msgid "" +"This module tries to provide a coherent API to bring together the\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" +"any JSON API and have it work regardless of which JSON module is actual= ly\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:2793 +msgid "Cpanel::JSON::XS with fallback" +msgstr "" + +#: gnu/packages/perl.scm:2794 +msgid "" +"This module first checks to see if either Cpanel::JSON::XS\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" +"either uses the first module it finds or throws an error." +msgstr "" + +#: gnu/packages/perl.scm:2817 +msgid "JSON serialising/deserialising for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 +msgid "Combination of List::Util and List::MoreUtils" +msgstr "" + +#: gnu/packages/perl.scm:2890 +msgid "" +"This module exports all of the functions that either\n" +"List::Util or List::MoreUtils defines, with preference to List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2914 +msgid "Provide the stuff missing in List::Util" +msgstr "" + +#: gnu/packages/perl.scm:2915 +msgid "" +"List::MoreUtils provides some trivial but commonly needed\n" +"functionality on lists which is not going to go into List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2933 +msgid "Expiry plug-in for Memoize that adds LRU cache expiration" +msgstr "" + +#: gnu/packages/perl.scm:2934 +msgid "" +"This module implements an expiry policy for Memoize that\n" +"follows LRU semantics, that is, the last n results, where n is specifie= d as\n" +"the argument to the CACHESIZE parameter, will be cached." +msgstr "" + +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 +msgid "Definition of MIME types" +msgstr "" + +#: gnu/packages/perl.scm:2973 +msgid "" +"This module provides a list of known mime-types, combined\n" +"from various sources. For instance, it contains all IANA types and the= \n" +"knowledge of Apache." +msgstr "" + +#: gnu/packages/perl.scm:3002 +msgid "Tiny replacement for Module::Build" +msgstr "" + +#: gnu/packages/perl.scm:3003 +msgid "" +"Many Perl distributions use a Build.PL file instead of a\n" +"Makefile.PL file to drive distribution configuration, build, test and\n= " +"installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" +"build system. This module provides a simple, lightweight, drop-in\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" +"has less than 120, yet supports the features needed by most distributio= ns." +msgstr "" + +#: gnu/packages/perl.scm:3025 +msgid "Find and use installed modules in a (sub)category" +msgstr "" + +#: gnu/packages/perl.scm:3026 +msgid "" +"Module::Find lets you find and use modules in categories.\n" +"This can be useful for auto-detecting driver or plugin modules. You ca= n\n" +"differentiate between looking in the category itself or in all\n" +"subcategories." +msgstr "" + +#: gnu/packages/perl.scm:3052 +msgid "Loads alternate underlying implementations for a module" +msgstr "" + +#: gnu/packages/perl.scm:3053 +msgid "" +"This module abstracts out the process of choosing one of\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" +"implementations." +msgstr "" + +#: gnu/packages/perl.scm:3091 +msgid "Standalone, extensible Perl module installer" +msgstr "" + +#: gnu/packages/perl.scm:3092 +msgid "" +"Module::Install is a package for writing installers for\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" +"strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" +"installation version 5.005 or newer." +msgstr "" + +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 +msgid "Perl runtime module handling" +msgstr "" + +#: gnu/packages/perl.scm:3134 +msgid "" +"The functions exported by this module deal with runtime\n" +"handling of Perl modules, which are normally handled at compile time." +msgstr "" + +#: gnu/packages/perl.scm:3157 +msgid "Provide information on conflicts for Module::Runtime" +msgstr "" + +#: gnu/packages/perl.scm:3158 +msgid "" +"This module provides conflicts checking for Module::Runtime,\n" +"which had a recent release that broke some versions of Moose. It is ca= lled\n" +"from Moose::Conflicts and moose-outdated." +msgstr "" + +#: gnu/packages/perl.scm:3179 +msgid "Recursively scan Perl code for dependencies" +msgstr "" + +#: gnu/packages/perl.scm:3180 +msgid "" +"Module::ScanDeps is a module to recursively scan Perl\n" +"programs for dependencies." +msgstr "" + +#: gnu/packages/perl.scm:3200 +msgid "Module name tools and transformations" +msgstr "" + +#: gnu/packages/perl.scm:3201 +msgid "" +"This module provides a few useful functions for manipulating\n" +"module names. Its main aim is to centralise some of the functions comm= only\n" +"used by modules that manipulate other modules in some way, like convert= ing\n" +"module names to relative paths." +msgstr "" + +#: gnu/packages/perl.scm:3231 +msgid "Minimalist Object Orientation (with Moose compatibility)" +msgstr "" + +#: gnu/packages/perl.scm:3232 +msgid "" +"Moo is an extremely light-weight Object Orientation system.\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" +"that avoids the details of Perl's object system. Moo contains a subset= of\n" +"Moose and is optimised for rapid startup." +msgstr "" + +#: gnu/packages/perl.scm:3308 +msgid "Postmodern object system for Perl 5" +msgstr "" + +#: gnu/packages/perl.scm:3310 +msgid "" +"Moose is a complete object system for Perl 5. It provides keywords for= \n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" +"Moose, you define your class declaratively, without needing to know abo= ut\n" +"blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" +"A class definition with Moose reads like a list of very concise English= \n" +"sentences." +msgstr "" + +#: gnu/packages/perl.scm:3338 +msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" +msgstr "" + +#: gnu/packages/perl.scm:3339 +msgid "" +"This module attempts to emulate the behavior of\n" +"Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" +"private methods are not." +msgstr "" + +#: gnu/packages/perl.scm:3371 +msgid "Moose role for processing command line options" +msgstr "" + +#: gnu/packages/perl.scm:3372 +msgid "" +"This is a Moose role which provides an alternate constructor\n" +"for creating objects using parameters passed in from the command line." +msgstr "" + +#: gnu/packages/perl.scm:3393 +msgid "Mark overload code symbols as methods" +msgstr "" + +#: gnu/packages/perl.scm:3394 +msgid "" +"MooseX::MarkAsMethods allows one to easily mark certain\n" +"functions as Moose methods. This will allow other packages such as\n" +"namespace::autoclean to operate without blowing away your overloads. A= fter\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" +"being methods, and class extension as well as composition from roles wi= th\n" +"overloads will \"just work\"." +msgstr "" + +#: gnu/packages/perl.scm:3424 +msgid "Code attribute introspection" +msgstr "" + +#: gnu/packages/perl.scm:3425 +msgid "" +"This module allows code attributes of methods to be\n" +"introspected using Moose meta method objects." +msgstr "" + +#: gnu/packages/perl.scm:3451 +msgid "Subclassing of non-Moose classes" +msgstr "" + +#: gnu/packages/perl.scm:3452 +msgid "" +"MooseX::NonMoose allows for easily subclassing non-Moose\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" +"as setting up proper inheritance from Moose::Object and installing (and= \n" +"inlining, at make_immutable time) a constructor that makes sure things = like\n" +"BUILD methods are called. It tries to be as non-intrusive as possible.= " +msgstr "" + +#: gnu/packages/perl.scm:3481 +msgid "Extension of Params::Validate using Moose's types" +msgstr "" + +#: gnu/packages/perl.scm:3482 +msgid "" +"This module fills a gap in Moose by adding method parameter\n" +"validation to Moose." +msgstr "" + +#: gnu/packages/perl.scm:3503 +msgid "Apply roles to a related Perl class" +msgstr "" + +#: gnu/packages/perl.scm:3504 +msgid "" +"This module applies roles to make a subclass instead of\n" +"manually setting up a subclass." +msgstr "" + +#: gnu/packages/perl.scm:3531 +msgid "Moose roles with composition parameters" +msgstr "" + +#: gnu/packages/perl.scm:3532 +msgid "" +"Because Moose roles serve many different masters, they\n" +"usually provide only the least common denominator of functionality. To= \n" +"empower roles further, more configurability than -alias and -excludes i= s\n" +"required. Perhaps your role needs to know which method to call when it= is\n" +"done processing, or what default value to use for its url attribute.\n" +"Parameterized roles offer a solution to these (and other) kinds of prob= lems." +msgstr "" + +#: gnu/packages/perl.scm:3558 +msgid "Roles which support overloading" +msgstr "" + +#: gnu/packages/perl.scm:3559 +msgid "" +"MooseX::Role::WithOverloading allows you to write a\n" +"Moose::Role which defines overloaded operators and allows those overloa= d\n" +"methods to be composed into the classes/roles/instances it's compiled t= o,\n" +"where plain Moose::Roles would lose the overloading." +msgstr "" + +#: gnu/packages/perl.scm:3581 +msgid "Name your accessors foo() and set_foo()" +msgstr "" + +#: gnu/packages/perl.scm:3582 +msgid "" +"This module does not provide any methods. Simply loading it\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" +"accessor, while set methods are prefixed with \"_set_\"." +msgstr "" + +#: gnu/packages/perl.scm:3608 +msgid "Strict object constructors for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3609 +msgid "" +"Simply loading this module makes your constructors\n" +"\"strict\". If your constructor is called with an attribute init argum= ent\n" +"that your class does not declare, then it calls Moose->throw_error()." +msgstr "" + +#: gnu/packages/perl.scm:3637 +msgid "Trait loading and resolution for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3638 +msgid "" +"Adds support on top of MooseX::Traits for class precedence\n" +"search for traits and some extra attributes." +msgstr "" + +#: gnu/packages/perl.scm:3664 +msgid "Organise your Moose types in libraries" +msgstr "" + +#: gnu/packages/perl.scm:3665 +msgid "" +"This package lets you declare types using short names, but\n" +"behind the scenes it namespaces all your type declarations, effectively= \n" +"prevent name clashes between packages." +msgstr "" + +#: gnu/packages/perl.scm:3696 +msgid "DateTime related constraints and coercions for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3697 +msgid "" +"This module packages several Moose::Util::TypeConstraints\n" +"with coercions, designed to work with the DateTime suite of objects." +msgstr "" + +#: gnu/packages/perl.scm:3729 +msgid "Extensions to MooseX::Types::DateTime" +msgstr "" + +#: gnu/packages/perl.scm:3730 +msgid "" +"This module builds on MooseX::Types::DateTime to add\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" +"all coercions and constraints are inherited." +msgstr "" + +#: gnu/packages/perl.scm:3759 +msgid "ClassName type constraints for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3760 +msgid "" +"MooseX::Types::LoadableClass provides a ClassName type\n" +"constraint with coercion to load the class." +msgstr "" + +#: gnu/packages/perl.scm:3784 +msgid "Moosish types and type builder" +msgstr "" + +#: gnu/packages/perl.scm:3785 +msgid "" +"MooX::Types::MooseLike provides a possibility to build your\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" +"fields in Moo-based classes." +msgstr "" + +#: gnu/packages/perl.scm:3804 +msgid "MRO interface compatibility for Perls < 5.9.5" +msgstr "" + +#: gnu/packages/perl.scm:3805 +msgid "" +"The \"mro\" namespace provides several utilities for dealing\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" +"higher. This module provides those interfaces for earlier versions of\= n" +"Perl (back to 5.6.0)." +msgstr "" + +#: gnu/packages/perl.scm:3832 +msgid "Keep imports out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3833 +msgid "" +"The namespace::autoclean pragma will remove all imported\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" +"up as methods on your class or instances. It is very similar to\n" +"namespace::clean, except it will clean all imported functions, no matte= r if\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" +"anything that looks like a method." +msgstr "" + +#: gnu/packages/perl.scm:3859 +msgid "Keep imports and functions out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3860 +msgid "" +"The namespace::clean pragma will remove all previously\n" +"declared or imported symbols at the end of the current package's compil= e\n" +"cycle. Functions called in the package itself will still be bound by t= heir\n" +"name, but they won't show up as methods on your class or instances." +msgstr "" + +#: gnu/packages/perl.scm:3880 +msgid "Numeric comparisons" +msgstr "" + +#: gnu/packages/perl.scm:3881 +msgid "" +"Number::Compare compiles a simple comparison to an anonymous\n" +"subroutine, which you can call with a value to be tested against." +msgstr "" + +#: gnu/packages/perl.scm:3899 +msgid "Generate cryptographic signatures for objects" +msgstr "" + +#: gnu/packages/perl.scm:3900 +msgid "" +"Object::Signature is an abstract base class that you can\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" +"signatures." +msgstr "" + +#: gnu/packages/perl.scm:3922 +msgid "Anonymous packages" +msgstr "" + +#: gnu/packages/perl.scm:3923 +msgid "" +"This module allows for anonymous packages that are\n" +"independent of the main namespace and only available through an object\= n" +"instance, not by name." +msgstr "" + +#: gnu/packages/perl.scm:3951 +msgid "Manage deprecation warnings for your distribution" +msgstr "" + +#: gnu/packages/perl.scm:3952 +msgid "" +"This module allows you to manage a set of deprecations for\n" +"one or more modules." +msgstr "" + +#: gnu/packages/perl.scm:3979 +msgid "Routines for manipulating stashes" +msgstr "" + +#: gnu/packages/perl.scm:3980 +msgid "" +"Manipulating stashes (Perl's symbol tables) is occasionally\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" +"of that behind a simple API." +msgstr "" + +#: gnu/packages/perl.scm:4003 +msgid "Faster implementation of the Package::Stash API" +msgstr "" + +#: gnu/packages/perl.scm:4004 +msgid "" +"This is a backend for Package::Stash, which provides the\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" +"compiler." +msgstr "" + +#: gnu/packages/perl.scm:4024 +msgid "Play with other peoples' lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:4025 +msgid "" +"PadWalker is a module which allows you to inspect (and even\n" +"change) lexical variables in any subroutine which called you. It will = only\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" +"is particularly useful for debugging." +msgstr "" + +#: gnu/packages/perl.scm:4046 +msgid "Simple, compact and correct param-checking functions" +msgstr "" + +#: gnu/packages/perl.scm:4048 +msgid "" +"Params::Util provides a basic set of importable functions that makes\n" +"checking parameters easier." +msgstr "" + +#: gnu/packages/perl.scm:4072 +msgid "Validate method/function parameters" +msgstr "" + +#: gnu/packages/perl.scm:4073 +msgid "" +"The Params::Validate module allows you to validate method or\n" +"function call parameters to an arbitrary level of specificity." +msgstr "" + +#: gnu/packages/perl.scm:4091 +msgid "Create and manipulate PAR distributions" +msgstr "" + +#: gnu/packages/perl.scm:4092 +msgid "" +"PAR::Dist is a toolkit to create and manipulate PAR\n" +"distributions." +msgstr "" + +#: gnu/packages/perl.scm:4111 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time." +msgstr "" + +#: gnu/packages/perl.scm:4130 +msgid "Path specification manipulation" +msgstr "" + +#: gnu/packages/perl.scm:4131 +msgid "" +"Path::Class is a module for manipulation of file and\n" +"directory specifications in a cross-platform manner." +msgstr "" + +#: gnu/packages/perl.scm:4151 +msgid "Check for comprehensive documentation of a module" +msgstr "" + +#: gnu/packages/perl.scm:4152 +msgid "" +"This module provides a mechanism for determining if the pod\n" +"for a given module is comprehensive." +msgstr "" + +#: gnu/packages/perl.scm:4169 +msgid "Parsing library for text in Pod format" +msgstr "" + +#: gnu/packages/perl.scm:4170 +msgid "" +"Pod::Simple is a Perl library for parsing text in\n" +"the Pod (plain old documentation) markup language that is typically\n" +"used for writing documentation for Perl and for Perl modules." +msgstr "" + +#: gnu/packages/perl.scm:4191 +msgid "GNU C library compatible strftime for loggers and servers" +msgstr "" + +#: gnu/packages/perl.scm:4192 +msgid "" +"POSIX::strftime::Compiler provides GNU C library compatible\n" +"strftime(3). But this module is not affected by the system locale. Th= is\n" +"feature is useful when you want to write loggers, servers, and portable= \n" +"applications." +msgstr "" + +#: gnu/packages/perl.scm:4210 +msgid "Information about the currently running perl" +msgstr "" + +#: gnu/packages/perl.scm:4212 +msgid "" +"Probe::Perl provides methods for obtaining information about the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" +"Module::Build project, but has been externalized here for general use." +msgstr "" + +#: gnu/packages/perl.scm:4234 +msgid "Create read-only scalars, arrays, hashes" +msgstr "" + +#: gnu/packages/perl.scm:4235 +msgid "" +"This module provides a facility for creating non-modifiable\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" +"variables that should not be changed." +msgstr "" + +#: gnu/packages/perl.scm:4253 +msgid "Provide commonly requested regular expressions" +msgstr "" + +#: gnu/packages/perl.scm:4255 +msgid "" +"This module exports a single hash (`%RE') that stores or generates\n" +"commonly needed regular expressions. Patterns currently provided inclu= de:\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" +"floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" +"offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" +"codes." +msgstr "" + +#: gnu/packages/perl.scm:4285 +msgid "Roles, as a slice of Moose" +msgstr "" + +#: gnu/packages/perl.scm:4286 +msgid "Role::Tiny is a minimalist role composition tool." +msgstr "" + +#: gnu/packages/perl.scm:4303 +msgid "Call isa, can, does, and DOES safely" +msgstr "" + +#: gnu/packages/perl.scm:4304 +msgid "" +"This module allows you to call isa, can, does, and DOES\n" +"safely on things that may not be objects." +msgstr "" + +#: gnu/packages/perl.scm:4322 +#, fuzzy +msgid "Lexically-scoped resource management" +msgstr "Gestion de p=C3=A9riph=C3=A9riques utilisateurs" + +#: gnu/packages/perl.scm:4323 +msgid "" +"This module provides a convenient way to perform cleanup or\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" +"useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" +"\"promises\" to be made that are automatically honoured by perl's garba= ge\n" +"collector." +msgstr "" + +#: gnu/packages/perl.scm:4346 +msgid "Infinite sets" +msgstr "" + +#: gnu/packages/perl.scm:4347 +msgid "Set::Infinite is a set theory module for infinite sets." +msgstr "" + +#: gnu/packages/perl.scm:4367 +msgid "Unordered collections of Perl Objects" +msgstr "" + +#: gnu/packages/perl.scm:4368 +msgid "" +"Set::Object provides efficient sets, unordered collections\n" +"of Perl objects without duplicates for scalars and references." +msgstr "" + +#: gnu/packages/perl.scm:4386 +#, fuzzy +msgid "Set operations for Perl" +msgstr "Interface SQLite pour Perl" + +#: gnu/packages/perl.scm:4387 +msgid "" +"The first priority of Set::Scalar is to be a convenient\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" +"designed to be slow or big, neither has it been designed to be fast or\= n" +"compact." +msgstr "" + +#: gnu/packages/perl.scm:4407 +msgid "Spiffy Perl Interface Framework For You" +msgstr "" + +#: gnu/packages/perl.scm:4408 +msgid "" +"Spiffy is a framework and methodology for doing object\n" +"oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" +"other OO languages like Python, Ruby, Java and Perl 6." +msgstr "" + +#: gnu/packages/perl.scm:4430 +msgid "Temporary buffer to save bytes" +msgstr "" + +#: gnu/packages/perl.scm:4431 +msgid "" +"Stream::Buffered is a buffer class to store arbitrary length\n" +"of byte strings and then get a seekable filehandle once everything is\n= " +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" +"on the length of the size." +msgstr "" + +#: gnu/packages/perl.scm:4451 +msgid "Turn on strict and make all warnings fatal" +msgstr "" + +#: gnu/packages/perl.scm:4452 +msgid "" +"Strictures turns on strict and make all warnings fatal when\n" +"run from within a source-controlled directory." +msgstr "" + +#: gnu/packages/perl.scm:4470 +msgid "Camelcase and de-camelcase" +msgstr "" + +#: gnu/packages/perl.scm:4471 +msgid "" +"This module may be used to convert from under_score text to\n" +"CamelCase and back again." +msgstr "" + +#: gnu/packages/perl.scm:4491 +msgid "Rewrite strings based on a set of known prefixes" +msgstr "" + +#: gnu/packages/perl.scm:4492 +msgid "" +"This module allows you to rewrite strings based on a set of\n" +"known prefixes." +msgstr "" + +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 +msgid "Sophisticated exporter for custom-built routines" +msgstr "" + +#: gnu/packages/perl.scm:4538 +msgid "" +"Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " +"custom-built routines." +msgstr "" + +#: gnu/packages/perl.scm:4557 +msgid "Only use Sub::Exporter if you need it" +msgstr "" + +#: gnu/packages/perl.scm:4558 +msgid "" +"Sub::Exporter is an incredibly powerful module, but with\n" +"that power comes great responsibility, as well as some runtime penaltie= s.\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" +"if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" +"renaming exports, if they try to use them." +msgstr "" + +#: gnu/packages/perl.scm:4580 +msgid "Retrieve names of code references" +msgstr "" + +#: gnu/packages/perl.scm:4581 +msgid "" +"Sub::Identify allows you to retrieve the real name of code\n" +"references." +msgstr "" + +#: gnu/packages/perl.scm:4600 +msgid "Install subroutines into packages easily" +msgstr "" + +#: gnu/packages/perl.scm:4602 +msgid "" +"Sub::Install makes it easy to install subroutines into packages without= \n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" +"can see them." +msgstr "" + +#: gnu/packages/perl.scm:4623 +msgid "(Re)name a sub" +msgstr "" + +#: gnu/packages/perl.scm:4624 +msgid "" +"Assigns a new name to referenced sub. If package\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" +"return value is the sub." +msgstr "" + +#: gnu/packages/perl.scm:4643 +msgid "Apparently run a function in a higher stack frame" +msgstr "" + +#: gnu/packages/perl.scm:4644 +msgid "" +"Like Tcl's uplevel() function, but not quite so dangerous.\n" +"The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" +"uplevel() are avoided." +msgstr "" + +#: gnu/packages/perl.scm:4663 +msgid "Perl extension for generating SVG documents" +msgstr "" + +#: gnu/packages/perl.scm:4664 +msgid "" +"SVG is a Perl module which generates a nested data structure\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" +"Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" +"access the DOM object, create and access Javascript, and generate SMIL\= n" +"animation content." +msgstr "" + +#: gnu/packages/perl.scm:4683 +msgid "Perl extension for getting CPU information" +msgstr "" + +#: gnu/packages/perl.scm:4685 +msgid "" +"In responce to a post on perlmonks.org, a module for counting the numbe= r\n" +"of CPU's on a system. Support has now also been added for type of CPU = and\n" +"clock speed." +msgstr "" + +#: gnu/packages/perl.scm:4707 +msgid "Get full hostname in Perl" +msgstr "" + +#: gnu/packages/perl.scm:4708 +msgid "" +"Sys::Hostname::Long tries very hard to get the full hostname\n" +"of a system." +msgstr "" + +#: gnu/packages/perl.scm:4726 +msgid "Ensure that a platform has weaken support" +msgstr "" + +#: gnu/packages/perl.scm:4727 +msgid "" +"One recurring problem in modules that use Scalar::Util's\n" +"weaken function is that it is not present in the pure-perl variant. If= \n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" +"error encouraging the user to seek support." +msgstr "" + +#: gnu/packages/perl.scm:4752 +msgid "Template processing system for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4753 +msgid "" +"The Template Toolkit is a collection of modules which\n" +"implement an extensible template processing system. It was originally\= n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" +"it can be used equally well for processing any other kind of text based= \n" +"documents: HTML, XML, POD, PostScript, LaTeX, and so on." +msgstr "" + +#: gnu/packages/perl.scm:4776 +msgid "Profiling for Template Toolkit" +msgstr "" + +#: gnu/packages/perl.scm:4777 +msgid "" +"Template::Timer provides inline profiling of the template\n" +"processing in Perl code." +msgstr "" + +#: gnu/packages/perl.scm:4795 +msgid "Detect encoding of the current terminal" +msgstr "" + +#: gnu/packages/perl.scm:4796 +msgid "" +"Term::Encoding is a simple module to detect the encoding of\n" +"the current terminal expects in various ways." +msgstr "" + +#: gnu/packages/perl.scm:4820 +msgid "Progress meter on a standard terminal" +msgstr "" + +#: gnu/packages/perl.scm:4821 +msgid "" +"Term::ProgressBar provides a simple progress bar on the\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" +"stuff has been done, and maybe an estimate at how long remains." +msgstr "" + +#: gnu/packages/perl.scm:4844 +msgid "Progress meter if run interactively" +msgstr "" + +#: gnu/packages/perl.scm:4845 +msgid "" +"Term::ProgressBar is a wonderful module for showing progress\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" +"a cron job) then it does not show the progress bar." +msgstr "" + +#: gnu/packages/perl.scm:4867 +msgid "Simple progress bars" +msgstr "" + +#: gnu/packages/perl.scm:4868 +msgid "" +"Term::ProgressBar::Simple tells you how much work has been\n" +"done, how much is left to do, and estimate how long it will take." +msgstr "" + +#: gnu/packages/perl.scm:4886 +#, fuzzy +msgid "Simple terminal control" +msgstr "Outil simple de sauvegarde incr=C3=A9mentale" + +#: gnu/packages/perl.scm:4887 +msgid "" +"This module, ReadKey, provides ioctl control for terminals\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" +"other terminal related features, including retrieval/modification of th= e\n" +"screen size, and retrieval/modification of the control characters." +msgstr "" + +#: gnu/packages/perl.scm:4914 +msgid "Data-driven testing framework for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4915 +msgid "" +"Test::Base gives a way to trivially write your own test\n" +"framework base class. It concentrates on offering reusable data driven= \n" +"patterns, so that you can write tests with a minimum of code." +msgstr "" + +#: gnu/packages/perl.scm:4946 +msgid "Check for uncleaned imports" +msgstr "" + +#: gnu/packages/perl.scm:4947 +msgid "" +"This module lets you check your module's namespaces for\n" +"imported functions you might have forgotten to remove with\n" +"namespace::autoclean or namespace::clean and are therefore available to= be\n" +"called as methods, which usually isn't want you want." +msgstr "" + +#: gnu/packages/perl.scm:4967 +msgid "Flexible deep comparison for the Test::Builder framework" +msgstr "" + +#: gnu/packages/perl.scm:4969 +msgid "" +"Test::Deep compares two structures by going through each level, ensurin= g\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" +"structures without getting caught in an infinite loop." +msgstr "" + +#: gnu/packages/perl.scm:4996 +msgid "Test strings and data structures and show differences" +msgstr "" + +#: gnu/packages/perl.scm:4997 +msgid "" +"This module exports three test functions and four diff-style\n" +"functions." +msgstr "" + +#: gnu/packages/perl.scm:5018 +msgid "Perl extension for maintaining test directories" +msgstr "" + +#: gnu/packages/perl.scm:5019 +msgid "" +"Testing code can involve making sure that files are created\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" +"to forget a file, or miss that some unexpected file was added. This mo= dule\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" +"modified or tested with this API, making it simple to test both individ= ual\n" +"files, as well as to verify that there are no missing or unknown files.= " +msgstr "" + +#: gnu/packages/perl.scm:5045 +msgid "Test exception based code" +msgstr "" + +#: gnu/packages/perl.scm:5046 +msgid "" +"This module provides a few convenience methods for testing\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" +"Test::More and friends." +msgstr "" + +#: gnu/packages/perl.scm:5066 +msgid "Simple helpers for testing code with exceptions" +msgstr "" + +#: gnu/packages/perl.scm:5067 +msgid "" +"Test::Fatal is an alternative to the popular\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" +"testing exception-throwing code with about the same amount of typing." +msgstr "" + +#: gnu/packages/perl.scm:5097 +msgid "Run Perl standard test scripts with statistics" +msgstr "" + +#: gnu/packages/perl.scm:5098 +msgid "" +"Simple test harness which allows tests to be run and results\n" +"automatically aggregated and output to STDOUT." +msgstr "" + +#: gnu/packages/perl.scm:5116 +msgid "Traces memory leaks in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5117 +msgid "" +"Test::LeakTrace provides several functions that trace memory\n" +"leaks. This module scans arenas, the memory allocation system, so it c= an\n" +"detect any leaked SVs in given blocks." +msgstr "" + +#: gnu/packages/perl.scm:5136 +msgid "Tests strings for equality, with more helpful failures" +msgstr "" + +#: gnu/packages/perl.scm:5137 +msgid "" +"This module provides some drop-in replacements for the\n" +"string comparison functions of Test::More, but which are more suitable = when\n" +"you test against long strings." +msgstr "" + +#: gnu/packages/perl.scm:5165 +#, fuzzy +msgid "Emulate troublesome interfaces in Perl" +msgstr "Interface SQLite pour Perl" + +#: gnu/packages/perl.scm:5166 +msgid "" +"Test::MockObject allows you to create objects that conform\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" +"the behavior, just the input and the output." +msgstr "" + +#: gnu/packages/perl.scm:5185 +msgid "Replaces actual time with simulated time" +msgstr "" + +#: gnu/packages/perl.scm:5186 +msgid "" +"This module was created to enable test suites to test code\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" +"time at compile time and then relies on the user supplying a mock time = via\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" +"to gmtime,time or localtime." +msgstr "" + +#: gnu/packages/perl.scm:5213 +msgid "Most commonly needed test functions and features" +msgstr "" + +#: gnu/packages/perl.scm:5214 +msgid "" +"This module provides the most commonly used testing\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" +"bit more fine-grained control over test suites." +msgstr "" + +#: gnu/packages/perl.scm:5232 +msgid "Ensure no warnings are produced while testing" +msgstr "" + +#: gnu/packages/perl.scm:5234 +msgid "" +"This modules causes any warnings during testing to be captured and\n" +"stored. It automatically adds an extra test that will run when your sc= ript\n" +"ends to check that there were no warnings. If there were any warnings,= the\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" +"including a stack trace of what was going on when it occurred." +msgstr "" + +#: gnu/packages/perl.scm:5259 +msgid "Utilities to test STDOUT and STDERR messages" +msgstr "" + +#: gnu/packages/perl.scm:5261 +msgid "" +"Test::Output provides a simple interface for testing output sent to\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" +"as flexible as possible to the tester." +msgstr "" + +#: gnu/packages/perl.scm:5283 +msgid "Check for POD errors in files" +msgstr "" + +#: gnu/packages/perl.scm:5284 +msgid "" +"Check POD files for errors or warnings in a test file, using\n" +"Pod::Simple to do the heavy lifting." +msgstr "" + +#: gnu/packages/perl.scm:5304 +msgid "Check for pod coverage" +msgstr "" + +#: gnu/packages/perl.scm:5305 +msgid "" +"This module adds a test to your Perl distribution which\n" +"checks for pod coverage of all appropriate files." +msgstr "" + +#: gnu/packages/perl.scm:5323 +msgid "Checks to see if the module can be loaded" +msgstr "" + +#: gnu/packages/perl.scm:5324 +msgid "" +"Test::Requires checks to see if the module can be loaded.\n" +"If this fails, then rather than failing tests this skips all tests." +msgstr "" + +#: gnu/packages/perl.scm:5343 +msgid "Basic cross-platform tests for scripts" +msgstr "" + +#: gnu/packages/perl.scm:5345 +msgid "" +"The intent of the Test::Script module is to provide a series of basic\n= " +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" +"bin as is also commonly used) paths of your Perl distribution." +msgstr "" + +#: gnu/packages/perl.scm:5368 +msgid "Fork test in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5369 +msgid "" +"Test::SharedFork is a utility module for Test::Builder. It\n" +"makes fork(2) safe to use in test cases." +msgstr "" + +#: gnu/packages/perl.scm:5385 +msgid "Basic utilities for writing tests" +msgstr "" + +#: gnu/packages/perl.scm:5387 +msgid "Test::Simple contains basic utilities for writing tests." +msgstr "" + +#: gnu/packages/perl.scm:5404 +msgid "Simplify running Test::Builder tests" +msgstr "" + +#: gnu/packages/perl.scm:5406 +msgid "" +"Test::Tester allows testing of test modules based on Test::Builder with= \n" +"a minimum of effort." +msgstr "" + +#: gnu/packages/perl.scm:5432 +msgid "Trap exit codes, exceptions, output, etc." +msgstr "" + +#: gnu/packages/perl.scm:5433 +msgid "" +"This module is primarily (but not exclusively) for use in\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" +"from boxed blocks of test code." +msgstr "" + +#: gnu/packages/perl.scm:5453 +msgid "UTF-8 testing in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5454 +msgid "" +"This module is a collection of tests useful for dealing with\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" +"will check that string has a given set of characteristics." +msgstr "" + +#: gnu/packages/perl.scm:5476 +msgid "Perl extension to test methods for warnings" +msgstr "" + +#: gnu/packages/perl.scm:5477 +msgid "" +"This module provides a few convenience methods for testing\n" +"warning based code." +msgstr "" + +#: gnu/packages/perl.scm:5495 +msgid "Test for warnings and the lack of them" +msgstr "" + +#: gnu/packages/perl.scm:5496 +msgid "" +"This module is intended to be used as a drop-in replacement\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" +"done_testing calculates the test count, rather than after. It does thi= s by\n" +"hooking into done_testing as well as via an END block. You can declare= a\n" +"plan, or not, and things will still Just Work." +msgstr "" + +#: gnu/packages/perl.scm:5517 +msgid "Test fallback behaviour in absence of modules" +msgstr "" + +#: gnu/packages/perl.scm:5518 +msgid "" +"This module allows you to deliberately hide modules from a\n" +"program even though they are installed. This is mostly useful for test= ing\n" +"modules that have a fallback when a certain dependency module is not\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:5545 +msgid "Dynamic generation of tests" +msgstr "" + +#: gnu/packages/perl.scm:5546 +msgid "" +"The Test::WriteVariants module provides for the dynamic\n" +"generation of tests in nested combinations of contexts." +msgstr "" + +#: gnu/packages/perl.scm:5566 +msgid "Testing module for YAML implementations" +msgstr "" + +#: gnu/packages/perl.scm:5567 +msgid "" +"Test::YAML is a subclass of Test::Base with YAML specific\n" +"support." +msgstr "" + +#: gnu/packages/perl.scm:5586 +msgid "Align text" +msgstr "" + +#: gnu/packages/perl.scm:5587 +msgid "" +"Text::Aligner exports a single function, align(), which is\n" +"used to justify strings to various alignment styles." +msgstr "" + +#: gnu/packages/perl.scm:5605 +msgid "Extract delimited text sequences from strings" +msgstr "" + +#: gnu/packages/perl.scm:5606 +msgid "" +"The Text::Balanced module can be used to extract delimited\n" +"text sequences from strings." +msgstr "" + +#: gnu/packages/perl.scm:5624 +msgid "Manipulate comma-separated values" +msgstr "" + +#: gnu/packages/perl.scm:5625 +msgid "" +"Text::CSV provides facilities for the composition and\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" +"can combine fields into a CSV string and parse a CSV string into fields= ." +msgstr "" + +#: gnu/packages/perl.scm:5646 +msgid "Perform diffs on files and record sets" +msgstr "" + +#: gnu/packages/perl.scm:5647 +msgid "" +"Text::Diff provides a basic set of services akin to the GNU\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" +"is better integrated with Perl and available on all platforms. It is o= ften\n" +"faster than shelling out to a system's diff executable for small files,= and\n" +"generally slower on larger files." +msgstr "" + +#: gnu/packages/perl.scm:5669 +msgid "Match globbing patterns against text" +msgstr "" + +#: gnu/packages/perl.scm:5670 +msgid "" +"Text::Glob implements glob(3) style matching that can be\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" +"you want to do full file globbing use the File::Glob module instead." +msgstr "" + +#: gnu/packages/perl.scm:5689 +msgid "Simple ASCII tables" +msgstr "" + +#: gnu/packages/perl.scm:5690 +msgid "Text::SimpleTable draws simple ASCII tables." +msgstr "" + +#: gnu/packages/perl.scm:5711 +msgid "Organize Data in Tables" +msgstr "" + +#: gnu/packages/perl.scm:5712 +msgid "Text::Table renders plaintext tables." +msgstr "" + +#: gnu/packages/perl.scm:5729 +msgid "Provide plain ASCII transliterations of Unicode text" +msgstr "" + +#: gnu/packages/perl.scm:5730 +msgid "" +"Text::Unidecode provides a function, unidecode(...) that\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" +"is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" +"letters, the pronunciation expressed by the text in some other writing\= n" +"system." +msgstr "" + +#: gnu/packages/perl.scm:5758 +msgid "Role for classes that can be thrown" +msgstr "" + +#: gnu/packages/perl.scm:5759 +msgid "" +"Throwable is a role for classes that are meant to be thrown\n" +"as exceptions to standard program flow." +msgstr "" + +#: gnu/packages/perl.scm:5778 +msgid "Ordered associative arrays for Perl" +msgstr "" + +#: gnu/packages/perl.scm:5779 +msgid "" +"This Perl module implements Perl hashes that preserve the\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" +"can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" +"operations can also be performed on the IxHash." +msgstr "" + +#: gnu/packages/perl.scm:5802 +msgid "Tie to an existing Perl object" +msgstr "" + +#: gnu/packages/perl.scm:5803 +msgid "" +"This class provides a tie constructor that returns the\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" +"$object->TIEHASH are avoided." +msgstr "" + +#: gnu/packages/perl.scm:5825 +msgid "English expression of durations" +msgstr "" + +#: gnu/packages/perl.scm:5826 +msgid "" +"This module provides functions for expressing durations in\n" +"rounded or exact terms." +msgstr "" + +#: gnu/packages/perl.scm:5848 +msgid "Parse time duration strings" +msgstr "" + +#: gnu/packages/perl.scm:5849 +msgid "" +"Time::Duration::Parse is a module to parse human readable\n" +"duration strings like \"2 minutes\" and \"3 seconds\" to seconds." +msgstr "" + +#: gnu/packages/perl.scm:5867 +msgid "Efficiently compute time from local and GMT time" +msgstr "" + +#: gnu/packages/perl.scm:5868 +msgid "" +"This module provides functions that are the inverse of\n" +"built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" +"the system epoch." +msgstr "" + +#: gnu/packages/perl.scm:5888 +msgid "Date parsing/formatting subroutines" +msgstr "" + +#: gnu/packages/perl.scm:5889 +msgid "" +"This module provides routines for parsing date string into\n" +"time values and formatting dates into ASCII strings." +msgstr "" + +#: gnu/packages/perl.scm:5911 +msgid "Shift and scale time" +msgstr "" + +#: gnu/packages/perl.scm:5912 +msgid "" +"This module allows you to speed up your sleep(), alarm(),\n" +"and time() calls." +msgstr "" + +#: gnu/packages/perl.scm:5935 +msgid "Simple tree object" +msgstr "" + +#: gnu/packages/perl.scm:5936 +msgid "" +"This module in a fully object-oriented implementation of a\n" +"simple n-ary tree." +msgstr "" + +#: gnu/packages/perl.scm:5960 +msgid "Factory object for dispensing Visitor objects" +msgstr "" + +#: gnu/packages/perl.scm:5961 +msgid "" +"This module is a factory for dispensing\n" +"Tree::Simple::Visitor::* objects." +msgstr "" + +#: gnu/packages/perl.scm:5979 +msgid "Minimal try/catch with proper preservation of $@" +msgstr "" + +#: gnu/packages/perl.scm:5980 +msgid "" +"This module provides bare bones try/catch/finally statements\n" +"that are designed to minimize common mistakes with eval blocks, and not= hing\n" +"else." +msgstr "" + +#: gnu/packages/perl.scm:6001 +msgid "Data types for common serialisation formats" +msgstr "" + +#: gnu/packages/perl.scm:6002 +msgid "" +"This module provides some extra datatypes that are used by\n" +"common serialisation formats such as JSON or CBOR." +msgstr "" + +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 +msgid "UNIVERSAL::can() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6043 +msgid "" +"This module attempts to work around people calling\n" +"UNIVERSAL::can() as a function, which it is not." +msgstr "" + +#: gnu/packages/perl.scm:6063 +msgid "UNIVERSAL::isa() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6064 +msgid "" +"This module attempts to recover from people calling\n" +"UNIVERSAL::isa as a function." +msgstr "" + +#: gnu/packages/perl.scm:6082 +msgid "Associate user-defined magic to variables from Perl" +msgstr "" + +#: gnu/packages/perl.scm:6083 +msgid "" +"Magic is Perl's way of enhancing variables. This mechanism\n" +"lets the user add extra data to any variable and hook syntactical\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" +"it. With this module, you can add your own magic to any variable witho= ut\n" +"having to write a single line of XS." +msgstr "" + +#: gnu/packages/perl.scm:6106 +msgid "YAML for Perl" +msgstr "" + +#: gnu/packages/perl.scm:6107 +msgid "" +"The YAML.pm module implements a YAML Loader and Dumper based\n" +"on the YAML 1.0 specification." +msgstr "" + +#: gnu/packages/perl.scm:6130 +msgid "Read/Write YAML files" +msgstr "" + +#: gnu/packages/perl.scm:6131 +msgid "" +"YAML::Tiny is a perl class for reading and writing\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" +"and memory overhead." +msgstr "" + +#: gnu/packages/perl.scm:6158 +msgid "Distribution metadata for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6159 +msgid "" +"Software distributions released to the CPAN include a\n" +"META.json or, for older distributions, META.yml, which describes the\n" +"distribution, its contents, and the requirements for building and " +"installing\n" +"the distribution. The data structure stored in the META.json file is\n= " +"described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " +"represent this distribution metadata (or distmeta), along with some hel= pful\n" +"methods for interrogating that data." +msgstr "" + +#: gnu/packages/perl.scm:6182 +msgid "Set of version requirements for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6183 +msgid "" +"A CPAN::Meta::Requirements object models a set of version\n" +"constraints like those specified in the META.yml or META.json files in = CPAN\n" +"distributions, and as defined by CPAN::Meta::Spec. It can be built up = by\n" +"adding more and more constraints, and will reduce them to the simplest\= n" +"representation." +msgstr "" + +#: gnu/packages/perl.scm:6206 +msgid "Read and write a subset of YAML for CPAN Meta files" +msgstr "" + +#: gnu/packages/perl.scm:6207 +msgid "" +"This module implements a subset of the YAML specification\n" +"for use in reading and writing CPAN metadata files like META.yml and\n" +"MYMETA.yml." +msgstr "" + +#: gnu/packages/perl.scm:6228 +msgid "Build and install Perl modules" +msgstr "" + +#: gnu/packages/perl.scm:6229 +msgid "" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" +"through subclassing in a much more straightforward way than with\n" +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." +msgstr "" + +#: gnu/packages/perl.scm:6254 +msgid "Parse META.yml and META.json CPAN metadata files" +msgstr "" + +#: gnu/packages/perl.scm:6255 +msgid "" +"Parse::CPAN::Meta is a parser for META.json and META.yml\n" +"files, using JSON::PP and/or CPAN::Meta::YAML." +msgstr "" + +#: gnu/packages/perl.scm:6273 +msgid "Common Scalar and List utility subroutines" +msgstr "" + +#: gnu/packages/perl.scm:6274 +msgid "" +"This package contains a selection of subroutines that people\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" +"such that being individual extensions would be wasteful." +msgstr "" + +#: gnu/packages/photo.scm:61 +msgid "Raw image decoder" +msgstr "" + +#: gnu/packages/photo.scm:63 +msgid "" +"LibRaw is a library for reading RAW files obtained from digital photo\n= " +"cameras (CRW/CR2, NEF, RAF, DNG, and others)." +msgstr "" + +#: gnu/packages/photo.scm:80 +msgid "Read and manipulate EXIF data in digital photographs" +msgstr "" + +#: gnu/packages/photo.scm:82 +msgid "" +"The libexif C library allows applications to read, edit, and save EXIF\= n" +"data as produced by digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:107 +msgid "Accessing digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:109 +msgid "" +"This is the library backend for gphoto2. It contains the code for PTP,= \n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" +"from digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:150 +msgid "Command-line tools to access digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:152 +msgid "" +"Gphoto2 is a set of command line utilities for manipulating a large\n" +"number of different digital cameras. Through libgphoto2, it supports P= TP,\n" +"MTP, and much more." +msgstr "" + +#: gnu/packages/photo.scm:186 +msgid "Program and Perl library to manipulate EXIF tags" +msgstr "" + +#: gnu/packages/photo.scm:188 +msgid "" +"This package provides the 'exiftool' command and the 'Image::ExifTool'\= n" +"Perl library to manipulate EXIF tags of digital images." +msgstr "" + +#: gnu/packages/photo.scm:211 +#, fuzzy +msgid "Library for panoramic images" +msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" + +#: gnu/packages/photo.scm:213 +msgid "" +"The libpano13 package contains the backend library written by the\n" +"Panorama Tools project for building panoramic images from a set of\n" +"overlapping images, as well as some command line tools." +msgstr "" + +#: gnu/packages/photo.scm:255 +#, fuzzy +msgid "Tools for combining and blending images" +msgstr "Outils de chargement et de gestion de modules noyau pour Linux" + +#: gnu/packages/photo.scm:257 +msgid "" +"Enblend blends away the seams in a panoramic image mosaic using a\n" +"multi-resolution spline. Enfuse merges different exposures of the same= \n" +"scene to produce an image that looks much like a tone-mapped image." +msgstr "" + +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" +msgstr "" + +#: gnu/packages/qemu.scm:153 +msgid "" +"QEMU is a generic machine emulator and virtualizer.\n" +"\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" +"machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" +"using dynamic translation, it achieves very good performance.\n" +"\n" +"When used as a virtualizer, QEMU achieves near native performances by\n= " +"executing the guest code directly on the host CPU. QEMU supports\n" +"virtualization when executing under the Xen hypervisor or using\n" +"the KVM kernel module in Linux. When using KVM, QEMU can virtualize x8= 6,\n" +"server and embedded PowerPC, and S390 guests." +msgstr "" + +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" +msgstr "" + +#: gnu/packages/ratpoison.scm:85 +msgid "Simple mouse-free tiling window manager" +msgstr "" + +#: gnu/packages/ratpoison.scm:87 +msgid "" +"Ratpoison is a simple window manager with no fat library\n" +"dependencies, no fancy graphics, no window decorations, and no\n" +"rodent dependence. It is largely modelled after GNU Screen which\n" +"has done wonders in the virtual terminal market.\n" +"\n" +"The screen can be split into non-overlapping frames. All windows\n" +"are kept maximized inside their frames to take full advantage of\n" +"your precious screen real estate.\n" +"\n" +"All interaction with the window manager is done through keystrokes.\n" +"Ratpoison has a prefix map to minimize the key clobbering that\n" +"cripples Emacs and other quality pieces of software." +msgstr "" + +#: gnu/packages/readline.scm:68 +msgid "Edit command lines while typing, with history support" +msgstr "" + +#: gnu/packages/readline.scm:70 +msgid "" +"The GNU readline library allows users to edit command lines as they\n" +"are typed in. It can maintain a searchable history of previously enter= ed\n" +"commands, letting you easily recall, edit and re-enter past commands. = It\n" +"features both Emacs-like and vi-like keybindings, making its usage\n" +"comfortable for anyone." +msgstr "" + +#: gnu/packages/scanner.scm:70 +msgid "Raster image scanner library and drivers" +msgstr "" + +#: gnu/packages/scanner.scm:71 +msgid "" +"SANE stands for \"Scanner Access Now Easy\" and is an API\n" +"proving access to any raster image scanner hardware (flatbed scanner,\n= " +"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" +"package contains the library and drivers." +msgstr "" + +#: gnu/packages/scheme.scm:169 +msgid "A Scheme implementation with integrated editor and debugger" +msgstr "Une implantation de Scheme avec =C3=A9diteur et d=C3=A9bogueur i= nt=C3=A9gr=C3=A9s" + +#: gnu/packages/scheme.scm:171 +msgid "" +"GNU/MIT Scheme is an implementation of the Scheme programming\n" +"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" +"features an integrated Emacs-like editor and a large runtime library." +msgstr "" +"GNU/MIT Scheme est une implantation du langage de programmation Scheme\= n" +"Il fournit un interpr=C3=A9teur, un compilateur et un d=C3=A9bogueur. I= l int=C3=A8gre\n" +"=C3=A9galement un =C3=A9diteur sur le mod=C3=A8le d'Emacs et une librai= rie d'ex=C3=A9cution " +"compl=C3=A8te." + +#: gnu/packages/scheme.scm:254 +msgid "Efficient Scheme compiler" +msgstr "Compilateur Scheme efficace" + +#: gnu/packages/scheme.scm:256 +msgid "" +"Bigloo is a Scheme implementation devoted to one goal: enabling\n" +"Scheme based programming style where C(++) is usually\n" +"required. Bigloo attempts to make Scheme practical by offering\n" +"features usually presented by traditional programming languages\n" +"but not offered by Scheme and functional programming. Bigloo\n" +"compiles Scheme modules. It delivers small and fast stand alone\n" +"binary executables. Bigloo enables full connections between\n" +"Scheme and C programs and between Scheme and Java programs." +msgstr "" +"Bigloo est une implantation de Scheme tourn=C3=A9e vers un seul but: \n= " +"permettre un style de programmation bas=C3=A9 sur Schema l=C3=A0 o=C3=B9= C(++)\n" +"est g=C3=A9n=C3=A9ralement requis. Bigloo " + +#: gnu/packages/scheme.scm:300 +msgid "Multi-tier programming language for the Web 2.0" +msgstr "" + +#: gnu/packages/scheme.scm:302 +msgid "" +"HOP is a multi-tier programming language for the Web 2.0 and the\n" +"so-called diffuse Web. It is designed for programming interactive web\= n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" +"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" +"mashups, office (web agendas, mail clients, ...), etc." +msgstr "" + +#: gnu/packages/scheme.scm:342 +msgid "R5RS Scheme implementation that compiles native code via C" +msgstr "" + +#: gnu/packages/scheme.scm:344 +msgid "" +"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" +"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" +"language standard, and includes many enhancements and extensions." +msgstr "" +"CHICKEN est un compilateur pour le langage de programmation Scheme. CHI= CKEN\n" +"produit du C portable et efficace, supporte l'essentiel du standard R5R= S et\n" +"incult de nombreuses am=C3=A9liorations et extensions." + +#: gnu/packages/scheme.scm:363 +msgid "Scheme implementation using a bytecode interpreter" +msgstr "Implantation de Scheme utilisanat un interpr=C3=A9teur pour byte= code" + +#: gnu/packages/scheme.scm:365 +msgid "" +"Scheme 48 is an implementation of Scheme based on a byte-code\n" +"interpreter and is designed to be used as a testbed for experiments in\= n" +"implementation techniques and as an expository tool." +msgstr "" +"Scheme 48 est une implantation de Scheme bas=C3=A9e sur un interpr=C3=A9= teur bytecode\n" +"destin=C3=A9e =C3=A0 =C3=AAtre utilis=C3=A9e comme un banc d'essai pour= des exp=C3=A9rimentations\n" +"portant sur des techniques d'implantation et comme un outil d'expositio= n." + +#: gnu/packages/scheme.scm:441 +msgid "Implementation of Scheme and related languages" +msgstr "Implantation de Scheme et d'autres langages associ=C3=A9s" + +#: gnu/packages/scheme.scm:443 +msgid "" +"Racket is an implementation of the Scheme programming language (R5RS an= d\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" +"of libraries." +msgstr "" +"Racket est une implantation du langage de programmation Schema (R5RS et= " +"R6RS)\n" +"et de langages associ=C3=A9s comme Typed Racket. Racket fournit un comp= ilateur " +"et\n" +"une machine virtuelle avec compilation =C3=A0 la vol=C3=A9e ainsi qu'un= ensemble de\n" +"biblioth=C3=A8ques." + +#: gnu/packages/scheme.scm:481 +#, fuzzy +msgid "Efficient Scheme interpreter and compiler" +msgstr "Compilateur Scheme efficace" + +#: gnu/packages/scheme.scm:483 +msgid "" +"Gambit consists of two main programs: gsi, the Gambit Scheme\n" +"interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" +"the complete execution and debugging environment. The compiler is the\= n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" +"loaded at run time. Interpreted code and compiled code can be freely\n= " +"mixed." +msgstr "" + +#: gnu/packages/scheme.scm:520 +msgid "Small embeddable Scheme implementation" +msgstr "" + +#: gnu/packages/scheme.scm:522 +msgid "" +"Chibi-Scheme is a very small library with no external dependencies\n" +"intended for use as an extension and scripting language in C programs. = In\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" +"threads." +msgstr "" + +#: gnu/packages/scheme.scm:699 +msgid "Scmutils library for MIT Scheme" +msgstr "" + +#: gnu/packages/scheme.scm:700 +msgid "" +"The Scmutils system is an integrated library of\n" +"procedures, embedded in the programming language Scheme, and intended t= o\n" +"support teaching and research in mathematical physics and electrical\n" +"engineering." +msgstr "" + +#: gnu/packages/search.scm:52 +msgid "Search Engine Library" +msgstr "" + +#: gnu/packages/search.scm:54 +msgid "" +"Xapian is a highly adaptable toolkit which allows developers to easily\= n" +"add advanced indexing and search facilities to their own applications. = It\n" +"supports the Probabilistic Information Retrieval model and also support= s a\n" +"rich set of boolean query operators." +msgstr "" + +#: gnu/packages/search.scm:97 +msgid "Tool for Obsessive Compulsive Classifiers" +msgstr "" + +#: gnu/packages/search.scm:99 +msgid "" +"libtocc is the engine of the Tocc project, a tag-based file management\= n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" +"that is more flexible than classic file systems that are based on a tre= e of\n" +"files and directories." +msgstr "" + +#: gnu/packages/search.scm:121 +msgid "Command-line interface to libtocc" +msgstr "" + +#: gnu/packages/search.scm:123 +msgid "" +"Tocc is a tag-based file management system. This package contains the\= n" +"command line tool for interacting with libtocc." +msgstr "" + +#: gnu/packages/search.scm:141 +msgid "Finding text and HTML files that match boolean expressions" +msgstr "" + +#: gnu/packages/search.scm:143 +msgid "" +"GNU Bool is a utility to perform text searches on files using Boolean\n= " +"expressions. For example, a search for \"hello AND world\" would retur= n a\n" +"file containing the phrase \"Hello, world!\". It supports both AND and= OR\n" +"statements, as well as the NEAR statement to search for the occurrence = of\n" +"words in close proximity to each other. It handles context gracefully,= \n" +"accounting for new lines and paragraph changes. It also has robust sup= port\n" +"for parsing HTML files." +msgstr "" + +#: gnu/packages/serveez.scm:51 +msgid "Framework for implementing IP-based servers" +msgstr "" + +#: gnu/packages/serveez.scm:53 +msgid "" +"GNU Serveez is a server framework providing the routines necessary to\n= " +"easily implement IP-based servers in your application. It\n" +"demonstrates aspects of network programming in a portable manner,\n" +"making it convenient for both simplifying the process of adding a\n" +"server to your application or for learning about how network services\n= " +"work. Several example servers are provided already, such as an HTTP\n" +"server and an IRC server." +msgstr "" + +#: gnu/packages/telephony.scm:52 +msgid "(u)Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:53 +msgid "" +"GNU Common C++ is an portable, optimized class framework for\n" +"threaded applications, supporting concurrent synchronization, inter-pro= cess\n" +"communications via sockets, and various methods for data handling, such= as\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" +"reimplementation." +msgstr "" + +#: gnu/packages/telephony.scm:73 +msgid "Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:74 +msgid "" +"GNU uCommon C++ is meant as a very light-weight C++ library\n" +"to facilitate using C++ design patterns even for very deeply embedded\n= " +"applications, such as for systems using uclibc along with posix threadi= ng\n" +"support." +msgstr "" + +#: gnu/packages/telephony.scm:95 +msgid "Implementation of RTP (real-time transport protocol)" +msgstr "" + +#: gnu/packages/telephony.scm:96 +msgid "" +"GNU ccRTP is an implementation of RTP, the real-time transport\n" +"protocol from the IETF. It is suitable both for high capacity servers = and\n" +"personal client applications. It is flexible in its design, allowing i= t to\n" +"function as a framework for the framework, rather than just being a\n" +"packet-manipulation library." +msgstr "" + +#: gnu/packages/telephony.scm:116 +msgid "Library implementing SIP (RFC-3261)" +msgstr "" + +#: gnu/packages/telephony.scm:117 +msgid "" +"GNU oSIP is an implementation of the SIP protocol. It is\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" +"to initiate and control SIP sessions." +msgstr "" + +#: gnu/packages/telephony.scm:137 +#, fuzzy +msgid "Sip abstraction library" +msgstr "Biblioth=C3=A8que d'abstraction de source de donn=C3=A9es" + +#: gnu/packages/telephony.scm:138 +msgid "" +"EXosip is a library that hides the complexity of using the\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" +"be used by VoIP telephony applications (endpoints or conference server)= but\n" +"might be also useful for any application that wish to establish session= s " +"like\n" +"multiplayer games." +msgstr "" + +#: gnu/packages/telephony.scm:181 +msgid "Secure peer-to-peer VoIP server for the SIP protocol" +msgstr "" + +#: gnu/packages/telephony.scm:182 +msgid "" +"GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" +"uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" +"there is no central point for media intercept or capture and thus it ca= n be\n" +"used to construct a secure telephone system that operates over the publ= ic\n" +"internet." +msgstr "" + +#: gnu/packages/telephony.scm:207 +msgid "Secure RTP (SRTP) Reference Implementation" +msgstr "" + +#: gnu/packages/telephony.scm:208 +msgid "" +"This package provides an implementation of the Secure\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" +"and a supporting cryptographic kernel." +msgstr "" + +#: gnu/packages/texinfo.scm:55 +#, fuzzy +msgid "The GNU documentation format" +msgstr "Outils et documentation pour la traduction" + +#: gnu/packages/texinfo.scm:57 +msgid "" +"Texinfo is the official documentation format of the GNU project. It\n" +"uses a single source file using explicit commands to produce a final " +"document\n" +"in any of several supported output formats, such as HTML or PDF. This\= n" +"package includes both the tools necessary to produce Info documents fro= m\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" +"is on expressing the content semantically, avoiding physical markup com= mands." +msgstr "" + +#: gnu/packages/texinfo.scm:132 +msgid "Convert Texinfo to HTML" +msgstr "" + +#: gnu/packages/texinfo.scm:134 +msgid "" +"Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" +"output. It now supports many advanced features, such as " +"internationalization\n" +"and extremely configurable output formats.\n" +"\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" +"was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" +"Texi2HTML." +msgstr "" + +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 +msgid "TeX Live, a package of the TeX typesetting system" +msgstr "" + +#: gnu/packages/texlive.scm:157 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the binaries." +msgstr "" + +#: gnu/packages/texlive.scm:220 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete tree of texmf-dist data." +msgstr "" + +#: gnu/packages/texlive.scm:278 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete TeX Live distribution." +msgstr "" + +#: gnu/packages/texlive.scm:307 +msgid "Wrapper for LaTeX and friends" +msgstr "" + +#: gnu/packages/texlive.scm:309 +msgid "" +"Rubber is a program whose purpose is to handle all tasks related to the= \n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" +"PDF documents." +msgstr "" + +#: gnu/packages/textutils.scm:61 +msgid "Text encoding converter" +msgstr "" + +#: gnu/packages/textutils.scm:62 +msgid "" +"The Recode library converts files between character sets and\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" +"any pair. When exact transliteration are not possible, it gets rid of\= n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" +"handy front-end to the library." +msgstr "" + +#: gnu/packages/textutils.scm:90 +msgid "Text encoding detection tool" +msgstr "" + +#: gnu/packages/textutils.scm:91 +msgid "" +"Enca (Extremely Naive Charset Analyser) consists of libenca,\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" +"libenca and several charset conversion libraries and tools." +msgstr "" + +#: gnu/packages/textutils.scm:118 +msgid "C library for processing UTF-8 Unicode data" +msgstr "" + +#: gnu/packages/textutils.scm:119 +msgid "" +"utf8proc is a small C library that provides Unicode\n" +"normalization, case-folding, and other operations for data in the UTF-8= \n" +"encoding, supporting Unicode version 7.0." +msgstr "" + +#: gnu/packages/textutils.scm:148 +msgid "Gordon's text utils library" +msgstr "" + +#: gnu/packages/textutils.scm:150 +msgid "" +"libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" +"the Hannon Lab." +msgstr "" + +#: gnu/packages/textutils.scm:171 +msgid "C++ hash functions for strings" +msgstr "" + +#: gnu/packages/textutils.scm:173 +msgid "" +"CityHash provides hash functions for strings. The functions mix the\n" +"input bits thoroughly but are not suitable for cryptography." +msgstr "" + +#: gnu/packages/textutils.scm:190 +msgid "C/C++ configuration file library" +msgstr "" + +#: gnu/packages/textutils.scm:192 +msgid "" +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." +msgstr "" + +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" + +#: gnu/packages/textutils.scm:214 +msgid "" +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." +msgstr "" + +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" +msgstr "" + +#: gnu/packages/version-control.scm:105 +msgid "" +"GNU Bazaar is a version control system that allows you to record\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" +"as well as the classic centralized workflow." +msgstr "" + +#: gnu/packages/version-control.scm:264 +msgid "Distributed version control system" +msgstr "" + +#: gnu/packages/version-control.scm:266 +msgid "" +"Git is a free distributed version control system designed to handle\n" +"everything from small to very large projects with speed and efficiency.= " +msgstr "" + +#: gnu/packages/version-control.scm:311 +msgid "Man pages of the Git version control system" +msgstr "" + +#: gnu/packages/version-control.scm:313 +msgid "" +"This package provides the man pages of the Git version control system.\= n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" +"command." +msgstr "" + +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" + +#: gnu/packages/version-control.scm:354 +msgid "" +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." +msgstr "" + +#: gnu/packages/version-control.scm:393 +msgid "Command-line flags library for shell scripts" +msgstr "" + +#: gnu/packages/version-control.scm:395 +msgid "" +"Shell Flags (shFlags) is a library written to greatly simplify the\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" +"ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" +"different versions of getopt on various OSes make writing portable shel= l\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" +"shell and OS versions so the script writer can be confident that the sc= ript\n" +"will work." +msgstr "" + +#: gnu/packages/version-control.scm:438 +msgid "Git extensions for Vincent Driessen's branching model" +msgstr "" + +#: gnu/packages/version-control.scm:440 +msgid "" +"Vincent Driessen's branching model is a git branching and release\n" +"management strategy that helps developers keep track of features, hotfi= xes,\n" +"and releases in bigger software projects. The git-flow library of git\= n" +"subcommands helps automate some parts of the flow to make working with = it a\n" +"lot easier." +msgstr "" + +#: gnu/packages/version-control.scm:475 +msgid "Run a command over a sequence of commits" +msgstr "" + +#: gnu/packages/version-control.scm:477 +msgid "" +"git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" +"linear. It will test every change between two points in the DAG. It w= ill\n" +"also walk each side of a merge and test those changes individually." +msgstr "" + +#: gnu/packages/version-control.scm:535 +msgid "Git access control layer" +msgstr "" + +#: gnu/packages/version-control.scm:537 +msgid "" +"Gitolite is an access control layer on top of Git, providing fine acces= s\n" +"control to Git repositories." +msgstr "" + +#: gnu/packages/version-control.scm:561 +msgid "Decentralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:563 +msgid "" +"Mercurial is a free, distributed source control management tool.\n" +"It efficiently handles projects of any size\n" +"and offers an easy and intuitive interface." +msgstr "" + +#: gnu/packages/version-control.scm:597 +msgid "HTTP and WebDAV client library" +msgstr "" + +#: gnu/packages/version-control.scm:598 +msgid "" +"Neon is an HTTP and WebDAV client library, with a\n" +"C interface. Features:\n" +"High-level wrappers for common HTTP and WebDAV operations (GET, MOVE,\n= " +"DELETE, etc.);\n" +"low-level interface to the HTTP request/response engine, allowing the u= se\n" +"of arbitrary HTTP methods, headers, etc.;\n" +"authentication support including Basic and Digest support, along with\n= " +"GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32;= \n" +"SSL/TLS support using OpenSSL or GnuTLS, exposing an abstraction layer = for\n" +"verifying server certificates, handling client certificates, and examin= ing\n" +"certificate properties, smartcard-based client certificates are also\n" +"supported via a PKCS#11 wrapper interface;\n" +"abstract interface to parsing XML using libxml2 or expat, and wrappers = for\n" +"simplifying handling XML HTTP response bodies;\n" +"WebDAV metadata support, wrappers for PROPFIND and PROPPATCH to simplif= y\n" +"property manipulation." +msgstr "" + +#: gnu/packages/version-control.scm:677 +msgid "Revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:679 +msgid "" +"Subversion exists to be universally recognized and adopted as a\n" +"centralized version control system characterized by its\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" +"usage; and its ability to support the needs of a wide variety of users = and\n" +"projects, from individuals to large-scale enterprise operations." +msgstr "" + +#: gnu/packages/version-control.scm:700 +msgid "Per-file local revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:702 +msgid "" +"RCS is the original Revision Control System. It works on a\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" +"CVS, Subversion, and Git. This can make it suitable for system\n" +"administration files, for example, which are often inherently local to = one\n" +"machine." +msgstr "" + +#: gnu/packages/version-control.scm:729 +msgid "Historical centralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:731 +msgid "" +"CVS is a version control system, an important component of Source\n" +"Configuration Management (SCM). Using it, you can record the history o= f\n" +"sources files, and documents. It fills a similar role to the free soft= ware\n" +"RCS, PRCS, and Aegis packages." +msgstr "" + +#: gnu/packages/version-control.scm:764 +msgid "Export an RCS or CVS history as a fast-import stream" +msgstr "" + +#: gnu/packages/version-control.scm:765 +msgid "" +"This program analyzes a collection of RCS files in a CVS\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" +"in the form of a fast-import stream. Not all possible histories can be= \n" +"rendered this way; the program tries to emit useful warnings when it ca= n't.\n" +"\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" +"acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" +"masters from remote CVS hosts." +msgstr "" + +#: gnu/packages/version-control.scm:792 +msgid "Version-control-agnostic ChangeLog diff and commit tool" +msgstr "" + +#: gnu/packages/version-control.scm:794 +msgid "" +"The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " +"vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" +"using version control at the same time, for example by printing a remin= der\n" +"when a file change has been described in the ChangeLog but the file has= not\n" +"been added to the VC. vc-chlog scans changed files and generates\n" +"standards-compliant ChangeLog entries based on the changes that it dete= cts." +msgstr "" + +#: gnu/packages/version-control.scm:816 +msgid "Make histograms from the output of 'diff'" +msgstr "" + +#: gnu/packages/version-control.scm:818 +msgid "" +"Diffstat reads the output of 'diff' and displays a histogram of the\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" +"large, complex patch files." +msgstr "" + +#: gnu/packages/version-control.scm:859 +msgid "File-based version control like SCCS" +msgstr "" + +#: gnu/packages/version-control.scm:860 +msgid "" +"GNU CSSC provides a replacement for the legacy Unix source\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" +"accessed and migrated on modern systems." +msgstr "" + +#: gnu/packages/version-control.scm:941 +msgid "Project change supervisor" +msgstr "" + +#: gnu/packages/version-control.scm:942 +msgid "" +"Aegis is a project change supervisor, and performs some of\n" +"the Software Configuration Management needed in a CASE environment. Ae= gis\n" +"provides a framework within which a team of developers may work on many= \n" +"changes to a program independently, and Aegis coordinates integrating t= hese\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" +"any project with more than one developer, is one of Aegis's major funct= ions." +msgstr "" + +#: gnu/packages/version-control.scm:970 +msgid "Ncurses-based text user interface for Git" +msgstr "" + +#: gnu/packages/version-control.scm:972 +msgid "" +"Tig is an ncurses text user interface for Git, primarily intended as\n" +"a history browser. It can also stage hunks for commit, or colorize the= \n" +"output of the 'git' command." +msgstr "" + +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" + +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." +msgstr "" + +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" + +#: gnu/packages/version-control.scm:1027 +msgid "" +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." +msgstr "" + +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" + +#: gnu/packages/version-control.scm:1059 +msgid "" +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." +msgstr "" + +#: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" + +#: gnu/packages/webkit.scm:125 +msgid "" +"WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" +"suitable for projects requiring any kind of web integration, from hybri= d\n" +"HTML/CSS applications to full-fledged web browsers." +msgstr "" + +#: gnu/packages/web.scm:89 +msgid "Featureful HTTP server" +msgstr "" + +#: gnu/packages/web.scm:91 +msgid "" +"The Apache HTTP Server Project is a collaborative software development\= n" +"effort aimed at creating a robust, commercial-grade, featureful, and\n" +"freely-available source code implementation of an HTTP (Web) server. T= he\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" +"using the Internet and the Web to communicate, plan, and develop the se= rver\n" +"and its related documentation." +msgstr "" + +#: gnu/packages/web.scm:169 +msgid "HTTP and reverse proxy server" +msgstr "" + +#: gnu/packages/web.scm:171 +msgid "" +"Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" +"created by Igor Sysoev. It can be used both as a standalone web server= \n" +"and as a proxy to reduce the load on back-end HTTP or mail servers." +msgstr "" + +#: gnu/packages/web.scm:207 +msgid "PSGI/Plack web server" +msgstr "" + +#: gnu/packages/web.scm:208 +msgid "" +"Starman is a PSGI perl web server that has unique features\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" +"and UNIX socket support." +msgstr "" + +#: gnu/packages/web.scm:227 +#, fuzzy +msgid "JSON C library" +msgstr "La biblioth=C3=A8que GNU C" + +#: gnu/packages/web.scm:229 +msgid "" +"Jansson is a C library for encoding, decoding and manipulating JSON\n" +"data." +msgstr "" + +#: gnu/packages/web.scm:261 +msgid "JSON implementation in C" +msgstr "" + +#: gnu/packages/web.scm:263 +msgid "" +"JSON-C implements a reference counting object model that allows you to\= n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" +"parse JSON formatted strings back into the C representation of JSON obj= ects." +msgstr "" + +#: gnu/packages/web.scm:289 +msgid "JSON parser/generator for C++ with both SAX/DOM style API" +msgstr "" + +#: gnu/packages/web.scm:291 +msgid "" +"RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" +"style API." +msgstr "" + +#: gnu/packages/web.scm:309 +msgid "C library for parsing JSON" +msgstr "" + +#: gnu/packages/web.scm:311 +msgid "" +"Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" +"parser written in ANSI C and a small validating JSON generator." +msgstr "" + +#: gnu/packages/web.scm:341 +msgid "WebSockets library written in C" +msgstr "" + +#: gnu/packages/web.scm:343 +msgid "" +"Libwebsockets is a library that allows C programs to establish client\n= " +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" +"for efficient socket-like bidirectional reliable communication channels= ." +msgstr "" + +#: gnu/packages/web.scm:378 +msgid "C library for the Publix Suffix List" +msgstr "" + +#: gnu/packages/web.scm:380 +msgid "" +"A \"public suffix\" is a domain name under which Internet users can\n" +"directly register own names.\n" +"\n" +"Browsers and other web clients can use it to avoid privacy-leaking\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" +"by site.\n" +"\n" +"Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" +"domain verification, finds the longest public part of a given domain, f= inds\n" +"the shortest private part of a given domain, works with international\n= " +"domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" +"UTS#46." +msgstr "" + +#: gnu/packages/web.scm:426 +msgid "HTML validator and tidier" +msgstr "" + +#: gnu/packages/web.scm:427 +msgid "" +"HTML Tidy is a command-line tool and C library that can be\n" +"used to validate and fix HTML data." +msgstr "" + +#: gnu/packages/web.scm:468 +msgid "Light-weight HTTP/HTTPS proxy daemon" +msgstr "" + +#: gnu/packages/web.scm:469 +msgid "" +"Tinyproxy is a light-weight HTTP/HTTPS proxy\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" +"proxy is required, but the system resources for a larger proxy are\n" +"unavailable." +msgstr "" + +#: gnu/packages/web.scm:502 +msgid "Small caching web proxy" +msgstr "" + +#: gnu/packages/web.scm:504 +msgid "" +"Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " +"server). It was primarily designed to be used by one person or a small= " +"group\n" +"of people." +msgstr "" + +#: gnu/packages/web.scm:524 +msgid "YAML 1.1 parser and emitter written in C" +msgstr "" + +#: gnu/packages/web.scm:526 +msgid "LibYAML is a YAML 1.1 parser and emitter written in C." +msgstr "" + +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 +msgid "Media stream URL parser" +msgstr "" + +#: gnu/packages/web.scm:543 +msgid "" +"This package contains support scripts called by libquvi to\n" +"parse media stream properties." +msgstr "" + +#: gnu/packages/web.scm:576 +msgid "" +"libquvi is a library with a C API for parsing media stream\n" +"URLs and extracting their actual media files." +msgstr "" + +#: gnu/packages/web.scm:598 +msgid "" +"quvi is a command-line-tool suite to extract media files\n" +"from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." +msgstr "" + +#: gnu/packages/web.scm:661 +msgid "High-performance asynchronous HTTP client library" +msgstr "" + +#: gnu/packages/web.scm:663 +msgid "" +"serf is a C-based HTTP client library built upon the Apache Portable\n" +"Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" +"minimum to provide high performance operation." +msgstr "" + +#: gnu/packages/web.scm:718 +msgid "CSS pre-processor" +msgstr "" + +#: gnu/packages/web.scm:719 +msgid "" +"SassC is a compiler written in C for the CSS pre-processor\n" +"language known as SASS." +msgstr "" + +#: gnu/packages/web.scm:748 +msgid "Compile a log format string to perl-code" +msgstr "" + +#: gnu/packages/web.scm:749 +msgid "" +"This module provides methods to compile a log format string\n" +"to perl-code, for faster generation of access_log lines." +msgstr "" + +#: gnu/packages/web.scm:770 +msgid "SASL authentication framework" +msgstr "" + +#: gnu/packages/web.scm:771 +msgid "Authen::SASL provides an SASL authentication framework." +msgstr "" + +#: gnu/packages/web.scm:795 +msgid "Sensible default Catalyst action" +msgstr "" + +#: gnu/packages/web.scm:796 +msgid "" +"This Catalyst action implements a sensible default end\n" +"action, which will forward to the first available view." +msgstr "" + +#: gnu/packages/web.scm:824 +msgid "Automated REST Method Dispatching" +msgstr "" + +#: gnu/packages/web.scm:825 +msgid "" +"This Action handles doing automatic method dispatching for\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" +"append an underscore and method name. First it will try dispatching to= an\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" +"regular method." +msgstr "" + +#: gnu/packages/web.scm:861 +msgid "Storage class for Catalyst authentication using DBIx::Class" +msgstr "" + +#: gnu/packages/web.scm:862 +msgid "" +"The Catalyst::Authentication::Store::DBIx::Class class\n" +"provides access to authentication information stored in a database via\= n" +"DBIx::Class." +msgstr "" + +#: gnu/packages/web.scm:886 +msgid "Create only one instance of Moose component per context" +msgstr "" + +#: gnu/packages/web.scm:887 +msgid "" +"Catalyst::Component::InstancePerContext returns a new\n" +"instance of a component on each request." +msgstr "" + +#: gnu/packages/web.scm:924 +msgid "Catalyst Development Tools" +msgstr "" + +#: gnu/packages/web.scm:925 +msgid "" +"The Catalyst-Devel distribution includes a variety of\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" +"to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" +"modules." +msgstr "" + +#: gnu/packages/web.scm:954 +msgid "Regex DispatchType for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:955 +msgid "" +"Dispatch type managing path-matching behaviour using\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" +"core. It is recommend that you use Chained methods or other techniques= \n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" +"when the dispatch type is first seen in your application." +msgstr "" + +#: gnu/packages/web.scm:1003 +msgid "DBIx::Class::Schema Model Class" +msgstr "" + +#: gnu/packages/web.scm:1004 +msgid "" +"This is a Catalyst Model for DBIx::Class::Schema-based\n" +"Models." +msgstr "" + +#: gnu/packages/web.scm:1028 +msgid "Request logging from within Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1029 +msgid "" +"This Catalyst plugin enables you to create \"access logs\"\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" +"for you. It will work even with Catalyst debug logging turned off." +msgstr "" + +#: gnu/packages/web.scm:1061 +msgid "Infrastructure plugin for the Catalyst authentication framework" +msgstr "" + +#: gnu/packages/web.scm:1062 +msgid "" +"The authentication plugin provides generic user support for\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" +"who they claim to be), and authorization (allowing the user to do what = the\n" +"system authorises them to do)." +msgstr "" + +#: gnu/packages/web.scm:1092 +msgid "Role-based authorization for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1093 +msgid "" +"Catalyst::Plugin::Authorization::Roles provides role-based\n" +"authorization for Catalyst based on Catalyst::Plugin::Authentication." +msgstr "" + +#: gnu/packages/web.scm:1116 +msgid "Captchas for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1117 +msgid "" +"This plugin creates and validates Captcha images for\n" +"Catalyst." +msgstr "" + +#: gnu/packages/web.scm:1143 +msgid "Load config files of various types" +msgstr "" + +#: gnu/packages/web.scm:1144 +msgid "" +"This module will attempt to load find and load configuration\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" +"formats." +msgstr "" + +#: gnu/packages/web.scm:1174 +msgid "Catalyst generic session plugin" +msgstr "" + +#: gnu/packages/web.scm:1175 +msgid "" +"This plugin links the two pieces required for session\n" +"management in web applications together: the state, and the store." +msgstr "" + +#: gnu/packages/web.scm:1201 +msgid "Maintain session IDs using cookies" +msgstr "" + +#: gnu/packages/web.scm:1202 +msgid "" +"In order for Catalyst::Plugin::Session to work, the session\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" +"on the server. This plugin stores the session ID on the client using t= he\n" +"cookie mechanism." +msgstr "" + +#: gnu/packages/web.scm:1232 +msgid "FastMmap session storage backend" +msgstr "" + +#: gnu/packages/web.scm:1233 +msgid "" +"Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" +"storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" +"memory interprocess cache. It is based on Cache::FastMmap." +msgstr "" + +#: gnu/packages/web.scm:1256 +msgid "Stack trace on the Catalyst debug screen" +msgstr "" + +#: gnu/packages/web.scm:1257 +msgid "" +"This plugin enhances the standard Catalyst debug screen by\n" +"including a stack trace of your application up to the point where the e= rror\n" +"occurred. Each stack frame is displayed along with the package name, l= ine\n" +"number, file name, and code context surrounding the line number." +msgstr "" + +#: gnu/packages/web.scm:1283 +msgid "Simple serving of static pages" +msgstr "" + +#: gnu/packages/web.scm:1284 +msgid "" +"The Static::Simple plugin is designed to make serving static\n" +"content in your application during development quick and easy, without\= n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" +"plugin uses the lightweight MIME::Types module to map file extensions t= o\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" +"MIME type directly to the browser, without being processed through Cata= lyst." +msgstr "" + +#: gnu/packages/web.scm:1351 +msgid "The Catalyst Framework Runtime" +msgstr "" + +#: gnu/packages/web.scm:1352 +msgid "" +"Catalyst is a modern framework for making web applications.\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" +"\"plug in\" existing Perl modules that do what you need." +msgstr "" + +#: gnu/packages/web.scm:1382 +msgid "Replace request base with value passed by HTTP proxy" +msgstr "" + +#: gnu/packages/web.scm:1383 +msgid "" +"This module is a Moose::Role which allows you more\n" +"flexibility in your application's deployment configurations when deploy= ed\n" +"behind a proxy. Using this module, the request base ($c->req->base) is= \n" +"replaced with the contents of the X-Request-Base header." +msgstr "" + +#: gnu/packages/web.scm:1409 +msgid "Download data in many formats" +msgstr "" + +#: gnu/packages/web.scm:1410 +msgid "" +"The purpose of this module is to provide a method for\n" +"downloading data into many supportable formats. For example, downloadi= ng a\n" +"table based report in a variety of formats (CSV, HTML, etc.)." +msgstr "" + +#: gnu/packages/web.scm:1435 +msgid "Catalyst JSON view" +msgstr "" + +#: gnu/packages/web.scm:1436 +msgid "" +"Catalyst::View::JSON is a Catalyst View handler that returns\n" +"stash data in JSON format." +msgstr "" + +#: gnu/packages/web.scm:1461 +msgid "Template View Class" +msgstr "" + +#: gnu/packages/web.scm:1462 +msgid "" +"This module is a Catalyst view class for the Template\n" +"Toolkit." +msgstr "" + +#: gnu/packages/web.scm:1491 +msgid "Trait Loading and Resolution for Catalyst Components" +msgstr "" + +#: gnu/packages/web.scm:1492 +msgid "" +"Adds a \"COMPONENT\" in Catalyst::Component method to your\n" +"Catalyst component base class that reads the optional \"traits\" parame= ter\n" +"from app and component config and instantiates the component subclass w= ith\n" +"those traits using \"new_with_traits\" in MooseX::Traits from\n" +"MooseX::Traits::Pluggable." +msgstr "" + +#: gnu/packages/web.scm:1517 +msgid "Apply roles to Catalyst classes" +msgstr "" + +#: gnu/packages/web.scm:1518 +msgid "" +"CatalystX::RoleApplicator applies roles to Catalyst\n" +"application classes." +msgstr "" + +#: gnu/packages/web.scm:1544 +msgid "Catalyst development server with Starman" +msgstr "" + +#: gnu/packages/web.scm:1545 +msgid "" +"This module provides a Catalyst extension to replace the\n" +"development server with Starman." +msgstr "" + +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" + +#: gnu/packages/web.scm:1570 +msgid "" +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." +msgstr "" + +#: gnu/packages/web.scm:1594 +msgid "CGI interface that is CGI.pm compliant" +msgstr "" + +#: gnu/packages/web.scm:1595 +msgid "" +"CGI::Simple provides a relatively lightweight drop in\n" +"replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" +"parameter parsing, file upload, cookie handling and header generation." +msgstr "" + +#: gnu/packages/web.scm:1616 +msgid "Build structures from CGI data" +msgstr "" + +#: gnu/packages/web.scm:1617 +msgid "" +"This is a module for building structured data from CGI\n" +"inputs, in a manner reminiscent of how PHP does." +msgstr "" + +#: gnu/packages/web.scm:1640 +msgid "Date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:1641 +msgid "" +"This module provides functions that deal with the date\n" +"formats used by the HTTP protocol." +msgstr "" + +#: gnu/packages/web.scm:1661 +msgid "MD5 sums for files and urls" +msgstr "" + +#: gnu/packages/web.scm:1662 +msgid "" +"Digest::MD5::File is a Perl extension for getting MD5 sums\n" +"for files and urls." +msgstr "" + +#: gnu/packages/web.scm:1680 +msgid "Perl locale encoding determination" +msgstr "" + +#: gnu/packages/web.scm:1682 +msgid "" +"The POSIX locale system is used to specify both the language\n" +"conventions requested by the user and the preferred character set to\n" +"consume and output. The Encode::Locale module looks up the charset and= \n" +"encoding (called a CODESET in the locale jargon) and arranges for the\n= " +"Encode module to know this encoding under the name \"locale\". It mean= s\n" +"bytes obtained from the environment can be converted to Unicode strings= \n" +"by calling Encode::encode(locale =3D> $bytes) and converted back again\= n" +"with Encode::decode(locale =3D> $string)." +msgstr "" + +#: gnu/packages/web.scm:1708 +msgid "Perl directory listing parser" +msgstr "" + +#: gnu/packages/web.scm:1710 +msgid "" +"The File::Listing module exports a single function called parse_dir(),\= n" +"which can be used to parse directory listings." +msgstr "" + +#: gnu/packages/web.scm:1742 +msgid "Stock and mutual fund quotes" +msgstr "" + +#: gnu/packages/web.scm:1744 +msgid "" +"Finance::Quote gets stock quotes from various internet sources, includi= ng\n" +"Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." +msgstr "" + +#: gnu/packages/web.scm:1766 +msgid "Perl extension providing access to the GSSAPIv2 library" +msgstr "" + +#: gnu/packages/web.scm:1767 +msgid "" +"This is a Perl extension for using GSSAPI C bindings as\n" +"described in RFC 2744." +msgstr "" + +#: gnu/packages/web.scm:1787 +msgid "Manipulate tables of HTML::Element" +msgstr "" + +#: gnu/packages/web.scm:1789 +msgid "" +"HTML::Element::Extended is a Perl extension for manipulating a table\n" +"composed of HTML::Element style components." +msgstr "" + +#: gnu/packages/web.scm:1813 +msgid "Perl class representing an HTML form element" +msgstr "" + +#: gnu/packages/web.scm:1814 +msgid "" +"Objects of the HTML::Form class represents a single HTML\n" +"
...
instance." +msgstr "" + +#: gnu/packages/web.scm:1836 +msgid "Check for HTML errors in a string or file" +msgstr "" + +#: gnu/packages/web.scm:1837 +msgid "" +"HTML::Lint is a pure-Perl HTML parser and checker for\n" +"syntactic legitmacy." +msgstr "" + +#: gnu/packages/web.scm:1858 +msgid "Extract contents from HTML tables" +msgstr "" + +#: gnu/packages/web.scm:1860 +msgid "" +"HTML::TableExtract is a Perl module for extracting the content containe= d\n" +"in tables within an HTML document, either as text or encoded element tr= ees." +msgstr "" + +#: gnu/packages/web.scm:1885 +msgid "Work with HTML in a DOM-like tree structure" +msgstr "" + +#: gnu/packages/web.scm:1886 +msgid "" +"This distribution contains a suite of modules for\n" +"representing, creating, and extracting information from HTML syntax tre= es." +msgstr "" + +#: gnu/packages/web.scm:1906 +msgid "Perl HTML parser class" +msgstr "" + +#: gnu/packages/web.scm:1908 +msgid "" +"Objects of the HTML::Parser class will recognize markup and separate\n" +"it from plain text (alias data content) in HTML documents. As differen= t\n" +"kinds of markup and text are recognized, the corresponding event handle= rs\n" +"are invoked." +msgstr "" + +#: gnu/packages/web.scm:1928 +msgid "Perl data tables useful in parsing HTML" +msgstr "" + +#: gnu/packages/web.scm:1930 +msgid "" +"The HTML::Tagset module contains several data tables useful in various\= n" +"kinds of HTML parsing operations." msgstr "" -"Guile-Reader est un framework permettant de construire des lecteurs pou= r\n" -"GNU Guile. L'id=C3=A9e est de rendre facile la construction de proc=C3=A9= dures =C3=A9tendant\n" -"la proc=C3=A9dure de lecture de Guile. Il est possible d'=C3=A9crire fa= cilement des lecteurs\n" -"supportant de nombreuses syntaxes. Par exemple, Guile-Reader est utilis= =C3=A9 pour\n" -"implanter la syntaxe de documents bas=C3=A9s sur R5RS de Skribilo.\n" -"\n" -"L'approche de Guile-Reader est similaire =C3=A0 la table de lecture de = Lisp, mais\n" -"plus puissante et plus flexible (il est par exemple possible d'instanci= er autant\n" -"de lecteurs que n=C3=A9cessaires)." =20 -#: gnu/packages/guile.scm:263 -msgid "Guile bindings to ncurses" -msgstr "Bindings Guile pour ncurses" +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" =20 -#: gnu/packages/guile.scm:265 +#: gnu/packages/web.scm:1951 msgid "" -"guile-ncurses provides Guile language bindings for the ncurses\n" -"library." -msgstr "guile-ncurses fournit un binding Guile pour la bilioth=C3=A8que = ncurses." +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." +msgstr "" =20 -#: gnu/packages/guile.scm:285 -msgid "Run jobs at scheduled times" -msgstr "Plannification de t=C3=A2ches" +#: gnu/packages/web.scm:1979 +msgid "HTTP Body Parser" +msgstr "" =20 -#: gnu/packages/guile.scm:287 +#: gnu/packages/web.scm:1980 msgid "" -"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" -"Guile, so its configuration can be written in Scheme; the original cron= \n" -"format is also supported." +"HTTP::Body parses chunks of HTTP POST data and supports\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" +"and multipart/form-data." msgstr "" -"GNU Mcron est un rempla=C3=A7ant =C3=A0 Vixie cron. Il est utilis=C3=A9= pour la planification\n" -"de t=C3=A2ches =C3=A0 intervalles r=C3=A9guliers (toutes les heures, to= us les lundi, etc...).\n" -"Mcron est =C3=A9crit en Guile et peut donc =C3=AAtre configur=C3=A9 en = Scheme ; le format cron\n" -"original est aussi support=C3=A9." =20 -#: gnu/packages/guile.scm:315 -msgid "Collection of useful Guile Scheme modules" -msgstr "Collection de modules Scheme utiles pour Guile" +#: gnu/packages/web.scm:2006 +msgid "Minimalist HTTP user agent cookie jar" +msgstr "" =20 -#: gnu/packages/guile.scm:317 +#: gnu/packages/web.scm:2007 msgid "" -"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" -"modules, allowing for people to cooperate integrating their generic Gui= le\n" -"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" -"for Guile\"." +"This module implements a minimalist HTTP user agent cookie\n" +"jar in conformance with RFC 6265 ." msgstr "" -"Guile-Lib est con=C3=A7ue comme une collection de modules Scheme pour G= uile permettant\n" -"aux utilisateurs d'int=C3=A9grer leurs modules Guile au sein d'une bilb= ioth=C3=A9que commune\n" -"et coh=C3=A9rente. Voyez Guile-Lib comme une version plus simple de CPA= N limit=C3=A9e =C3=A0 Guile." =20 -#: gnu/packages/guile.scm:348 -msgid "JSON module for Guile" -msgstr "Module JSON pour Guile" +#: gnu/packages/web.scm:2027 +msgid "Perl HTTP cookie jars" +msgstr "" =20 -#: gnu/packages/guile.scm:350 +#: gnu/packages/web.scm:2029 msgid "" -"Guile-json supports parsing and building JSON documents according to th= e\n" -"http:://json.org specification. These are the main features:\n" -"- Strictly complies to http://json.org specification.\n" -"- Build JSON documents programmatically via macros.\n" -"- Unicode support for strings.\n" -"- Allows JSON pretty printing." +"The HTTP::Cookies class is for objects that represent a cookie jar,\n" +"that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" +"object knows about." msgstr "" -"Guile-json supporte l'analyse et la construction de documents JSON resp= ectant\n" -"la sp=C3=A9cification http:://json.org . Les principales fonctionnalit=C3= =A9es propos=C3=A9es\n" -"sont les suivantes :\n" -"- stricte conformit=C3=A9 =C3=A0 la sp=C3=A9cification http://json.org = ;\n" -"- cr=C3=A9ation de documents JSON par programmation via macros ;\n" -"- support d'unicode pour les chaines de caract=C3=A8re ;\n" -"- formatage =C3=A9l=C3=A9gant." =20 -#: gnu/packages/guile.scm:381 -msgid "Create charts and graphs in Guile" -msgstr "Cr=C3=A9ation de diagrammes et de graphiques dans Guile" +#: gnu/packages/web.scm:2051 +msgid "Perl simple http server class" +msgstr "" =20 -#: gnu/packages/guile.scm:383 +#: gnu/packages/web.scm:2053 msgid "" -"Guile-Charting is a Guile Scheme library to create bar charts and graph= s\n" -"using the Cairo drawing library." +"Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" +"on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " +"IO::Socket::INET, so you can perform socket operations directly on it t= oo." msgstr "" -"Guile-Charting est une biblioth=C3=A8que pour Guile permettant de cr=C3= =A9er des diagrammes\n" -"en barre et des graphiques utilisant la biblioth=C3=A8que de dessin Cai= ro." =20 -#: gnu/packages/inkscape.scm:78 -msgid "Vector graphics editor" -msgstr "=C3=89diteur graphique vectoriel" +#: gnu/packages/web.scm:2072 +msgid "Perl date conversion routines" +msgstr "" =20 -#: gnu/packages/inkscape.scm:79 +#: gnu/packages/web.scm:2074 msgid "" -"Inkscape is a vector graphics editor. What sets Inkscape\n" -"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C st= andard,\n" -"as the native format." +"The HTTP::Date module provides functions that deal with date formats\n" +"used by the HTTP protocol (and then some more)." msgstr "" -"Inkscape est un =C3=A9diteur graphique vectoriel. Ce qui diff=C3=A9renc= ie Inkscape\n" -"est son utilisation du format SVG, un standard W3C bas=C3=A9 sur XML, c= omme format natif." =20 -#: gnu/packages/linux.scm:131 -msgid "GNU Linux-Libre kernel headers" -msgstr "Fichiers d'en-t=C3=AAte pour le noyau GNU Linux-Libre" +#: gnu/packages/web.scm:2097 +msgid "Perl HTTP style message" +msgstr "" =20 -#: gnu/packages/linux.scm:132 -msgid "Headers of the Linux-Libre kernel." -msgstr "Fichiers d'en-t=C3=AAte pour le noyau Linux-Libre" +#: gnu/packages/web.scm:2099 +msgid "An HTTP::Message object contains some headers and a content body.= " +msgstr "" =20 -#: gnu/packages/linux.scm:163 -msgid "Tools for loading and managing Linux kernel modules" -msgstr "Outils de chargement et de gestion de modules noyau pour Linux" +#: gnu/packages/web.scm:2118 +msgid "Perl http content negotiation" +msgstr "" =20 -#: gnu/packages/linux.scm:165 +#: gnu/packages/web.scm:2120 msgid "" -"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" -"`insmod', `lsmod', and more." +"The HTTP::Negotiate module provides a complete implementation of the\n" +"HTTP content negotiation algorithm specified in\n" +"draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows = for\n" +"the selection of a preferred content representation based upon attribut= es\n" +"of the negotiable variants and the value of the various Accept* header\= n" +"fields in the request." msgstr "" -"Outils pour le chargement et la gestion des modules noyau Linux, tels q= ue\n" -"\"modprob\", \"insmod\", \"lsmod\" et plus." =20 -#: gnu/packages/linux.scm:296 -msgid "100% free redistribution of a cleaned Linux kernel" -msgstr "Redistribution 100% libre d'un noyau Linux propre" +#: gnu/packages/web.scm:2145 +msgid "Parse HTTP/1.1 requests" +msgstr "" =20 -#: gnu/packages/linux.scm:298 +#: gnu/packages/web.scm:2146 msgid "" -"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" -"It has been modified to remove all non-free binary blobs." +"This is an HTTP request parser. It takes chunks of text as\n" +"received and returns a 'hint' as to what is required, or returns the\n" +"HTTP::Request when a complete request has been read. HTTP/1.1 chunking= is\n" +"supported." msgstr "" -"GNU Linux-Libre est une variante libre du noyau Linux.\n" -"Il a =C3=A9t=C3=A9 modifi=C3=A9 pour en retirer toutes les composantes = non-libres." =20 -#: gnu/packages/linux.scm:341 -msgid "Pluggable authentication modules for Linux" -msgstr "Modules d'authentification pour Linux" +#: gnu/packages/web.scm:2166 +msgid "Fast HTTP request parser" +msgstr "" =20 -#: gnu/packages/linux.scm:343 +#: gnu/packages/web.scm:2167 msgid "" -"A *Free* project to implement OSF's RFC 86.0.\n" -"Pluggable authentication modules are small shared object files that can= \n" -"be used through the PAM API to perform tasks, like authenticating a use= r\n" -"at login. Local and dynamic reconfiguration are its key features" +"HTTP::Parser::XS is a fast, primitive HTTP request/response\n" +"parser." msgstr "" -"Un projet libre implantant OSF (RFC 86.0).\n" -"Les modules d'authentification sont de petits fichiers objets partag=C3= =A9s pouvant\n" -"=C3=AAtre utilis=C3=A9s =C3=A0 travers l'API PAM pour effectuer des t=C3= =A2ches, comme l'authentification\n" -"d'un utilisateur au moment de la connexion. Ses principales fonctionnal= it=C3=A9s sont\n" -"la reconfiguration locale et dynamique." =20 -#: gnu/packages/linux.scm:370 -msgid "Small utilities that use the proc filesystem" -msgstr "Petits utilitaires utilisant le syst=C3=A8me de fichier proc" +#: gnu/packages/web.scm:2188 +msgid "Set up a CGI environment from an HTTP::Request" +msgstr "" =20 -#: gnu/packages/linux.scm:372 +#: gnu/packages/web.scm:2189 msgid "" -"This PSmisc package is a set of some small useful utilities that\n" -"use the proc filesystem. We're not about changing the world, but\n" -"providing the system administrator with some help in common tasks." +"This module provides a convenient way to set up a CGI\n" +"environment from an HTTP::Request." msgstr "" -"Le paquet PSmisc est un ensemble de petits utilitaires utilisant le\n" -"syst=C3=A8me de fichier proc. Notre objectif n'est pas de changer le mo= nde\n" -"mais simplement de fournir de l'aide =C3=A0 l'administrateur syst=C3=A8= me dans ses\n" -"t=C3=A2ches les plus courantes." =20 -#: gnu/packages/linux.scm:416 -msgid "Collection of utilities for the Linux kernel" -msgstr "Collection d'utilitaires pour le noyau Linux" +#: gnu/packages/web.scm:2213 +msgid "Lightweight HTTP server" +msgstr "" =20 -#: gnu/packages/linux.scm:418 -msgid "Util-linux is a random collection of utilities for the Linux kern= el." -msgstr "Util-linux est une collection d'utilitaires pour le noyau Linux.= " +#: gnu/packages/web.scm:2214 +msgid "" +"HTTP::Server::Simple is a simple standalone HTTP daemon with\n" +"no non-core module dependencies. It can be used for building a standal= one\n" +"http-based UI to your existing tools." +msgstr "" =20 -#: gnu/packages/linux.scm:472 -msgid "Utilities that give information about processes" -msgstr "Utilitaires fournissant des informations sur les processus" +#: gnu/packages/web.scm:2238 +msgid "HTTP/1.1 client" +msgstr "" =20 -#: gnu/packages/linux.scm:474 +#: gnu/packages/web.scm:2239 msgid "" -"Procps is the package that has a bunch of small useful utilities\n" -"that give information about processes using the Linux /proc file system= .\n" -"The package includes the programs ps, top, vmstat, w, kill, free,\n" -"slabtop, and skill." +"This is a very simple HTTP/1.1 client, designed for doing\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" +"It supports proxies and redirection. It also correctly resumes after E= INTR." msgstr "" -"Procps est un paquet fournissant de nombreux outils simples donnant des= \n" -"des informations sur les processus utilisant le syst=C3=A8me de fichier= /proc.\n" -"Le paquet inclut les programmes ps, top, vmstat, w, kill, free,\n" -"slabtop et skill." =20 -#: gnu/packages/linux.scm:499 -msgid "Tools for working with USB devices, such as lsusb" -msgstr "Outils de manipulation des p=C3=A9riph=C3=A9riques USB, tels que= lsusb." +#: gnu/packages/web.scm:2258 +msgid "Perl module to open an HTML file with automatic charset detection= " +msgstr "" =20 -#: gnu/packages/linux.scm:501 -msgid "Tools for working with USB devices, such as lsusb." -msgstr "Outils de manipulation des p=C3=A9riph=C3=A9riques USB, tels que= lsusb." +#: gnu/packages/web.scm:2260 +msgid "" +"IO::HTML provides an easy way to open a file containing HTML while\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" +"algorithm specified in section 8.2.2.1 of the draft standard." +msgstr "" =20 -#: gnu/packages/linux.scm:542 -msgid "Creating and checking ext2/ext3/ext4 file systems" -msgstr "Cr=C3=A9ation et v=C3=A9rification de syst=C3=A8mes de fichiers = ext1/ext3/ext4" +#: gnu/packages/web.scm:2280 +msgid "Family-neutral IP socket supporting both IPv4 and IPv6" +msgstr "" =20 -#: gnu/packages/linux.scm:544 -msgid "This package provides tools for manipulating ext2/ext3/ext4 file = systems." -msgstr "Ce paquet fournit des outils pour manipuler les syst=C3=A8mes de= fichiers ext2/ext3/ext4" +#: gnu/packages/web.scm:2281 +msgid "" +"This module provides a protocol-independent way to use IPv4\n" +"and IPv6 sockets, intended as a replacement for IO::Socket::INET." +msgstr "" =20 -#: gnu/packages/linux.scm:575 -msgid "Statically-linked fsck.* commands from e2fsprogs" -msgstr "Commandes de e2fsprogs (fsck.*) li=C3=A9es statiquement" +#: gnu/packages/web.scm:2301 +msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" +msgstr "" =20 -#: gnu/packages/linux.scm:577 +#: gnu/packages/web.scm:2303 msgid "" -"This package provides statically-linked command of fsck.ext[234] taken\= n" -"from the e2fsprogs package. It is meant to be used in initrds." +"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" +"select or poll." msgstr "" -"Ce paquet fournit la commande li=C3=A9e statiquement de fsck.ext[234] i= ssue\n" -"du paquet e2fsprogs. Il est cens=C3=A9 =C3=AAtre utilis=C3=A9 dans init= rds." =20 -#: gnu/packages/linux.scm:596 -msgid "System call tracer for Linux" -msgstr "Traceur d'appel syst=C3=A8me pour Linux" +#: gnu/packages/web.scm:2334 +msgid "Perl modules for the WWW" +msgstr "" =20 -#: gnu/packages/linux.scm:598 +#: gnu/packages/web.scm:2336 msgid "" -"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" -"trace of all the system calls made by a another process/program." +"The libwww-perl collection is a set of Perl modules which provides a\n" +"simple and consistent application programming interface to the\n" +"World-Wide Web. The main focus of the library is to provide classes\n" +"and functions that allow you to write WWW clients. The library also\n" +"contains modules that are of more general use and even classes that\n" +"help you implement simple HTTP servers." msgstr "" -"strace est un traceur d'appels syst=C3=A8me, c-=C3=A0-d un outil de d=C3= =A9bogage affichant\n" -"les appels syst=C3=A8me effectu=C3=A9s par un autre processus/programme= ." =20 -#: gnu/packages/linux.scm:617 -msgid "The Advanced Linux Sound Architecture libraries" -msgstr "Biblioth=C3=A8ques ALSA (Advanced Linux Sound Architecture)" +#: gnu/packages/web.scm:2358 +msgid "Perl module to guess the media type for a file or a URL" +msgstr "" =20 -#: gnu/packages/linux.scm:619 gnu/packages/linux.scm:661 +#: gnu/packages/web.scm:2360 +#, scheme-format msgid "" -"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" -"MIDI functionality to the Linux-based operating system." +"The LWP::MediaTypes module provides functions for handling media (also\= n" +"known as MIME) types and encodings. The mapping from file extensions t= o\n" +"media types is defined by the media.types file. If the ~/.media.types = file\n" +"exists it is used instead." msgstr "" -"ALSA fournit des fonctionnalit=C3=A9s audio et MIDI pour les syt=C3=A8m= es\n" -"bas=C3=A9s sur Linux." - -#: gnu/packages/linux.scm:659 -msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" -msgstr "Utilitaires pour ALSA (Advanced Linux Sound Architecture)" =20 -#: gnu/packages/linux.scm:683 -msgid "Program to configure the Linux IP packet filtering rules" -msgstr "Programme de configuration de r=C3=A8gles de filtrage des paquet= s IP pour Linux" +#: gnu/packages/web.scm:2386 +msgid "HTTPS support for LWP::UserAgent" +msgstr "" =20 -#: gnu/packages/linux.scm:685 +#: gnu/packages/web.scm:2387 msgid "" -"iptables is the userspace command line program used to configure the\n" -"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted to= wards\n" -"system administrators. Since Network Address Translation is also confi= gured\n" -"from the packet filter ruleset, iptables is used for this, too. The ip= tables\n" -"package also includes ip6tables. ip6tables is used for configuring the= IPv6\n" -"packet filter." +"The LWP::Protocol::https module provides support for using\n" +"https schemed URLs with LWP." msgstr "" -"iptables est un programme utilisateur en ligne de commande utilis=C3=A9= pour\n" -"configurer le filtrage des paquets IPv4 sur Linux depuis la version 2.4= .x.\n" -"Il s'adresse particuli=C3=A8rement aux administrateurs. iptables g=C3=A8= re aussi le NAT\n" -"Network Address Translation). Le paquet inclut aussi ip6tables, utilis=C3= =A9 pour\n" -"configurer le filtrage IPv6." =20 -#: gnu/packages/linux.scm:733 -msgid "Utilities for controlling TCP/IP networking and traffic in Linux" -msgstr "Utilitaires de contr=C3=B4le du traffic TCP/IP pour Linux" +#: gnu/packages/web.scm:2407 +msgid "Virtual browser that retries errors" +msgstr "" =20 -#: gnu/packages/linux.scm:735 +#: gnu/packages/web.scm:2408 msgid "" -"Iproute2 is a collection of utilities for controlling TCP/IP\n" -"networking and traffic with the Linux kernel.\n" -"\n" -"Most network configuration manuals still refer to ifconfig and route as= the\n" -"primary network configuration tools, but ifconfig is known to behave\n" -"inadequately in modern network environments. They should be deprecated= , but\n" -"most distros still include them. Most network configuration systems ma= ke use\n" -"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct aims\n" -"to support most modern network technologies, as it doesn't use ifconfig= and\n" -"allows a system administrator to make use of all iproute2 features, inc= luding\n" -"traffic control.\n" -"\n" -"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" -"consists of several tools, of which the most important are ip and tc. = ip\n" -"controls IPv4 and IPv6 configuration and tc stands for traffic control.= Both\n" -"tools print detailed usage messages and are accompanied by a set of\n" -"manpages." +"LWP::UserAgent::Determined works just like LWP::UserAgent,\n" +"except that when you use it to get a web page but run into a\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" +"and retry a few times." msgstr "" -"Iproute2 est une collection d'utilitaires pour le contr=C3=B4le des r=C3= =A9seaux TCP/IP\n" -"sous Linux. De nombreux manuels sur la configuration du r=C3=A9seau sou= s Linux se\n" -"r=C3=A9f=C3=A8rent toujours =C3=A0 ifconfig et route comme des outils i= ndispensables\n" -"bien que ifconfig soit connu pour son inad=C3=A9quation aux r=C3=A9seau= x modernes. Ils devraient\n" -"=C3=AAtre d=C3=A9pr=C3=A9ci=C3=A9s mais de nombreuses distributions les= incluent encore. Le projet\n" -"/etc/net a pour but de supporter des technologies r=C3=A9seau plus mode= rnes. Iproute2\n" -"est habituellement fourni dans un paquet appel=C3=A9 iproute ou iproute= 2 et consiste\n" -"en plusieurs outils dont les plus importants sont ip et tc. ip contr=C3= =B4le la\n" -"configuration IPv4 et IPv6 tandis que tc se charge du contr=C3=B4le du = trafic. Ces\n" -"deux outils sont accompagn=C3=A9s par leur manuel." =20 -#: gnu/packages/linux.scm:827 -msgid "Tools for controlling the network subsystem in Linux" -msgstr "Outils pour contr=C3=B4ler le sous-syst=C3=A8me r=C3=A9seau dans= Linux" +#: gnu/packages/web.scm:2453 +msgid "Perl interface to Amazon S3" +msgstr "" + +#: gnu/packages/web.scm:2454 +#, fuzzy +msgid "This module provides a Perlish interface to Amazon S3." +msgstr "Ce paquet fournit une interface de base de donn=C3=A9es pour Per= l." + +#: gnu/packages/web.scm:2474 +msgid "Perl low-level HTTP connection (client)" +msgstr "" =20 -#: gnu/packages/linux.scm:829 +#: gnu/packages/web.scm:2476 msgid "" -"This package includes the important tools for controlling the network\n= " -"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" -"netstat, rarp and route. Additionally, this package contains utilities= \n" -"relating to particular network hardware types (plipconfig, slattach) an= d\n" -"advanced aspects of IP configuration (iptunnel, ipmaddr)." +"The Net::HTTP class is a low-level HTTP client. An instance of the\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" +"is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" +"HTTP/1.1." msgstr "" -"Ce paquet inclut des outils importants pour contr=C3=B4ler le sous-syst= =C3=A8me r=C3=A9seau\n" -"du noyau Linux. Cela inclut arp, hostname, ifconfig, netstat, rarp et r= oute.\n" -"Aditionnellement, ce paquet contient des utilitaires relatifs =C3=A0 de= s architectures\n" -"particuli=C3=A8res (pliconfig, slattach) et =C3=A0 des aspects avanc=C3= =A9s de la configuration\n" -"r=C3=A9seau (iptunnel, ipmaddr)." =20 -#: gnu/packages/linux.scm:862 -msgid "Library for working with POSIX capabilities" -msgstr "Biblioth=C3=A8que pour travailler avec les possibilit=C3=A9s de = POSIX" +#: gnu/packages/web.scm:2496 +msgid "Extensible Perl server engine" +msgstr "" =20 -#: gnu/packages/linux.scm:864 +#: gnu/packages/web.scm:2497 msgid "" -"Libcap2 provides a programming interface to POSIX capabilities on\n" -"Linux-based operating systems." -msgstr "Libcap2 fournit une interface de programmation POSIX aux syst=C3= =A8mes bas=C3=A9s sur Linux." +"Net::Server is an extensible, generic Perl server engine.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" +"It includes with it the ability to run as an inetd\n" +"process (Net::Server::INET), a single connection server (Net::Server or= \n" +"Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" +"server which maintains a constant number of preforked\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" +"or to multiple server ports." +msgstr "" =20 -#: gnu/packages/linux.scm:896 -msgid "Manipulate Ethernet bridges" -msgstr "Manipulation des ponts Ethernet" +#: gnu/packages/web.scm:2525 +msgid "SSL support for Net::SMTP" +msgstr "" =20 -#: gnu/packages/linux.scm:898 -msgid "" -"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" -"to connect two Ethernet segments together in a protocol independent way= .\n" -"Packets are forwarded based on Ethernet address, rather than IP address= (like\n" -"a router). Since forwarding is done at Layer 2, all protocols can go\n= " -"transparently through a bridge." +#: gnu/packages/web.scm:2526 +msgid "SSL support for Net::SMTP." msgstr "" -"Utilitaires pour la gestion des ponts ethernet sous Linux. Un pont est = un\n" -"moyen de connecter deux segments Ethernet ind=C3=A9pendant du protocole= utilis=C3=A9.\n" -"Les paquets sont transf=C3=A9r=C3=A9s en se basant sur leur adresse Eth= ernet plut=C3=B4t que\n" -"sur leur adresse IP (contrairement aux routeurs). Le forwarding se fais= ant au\n" -"niveau 2, tous les protocoles peuvent transiter de mani=C3=A8re transpa= rente sur un\n" -"un pont." =20 -#: gnu/packages/linux.scm:920 -msgid "NetLink protocol library suite" -msgstr "Biblioth=C3=A8qye pour le protocole NetLink" +#: gnu/packages/web.scm:2560 +msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" +msgstr "" =20 -#: gnu/packages/linux.scm:922 +#: gnu/packages/web.scm:2561 msgid "" -"The libnl suite is a collection of libraries providing APIs to netlink\= n" -"protocol based Linux kernel interfaces. Netlink is an IPC mechanism pr= imarly\n" -"between the kernel and user space processes. It was designed to be a m= ore\n" -"flexible successor to ioctl to provide mainly networking related kernel= \n" -"configuration and monitoring interfaces." +"Plack is a set of tools for using the PSGI stack. It\n" +"contains middleware components, a reference server, and utilities for W= eb\n" +"application frameworks. Plack is like Ruby's Rack or Python's Paste fo= r\n" +"WSGI." msgstr "" -"La suite libnl est une collection de biblioth=C3=A8ques fournissant des= API pour\n" -"le protocole netlink bas=C3=A9 sur des interfaces du noyau Linux. Netli= nk est un\n" -"m=C3=A9canisme IPC intervenant entre le noyay et les processus utilisat= eur. Il\n" -"est con=C3=A7u pour =C3=AAtre un successeur plus flexible =C3=A0 ioctl = permettant de configurer\n" -"le r=C3=A9seau au niveau noyau et surveiller les interfaces." =20 -#: gnu/packages/linux.scm:955 -msgid "Analyze power consumption on Intel-based laptops" -msgstr "Analyse de la consommation des portables bas=C3=A9s sur Intel" +#: gnu/packages/web.scm:2587 +msgid "Plack::Middleware which sets body for redirect response" +msgstr "" =20 -#: gnu/packages/linux.scm:957 +#: gnu/packages/web.scm:2588 msgid "" -"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" -"power management. In addition to being a diagnostic tool, PowerTOP als= o has\n" -"an interactive mode where the user can experiment various power managem= ent\n" -"settings for cases where the operating system has not enabled these\n" -"settings." +"This module sets the body in redirect response, if it's not\n" +"already set." msgstr "" -"PowerTOP est un outil Linux permettant de diagnostiquer des probl=C3=A8= mes de\n" -"consommation =C3=A9lectrique ou de gestion de l'=C3=A9nergie. En plus d= '=C3=AAtre un outil\n" -"de diagnostique, PowerTOP propose aussi un mode interactif dans lequel\= n" -"l'utilisateur peut exp=C3=A9rimenter de multiples configurations de ges= tion de\n" -"l'=C3=A9nergie pour des cas o=C3=B9 le syst=C3=A8me d'exploitation n'a = pas " =20 -#: gnu/packages/linux.scm:979 -msgid "Audio mixer for X and the console" -msgstr "Table de mixage audio bas=C3=A9e sur X et la console" +#: gnu/packages/web.scm:2611 +msgid "Override REST methods to Plack apps via POST" +msgstr "" =20 -#: gnu/packages/linux.scm:981 +#: gnu/packages/web.scm:2612 msgid "" -"Aumix adjusts an audio mixer from X, the console, a terminal,\n" -"the command line or a script." +"This middleware allows for POST requests that pretend to be\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" +"can say what method it actually meant." msgstr "" -"Aumix ajuste un mixer audio depuis X, la console, un terminal,\n" -"la ligne de commande ou un script." =20 -#: gnu/packages/linux.scm:1005 -msgid "Displays the IO activity of running processes" -msgstr "Affiche l'activit=C3=A9 des entr=C3=A9es-sorties des processus e= n cours d'ex=C3=A9cution." +#: gnu/packages/web.scm:2636 +msgid "Plack::Middleware which removes body for HTTP response" +msgstr "" =20 -#: gnu/packages/linux.scm:1007 +#: gnu/packages/web.scm:2637 msgid "" -"Iotop is a Python program with a top like user interface to show the\n" -"processes currently causing I/O." +"This module removes the body in an HTTP response if it's not\n" +"required." msgstr "" -"Iotop est un programme Python dot=C3=A9 d'une interface utilisateur aff= ichant les\n" -"entr=C3=A9es-sorties en cours des processus." =20 -#: gnu/packages/linux.scm:1058 -msgid "Support file systems implemented in user space" -msgstr "Support des syst=C3=A8mes de fichiers implant=C3=A9s dans l'espa= ce utilisateur." +#: gnu/packages/web.scm:2658 +msgid "Supports app to run as a reverse proxy backend" +msgstr "" =20 -#: gnu/packages/linux.scm:1060 +#: gnu/packages/web.scm:2659 msgid "" -"As a consequence of its monolithic design, file system code for Linux\n= " -"normally goes into the kernel itself---which is not only a robustness i= ssue,\n" -"but also an impediment to system extensibility. FUSE, for \"file syste= ms in\n" -"user space\", is a kernel module and user-space library that tries to a= ddress\n" -"part of this problem by allowing users to run file system implementatio= ns as\n" -"user-space processes." +"Plack::Middleware::ReverseProxy resets some HTTP headers,\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" +"and stop fake requests using 'enable_if' directive in your app.psgi." msgstr "" -"Parce qu'il est bas=C3=A9 sur un mod=C3=A8le monolithique, la gestion d= u syst=C3=A8me de\n" -"de fichiers sous Linux se trouve normalement au sein du noyau, ce qui\n= " -"consititue un probl=C3=A8me de robustesse et =C3=A9galement une entrave= \n" -"=C3=A0 l'extensibilit=C3=A9 du syst=C3=A8me. FUSE (File systems in user= space) est\n" -"un module noyau et une biblioth=C3=A8que utilisateur destin=C3=A9e =C3=A0= r=C3=A9soudre\n" -"ce probl=C3=A8me en permettant aux utilisateurs de lancer les implantat= ions de\n" -"syst=C3=A8mes de fichiers comme des processus utilisateur." =20 -#: gnu/packages/linux.scm:1085 -msgid "User-space union file system" +#: gnu/packages/web.scm:2680 +msgid "Run HTTP tests on external live servers" msgstr "" =20 -#: gnu/packages/linux.scm:1087 +#: gnu/packages/web.scm:2681 msgid "" -"UnionFS-FUSE is a flexible union file system implementation in user\n" -"space, using the FUSE library. Mounting a union file system allows you= to\n" -"\"aggregate\" the contents of several directories into a single mount p= oint.\n" -"UnionFS-FUSE additionally supports copy-on-write." +"This module allows your to run your Plack::Test tests\n" +"against an external server instead of just against a local application = " +"through\n" +"either mocked HTTP or a locally spawned server." msgstr "" =20 -#: gnu/packages/linux.scm:1112 -msgid "User-space union file system (statically linked)" +#: gnu/packages/web.scm:2703 +msgid "Testing TCP programs" msgstr "" =20 -#: gnu/packages/linux.scm:1154 -msgid "Mount remote file systems over SSH" -msgstr "Montage de syst=C3=A8mes de fichier distants avec SSH" - -#: gnu/packages/linux.scm:1156 -msgid "" -"This is a file system client based on the SSH File Transfer Protocol.\n= " -"Since most SSH servers already support this protocol it is very easy to= set\n" -"up: on the server side there's nothing to do; on the client side mounti= ng the\n" -"file system is as easy as logging into the server with an SSH client." +#: gnu/packages/web.scm:2704 +msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -"Syst=C3=A8me de fichier client bas=C3=A9 sur SFTP (SSH File Transfer Pr= otocole).\n" -"Beaucoup de serveurs SSH supportant le protocole, ce client est tr=C3=A8= s facile\n" -"=C3=A0 configurer : il n'y a rien =C3=A0 faire du c=C3=B4t=C3=A9 serveu= r ; du c=C3=B4t=C3=A9 client, il est\n" -"aussi facile de monter le syst=C3=A8me de fichiers que de se connecter = avec un client\n" -"SSH." =20 -#: gnu/packages/linux.scm:1204 -msgid "Tools for non-uniform memory access (NUMA) machines" -msgstr "Outils pour les machines bas=C3=A9es sur NUMA (non-uniform memor= y access)" +#: gnu/packages/web.scm:2732 +msgid "Testing-specific WWW::Mechanize subclass" +msgstr "" =20 -#: gnu/packages/linux.scm:1206 +#: gnu/packages/web.scm:2733 msgid "" -"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" -"memory is not all in one place. The numactl program allows you to run = your\n" -"application program on specific CPU's and memory nodes. It does this b= y\n" -"supplying a NUMA memory policy to the operating system before running y= our\n" -"program.\n" -"\n" -"The package contains other commands, such as numademo, numastat and mem= hog.\n" -"The numademo command provides a quick overview of NUMA performance on y= our\n" -"system." +"Test::WWW::Mechanize is a subclass of the Perl module\n" +"WWW::Mechanize that incorporates features for web application testing." msgstr "" -"NUMA (Non-Uniform Memory Access) est un syst=C3=A8me dans lequel la m=C3= =A9moire est\n" -"r=C3=A9partie en diff=C3=A9rents endroits. Le programme numactl permet = de lancer une\n" -"une application sur des noeuds CPU et m=C3=A9moire sp=C3=A9cifiques au = moyen de politiques\n" -"fournies au syst=C3=A8me d'exploitation avant le lancement du programme= ." =20 -#: gnu/packages/linux.scm:1269 -msgid "Linux keyboard utilities and keyboard maps" +#: gnu/packages/web.scm:2766 +msgid "Test::WWW::Mechanize for Catalyst" msgstr "" =20 -#: gnu/packages/linux.scm:1271 +#: gnu/packages/web.scm:2767 msgid "" -"This package contains keytable files and keyboard utilities compatible\= n" -"for systems using the Linux kernel. This includes commands such as\n" -"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +"The Test::WWW::Mechanize::Catalyst module meshes the\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" +"testing of Catalyst applications without needing to start up a web serv= er." msgstr "" =20 -#: gnu/packages/linux.scm:1290 -msgid "Monitor file accesses" -msgstr "Surveillance des acc=C3=A8s fichier" +#: gnu/packages/web.scm:2791 +msgid "Test PSGI programs using WWW::Mechanize" +msgstr "" =20 -#: gnu/packages/linux.scm:1292 +#: gnu/packages/web.scm:2792 msgid "" -"The inotify-tools packages provides a C library and command-line tools\= n" -"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +"PSGI is a specification to decouple web server environments\n" +"from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" +"WWW::Mechanize that incorporates features for web application testing. = The\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" +"applications." msgstr "" -"Le paquet inotify-tools fournit une biblioth=C3=A8que C et des outils e= n ligne de commande\n" -"permettant d'utiliser le m=C3=A9canisme inotify de Linux qui autorise l= a surveillance\n" -"des acc=C3=A8s fichier." =20 -#: gnu/packages/linux.scm:1330 -msgid "Kernel module tools" -msgstr "Outils de module noyau" +#: gnu/packages/web.scm:2812 +msgid "Perl Uniform Resource Identifiers (absolute and relative)" +msgstr "" =20 -#: gnu/packages/linux.scm:1331 +#: gnu/packages/web.scm:2814 msgid "" -"Kmod is a set of tools to handle common tasks with Linux\n" -"kernel modules like insert, remove, list, check properties, resolve\n" -"dependencies and aliases.\n" -"\n" -"These tools are designed on top of libkmod, a library that is shipped w= ith\n" -"kmod. The aim is to be compatible with tools, configurations and indic= es\n" -"from the module-init-tools project." +"The URI module implements the URI class. Objects of this class\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" +"and updated by RFC 2732." msgstr "" -"Kmod est un ensemble d'outils g=C3=A9rant les op=C3=A9rations courantes= sur les\n" -"les modules noyau comme ins=C3=A9rer, supprimer, lister, v=C3=A9rifier = les propri=C3=A9t=C3=A9s,\n" -"r=C3=A9soudre les d=C3=A9pendances et alias.\n" -"\n" -"Ces outils sont construits au-dessus libkmod, une biblioth=C3=A8que fou= rnie avec\n" -"kmod. L'objectif est d'=C3=AAtre compatible avec les outils, les config= urations et\n" -"les indices du projet module-init-tools." =20 -#: gnu/packages/linux.scm:1380 -msgid "Userspace device management" -msgstr "Gestion de p=C3=A9riph=C3=A9riques utilisateurs" +#: gnu/packages/web.scm:2837 +msgid "Find URIs in arbitrary text" +msgstr "" =20 -#: gnu/packages/linux.scm:1381 +#: gnu/packages/web.scm:2838 msgid "" -"Udev is a daemon which dynamically creates and removes\n" -"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" -"time." +"This module finds URIs and URLs (according to what URI.pm\n" +"considers a URI) in plain text. It only finds URIs which include a\n" +"scheme (http:// or the like), for something a bit less strict, consider= \n" +"URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." msgstr "" -"Udev est un daemon capable de cr=C3=A9er et supprimer dynamiquement\n" -"des noeuds de p=C3=A9riph=C3=A9riques dans /dev/, g=C3=A9rer leur branc= hement =C3=A0 chaud\n" -"et charger leur pilotes au d=C3=A9marrage." =20 -#: gnu/packages/linux.scm:1470 -msgid "Logical volume management for Linux" -msgstr "Gestion de volumes logiques pour Linux" +#: gnu/packages/web.scm:2860 +msgid "WebSocket support for URI package" +msgstr "" =20 -#: gnu/packages/linux.scm:1472 +#: gnu/packages/web.scm:2861 msgid "" -"LVM2 is the logical volume management tool set for Linux-based systems.= \n" -"This package includes the user-space libraries and tools, including the= device\n" -"mapper. Kernel components are part of Linux-libre." +"With this module, the URI package provides the same set of\n" +"methods for WebSocket URIs as it does for HTTP URIs." msgstr "" =20 -#: gnu/packages/linux.scm:1499 -msgid "Tools for manipulating Linux Wireless Extensions" -msgstr "Outils de manipulation d'extensions sans fil pour Linux" +#: gnu/packages/web.scm:2881 +#, fuzzy +msgid "Perl extension interface for libcurl" +msgstr "Interface SQLite pour Perl" =20 -#: gnu/packages/linux.scm:1500 +#: gnu/packages/web.scm:2883 msgid "" -"Wireless Tools are used to manipulate the Linux Wireless\n" -"Extensions. The Wireless Extension is an interface allowing you to set= \n" -"Wireless LAN specific parameters and get the specific stats." +"This is a Perl extension interface for the libcurl file downloading\n" +"library." msgstr "" =20 -#: gnu/packages/linux.scm:1572 -msgid "Utilities to read temperature/voltage/fan sensors" -msgstr "Utilitaires pour la lecture de capteurs de temp=C3=A9ture/voltag= e/ventilateur" +#: gnu/packages/web.scm:2912 +msgid "Web browsing in a Perl object" +msgstr "" =20 -#: gnu/packages/linux.scm:1574 +#: gnu/packages/web.scm:2913 msgid "" -"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" -"you to access information from temperature, voltage, and fan speed sens= ors.\n" -"It works with most newer systems." +"WWW::Mechanize is a Perl module for stateful programmatic\n" +"web browsing, used for automating interaction with websites." msgstr "" -"Lm-sensors est un utilitaire de monitoring hardware pour Linux. Il perm= et\n" -"d'acc=C3=A9der =C3=A0 des informations sur les composants telles que la= temp=C3=A9rature,\n" -"le voltage ou la vitesse des ventilatuers. Il fonctionne avec la plupar= t des\n" -"syst=C3=A8mes les plus r=C3=A9cents." =20 -#: gnu/packages/linux.scm:1609 -msgid "Hardware health information viewer" -msgstr "Utiltaire de monitoring hardware" +#: gnu/packages/web.scm:2933 +msgid "Perl database of robots.txt-derived permissions" +msgstr "" =20 -#: gnu/packages/linux.scm:1611 +#: gnu/packages/web.scm:2935 msgid "" -"Xsensors reads data from the libsensors library regarding hardware\n" -"health such as temperature, voltage and fan speed and displays the info= rmation\n" -"in a digital read-out." -msgstr "Xsensors lit les donn=C3=A9es depuis la biblioth=C3=A8que libsen= sors " +"The WWW::RobotRules module parses /robots.txt files as specified in\n" +"\"A Standard for Robot Exclusion\", at\n" +". Webmasters can use the\n" +"/robots.txt file to forbid conforming robots from accessing parts of\n" +"their web site." +msgstr "" =20 -#: gnu/packages/linux.scm:1654 -msgid "Linux profiling with performance counters" +#: gnu/packages/web.scm:2955 +msgid "HTTP and WebSocket server library for R" msgstr "" =20 -#: gnu/packages/linux.scm:1656 +#: gnu/packages/web.scm:2957 msgid "" -"perf is a tool suite for profiling using hardware performance counters,= \n" -"with support in the Linux kernel. perf can instrument CPU performance\= n" -"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is c= apable\n" -"of lightweight profiling. This package contains the user-land tools an= d in\n" -"particular the 'perf' command." +"The httpuv package provides low-level socket and protocol support for\n= " +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" +"intended as a building block for other packages, rather than making it\= n" +"particularly easy to create complete web applications using httpuv alon= e." msgstr "" =20 -#: gnu/packages/lout.scm:109 -msgid "Document layout system" +#: gnu/packages/web.scm:2978 +msgid "Robust, high performance JSON parser and generator for R" msgstr "" =20 -#: gnu/packages/lout.scm:111 +#: gnu/packages/web.scm:2980 msgid "" -"The Lout document formatting system reads a high-level description of\n= " -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" -"output file.\n" -"\n" -"Lout offers an unprecedented range of advanced features, including opti= mal\n" -"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" -"scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" -"hyphenation (most European languages are supported), formatting of comp= uter\n" -"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" -"extended with definitions which are very much easier to write than trof= f of\n" -"TeX macros because Lout is a high-level, purely functional language, th= e\n" -"outcome of an eight-year research project that went back to the\n" -"beginning." +"The jsonlite package provides a fast JSON parser and generator optimize= d\n" +"for statistical data and the web. It offers flexible, robust, high\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" +"in systems and applications." msgstr "" =20 -#: gnu/packages/mpd.scm:62 -msgid "Music Player Daemon client library" +#: gnu/packages/web.scm:3008 +msgid "Simple HTTP server to serve static files or dynamic documents" msgstr "" =20 -#: gnu/packages/mpd.scm:63 +#: gnu/packages/web.scm:3010 msgid "" -"A stable, documented, asynchronous API library for\n" -"interfacing MPD in the C, C++ & Objective C languages." +"Servr provides an HTTP server in R to serve static files, or dynamic\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" +"directory." msgstr "" =20 -#: gnu/packages/mpd.scm:121 -msgid "Music Player Daemon" +#: gnu/packages/web.scm:3029 +msgid "R tools for HTML" msgstr "" =20 -#: gnu/packages/mpd.scm:122 -msgid "" -"Music Player Daemon (MPD) is a flexible, powerful,\n" -"server-side application for playing music. Through plugins and librari= es it\n" -"can play a variety of sound files while being controlled by its network= \n" -"protocol." +#: gnu/packages/web.scm:3031 +#, fuzzy +msgid "This package provides tools for HTML generation and output in R." msgstr "" +"Ce paquet fournit des outils pour manipuler les syst=C3=A8mes de fichie= rs ext2/" +"ext3/ext4" =20 -#: gnu/packages/mpd.scm:147 -msgid "Curses Music Player Daemon client" +#: gnu/packages/web.scm:3050 +msgid "HTML Widgets for R" msgstr "" =20 -#: gnu/packages/mpd.scm:148 +#: gnu/packages/web.scm:3052 msgid "" -"ncmpc is a fully featured MPD client, which runs in a\n" -"terminal using ncurses." +"HTML widgets is a framework for creating HTML widgets that render in\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" +"applications." msgstr "" =20 -#: gnu/packages/mpd.scm:169 -msgid "Featureful ncurses based MPD client inspired by ncmpc" +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" msgstr "" =20 -#: gnu/packages/mpd.scm:170 +#: gnu/packages/web.scm:3073 msgid "" -"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" -"but it provides new useful features such as support for regular express= ions\n" -"for library searches, extended song format, items filtering, the abilit= y to\n" -"sort playlists, and a local filesystem browser." +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." msgstr "" =20 -#: gnu/packages/pdf.scm:79 -msgid "PDF rendering library" +#: gnu/packages/web.scm:3107 +#, fuzzy +msgid "HTML5 parsing library" msgstr "Biblioth=C3=A8que de rendu PDF" =20 -#: gnu/packages/pdf.scm:81 -msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +#: gnu/packages/web.scm:3109 +msgid "" +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." msgstr "" =20 -#: gnu/packages/pdf.scm:124 -msgid "Viewer for PDF files based on the Motif toolkit" -msgstr "Visionneuse pour fichiers PDF bas=C3=A9e sur la bo=C3=AEte =C3=A0= outil Motif" +#: gnu/packages/weechat.scm:98 +msgid "Extensible chat client" +msgstr "" =20 -#: gnu/packages/pdf.scm:126 -msgid "Xpdf is a viewer for Portable Document Format (PDF) files" -msgstr "Xpdf est une visionneuse pour fichiers PDF (Portable Document Fo= rmat)" +#: gnu/packages/weechat.scm:99 +msgid "" +"WeeChat (Wee Enhanced Environment for Chat) is an\n" +"Internet Relay Chat client, which is designed to be light and fast.\n" +"The client uses a curses frontend, and there are remote interfaces\n" +"for Web, Qt, Android and Emacs. In WeeChat everything can be done\n" +"with a keyboard, though it also supports mouse. It is customizable\n" +"and extensible with plugins and scripts." +msgstr "" =20 -#: gnu/packages/pdf.scm:154 -msgid "Tools to work with the PDF file format" -msgstr "Outils de manipulation de fichiers PDF" +#: gnu/packages/wordnet.scm:79 +msgid "Lexical database for the English language" +msgstr "Base de donn=C3=A9es lexicale pour la langue anglaise" + +#: gnu/packages/wordnet.scm:81 +#, fuzzy +msgid "" +"WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" +"each expressing a distinct concept. Synsets are interlinked by means o= f\n" +"conceptual-semantic and lexical relations. The resulting network of\n" +"meaningfully related words and concepts can be navigated with the brows= er.\n" +"WordNet is also freely and publicly available for download. WordNet's\= n" +"structure makes it a useful tool for computational linguistics and natu= ral\n" +"language processing." +msgstr "" +"WordNet=C2=AE est une vaste base de donn=C3=A9es pour la langue anglais= e. Noms, " +"verbes,\n" +"adjectifs et adverbes sont regoup=C3=A9s en" + +#: gnu/packages/xiph.scm:66 +msgid "Library for manipulating the ogg multimedia format" +msgstr "" =20 -#: gnu/packages/pdf.scm:156 +#: gnu/packages/xiph.scm:68 msgid "" -"PoDoFo is a C++ library and set of command-line tools to work with the\= n" -"PDF file format. It can parse PDF files and load them into memory, and= makes\n" -"it easy to modify them and write the changes to disk. It is primarily = useful\n" -"for applications that wish to do lower level manipulation of PDF, such = as\n" -"extracting content or merging files." +"The libogg library allows to manipulate the ogg multimedia container\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" +"audio and video data. In addition to encapsulation and interleaving of= \n" +"multiple data streams, ogg provides packet framing, error detection, an= d\n" +"periodic timestamps for seeking." msgstr "" =20 -#: gnu/packages/pdf.scm:217 -msgid "Lightweight PDF viewer and toolkit" -msgstr "Boite =C3=A0 outils l=C3=A9g=C3=A8re pour la visualisation de do= cuments PDF" +#: gnu/packages/xiph.scm:92 +msgid "Library implementing the vorbis audio format" +msgstr "" =20 -#: gnu/packages/pdf.scm:219 +#: gnu/packages/xiph.scm:94 msgid "" -"MuPDF is a C library that implements a PDF and XPS parsing and\n" -"rendering engine. It is used primarily to render pages into bitmaps,\n= " -"but also provides support for other operations such as searching and\n" -"listing the table of contents and hyperlinks.\n" -"\n" -"The library ships with a rudimentary X11 viewer, and a set of command\n= " -"line tools for batch rendering (pdfdraw), examining the file structure\= n" -"(pdfshow), and rewriting files (pdfclean)." +"The libvorbis library implements the ogg vorbis audio format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit,= \n" +"polyphonic) audio and music at fixed and variable bitrates from 16 to\n= " +"128 kbps/channel." msgstr "" -"MuPDF est une biblioth=C3=A8que C permettant d'analyser et de faire le = rendu de\n" -"fichiers PDF et XPS. Elle est surtout utilis=C3=A9e pour effectuer le r= endu de pages dans\n" -"des bitmaps mais fournit aussi le support pour d'autres op=C3=A9rations= comme la recherche\n" -"et l'affichage de tables des mati=C3=A8res et d'hyperliens.\n" -"\n" -"La biblioth=C3=A8que est fournie avec une visionneuse rudimentaire X11 = et un ensemble\n" -"d'outils en ligne de commande pour le rendu par lots (pdfdraw), l'analy= se de structure\n" -"(pdfshow), et la r=C3=A9=C3=A9criture de fichiers (pdfclean)." =20 -#: gnu/packages/ratpoison.scm:60 -msgid "Simple mouse-free tiling window manager" +#: gnu/packages/xiph.scm:119 +msgid "Library implementing the Theora video format" msgstr "" =20 -#: gnu/packages/ratpoison.scm:62 +#: gnu/packages/xiph.scm:121 msgid "" -"Ratpoison is a simple window manager with no fat library\n" -"dependencies, no fancy graphics, no window decorations, and no\n" -"rodent dependence. It is largely modelled after GNU Screen which\n" -"has done wonders in the virtual terminal market.\n" -"\n" -"The screen can be split into non-overlapping frames. All windows\n" -"are kept maximized inside their frames to take full advantage of\n" -"your precious screen real estate.\n" -"\n" -"All interaction with the window manager is done through keystrokes.\n" -"Ratpoison has a prefix map to minimize the key clobbering that\n" -"cripples Emacs and other quality pieces of software." +"The libtheora library implements the ogg theora video format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed video format." msgstr "" =20 -#: gnu/packages/scanner.scm:52 -msgid "Raster image scanner library and drivers" +#: gnu/packages/xiph.scm:142 +msgid "Library for patent-free audio compression format" msgstr "" =20 -#: gnu/packages/scanner.scm:53 +#: gnu/packages/xiph.scm:144 msgid "" -"SANE stands for \"Scanner Access Now Easy\" and is an API\n" -"proving access to any raster image scanner hardware (flatbed scanner,\n= " -"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" -"package contains the library and drivers." +"GNU Speex is a patent-free audio compression codec specially designed\n= " +"for speech. It is well-adapted to internet applications, such as VoIP.= It\n" +"features compression of different bands in the same bitstream, intensit= y\n" +"stereo encoding, and voice activity detection." msgstr "" =20 -#: gnu/packages/scheme.scm:126 -msgid "A Scheme implementation with integrated editor and debugger" -msgstr "Une implantation de Scheme avec =C3=A9diteur et d=C3=A9bogueur i= nt=C3=A9gr=C3=A9s" +#: gnu/packages/xiph.scm:174 +msgid "Cross platform audio library" +msgstr "" =20 -#: gnu/packages/scheme.scm:128 +#: gnu/packages/xiph.scm:176 msgid "" -"GNU/MIT Scheme is an implementation of the Scheme programming\n" -"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" -"features an integrated Emacs-like editor and a large runtime library." +"Libao is a cross-platform audio library that allows programs to\n" +"output audio using a simple API on a wide variety of platforms.\n" +"It currently supports:\n" +"Null output (handy for testing without a sound device),\n" +"WAV files,\n" +"AU files,\n" +"RAW files,\n" +"OSS (Open Sound System, used on Linux and FreeBSD),\n" +"ALSA (Advanced Linux Sound Architecture),\n" +"aRts (Analog RealTime Synth, used by KDE),\n" +"PulseAudio (next generation GNOME sound server),\n" +"esd (EsounD or Enlightened Sound Daemon),\n" +"Mac OS X,\n" +"Windows (98 and later),\n" +"AIX,\n" +"Sun/NetBSD/OpenBSD,\n" +"IRIX,\n" +"NAS (Network Audio Server),\n" +"RoarAudio (Modern, multi-OS, networked Sound System),\n" +"OpenBSD's sndio." msgstr "" -"GNU/MIT Scheme est une implantation du langage de programmation Scheme\= n" -"Il fournit un interpr=C3=A9teur, un compilateur et un d=C3=A9bogueur. I= l int=C3=A8gre\n" -"=C3=A9galement un =C3=A9diteur sur le mod=C3=A8le d'Emacs et une librai= rie d'ex=C3=A9cution compl=C3=A8te." =20 -#: gnu/packages/scheme.scm:208 -msgid "Efficient Scheme compiler" -msgstr "Compilateur Scheme efficace" +#: gnu/packages/xiph.scm:215 +msgid "Free lossless audio codec" +msgstr "" =20 -#: gnu/packages/scheme.scm:210 +#: gnu/packages/xiph.scm:217 msgid "" -"Bigloo is a Scheme implementation devoted to one goal: enabling\n" -"Scheme based programming style where C(++) is usually\n" -"required. Bigloo attempts to make Scheme practical by offering\n" -"features usually presented by traditional programming languages\n" -"but not offered by Scheme and functional programming. Bigloo\n" -"compiles Scheme modules. It delivers small and fast stand alone\n" -"binary executables. Bigloo enables full connections between\n" -"Scheme and C programs and between Scheme and Java programs." +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" +"meaning that audio is compressed in FLAC without any loss in quality." msgstr "" -"Bigloo est une implantation de Scheme tourn=C3=A9e vers un seul but: \n= " -"permettre un style de programmation bas=C3=A9 sur Schema l=C3=A0 o=C3=B9= C(++)\n" -"est g=C3=A9n=C3=A9ralement requis. Bigloo " =20 -#: gnu/packages/scheme.scm:281 -msgid "Multi-tier programming language for the Web 2.0" +#: gnu/packages/xiph.scm:243 +msgid "Karaoke and text codec for embedding in ogg" msgstr "" =20 -#: gnu/packages/scheme.scm:283 +#: gnu/packages/xiph.scm:245 msgid "" -"HOP is a multi-tier programming language for the Web 2.0 and the\n" -"so-called diffuse Web. It is designed for programming interactive web\= n" -"applications in many fields such as multimedia (web galleries, music pl= ayers,\n" -"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" -"mashups, office (web agendas, mail clients, ...), etc." +"Kate is an overlay codec, originally designed for karaoke and text,\n" +"that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" +"stream, and animated. Most of the time, this would be multiplexed with= \n" +"audio/video to carry subtitles, song lyrics (with or without karaoke da= ta),\n" +"etc., but doesn't have to be.\n" +"\n" +"Series of curves (splines, segments, etc.) may be attached to various\n= " +"properties (text position, font size, etc.) to create animated overlays= .\n" +"This allows scrolling or fading text to be defined. This can even be u= sed\n" +"to draw arbitrary shapes, so hand drawing can also be represented by a\= n" +"Kate stream." msgstr "" =20 -#: gnu/packages/scheme.scm:323 -msgid "R5RS Scheme implementation that compiles native code via C" +#: gnu/packages/xiph.scm:279 +msgid "Ogg vorbis tools" msgstr "" =20 -#: gnu/packages/scheme.scm:325 +#: gnu/packages/xiph.scm:281 msgid "" -"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" -"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" -"language standard, and includes many enhancements and extensions." +"Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" +"general-purpose compressed audio format.\n" +"\n" +"The package vorbis-tools contains\n" +"ogg123, an ogg vorbis command line audio player;\n" +"oggenc, the ogg vorbis encoder;\n" +"oggdec, a simple, portable command line decoder (to wav and raw);\n" +"ogginfo, to obtain information (tags, bitrate, length, etc.) about\n" +" an ogg vorbis file." msgstr "" -"CHICKEN est un compilateur pour le langage de programmation Scheme. CHI= CKEN\n" -"produit du C portable et efficace, supporte l'essentiel du standard R5R= S et\n" -"incult de nombreuses am=C3=A9liorations et extensions." =20 -#: gnu/packages/scheme.scm:344 -msgid "Scheme implementation using a bytecode interpreter" -msgstr "Implantation de Scheme utilisanat un interpr=C3=A9teur pour byte= code" +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 +msgid "Versatile audio codec" +msgstr "" =20 -#: gnu/packages/scheme.scm:346 +#: gnu/packages/xiph.scm:308 msgid "" -"Scheme 48 is an implementation of Scheme based on a byte-code\n" -"interpreter and is designed to be used as a testbed for experiments in\= n" -"implementation techniques and as an expository tool." +"Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" +"but is also intended for storage and streaming applications. It is\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" +"incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." msgstr "" -"Scheme 48 est une implantation de Scheme bas=C3=A9e sur un interpr=C3=A9= teur bytecode\n" -"destin=C3=A9e =C3=A0 =C3=AAtre utilis=C3=A9e comme un banc d'essai pour= des exp=C3=A9rimentations\n" -"portant sur des techniques d'implantation et comme un outil d'expositio= n." =20 -#: gnu/packages/scheme.scm:419 -msgid "Implementation of Scheme and related languages" -msgstr "Implantation de Scheme et d'autres langages associ=C3=A9s" +#: gnu/packages/xiph.scm:342 +msgid "Command line utilities to encode, inspect, and decode .opus files= " +msgstr "" =20 -#: gnu/packages/scheme.scm:421 +#: gnu/packages/xiph.scm:343 msgid "" -"Racket is an implementation of the Scheme programming language (R5RS an= d\n" -"R6RS) and related languages, such as Typed Racket. It features a compi= ler and\n" -"a virtual machine with just-in-time native compilation, as well as a la= rge set\n" -"of libraries." +"Opus is a royalty-free, highly versatile audio codec.\n" +"Opus-tools provide command line utilities for creating, inspecting and\= n" +"decoding .opus files." msgstr "" -"Racket est une implantation du langage de programmation Schema (R5RS et= R6RS)\n" -"et de langages associ=C3=A9s comme Typed Racket. Racket fournit un comp= ilateur et\n" -"une machine virtuelle avec compilation =C3=A0 la vol=C3=A9e ainsi qu'un= ensemble de\n" -"biblioth=C3=A8ques." =20 -#: gnu/packages/wordnet.scm:79 -msgid "Lexical database for the English language" -msgstr "Base de donn=C3=A9es lexicale pour la langue anglaise" +#: gnu/packages/xiph.scm:371 +msgid "" +"The opusfile library provides seeking, decode, and playback of Opus\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" +"windows systems." +msgstr "" =20 -#: gnu/packages/wordnet.scm:81 +#: gnu/packages/xiph.scm:401 +#, fuzzy +msgid "Streaming media server" +msgstr "=C3=89diteur de flux" + +#: gnu/packages/xiph.scm:402 msgid "" -"WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" -"adjectives and adverbs are grouped into sets of cognitive synonyms\n" -"(synsets), each expressing a distinct concept. Synsets are interlinked= by\n" -"means of conceptual-semantic and lexical relations. The resulting netw= ork of\n" -"meaningfully related words and concepts can be navigated with the brows= er.\n" -"WordNet is also freely and publicly available for download. WordNet's\= n" -"structure makes it a useful tool for computational linguistics and natu= ral\n" -"language processing." +"Icecast is a streaming media server which currently supports\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" +"create an Internet radio station or a privately running jukebox and man= y\n" +"things in between." +msgstr "" + +#: gnu/packages/xiph.scm:430 +msgid "Audio streaming library for icecast encoders" +msgstr "" + +#: gnu/packages/xiph.scm:432 +msgid "" +"Libshout is a library for communicating with and sending data to an\n" +"icecast server. It handles the socket connection, the timing of the da= ta,\n" +"and prevents bad data from getting to the icecast server." msgstr "" -"WordNet=C2=AE est une vaste base de donn=C3=A9es pour la langue anglais= e. Noms, verbes,\n" -"adjectifs et adverbes sont regoup=C3=A9s en" =20 -#: gnu/packages/zip.scm:56 +#: gnu/packages/zip.scm:57 msgid "Compression and file packing utility" msgstr "Utilitaire de compression et de paquetage de fichiers" =20 -#: gnu/packages/zip.scm:58 +#: gnu/packages/zip.scm:59 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful= \n" "for packaging a set of files for distribution, for archiving files, and= for\n" @@ -1491,28 +11837,33 @@ msgid "" "directory structure can be packed into a ZIP archive with a single comm= and.\n" "\n" "Zip has one compression method (deflation) and can also store files wit= hout\n" -"compression. Zip automatically chooses the better of the two for each = file.\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -"Zip est un utilitaire de compression et de paquetage/archivage. Zip est= utile\n" +"Zip est un utilitaire de compression et de paquetage/archivage. Zip est= " +"utile\n" "pour regrouper des fichiers =C3=A0 distribuer, pour archiver ou pour ga= gner\n" "temporairement de l'espace sur le disque en compressant des fichiers ou= \n" "r=C3=A9pertoires inutilis=C3=A9s. Zip compresse un ou plusieurs fichier= s en une seule\n" "archive ZIP tout en concervant certaines informations (nom, chemin, dat= e de\n" "derni=C3=A8re modification, protection et contr=C3=B4le d'int=C3=A9grit= =C3=A9). Un r=C3=A9pertoire\n" -"et tout son contenu peuvent =C3=AAtre convertis en une archive ZIP =C3=A0= l'aide d'une\n" +"et tout son contenu peuvent =C3=AAtre convertis en une archive ZIP =C3=A0= l'aide " +"d'une\n" "seule commande. \n" "\n" -"Zip poss=C3=A8de une m=C3=A9thode de compression (deflation) et peut au= ssi stocker des\n" -"fichiers sans les compresser. Zip choisit la meilleure des deux possibi= lit=C3=A9s\n" +"Zip poss=C3=A8de une m=C3=A9thode de compression (deflation) et peut au= ssi stocker " +"des\n" +"fichiers sans les compresser. Zip choisit la meilleure des deux " +"possibilit=C3=A9s\n" "pour chaque fichier.Des ratios de compression de 2 =C3=A0 3 sont g=C3=A9= n=C3=A9ralement\n" "atteignables pour les fichiers texte." =20 -#: gnu/packages/zip.scm:98 +#: gnu/packages/zip.scm:113 msgid "Decompression and file extraction utility" msgstr "Utilitaire de d=C3=A9compression et d'extraction de fichiers" =20 -#: gnu/packages/zip.scm:100 +#: gnu/packages/zip.scm:115 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\= n" "also called \"zipfiles\".\n" @@ -1524,36 +11875,32 @@ msgid "" msgstr "" "UnZip est un utilitaire d'extraction pour les archives compress=C3=A9es= \n" "au format .zip.\n" -"Unzip liste, teste ou extrait des fichiers depuis une archive .zip. Par= d=C3=A9faut\n" +"Unzip liste, teste ou extrait des fichiers depuis une archive .zip. Par= " +"d=C3=A9faut\n" "(aucune option fournie), Unzip extrait les fichiers de l'archive\n" -"vers le r=C3=A9pertoire courant et ses sous-r=C3=A9pertoires. Unzip rec= r=C3=A9e par d=C3=A9faut la\n" +"vers le r=C3=A9pertoire courant et ses sous-r=C3=A9pertoires. Unzip rec= r=C3=A9e par d=C3=A9faut " +"la\n" "structure des r=C3=A9pertoires contenus dans l'archive." =20 -#: gnu/packages/zip.scm:134 +#: gnu/packages/zip.scm:149 msgid "Library for accessing zip files" msgstr "Biblioth=C3=A8que de manipulation des fichiers zip" =20 -#: gnu/packages/zip.scm:136 +#: gnu/packages/zip.scm:151 msgid "ZZipLib is a library based on zlib for accessing zip files." -msgstr "ZZipLib est une biblioth=C3=A8que bas=C3=A9e sur zlip pour la ma= nipulation de fichiers zip." +msgstr "" +"ZZipLib est une biblioth=C3=A8que bas=C3=A9e sur zlip pour la manipulat= ion de fichiers " +"zip." =20 -#: gnu/packages/zip.scm:154 +#: gnu/packages/zip.scm:169 msgid "Provides an interface to ZIP archive files" msgstr "Fournit une interface pour les archives ZIP" =20 -#: gnu/packages/zip.scm:155 -msgid "" -"The Archive::Zip module allows a Perl program to create,\n" -"manipulate, read, and write Zip archive files." -msgstr "" -"Le module Archive::Zip permet =C3=A0 un programme Perl de cr=C3=A9er,\n= " -"manipuler, lire et =C3=A9crire des archives Zip." - -#: gnu/packages/zsh.scm:63 +#: gnu/packages/zsh.scm:71 msgid "Powerful shell for interactive use and scripting" msgstr "Shell puissant pour un usage interactif et l'=C3=A9criture de sc= ripts" =20 -#: gnu/packages/zsh.scm:64 +#: gnu/packages/zsh.scm:72 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -1562,6 +11909,19 @@ msgid "" "ksh, and tcsh." msgstr "" "Le Z shell (zsh) est un shell Unix pouvant =C3=AAtre utilis=C3=A9 comme= un shell\n" -"interactif de connexion et un puissant interpr=C3=A9teur de commande po= ur l'=C3=A9criture de scripts\n" -"shell. Zsh peut =C3=AAtre vu comme un Bourn shell =C3=A9tendu dot=C3=A9= de nombreuses am=C3=A9liorations\n" +"interactif de connexion et un puissant interpr=C3=A9teur de commande po= ur " +"l'=C3=A9criture de scripts\n" +"shell. Zsh peut =C3=AAtre vu comme un Bourn shell =C3=A9tendu dot=C3=A9= de nombreuses " +"am=C3=A9liorations\n" "et incluant certaines fonctionnalit=C3=A9s de bash, ksh et tcsh." + +#~ msgid "" +#~ "Guile-Charting is a Guile Scheme library to create bar charts and gr= aphs\n" +#~ "using the Cairo drawing library." +#~ msgstr "" +#~ "Guile-Charting est une biblioth=C3=A8que pour Guile permettant de cr= =C3=A9er des " +#~ "diagrammes\n" +#~ "en barre et des graphiques utilisant la biblioth=C3=A8que de dessin = Cairo." + +#~ msgid "Util-linux is a random collection of utilities for the Linux k= ernel." +#~ msgstr "Util-linux est une collection d'utilitaires pour le noyau Lin= ux." diff --git a/po/packages/hu.po b/po/packages/hu.po index f03c0af..71d12e0 100644 --- a/po/packages/hu.po +++ b/po/packages/hu.po @@ -3,11 +3,12 @@ # This file is distributed under the same license as the guix package. # # Bal=C3=A1zs =C3=9Ar , 2014. +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix-packages 0.8\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-11-10 15:37+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2014-12-03 21:17+0100\n" "Last-Translator: Bal=C3=A1zs =C3=9Ar \n" "Language-Team: Hungarian \n" @@ -18,1189 +19,11345 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Lokalize 1.5\n" =20 -#: gnu/packages/aspell.scm:42 +#: gnu/packages/abiword.scm:101 +msgid "Word processing program" +msgstr "" + +#. TRANSLATORS: Dear translator, We would like to inform you that packag= e +#. descriptions may occasionally include Texinfo markup. Texinfo markup +#. looks like "@code{rm -rf}", "@emph{important}", etc. When translatin= g, +#. please leave markup as is. +#: gnu/packages/abiword.scm:110 +msgid "" +"AbiWord is a word processing program. It is rapidly\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" +"your daily work, personal needs, or for just some good old typing fun." +msgstr "" + +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 msgid "Spell checker" msgstr "Helyes=C3=ADr=C3=A1s-ellen=C5=91rz=C5=91" =20 -#: gnu/packages/aspell.scm:44 +#: gnu/packages/aspell.scm:55 msgid "" "Aspell is a spell-checker which can be used either as a library or as\n= " -"a standalone program. Notable features of Aspell include its full supp= ort of\n" +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" "documents written in the UTF-8 encoding and its ability to use multiple= \n" "dictionaries, including personal ones." msgstr "" =20 -#: gnu/packages/aspell.scm:84 +#: gnu/packages/aspell.scm:95 msgid "This package provides a dictionary for the GNU Aspell spell check= er." -msgstr "Ez a csomag egy sz=C3=B3t=C3=A1rat biztos=C3=ADt a GNU Aspell he= lyes=C3=ADr=C3=A1s-ellen=C5=91rz=C5=91h=C3=B6z." - -#: gnu/packages/backup.scm:87 -msgid "Encrypted backup using rsync algorithm" -msgstr "Titkos=C3=ADtott biztons=C3=A1gi ment=C3=A9s az rsync algoritmus= haszn=C3=A1lat=C3=A1val" - -#: gnu/packages/backup.scm:89 -msgid "" -"Duplicity backs up directories by producing encrypted tar-format volume= s\n" -"and uploading them to a remote or local file server. Because duplicity= uses\n" -"librsync, the incremental archives are space efficient and only record = the\n" -"parts of files that have changed since the last backup. Because duplic= ity\n" -"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" -"spying and/or modification by the server." msgstr "" +"Ez a csomag egy sz=C3=B3t=C3=A1rat biztos=C3=ADt a GNU Aspell helyes=C3= =ADr=C3=A1s-ellen=C5=91rz=C5=91h=C3=B6z." =20 -#: gnu/packages/backup.scm:123 -msgid "Simple incremental backup tool" -msgstr "Egyszer=C5=B1 n=C3=B6vekm=C3=A9nyes biztons=C3=A1gi ment=C3=A9s = eszk=C3=B6z" +#: gnu/packages/audio.scm:95 +msgid "Realtime modular synthesizer and effect processor" +msgstr "" =20 -#: gnu/packages/backup.scm:125 +#: gnu/packages/audio.scm:97 msgid "" -"Hdup2 is a backup utilty, its aim is to make backup really simple. The= \n" -"backup scheduling is done by means of a cron job. It supports an\n" -"include/exclude mechanism, remote backups, encrypted backups and split\= n" -"backups (called chunks) to allow easy burning to CD/DVD." +"AlsaModularSynth is a digital implementation of a classical analog\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" +"e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" +"Filter) modules follow the convention of 1V / Octave." msgstr "" =20 -#: gnu/packages/backup.scm:178 -msgid "Multi-format archive and compression library" +#: gnu/packages/audio.scm:134 +msgid "Library for audio labelling" msgstr "" =20 -#: gnu/packages/backup.scm:180 +#: gnu/packages/audio.scm:136 msgid "" -"Libarchive provides a flexible interface for reading and writing\n" -"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" -"reading and writing archives compressed using various compression filte= rs such\n" -"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" -"serially iterate through the archive, writers serially add things to th= e\n" -"archive. In particular, note that there is currently no built-in suppo= rt for\n" -"random access nor for in-place modification." +"aubio is a tool designed for the extraction of annotations from audio\n= " +"signals. Its features include segmenting a sound file before each of i= ts\n" +"attacks, performing pitch detection, tapping the beat and producing MID= I\n" +"streams from live audio." msgstr "" =20 -#: gnu/packages/backup.scm:243 -msgid "Provide a list of files to backup" +#: gnu/packages/audio.scm:228 +msgid "Digital audio workstation" msgstr "" =20 -#: gnu/packages/backup.scm:245 +#: gnu/packages/audio.scm:230 msgid "" -"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" -"Rdup itself does not backup anything, it only print a list of absolute\= n" -"filenames to standard output. Auxiliary scripts are needed that act on= this\n" -"list and implement the backup strategy." +"Ardour is a multi-channel digital audio workstation, allowing users to\= n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" +"engineers, musicians, soundtrack editors and composers." msgstr "" =20 -#: gnu/packages/backup.scm:275 -msgid "Tar-compatible archiver" -msgstr "Tar-kompatibilis archiv=C3=A1l=C3=B3" +#: gnu/packages/audio.scm:262 +msgid "Tonewheel organ synthesizer" +msgstr "" =20 -#: gnu/packages/backup.scm:277 +#: gnu/packages/audio.scm:264 msgid "" -"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" -"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" -"compression, input and output serialisation, and tolerance to partial a= rchive\n" -"errors." +"AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" +"with drawbars, distortion and rotating speakers. The organ has three\n= " +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" +"bass section with five drawbars. A standalone JACK application and LV2= \n" +"plugins are provided." msgstr "" =20 -#: gnu/packages/backup.scm:305 -msgid "Local/remote mirroring+incremental backup" -msgstr "Helyi/t=C3=A1voli t=C3=BCkr=C3=B6z=C5=91 + n=C3=B6vekm=C3=A9nyes= biztons=C3=A1gi ment=C3=A9s" +#: gnu/packages/audio.scm:301 +msgid "Audio plug-in pack for LV2 and JACK environments" +msgstr "" =20 -#: gnu/packages/backup.scm:307 +#: gnu/packages/audio.scm:303 msgid "" -"Rdiff-backup backs up one directory to another, possibly over a network= .\n" -"The target directory ends up a copy of the source directory, but extra = reverse\n" -"diffs are stored in a special subdirectory of that target directory, so= you\n" -"can still recover files lost some time ago. The idea is to combine the= best\n" -"features of a mirror and an incremental backup. Rdiff-backup also pres= erves\n" -"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" -"modification times, extended attributes, acls, and resource forks. Als= o,\n" -"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" -"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive up\n" -"to a remote location, and only the differences will be transmitted. Fi= nally,\n" -"rdiff-backup is easy to use and settings have sensical defaults." +"Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" +"The suite contains lots of effects (delay, modulation, signal processin= g,\n" +"filters, equalizers, dynamics, distortion and mastering effects),\n" +"instruments (SF2 player, organ simulator and a monophonic synthesizer) = and\n" +"tools (analyzer, mono/stereo tools, crossovers)." msgstr "" =20 -#: gnu/packages/base.scm:56 -msgid "Hello, GNU world: An example GNU package" -msgstr "Hell=C3=B3, GNU vil=C3=A1g: egy p=C3=A9lda GNU csomag" +#: gnu/packages/audio.scm:346 +msgid "Sound and music computing system" +msgstr "" =20 -#: gnu/packages/base.scm:58 +#: gnu/packages/audio.scm:348 msgid "" -"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" -"command-line arguments, multiple languages, and so on." +"Csound is a user-programmable and user-extensible sound processing\n" +"language and software synthesizer." msgstr "" -"A GNU Hell=C3=B3 a =E2=80=9EHell=C3=B3, vil=C3=A1g!=E2=80=9D =C3=BCzene= tet =C3=ADrja ki, majd kil=C3=A9p. Ez a szabv=C3=A1nyos\n" -"GNU k=C3=B3dol=C3=A1si gyakorlatok p=C3=A9ld=C3=A1jak=C3=A9nt szolg=C3=A1= l. Mint olyan, t=C3=A1mogatja a\n" -"parancssori argumentumokat, t=C3=B6bb nyelvet, =C3=A9s =C3=ADgy tov=C3=A1= bb." =20 -#: gnu/packages/base.scm:76 -msgid "Print lines matching a pattern" -msgstr "Egy mint=C3=A1ra illeszked=C5=91 sorok ki=C3=ADr=C3=A1sa" +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 +msgid "C++ wrapper around the ALSA API" +msgstr "" =20 -#: gnu/packages/base.scm:78 +#: gnu/packages/audio.scm:393 msgid "" -"grep is a tool for finding text inside files. Text is found by\n" -"matching a pattern provided by the user in one or many files. The patt= ern\n" -"may be provided as a basic or extended regular expression, or as fixed\= n" -"strings. By default, the matching text is simply printed to the screen= ,\n" -"however the output can be greatly customized to include, for example, l= ine\n" -"numbers. GNU grep offers many extensions over the standard utility,\n" -"including, for example, recursive directory searching." +"clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" +"ALSA PCM devices." msgstr "" -"A grep a f=C3=A1jlokon bel=C3=BCli sz=C3=B6veg keres=C3=A9s=C3=A9re szo= lg=C3=A1l=C3=B3 eszk=C3=B6z. A sz=C3=B6veg a\n" -"felhaszn=C3=A1l=C3=B3 =C3=A1ltal megadott mint=C3=A1kra illeszkedve tal= =C3=A1lhat=C3=B3 meg egy vagy t=C3=B6bb\n" -"f=C3=A1jlban. A minta megadhat=C3=B3 alap vagy kiterjesztett regul=C3=A1= ris kifejez=C3=A9sk=C3=A9nt,\n" -"illetve r=C3=B6gz=C3=ADtett sz=C3=B6vegk=C3=A9nt. Alap=C3=A9rtelmezette= n az illeszked=C5=91 sz=C3=B6veg\n" -"egyszer=C5=B1en ki=C3=ADr=C3=A1sra ker=C3=BCl a k=C3=A9perny=C5=91re, v= iszont a kimenet nagym=C3=A9rt=C3=A9kben\n" -"testre szabhat=C3=B3 a be=C3=A1gyaz=C3=A1shoz, p=C3=A9ld=C3=A1ul sorok = sz=C3=A1moz=C3=A1s=C3=A1hoz. A GNU grep sz=C3=A1mos\n" -"kiterjeszt=C3=A9st ny=C3=BAjt a szabv=C3=A1nyos seg=C3=A9dprogramokon t= =C3=BAl, bele=C3=A9rtve p=C3=A9ld=C3=A1ul a\n" -"rekurz=C3=ADv k=C3=B6nyvt=C3=A1rkeres=C3=A9st." =20 -#: gnu/packages/base.scm:100 -msgid "Stream editor" -msgstr "Folyamszerkeszt=C5=91" +#: gnu/packages/audio.scm:428 +msgid "SoundFont synthesizer" +msgstr "" =20 -#: gnu/packages/base.scm:115 +#: gnu/packages/audio.scm:430 msgid "" -"Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" -"is often used for substituting text patterns in a stream. The GNU\n" -"implementation offers several extensions over the standard utility." +"FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" +"device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" +"also play midifiles using a Soundfont." msgstr "" -"A sed egy nem interakt=C3=ADv sz=C3=B6vegfolyam-szerkeszt=C5=91. Sz=C3=B6= veges bemenetet fogad\n" -"egy f=C3=A1jlb=C3=B3l vagy a szabv=C3=A1nyos bemenetr=C5=91l, majd egy = sor sz=C3=B6vegszerkeszt=C3=A9si\n" -"parancsot alkalmaz a folyamon, =C3=A9s ki=C3=ADrja a kimenet=C3=A9t a s= zabv=C3=A1nyos kimenetre.\n" -"Gyakran haszn=C3=A1lj=C3=A1k sz=C3=B6vegmint=C3=A1k helyettes=C3=ADt=C3= =A9s=C3=A9re egy folyamban. A GNU\n" -"megval=C3=B3s=C3=ADt=C3=A1sa sz=C3=A1mos kiterjeszt=C3=A9st ny=C3=BAjt = a szabv=C3=A1nyos seg=C3=A9dprogramokon t=C3=BAl." =20 -#: gnu/packages/base.scm:135 -msgid "Managing tar archives" -msgstr "Tar arch=C3=ADvumok kezel=C3=A9se" +#: gnu/packages/audio.scm:462 +msgid "MPEG-4 and MPEG-2 AAC decoder" +msgstr "" =20 -#: gnu/packages/base.scm:137 +#: gnu/packages/audio.scm:464 msgid "" -"Tar provides the ability to create tar archives, as well as the\n" -"ability to extract, update or list files in an existing archive. It is= \n" -"useful for combining many files into one larger file, while maintaining= \n" -"directory structure and file information such as permissions and\n" -"creation/modification dates. GNU tar offers many extensions over the\n= " -"standard utility." +"FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" +"PS, and DAB+." msgstr "" =20 -#: gnu/packages/base.scm:161 -msgid "Apply differences to originals, with optional backups" +#: gnu/packages/audio.scm:493 +msgid "Signal processing language" msgstr "" =20 -#: gnu/packages/base.scm:163 -msgid "" -"Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" -"files depending on the contents of the diff file. It accepts several\n= " -"different diff formats. It may also be used to revert previously appli= ed\n" -"differences." +#: gnu/packages/audio.scm:495 +msgid "Faust is a programming language for realtime audio signal process= ing." msgstr "" =20 -#: gnu/packages/base.scm:183 -msgid "Comparing and merging files" +#: gnu/packages/audio.scm:530 +msgid "GUS compatible patches for MIDI players" msgstr "" =20 -#: gnu/packages/base.scm:185 +#: gnu/packages/audio.scm:532 msgid "" -"GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" -"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer. \n" -"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" -"interactive means to merge two files." +"FreePats is a project to create a free and open set of GUS compatible\n= " +"patches that can be used with softsynths such as Timidity and WildMidi.= " msgstr "" =20 -#: gnu/packages/base.scm:212 -msgid "Operating on files matching given criteria" +#: gnu/packages/audio.scm:585 +msgid "Virtual guitar amplifier" msgstr "" =20 -#: gnu/packages/base.scm:214 +#: gnu/packages/audio.scm:586 msgid "" -"Findutils supplies the basic file directory searching utilities of the\= n" -"GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" -"used to apply commands with arbitrarily long arguments." +"Guitarix is a virtual guitar amplifier running JACK.\n" +"Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" +"routed separately and deliver a processed stereo-signal via JACK. You = may\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" +"from a simple noise gate to modulation effects like flanger, phaser or\= n" +"auto-wah." msgstr "" =20 -#: gnu/packages/base.scm:264 -msgid "Core GNU utilities (file, text, shell)" +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" msgstr "" =20 -#: gnu/packages/base.scm:266 +#: gnu/packages/audio.scm:634 msgid "" -"GNU Coreutils includes all of the basic command-line tools that are\n" -"expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" -"functionality beyond that which is outlined in the POSIX standard." +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." msgstr "" =20 -#: gnu/packages/base.scm:300 -msgid "Remake files automatically" +#: gnu/packages/audio.scm:678 +msgid "LV2 convolution reverb" msgstr "" =20 -#: gnu/packages/base.scm:302 +#: gnu/packages/audio.scm:680 msgid "" -"Make is a program that is used to control the production of\n" -"executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" -"generated from its source. It has powerful dependency resolution and t= he\n" -"ability to determine when files have to be regenerated after their sour= ces\n" -"change. GNU make offers many powerful extensions over the standard uti= lity." +"IR is a low-latency, real-time, high performance signal convolver\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" +"2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" =20 -#: gnu/packages/base.scm:347 -msgid "Binary utilities: bfd gas gprof ld" +#: gnu/packages/audio.scm:710 +msgid "JACK audio connection kit" msgstr "" =20 -#: gnu/packages/base.scm:349 +#: gnu/packages/audio.scm:712 msgid "" -"GNU Binutils is a collection of tools for working with binary files.\n" -"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" -"Other tools include programs to display binary profiling information, l= ist\n" -"the strings in a binary file, and utilities for working with archives. = The\n" -"\"bfd\" library for working with executable and object formats is also\= n" -"included." +"JACK is a low-latency audio server. It can connect a number of\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" +"in that it has been designed from the ground up to be suitable for\n" +"professional audio work. This means that it focuses on two key areas:\= n" +"synchronous execution of all clients, and low latency operation." msgstr "" =20 -#: gnu/packages/base.scm:491 -msgid "The GNU C Library" +#: gnu/packages/audio.scm:810 +msgid "Simple LV2 host for JACK" msgstr "" =20 -#: gnu/packages/base.scm:493 +#: gnu/packages/audio.scm:812 msgid "" -"Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" -"printf, exit...\n" -"\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" -"with the Linux kernel." +"Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" +"plugins and exposes their ports as JACK ports, essentially making any L= V2\n" +"plugin function as a JACK application." msgstr "" =20 -#: gnu/packages/base.scm:562 -msgid "Database of current and historical time zones" +#: gnu/packages/audio.scm:855 +msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" msgstr "" =20 -#: gnu/packages/base.scm:563 +#: gnu/packages/audio.scm:857 msgid "" -"The Time Zone Database (often called tz or zoneinfo)\n" -"contains code and data that represent the history of local time for man= y\n" -"representative locations around the globe. It is updated periodically = to\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" -"and daylight-saving rules." +"LADSPA is a standard that allows software audio processors and effects\= n" +"to be plugged into a wide range of audio synthesis and recording packag= es." msgstr "" =20 -#: gnu/packages/databases.scm:83 -msgid "Berkeley database" +#: gnu/packages/audio.scm:893 +msgid "Audio application session manager" msgstr "" =20 -#: gnu/packages/databases.scm:85 +#: gnu/packages/audio.scm:895 msgid "" -"Berkeley DB is an embeddable database allowing developers the choice of= \n" -"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +"LASH is a session management system for audio applications. It allows\= n" +"you to save and restore audio sessions consisting of multiple interconn= eced\n" +"applications, restoring program state (i.e. loaded patches) and the\n" +"connections between them." msgstr "" =20 -#: gnu/packages/databases.scm:143 -msgid "Fast, easy to use, and popular database" +#: gnu/packages/audio.scm:916 +msgid "Bauer stereophonic-to-binaural DSP" msgstr "" =20 -#: gnu/packages/databases.scm:145 +#: gnu/packages/audio.scm:918 msgid "" -"MySQL is a fast, reliable, and easy to use relational database\n" -"management system that supports the standardized Structured Query\n" -"Language." +"The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" +"for headphone prolonged listening to disable superstereo fatigue withou= t\n" +"essential distortions." msgstr "" =20 -#: gnu/packages/databases.scm:166 -msgid "Powerful object-relational database system" +#: gnu/packages/audio.scm:943 +msgid "Implementation of the Open Sound Control protocol" msgstr "" =20 -#: gnu/packages/databases.scm:168 +#: gnu/packages/audio.scm:945 msgid "" -"PostgreSQL is a powerful object-relational database system. It is full= y\n" -"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, and\n" -"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" -"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, and\n" -"TIMESTAMP. It also supports storage of binary large objects, including= \n" -"pictures, sounds, or video." +"liblo is a lightweight library that provides an easy to use\n" +"implementation of the Open Sound Control (OSC) protocol." msgstr "" =20 -#: gnu/packages/databases.scm:203 -msgid "Manipulate plain text files as databases" +#: gnu/packages/audio.scm:982 +msgid "Library to simplify use of LV2 plugins in applications" msgstr "" =20 -#: gnu/packages/databases.scm:205 +#: gnu/packages/audio.scm:984 msgid "" -"GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" -"databases created with Recutils carry all of the expected features such= as\n" -"unique fields, primary keys, time stamps and more. Many different fiel= d\n" -"types are supported, as is encryption." +"Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" +"for applications. Lilv is the successor to SLV2, rewritten to be\n" +"significantly faster and have minimal dependencies." msgstr "" =20 -#: gnu/packages/databases.scm:243 -msgid "The SQLite database management system" +#: gnu/packages/audio.scm:1011 +msgid "LV2 audio plugin specification" msgstr "" =20 -#: gnu/packages/databases.scm:245 +#: gnu/packages/audio.scm:1013 msgid "" -"SQLite is a software library that implements a self-contained, serverle= ss,\n" -"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" -"widely deployed SQL database engine in the world. The source code for = SQLite\n" -"is in the public domain." +"LV2 is an open specification for audio plugins and host applications.\n= " +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" +"add functionality to support the needs of increasingly powerful audio\n= " +"software." msgstr "" =20 -#: gnu/packages/databases.scm:280 -msgid "Trivial database" +#: gnu/packages/audio.scm:1048 +msgid "LV2 port of the mda Piano plugin" msgstr "" =20 -#: gnu/packages/databases.scm:282 -msgid "" -"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" -"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" -"locking internally to keep writers from trampling on each other. TDB i= s also\n" -"extremely small." +#: gnu/packages/audio.scm:1049 +msgid "An LV2 port of the mda Piano VSTi." msgstr "" =20 -#: gnu/packages/databases.scm:301 -msgid "Database independent interface for Perl" +#: gnu/packages/audio.scm:1062 +msgid "LV2 port of the mda EPiano plugin" msgstr "" =20 -#: gnu/packages/databases.scm:302 -msgid "This package provides an database interface for Perl." +#: gnu/packages/audio.scm:1063 +msgid "An LV2 port of the mda EPiano VSTi." msgstr "" =20 -#: gnu/packages/databases.scm:321 -msgid "SQlite interface for Perl" +#: gnu/packages/audio.scm:1101 +msgid "C++ libraries for LV2 plugins" msgstr "" =20 -#: gnu/packages/databases.scm:322 +#: gnu/packages/audio.scm:1103 msgid "" -"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" -"the entire thing in the distribution. So in order to get a fast transa= ction\n" -"capable RDBMS working for your Perl project you simply have to install = this\n" -"module, and nothing else." +"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " +"extensions into easy to use C++ classes. It is the successor of\n" +"lv2-c++-tools." msgstr "" =20 -#: gnu/packages/databases.scm:342 -msgid "Data source abstraction library" +#: gnu/packages/audio.scm:1144 +msgid "3D audio API" msgstr "" =20 -#: gnu/packages/databases.scm:343 +#: gnu/packages/audio.scm:1146 msgid "" -"Unixodbc is a library providing an API with which to access\n" -"data sources. Data sources include SQL Servers and any software with a= n ODBC\n" -"Driver." +"OpenAL provides capabilities for playing audio in a virtual 3D\n" +"environment. Distance attenuation, doppler shift, and directional soun= d\n" +"emitters are among the features handled by the API. More advanced effe= cts,\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" +"buffers, and audio capture." msgstr "" =20 -#: gnu/packages/gcc.scm:254 -msgid "GNU Compiler Collection" +#: gnu/packages/audio.scm:1180 +msgid "Modular patch bay for audio and MIDI systems" msgstr "" =20 -#: gnu/packages/gcc.scm:256 +#: gnu/packages/audio.scm:1182 msgid "" -"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" -"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, and\n" -"Go. It also includes runtime support libraries for these languages." +"Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" +"and ALSA." msgstr "" =20 -#: gnu/packages/gcc.scm:340 -msgid "Manipulating sets and relations of integer points bounded by line= ar constraints" +#: gnu/packages/audio.scm:1207 +msgid "Real-time audio utility library" msgstr "" =20 -#: gnu/packages/gcc.scm:343 +#: gnu/packages/audio.scm:1209 msgid "" -"isl is a library for manipulating sets and relations of integer points\= n" -"bounded by linear constraints. Supported operations on sets include\n" -"intersection, union, set difference, emptiness check, convex hull, (int= eger)\n" -"affine hull, integer projection, computing the lexicographic minimum us= ing\n" -"parametric integer programming, coalescing and parametric vertex\n" -"enumeration. It also includes an ILP solver based on generalized basis= \n" -"reduction, transitive closures on maps (which may encode infinite graph= s),\n" -"dependence analysis and bounds on piecewise step-polynomials." +"Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" +"aimed at audio/musical applications." msgstr "" =20 -#: gnu/packages/gcc.scm:375 -msgid "Library to generate code for scanning Z-polyhedra" +#: gnu/packages/audio.scm:1235 +msgid "Audio time-stretching and pitch-shifting library" msgstr "" =20 -#: gnu/packages/gcc.scm:377 +#: gnu/packages/audio.scm:1237 msgid "" -"CLooG is a free software library to generate code for scanning\n" -"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" -"reaches each integral point of one or more parameterized polyhedra.\n" -"CLooG has been originally written to solve the code generation problem\= n" -"for optimizing compilers based on the polytope model. Nevertheless it\= n" -"is used now in various area e.g., to build control automata for\n" -"high-level synthesis or to find the best polynomial approximation of a\= n" -"function. CLooG may help in any situation where scanning polyhedra\n" -"matters. While the user has full control on generated code quality,\n" -"CLooG is designed to avoid control overhead and to produce a very\n" -"effective code." +"Rubber Band is a library and utility program that permits changing the\= n" +"tempo and pitch of an audio recording independently of one another." msgstr "" =20 -#: gnu/packages/gettext.scm:74 -msgid "Tools and documentation for translation" +#: gnu/packages/audio.scm:1285 +msgid "Cross-platform MIDI library for C++" msgstr "" =20 -#: gnu/packages/gettext.scm:76 +#: gnu/packages/audio.scm:1287 msgid "" -"GNU Gettext is a package providing a framework for translating the\n" -"textual output of programs into multiple languages. It provides transl= ators\n" -"with the means to create message catalogs, as well as an Emacs mode to = work\n" -"with them, and a runtime library to load translated messages from the\n= " -"catalogs. Nearly all GNU packages use Gettext." +"RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " +"classes) that provide a common cross-platform API for realtime MIDI\n" +"input/output." msgstr "" =20 -#: gnu/packages/guile.scm:100 gnu/packages/guile.scm:163 -msgid "Scheme implementation intended especially for extensions" +#: gnu/packages/audio.scm:1313 +msgid "Library for serialising LV2 atoms to/from RDF" msgstr "" =20 -#: gnu/packages/guile.scm:102 gnu/packages/guile.scm:165 +#: gnu/packages/audio.scm:1315 msgid "" -"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" -"official extension language of the GNU system. It is an implementation= of\n" -"the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" -"without requiring the source code to be rewritten." +"Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" +"the Turtle syntax." msgstr "" =20 -#: gnu/packages/guile.scm:208 -msgid "Framework for building readers for GNU Guile" +#: gnu/packages/audio.scm:1340 +msgid "Library for loading and wrapping LV2 plugin UIs" msgstr "" =20 -#: gnu/packages/guile.scm:210 +#: gnu/packages/audio.scm:1342 msgid "" -"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" "\n" -"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wr= itten,\n" -"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" -"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" -"document syntax.\n" +"Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" +"toolkit. The API is designed such that hosts do not need to explicitly= \n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" +"that toolkit will work in all hosts that use Suil automatically.\n" "\n" -"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" -"hopefully more powerful and flexible (for instance, one may instantiate= as\n" -"many readers as needed)." +"Suil currently supports every combination of Gtk 2, Qt 4, and X11." msgstr "" =20 -#: gnu/packages/guile.scm:263 -msgid "Guile bindings to ncurses" +#: gnu/packages/audio.scm:1399 +msgid "Software synthesizer for playing MIDI files" msgstr "" =20 -#: gnu/packages/guile.scm:265 +#: gnu/packages/audio.scm:1401 msgid "" -"guile-ncurses provides Guile language bindings for the ncurses\n" -"library." +"TiMidity++ is a software synthesizer. It can play MIDI files by\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" +"disks as various audio file formats." msgstr "" =20 -#: gnu/packages/guile.scm:285 -msgid "Run jobs at scheduled times" +#: gnu/packages/audio.scm:1440 +msgid "Modular and extensible audio processing system" msgstr "" =20 -#: gnu/packages/guile.scm:287 +#: gnu/packages/audio.scm:1442 msgid "" -"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" -"Guile, so its configuration can be written in Scheme; the original cron= \n" -"format is also supported." +"Vamp is an audio processing plugin system for plugins that extract\n" +"descriptive information from audio data =E2=80=94 typically referred to= as audio\n" +"analysis plugins or audio feature extraction plugins." msgstr "" =20 -#: gnu/packages/guile.scm:315 -msgid "Collection of useful Guile Scheme modules" +#: gnu/packages/audio.scm:1481 +msgid "Library for time stretching and pitch scaling of audio" msgstr "" =20 -#: gnu/packages/guile.scm:317 +#: gnu/packages/audio.scm:1483 msgid "" -"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" -"modules, allowing for people to cooperate integrating their generic Gui= le\n" -"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" -"for Guile\"." +"SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" +"stretching and pitch scaling of audio. This package contains the libra= ry." msgstr "" =20 -#: gnu/packages/guile.scm:348 -msgid "JSON module for Guile" +#: gnu/packages/audio.scm:1506 +msgid "Hybrid lossless audio codec" msgstr "" =20 -#: gnu/packages/guile.scm:350 +#: gnu/packages/audio.scm:1508 msgid "" -"Guile-json supports parsing and building JSON documents according to th= e\n" -"http:://json.org specification. These are the main features:\n" -"- Strictly complies to http://json.org specification.\n" -"- Build JSON documents programmatically via macros.\n" -"- Unicode support for strings.\n" -"- Allows JSON pretty printing." +"WavPack is an audio compression format with lossless, lossy and hybrid\= n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" +"encode and decode wavpack files." msgstr "" =20 -#: gnu/packages/guile.scm:381 -msgid "Create charts and graphs in Guile" +#: gnu/packages/audio.scm:1527 +msgid "Mod file playing library" msgstr "" =20 -#: gnu/packages/guile.scm:383 +#: gnu/packages/audio.scm:1529 msgid "" -"Guile-Charting is a Guile Scheme library to create bar charts and graph= s\n" -"using the Cairo drawing library." +"Libmodplug renders mod music files as raw audio data, for playing or\n" +"conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" +"surround and reverb." msgstr "" =20 -#: gnu/packages/inkscape.scm:78 -msgid "Vector graphics editor" +#: gnu/packages/audio.scm:1548 +msgid "Module player library" msgstr "" =20 -#: gnu/packages/inkscape.scm:79 +#: gnu/packages/audio.scm:1550 msgid "" -"Inkscape is a vector graphics editor. What sets Inkscape\n" -"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C st= andard,\n" -"as the native format." +"Libxmp is a library that renders module files to PCM data. It supports= \n" +"over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" +"Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " msgstr "" =20 -#: gnu/packages/linux.scm:131 -msgid "GNU Linux-Libre kernel headers" +#: gnu/packages/audio.scm:1573 +msgid "Extended module player" msgstr "" =20 -#: gnu/packages/linux.scm:132 -msgid "Headers of the Linux-Libre kernel." +#: gnu/packages/audio.scm:1575 +msgid "" +"Xmp is a portable module player that plays over 90 mainstream and\n" +"obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" +"Tracker 3 S3M and Impulse Tracker IT files." msgstr "" =20 -#: gnu/packages/linux.scm:163 -msgid "Tools for loading and managing Linux kernel modules" +#: gnu/packages/audio.scm:1607 +msgid "Audio processing library for changing tempo, pitch and playback r= ate" msgstr "" =20 -#: gnu/packages/linux.scm:165 +#: gnu/packages/audio.scm:1609 msgid "" -"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" -"`insmod', `lsmod', and more." +"SoundTouch is an audio processing library for changing the tempo, pitch= \n" +"and playback rates of audio streams or audio files. It is intended for= \n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" +"control functionality, or just for playing around with the sound effect= s." msgstr "" =20 -#: gnu/packages/linux.scm:296 -msgid "100% free redistribution of a cleaned Linux kernel" +#: gnu/packages/audio.scm:1646 +msgid "Sound processing utility" msgstr "" =20 -#: gnu/packages/linux.scm:298 +#: gnu/packages/audio.scm:1648 msgid "" -"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" -"It has been modified to remove all non-free binary blobs." +"SoX (Sound eXchange) is a command line utility that can convert\n" +"various formats of computer audio files to other formats. It can also\= n" +"apply various effects to these sound files, and, as an added bonus, SoX= \n" +"can play and record audio files." msgstr "" =20 -#: gnu/packages/linux.scm:341 -msgid "Pluggable authentication modules for Linux" +#: gnu/packages/audio.scm:1671 +msgid "One-dimensional sample-rate conversion library" msgstr "" =20 -#: gnu/packages/linux.scm:343 +#: gnu/packages/audio.scm:1673 msgid "" -"A *Free* project to implement OSF's RFC 86.0.\n" -"Pluggable authentication modules are small shared object files that can= \n" -"be used through the PAM API to perform tasks, like authenticating a use= r\n" -"at login. Local and dynamic reconfiguration are its key features" +"The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" +"conversion. It may be used, for example, to resample PCM-encoded audio= ." msgstr "" =20 -#: gnu/packages/linux.scm:370 -msgid "Small utilities that use the proc filesystem" +#: gnu/packages/audio.scm:1695 +msgid "MPEG Audio Layer 2 (MP2) encoder" msgstr "" =20 -#: gnu/packages/linux.scm:372 +#: gnu/packages/audio.scm:1697 msgid "" -"This PSmisc package is a set of some small useful utilities that\n" -"use the proc filesystem. We're not about changing the world, but\n" -"providing the system administrator with some help in common tasks." +"TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" +"tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" +"portions of LAME." msgstr "" =20 -#: gnu/packages/linux.scm:416 -msgid "Collection of utilities for the Linux kernel" +#: gnu/packages/audio.scm:1737 +msgid "Audio I/O library" msgstr "" =20 -#: gnu/packages/linux.scm:418 -msgid "Util-linux is a random collection of utilities for the Linux kern= el." +#: gnu/packages/audio.scm:1739 +msgid "" +"PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" +"interface." msgstr "" =20 -#: gnu/packages/linux.scm:472 -msgid "Utilities that give information about processes" +#: gnu/packages/audio.scm:1762 +msgid "Graphical user interface for FluidSynth" msgstr "" =20 -#: gnu/packages/linux.scm:474 +#: gnu/packages/audio.scm:1764 msgid "" -"Procps is the package that has a bunch of small useful utilities\n" -"that give information about processes using the Linux /proc file system= .\n" -"The package includes the programs ps, top, vmstat, w, kill, free,\n" -"slabtop, and skill." +"Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" +"synthesizer written in C++." +msgstr "" + +#: gnu/packages/audio.scm:1802 +msgid "Networked audio system" +msgstr "" + +#: gnu/packages/audio.scm:1804 +msgid "" +"RSound allows you to send audio from an application and transfer it\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" +"with a much different focus than most other audio daemons." +msgstr "" + +#: gnu/packages/audio.scm:1835 +msgid "JACK audio frequency analyzer and display" +msgstr "" + +#: gnu/packages/audio.scm:1837 +msgid "" +"XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" +"result." +msgstr "" + +#: gnu/packages/audio.scm:1883 +msgid "Fast, partitioned convolution engine library" +msgstr "" + +#: gnu/packages/audio.scm:1885 +msgid "" +"Zita convolver is a C++ library providing a real-time convolution\n" +"engine." +msgstr "" + +#: gnu/packages/audio.scm:1930 +msgid "C++ library for resampling audio signals" +msgstr "" + +#: gnu/packages/audio.scm:1932 +msgid "" +"Libzita-resampler is a C++ library for resampling audio signals. It is= \n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" +"provide high-quality sample rate conversion." +msgstr "" + +#: gnu/packages/audio.scm:1978 +msgid "" +"Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" +"access to ALSA PCM devices, taking care of the many functions required = to\n" +"open, initialise and use a hw: device in mmap mode, and providing float= ing\n" +"point audio data." +msgstr "" + +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" + +#: gnu/packages/audio.scm:2010 +msgid "" +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." +msgstr "" + +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" + +#: gnu/packages/audio.scm:2030 +msgid "" +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 +msgid "Encrypted backup using rsync algorithm" +msgstr "Titkos=C3=ADtott biztons=C3=A1gi ment=C3=A9s az rsync algoritmus= haszn=C3=A1lat=C3=A1val" + +#: gnu/packages/backup.scm:94 +msgid "" +"Duplicity backs up directories by producing encrypted tar-format volume= s\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" +"librsync, the incremental archives are space efficient and only record = the\n" +"parts of files that have changed since the last backup. Because duplic= ity\n" +"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" +"spying and/or modification by the server." +msgstr "" + +#: gnu/packages/backup.scm:128 +msgid "Simple incremental backup tool" +msgstr "Egyszer=C5=B1 n=C3=B6vekm=C3=A9nyes biztons=C3=A1gi ment=C3=A9s = eszk=C3=B6z" + +#: gnu/packages/backup.scm:130 +msgid "" +"Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" +"backup scheduling is done by means of a cron job. It supports an\n" +"include/exclude mechanism, remote backups, encrypted backups and split\= n" +"backups (called chunks) to allow easy burning to CD/DVD." +msgstr "" + +#: gnu/packages/backup.scm:185 +msgid "Multi-format archive and compression library" +msgstr "" + +#: gnu/packages/backup.scm:187 +msgid "" +"Libarchive provides a flexible interface for reading and writing\n" +"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" +"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" +"serially iterate through the archive, writers serially add things to th= e\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" +"random access nor for in-place modification." +msgstr "" + +#: gnu/packages/backup.scm:250 +msgid "Provide a list of files to backup" +msgstr "" + +#: gnu/packages/backup.scm:252 +msgid "" +"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" +"Rdup itself does not backup anything, it only print a list of absolute\= n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" +"list and implement the backup strategy." +msgstr "" + +#: gnu/packages/backup.scm:282 +msgid "Tar-compatible archiver" +msgstr "Tar-kompatibilis archiv=C3=A1l=C3=B3" + +#: gnu/packages/backup.scm:284 +msgid "" +"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" +"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" +"errors." +msgstr "" + +#: gnu/packages/backup.scm:312 +msgid "Local/remote mirroring+incremental backup" +msgstr "Helyi/t=C3=A1voli t=C3=BCkr=C3=B6z=C5=91 + n=C3=B6vekm=C3=A9nyes= biztons=C3=A1gi ment=C3=A9s" + +#: gnu/packages/backup.scm:314 +msgid "" +"Rdiff-backup backs up one directory to another, possibly over a network= .\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" +"diffs are stored in a special subdirectory of that target directory, so= you\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" +"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" +"modification times, extended attributes, acls, and resource forks. Als= o,\n" +"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" +"rdiff-backup is easy to use and settings have sensible defaults." +msgstr "" + +#: gnu/packages/backup.scm:353 +msgid "Deduplicating backup program" +msgstr "" + +#: gnu/packages/backup.scm:354 +msgid "" +"Attic is a deduplicating backup program. The main goal of\n" +"Attic is to provide an efficient and secure way to backup data. The da= ta\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" +"changes are stored." +msgstr "" + +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 +msgid "Hello, GNU world: An example GNU package" +msgstr "Hell=C3=B3, GNU vil=C3=A1g: egy p=C3=A9lda GNU csomag" + +#: gnu/packages/base.scm:68 +msgid "" +"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" +"command-line arguments, multiple languages, and so on." +msgstr "" +"A GNU Hell=C3=B3 a =E2=80=9EHell=C3=B3, vil=C3=A1g!=E2=80=9D =C3=BCzene= tet =C3=ADrja ki, majd kil=C3=A9p. Ez a szabv=C3=A1nyos\n" +"GNU k=C3=B3dol=C3=A1si gyakorlatok p=C3=A9ld=C3=A1jak=C3=A9nt szolg=C3=A1= l. Mint olyan, t=C3=A1mogatja a\n" +"parancssori argumentumokat, t=C3=B6bb nyelvet, =C3=A9s =C3=ADgy tov=C3=A1= bb." + +#: gnu/packages/base.scm:89 +msgid "Print lines matching a pattern" +msgstr "Egy mint=C3=A1ra illeszked=C5=91 sorok ki=C3=ADr=C3=A1sa" + +#: gnu/packages/base.scm:91 +msgid "" +"grep is a tool for finding text inside files. Text is found by\n" +"matching a pattern provided by the user in one or many files. The patt= ern\n" +"may be provided as a basic or extended regular expression, or as fixed\= n" +"strings. By default, the matching text is simply printed to the screen= ,\n" +"however the output can be greatly customized to include, for example, l= ine\n" +"numbers. GNU grep offers many extensions over the standard utility,\n" +"including, for example, recursive directory searching." +msgstr "" +"A grep a f=C3=A1jlokon bel=C3=BCli sz=C3=B6veg keres=C3=A9s=C3=A9re szo= lg=C3=A1l=C3=B3 eszk=C3=B6z. A sz=C3=B6veg a\n" +"felhaszn=C3=A1l=C3=B3 =C3=A1ltal megadott mint=C3=A1kra illeszkedve tal= =C3=A1lhat=C3=B3 meg egy vagy t=C3=B6bb\n" +"f=C3=A1jlban. A minta megadhat=C3=B3 alap vagy kiterjesztett regul=C3=A1= ris kifejez=C3=A9sk=C3=A9nt,\n" +"illetve r=C3=B6gz=C3=ADtett sz=C3=B6vegk=C3=A9nt. Alap=C3=A9rtelmezette= n az illeszked=C5=91 sz=C3=B6veg\n" +"egyszer=C5=B1en ki=C3=ADr=C3=A1sra ker=C3=BCl a k=C3=A9perny=C5=91re, v= iszont a kimenet nagym=C3=A9rt=C3=A9kben\n" +"testre szabhat=C3=B3 a be=C3=A1gyaz=C3=A1shoz, p=C3=A9ld=C3=A1ul sorok = sz=C3=A1moz=C3=A1s=C3=A1hoz. A GNU grep " +"sz=C3=A1mos\n" +"kiterjeszt=C3=A9st ny=C3=BAjt a szabv=C3=A1nyos seg=C3=A9dprogramokon t= =C3=BAl, bele=C3=A9rtve p=C3=A9ld=C3=A1ul a\n" +"rekurz=C3=ADv k=C3=B6nyvt=C3=A1rkeres=C3=A9st." + +#: gnu/packages/base.scm:114 +msgid "Stream editor" +msgstr "Folyamszerkeszt=C5=91" + +#: gnu/packages/base.scm:129 +msgid "" +"Sed is a non-interactive, text stream editor. It receives a text\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" +"is often used for substituting text patterns in a stream. The GNU\n" +"implementation offers several extensions over the standard utility." +msgstr "" +"A sed egy nem interakt=C3=ADv sz=C3=B6vegfolyam-szerkeszt=C5=91. Sz=C3=B6= veges bemenetet fogad\n" +"egy f=C3=A1jlb=C3=B3l vagy a szabv=C3=A1nyos bemenetr=C5=91l, majd egy = sor sz=C3=B6vegszerkeszt=C3=A9si\n" +"parancsot alkalmaz a folyamon, =C3=A9s ki=C3=ADrja a kimenet=C3=A9t a s= zabv=C3=A1nyos " +"kimenetre.\n" +"Gyakran haszn=C3=A1lj=C3=A1k sz=C3=B6vegmint=C3=A1k helyettes=C3=ADt=C3= =A9s=C3=A9re egy folyamban. A GNU\n" +"megval=C3=B3s=C3=ADt=C3=A1sa sz=C3=A1mos kiterjeszt=C3=A9st ny=C3=BAjt = a szabv=C3=A1nyos seg=C3=A9dprogramokon t=C3=BAl." + +#: gnu/packages/base.scm:152 +msgid "Managing tar archives" +msgstr "Tar arch=C3=ADvumok kezel=C3=A9se" + +#: gnu/packages/base.scm:154 +msgid "" +"Tar provides the ability to create tar archives, as well as the\n" +"ability to extract, update or list files in an existing archive. It is= \n" +"useful for combining many files into one larger file, while maintaining= \n" +"directory structure and file information such as permissions and\n" +"creation/modification dates. GNU tar offers many extensions over the\n= " +"standard utility." +msgstr "" + +#: gnu/packages/base.scm:177 +msgid "Apply differences to originals, with optional backups" +msgstr "" + +#: gnu/packages/base.scm:179 +msgid "" +"Patch is a program that applies changes to files based on differences\n= " +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" +"files depending on the contents of the diff file. It accepts several\n= " +"different diff formats. It may also be used to revert previously appli= ed\n" +"differences." +msgstr "" + +#: gnu/packages/base.scm:199 +msgid "Comparing and merging files" +msgstr "" + +#: gnu/packages/base.scm:201 +msgid "" +"GNU Diffutils is a package containing tools for finding the\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" +"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" +"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" +"interactive means to merge two files." +msgstr "" + +#: gnu/packages/base.scm:234 +msgid "Operating on files matching given criteria" +msgstr "" + +#: gnu/packages/base.scm:236 +msgid "" +"Findutils supplies the basic file directory searching utilities of the\= n" +"GNU system. It consists of two primary searching utilities: \"find\"\n= " +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" +"used to apply commands with arbitrarily long arguments." +msgstr "" + +#: gnu/packages/base.scm:300 +msgid "Core GNU utilities (file, text, shell)" +msgstr "" + +#: gnu/packages/base.scm:302 +msgid "" +"GNU Coreutils includes all of the basic command-line tools that are\n" +"expected in a POSIX system. These provide the basic file, shell and te= xt\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" +"functionality beyond that which is outlined in the POSIX standard." +msgstr "" + +#: gnu/packages/base.scm:344 +msgid "Remake files automatically" +msgstr "" + +#: gnu/packages/base.scm:346 +msgid "" +"Make is a program that is used to control the production of\n" +"executables or other files from their source files. The process is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" +"generated from its source. It has powerful dependency resolution and t= he\n" +"ability to determine when files have to be regenerated after their sour= ces\n" +"change. GNU make offers many powerful extensions over the standard uti= lity." +msgstr "" + +#: gnu/packages/base.scm:391 +msgid "Binary utilities: bfd gas gprof ld" +msgstr "" + +#: gnu/packages/base.scm:393 +msgid "" +"GNU Binutils is a collection of tools for working with binary files.\n" +"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" +"Other tools include programs to display binary profiling information, l= ist\n" +"the strings in a binary file, and utilities for working with archives. = The\n" +"\"bfd\" library for working with executable and object formats is also\= n" +"included." +msgstr "" + +#: gnu/packages/base.scm:458 +msgid "The linker wrapper" +msgstr "" + +#: gnu/packages/base.scm:460 +msgid "" +"The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" +"store." +msgstr "" + +#: gnu/packages/base.scm:637 +msgid "The GNU C Library" +msgstr "" + +#: gnu/packages/base.scm:639 +msgid "" +"Any Unix-like operating system needs a C library: the library which\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" +"printf, exit...\n" +"\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" +"with the Linux kernel." +msgstr "" + +#: gnu/packages/base.scm:670 +msgid "All the locales supported by the GNU C Library" +msgstr "" + +#: gnu/packages/base.scm:672 +msgid "" +"This package provides all the locales supported by the GNU C Library,\n= " +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" +"the 'share/locale' sub-directory of this package." +msgstr "" + +#: gnu/packages/base.scm:740 +msgid "Small sample of UTF-8 locales" +msgstr "" + +#: gnu/packages/base.scm:742 +msgid "" +"This package provides a small sample of UTF-8 locales mostly useful in\= n" +"test environments." +msgstr "" + +#: gnu/packages/base.scm:760 +msgid "Find full path of shell commands" +msgstr "" + +#: gnu/packages/base.scm:762 +msgid "" +"The which program finds the location of executables in PATH, with a\n" +"variety of options. It is an alternative to the shell \"type\" built-i= n\n" +"command." +msgstr "" + +#: gnu/packages/base.scm:832 +msgid "The GNU C Library (GNU Hurd variant)" +msgstr "" + +#: gnu/packages/base.scm:934 +msgid "Database of current and historical time zones" +msgstr "" + +#: gnu/packages/base.scm:935 +msgid "" +"The Time Zone Database (often called tz or zoneinfo)\n" +"contains code and data that represent the history of local time for man= y\n" +"representative locations around the globe. It is updated periodically = to\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" +"and daylight-saving rules." +msgstr "" + +#: gnu/packages/bittorrent.scm:90 +msgid "Fast and easy BitTorrent client" +msgstr "" + +#: gnu/packages/bittorrent.scm:92 +msgid "" +"Transmission is a BitTorrent client that comes with graphical,\n" +"textual, and Web user interfaces. Transmission also has a daemon for\n= " +"unattended operations. It supports local peer discovery, full encrypti= on,\n" +"DHT, =C2=B5TP, PEX and Magnet Links." +msgstr "" + +#: gnu/packages/bittorrent.scm:124 +msgid "BitTorrent library of rtorrent" +msgstr "" + +#: gnu/packages/bittorrent.scm:126 +msgid "" +"LibTorrent is a BitTorrent library used by and developed in parallel\n" +"with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" +"speed and efficiency." +msgstr "" + +#: gnu/packages/bittorrent.scm:153 +msgid "BitTorrent client with ncurses interface" +msgstr "" + +#: gnu/packages/bittorrent.scm:155 +msgid "" +"rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" +"full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" +"XML-RPC over SCGI." +msgstr "" + +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + +#: gnu/packages/certs.scm:65 +msgid "Python script to extract .pem data from certificate collection" +msgstr "" + +#: gnu/packages/certs.scm:67 +msgid "" +"certdata2pem.py is a Python script to transform X.509 certificate\n" +"\"source code\" as contained, for example, in the Mozilla sources, into= \n" +".pem formatted certificates." +msgstr "" + +#: gnu/packages/certs.scm:124 +msgid "CA certificates from Mozilla" +msgstr "" + +#: gnu/packages/certs.scm:126 +msgid "" +"This package provides certificates for Certification Authorities (CA)\n= " +"taken from the NSS package and thus ultimately from the Mozilla project= ." +msgstr "" + +#: gnu/packages/compression.scm:75 +msgid "Compression library" +msgstr "" + +#: gnu/packages/compression.scm:77 +msgid "" +"zlib is designed to be a free, general-purpose, legally unencumbered --= \n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" +"use on virtually any computer hardware and operating system. The zlib = data\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" +"triple the file size in extreme cases.) zlib's memory footprint is als= o\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" +"in compression." +msgstr "" + +#: gnu/packages/compression.scm:102 +msgid "Replacement for Sun's 'jar' utility" +msgstr "" + +#: gnu/packages/compression.scm:104 +msgid "" +"FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" +"utility. Instead of being written in Java, FastJar is written in C." +msgstr "" + +#: gnu/packages/compression.scm:122 +msgid "C library for manipulating POSIX tar files" +msgstr "" + +#: gnu/packages/compression.scm:124 +msgid "" +"libtar is a C library for manipulating POSIX tar files. It handles\n" +"adding and extracting files to/from a tar archive." +msgstr "" + +#: gnu/packages/compression.scm:141 +msgid "General file (de)compression (using lzw)" +msgstr "" + +#: gnu/packages/compression.scm:146 +msgid "" +"GNU Gzip provides data compression and decompression utilities; the\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" +"\".tar.gz\" or \".tgz\", etc." +msgstr "" + +#: gnu/packages/compression.scm:222 +msgid "High-quality data compression program" +msgstr "" + +#: gnu/packages/compression.scm:224 +msgid "" +"bzip2 is a freely available, patent free (see below), high-quality data= \n" +"compressor. It typically compresses files to within 10% to 15% of the = best\n" +"available techniques (the PPM family of statistical compressors), whils= t\n" +"being around twice as fast at compression and six times faster at\n" +"decompression." +msgstr "" + +#: gnu/packages/compression.scm:254 +msgid "Parallel bzip2 implementation" +msgstr "" + +#: gnu/packages/compression.scm:256 +msgid "" +"Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" +"compressed with pbzip2 can be decompressed with bzip2)." +msgstr "" + +#: gnu/packages/compression.scm:277 +msgid "General-purpose data compression" +msgstr "" + +#: gnu/packages/compression.scm:279 +msgid "" +"XZ Utils is free general-purpose data compression software with high\n" +"compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" +"\n" +"The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" +"been modified quite a lot to be suitable for XZ Utils. The primary\n" +"compression algorithm is currently LZMA2, which is used inside the .xz\= n" +"container format. With typical files, XZ Utils create 30 % smaller out= put\n" +"than gzip and 15 % smaller output than bzip2." +msgstr "" + +#: gnu/packages/compression.scm:307 +msgid "Data compression library suitable for real-time data de-/compress= ion" +msgstr "" + +#: gnu/packages/compression.scm:309 +msgid "" +"LZO is a data compression library which is suitable for data\n" +"de-/compression in real-time. This means it favours speed over\n" +"compression ratio.\n" +"\n" +"LZO is written in ANSI C. Both the source code and the compressed data= \n" +"format are designed to be portable across platforms." +msgstr "" + +#: gnu/packages/compression.scm:332 +msgid "Compress or expand files" +msgstr "" + +#: gnu/packages/compression.scm:334 +msgid "" +"Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" +"some compression ratio)." +msgstr "" + +#: gnu/packages/compression.scm:353 +msgid "Lossless data compressor based on the LZMA algorithm" +msgstr "" + +#: gnu/packages/compression.scm:355 +msgid "" +"Lzip is a lossless data compressor with a user interface similar to the= \n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" +"archiving. Lzip is a clean implementation of the LZMA algorithm." +msgstr "" + +#: gnu/packages/compression.scm:387 +msgid "Archives in shell scripts, uuencode/uudecode" +msgstr "" + +#: gnu/packages/compression.scm:389 +msgid "" +"GNU sharutils is a package for creating and manipulating shell\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" +"This package is mostly for compatibility and historical interest." +msgstr "" + +#: gnu/packages/compression.scm:420 +msgid "Library for SoundFont decompression" +msgstr "" + +#: gnu/packages/compression.scm:422 +msgid "" +"SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" +"with the sfArk algorithm." +msgstr "" + +#: gnu/packages/compression.scm:454 +msgid "Basic sfArk decompressor" +msgstr "" + +#: gnu/packages/compression.scm:455 +msgid "" +"SfArk extractor converts SoundFonts in the compressed legacy\n" +"sfArk file format to the uncompressed sf2 format." +msgstr "" + +#: gnu/packages/compression.scm:472 +msgid "Compression tools for some formats used by Microsoft" +msgstr "" + +#: gnu/packages/compression.scm:474 +msgid "" +"The purpose of libmspack is to provide both compression and\n" +"decompression of some loosely related file formats used by Microsoft." +msgstr "" + +#: gnu/packages/compression.scm:493 +msgid "Low-level interface to bzip2 compression library" +msgstr "" + +#: gnu/packages/compression.scm:494 +msgid "" +"This module provides a Perl interface to the bzip2\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:528 +msgid "Low-level interface to zlib compression library" +msgstr "" + +#: gnu/packages/compression.scm:529 +msgid "" +"This module provides a Perl interface to the zlib\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:550 +msgid "IO Interface to compressed files/buffers" +msgstr "" + +#: gnu/packages/compression.scm:551 +msgid "" +"IO-Compress provides a Perl interface to allow reading and\n" +"writing of compressed data created with the zlib and bzip2 libraries." +msgstr "" + +#: gnu/packages/compression.scm:577 +msgid "Compression algorithm focused on speed" +msgstr "" + +#: gnu/packages/compression.scm:578 +msgid "" +"LZ4 is a lossless compression algorithm, providing\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" +"time for compression ratio." +msgstr "" + +#: gnu/packages/compression.scm:618 +msgid "Tools to create and extract squashfs filesystems" +msgstr "" + +#: gnu/packages/compression.scm:620 +msgid "" +"Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" +"zlib to compress files, inodes, and directories. All blocks are packed= to\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" +"It is intended to be used for archival use, for live CDs, and for embed= ded\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" +"extract such filesystems." +msgstr "" + +#: gnu/packages/compression.scm:657 +msgid "Parallel implementation of gzip" +msgstr "" + +#: gnu/packages/compression.scm:659 +msgid "" +"This package provides a parallel implementation of gzip that exploits\n= " +"multiple processors and multiple cores when compressing data." +msgstr "" + +#: gnu/packages/compression.scm:683 +msgid "Parallel indexing implementation of LZMA" +msgstr "" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 +msgid "Berkeley database" +msgstr "" + +#: gnu/packages/databases.scm:124 +msgid "" +"Berkeley DB is an embeddable database allowing developers the choice of= \n" +"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +msgstr "" + +#: gnu/packages/databases.scm:198 +msgid "Fast, easy to use, and popular database" +msgstr "" + +#: gnu/packages/databases.scm:200 +msgid "" +"MySQL is a fast, reliable, and easy to use relational database\n" +"management system that supports the standardized Structured Query\n" +"Language." +msgstr "" + +#: gnu/packages/databases.scm:267 +msgid "SQL database server" +msgstr "" + +#: gnu/packages/databases.scm:269 +msgid "" +"MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" +"as a drop-in replacement of MySQL." +msgstr "" + +#: gnu/packages/databases.scm:289 +msgid "Powerful object-relational database system" +msgstr "" + +#: gnu/packages/databases.scm:291 +msgid "" +"PostgreSQL is a powerful object-relational database system. It is full= y\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" +"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" +"TIMESTAMP. It also supports storage of binary large objects, including= \n" +"pictures, sounds, or video." +msgstr "" + +#: gnu/packages/databases.scm:329 +msgid "Manipulate plain text files as databases" +msgstr "" + +#: gnu/packages/databases.scm:331 +msgid "" +"GNU Recutils is a set of tools and libraries for creating and\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" +"databases created with Recutils carry all of the expected features such= as\n" +"unique fields, primary keys, time stamps and more. Many different fiel= d\n" +"types are supported, as is encryption." +msgstr "" + +#: gnu/packages/databases.scm:383 +msgid "The SQLite database management system" +msgstr "" + +#: gnu/packages/databases.scm:385 +msgid "" +"SQLite is a software library that implements a self-contained, serverle= ss,\n" +"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" +"is in the public domain." +msgstr "" + +#: gnu/packages/databases.scm:420 +msgid "Trivial database" +msgstr "" + +#: gnu/packages/databases.scm:422 +msgid "" +"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" +"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" +"extremely small." +msgstr "" + +#: gnu/packages/databases.scm:441 +msgid "Database independent interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:442 +msgid "This package provides an database interface for Perl." +msgstr "" + +#: gnu/packages/databases.scm:489 +msgid "Extensible and flexible object <-> relational mapper" +msgstr "" + +#: gnu/packages/databases.scm:490 +msgid "" +"An SQL to OO mapper with an object API inspired by\n" +"Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" +"still providing access to as many of the capabilities of the database a= s\n" +"possible, including retrieving related records from multiple tables in = a\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" +"\"ORDER BY\" and \"HAVING\" support." +msgstr "" + +#: gnu/packages/databases.scm:520 +msgid "Cursor with built-in caching support" +msgstr "" + +#: gnu/packages/databases.scm:521 +msgid "" +"DBIx::Class::Cursor::Cached provides a cursor class with\n" +"built-in caching support." +msgstr "" + +#: gnu/packages/databases.scm:541 +msgid "Introspect many-to-many relationships" +msgstr "" + +#: gnu/packages/databases.scm:542 +msgid "" +"Because the many-to-many relationships are not real\n" +"relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" +"all relevant information about these non-relationships so they can late= r be\n" +"introspected and examined." +msgstr "" + +#: gnu/packages/databases.scm:599 +msgid "Create a DBIx::Class::Schema based on a database" +msgstr "" + +#: gnu/packages/databases.scm:600 +msgid "" +"DBIx::Class::Schema::Loader automates the definition of a\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" +"columns, primary keys, unique constraints and relationships." +msgstr "" + +#: gnu/packages/databases.scm:624 +msgid "DBI PostgreSQL interface" +msgstr "" + +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +#, fuzzy +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "" +"Ez a csomag egy sz=C3=B3t=C3=A1rat biztos=C3=ADt a GNU Aspell helyes=C3= =ADr=C3=A1s-ellen=C5=91rz=C5=91h=C3=B6z." + +#: gnu/packages/databases.scm:667 +msgid "SQlite interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:668 +msgid "" +"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" +"capable RDBMS working for your Perl project you simply have to install = this\n" +"module, and nothing else." +msgstr "" + +#: gnu/packages/databases.scm:698 +msgid "Generate SQL from Perl data structures" +msgstr "" + +#: gnu/packages/databases.scm:699 +msgid "" +"This module was inspired by the excellent DBIx::Abstract.\n" +"While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" +"been modified to make the SQL easier to generate from Perl data structu= res.\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" +"structures you provide it, so that you don't have to modify your code e= very\n" +"time your data changes." +msgstr "" + +#: gnu/packages/databases.scm:728 +msgid "Split SQL code into atomic statements" +msgstr "" + +#: gnu/packages/databases.scm:729 +msgid "" +"This module tries to split any SQL code, even including\n" +"non-standard extensions, into the atomic statements it is composed of." +msgstr "" + +#: gnu/packages/databases.scm:747 +msgid "SQL tokenizer" +msgstr "" + +#: gnu/packages/databases.scm:748 +msgid "" +"SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" +"claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" +"valid SQL query." +msgstr "" + +#: gnu/packages/databases.scm:765 +msgid "Data source abstraction library" +msgstr "" + +#: gnu/packages/databases.scm:766 +msgid "" +"Unixodbc is a library providing an API with which to access\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" +"Driver." +msgstr "" + +#: gnu/packages/databases.scm:790 +msgid "In-memory key/value and document store" +msgstr "" + +#: gnu/packages/databases.scm:792 +msgid "" +"UnQLite is an in-process software library which implements a\n" +"self-contained, serverless, zero-configuration, transactional NoSQL\n" +"database engine. UnQLite is a document store database similar to\n" +"MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store\n" +"similar to BerkeleyDB, LevelDB, etc." +msgstr "" + +#: gnu/packages/databases.scm:819 +msgid "Key-value cache and store" +msgstr "" + +#: gnu/packages/databases.scm:820 +msgid "" +"Redis is an advanced key-value cache and store. Redis\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" +"sets, bitmaps and hyperloglogs." +msgstr "" + +#: gnu/packages/debug.scm:74 +msgid "Heuristical file minimizer" +msgstr "" + +#: gnu/packages/debug.scm:76 +msgid "" +"Delta assists you in minimizing \"interesting\" files subject to a test= \n" +"of their interestingness. A common such situation is when attempting t= o\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" +"program to exhibit a bug." +msgstr "" + +#: gnu/packages/debug.scm:135 +msgid "Reducer for interesting code" +msgstr "" + +#: gnu/packages/debug.scm:137 +msgid "" +"C-Reduce is a tool that takes a large C or C++ program that has a\n" +"property of interest (such as triggering a compiler bug) and automatica= lly\n" +"produces a much smaller C/C++ program that has the same property. It i= s\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" +"tools that process C/C++ code." +msgstr "" + +#: gnu/packages/debug.scm:249 +msgid "Security-oriented fuzzer" +msgstr "" + +#: gnu/packages/debug.scm:251 +msgid "" +"American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" +"fuzzed code. The compact synthesized corpora produced by the tool are = also\n" +"useful for seeding other, more labor- or resource-intensive testing reg= imes\n" +"down the road." +msgstr "" + +#: gnu/packages/dejagnu.scm:78 +msgid "GNU software testing framework" +msgstr "" + +#: gnu/packages/dejagnu.scm:80 +msgid "" +"DejaGnu is a framework for testing software. In effect, it serves as\n= " +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" +"multiple test suites, which are then all managed by a single harness." +msgstr "" + +#: gnu/packages/feh.scm:54 +msgid "Fast and light imlib2-based image viewer" +msgstr "" + +#: gnu/packages/feh.scm:56 +msgid "" +"feh is an X11 image viewer aimed mostly at console users.\n" +"Unlike most other viewers, it does not have a fancy GUI, but simply\n" +"displays images. It can also be used to set the desktop wallpaper.\n" +"It is controlled via commandline arguments and configurable key/mouse\n= " +"actions." +msgstr "" + +#: gnu/packages/games.scm:116 +msgid "Backgammon game" +msgstr "" + +#: gnu/packages/games.scm:117 +msgid "" +"The GNU backgammon application can be used for playing, analyzing and\n= " +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" +"neural networks suitable for both beginners and advanced players. In\n= " +"addition to a command-line interface, it also features an attractive, 3= D\n" +"representation of the playing board." +msgstr "" + +#: gnu/packages/games.scm:146 +msgid "3d Rubik's cube game" +msgstr "" + +#: gnu/packages/games.scm:148 +msgid "" +"GNUbik is a puzzle game in which you must manipulate a cube to make\n" +"each of its faces have a uniform color. The game is customizable, allo= wing\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" +"You may even apply photos to the faces instead of colors. The game is\= n" +"scriptable with Guile." +msgstr "" + +#: gnu/packages/games.scm:198 +msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" +msgstr "" + +#: gnu/packages/games.scm:199 +msgid "" +"L'Abbaye des Morts is a 2D platform game set in 13th century\n" +"France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" +"that beneath its ruins lay buried an ancient evil." +msgstr "" + +#: gnu/packages/games.scm:242 +msgid "Lemmings clone" +msgstr "" + +#: gnu/packages/games.scm:244 +msgid "" +"Pingus is a free Lemmings-like puzzle game in which the player takes\n" +"command of a bunch of small animals and has to guide them through level= s.\n" +"Since the animals walk on their own, the player can only influence them= by\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" +"in the other direction. Multiple such commands are necessary to reach = the\n" +"level's exit. The game is presented in a 2D side view." +msgstr "" + +#: gnu/packages/games.scm:266 +msgid "Convert English text to humorous dialects" +msgstr "" + +#: gnu/packages/games.scm:267 +msgid "" +"The GNU Talk Filters are programs that convert English text\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" +"a C library, so they can easily be integrated into other programs." +msgstr "" + +#: gnu/packages/games.scm:299 +msgid "Simulate the display from \"The Matrix\"" +msgstr "" + +#: gnu/packages/games.scm:300 +msgid "" +"CMatrix simulates the display from \"The Matrix\" and is\n" +"based on the screensaver from the movie's website. It works with termi= nal\n" +"settings up to 132x300 and can scroll lines all at the same rate or\n" +"asynchronously and at a user-defined speed." +msgstr "" + +#: gnu/packages/games.scm:320 +msgid "Full chess implementation" +msgstr "" + +#: gnu/packages/games.scm:321 +msgid "" +"GNU Chess is a chess engine. It allows you to compete\n" +"against the computer in a game of chess, either through the default " +"terminal\n" +"interface or via an external visual interface such as GNU XBoard." +msgstr "" + +#: gnu/packages/games.scm:349 +msgid "Twisted adventures of young pig farmer Dink Smallwood" +msgstr "" + +#: gnu/packages/games.scm:351 +msgid "" +"GNU FreeDink is a free and portable re-implementation of the engine\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" +"game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" +"To that extent, it also includes a front-end for managing all of your D= -Mods." +msgstr "" + +#: gnu/packages/games.scm:373 +msgid "Game data for GNU Freedink" +msgstr "" + +#: gnu/packages/games.scm:375 +msgid "This package contains the game data of GNU Freedink." +msgstr "" + +#: gnu/packages/games.scm:427 +msgid "Graphical user interface for chess programs" +msgstr "" + +#: gnu/packages/games.scm:428 +msgid "" +"GNU XBoard is a graphical board for all varieties of chess,\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" +"fully interactive graphical interface and it can load and save games in= the\n" +"Portable Game Notation." +msgstr "" + +#: gnu/packages/games.scm:481 +msgid "Ball and paddle game" +msgstr "" + +#: gnu/packages/games.scm:482 +msgid "" +"XBoing is a blockout type game where you have a paddle which\n" +"you control to bounce a ball around the game zone destroying blocks wit= h a\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" +"destroy, the better your score. The person with the highest score wins= ." +msgstr "" + +#: gnu/packages/games.scm:514 +msgid "Typing tutor" +msgstr "" + +#: gnu/packages/games.scm:516 +msgid "" +"GNU Typist is a universal typing tutor. It can be used to learn and\n" +"practice touch-typing. Several tutorials are included; in addition to\= n" +"tutorials for the standard QWERTY layout, there are also tutorials for = the\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" +"are primarily in English, however some in other languages are provided.= " +msgstr "" + +#: gnu/packages/games.scm:569 +msgid "3D game engine written in C++" +msgstr "" + +#: gnu/packages/games.scm:571 +msgid "" +"The Irrlicht Engine is a high performance realtime 3D engine written in= \n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" +"for common mesh file formats, and collision detection." +msgstr "" + +#: gnu/packages/games.scm:623 +msgid "2D space shooter" +msgstr "" + +#: gnu/packages/games.scm:625 +msgid "" +"M.A.R.S. is a 2D space shooter with pretty visual effects and\n" +"attractive physics. Players can battle each other or computer controll= ed\n" +"enemies in different game modes such as space ball, death match, team d= eath\n" +"match, cannon keep, and grave-itation pit." +msgstr "" + +#: gnu/packages/games.scm:666 +msgid "Main game data for the Minetest game engine" +msgstr "" + +#: gnu/packages/games.scm:668 +msgid "Game data for the Minetest infinite-world block sandox game." +msgstr "" + +#: gnu/packages/games.scm:720 +msgid "Infinite-world block sandbox game" +msgstr "" + +#: gnu/packages/games.scm:722 +msgid "" +"Minetest is a sandbox construction game. Players can create and destro= y\n" +"various types of blocks in a three-dimensional open world. This allows= \n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" +"in different ways." +msgstr "" + +#: gnu/packages/games.scm:761 +msgid "Curses Implementation of the Glk API" +msgstr "" + +#: gnu/packages/games.scm:763 +msgid "" +"Glk defines a portable API for applications with text UIs. It was\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" +"interactive text utilities, particularly those based on a command line.= \n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" +"using the curses.h library for screen control." +msgstr "" + +#: gnu/packages/games.scm:800 +msgid "Interpreter for Glulx VM" +msgstr "" + +#: gnu/packages/games.scm:802 +msgid "" +"Glulx is a 32-bit portable virtual machine intended for writing and\n" +"playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" +"some of the restrictions in the venerable Z-machine format. This is th= e\n" +"reference interpreter, using Glk API." +msgstr "" + +#: gnu/packages/games.scm:838 +msgid "Z-machine interpreter" +msgstr "" + +#: gnu/packages/games.scm:840 +msgid "" +"Fizmo is a console-based Z-machine interpreter. It is used to play\n" +"interactive fiction, also known as text adventures, which were implemen= ted\n" +"either by Infocom or created using the Inform compiler." +msgstr "" + +#: gnu/packages/games.scm:890 +msgid "Reference frontend for the libretro API" +msgstr "" + +#: gnu/packages/games.scm:892 +msgid "" +"Libretro is a simple but powerful development interface that allows for= \n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" +"straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" +"multi-system game/emulator system." +msgstr "" + +#: gnu/packages/games.scm:912 +msgid "Play the game of Go" +msgstr "" + +#: gnu/packages/games.scm:914 +msgid "" +"GNU Go is a program that plays the game of Go, in which players\n" +"place stones on a grid to form territory or capture other stones. Whil= e\n" +"it can be played directly from the terminal, rendered in ASCII characte= rs,\n" +"it is also possible to play GNU Go with 3rd party graphical interfaces = or\n" +"even in Emacs. It supports the standard game storage format (SGF, Smar= t\n" +"Game Format) and inter-process communication format (GMP, Go Modem\n" +"Protocol)." +msgstr "" + +#: gnu/packages/games.scm:964 +msgid "High speed arctic racing game based on Tux Racer" +msgstr "" + +#: gnu/packages/games.scm:966 +msgid "" +"Extreme Tux Racer, or etracer as it is called for short, is\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" +"avoiding the trees and rocks that will slow you down.\n" +"\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" +"bones.\n" +"\n" +"This game is based on the GPL version of the famous game TuxRacer." +msgstr "" + +#: gnu/packages/games.scm:1004 +msgid "Game of jumping to the next floor, trying not to fall" +msgstr "" + +#: gnu/packages/games.scm:1006 +msgid "" +"GNUjump is a simple, yet addictive game in which you must jump from\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" +"falling, themeable graphics and sounds, and replays." +msgstr "" + +#: gnu/packages/games.scm:1047 +msgid "Turn-based strategy game" +msgstr "" + +#: gnu/packages/games.scm:1049 +msgid "" +"The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" +"local).\n" +"\n" +"Battle for control on a range of maps, using variety of units which hav= e\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" +"next campaign." +msgstr "" + +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" +msgstr "" + +#: gnu/packages/games.scm:1094 +msgid "" +"DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" +"also emulates CPU:286/386 realmode/protected mode, Directory\n" +"FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a\n" +"SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility = with\n" +"older games." +msgstr "" + +#: gnu/packages/games.scm:1139 +msgid "Mouse and keyboard discovery for children" +msgstr "" + +#: gnu/packages/games.scm:1141 +msgid "" +"Gamine is a game designed for young children who are learning to use th= e\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" +"on the screen and keyboard to display letters." +msgstr "" + +#: gnu/packages/games.scm:1172 +msgid "Puzzle game with a cat in lead role" +msgstr "" + +#: gnu/packages/games.scm:1173 +msgid "" +"Project Raincat is a game developed by Carnegie Mellon\n" +"students through GCS during the Fall 2008 semester. Raincat features g= ame\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" +"is programmed in Haskell." +msgstr "" + +#: gnu/packages/games.scm:1208 +msgid "Client for 'The Mana World' and similar games" +msgstr "" + +#: gnu/packages/games.scm:1210 +msgid "" +"ManaPlus is a 2D MMORPG client for game servers. It is the only\n" +"fully supported client for @uref{http://www.themanaworld.org, The mana\= n" +"world}, @uref{http://evolonline.org, Evol Online} and\n" +"@uref{http://landoffire.org, Land of fire}." +msgstr "" + +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +msgid "Pinball simulator" +msgstr "" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 +msgid "GNU Compiler Collection" +msgstr "" + +#: gnu/packages/gcc.scm:315 +msgid "" +"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" +"Go. It also includes runtime support libraries for these languages." +msgstr "" + +#: gnu/packages/gcc.scm:380 +msgid "GNU C++ standard library" +msgstr "" + +#: gnu/packages/gcc.scm:415 +msgid "Collection of subroutines used by various GNU programs" +msgstr "" + +#: gnu/packages/gcc.scm:610 +msgid "GNU libstdc++ documentation" +msgstr "" + +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" +msgstr "" + +#: gnu/packages/gcc.scm:681 +msgid "" +"isl is a library for manipulating sets and relations of integer points\= n" +"bounded by linear constraints. Supported operations on sets include\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" +"affine hull, integer projection, computing the lexicographic minimum us= ing\n" +"parametric integer programming, coalescing and parametric vertex\n" +"enumeration. It also includes an ILP solver based on generalized basis= \n" +"reduction, transitive closures on maps (which may encode infinite graph= s),\n" +"dependence analysis and bounds on piecewise step-polynomials." +msgstr "" + +#: gnu/packages/gcc.scm:713 +msgid "Library to generate code for scanning Z-polyhedra" +msgstr "" + +#: gnu/packages/gcc.scm:715 +msgid "" +"CLooG is a free software library to generate code for scanning\n" +"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" +"reaches each integral point of one or more parameterized polyhedra.\n" +"CLooG has been originally written to solve the code generation problem\= n" +"for optimizing compilers based on the polytope model. Nevertheless it\= n" +"is used now in various area e.g., to build control automata for\n" +"high-level synthesis or to find the best polynomial approximation of a\= n" +"function. CLooG may help in any situation where scanning polyhedra\n" +"matters. While the user has full control on generated code quality,\n" +"CLooG is designed to avoid control overhead and to produce a very\n" +"effective code." +msgstr "" + +#: gnu/packages/gcc.scm:770 +msgid "Reference manual for the C programming language" +msgstr "" + +#: gnu/packages/gcc.scm:772 +msgid "" +"This is a reference manual for the C programming language, as\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" +"of the language. Library functions are not included." +msgstr "" + +#: gnu/packages/geeqie.scm:48 +msgid "Library and command-line utility to manage image metadata" +msgstr "" + +#: gnu/packages/geeqie.scm:50 +msgid "" +"Exiv2 is a C++ library and a command line utility to manage image\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" +"and XMP metadata of images in various formats." +msgstr "" + +#: gnu/packages/geeqie.scm:82 +msgid "Lightweight GTK+ based image viewer" +msgstr "" + +#: gnu/packages/geeqie.scm:84 +msgid "" +"Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" +"systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" +"image formats; tools for image comparison, sorting and managing photo\n= " +"collection. Geeqie was initially based on GQview." +msgstr "" + +#: gnu/packages/gettext.scm:93 +msgid "Tools and documentation for translation" +msgstr "" + +#: gnu/packages/gettext.scm:95 +msgid "" +"GNU Gettext is a package providing a framework for translating the\n" +"textual output of programs into multiple languages. It provides " +"translators\n" +"with the means to create message catalogs, as well as an Emacs mode to = work\n" +"with them, and a runtime library to load translated messages from the\n= " +"catalogs. Nearly all GNU packages use Gettext." +msgstr "" + +#: gnu/packages/gettext.scm:151 +msgid "Scripts to ease maintenance of translations" +msgstr "" + +#: gnu/packages/gettext.scm:153 +msgid "" +"The po4a (PO for anything) project goal is to ease translations (and\n" +"more interestingly, the maintenance of translations) using gettext tool= s on\n" +"areas where they were not expected like documentation." +msgstr "" + +#: gnu/packages/gimp.scm:53 +msgid "Image pixel format conversion library" +msgstr "" + +#: gnu/packages/gimp.scm:55 +msgid "" +"Babl is a dynamic, any to any, pixel format translation library.\n" +"It allows converting between different methods of storing pixels known = as\n" +"pixel formats that have with different bitdepths and other data\n" +"representations, color models and component permutations.\n" +"\n" +"A vocabulary to formulate new pixel formats from existing primitives is= \n" +"provided as well as the framework to add new color models and data type= s." +msgstr "" + +#: gnu/packages/gimp.scm:110 +msgid "Graph based image processing framework" +msgstr "" + +#: gnu/packages/gimp.scm:111 +msgid "" +"GEGL (Generic Graphics Library) provides infrastructure to\n" +"do demand based cached non destructive image editing on larger than RAM= \n" +"buffers." +msgstr "" + +#: gnu/packages/gimp.scm:153 +msgid "GNU Image Manipulation Program" +msgstr "" + +#: gnu/packages/gimp.scm:155 +msgid "" +"GIMP is an application for image manipulation tasks such as photo\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" +"as well as specialized ones. It features a highly customizable interfa= ce\n" +"that is extensible via a plugin system." +msgstr "" + +#: gnu/packages/gnome.scm:154 +msgid "CD/DVD burning tool for Gnome" +msgstr "" + +#: gnu/packages/gnome.scm:155 +msgid "" +"Brasero is an application to burn CD/DVD for the Gnome\n" +"Desktop. It is designed to be as simple as possible and has some uniqu= e\n" +"features to enable users to create their discs easily and quickly." +msgstr "" + +#: gnu/packages/gnome.scm:175 +msgid "Bootstrap GNOME modules built from Git" +msgstr "" + +#: gnu/packages/gnome.scm:176 +msgid "" +"gnome-common contains various files needed to bootstrap\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" +"can be used to configure a source directory checked out from Git and so= me\n" +"commonly used macros." +msgstr "" + +#: gnu/packages/gnome.scm:217 +msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" +msgstr "" + +#: gnu/packages/gnome.scm:219 +msgid "" +"The libgnome-desktop library provides API shared by several application= s\n" +"on the desktop, but that cannot live in the platform for various reason= s.\n" +"There is no API or ABI guarantee, although we are doing our best to pro= vide\n" +"stability. Documentation for the API is available with gtk-doc.\n" +"\n" +"The gnome-about program helps find which version of GNOME is installed.= " +msgstr "" + +#: gnu/packages/gnome.scm:252 +msgid "Documentation utilities for the Gnome project" +msgstr "" + +#: gnu/packages/gnome.scm:254 +msgid "" +"Gnome-doc-utils is a collection of documentation utilities for the\n" +"Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" +"and keep up to date translations of documentation." +msgstr "" + +#: gnu/packages/gnome.scm:298 +msgid "Libraries for displaying certificates and accessing key stores" +msgstr "" + +#: gnu/packages/gnome.scm:300 +msgid "" +"The GCR package contains libraries used for displaying certificates and= \n" +"accessing key stores. It also provides the viewer for crypto files on = the\n" +"GNOME Desktop." +msgstr "" + +#: gnu/packages/gnome.scm:329 +msgid "Accessing passwords from the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:331 +msgid "Client library to access passwords from the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:393 +msgid "Daemon to store passwords and encryption keys" +msgstr "" + +#: gnu/packages/gnome.scm:395 +msgid "" +"gnome-keyring is a program that keeps passwords and other secrets for\n= " +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" +"applications locate it via an environment variable or D-Bus.\n" +"\n" +"The program can manage several keyrings, each with its own master passw= ord,\n" +"and there is also a session keyring which is never stored to disk, but\= n" +"forgotten when the session ends." +msgstr "" + +#: gnu/packages/gnome.scm:460 +msgid "GNOME's document viewer" +msgstr "" + +#: gnu/packages/gnome.scm:462 +msgid "" +"Evince is a document viewer for multiple document formats. It\n" +"currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" +"of Evince is to replace the multiple document viewers that exist\n" +"on the GNOME Desktop with a single simple application." +msgstr "" + +#: gnu/packages/gnome.scm:491 +msgid "GNOME settings for various desktop components" +msgstr "" + +#: gnu/packages/gnome.scm:493 +msgid "" +"Gsettings-desktop-schemas contains a collection of GSettings schemas\n" +"for settings shared by various components of the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:527 +msgid "Utility to implement the Freedesktop Icon Naming Specification" +msgstr "" + +#: gnu/packages/gnome.scm:529 +msgid "" +"To help with the transition to the Freedesktop Icon Naming\n" +"Specification, the icon naming utility maps the icon names used by the\= n" +"GNOME and KDE desktops to the icon names proposed in the specification.= " +msgstr "" + +#: gnu/packages/gnome.scm:551 +msgid "Utilities for working with desktop entries" +msgstr "" + +#: gnu/packages/gnome.scm:553 +msgid "" +"This package contains a few command line utilities for working with\n" +"desktop entries:\n" +"\n" +"desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" +" about desktop entry specification violations.\n" +"\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" +" optionally munging it a bit in transit.\n" +"\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" +" handled by desktop files." +msgstr "" + +#: gnu/packages/gnome.scm:587 +msgid "GNOME icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:589 +msgid "Icons for the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:628 +msgid "Database of common MIME types" +msgstr "" + +#: gnu/packages/gnome.scm:630 +msgid "" +"The shared-mime-info package contains the core database of common types= \n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" +"database is translated at Transifex." +msgstr "" + +#: gnu/packages/gnome.scm:654 +msgid "Freedesktop icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:656 +msgid "Freedesktop icon theme." +msgstr "" + +#: gnu/packages/gnome.scm:683 +msgid "GNOME desktop notification library" +msgstr "" + +#: gnu/packages/gnome.scm:685 +msgid "" +"Libnotify is a library that sends desktop notifications to a\n" +"notification daemon, as defined in the Desktop Notifications spec. The= se\n" +"notifications can be used to inform the user about an event or display\= n" +"some form of information without getting in the user's way." +msgstr "" + +#: gnu/packages/gnome.scm:717 +msgid "GObject plugin system" +msgstr "" + +#: gnu/packages/gnome.scm:719 +msgid "" +"Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" +"the API." +msgstr "" + +#: gnu/packages/gnome.scm:748 +msgid "OpenGL extension to GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:749 +msgid "" +"GtkGLExt is an OpenGL extension to GTK+. It provides\n" +"additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" +"API add-ons to make GTK+ widgets OpenGL-capable." +msgstr "" + +#: gnu/packages/gnome.scm:792 +msgid "GTK+ rapid application development tool" +msgstr "" + +#: gnu/packages/gnome.scm:793 +msgid "" +"Glade is a rapid application development (RAD) tool to\n" +"enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" +"the GNOME desktop environment." +msgstr "" + +#: gnu/packages/gnome.scm:818 +msgid "CSS2 parsing and manipulation library" +msgstr "" + +#: gnu/packages/gnome.scm:820 +msgid "" +"Libcroco is a standalone CSS2 parsing and manipulation library.\n" +"The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" +"XML/CSS rendering engine." +msgstr "" + +#: gnu/packages/gnome.scm:853 +msgid "GNOME's Structured File Library" +msgstr "" + +#: gnu/packages/gnome.scm:855 +msgid "" +"Libgsf aims to provide an efficient extensible I/O abstraction for\n" +"dealing with different structured file formats." +msgstr "" + +#: gnu/packages/gnome.scm:920 +msgid "Render SVG files using Cairo" +msgstr "" + +#: gnu/packages/gnome.scm:922 +msgid "" +"Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:946 +msgid "Create trees of CORBA Interface Definition Language files" +msgstr "" + +#: gnu/packages/gnome.scm:947 +msgid "" +"Libidl is a library for creating trees of CORBA Interface\n" +"Definition Language (idl) files, which is a specification for defining\= n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" +"GNOME project, and the primary means of libidl distribution). However,= the\n" +"functionality was designed to be as reusable and portable as possible." +msgstr "" + +#: gnu/packages/gnome.scm:987 +msgid "CORBA 2.4-compliant Object Request Broker" +msgstr "" + +#: gnu/packages/gnome.scm:988 +msgid "" +"ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" +"featuring mature C, C++ and Python bindings." +msgstr "" + +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" +msgstr "" + +#: gnu/packages/gnome.scm:1035 +msgid "" +"Bonobo is a framework for creating reusable components for\n" +"use in GNOME applications, built on top of CORBA." +msgstr "" + +#: gnu/packages/gnome.scm:1066 +msgid "Store application preferences" +msgstr "" + +#: gnu/packages/gnome.scm:1067 +msgid "" +"Gconf is a system for storing application preferences. It\n" +"is intended for user preferences; not arbitrary data storage." +msgstr "" + +#: gnu/packages/gnome.scm:1089 +msgid "Base MIME and Application database for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1090 +msgid "" +"GNOME Mime Data is a module which contains the base MIME\n" +"and Application database for GNOME. The data stored by this module is\= n" +"designed to be accessed through the MIME functions in GnomeVFS." +msgstr "" + +#: gnu/packages/gnome.scm:1134 +msgid "Access files and folders in GNOME applications" +msgstr "" + +#: gnu/packages/gnome.scm:1136 +msgid "" +"GnomeVFS is the core library used to access files and folders in GNOME\= n" +"applications. It provides a file system abstraction which allows " +"applications\n" +"to access local and remote files with a single consistent API." +msgstr "" + +#: gnu/packages/gnome.scm:1180 +msgid "Useful routines for building applications" +msgstr "" + +#: gnu/packages/gnome.scm:1181 +msgid "" +"The libgnome library provides a number of useful routines\n" +"for building modern applications, including session management, activat= ion " +"of\n" +"files and URIs, and displaying help." +msgstr "" + +#: gnu/packages/gnome.scm:1204 +msgid "2D drawing library" +msgstr "" + +#: gnu/packages/gnome.scm:1205 +msgid "" +"Libart is a 2D drawing library intended as a\n" +"high-quality vector-based 2D library with antialiasing and alpha compos= ition." +msgstr "" + +#: gnu/packages/gnome.scm:1232 +msgid "Flexible widget for creating interactive structured graphics" +msgstr "" + +#: gnu/packages/gnome.scm:1233 +msgid "" +"The GnomeCanvas widget provides a flexible widget for\n" +"creating interactive structured graphics." +msgstr "" + +#: gnu/packages/gnome.scm:1257 +msgid "C++ bindings to the GNOME Canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:1258 +msgid "C++ bindings to the GNOME Canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:1289 +msgid "Additional widgets for applications" +msgstr "" + +#: gnu/packages/gnome.scm:1290 +msgid "" +"The libgnomeui library provides additional widgets for\n" +"applications. Many of the widgets from libgnomeui have already been\n" +"ported to GTK+." +msgstr "" + +#: gnu/packages/gnome.scm:1316 +msgid "Load glade interfaces and access the glade built widgets" +msgstr "" + +#: gnu/packages/gnome.scm:1317 +msgid "" +"Libglade is a library that provides interfaces for loading\n" +"graphical interfaces described in glade files and for accessing the\n" +"widgets built in the loading process." +msgstr "" + +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 +msgid "Printing framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1356 +msgid "" +"GNOME-print was a printing framework for GNOME. It has been deprecated= \n" +"since ca. 2006, when GTK+ itself incorporated printing support." +msgstr "" + +#: gnu/packages/gnome.scm:1431 +msgid "Some user interface controls using Bonobo" +msgstr "" + +#: gnu/packages/gnome.scm:1432 +msgid "" +"The Bonobo UI library provides a number of user interface\n" +"controls using the Bonobo component framework." +msgstr "" + +#: gnu/packages/gnome.scm:1456 +msgid "Window Navigator Construction Kit" +msgstr "" + +#: gnu/packages/gnome.scm:1458 +msgid "" +"Libwnck is the Window Navigator Construction Kit, a library for use in\= n" +"writing pagers, tasklists, and more generally applications that are dea= ling\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" +"Hints specification (EWMH)." +msgstr "" + +#: gnu/packages/gnome.scm:1511 +msgid "Document-centric objects and utilities" +msgstr "" + +#: gnu/packages/gnome.scm:1512 +msgid "A GLib/GTK+ set of document-centric objects and utilities." +msgstr "" + +#: gnu/packages/gnome.scm:1594 +msgid "Spreadsheet application" +msgstr "" + +#: gnu/packages/gnome.scm:1596 +msgid "" +"GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" +"interoperable with other spreadsheet applications. It has a vast array= of\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" +"and non-linear solvers, statistical analysis, and telecommunication\n" +"engineering." +msgstr "" + +#: gnu/packages/gnome.scm:1642 +msgid "Default GNOME 3 themes" +msgstr "" + +#: gnu/packages/gnome.scm:1644 +msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." +msgstr "" + +#: gnu/packages/gnome.scm:1677 +msgid "Manage encryption keys and passwords in the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:1679 +msgid "" +"Seahorse is a GNOME application for managing encryption keys and\n" +"passwords in the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 +msgid "Compiler for the GObject type system" +msgstr "" + +#: gnu/packages/gnome.scm:1717 +msgid "" +"Vala is a programming language that aims to bring modern programming\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" +"requirements and without using a different ABI compared to applications= and\n" +"libraries written in C." +msgstr "" + +#: gnu/packages/gnome.scm:1747 +msgid "Virtual Terminal Emulator" +msgstr "" + +#: gnu/packages/gnome.scm:1749 +msgid "" +"VTE is a library (libvte) implementing a terminal emulator widget for\n= " +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" +"gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" +"editors, IDEs, etc." +msgstr "" + +#: gnu/packages/gnome.scm:1847 +msgid "Low-level GNOME configuration system" +msgstr "" + +#: gnu/packages/gnome.scm:1848 +msgid "" +"Dconf is a low-level configuration system. Its main purpose\n" +"is to provide a backend to GSettings on platforms that don't already ha= ve\n" +"configuration storage systems." +msgstr "" + +#: gnu/packages/gnome.scm:1882 +msgid "" +"JSON-GLib is a C library based on GLib providing serialization and\n" +"deserialization support for the JavaScript Object Notation (JSON) forma= t\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" +"and objects." +msgstr "" + +#: gnu/packages/gnome.scm:1921 +msgid "High-level API for X Keyboard Extension" +msgstr "" + +#: gnu/packages/gnome.scm:1923 +msgid "" +"LibXklavier is a library providing high-level API for X Keyboard\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" +"indicators etc)." +msgstr "" + +#: gnu/packages/gnome.scm:1951 +msgid "Python bindings to librsvg" +msgstr "" + +#: gnu/packages/gnome.scm:1953 +msgid "" +"This packages provides Python bindings to librsvg, the SVG rendering\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2002 +msgid "Network-related GIO modules" +msgstr "" + +#: gnu/packages/gnome.scm:2004 +msgid "" +"This package contains various network related extensions for the GIO\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2035 +msgid "RESTful web api query library" +msgstr "" + +#: gnu/packages/gnome.scm:2037 +msgid "" +"This library was designed to make it easier to access web services that= \n" +"claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" +"libxml to ease remote use of the RESTful API." +msgstr "" + +#: gnu/packages/gnome.scm:2106 +msgid "GLib-based HTTP Library" +msgstr "" + +#: gnu/packages/gnome.scm:2108 +msgid "" +"LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " +"and the GLib main loop, to integrate well with GNOME applications." +msgstr "" + +#: gnu/packages/gnome.scm:2154 +msgid "GObject bindings for \"Secret Service\" API" +msgstr "" + +#: gnu/packages/gnome.scm:2156 +msgid "" +"Libsecret is a GObject based library for storing and retrieving passwor= ds\n" +"and other secrets. It communicates with the \"Secret Service\" using D= Bus." +msgstr "" + +#: gnu/packages/gnome.scm:2200 +msgid "Minesweeper game" +msgstr "" + +#: gnu/packages/gnome.scm:2202 +msgid "" +"Mines (previously gnomine) is a puzzle game where you locate mines\n" +"floating in an ocean using only your brain and a little bit of luck." +msgstr "" + +#: gnu/packages/gnome.scm:2246 +msgid "Terminal emulator" +msgstr "" + +#: gnu/packages/gnome.scm:2248 +msgid "" +"GNOME Terminal is a terminal emulator application for accessing a\n" +"UNIX shell environment which can be used to run programs available on\n= " +"your system.\n" +"\n" +"It supports several profiles, multiple tabs and implements several\n" +"keyboard shortcuts." +msgstr "" + +#: gnu/packages/gnome.scm:2314 +msgid "Color management service" +msgstr "" + +#: gnu/packages/gnome.scm:2315 +msgid "" +"Colord is a system service that makes it easy to manage,\n" +"install and generate color profiles to accurately color manage input an= d\n" +"output devices." +msgstr "" + +#: gnu/packages/gnome.scm:2357 +msgid "Geolocation service" +msgstr "" + +#: gnu/packages/gnome.scm:2358 +msgid "" +"Geoclue is a D-Bus service that provides location\n" +"information. The primary goal of the Geoclue project is to make creati= ng\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" +"permission from user." +msgstr "" + +#: gnu/packages/gnome.scm:2393 +msgid "Geocoding and reverse-geocoding library" +msgstr "" + +#: gnu/packages/gnome.scm:2395 +msgid "" +"geocode-glib is a convenience library for geocoding (finding longitude,= \n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" +"coordinates) using the Nominatim service. geocode-glib caches requests= for\n" +"faster results and to avoid unnecessary server load." +msgstr "" + +#: gnu/packages/gnome.scm:2448 +msgid "System daemon for managing power devices" +msgstr "" + +#: gnu/packages/gnome.scm:2450 +msgid "" +"UPower is an abstraction for enumerating power devices,\n" +"listening to device events and querying history and statistics. Any\n" +"application or service on the system can access the org.freedesktop.UPo= wer\n" +"service via the system message bus." +msgstr "" + +#: gnu/packages/gnome.scm:2500 +msgid "Location, time zone, and weather library for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2502 +msgid "" +"libgweather is a library to access weather information from online\n" +"services for numerous locations." +msgstr "" + +#: gnu/packages/gnome.scm:2554 +msgid "GNOME settings daemon" +msgstr "" + +#: gnu/packages/gnome.scm:2556 +msgid "" +"This package contains the daemon responsible for setting the various\n" +"parameters of a GNOME session and the applications that run under it. = It\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" +"settings, themes, mouse settings, and startup of other daemons." +msgstr "" + +#: gnu/packages/gnome.scm:2592 +msgid "Library to parse and save media playlists for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2593 +msgid "" +"Totem-pl-parser is a GObjects-based library to parse and save\n" +"playlists in a variety of formats." +msgstr "" + +#: gnu/packages/gnome.scm:2627 +msgid "Solitaire card games" +msgstr "" + +#: gnu/packages/gnome.scm:2629 +msgid "" +"Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" +"which are easy to play with the aid of a mouse." +msgstr "" + +#: gnu/packages/gnome.scm:2653 +msgid "API documentation browser for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2655 +msgid "" +"Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " +"natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" +"throughout GNOME for API documentation)." +msgstr "" + +#: gnu/packages/gnome.scm:2716 +msgid "Object oriented GL/GLES Abstraction/Utility Layer" +msgstr "" + +#: gnu/packages/gnome.scm:2718 +msgid "" +"Cogl is a small library for using 3D graphics hardware to draw pretty\n= " +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" +"designed to make it easy to write orthogonal components that can render= \n" +"without stepping on each others toes." +msgstr "" + +#: gnu/packages/gnome.scm:2773 +msgid "Open GL based interactive canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 +msgid "" +"Clutter is an Open GL based interactive canvas library, designed for\n" +"creating fast, mainly 2D single window applications such as media box U= Is,\n" +"presentations, kiosk style applications and so on." +msgstr "" + +#: gnu/packages/gnome.scm:2802 +msgid "Open GL based interactive canvas library GTK+ widget" +msgstr "" + +#: gnu/packages/gnome.scm:2832 +msgid "Integration library for using GStreamer with Clutter" +msgstr "" + +#: gnu/packages/gnome.scm:2834 +msgid "" +"Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" +"It provides a GStreamer sink to upload frames to GL and an actor that\n= " +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" +"GL based interactive canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:2864 +msgid "C library providing a ClutterActor to display maps" +msgstr "" + +#: gnu/packages/gnome.scm:2866 +msgid "" +"libchamplain is a C library providing a ClutterActor to display maps.\n= " +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" +"such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." +msgstr "" + +#: gnu/packages/gnome.scm:2897 +msgid "Object mapper from GObjects to SQLite" +msgstr "" + +#: gnu/packages/gnome.scm:2899 +msgid "" +"Gom provides an object mapper from GObjects to SQLite. It helps you\n" +"write applications that need to store structured data as well as make " +"complex\n" +"queries upon that data." +msgstr "" + +#: gnu/packages/gnome.scm:2927 +msgid "Sliding block puzzles" +msgstr "" + +#: gnu/packages/gnome.scm:2929 +msgid "" +"GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" +"as possible!" +msgstr "" + +#: gnu/packages/gnome.scm:2980 +msgid "Framework for discovering and browsing media" +msgstr "" + +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 +msgid "" +"Grilo is a framework focused on making media discovery and browsing eas= y\n" +"for application developers." +msgstr "" + +#: gnu/packages/gnome.scm:3032 +msgid "Plugins for the Grilo media discovery library" +msgstr "" + +#: gnu/packages/gnome.scm:3109 +msgid "Simple media player for GNOME based on GStreamer" +msgstr "" + +#: gnu/packages/gnome.scm:3110 +msgid "" +"Totem is a simple yet featureful media player for GNOME\n" +"which can read a large number of file formats." +msgstr "" + +#: gnu/packages/gnome.scm:3199 +msgid "Music player for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3200 +msgid "" +"Rhythmbox is a music playing application for GNOME. It\n" +"supports playlists, song ratings, and any codecs installed through gstr= eamer." +msgstr "" + +#: gnu/packages/gnome.scm:3250 +msgid "GNOME image viewer" +msgstr "" + +#: gnu/packages/gnome.scm:3251 +msgid "" +"Eye of GNOME is the GNOME image viewer. It\n" +"supports image conversion, rotation, and slideshows." +msgstr "" + +#: gnu/packages/gnome.scm:3276 +msgid "GObject bindings for libudev" +msgstr "" + +#: gnu/packages/gnome.scm:3278 +msgid "" +"This library provides GObject bindings for libudev. It was originally\= n" +"part of udev-extras, then udev, then systemd. It's now a project on it= s own." +msgstr "" + +#: gnu/packages/gnome.scm:3324 +msgid "Userspace virtual filesystem for GIO" +msgstr "" + +#: gnu/packages/gnome.scm:3326 +msgid "" +"GVFS is a userspace virtual filesystem designed to work with the I/O\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" +"to all applications using the GIO API. It also supports exposing the G= VFS\n" +"mounts to non-GIO applications using FUSE.\n" +"\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" +"DAV, and others." +msgstr "" + +#: gnu/packages/gnome.scm:3372 +msgid "GLib binding for libusb1" +msgstr "" + +#: gnu/packages/gnome.scm:3374 +msgid "" +"GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" +"asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" +"and integration into a mainloop. This makes it easy to integrate low l= evel\n" +"USB transfers with your high-level application or system daemon." +msgstr "" + +#: gnu/packages/gnome.scm:3411 +msgid "Document and image scanner" +msgstr "" + +#: gnu/packages/gnome.scm:3412 +msgid "" +"Simple Scan is an easy-to-use application, designed to let\n" +"users connect their scanner and quickly have the image/document in an\n= " +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" +"the same backend as XSANE uses. This means that all existing scanners w= ill\n" +"work and the interface is well tested." +msgstr "" + +#: gnu/packages/gnome.scm:3461 +msgid "GNOME web browser" +msgstr "" + +#: gnu/packages/gnome.scm:3463 +msgid "" +"Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " +"principles are simplicity and standards compliance." +msgstr "" + +#: gnu/packages/gnome.scm:3519 +msgid "D-Bus debugger" +msgstr "" + +#: gnu/packages/gnome.scm:3521 +msgid "" +"D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" +"of running programs and invoke methods on those interfaces." +msgstr "" + +#: gnu/packages/gnome.scm:3543 +msgid "XSL stylesheets for Yelp" +msgstr "" + +#: gnu/packages/gnome.scm:3545 +msgid "" +"Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" +"to format Docbook and Mallard documents." +msgstr "" + +#: gnu/packages/gnome.scm:3575 +msgid "GNOME help browser" +msgstr "" + +#: gnu/packages/gnome.scm:3577 +msgid "" +"Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" +"man, info, and HTML documents. It can locate documents according to th= e\n" +"freedesktop.org help system specification." +msgstr "" + +#: gnu/packages/gnome.scm:3605 +msgid "Yelp documentation tools" +msgstr "" + +#: gnu/packages/gnome.scm:3607 +msgid "" +"Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" +"manage, and publish documentation for Yelp and the web. Most of the he= avy\n" +"lifting is done by packages like yelp-xsl and itstool. This package ju= st\n" +"wraps things up in a developer-friendly way." +msgstr "" + +#: gnu/packages/gnome.scm:3644 +msgid "GObject collection library" +msgstr "" + +#: gnu/packages/gnome.scm:3646 +msgid "" +"Libgee is a utility library providing GObject-based interfaces and\n" +"classes for commonly used data structures." +msgstr "" + +#: gnu/packages/gnome.scm:3673 +msgid "GObject wrapper around the Exiv2 photo metadata library" +msgstr "" + +#: gnu/packages/gnome.scm:3675 +msgid "" +"Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" +"metadata in photo and video files of various formats." +msgstr "" + +#: gnu/packages/gnome.scm:3727 +msgid "Photo manager for GNOME 3" +msgstr "" + +#: gnu/packages/gnome.scm:3729 +msgid "" +"Shotwell is a digital photo manager designed for the GNOME desktop\n" +"environment. It allows you to import photos from disk or camera, organ= ize\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" +"share them with others via social networking and more." +msgstr "" + +#: gnu/packages/gnome.scm:3761 +msgid "Graphical archive manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3762 +msgid "" +"File Roller is an archive manager for the GNOME desktop\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" +"such as gzip tarballs." +msgstr "" + +#: gnu/packages/gnome.scm:3797 +msgid "Session manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +msgid "Javascript bindings for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "Folyamszerkeszt=C5=91" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +#, fuzzy +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "" +"Ez a csomag egy sz=C3=B3t=C3=A1rat biztos=C3=ADt a GNU Aspell helyes=C3= =ADr=C3=A1s-ellen=C5=91rz=C5=91h=C3=B6z." + +#: gnu/packages/gnome.scm:4356 +msgid "Display manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:4484 +msgid "Utilities to configure the GNOME desktop" +msgstr "" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +msgid "File manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +msgid "Disk usage analyzer for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 +msgid "Mozilla javascript engine" +msgstr "" + +#: gnu/packages/gnuzilla.scm:96 +msgid "" +"SpiderMonkey is Mozilla's JavaScript engine written\n" +"in C/C++." +msgstr "" + +#: gnu/packages/gnuzilla.scm:171 +msgid "Netscape API for system level and libc-like functions" +msgstr "" + +#: gnu/packages/gnuzilla.scm:172 +msgid "" +"Netscape Portable Runtime (NSPR) provides a\n" +"platform-neutral API for system level and libc-like functions. It is u= sed\n" +"in the Mozilla clients." +msgstr "" + +#: gnu/packages/gnuzilla.scm:268 +msgid "Network Security Services" +msgstr "" + +#: gnu/packages/gnuzilla.scm:270 +msgid "" +"Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" +"PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " +"standards." +msgstr "" + +#: gnu/packages/gnuzilla.scm:506 +msgid "Entirely free browser derived from Mozilla Firefox" +msgstr "" + +#: gnu/packages/gnuzilla.scm:508 +msgid "" +"IceCat is the GNU version of the Firefox browser. It is entirely free\= n" +"software, which does not recommend non-free plugins and addons. It als= o\n" +"features built-in privacy-protecting features." +msgstr "" + +#: gnu/packages/gtk.scm:87 +msgid "GNOME accessibility toolkit" +msgstr "" + +#: gnu/packages/gtk.scm:89 +msgid "" +"ATK provides the set of accessibility interfaces that are implemented\n= " +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" +"tools have full access to view and control running applications." +msgstr "" + +#: gnu/packages/gtk.scm:128 +msgid "2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:130 +msgid "" +"Cairo is a 2D graphics library with support for multiple output devices= .\n" +"Currently supported output targets include the X Window System (via bot= h\n" +"Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG f= ile\n" +"output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB= .\n" +"\n" +"Cairo is designed to produce consistent output on all output media whil= e\n" +"taking advantage of display hardware acceleration when available\n" +"eg. through the X Render Extension).\n" +"\n" +"The cairo API provides operations similar to the drawing operators of\n= " +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" +"B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" +"affine transformation (scale, rotation, shear, etc.)." +msgstr "" + +#: gnu/packages/gtk.scm:178 +msgid "OpenType text shaping engine" +msgstr "" + +#: gnu/packages/gtk.scm:180 +msgid "HarfBuzz is an OpenType text shaping engine." +msgstr "" + +#: gnu/packages/gtk.scm:211 +msgid "GNOME text and font handling library" +msgstr "" + +#: gnu/packages/gtk.scm:213 +msgid "" +"Pango is the core text and font handling library used in GNOME\n" +"applications. It has extensive support for the different writing syste= ms\n" +"used throughout the world." +msgstr "" + +#: gnu/packages/gtk.scm:239 +msgid "Obsolete pango functions" +msgstr "" + +#: gnu/packages/gtk.scm:240 +msgid "" +"Pangox was a X backend to pango. It is now obsolete and no\n" +"longer provided by recent pango releases. pangox-compat provides the\n= " +"functions which were removed." +msgstr "" + +#: gnu/packages/gtk.scm:276 +msgid "GTK+ widget for interactive graph-like environments" +msgstr "" + +#: gnu/packages/gtk.scm:278 +msgid "" +"Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" +"graph-like environments, e.g. modular synths or finite state machine\n" +"diagrams." +msgstr "" + +#: gnu/packages/gtk.scm:330 +msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" +msgstr "" + +#: gnu/packages/gtk.scm:332 +msgid "" +"GtkSourceView is a portable C library that extends the standard GTK+\n" +"framework for multiline text editing with support for configurable synt= ax\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" +"printing and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 +msgid "GNOME image loading and manipulation library" +msgstr "" + +#: gnu/packages/gtk.scm:431 +msgid "" +"GdkPixbuf is a library for image loading and manipulation developed\n" +"in the GNOME project." +msgstr "" + +#: gnu/packages/gtk.scm:474 +msgid "Assistive Technology Service Provider Interface, core components" +msgstr "" + +#: gnu/packages/gtk.scm:476 +msgid "" +"The Assistive Technology Service Provider Interface, core components,\n= " +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:509 +msgid "Assistive Technology Service Provider Interface, ATK bindings" +msgstr "" + +#: gnu/packages/gtk.scm:511 +msgid "" +"The Assistive Technology Service Provider Interface\n" +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:568 +msgid "Cross-platform toolkit for creating graphical user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:570 +msgid "" +"GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" +"graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" +"suitable for projects ranging from small one-off tools to complete\n" +"application suites." +msgstr "" + +#: gnu/packages/gtk.scm:705 +msgid "Cairo bindings for GNU Guile" +msgstr "" + +#: gnu/packages/gtk.scm:707 +msgid "" +"Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" +"Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" +"stable, providing a firm base on which to do graphics work. Finally, a= nd\n" +"importantly, it is pleasant to use. You get a powerful and well-mainta= ined\n" +"graphics library with all of the benefits of Scheme: memory management,= \n" +"exceptions, macros, and a dynamic programming environment." +msgstr "" + +#: gnu/packages/gtk.scm:747 +msgid "Render SVG images using Cairo from Guile" +msgstr "" + +#: gnu/packages/gtk.scm:749 +msgid "" +"Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" +"images onto Cairo surfaces." +msgstr "" + +#: gnu/packages/gtk.scm:793 +msgid "Create SVG or PDF presentations in Guile" +msgstr "" + +#: gnu/packages/gtk.scm:795 +msgid "" +"Guile-Present defines a declarative vocabulary for presentations,\n" +"together with tools to render presentation documents as SVG or PDF.\n" +"Guile-Present can be used to make presentations programmatically, but a= lso\n" +"includes a tools to generate PDF presentations out of Org mode and Texi= nfo\n" +"documents." +msgstr "" + +#: gnu/packages/gtk.scm:829 +msgid "C++ bindings to the Cairo 2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:831 +msgid "" +"Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " +"library." +msgstr "" + +#: gnu/packages/gtk.scm:855 +msgid "C++ interface to the Pango text rendering library" +msgstr "" + +#: gnu/packages/gtk.scm:857 +msgid "" +"Pangomm provides a C++ programming interface to the Pango text renderin= g\n" +"library." +msgstr "" + +#: gnu/packages/gtk.scm:878 +msgid "C++ interface to the ATK accessibility library" +msgstr "" + +#: gnu/packages/gtk.scm:880 +msgid "" +"ATKmm provides a C++ programming interface to the ATK accessibility\n" +"toolkit." +msgstr "" + +#: gnu/packages/gtk.scm:907 +msgid "C++ interface to the GTK+ graphical user interface library" +msgstr "" + +#: gnu/packages/gtk.scm:909 +msgid "" +"gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" +"extensive documentation, including API reference and a tutorial." +msgstr "" + +#: gnu/packages/gtk.scm:968 +msgid "Python bindings for cairo" +msgstr "" + +#: gnu/packages/gtk.scm:970 +msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." +msgstr "" + +#: gnu/packages/gtk.scm:1053 +msgid "Python bindings for GTK+" +msgstr "" + +#: gnu/packages/gtk.scm:1055 +msgid "" +"PyGTK allows you to write full featured GTK programs in Python. It is\= n" +"targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" +"write GNOME applications." +msgstr "" + +#: gnu/packages/gtk.scm:1086 +msgid "Library for minimalistic gtk+3 user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:1087 +msgid "" +"Girara is a library that implements a user interface that\n" +"focuses on simplicity and minimalism. Currently based on GTK+, a\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" +"main components: a so-called view widget that represents the actual\n" +"application, an input bar that is used to execute commands of the\n" +"application and the status bar which provides the user with current\n" +"information." +msgstr "" + +#: gnu/packages/gtk.scm:1130 +msgid "Documentation generator from C source code" +msgstr "" + +#: gnu/packages/gtk.scm:1132 +msgid "" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" +"can also be used to document application code." +msgstr "" + +#: gnu/packages/gtk.scm:1159 +msgid "Theming engines for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 +msgid "Scheme implementation intended especially for extensions" +msgstr "" + +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 +msgid "" +"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" +"official extension language of the GNU system. It is an implementation= of\n" +"the Scheme language which can be easily embedded in other applications = to\n" +"provide a convenient means of extending the functionality of the " +"application\n" +"without requiring the source code to be rewritten." +msgstr "" + +#: gnu/packages/guile.scm:213 +msgid "Snapshot of what will become version 2.2 of GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 +msgid "Framework for building readers for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:327 +msgid "" +"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"\n" +"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" +"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" +"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" +"document syntax.\n" +"\n" +"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" +"hopefully more powerful and flexible (for instance, one may instantiate= as\n" +"many readers as needed)." +msgstr "" + +#: gnu/packages/guile.scm:376 +msgid "Guile bindings to ncurses" +msgstr "" + +#: gnu/packages/guile.scm:378 +msgid "" +"guile-ncurses provides Guile language bindings for the ncurses\n" +"library." +msgstr "" + +#: gnu/packages/guile.scm:398 +msgid "Run jobs at scheduled times" +msgstr "" + +#: gnu/packages/guile.scm:400 +msgid "" +"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" +"Guile, so its configuration can be written in Scheme; the original cron= \n" +"format is also supported." +msgstr "" + +#: gnu/packages/guile.scm:428 +msgid "Collection of useful Guile Scheme modules" +msgstr "" + +#: gnu/packages/guile.scm:430 +msgid "" +"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" +"modules, allowing for people to cooperate integrating their generic Gui= le\n" +"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" +"for Guile\"." +msgstr "" + +#: gnu/packages/guile.scm:461 +msgid "JSON module for Guile" +msgstr "" + +#: gnu/packages/guile.scm:463 +msgid "" +"Guile-json supports parsing and building JSON documents according to th= e\n" +"http:://json.org specification. These are the main features:\n" +"- Strictly complies to http://json.org specification.\n" +"- Build JSON documents programmatically via macros.\n" +"- Unicode support for strings.\n" +"- Allows JSON pretty printing." +msgstr "" + +#: gnu/packages/guile.scm:534 +msgid "MiniKanren declarative logic system, packaged for Guile" +msgstr "" + +#: gnu/packages/guile.scm:536 +msgid "" +"MiniKanren is a relational programming extension to the Scheme\n" +"programming Language, written as a smaller version of Kanren suitable f= or\n" +"pedagogical purposes. It is featured in the book, The Reasoned Schemer= ,\n" +"written by Dan Friedman, William Byrd, and Oleg Kiselyov.\n" +"\n" +"This is Ian Price's r6rs packaged version of miniKanren, which deviates= \n" +"slightly from miniKanren mainline.\n" +"\n" +"See http://minikanren.org/ for more on miniKanren generally." +msgstr "" + +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 +msgid "Guile bindings to the GDBM library via Guile's FFI" +msgstr "" + +#: gnu/packages/guile.scm:687 +msgid "" +"Guile bindings to the GDBM key-value storage system, using\n" +"Guile's foreign function interface." +msgstr "" + +#: gnu/packages/guile.scm:727 +msgid "Functional static site generator" +msgstr "" + +#: gnu/packages/guile.scm:728 +msgid "" +"Haunt is a static site generator written in Guile\n" +"Scheme. Haunt features a functional build system and an extensible\n" +"interface for reading articles in any format." +msgstr "" + +#: gnu/packages/guile.scm:758 +msgid "Redis client library for Guile" +msgstr "" + +#: gnu/packages/guile.scm:759 +msgid "" +"Guile-redis provides a Scheme interface to the Redis\n" +"key-value cache and store." +msgstr "" + +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" +msgstr "" + +#: gnu/packages/guile.scm:834 +msgid "" +"Wisp is a syntax for Guile which provides a Python-like\n" +"whitespace-significant language. It may be easier on the eyes for some= \n" +"users and in some situations." +msgstr "" + +#: gnu/packages/guile.scm:867 +msgid "2D/3D game engine for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +msgid "Generate C bindings for Guile" +msgstr "" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 +msgid "Create, edit, compose, or convert bitmap images" +msgstr "" + +#: gnu/packages/imagemagick.scm:103 +msgid "" +"ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" +"text, lines, polygons, ellipses and B=C3=A9zier curves." +msgstr "" + +#: gnu/packages/imagemagick.scm:147 +msgid "Perl interface to ImageMagick" +msgstr "" + +#: gnu/packages/imagemagick.scm:148 +msgid "" +"This Perl extension allows the reading, manipulation and\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" +"script." +msgstr "" + +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." +msgstr "" + +#: gnu/packages/image.scm:71 +msgid "Library for handling PNG files" +msgstr "" + +#: gnu/packages/image.scm:73 +msgid "" +"Libpng is the official PNG (Portable Network Graphics) reference\n" +"library. It supports almost all PNG features and is extensible." +msgstr "" + +#: gnu/packages/image.scm:89 +msgid "Library for handling JPEG files" +msgstr "" + +#: gnu/packages/image.scm:91 +msgid "" +"Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" +"JPEG is a standardized compression method for full-color and gray-scale= \n" +"images.\n" +"The included programs provide conversion between the JPEG format and\n" +"image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." +msgstr "" + +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 +msgid "Library for handling TIFF files" +msgstr "" + +#: gnu/packages/image.scm:159 +msgid "" +"Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" +"used for storing image data.\n" +"Included are a library, libtiff, for reading and writing TIFF and a sma= ll\n" +"collection of tools for doing simple manipulations of TIFF images." +msgstr "" + +#: gnu/packages/image.scm:202 +msgid "Library for reading images in the Microsoft WMF format" +msgstr "" + +#: gnu/packages/image.scm:204 +msgid "" +"libwmf is a library for reading vector images in Microsoft's native\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" +"the W3C's XML-based Scaleable Vector Graphic (SVG) format." +msgstr "" + +#: gnu/packages/image.scm:271 +msgid "Library and tools for image processing and analysis" +msgstr "" + +#: gnu/packages/image.scm:273 +msgid "" +"Leptonica is a C library and set of command-line tools for efficient\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" +"scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" +"arithmetic ops." +msgstr "" + +#: gnu/packages/image.scm:296 +msgid "Decoder of the JBIG2 image compression format" +msgstr "" + +#: gnu/packages/image.scm:298 +msgid "" +"JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" +"monochrome) images at moderately high resolution, and in particular sca= nned\n" +"paper documents. In this domain it is very efficient, offering compres= sion\n" +"ratios on the order of 100:1.\n" +"\n" +"This is a decoder only implementation, and currently is in the alpha\n" +"stage, meaning it doesn't completely work yet. However, it is\n" +"maintaining parity with available encoders, so it is useful for real\n" +"work." +msgstr "" + +#: gnu/packages/image.scm:333 +msgid "JPEG 2000 codec" +msgstr "" + +#: gnu/packages/image.scm:335 +msgid "" +"The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" +"been developed in order to promote the use of JPEG 2000, the new\n" +"still-image compression standard from the Joint Photographic Experts\n" +"Group (JPEG).\n" +"\n" +"In addition to the basic codec, various other features are under\n" +"development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats= ,\n" +"an indexing tool useful for the JPIP protocol, JPWL-tools for\n" +"error-resilience, a Java-viewer for j2k-images, ..." +msgstr "" + +#: gnu/packages/image.scm:414 +msgid "Tools and library for working with GIF images" +msgstr "" + +#: gnu/packages/image.scm:416 +msgid "" +"GIFLIB is a library for reading and writing GIF images. It is API and\= n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" +"algorithm was patented. Tools are also included to convert, manipulate= ,\n" +"compose, and analyze GIF images." +msgstr "" + +#: gnu/packages/image.scm:437 +msgid "GIF decompression library" +msgstr "" + +#: gnu/packages/image.scm:439 +msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." +msgstr "" + +#: gnu/packages/image.scm:468 +msgid "Loading, saving, rendering and manipulating image files" +msgstr "" + +#: gnu/packages/image.scm:470 +msgid "" +"Imlib2 is a library that does image file loading and saving as well as\= n" +"rendering, manipulation, arbitrary polygon support, etc.\n" +"\n" +"It does ALL of these operations FAST. Imlib2 also tries to be highly\n= " +"intelligent about doing them, so writing naive programs can be done eas= ily,\n" +"without sacrificing speed.\n" +"\n" +"This is a complete rewrite over the Imlib 1.x series. The architecture= is\n" +"more modular, simple, and flexible." +msgstr "" + +#: gnu/packages/image.scm:498 +msgid "Wrapper library for imlib2" +msgstr "" + +#: gnu/packages/image.scm:500 +msgid "" +"Giblib is a simple library which wraps imlib2's context API, avoiding\n= " +"all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" +"supplies a generic doubly-linked list and some string functions." +msgstr "" + +#: gnu/packages/image.scm:540 +msgid "Library for handling popular graphics image formats" +msgstr "" + +#: gnu/packages/image.scm:542 +msgid "" +"FreeImage is a library for developers who would like to support popular= \n" +"graphics image formats like PNG, BMP, JPEG, TIFF and others." +msgstr "" + +#: gnu/packages/image.scm:592 +msgid "Computer vision library" +msgstr "" + +#: gnu/packages/image.scm:594 +msgid "" +"VIGRA stands for Vision with Generic Algorithms. It is an image\n" +"processing and analysis library that puts its main emphasis on customiz= able\n" +"algorithms and data structures. It is particularly strong for\n" +"multi-dimensional image processing." +msgstr "" + +#: gnu/packages/image.scm:625 +msgid "Lossless and lossy image compression" +msgstr "" + +#: gnu/packages/image.scm:627 +msgid "" +"WebP is a new image format that provides lossless and lossy compression= \n" +"for images. WebP lossless images are 26% smaller in size compared to\n= " +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" +"equivalent SSIM index. WebP supports lossless transparency (also known= as\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" +"to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" +"channels." +msgstr "" + +#: gnu/packages/image.scm:655 +msgid "Library for handling MNG files" +msgstr "" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +msgid "Library for manipulating many image formats" +msgstr "" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" +msgstr "" + +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." +msgstr "" + +#: gnu/packages/inkscape.scm:88 +msgid "Vector graphics editor" +msgstr "" + +#: gnu/packages/inkscape.scm:89 +msgid "" +"Inkscape is a vector graphics editor. What sets Inkscape\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" +"as the native format." +msgstr "" + +#: gnu/packages/jemalloc.scm:47 +msgid "General-purpose scalable concurrent malloc implementation" +msgstr "" + +#: gnu/packages/jemalloc.scm:49 +msgid "" +"This library providing a malloc(3) implementation that emphasizes\n" +"fragmentation avoidance and scalable concurrency support." +msgstr "" + +#: gnu/packages/key-mon.scm:65 +msgid "Show keyboard and mouse status" +msgstr "" + +#: gnu/packages/key-mon.scm:67 +msgid "" +"The key-mon utility displays the current keyboard and mouse status.\n" +"This is useful for teaching and screencasts." +msgstr "" + +#: gnu/packages/less.scm:41 +msgid "Paginator for terminals" +msgstr "" + +#: gnu/packages/less.scm:43 +msgid "" +"GNU less is a pager, a program that allows you to view large amounts\n" +"of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" +"text editors." +msgstr "" + +#: gnu/packages/lesstif.scm:47 +msgid "Clone of the Motif toolkit for the X window system" +msgstr "" + +#: gnu/packages/lesstif.scm:48 +msgid "Clone of the Motif toolkit for the X window system." +msgstr "" + +#: gnu/packages/libreoffice.scm:86 +msgid "General purpose formula parser and interpreter" +msgstr "" + +#: gnu/packages/libreoffice.scm:87 +msgid "" +"Ixion is a library for calculating the results of formula\n" +"expressions stored in multiple named targets, or \"cells\". The cells = can\n" +"be referenced from each other, and the library takes care of resolving\= n" +"their dependencies automatically upon calculation." +msgstr "" + +#: gnu/packages/libreoffice.scm:112 +msgid "File import filter library for spreadsheet documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:113 +msgid "" +"Orcus is a library that provides a collection of standalone\n" +"file processing filters. It is currently focused on providing filters = for\n" +"spreadsheet documents. The library includes import filters for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" +"CSV, CSS and XML." +msgstr "" + +#: gnu/packages/libreoffice.scm:147 +msgid "Document importer for office suites" +msgstr "" + +#: gnu/packages/libreoffice.scm:148 +msgid "" +"Librevenge is a base library for writing document import\n" +"filters. It has interfaces for text documents, vector graphics,\n" +"spreadsheets and presentations." +msgstr "" + +#: gnu/packages/libreoffice.scm:173 +msgid "Library for importing WordPerfect documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:174 +msgid "" +"Libwpd is a C++ library designed to help process\n" +"WordPerfect documents. It is most commonly used to import such documen= ts\n" +"into other word processors." +msgstr "" + +#: gnu/packages/libreoffice.scm:206 +msgid "Library for import of reflowable e-book formats" +msgstr "" + +#: gnu/packages/libreoffice.scm:207 +msgid "" +"Libe-book is a library and a set of tools for reading and\n" +"converting various reflowable e-book formats. Currently supported are:= \n" +"Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped file= s),\n" +"PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled\n" +"cellphones), TCR (simple compressed text format), TealDoc, zTXT,\n" +"ZVR (simple compressed text format)." +msgstr "" + +#: gnu/packages/libreoffice.scm:236 +msgid "Library and tools for the WordPerfect Graphics format" +msgstr "" + +#: gnu/packages/libreoffice.scm:237 +msgid "" +"The libwpg project provides a library and tools for\n" +"working with graphics in the WPG (WordPerfect Graphics) format." +msgstr "" + +#: gnu/packages/libreoffice.scm:278 +msgid "CMIS client library" +msgstr "" + +#: gnu/packages/libreoffice.scm:279 +msgid "" +"LibCMIS is a C++ client library for the CMIS interface. It\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" +"as Alfresco or Nuxeo." +msgstr "" + +#: gnu/packages/libreoffice.scm:310 +msgid "Library for parsing the AbiWord format" +msgstr "" + +#: gnu/packages/libreoffice.scm:311 +msgid "" +"Libabw is a library that parses the file format of\n" +"AbiWord documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:341 +msgid "Library for parsing the CorelDRAW format" +msgstr "" + +#: gnu/packages/libreoffice.scm:342 +msgid "" +"Libcdr is a library that parses the file format of\n" +"CorelDRAW documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:371 +msgid "Library for parsing the Apple Keynote format" +msgstr "" + +#: gnu/packages/libreoffice.scm:372 +msgid "" +"Libetonyek is a library that parses the file format of\n" +"Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." +msgstr "" + +#: gnu/packages/libreoffice.scm:389 +msgid "Text Categorization library" +msgstr "" + +#: gnu/packages/libreoffice.scm:390 +msgid "" +"Libexttextcat is an N-Gram-Based Text Categorization\n" +"library primarily intended for language guessing." +msgstr "" + +#: gnu/packages/libreoffice.scm:416 +msgid "Library for parsing the FreeHand format" +msgstr "" + +#: gnu/packages/libreoffice.scm:417 +msgid "" +"Libfreehand is a library that parses the file format of\n" +"Aldus/Macromedia/Adobe FreeHand documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:443 +msgid "Library for parsing the Microsoft Publisher format" +msgstr "" + +#: gnu/packages/libreoffice.scm:444 +msgid "" +"Libmspub is a library that parses the file format of\n" +"Microsoft Publisher documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:472 +msgid "Library for parsing the PageMaker format" +msgstr "" + +#: gnu/packages/libreoffice.scm:473 +msgid "" +"Libpagemaker is a library that parses the file format of\n" +"Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" +"created by PageMaker version 6.x and 7." +msgstr "" + +#: gnu/packages/libreoffice.scm:508 +msgid "Library for parsing the Microsoft Visio format" +msgstr "" + +#: gnu/packages/libreoffice.scm:509 +msgid "" +"Libvisio is a library that parses the file format of\n" +"Microsoft Visio documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:537 +msgid "ODF (Open Document Format) library" +msgstr "" + +#: gnu/packages/libreoffice.scm:538 +msgid "" +"Libodfgen is a library for generating documents in the\n" +"Open Document Format (ODF). It provides generator implementations for = all\n" +"document interfaces supported by librevenge:\n" +"text documents, vector drawings, presentations and spreadsheets." +msgstr "" + +#: gnu/packages/libreoffice.scm:568 +msgid "Import library for some old Macintosh text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:569 +msgid "" +"Libmwaw contains some import filters for old Macintosh\n" +"text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" +"spreadsheet documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:598 +msgid "Import library for Microsoft Works text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:599 +msgid "" +"Libwps is a library for importing files in the Microsoft\n" +"Works word processor file format." +msgstr "" + +#: gnu/packages/libreoffice.scm:617 +msgid "" +"Hunspell is a spell checker and morphological analyzer\n" +"library and program designed for languages with rich morphology and com= plex\n" +"word compounding or character encoding." +msgstr "" + +#: gnu/packages/libreoffice.scm:638 +msgid "Hyphenation library" +msgstr "" + +#: gnu/packages/libreoffice.scm:639 +msgid "" +"Hyphen is a hyphenation library using TeX hyphenation\n" +"patterns, which are pre-processed by a perl script." +msgstr "" + +#: gnu/packages/libreoffice.scm:662 +msgid "Thesaurus" +msgstr "" + +#: gnu/packages/libreoffice.scm:663 +msgid "" +"MyThes is a simple thesaurus that uses a structured text\n" +"data file and an index file with binary search to look up words and phr= ases\n" +"and to return information on pronunciations, meanings and synonyms." +msgstr "" + +#: gnu/packages/libreoffice.scm:829 +msgid "Office suite" +msgstr "" + +#: gnu/packages/libreoffice.scm:830 +msgid "" +"LibreOffice is a comprehensive office suite. It contains\n" +"a number of components: Writer, a word processor; Calc, a spreadsheet\n= " +"application; Impress, a presentation engine; Draw, a drawing and\n" +"flowcharting application; Base, a database and database frontend;\n" +"Math for editing mathematics." +msgstr "" + +#: gnu/packages/linux.scm:155 +msgid "GNU Linux-Libre kernel headers" +msgstr "" + +#: gnu/packages/linux.scm:156 +msgid "Headers of the Linux-Libre kernel." +msgstr "" + +#: gnu/packages/linux.scm:187 +msgid "Tools for loading and managing Linux kernel modules" +msgstr "" + +#: gnu/packages/linux.scm:189 +msgid "" +"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" +"`insmod', `lsmod', and more." +msgstr "" + +#: gnu/packages/linux.scm:322 +msgid "100% free redistribution of a cleaned Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:324 +msgid "" +"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" +"It has been modified to remove all non-free binary blobs." +msgstr "" + +#: gnu/packages/linux.scm:384 +msgid "Pluggable authentication modules for Linux" +msgstr "" + +#: gnu/packages/linux.scm:386 +msgid "" +"A *Free* project to implement OSF's RFC 86.0.\n" +"Pluggable authentication modules are small shared object files that can= \n" +"be used through the PAM API to perform tasks, like authenticating a use= r\n" +"at login. Local and dynamic reconfiguration are its key features." +msgstr "" + +#: gnu/packages/linux.scm:413 +msgid "Small utilities that use the proc filesystem" +msgstr "" + +#: gnu/packages/linux.scm:415 +msgid "" +"This PSmisc package is a set of some small useful utilities that\n" +"use the proc filesystem. We're not about changing the world, but\n" +"providing the system administrator with some help in common tasks." +msgstr "" + +#: gnu/packages/linux.scm:480 +msgid "Collection of utilities for the Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." +msgstr "" + +#: gnu/packages/linux.scm:522 +msgid "Utilities that give information about processes" +msgstr "" + +#: gnu/packages/linux.scm:524 +msgid "" +"Procps is the package that has a bunch of small useful utilities\n" +"that give information about processes using the Linux /proc file system= .\n" +"The package includes the programs ps, top, vmstat, w, kill, free,\n" +"slabtop, and skill." +msgstr "" + +#: gnu/packages/linux.scm:549 +msgid "Tools for working with USB devices, such as lsusb" +msgstr "" + +#: gnu/packages/linux.scm:551 +msgid "Tools for working with USB devices, such as lsusb." +msgstr "" + +#: gnu/packages/linux.scm:625 +msgid "Creating and checking ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." +msgstr "" + +#: gnu/packages/linux.scm:669 +msgid "Statically-linked fsck.* commands from e2fsprogs" +msgstr "" + +#: gnu/packages/linux.scm:671 +msgid "" +"This package provides statically-linked command of fsck.ext[234] taken\= n" +"from the e2fsprogs package. It is meant to be used in initrds." +msgstr "" + +#: gnu/packages/linux.scm:690 +msgid "Recover deleted files from ext2/3/4 partitions" +msgstr "" + +#: gnu/packages/linux.scm:692 +msgid "" +"Extundelete is a set of tools that can recover deleted files from an\n" +"ext3 or ext4 partition." +msgstr "" + +#: gnu/packages/linux.scm:724 +msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:726 +msgid "" +"The zerofree command scans the free blocks in an ext2 file system and\n= " +"fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" +"images more compressible." +msgstr "" + +#: gnu/packages/linux.scm:745 +msgid "System call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:747 +msgid "" +"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" +"trace of all the system calls made by a another process/program." +msgstr "" + +#: gnu/packages/linux.scm:768 +msgid "Library call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:770 +msgid "" +"ltrace intercepts and records dynamic library calls which are called by= \n" +"an executed process and the signals received by that process. It can a= lso\n" +"intercept and print the system calls executed by the program." +msgstr "" + +#: gnu/packages/linux.scm:790 +msgid "The Advanced Linux Sound Architecture libraries" +msgstr "" + +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 +msgid "" +"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" +"MIDI functionality to the Linux-based operating system." +msgstr "" + +#: gnu/packages/linux.scm:832 +msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" +msgstr "" + +#: gnu/packages/linux.scm:859 +msgid "Program to configure the Linux IP packet filtering rules" +msgstr "" + +#: gnu/packages/linux.scm:861 +msgid "" +"iptables is the userspace command line program used to configure the\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" +"packet filter." +msgstr "" + +#: gnu/packages/linux.scm:908 +msgid "Utilities for controlling TCP/IP networking and traffic in Linux" +msgstr "" + +#: gnu/packages/linux.scm:910 +msgid "" +"Iproute2 is a collection of utilities for controlling TCP/IP\n" +"networking and traffic with the Linux kernel.\n" +"\n" +"Most network configuration manuals still refer to ifconfig and route as= the\n" +"primary network configuration tools, but ifconfig is known to behave\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" +"to support most modern network technologies, as it doesn't use ifconfig= and\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" +"traffic control.\n" +"\n" +"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" +"consists of several tools, of which the most important are ip and tc. = ip\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" +"tools print detailed usage messages and are accompanied by a set of\n" +"manpages." +msgstr "" + +#: gnu/packages/linux.scm:1022 +msgid "Tools for controlling the network subsystem in Linux" +msgstr "" + +#: gnu/packages/linux.scm:1024 +msgid "" +"This package includes the important tools for controlling the network\n= " +"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" +"netstat, rarp and route. Additionally, this package contains utilities= \n" +"relating to particular network hardware types (plipconfig, slattach) an= d\n" +"advanced aspects of IP configuration (iptunnel, ipmaddr)." +msgstr "" + +#: gnu/packages/linux.scm:1061 +msgid "Library for working with POSIX capabilities" +msgstr "" + +#: gnu/packages/linux.scm:1063 +msgid "" +"Libcap2 provides a programming interface to POSIX capabilities on\n" +"Linux-based operating systems." +msgstr "" + +#: gnu/packages/linux.scm:1106 +msgid "Manipulate Ethernet bridges" +msgstr "" + +#: gnu/packages/linux.scm:1108 +msgid "" +"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" +"to connect two Ethernet segments together in a protocol independent way= .\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" +"a router). Since forwarding is done at Layer 2, all protocols can go\n= " +"transparently through a bridge." +msgstr "" + +#: gnu/packages/linux.scm:1130 +msgid "NetLink protocol library suite" +msgstr "" + +#: gnu/packages/linux.scm:1132 +msgid "" +"The libnl suite is a collection of libraries providing APIs to netlink\= n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" +"between the kernel and user space processes. It was designed to be a m= ore\n" +"flexible successor to ioctl to provide mainly networking related kernel= \n" +"configuration and monitoring interfaces." +msgstr "" + +#: gnu/packages/linux.scm:1162 +msgid "Tool for configuring wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:1164 +msgid "" +"iw is a new nl80211 based CLI configuration utility for wireless\n" +"devices. It replaces 'iwconfig', which is deprecated." +msgstr "" + +#: gnu/packages/linux.scm:1190 +msgid "Analyze power consumption on Intel-based laptops" +msgstr "" + +#: gnu/packages/linux.scm:1192 +msgid "" +"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" +"an interactive mode where the user can experiment various power managem= ent\n" +"settings for cases where the operating system has not enabled these\n" +"settings." +msgstr "" + +#: gnu/packages/linux.scm:1214 +msgid "Audio mixer for X and the console" +msgstr "" + +#: gnu/packages/linux.scm:1216 +msgid "" +"Aumix adjusts an audio mixer from X, the console, a terminal,\n" +"the command line or a script." +msgstr "" + +#: gnu/packages/linux.scm:1240 +msgid "Displays the IO activity of running processes" +msgstr "" + +#: gnu/packages/linux.scm:1242 +msgid "" +"Iotop is a Python program with a top like user interface to show the\n" +"processes currently causing I/O." +msgstr "" + +#: gnu/packages/linux.scm:1297 +msgid "Support file systems implemented in user space" +msgstr "" + +#: gnu/packages/linux.scm:1299 +msgid "" +"As a consequence of its monolithic design, file system code for Linux\n= " +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" +"user-space processes." +msgstr "" + +#: gnu/packages/linux.scm:1324 +msgid "User-space union file system" +msgstr "" + +#: gnu/packages/linux.scm:1326 +msgid "" +"UnionFS-FUSE is a flexible union file system implementation in user\n" +"space, using the FUSE library. Mounting a union file system allows you= to\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" +"UnionFS-FUSE additionally supports copy-on-write." +msgstr "" + +#: gnu/packages/linux.scm:1351 +msgid "User-space union file system (statically linked)" +msgstr "" + +#: gnu/packages/linux.scm:1396 +msgid "Mount remote file systems over SSH" +msgstr "" + +#: gnu/packages/linux.scm:1398 +msgid "" +"This is a file system client based on the SSH File Transfer Protocol.\n= " +"Since most SSH servers already support this protocol it is very easy to= set\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" +"file system is as easy as logging into the server with an SSH client." +msgstr "" + +#: gnu/packages/linux.scm:1427 +msgid "Tools for non-uniform memory access (NUMA) machines" +msgstr "" + +#: gnu/packages/linux.scm:1429 +msgid "" +"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" +"memory is not all in one place. The numactl program allows you to run = your\n" +"application program on specific CPU's and memory nodes. It does this b= y\n" +"supplying a NUMA memory policy to the operating system before running y= our\n" +"program.\n" +"\n" +"The package contains other commands, such as numademo, numastat and mem= hog.\n" +"The numademo command provides a quick overview of NUMA performance on y= our\n" +"system." +msgstr "" + +#: gnu/packages/linux.scm:1492 +msgid "Linux keyboard utilities and keyboard maps" +msgstr "" + +#: gnu/packages/linux.scm:1494 +msgid "" +"This package contains keytable files and keyboard utilities compatible\= n" +"for systems using the Linux kernel. This includes commands such as\n" +"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +msgstr "" + +#: gnu/packages/linux.scm:1513 +msgid "Monitor file accesses" +msgstr "" + +#: gnu/packages/linux.scm:1515 +msgid "" +"The inotify-tools packages provides a C library and command-line tools\= n" +"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +msgstr "" + +#: gnu/packages/linux.scm:1553 +msgid "Kernel module tools" +msgstr "" + +#: gnu/packages/linux.scm:1554 +msgid "" +"Kmod is a set of tools to handle common tasks with Linux\n" +"kernel modules like insert, remove, list, check properties, resolve\n" +"dependencies and aliases.\n" +"\n" +"These tools are designed on top of libkmod, a library that is shipped w= ith\n" +"kmod. The aim is to be compatible with tools, configurations and indic= es\n" +"from the module-init-tools project." +msgstr "" + +#: gnu/packages/linux.scm:1586 +msgid "Userspace device management" +msgstr "" + +#: gnu/packages/linux.scm:1587 +msgid "" +"Udev is a daemon which dynamically creates and removes\n" +"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" +"time." +msgstr "" + +#: gnu/packages/linux.scm:1659 +msgid "Logical volume management for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1661 +msgid "" +"LVM2 is the logical volume management tool set for Linux-based systems.= \n" +"This package includes the user-space libraries and tools, including the= " +"device\n" +"mapper. Kernel components are part of Linux-libre." +msgstr "" + +#: gnu/packages/linux.scm:1697 +msgid "Tools for manipulating Linux Wireless Extensions" +msgstr "" + +#: gnu/packages/linux.scm:1698 +msgid "" +"Wireless Tools are used to manipulate the now-deprecated\n" +"Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " +"Extension was an interface allowing you to set Wireless LAN specific\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" +"interface." +msgstr "" + +#: gnu/packages/linux.scm:1770 +msgid "Central regulatory domain agent (CRDA) for WiFi" +msgstr "" + +#: gnu/packages/linux.scm:1772 +msgid "" +"The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" +"communication between the kernel Linux and user space for regulatory\n" +"compliance." +msgstr "" + +#: gnu/packages/linux.scm:1818 +msgid "Wireless regulatory database" +msgstr "" + +#: gnu/packages/linux.scm:1820 +msgid "" +"This package contains the wireless regulatory database Central\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" +"country-specific regulations for the wireless spectrum." +msgstr "" + +#: gnu/packages/linux.scm:1891 +msgid "Utilities to read temperature/voltage/fan sensors" +msgstr "" + +#: gnu/packages/linux.scm:1893 +msgid "" +"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" +"you to access information from temperature, voltage, and fan speed sens= ors.\n" +"It works with most newer systems." +msgstr "" + +#: gnu/packages/linux.scm:1920 +msgid "I2C tools for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1922 +msgid "" +"The i2c-tools package contains a heterogeneous set of I2C tools for\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" +"EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" +"SMBus access." +msgstr "" + +#: gnu/packages/linux.scm:1958 +msgid "Hardware health information viewer" +msgstr "" + +#: gnu/packages/linux.scm:1960 +msgid "" +"Xsensors reads data from the libsensors library regarding hardware\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" +"in a digital read-out." +msgstr "" + +#: gnu/packages/linux.scm:2008 +msgid "Linux profiling with performance counters" +msgstr "" + +#: gnu/packages/linux.scm:2010 +msgid "" +"perf is a tool suite for profiling using hardware performance counters,= \n" +"with support in the Linux kernel. perf can instrument CPU performance\= n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" +"of lightweight profiling. This package contains the user-land tools an= d in\n" +"particular the 'perf' command." +msgstr "" + +#: gnu/packages/linux.scm:2033 +msgid "Simple tool for creating Linux namespace containers" +msgstr "" + +#: gnu/packages/linux.scm:2034 +msgid "" +"pflask is a simple tool for creating Linux namespace\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" +"an isolated container, created with the help of Linux namespaces. It i= s\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" +"thanks to the use of namespaces." +msgstr "" + +#: gnu/packages/linux.scm:2061 +msgid "Tune hard disk parameters for high performance" +msgstr "" + +#: gnu/packages/linux.scm:2063 +msgid "" +"Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" +"is for enabling irq-unmasking and IDE multiple-mode." +msgstr "" + +#: gnu/packages/linux.scm:2086 +msgid "Tool for enabling and disabling wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:2088 +msgid "" +"rfkill is a simple tool for accessing the rfkill device interface,\n" +"which is used to enable and disable wireless networking devices, typica= lly\n" +"WLAN, Bluetooth and mobile broadband." +msgstr "" + +#: gnu/packages/linux.scm:2107 +msgid "Daemon for delivering ACPI events to user-space programs" +msgstr "" + +#: gnu/packages/linux.scm:2109 +msgid "" +"acpid is designed to notify user-space programs of Advanced\n" +"Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" +"during the system boot, and will run as a background process. When an = ACPI\n" +"event is received from the kernel, acpid will examine the list of rules= \n" +"specified in /etc/acpi/events and execute the rules that match the even= t." +msgstr "" + +#: gnu/packages/linux.scm:2131 +msgid "System utilities based on Linux sysfs" +msgstr "" + +#: gnu/packages/linux.scm:2133 +msgid "" +"These are a set of utilities built upon sysfs, a virtual filesystem in\= n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" +"also contains the libsysfs library." +msgstr "" + +#: gnu/packages/linux.scm:2162 +msgid "System utilities based on Linux sysfs (version 1.x)" +msgstr "" + +#: gnu/packages/linux.scm:2185 +msgid "Utilities to get and set CPU frequency on Linux" +msgstr "" + +#: gnu/packages/linux.scm:2187 +msgid "" +"The cpufrequtils suite contains utilities to retrieve CPU frequency\n" +"information, and set the CPU frequency if supported, using the cpufreq\= n" +"capabilities of the Linux kernel." +msgstr "" + +#: gnu/packages/linux.scm:2206 +msgid "Interface library for the Linux IEEE1394 drivers" +msgstr "" + +#: gnu/packages/linux.scm:2208 +msgid "" +"Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" +"protocol in question." +msgstr "" + +#: gnu/packages/linux.scm:2232 +msgid "AV/C protocol library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2234 +msgid "" +"Libavc1394 is a programming interface to the AV/C specification from\n" +"the 1394 Trade Association. AV/C stands for Audio/Video Control." +msgstr "" + +#: gnu/packages/linux.scm:2256 +msgid "Isochronous streaming media library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2258 +msgid "" +"The libiec61883 library provides a higher level API for streaming DV,\n= " +"MPEG-2 and audio over Linux IEEE 1394." +msgstr "" + +#: gnu/packages/linux.scm:2298 +msgid "Tool for managing Linux Software RAID arrays" +msgstr "" + +#: gnu/packages/linux.scm:2300 +msgid "" +"mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" +"arrays when needed." +msgstr "" + +#: gnu/packages/linux.scm:2327 +msgid "Linux-native asynchronous I/O access library" +msgstr "" + +#: gnu/packages/linux.scm:2329 +msgid "" +"This library enables userspace to use Linux kernel asynchronous I/O\n" +"system calls, important for the performance of databases and other adva= nced\n" +"applications." +msgstr "" + +#: gnu/packages/linux.scm:2365 +msgid "Linux Bluetooth protocol stack" +msgstr "" + +#: gnu/packages/linux.scm:2367 +msgid "" +"BlueZ provides support for the core Bluetooth layers and protocols. It= \n" +"is flexible, efficient and uses a modular implementation." +msgstr "" + +#: gnu/packages/linux.scm:2423 +msgid "Mount exFAT file systems" +msgstr "" + +#: gnu/packages/linux.scm:2425 +msgid "" +"This package provides a FUSE-based file system that provides read and\n= " +"write access to exFAT devices." +msgstr "" + +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + +#: gnu/packages/lout.scm:109 +msgid "Document layout system" +msgstr "" + +#: gnu/packages/lout.scm:111 +msgid "" +"The Lout document formatting system reads a high-level description of\n= " +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" +"output file.\n" +"\n" +"Lout offers an unprecedented range of advanced features, including opti= mal\n" +"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" +"scaling, sorted indexes, bibliographic databases, running headers and\n= " +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" +"hyphenation (most European languages are supported), formatting of comp= uter\n" +"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" +"extended with definitions which are very much easier to write than trof= f of\n" +"TeX macros because Lout is a high-level, purely functional language, th= e\n" +"outcome of an eight-year research project that went back to the\n" +"beginning." +msgstr "" + +#: gnu/packages/messaging.scm:77 +msgid "Off-the-Record (OTR) Messaging Library and Toolkit" +msgstr "" + +#: gnu/packages/messaging.scm:79 +msgid "" +"OTR allows you to have private conversations over instant messaging by\= n" +"providing: (1) Encryption: No one else can read your instant messages. = (2)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" +"Deniability: The messages you send do not have digital signatures that = are\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" +"correspondent is assured the messages he sees are authentic and\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" +"keys, no previous conversation is compromised." +msgstr "" + +#: gnu/packages/messaging.scm:135 +msgid "IRC to instant messaging gateway" +msgstr "" + +#: gnu/packages/messaging.scm:136 +msgid "" +"BitlBee brings IM (instant messaging) to IRC clients, for\n" +"people who have an IRC client running all the time and don't want to ru= n an\n" +"additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" +"microblogging network (plus all other Twitter API compatible services l= ike\n" +"identi.ca and status.net)." +msgstr "" + +#: gnu/packages/messaging.scm:169 +msgid "Graphical IRC Client" +msgstr "" + +#: gnu/packages/messaging.scm:171 +msgid "" +"HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" +"users and to highlight messages. It checks spelling using available\n" +"dictionaries. HexChat can be extended with multiple addons." +msgstr "" + +#: gnu/packages/messaging.scm:237 +msgid "Lightweight Internet Relay Chat server for small networks" +msgstr "" + +#: gnu/packages/messaging.scm:239 +msgid "" +"ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" +"networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" +"supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." +msgstr "" + +#: gnu/packages/messaging.scm:310 +msgid "Graphical multi-protocol instant messaging client" +msgstr "" + +#: gnu/packages/messaging.scm:312 +msgid "" +"Pidgin is a modular instant messaging client that supports many popular= \n" +"chat protocols." +msgstr "" + +#: gnu/packages/messaging.scm:350 +msgid "Off-the-Record Messaging plugin for Pidgin" +msgstr "" + +#: gnu/packages/messaging.scm:352 +msgid "" +"Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" +"can read your instant messages. (2) Authentication: You are assured th= e\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" +"do not have digital signatures that are checkable by a third party. An= yone\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" +"you. However, during a conversation, your correspondent is assured the= \n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" +"If you lose control of your private keys, no previous conversation is\n= " +"compromised." +msgstr "" + +#: gnu/packages/messaging.scm:392 +msgid "IRC network bouncer" +msgstr "" + +#: gnu/packages/messaging.scm:393 +msgid "" +"ZNC is an IRC network bouncer or BNC. It can detach the\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" +"clients from different locations can connect to a single ZNC account\n" +"simultaneously and therefore appear under the same nickname on IRC." +msgstr "" + +#: gnu/packages/messaging.scm:415 +msgid "Non-blocking Jabber/XMPP module" +msgstr "" + +#: gnu/packages/messaging.scm:417 +msgid "" +"The goal of this python library is to provide a way for Python\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" +"was initially a fork of xmpppy, but is using non-blocking sockets." +msgstr "" + +#: gnu/packages/messaging.scm:474 +msgid "Jabber (XMPP) client" +msgstr "" + +#: gnu/packages/messaging.scm:475 +msgid "" +"Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" +"transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" +"end-to-end encryption support; XML console." +msgstr "" + +#: gnu/packages/mpd.scm:63 +msgid "Music Player Daemon client library" +msgstr "" + +#: gnu/packages/mpd.scm:64 +msgid "" +"A stable, documented, asynchronous API library for\n" +"interfacing MPD in the C, C++ & Objective C languages." +msgstr "" + +#: gnu/packages/mpd.scm:124 +msgid "Music Player Daemon" +msgstr "" + +#: gnu/packages/mpd.scm:125 +msgid "" +"Music Player Daemon (MPD) is a flexible, powerful,\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" +"can play a variety of sound files while being controlled by its network= \n" +"protocol." +msgstr "" + +#: gnu/packages/mpd.scm:148 +msgid "Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:149 +msgid "" +"MPC is a minimalist command line interface to MPD, the music\n" +"player daemon." +msgstr "" + +#: gnu/packages/mpd.scm:172 +msgid "Curses Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:173 +msgid "" +"ncmpc is a fully featured MPD client, which runs in a\n" +"terminal using ncurses." +msgstr "" + +#: gnu/packages/mpd.scm:211 +msgid "Featureful ncurses based MPD client inspired by ncmpc" +msgstr "" + +#: gnu/packages/mpd.scm:212 +msgid "" +"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" +"but it provides new useful features such as support for regular express= ions\n" +"for library searches, extended song format, items filtering, the abilit= y to\n" +"sort playlists, and a local filesystem browser." +msgstr "" + +#: gnu/packages/mpd.scm:235 +msgid "MPD client for track scrobbling" +msgstr "" + +#: gnu/packages/mpd.scm:236 +msgid "" +"mpdscribble is a Music Player Daemon client which submits\n" +"information about tracks being played to a scrobbler, such as Libre.FM.= " +msgstr "" + +#: gnu/packages/netpbm.scm:146 +msgid "Toolkit for manipulation of images" +msgstr "" + +#: gnu/packages/netpbm.scm:148 +msgid "" +"Netpbm is a toolkit for the manipulation of graphic images, including\n= " +"the conversion of images between a variety of different formats.\n" +"There are over 300 separate tools in the package including converters f= or\n" +"about 100 graphics formats." +msgstr "" + +#: gnu/packages/nettle.scm:51 +msgid "C library for low-level cryptographic functionality" +msgstr "" + +#: gnu/packages/nettle.scm:53 +msgid "" +"GNU Nettle is a low-level cryptographic library. It is designed to\n" +"fit in easily in almost any context. It can be easily included in\n" +"cryptographic toolkits for object-oriented languages or in applications= \n" +"themselves." +msgstr "" + +#: gnu/packages/networking.scm:52 +msgid "Teredo IPv6 tunneling software" +msgstr "" + +#: gnu/packages/networking.scm:54 +msgid "" +"Miredo is an implementation (client, relay, server) of the Teredo\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" +"residing in IPv4-only networks, even when they are behind a NAT device.= " +msgstr "" + +#: gnu/packages/networking.scm:76 +msgid "Open bidirectional communication channels from the command line" +msgstr "" + +#: gnu/packages/networking.scm:78 +msgid "" +"socat is a relay for bidirectional data transfer between two independen= t\n" +"data channels---files, pipes, devices, sockets, etc. It can create\n" +"\"listening\" sockets, named pipes, and pseudo terminals.\n" +"\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" +"line, to logically connect serial lines on different computers, or to\n= " +"establish a relatively secure environment (su and chroot) for running " +"client\n" +"or server shell scripts with network connections." +msgstr "" + +#: gnu/packages/networking.scm:102 +msgid "Library for message-based applications" +msgstr "" + +#: gnu/packages/networking.scm:104 +msgid "" +"The 0MQ lightweight messaging kernel is a library which extends the\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" +"messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" +"asynchronous message queues, multiple messaging patterns, message\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" +"more." +msgstr "" + +#: gnu/packages/networking.scm:125 +msgid "Library for Neighbor Discovery Protocol" +msgstr "" + +#: gnu/packages/networking.scm:127 +msgid "" +"libndp contains a library which provides a wrapper for IPv6 Neighbor\n" +"Discovery Protocol. It also provides a tool named ndptool for sending = and\n" +"receiving NDP messages." +msgstr "" + +#: gnu/packages/networking.scm:145 +msgid "Display or change Ethernet device settings" +msgstr "" + +#: gnu/packages/networking.scm:147 +msgid "" +"ethtool can be used to query and change settings such as speed,\n" +"auto-negotiation and checksum offload on many network devices, especial= ly\n" +"Ethernet devices." +msgstr "" + +#: gnu/packages/networking.scm:183 +msgid "Text based network interface status monitor" +msgstr "" + +#: gnu/packages/networking.scm:185 +msgid "" +"IFStatus is a simple, easy-to-use program for displaying commonly\n" +"needed/wanted real-time traffic statistics of multiple network\n" +"interfaces, with a simple and efficient view on the command line. It i= s\n" +"intended as a substitute for the PPPStatus and EthStatus projects." +msgstr "" + +#: gnu/packages/pdf.scm:101 +msgid "PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:103 +msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +msgstr "" + +#: gnu/packages/pdf.scm:112 +msgid "Qt4 frontend for the Poppler PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:145 +msgid "Python bindings for Poppler-Qt4" +msgstr "" + +#: gnu/packages/pdf.scm:147 +msgid "" +"This package provides Python bindings for the Qt4 interface of the\n" +"Poppler PDF rendering library." +msgstr "" + +#: gnu/packages/pdf.scm:194 +msgid "Viewer for PDF files based on the Motif toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:196 +msgid "Xpdf is a viewer for Portable Document Format (PDF) files." +msgstr "" + +#: gnu/packages/pdf.scm:226 +msgid "Comic book support for zathura (libarchive backend)" +msgstr "" + +#: gnu/packages/pdf.scm:227 +msgid "" +"The zathura-cb plugin adds comic book support to zathura\n" +"using libarchive." +msgstr "" + +#: gnu/packages/pdf.scm:257 +msgid "PS support for zathura (libspectre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:258 +msgid "" +"The zathura-ps plugin adds PS support to zathura\n" +"using libspectre." +msgstr "" + +#: gnu/packages/pdf.scm:289 +msgid "DjVu support for zathura (DjVuLibre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:290 +msgid "" +"The zathura-djvu plugin adds DjVu support to zathura\n" +"using the DjVuLibre library." +msgstr "" + +#: gnu/packages/pdf.scm:322 +msgid "PDF support for zathura (poppler backend)" +msgstr "" + +#: gnu/packages/pdf.scm:323 +msgid "" +"The zathura-pdf-poppler plugin adds PDF support to zathura\n" +"by using the poppler rendering engine." +msgstr "" + +#: gnu/packages/pdf.scm:361 +msgid "Lightweight keyboard-driven PDF viewer" +msgstr "" + +#: gnu/packages/pdf.scm:362 +msgid "" +"Zathura is a customizable document viewer. It provides a\n" +"minimalistic interface and an interface that mainly focuses on keyboard= \n" +"interaction." +msgstr "" + +#: gnu/packages/pdf.scm:401 +msgid "Tools to work with the PDF file format" +msgstr "" + +#: gnu/packages/pdf.scm:403 +msgid "" +"PoDoFo is a C++ library and set of command-line tools to work with the\= n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" +"for applications that wish to do lower level manipulation of PDF, such = as\n" +"extracting content or merging files." +msgstr "" + +#: gnu/packages/pdf.scm:464 +msgid "Lightweight PDF viewer and toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:466 +msgid "" +"MuPDF is a C library that implements a PDF and XPS parsing and\n" +"rendering engine. It is used primarily to render pages into bitmaps,\n= " +"but also provides support for other operations such as searching and\n" +"listing the table of contents and hyperlinks.\n" +"\n" +"The library ships with a rudimentary X11 viewer, and a set of command\n= " +"line tools for batch rendering (pdfdraw), rewriting files (pdfclean),\n= " +"and examining the file structure (pdfshow)." +msgstr "" + +#: gnu/packages/pdf.scm:506 +msgid "Command-line tools and library for transforming PDF files" +msgstr "" + +#: gnu/packages/pdf.scm:508 +msgid "" +"QPDF is a command-line program that does structural, content-preserving= \n" +"transformations on PDF files. It could have been called something like= \n" +"pdf-to-pdf. It includes support for merging and splitting PDFs and to\= n" +"manipulate the list of pages in a PDF file. It is not a PDF viewer or = a\n" +"program capable of converting PDF into other formats." +msgstr "" + +#: gnu/packages/pdf.scm:538 +msgid "Notetaking using a stylus" +msgstr "" + +#: gnu/packages/pdf.scm:540 +msgid "" +"Xournal is an application for notetaking, sketching, keeping a journal\= n" +"using a stylus." +msgstr "" + +#: gnu/packages/pem.scm:41 +msgid "Personal expenses manager" +msgstr "" + +#: gnu/packages/pem.scm:43 +msgid "" +"GNU Pem is a simple tool for tracking personal income and\n" +"expenses. It operates from the command line and it stores its data\n" +"in a basic text format in your home directory. It can easily print\n" +"reports of your spending on different expenses via a basic search\n" +"feature." +msgstr "" + +#: gnu/packages/perl.scm:110 +msgid "Implementation of the Perl programming language" +msgstr "" + +#: gnu/packages/perl.scm:112 +msgid "" +"Perl 5 is a highly capable, feature-rich programming language with over= \n" +"24 years of development." +msgstr "" + +#: gnu/packages/perl.scm:131 +msgid "Module for merging hierarchies using the C3 algorithm" +msgstr "" + +#: gnu/packages/perl.scm:132 +msgid "" +"This module implements the C3 algorithm, which aims to\n" +"provide a sane method resolution order under multiple inheritance." +msgstr "" + +#: gnu/packages/perl.scm:150 +msgid "Compute differences between two files or lists" +msgstr "" + +#: gnu/packages/perl.scm:151 +msgid "" +"This is a module for computing the difference between two\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" +"algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" +"program. It is guaranteed to find the *smallest possible* set of\n" +"differences." +msgstr "" + +#: gnu/packages/perl.scm:173 +msgid "Use shorter versions of class names" +msgstr "" + +#: gnu/packages/perl.scm:174 +msgid "" +"The alias module loads the class you specify and exports\n" +"into your namespace a subroutine that returns the class name. You can\= n" +"explicitly alias the class to another name or, if you prefer, you can d= o so\n" +"implicitly." +msgstr "" + +#: gnu/packages/perl.scm:196 +msgid "Configuration files and command line parsing" +msgstr "" + +#: gnu/packages/perl.scm:197 +msgid "" +"AppConfig is a bundle of Perl5 modules for reading\n" +"configuration files and parsing command line arguments." +msgstr "" + +#: gnu/packages/perl.scm:215 +msgid "Perl API to zip files" +msgstr "" + +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 +msgid "" +"The Archive::Zip module allows a Perl program to create,\n" +"manipulate, read, and write Zip archive files." +msgstr "" + +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 +msgid "Establish an ISA relationship with base classes at compile time" +msgstr "" + +#: gnu/packages/perl.scm:236 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" +"parent." +msgstr "" + +#: gnu/packages/perl.scm:261 +msgid "Execute code after a scope finished compilation" +msgstr "" + +#: gnu/packages/perl.scm:262 +msgid "" +"This module allows you to execute code when perl finished\n" +"compiling the surrounding scope." +msgstr "" + +#: gnu/packages/perl.scm:280 +msgid "Benchmarking with statistical confidence" +msgstr "" + +#: gnu/packages/perl.scm:282 +msgid "" +"The Benchmark::Timer class allows you to time portions of code\n" +"conveniently, as well as benchmark code by allowing timings of repeated= \n" +"trials. It is perfect for when you need more precise information about= the\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" +"but don't want to go all out and profile your code." +msgstr "" + +#: gnu/packages/perl.scm:307 +msgid "Bit vector library" +msgstr "" + +#: gnu/packages/perl.scm:308 +msgid "" +"Bit::Vector is an efficient C library which allows you to\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" +"matrices, all of arbitrary sizes. The package also includes an\n" +"object-oriented Perl module for accessing the C library from Perl, and\= n" +"optionally features overloaded operators for maximum ease of use. The = C\n" +"library can nevertheless be used stand-alone, without Perl." +msgstr "" + +#: gnu/packages/perl.scm:330 +msgid "Boolean support for Perl" +msgstr "" + +#: gnu/packages/perl.scm:331 +msgid "" +"This module provides basic Boolean support, by defining two\n" +"special objects: true and false." +msgstr "" + +#: gnu/packages/perl.scm:352 +msgid "Cache interface for Perl" +msgstr "" + +#: gnu/packages/perl.scm:353 +msgid "" +"The Cache modules are designed to assist a developer in\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" +"in web applications to store data locally to save repeated and redundan= t\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" +"runs of an application or invocations of a CGI-style script or simply a= s an\n" +"easy to use abstraction of the filesystem or shared memory." +msgstr "" + +#: gnu/packages/perl.scm:376 +msgid "Shared memory interprocess cache via mmap" +msgstr "" + +#: gnu/packages/perl.scm:377 +msgid "" +"A shared memory cache through an mmap'ed file. It's core is\n" +"written in C for performance. It uses fcntl locking to ensure multiple= \n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" +"algorithm to keep the most used entries in the cache." +msgstr "" + +#: gnu/packages/perl.scm:398 +msgid "Capture STDOUT and STDERR from Perl, XS or external programs" +msgstr "" + +#: gnu/packages/perl.scm:400 +msgid "" +"Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" +"sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" +"is captured while being passed through to the original file handles." +msgstr "" + +#: gnu/packages/perl.scm:420 +msgid "Executable comments for Perl" +msgstr "" + +#: gnu/packages/perl.scm:421 +msgid "" +"Carp::Assert is intended for a purpose like the ANSI C\n" +"library assert.h." +msgstr "" + +#: gnu/packages/perl.scm:443 +msgid "Convenience wrappers around Carp::Assert" +msgstr "" + +#: gnu/packages/perl.scm:444 +msgid "" +"Carp::Assert::More is a set of handy assertion functions for\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:464 +msgid "Report errors from a \"clan\" of modules" +msgstr "" + +#: gnu/packages/perl.scm:465 +msgid "" +"This module allows errors from a clan (or family) of modules\n" +"to appear to originate from the caller of the clan. This is necessary = in\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" +"the Carp.pm module doesn't help." +msgstr "" + +#: gnu/packages/perl.scm:489 +msgid "Automated accessor generation" +msgstr "" + +#: gnu/packages/perl.scm:490 +msgid "" +"This module automagically generates accessors/mutators for\n" +"your class." +msgstr "" + +#: gnu/packages/perl.scm:512 +msgid "Faster, but less expandable, chained accessors" +msgstr "" + +#: gnu/packages/perl.scm:513 +msgid "" +"A chained accessor is one that always returns the object\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" +"the same mk_accessors interface." +msgstr "" + +#: gnu/packages/perl.scm:539 +msgid "Build groups of accessors" +msgstr "" + +#: gnu/packages/perl.scm:540 +msgid "" +"This class lets you build groups of accessors that will call\n" +"different getters and setters." +msgstr "" + +#: gnu/packages/perl.scm:560 +msgid "Pragma to use the C3 method resolution order algorithm" +msgstr "" + +#: gnu/packages/perl.scm:561 +msgid "" +"This is pragma to change Perl 5's standard method resolution\n" +"order from depth-first left-to-right (a.k.a - pre-order) to the more\n" +"sophisticated C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:585 +msgid "Drop-in replacement for NEXT" +msgstr "" + +#: gnu/packages/perl.scm:586 +msgid "" +"This module is intended as a drop-in replacement for NEXT,\n" +"supporting the same interface, but using Class::C3 to do the hard work.= " +msgstr "" + +#: gnu/packages/perl.scm:610 +msgid "Load mix-ins or components to your C3-based class" +msgstr "" + +#: gnu/packages/perl.scm:611 +msgid "" +"This module will inject base classes to your module using\n" +"the Class::C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:629 +msgid "Inheritable, overridable class data" +msgstr "" + +#: gnu/packages/perl.scm:630 +msgid "" +"Class::Data::Inheritable is for creating accessor/mutators\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" +"subclasses and can be overridden." +msgstr "" + +#: gnu/packages/perl.scm:651 +msgid "Class for easy date and time manipulation" +msgstr "" + +#: gnu/packages/perl.scm:652 +msgid "" +"This module provides a general-purpose date and datetime\n" +"type for perl." +msgstr "" + +#: gnu/packages/perl.scm:671 +msgid "Utility methods for factory classes" +msgstr "" + +#: gnu/packages/perl.scm:672 +msgid "This module exports methods useful for factory classes." +msgstr "" + +#: gnu/packages/perl.scm:689 +msgid "Get information about a class and its structure" +msgstr "" + +#: gnu/packages/perl.scm:690 +msgid "" +"Class::Inspector allows you to get information about a\n" +"loaded class." +msgstr "" + +#: gnu/packages/perl.scm:718 +msgid "Working (require \"Class::Name\") and more" +msgstr "" + +#: gnu/packages/perl.scm:719 +msgid "" +"\"require EXPR\" only accepts Class/Name.pm style module\n" +"names, not Class::Name. For that, this module provides \"load_class\n" +"'Class::Name'\"." +msgstr "" + +#: gnu/packages/perl.scm:742 +msgid "XS implementation of parts of Class::Load" +msgstr "" + +#: gnu/packages/perl.scm:743 +msgid "" +"This module provides an XS implementation for portions of\n" +"Class::Load." +msgstr "" + +#: gnu/packages/perl.scm:762 +msgid "Create generic methods for OO Perl" +msgstr "" + +#: gnu/packages/perl.scm:763 +msgid "" +"This module solves the problem of having to continually\n" +"write accessor methods for your objects that perform standard tasks." +msgstr "" + +#: gnu/packages/perl.scm:784 +msgid "Moose-like method modifiers" +msgstr "" + +#: gnu/packages/perl.scm:785 +msgid "" +"Class::Method::Modifiers provides three modifiers: 'before',\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" +"is run in place of the original method, with a hook to easily call that= \n" +"original method." +msgstr "" + +#: gnu/packages/perl.scm:806 +msgid "Implementation of a singleton class for Perl" +msgstr "" + +#: gnu/packages/perl.scm:807 +msgid "" +"This module implements a Singleton class from which other\n" +"classes can be derived. By itself, the Class::Singleton module does ve= ry\n" +"little other than manage the instantiation of a single object." +msgstr "" + +#: gnu/packages/perl.scm:826 +msgid "Minimalist class construction" +msgstr "" + +#: gnu/packages/perl.scm:827 +msgid "" +"This module offers a minimalist class construction kit. It\n" +"uses no non-core modules for any recent Perl." +msgstr "" + +#: gnu/packages/perl.scm:847 +msgid "Unload a class" +msgstr "" + +#: gnu/packages/perl.scm:848 +msgid "" +"Class:Unload unloads a given class by clearing out its\n" +"symbol table and removing it from %INC." +msgstr "" + +#: gnu/packages/perl.scm:866 +msgid "Generate fast XS accessors without runtime compilation" +msgstr "" + +#: gnu/packages/perl.scm:867 +msgid "" +"Class::XSAccessor implements fast read, write, and\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" +"\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" +"Class::XSAccessor::Array implements the same interface for objects that= use\n" +"arrays for their internal representation." +msgstr "" + +#: gnu/packages/perl.scm:887 +msgid "Recursively copy Perl datatypes" +msgstr "" + +#: gnu/packages/perl.scm:889 +msgid "" +"This module provides a clone() method which makes recursive copies of\n= " +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" +"objects." +msgstr "" + +#: gnu/packages/perl.scm:910 +msgid "Sane defaults for Perl programs" +msgstr "" + +#: gnu/packages/perl.scm:911 +msgid "" +"This module implements some sane defaults for Perl programs,\n" +"as defined by two typical specimens of Perl coders." +msgstr "" + +#: gnu/packages/perl.scm:931 +msgid "Load configuration from different file formats" +msgstr "" + +#: gnu/packages/perl.scm:932 +msgid "" +"Config::Any provides a facility for Perl applications and\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" +"supports XML, YAML, JSON, Apache-style configuration, and Perl code." +msgstr "" + +#: gnu/packages/perl.scm:953 +msgid "Module to implement some AutoConf macros in Perl" +msgstr "" + +#: gnu/packages/perl.scm:954 +msgid "" +"Config::AutoConf is intended to provide the same\n" +"opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." +msgstr "" + +#: gnu/packages/perl.scm:972 +msgid "Generic Config Module" +msgstr "" + +#: gnu/packages/perl.scm:973 +msgid "" +"This module opens a config file and parses its contents for\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" +"the well known Apache config format and is 100% compatible with Apache\= n" +"configs, but you can also just use simple name/value pairs in your conf= ig\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" +"some enhancements such as here-documents, C-style comments, and multili= ne\n" +"options." +msgstr "" + +#: gnu/packages/perl.scm:999 +msgid "Preserve context during subroutine call" +msgstr "" + +#: gnu/packages/perl.scm:1000 +msgid "" +"This module runs code after a subroutine call, preserving\n" +"the context the subroutine would have seen if it were the last statemen= t in\n" +"the caller." +msgstr "" + +#: gnu/packages/perl.scm:1021 +msgid "Verify requirements in a CPAN::Meta object" +msgstr "" + +#: gnu/packages/perl.scm:1022 +msgid "" +"This module verifies if requirements described in a\n" +"CPAN::Meta object are present." +msgstr "" + +#: gnu/packages/perl.scm:1042 +msgid "JSON::XS for Cpanel" +msgstr "" + +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa." +msgstr "" + +#: gnu/packages/perl.scm:1061 +msgid "Random password generator" +msgstr "" + +#: gnu/packages/perl.scm:1062 +msgid "" +"Crypt::RandPasswd provides three functions that can be used\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" +"This code is a Perl implementation of the Automated Password Generator\= n" +"standard, like the program described in \"A Random Word Generator For\n= " +"Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" +"contained in Appendix A of FIPS Publication 181, \"Standard for Automat= ed\n" +"Password Generator\"." +msgstr "" + +#: gnu/packages/perl.scm:1105 +msgid "Library for genomic analysis" +msgstr "" + +#: gnu/packages/perl.scm:1106 +msgid "" +"Chaolin Zhang's Perl Library (czplib) contains assorted\n" +"functions and data structures for processing and analysing genomic and\= n" +"bioinformatics data." +msgstr "" + +#: gnu/packages/perl.scm:1125 +msgid "Pretty printing of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1126 +msgid "" +"This module provide functions that takes a list of values as\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" +"code that, when \"eval\"ed, produces a deep copy of the original argume= nts." +msgstr "" + +#: gnu/packages/perl.scm:1145 +msgid "Concise data dumper" +msgstr "" + +#: gnu/packages/perl.scm:1146 +msgid "" +"Data::Dumper::Concise provides a dumper with Less\n" +"indentation and newlines plus sub deparsing." +msgstr "" + +#: gnu/packages/perl.scm:1168 +msgid "Parse and validate simple name/value option pairs" +msgstr "" + +#: gnu/packages/perl.scm:1170 +msgid "Data::OptList provides a simple syntax for name/value option pair= s." +msgstr "" + +#: gnu/packages/perl.scm:1192 +msgid "Help when paging through sets of results" +msgstr "" + +#: gnu/packages/perl.scm:1193 +msgid "" +"When searching through large amounts of data, it is often\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" +"The maths behind this is unfortunately fiddly, hence this module." +msgstr "" + +#: gnu/packages/perl.scm:1215 +msgid "Structured tags datastructures" +msgstr "" + +#: gnu/packages/perl.scm:1217 +msgid "" +"This module is for manipulating data as hierarchical tag/value\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:1244 +msgid "N at a time iteration API" +msgstr "" + +#: gnu/packages/perl.scm:1245 +msgid "" +"This module tries to find middle ground between one at a\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" +"to avoid the overhead of implementing an iterative api when this isn't\= n" +"necessary, without breaking forward compatibility in case that becomes\= n" +"necessary later on." +msgstr "" + +#: gnu/packages/perl.scm:1270 +msgid "Dynamic generation of nested combinations of variants" +msgstr "" + +#: gnu/packages/perl.scm:1271 +msgid "" +"Data::Tumbler - Dynamic generation of nested combinations of\n" +"variants." +msgstr "" + +#: gnu/packages/perl.scm:1297 +msgid "Visitor style traversal of Perl data structures" +msgstr "" + +#: gnu/packages/perl.scm:1298 +msgid "" +"This module is a simple visitor implementation for Perl\n" +"values. It has a main dispatcher method, visit, which takes a single p= erl\n" +"value and then calls the methods appropriate for that value. It can\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" +"support for per-object behavior, circular structures, visiting tied\n" +"structures, and all ref types (hashes, arrays, scalars, code, globs)." +msgstr "" + +#: gnu/packages/perl.scm:1323 +msgid "Gregorian calendar date calculations" +msgstr "" + +#: gnu/packages/perl.scm:1324 +msgid "" +"This package consists of a Perl module for date calculations\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" +"standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" +"applicable)." +msgstr "" + +#: gnu/packages/perl.scm:1348 +msgid "XS wrapper for Date::Calc" +msgstr "" + +#: gnu/packages/perl.scm:1349 +msgid "" +"Date::Calc::XS is an XS wrapper and C library plug-in for\n" +"Date::Calc." +msgstr "" + +#: gnu/packages/perl.scm:1373 +msgid "Date manipulation routines" +msgstr "" + +#: gnu/packages/perl.scm:1374 +msgid "" +"Date::Manip is a series of modules for common date/time\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" +"time from another, or parsing international times." +msgstr "" + +#: gnu/packages/perl.scm:1402 +msgid "Date and time object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1403 +msgid "" +"DateTime is a class for the representation of date/time\n" +"combinations. It represents the Gregorian calendar, extended backwards= in\n" +"time before its creation (in 1582)." +msgstr "" + +#: gnu/packages/perl.scm:1428 +msgid "DateTime set objects" +msgstr "" + +#: gnu/packages/perl.scm:1429 +msgid "" +"The DateTime::Set module provides a date/time sets\n" +"implementation. It allows, for example, the generation of groups of da= tes,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" +"within a time range." +msgstr "" + +#: gnu/packages/perl.scm:1452 +msgid "DateTime rfc2445 recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1453 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for RFC 2445 style recurrences." +msgstr "" + +#: gnu/packages/perl.scm:1474 +msgid "DateTime::Set extension for basic recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1475 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" +"\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." +msgstr "" + +#: gnu/packages/perl.scm:1500 +msgid "Create DateTime parser classes and objects" +msgstr "" + +#: gnu/packages/perl.scm:1501 +msgid "" +"DateTime::Format::Builder creates DateTime parsers. Many\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" +"to do this without writing reams of structural code." +msgstr "" + +#: gnu/packages/perl.scm:1528 +msgid "Parse data/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1529 +msgid "" +"DateTime::Format::Flexible attempts to take any string you\n" +"give it and parse it into a DateTime object." +msgstr "" + +#: gnu/packages/perl.scm:1555 +msgid "Parse and format iCal datetime and duration strings" +msgstr "" + +#: gnu/packages/perl.scm:1556 +msgid "" +"This module understands the ICal date/time and duration\n" +"formats, as defined in RFC 2445. It can be used to parse these formats= in\n" +"order to create the appropriate objects." +msgstr "" + +#: gnu/packages/perl.scm:1588 +msgid "Machine-readable date/time with natural parsing" +msgstr "" + +#: gnu/packages/perl.scm:1589 +msgid "" +"DateTime::Format::Natural takes a string with a human\n" +"readable date/time and creates a machine readable one by applying natur= al\n" +"parsing logic." +msgstr "" + +#: gnu/packages/perl.scm:1613 +msgid "Parse and format strp and strf time patterns" +msgstr "" + +#: gnu/packages/perl.scm:1614 +msgid "" +"This module implements most of `strptime(3)`, the POSIX\n" +"function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" +"takes a string and a pattern and returns the `DateTime` object associat= ed." +msgstr "" + +#: gnu/packages/perl.scm:1639 +msgid "Localization support for DateTime.pm" +msgstr "" + +#: gnu/packages/perl.scm:1640 +msgid "" +"The DateTime::Locale modules provide localization data for\n" +"the DateTime.pm class." +msgstr "" + +#: gnu/packages/perl.scm:1667 +msgid "Time zone object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1668 +msgid "" +"This class is the base class for all time zone objects. A\n" +"time zone is represented internally as a set of observances, each of wh= ich\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" +"DateTime module, this module does not do much. It's primary interface = is\n" +"through a DateTime object, and most users will not need to directly use= \n" +"DateTime::TimeZone methods." +msgstr "" + +#: gnu/packages/perl.scm:1698 +msgid "Parse date/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1699 +msgid "" +"DateTimeX::Easy uses a variety of DateTime::Format packages\n" +"to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" +"edges (mainly concerning timezone detection and selection)." +msgstr "" + +#: gnu/packages/perl.scm:1720 +msgid "Meatier version of caller" +msgstr "" + +#: gnu/packages/perl.scm:1721 +msgid "Devel::Caller provides meatier version of caller." +msgstr "" + +#: gnu/packages/perl.scm:1739 +msgid "Check that a command is available" +msgstr "" + +#: gnu/packages/perl.scm:1740 +msgid "" +"Devel::CheckBin is a perl module that checks whether a\n" +"particular command is available." +msgstr "" + +#: gnu/packages/perl.scm:1760 +msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" +msgstr "" + +#: gnu/packages/perl.scm:1761 +msgid "" +"Devel::GlobalDestruction provides a function returning the\n" +"equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." +msgstr "" + +#: gnu/packages/perl.scm:1781 +msgid "Alias lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:1782 +msgid "" +"Devel::LexAlias provides the ability to alias a lexical\n" +"variable in a subroutines scope to one of your choosing." +msgstr "" + +#: gnu/packages/perl.scm:1804 +msgid "Introspect overloaded operators" +msgstr "" + +#: gnu/packages/perl.scm:1805 +msgid "" +"Devel::OverloadInfo returns information about overloaded\n" +"operators for a given class (or object), including where in the inherit= ance\n" +"hierarchy the overloads are declared and where the code implementing it= is." +msgstr "" + +#: gnu/packages/perl.scm:1832 +msgid "Partial dumping of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1833 +msgid "" +"This module is a data dumper optimized for logging of\n" +"arbitrary parameters." +msgstr "" + +#: gnu/packages/perl.scm:1851 +msgid "Object representing a stack trace" +msgstr "" + +#: gnu/packages/perl.scm:1852 +msgid "" +"The Devel::StackTrace module contains two classes,\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" +"information that can be retrieved via Perl's caller() function, as well= as\n" +"providing a simple interface to this data." +msgstr "" + +#: gnu/packages/perl.scm:1874 +msgid "Displays stack trace in HTML" +msgstr "" + +#: gnu/packages/perl.scm:1875 +msgid "" +"Devel::StackTrace::AsHTML adds as_html method to\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" +"snippet context and function parameters. If you call it on an instance= of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" +"each stack frame." +msgstr "" + +#: gnu/packages/perl.scm:1896 +msgid "Dump symbol names or the symbol table" +msgstr "" + +#: gnu/packages/perl.scm:1897 +msgid "Devel::Symdump provides access to the perl symbol table." +msgstr "" + +#: gnu/packages/perl.scm:1914 +msgid "Keyed-Hashing for Message Authentication" +msgstr "" + +#: gnu/packages/perl.scm:1915 +msgid "" +"The Digest::HMAC module follows the common Digest::\n" +"interface for the RFC 2104 HMAC mechanism." +msgstr "" + +#: gnu/packages/perl.scm:1931 +msgid "Perl implementation of the SHA-1 message digest algorithm" +msgstr "" + +#: gnu/packages/perl.scm:1933 +msgid "" +"This package provides 'Digest::SHA1', an implementation of the NIST\n" +"SHA-1 message digest algorithm for use by Perl programs." +msgstr "" + +#: gnu/packages/perl.scm:1955 +msgid "Declare version conflicts for your dist" +msgstr "" + +#: gnu/packages/perl.scm:1956 +msgid "" +"This module allows you to specify conflicting versions of\n" +"modules separately and deal with them after the module is done installi= ng." +msgstr "" + +#: gnu/packages/perl.scm:1974 +msgid "OO-ish Error/Exception handling for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1975 +msgid "" +"The Error package provides two interfaces. Firstly Error\n" +"provides a procedural interface to exception handling. Secondly Error = is a\n" +"base class for errors/exceptions that can either be thrown, for subsequ= ent\n" +"catch, or can simply be recorded." +msgstr "" + +#: gnu/packages/perl.scm:2000 +msgid "Safely and cleanly create closures via string eval" +msgstr "" + +#: gnu/packages/perl.scm:2001 +msgid "" +"String eval is often used for dynamic code generation. For\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" +"them in $@@ instead. This module attempts to solve these problems. It= \n" +"provides an eval_closure function, which evals a string in a clean\n" +"environment, other than a fixed list of specified variables. Compilati= on\n" +"errors are rethrown automatically." +msgstr "" + +#: gnu/packages/perl.scm:2030 +msgid "Allows you to declare real exception classes in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2031 +msgid "" +"Exception::Class allows you to declare exception hierarchies\n" +"in your modules in a \"Java-esque\" manner." +msgstr "" + +#: gnu/packages/perl.scm:2047 +msgid "Lightweight exporting of functions and variables" +msgstr "" + +#: gnu/packages/perl.scm:2049 +msgid "" +"Exporter::Lite is an alternative to Exporter, intended to provide a\n" +"lightweight subset of the most commonly-used functionality. It support= s\n" +"import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." +msgstr "" + +#: gnu/packages/perl.scm:2070 +msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" +msgstr "" + +#: gnu/packages/perl.scm:2071 +msgid "" +"Exporter::Tiny supports many of Sub::Exporter's\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" +"only about 40% as many lines of code and with zero non-core dependencie= s." +msgstr "" + +#: gnu/packages/perl.scm:2094 +msgid "Build.PL install path logic made easy" +msgstr "" + +#: gnu/packages/perl.scm:2095 +msgid "" +"This module tries to make install path resolution as easy as\n" +"possible." +msgstr "" + +#: gnu/packages/perl.scm:2113 +msgid "Wrapper for perl's configuration" +msgstr "" + +#: gnu/packages/perl.scm:2114 +msgid "" +"ExtUtils::Config is an abstraction around the %Config hash.\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" +"it ties together a family of modern toolchain modules." +msgstr "" + +#: gnu/packages/perl.scm:2133 +msgid "Various portability utilities for module builders" +msgstr "" + +#: gnu/packages/perl.scm:2134 +msgid "" +"This module provides various portable helper functions for\n" +"module building modules." +msgstr "" + +#: gnu/packages/perl.scm:2164 +msgid "Watch for changes to files" +msgstr "" + +#: gnu/packages/perl.scm:2165 +msgid "" +"This module provides a class to monitor a directory for\n" +"changes made to any file." +msgstr "" + +#: gnu/packages/perl.scm:2183 +msgid "Recursively copy files and directories" +msgstr "" + +#: gnu/packages/perl.scm:2184 +msgid "" +"This module has 3 functions: one to copy files only, one to\n" +"copy directories only, and one to do either depending on the argument's= \n" +"type." +msgstr "" + +#: gnu/packages/perl.scm:2206 +msgid "Alternative interface to File::Find" +msgstr "" + +#: gnu/packages/perl.scm:2207 +msgid "" +"File::Find::Rule is a friendlier interface to File::Find.\n" +"It allows you to build rules which specify the desired files and\n" +"directories." +msgstr "" + +#: gnu/packages/perl.scm:2230 +msgid "Common rules for searching for Perl things" +msgstr "" + +#: gnu/packages/perl.scm:2231 +msgid "" +"File::Find::Rule::Perl provides methods for finding various\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" +"in various parts of the CPAN ecosystem." +msgstr "" + +#: gnu/packages/perl.scm:2254 +msgid "Find your home and other directories on any platform" +msgstr "" + +#: gnu/packages/perl.scm:2255 +msgid "" +"File::HomeDir is a module for locating the directories that\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" +"that arise trying to find them consistently across a wide variety of\n" +"platforms." +msgstr "" + +#: gnu/packages/perl.scm:2282 +msgid "" +"Perl extension for crawling directory trees and compiling\n" +"lists of files" +msgstr "" + +#: gnu/packages/perl.scm:2285 +msgid "" +"The File::List module crawls the directory tree starting at the\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" +"matching a regular expression." +msgstr "" + +#: gnu/packages/perl.scm:2304 +msgid "Remove files and directories in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2305 +msgid "" +"File::Remove::remove removes files and directories. It acts\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" +"files, it will not remove directories; this module remedies that. It a= lso\n" +"accepts wildcards, * and ?, as arguments for file names." +msgstr "" + +#: gnu/packages/perl.scm:2329 +msgid "Locate per-dist and per-module shared files" +msgstr "" + +#: gnu/packages/perl.scm:2330 +msgid "" +"The intent of File::ShareDir is to provide a companion to\n" +"Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" +"module to have access to a large amount of read-only data that is store= d on\n" +"the file-system at run-time. Once the files have been installed to the= \n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" +"the installation." +msgstr "" + +#: gnu/packages/perl.scm:2352 +msgid "Install shared files" +msgstr "" + +#: gnu/packages/perl.scm:2353 +msgid "" +"File::ShareDir::Install allows you to install read-only data\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" +"allows you to locate these files after installation." +msgstr "" + +#: gnu/packages/perl.scm:2372 +msgid "Reading/Writing/Modifying of complete files" +msgstr "" + +#: gnu/packages/perl.scm:2373 +msgid "" +"File::Slurp provides subroutines to read or write entire\n" +"files with a simple call. It also has a subroutine for reading the lis= t of\n" +"file names in a directory." +msgstr "" + +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 +msgid "Return name and handle of a temporary file safely" +msgstr "" + +#: gnu/packages/perl.scm:2413 +msgid "" +"File::Temp can be used to create and open temporary files in\n" +"a safe way." +msgstr "" + +#: gnu/packages/perl.scm:2430 +msgid "Portable implementation of the `which' utility" +msgstr "" + +#: gnu/packages/perl.scm:2432 +msgid "" +"File::Which was created to be able to get the paths to executable\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" +"shell." +msgstr "" + +#: gnu/packages/perl.scm:2459 +msgid "Getopt::Long, but simpler and more powerful" +msgstr "" + +#: gnu/packages/perl.scm:2460 +msgid "" +"Getopt::Long::Descriptive is yet another Getopt library.\n" +"It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" +"avoid making you think about its huge array of options. It also provid= es\n" +"usage (help) messages, data validation, and a few other useful features= ." +msgstr "" + +#: gnu/packages/perl.scm:2478 +msgid "Table-driven argument parsing for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2480 +msgid "" +"Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " +"vaguely inspired by John Ousterhout's Tk_ParseArgv." +msgstr "" + +#: gnu/packages/perl.scm:2500 +msgid "Merge arbitrarily deep hashes into a single hash" +msgstr "" + +#: gnu/packages/perl.scm:2501 +msgid "" +"Hash::Merge merges two arbitrarily deep hashes into a single\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" +"value conflicts. The hash is followed recursively, so that deeply nest= ed\n" +"hashes that are at the same level will be merged when the parent hashes= are\n" +"merged." +msgstr "" + +#: gnu/packages/perl.scm:2523 +msgid "Store multiple values per key" +msgstr "" + +#: gnu/packages/perl.scm:2524 +msgid "" +"Hash::MultiValue is an object (and a plain hash reference)\n" +"that may contain multiple values per key, inspired by MultiDict of WebO= b." +msgstr "" + +#: gnu/packages/perl.scm:2544 +msgid "Import packages into other packages" +msgstr "" + +#: gnu/packages/perl.scm:2545 +msgid "" +"Writing exporters is a pain. Some use Exporter, some use\n" +"Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" +"exporters don't provide a consistent API for this, and pragmas need to = have\n" +"their import method called directly, since they effect the current unit= of\n" +"compilation. Import::Into provides global methods to make this painles= s." +msgstr "" + +#: gnu/packages/perl.scm:2567 +msgid "Use modules in inc/ if newer than installed" +msgstr "" + +#: gnu/packages/perl.scm:2568 +msgid "" +"The inc::latest module helps bootstrap configure-time\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" +"inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." +msgstr "" + +#: gnu/packages/perl.scm:2587 +msgid "Utilities for interactive I/O" +msgstr "" + +#: gnu/packages/perl.scm:2588 +msgid "" +"This module provides three utility subroutines that make it\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" +"and busy()." +msgstr "" + +#: gnu/packages/perl.scm:2607 +msgid "Emulate file interface for in-core strings" +msgstr "" + +#: gnu/packages/perl.scm:2608 +msgid "" +"IO::String is an IO::File (and IO::Handle) compatible class\n" +"that reads or writes data from in-core strings." +msgstr "" + +#: gnu/packages/perl.scm:2626 +msgid "IO:: interface for reading/writing an array of lines" +msgstr "" + +#: gnu/packages/perl.scm:2627 +msgid "" +"This toolkit primarily provides modules for performing both\n" +"traditional and object-oriented i/o) on things *other* than normal\n" +"filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " +msgstr "" + +#: gnu/packages/perl.scm:2645 +msgid "Perl interface to pseudo ttys" +msgstr "" + +#: gnu/packages/perl.scm:2647 +msgid "" +"This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" +"pseudo ttys." +msgstr "" + +#: gnu/packages/perl.scm:2675 +msgid "Run system() and background procs w/ piping, redirs, ptys" +msgstr "" + +#: gnu/packages/perl.scm:2676 +msgid "" +"IPC::Run allows you run and interact with child processes\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" +"are supported and may be mixed. Likewise, functional and OO API styles= are\n" +"both supported and may be mixed." +msgstr "" + +#: gnu/packages/perl.scm:2694 +msgid "Run a subprocess with input/output redirection" +msgstr "" + +#: gnu/packages/perl.scm:2696 +msgid "" +"The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" +"99% of the need for using system, qx, and open3 with a simple, extremel= y\n" +"Perlish API and none of the bloat and rarely used features of IPC::Run.= " +msgstr "" + +#: gnu/packages/perl.scm:2720 +msgid "Lightweight interface to shared memory" +msgstr "" + +#: gnu/packages/perl.scm:2721 +msgid "" +"IPC::ShareLite provides a simple interface to shared memory,\n" +"allowing data to be efficiently communicated between processes." +msgstr "" + +#: gnu/packages/perl.scm:2741 +msgid "JSON encoder/decoder for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2742 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa using either JSON::XS or JSON::PP." +msgstr "" + +#: gnu/packages/perl.scm:2767 +msgid "Wrapper for Perl JSON classes" +msgstr "" + +#: gnu/packages/perl.scm:2769 +msgid "" +"This module tries to provide a coherent API to bring together the\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" +"any JSON API and have it work regardless of which JSON module is actual= ly\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:2793 +msgid "Cpanel::JSON::XS with fallback" +msgstr "" + +#: gnu/packages/perl.scm:2794 +msgid "" +"This module first checks to see if either Cpanel::JSON::XS\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" +"either uses the first module it finds or throws an error." +msgstr "" + +#: gnu/packages/perl.scm:2817 +msgid "JSON serialising/deserialising for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 +msgid "Combination of List::Util and List::MoreUtils" +msgstr "" + +#: gnu/packages/perl.scm:2890 +msgid "" +"This module exports all of the functions that either\n" +"List::Util or List::MoreUtils defines, with preference to List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2914 +msgid "Provide the stuff missing in List::Util" +msgstr "" + +#: gnu/packages/perl.scm:2915 +msgid "" +"List::MoreUtils provides some trivial but commonly needed\n" +"functionality on lists which is not going to go into List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2933 +msgid "Expiry plug-in for Memoize that adds LRU cache expiration" +msgstr "" + +#: gnu/packages/perl.scm:2934 +msgid "" +"This module implements an expiry policy for Memoize that\n" +"follows LRU semantics, that is, the last n results, where n is specifie= d as\n" +"the argument to the CACHESIZE parameter, will be cached." +msgstr "" + +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 +msgid "Definition of MIME types" +msgstr "" + +#: gnu/packages/perl.scm:2973 +msgid "" +"This module provides a list of known mime-types, combined\n" +"from various sources. For instance, it contains all IANA types and the= \n" +"knowledge of Apache." +msgstr "" + +#: gnu/packages/perl.scm:3002 +msgid "Tiny replacement for Module::Build" +msgstr "" + +#: gnu/packages/perl.scm:3003 +msgid "" +"Many Perl distributions use a Build.PL file instead of a\n" +"Makefile.PL file to drive distribution configuration, build, test and\n= " +"installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" +"build system. This module provides a simple, lightweight, drop-in\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" +"has less than 120, yet supports the features needed by most distributio= ns." +msgstr "" + +#: gnu/packages/perl.scm:3025 +msgid "Find and use installed modules in a (sub)category" +msgstr "" + +#: gnu/packages/perl.scm:3026 +msgid "" +"Module::Find lets you find and use modules in categories.\n" +"This can be useful for auto-detecting driver or plugin modules. You ca= n\n" +"differentiate between looking in the category itself or in all\n" +"subcategories." +msgstr "" + +#: gnu/packages/perl.scm:3052 +msgid "Loads alternate underlying implementations for a module" +msgstr "" + +#: gnu/packages/perl.scm:3053 +msgid "" +"This module abstracts out the process of choosing one of\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" +"implementations." +msgstr "" + +#: gnu/packages/perl.scm:3091 +msgid "Standalone, extensible Perl module installer" +msgstr "" + +#: gnu/packages/perl.scm:3092 +msgid "" +"Module::Install is a package for writing installers for\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" +"strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" +"installation version 5.005 or newer." +msgstr "" + +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 +msgid "Perl runtime module handling" +msgstr "" + +#: gnu/packages/perl.scm:3134 +msgid "" +"The functions exported by this module deal with runtime\n" +"handling of Perl modules, which are normally handled at compile time." +msgstr "" + +#: gnu/packages/perl.scm:3157 +msgid "Provide information on conflicts for Module::Runtime" +msgstr "" + +#: gnu/packages/perl.scm:3158 +msgid "" +"This module provides conflicts checking for Module::Runtime,\n" +"which had a recent release that broke some versions of Moose. It is ca= lled\n" +"from Moose::Conflicts and moose-outdated." +msgstr "" + +#: gnu/packages/perl.scm:3179 +msgid "Recursively scan Perl code for dependencies" +msgstr "" + +#: gnu/packages/perl.scm:3180 +msgid "" +"Module::ScanDeps is a module to recursively scan Perl\n" +"programs for dependencies." +msgstr "" + +#: gnu/packages/perl.scm:3200 +msgid "Module name tools and transformations" +msgstr "" + +#: gnu/packages/perl.scm:3201 +msgid "" +"This module provides a few useful functions for manipulating\n" +"module names. Its main aim is to centralise some of the functions comm= only\n" +"used by modules that manipulate other modules in some way, like convert= ing\n" +"module names to relative paths." +msgstr "" + +#: gnu/packages/perl.scm:3231 +msgid "Minimalist Object Orientation (with Moose compatibility)" +msgstr "" + +#: gnu/packages/perl.scm:3232 +msgid "" +"Moo is an extremely light-weight Object Orientation system.\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" +"that avoids the details of Perl's object system. Moo contains a subset= of\n" +"Moose and is optimised for rapid startup." +msgstr "" + +#: gnu/packages/perl.scm:3308 +msgid "Postmodern object system for Perl 5" +msgstr "" + +#: gnu/packages/perl.scm:3310 +msgid "" +"Moose is a complete object system for Perl 5. It provides keywords for= \n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" +"Moose, you define your class declaratively, without needing to know abo= ut\n" +"blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" +"A class definition with Moose reads like a list of very concise English= \n" +"sentences." +msgstr "" + +#: gnu/packages/perl.scm:3338 +msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" +msgstr "" + +#: gnu/packages/perl.scm:3339 +msgid "" +"This module attempts to emulate the behavior of\n" +"Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" +"private methods are not." +msgstr "" + +#: gnu/packages/perl.scm:3371 +msgid "Moose role for processing command line options" +msgstr "" + +#: gnu/packages/perl.scm:3372 +msgid "" +"This is a Moose role which provides an alternate constructor\n" +"for creating objects using parameters passed in from the command line." +msgstr "" + +#: gnu/packages/perl.scm:3393 +msgid "Mark overload code symbols as methods" +msgstr "" + +#: gnu/packages/perl.scm:3394 +msgid "" +"MooseX::MarkAsMethods allows one to easily mark certain\n" +"functions as Moose methods. This will allow other packages such as\n" +"namespace::autoclean to operate without blowing away your overloads. A= fter\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" +"being methods, and class extension as well as composition from roles wi= th\n" +"overloads will \"just work\"." +msgstr "" + +#: gnu/packages/perl.scm:3424 +msgid "Code attribute introspection" +msgstr "" + +#: gnu/packages/perl.scm:3425 +msgid "" +"This module allows code attributes of methods to be\n" +"introspected using Moose meta method objects." +msgstr "" + +#: gnu/packages/perl.scm:3451 +msgid "Subclassing of non-Moose classes" +msgstr "" + +#: gnu/packages/perl.scm:3452 +msgid "" +"MooseX::NonMoose allows for easily subclassing non-Moose\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" +"as setting up proper inheritance from Moose::Object and installing (and= \n" +"inlining, at make_immutable time) a constructor that makes sure things = like\n" +"BUILD methods are called. It tries to be as non-intrusive as possible.= " +msgstr "" + +#: gnu/packages/perl.scm:3481 +msgid "Extension of Params::Validate using Moose's types" +msgstr "" + +#: gnu/packages/perl.scm:3482 +msgid "" +"This module fills a gap in Moose by adding method parameter\n" +"validation to Moose." +msgstr "" + +#: gnu/packages/perl.scm:3503 +msgid "Apply roles to a related Perl class" +msgstr "" + +#: gnu/packages/perl.scm:3504 +msgid "" +"This module applies roles to make a subclass instead of\n" +"manually setting up a subclass." +msgstr "" + +#: gnu/packages/perl.scm:3531 +msgid "Moose roles with composition parameters" +msgstr "" + +#: gnu/packages/perl.scm:3532 +msgid "" +"Because Moose roles serve many different masters, they\n" +"usually provide only the least common denominator of functionality. To= \n" +"empower roles further, more configurability than -alias and -excludes i= s\n" +"required. Perhaps your role needs to know which method to call when it= is\n" +"done processing, or what default value to use for its url attribute.\n" +"Parameterized roles offer a solution to these (and other) kinds of prob= lems." +msgstr "" + +#: gnu/packages/perl.scm:3558 +msgid "Roles which support overloading" +msgstr "" + +#: gnu/packages/perl.scm:3559 +msgid "" +"MooseX::Role::WithOverloading allows you to write a\n" +"Moose::Role which defines overloaded operators and allows those overloa= d\n" +"methods to be composed into the classes/roles/instances it's compiled t= o,\n" +"where plain Moose::Roles would lose the overloading." +msgstr "" + +#: gnu/packages/perl.scm:3581 +msgid "Name your accessors foo() and set_foo()" +msgstr "" + +#: gnu/packages/perl.scm:3582 +msgid "" +"This module does not provide any methods. Simply loading it\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" +"accessor, while set methods are prefixed with \"_set_\"." +msgstr "" + +#: gnu/packages/perl.scm:3608 +msgid "Strict object constructors for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3609 +msgid "" +"Simply loading this module makes your constructors\n" +"\"strict\". If your constructor is called with an attribute init argum= ent\n" +"that your class does not declare, then it calls Moose->throw_error()." +msgstr "" + +#: gnu/packages/perl.scm:3637 +msgid "Trait loading and resolution for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3638 +msgid "" +"Adds support on top of MooseX::Traits for class precedence\n" +"search for traits and some extra attributes." +msgstr "" + +#: gnu/packages/perl.scm:3664 +msgid "Organise your Moose types in libraries" +msgstr "" + +#: gnu/packages/perl.scm:3665 +msgid "" +"This package lets you declare types using short names, but\n" +"behind the scenes it namespaces all your type declarations, effectively= \n" +"prevent name clashes between packages." +msgstr "" + +#: gnu/packages/perl.scm:3696 +msgid "DateTime related constraints and coercions for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3697 +msgid "" +"This module packages several Moose::Util::TypeConstraints\n" +"with coercions, designed to work with the DateTime suite of objects." +msgstr "" + +#: gnu/packages/perl.scm:3729 +msgid "Extensions to MooseX::Types::DateTime" +msgstr "" + +#: gnu/packages/perl.scm:3730 +msgid "" +"This module builds on MooseX::Types::DateTime to add\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" +"all coercions and constraints are inherited." +msgstr "" + +#: gnu/packages/perl.scm:3759 +msgid "ClassName type constraints for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3760 +msgid "" +"MooseX::Types::LoadableClass provides a ClassName type\n" +"constraint with coercion to load the class." +msgstr "" + +#: gnu/packages/perl.scm:3784 +msgid "Moosish types and type builder" +msgstr "" + +#: gnu/packages/perl.scm:3785 +msgid "" +"MooX::Types::MooseLike provides a possibility to build your\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" +"fields in Moo-based classes." +msgstr "" + +#: gnu/packages/perl.scm:3804 +msgid "MRO interface compatibility for Perls < 5.9.5" +msgstr "" + +#: gnu/packages/perl.scm:3805 +msgid "" +"The \"mro\" namespace provides several utilities for dealing\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" +"higher. This module provides those interfaces for earlier versions of\= n" +"Perl (back to 5.6.0)." +msgstr "" + +#: gnu/packages/perl.scm:3832 +msgid "Keep imports out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3833 +msgid "" +"The namespace::autoclean pragma will remove all imported\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" +"up as methods on your class or instances. It is very similar to\n" +"namespace::clean, except it will clean all imported functions, no matte= r if\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" +"anything that looks like a method." +msgstr "" + +#: gnu/packages/perl.scm:3859 +msgid "Keep imports and functions out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3860 +msgid "" +"The namespace::clean pragma will remove all previously\n" +"declared or imported symbols at the end of the current package's compil= e\n" +"cycle. Functions called in the package itself will still be bound by t= heir\n" +"name, but they won't show up as methods on your class or instances." +msgstr "" + +#: gnu/packages/perl.scm:3880 +msgid "Numeric comparisons" +msgstr "" + +#: gnu/packages/perl.scm:3881 +msgid "" +"Number::Compare compiles a simple comparison to an anonymous\n" +"subroutine, which you can call with a value to be tested against." +msgstr "" + +#: gnu/packages/perl.scm:3899 +msgid "Generate cryptographic signatures for objects" +msgstr "" + +#: gnu/packages/perl.scm:3900 +msgid "" +"Object::Signature is an abstract base class that you can\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" +"signatures." +msgstr "" + +#: gnu/packages/perl.scm:3922 +msgid "Anonymous packages" +msgstr "" + +#: gnu/packages/perl.scm:3923 +msgid "" +"This module allows for anonymous packages that are\n" +"independent of the main namespace and only available through an object\= n" +"instance, not by name." +msgstr "" + +#: gnu/packages/perl.scm:3951 +msgid "Manage deprecation warnings for your distribution" +msgstr "" + +#: gnu/packages/perl.scm:3952 +msgid "" +"This module allows you to manage a set of deprecations for\n" +"one or more modules." +msgstr "" + +#: gnu/packages/perl.scm:3979 +msgid "Routines for manipulating stashes" +msgstr "" + +#: gnu/packages/perl.scm:3980 +msgid "" +"Manipulating stashes (Perl's symbol tables) is occasionally\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" +"of that behind a simple API." +msgstr "" + +#: gnu/packages/perl.scm:4003 +msgid "Faster implementation of the Package::Stash API" +msgstr "" + +#: gnu/packages/perl.scm:4004 +msgid "" +"This is a backend for Package::Stash, which provides the\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" +"compiler." +msgstr "" + +#: gnu/packages/perl.scm:4024 +msgid "Play with other peoples' lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:4025 +msgid "" +"PadWalker is a module which allows you to inspect (and even\n" +"change) lexical variables in any subroutine which called you. It will = only\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" +"is particularly useful for debugging." +msgstr "" + +#: gnu/packages/perl.scm:4046 +msgid "Simple, compact and correct param-checking functions" +msgstr "" + +#: gnu/packages/perl.scm:4048 +msgid "" +"Params::Util provides a basic set of importable functions that makes\n" +"checking parameters easier." +msgstr "" + +#: gnu/packages/perl.scm:4072 +msgid "Validate method/function parameters" +msgstr "" + +#: gnu/packages/perl.scm:4073 +msgid "" +"The Params::Validate module allows you to validate method or\n" +"function call parameters to an arbitrary level of specificity." +msgstr "" + +#: gnu/packages/perl.scm:4091 +msgid "Create and manipulate PAR distributions" +msgstr "" + +#: gnu/packages/perl.scm:4092 +msgid "" +"PAR::Dist is a toolkit to create and manipulate PAR\n" +"distributions." +msgstr "" + +#: gnu/packages/perl.scm:4111 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time." +msgstr "" + +#: gnu/packages/perl.scm:4130 +msgid "Path specification manipulation" +msgstr "" + +#: gnu/packages/perl.scm:4131 +msgid "" +"Path::Class is a module for manipulation of file and\n" +"directory specifications in a cross-platform manner." +msgstr "" + +#: gnu/packages/perl.scm:4151 +msgid "Check for comprehensive documentation of a module" +msgstr "" + +#: gnu/packages/perl.scm:4152 +msgid "" +"This module provides a mechanism for determining if the pod\n" +"for a given module is comprehensive." +msgstr "" + +#: gnu/packages/perl.scm:4169 +msgid "Parsing library for text in Pod format" +msgstr "" + +#: gnu/packages/perl.scm:4170 +msgid "" +"Pod::Simple is a Perl library for parsing text in\n" +"the Pod (plain old documentation) markup language that is typically\n" +"used for writing documentation for Perl and for Perl modules." +msgstr "" + +#: gnu/packages/perl.scm:4191 +msgid "GNU C library compatible strftime for loggers and servers" +msgstr "" + +#: gnu/packages/perl.scm:4192 +msgid "" +"POSIX::strftime::Compiler provides GNU C library compatible\n" +"strftime(3). But this module is not affected by the system locale. Th= is\n" +"feature is useful when you want to write loggers, servers, and portable= \n" +"applications." +msgstr "" + +#: gnu/packages/perl.scm:4210 +msgid "Information about the currently running perl" +msgstr "" + +#: gnu/packages/perl.scm:4212 +msgid "" +"Probe::Perl provides methods for obtaining information about the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" +"Module::Build project, but has been externalized here for general use." +msgstr "" + +#: gnu/packages/perl.scm:4234 +msgid "Create read-only scalars, arrays, hashes" +msgstr "" + +#: gnu/packages/perl.scm:4235 +msgid "" +"This module provides a facility for creating non-modifiable\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" +"variables that should not be changed." +msgstr "" + +#: gnu/packages/perl.scm:4253 +msgid "Provide commonly requested regular expressions" +msgstr "" + +#: gnu/packages/perl.scm:4255 +msgid "" +"This module exports a single hash (`%RE') that stores or generates\n" +"commonly needed regular expressions. Patterns currently provided inclu= de:\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" +"floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" +"offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" +"codes." +msgstr "" + +#: gnu/packages/perl.scm:4285 +msgid "Roles, as a slice of Moose" +msgstr "" + +#: gnu/packages/perl.scm:4286 +msgid "Role::Tiny is a minimalist role composition tool." +msgstr "" + +#: gnu/packages/perl.scm:4303 +msgid "Call isa, can, does, and DOES safely" +msgstr "" + +#: gnu/packages/perl.scm:4304 +msgid "" +"This module allows you to call isa, can, does, and DOES\n" +"safely on things that may not be objects." +msgstr "" + +#: gnu/packages/perl.scm:4322 +msgid "Lexically-scoped resource management" +msgstr "" + +#: gnu/packages/perl.scm:4323 +msgid "" +"This module provides a convenient way to perform cleanup or\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" +"useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" +"\"promises\" to be made that are automatically honoured by perl's garba= ge\n" +"collector." +msgstr "" + +#: gnu/packages/perl.scm:4346 +msgid "Infinite sets" +msgstr "" + +#: gnu/packages/perl.scm:4347 +msgid "Set::Infinite is a set theory module for infinite sets." +msgstr "" + +#: gnu/packages/perl.scm:4367 +msgid "Unordered collections of Perl Objects" +msgstr "" + +#: gnu/packages/perl.scm:4368 +msgid "" +"Set::Object provides efficient sets, unordered collections\n" +"of Perl objects without duplicates for scalars and references." +msgstr "" + +#: gnu/packages/perl.scm:4386 +msgid "Set operations for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4387 +msgid "" +"The first priority of Set::Scalar is to be a convenient\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" +"designed to be slow or big, neither has it been designed to be fast or\= n" +"compact." +msgstr "" + +#: gnu/packages/perl.scm:4407 +msgid "Spiffy Perl Interface Framework For You" +msgstr "" + +#: gnu/packages/perl.scm:4408 +msgid "" +"Spiffy is a framework and methodology for doing object\n" +"oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" +"other OO languages like Python, Ruby, Java and Perl 6." +msgstr "" + +#: gnu/packages/perl.scm:4430 +msgid "Temporary buffer to save bytes" +msgstr "" + +#: gnu/packages/perl.scm:4431 +msgid "" +"Stream::Buffered is a buffer class to store arbitrary length\n" +"of byte strings and then get a seekable filehandle once everything is\n= " +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" +"on the length of the size." +msgstr "" + +#: gnu/packages/perl.scm:4451 +msgid "Turn on strict and make all warnings fatal" +msgstr "" + +#: gnu/packages/perl.scm:4452 +msgid "" +"Strictures turns on strict and make all warnings fatal when\n" +"run from within a source-controlled directory." +msgstr "" + +#: gnu/packages/perl.scm:4470 +msgid "Camelcase and de-camelcase" +msgstr "" + +#: gnu/packages/perl.scm:4471 +msgid "" +"This module may be used to convert from under_score text to\n" +"CamelCase and back again." +msgstr "" + +#: gnu/packages/perl.scm:4491 +msgid "Rewrite strings based on a set of known prefixes" +msgstr "" + +#: gnu/packages/perl.scm:4492 +msgid "" +"This module allows you to rewrite strings based on a set of\n" +"known prefixes." +msgstr "" + +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 +msgid "Sophisticated exporter for custom-built routines" +msgstr "" + +#: gnu/packages/perl.scm:4538 +msgid "" +"Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " +"custom-built routines." +msgstr "" + +#: gnu/packages/perl.scm:4557 +msgid "Only use Sub::Exporter if you need it" +msgstr "" + +#: gnu/packages/perl.scm:4558 +msgid "" +"Sub::Exporter is an incredibly powerful module, but with\n" +"that power comes great responsibility, as well as some runtime penaltie= s.\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" +"if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" +"renaming exports, if they try to use them." +msgstr "" + +#: gnu/packages/perl.scm:4580 +msgid "Retrieve names of code references" +msgstr "" + +#: gnu/packages/perl.scm:4581 +msgid "" +"Sub::Identify allows you to retrieve the real name of code\n" +"references." +msgstr "" + +#: gnu/packages/perl.scm:4600 +msgid "Install subroutines into packages easily" +msgstr "" + +#: gnu/packages/perl.scm:4602 +msgid "" +"Sub::Install makes it easy to install subroutines into packages without= \n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" +"can see them." +msgstr "" + +#: gnu/packages/perl.scm:4623 +msgid "(Re)name a sub" +msgstr "" + +#: gnu/packages/perl.scm:4624 +msgid "" +"Assigns a new name to referenced sub. If package\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" +"return value is the sub." +msgstr "" + +#: gnu/packages/perl.scm:4643 +msgid "Apparently run a function in a higher stack frame" +msgstr "" + +#: gnu/packages/perl.scm:4644 +msgid "" +"Like Tcl's uplevel() function, but not quite so dangerous.\n" +"The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" +"uplevel() are avoided." +msgstr "" + +#: gnu/packages/perl.scm:4663 +msgid "Perl extension for generating SVG documents" +msgstr "" + +#: gnu/packages/perl.scm:4664 +msgid "" +"SVG is a Perl module which generates a nested data structure\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" +"Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" +"access the DOM object, create and access Javascript, and generate SMIL\= n" +"animation content." +msgstr "" + +#: gnu/packages/perl.scm:4683 +msgid "Perl extension for getting CPU information" +msgstr "" + +#: gnu/packages/perl.scm:4685 +msgid "" +"In responce to a post on perlmonks.org, a module for counting the numbe= r\n" +"of CPU's on a system. Support has now also been added for type of CPU = and\n" +"clock speed." +msgstr "" + +#: gnu/packages/perl.scm:4707 +msgid "Get full hostname in Perl" +msgstr "" + +#: gnu/packages/perl.scm:4708 +msgid "" +"Sys::Hostname::Long tries very hard to get the full hostname\n" +"of a system." +msgstr "" + +#: gnu/packages/perl.scm:4726 +msgid "Ensure that a platform has weaken support" +msgstr "" + +#: gnu/packages/perl.scm:4727 +msgid "" +"One recurring problem in modules that use Scalar::Util's\n" +"weaken function is that it is not present in the pure-perl variant. If= \n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" +"error encouraging the user to seek support." +msgstr "" + +#: gnu/packages/perl.scm:4752 +msgid "Template processing system for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4753 +msgid "" +"The Template Toolkit is a collection of modules which\n" +"implement an extensible template processing system. It was originally\= n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" +"it can be used equally well for processing any other kind of text based= \n" +"documents: HTML, XML, POD, PostScript, LaTeX, and so on." +msgstr "" + +#: gnu/packages/perl.scm:4776 +msgid "Profiling for Template Toolkit" +msgstr "" + +#: gnu/packages/perl.scm:4777 +msgid "" +"Template::Timer provides inline profiling of the template\n" +"processing in Perl code." +msgstr "" + +#: gnu/packages/perl.scm:4795 +msgid "Detect encoding of the current terminal" +msgstr "" + +#: gnu/packages/perl.scm:4796 +msgid "" +"Term::Encoding is a simple module to detect the encoding of\n" +"the current terminal expects in various ways." +msgstr "" + +#: gnu/packages/perl.scm:4820 +msgid "Progress meter on a standard terminal" +msgstr "" + +#: gnu/packages/perl.scm:4821 +msgid "" +"Term::ProgressBar provides a simple progress bar on the\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" +"stuff has been done, and maybe an estimate at how long remains." +msgstr "" + +#: gnu/packages/perl.scm:4844 +msgid "Progress meter if run interactively" +msgstr "" + +#: gnu/packages/perl.scm:4845 +msgid "" +"Term::ProgressBar is a wonderful module for showing progress\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" +"a cron job) then it does not show the progress bar." +msgstr "" + +#: gnu/packages/perl.scm:4867 +msgid "Simple progress bars" +msgstr "" + +#: gnu/packages/perl.scm:4868 +msgid "" +"Term::ProgressBar::Simple tells you how much work has been\n" +"done, how much is left to do, and estimate how long it will take." +msgstr "" + +#: gnu/packages/perl.scm:4886 +#, fuzzy +msgid "Simple terminal control" +msgstr "Egyszer=C5=B1 n=C3=B6vekm=C3=A9nyes biztons=C3=A1gi ment=C3=A9s = eszk=C3=B6z" + +#: gnu/packages/perl.scm:4887 +msgid "" +"This module, ReadKey, provides ioctl control for terminals\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" +"other terminal related features, including retrieval/modification of th= e\n" +"screen size, and retrieval/modification of the control characters." +msgstr "" + +#: gnu/packages/perl.scm:4914 +msgid "Data-driven testing framework for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4915 +msgid "" +"Test::Base gives a way to trivially write your own test\n" +"framework base class. It concentrates on offering reusable data driven= \n" +"patterns, so that you can write tests with a minimum of code." +msgstr "" + +#: gnu/packages/perl.scm:4946 +msgid "Check for uncleaned imports" +msgstr "" + +#: gnu/packages/perl.scm:4947 +msgid "" +"This module lets you check your module's namespaces for\n" +"imported functions you might have forgotten to remove with\n" +"namespace::autoclean or namespace::clean and are therefore available to= be\n" +"called as methods, which usually isn't want you want." +msgstr "" + +#: gnu/packages/perl.scm:4967 +msgid "Flexible deep comparison for the Test::Builder framework" +msgstr "" + +#: gnu/packages/perl.scm:4969 +msgid "" +"Test::Deep compares two structures by going through each level, ensurin= g\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" +"structures without getting caught in an infinite loop." +msgstr "" + +#: gnu/packages/perl.scm:4996 +msgid "Test strings and data structures and show differences" +msgstr "" + +#: gnu/packages/perl.scm:4997 +msgid "" +"This module exports three test functions and four diff-style\n" +"functions." +msgstr "" + +#: gnu/packages/perl.scm:5018 +msgid "Perl extension for maintaining test directories" +msgstr "" + +#: gnu/packages/perl.scm:5019 +msgid "" +"Testing code can involve making sure that files are created\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" +"to forget a file, or miss that some unexpected file was added. This mo= dule\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" +"modified or tested with this API, making it simple to test both individ= ual\n" +"files, as well as to verify that there are no missing or unknown files.= " +msgstr "" + +#: gnu/packages/perl.scm:5045 +msgid "Test exception based code" +msgstr "" + +#: gnu/packages/perl.scm:5046 +msgid "" +"This module provides a few convenience methods for testing\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" +"Test::More and friends." +msgstr "" + +#: gnu/packages/perl.scm:5066 +msgid "Simple helpers for testing code with exceptions" +msgstr "" + +#: gnu/packages/perl.scm:5067 +msgid "" +"Test::Fatal is an alternative to the popular\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" +"testing exception-throwing code with about the same amount of typing." +msgstr "" + +#: gnu/packages/perl.scm:5097 +msgid "Run Perl standard test scripts with statistics" +msgstr "" + +#: gnu/packages/perl.scm:5098 +msgid "" +"Simple test harness which allows tests to be run and results\n" +"automatically aggregated and output to STDOUT." +msgstr "" + +#: gnu/packages/perl.scm:5116 +msgid "Traces memory leaks in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5117 +msgid "" +"Test::LeakTrace provides several functions that trace memory\n" +"leaks. This module scans arenas, the memory allocation system, so it c= an\n" +"detect any leaked SVs in given blocks." +msgstr "" + +#: gnu/packages/perl.scm:5136 +msgid "Tests strings for equality, with more helpful failures" +msgstr "" + +#: gnu/packages/perl.scm:5137 +msgid "" +"This module provides some drop-in replacements for the\n" +"string comparison functions of Test::More, but which are more suitable = when\n" +"you test against long strings." +msgstr "" + +#: gnu/packages/perl.scm:5165 +msgid "Emulate troublesome interfaces in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5166 +msgid "" +"Test::MockObject allows you to create objects that conform\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" +"the behavior, just the input and the output." +msgstr "" + +#: gnu/packages/perl.scm:5185 +msgid "Replaces actual time with simulated time" +msgstr "" + +#: gnu/packages/perl.scm:5186 +msgid "" +"This module was created to enable test suites to test code\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" +"time at compile time and then relies on the user supplying a mock time = via\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" +"to gmtime,time or localtime." +msgstr "" + +#: gnu/packages/perl.scm:5213 +msgid "Most commonly needed test functions and features" +msgstr "" + +#: gnu/packages/perl.scm:5214 +msgid "" +"This module provides the most commonly used testing\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" +"bit more fine-grained control over test suites." +msgstr "" + +#: gnu/packages/perl.scm:5232 +msgid "Ensure no warnings are produced while testing" +msgstr "" + +#: gnu/packages/perl.scm:5234 +msgid "" +"This modules causes any warnings during testing to be captured and\n" +"stored. It automatically adds an extra test that will run when your sc= ript\n" +"ends to check that there were no warnings. If there were any warnings,= the\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" +"including a stack trace of what was going on when it occurred." +msgstr "" + +#: gnu/packages/perl.scm:5259 +msgid "Utilities to test STDOUT and STDERR messages" +msgstr "" + +#: gnu/packages/perl.scm:5261 +msgid "" +"Test::Output provides a simple interface for testing output sent to\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" +"as flexible as possible to the tester." +msgstr "" + +#: gnu/packages/perl.scm:5283 +msgid "Check for POD errors in files" +msgstr "" + +#: gnu/packages/perl.scm:5284 +msgid "" +"Check POD files for errors or warnings in a test file, using\n" +"Pod::Simple to do the heavy lifting." +msgstr "" + +#: gnu/packages/perl.scm:5304 +msgid "Check for pod coverage" +msgstr "" + +#: gnu/packages/perl.scm:5305 +msgid "" +"This module adds a test to your Perl distribution which\n" +"checks for pod coverage of all appropriate files." +msgstr "" + +#: gnu/packages/perl.scm:5323 +msgid "Checks to see if the module can be loaded" +msgstr "" + +#: gnu/packages/perl.scm:5324 +msgid "" +"Test::Requires checks to see if the module can be loaded.\n" +"If this fails, then rather than failing tests this skips all tests." +msgstr "" + +#: gnu/packages/perl.scm:5343 +msgid "Basic cross-platform tests for scripts" +msgstr "" + +#: gnu/packages/perl.scm:5345 +msgid "" +"The intent of the Test::Script module is to provide a series of basic\n= " +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" +"bin as is also commonly used) paths of your Perl distribution." +msgstr "" + +#: gnu/packages/perl.scm:5368 +msgid "Fork test in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5369 +msgid "" +"Test::SharedFork is a utility module for Test::Builder. It\n" +"makes fork(2) safe to use in test cases." +msgstr "" + +#: gnu/packages/perl.scm:5385 +msgid "Basic utilities for writing tests" +msgstr "" + +#: gnu/packages/perl.scm:5387 +msgid "Test::Simple contains basic utilities for writing tests." +msgstr "" + +#: gnu/packages/perl.scm:5404 +msgid "Simplify running Test::Builder tests" +msgstr "" + +#: gnu/packages/perl.scm:5406 +msgid "" +"Test::Tester allows testing of test modules based on Test::Builder with= \n" +"a minimum of effort." +msgstr "" + +#: gnu/packages/perl.scm:5432 +msgid "Trap exit codes, exceptions, output, etc." +msgstr "" + +#: gnu/packages/perl.scm:5433 +msgid "" +"This module is primarily (but not exclusively) for use in\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" +"from boxed blocks of test code." +msgstr "" + +#: gnu/packages/perl.scm:5453 +msgid "UTF-8 testing in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5454 +msgid "" +"This module is a collection of tests useful for dealing with\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" +"will check that string has a given set of characteristics." +msgstr "" + +#: gnu/packages/perl.scm:5476 +msgid "Perl extension to test methods for warnings" +msgstr "" + +#: gnu/packages/perl.scm:5477 +msgid "" +"This module provides a few convenience methods for testing\n" +"warning based code." +msgstr "" + +#: gnu/packages/perl.scm:5495 +msgid "Test for warnings and the lack of them" +msgstr "" + +#: gnu/packages/perl.scm:5496 +msgid "" +"This module is intended to be used as a drop-in replacement\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" +"done_testing calculates the test count, rather than after. It does thi= s by\n" +"hooking into done_testing as well as via an END block. You can declare= a\n" +"plan, or not, and things will still Just Work." +msgstr "" + +#: gnu/packages/perl.scm:5517 +msgid "Test fallback behaviour in absence of modules" +msgstr "" + +#: gnu/packages/perl.scm:5518 +msgid "" +"This module allows you to deliberately hide modules from a\n" +"program even though they are installed. This is mostly useful for test= ing\n" +"modules that have a fallback when a certain dependency module is not\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:5545 +msgid "Dynamic generation of tests" +msgstr "" + +#: gnu/packages/perl.scm:5546 +msgid "" +"The Test::WriteVariants module provides for the dynamic\n" +"generation of tests in nested combinations of contexts." +msgstr "" + +#: gnu/packages/perl.scm:5566 +msgid "Testing module for YAML implementations" +msgstr "" + +#: gnu/packages/perl.scm:5567 +msgid "" +"Test::YAML is a subclass of Test::Base with YAML specific\n" +"support." +msgstr "" + +#: gnu/packages/perl.scm:5586 +msgid "Align text" +msgstr "" + +#: gnu/packages/perl.scm:5587 +msgid "" +"Text::Aligner exports a single function, align(), which is\n" +"used to justify strings to various alignment styles." +msgstr "" + +#: gnu/packages/perl.scm:5605 +msgid "Extract delimited text sequences from strings" +msgstr "" + +#: gnu/packages/perl.scm:5606 +msgid "" +"The Text::Balanced module can be used to extract delimited\n" +"text sequences from strings." +msgstr "" + +#: gnu/packages/perl.scm:5624 +msgid "Manipulate comma-separated values" +msgstr "" + +#: gnu/packages/perl.scm:5625 +msgid "" +"Text::CSV provides facilities for the composition and\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" +"can combine fields into a CSV string and parse a CSV string into fields= ." +msgstr "" + +#: gnu/packages/perl.scm:5646 +msgid "Perform diffs on files and record sets" +msgstr "" + +#: gnu/packages/perl.scm:5647 +msgid "" +"Text::Diff provides a basic set of services akin to the GNU\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" +"is better integrated with Perl and available on all platforms. It is o= ften\n" +"faster than shelling out to a system's diff executable for small files,= and\n" +"generally slower on larger files." +msgstr "" + +#: gnu/packages/perl.scm:5669 +msgid "Match globbing patterns against text" +msgstr "" + +#: gnu/packages/perl.scm:5670 +msgid "" +"Text::Glob implements glob(3) style matching that can be\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" +"you want to do full file globbing use the File::Glob module instead." +msgstr "" + +#: gnu/packages/perl.scm:5689 +msgid "Simple ASCII tables" +msgstr "" + +#: gnu/packages/perl.scm:5690 +msgid "Text::SimpleTable draws simple ASCII tables." +msgstr "" + +#: gnu/packages/perl.scm:5711 +msgid "Organize Data in Tables" +msgstr "" + +#: gnu/packages/perl.scm:5712 +msgid "Text::Table renders plaintext tables." +msgstr "" + +#: gnu/packages/perl.scm:5729 +msgid "Provide plain ASCII transliterations of Unicode text" +msgstr "" + +#: gnu/packages/perl.scm:5730 +msgid "" +"Text::Unidecode provides a function, unidecode(...) that\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" +"is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" +"letters, the pronunciation expressed by the text in some other writing\= n" +"system." +msgstr "" + +#: gnu/packages/perl.scm:5758 +msgid "Role for classes that can be thrown" +msgstr "" + +#: gnu/packages/perl.scm:5759 +msgid "" +"Throwable is a role for classes that are meant to be thrown\n" +"as exceptions to standard program flow." +msgstr "" + +#: gnu/packages/perl.scm:5778 +msgid "Ordered associative arrays for Perl" +msgstr "" + +#: gnu/packages/perl.scm:5779 +msgid "" +"This Perl module implements Perl hashes that preserve the\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" +"can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" +"operations can also be performed on the IxHash." +msgstr "" + +#: gnu/packages/perl.scm:5802 +msgid "Tie to an existing Perl object" +msgstr "" + +#: gnu/packages/perl.scm:5803 +msgid "" +"This class provides a tie constructor that returns the\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" +"$object->TIEHASH are avoided." +msgstr "" + +#: gnu/packages/perl.scm:5825 +msgid "English expression of durations" +msgstr "" + +#: gnu/packages/perl.scm:5826 +msgid "" +"This module provides functions for expressing durations in\n" +"rounded or exact terms." +msgstr "" + +#: gnu/packages/perl.scm:5848 +msgid "Parse time duration strings" +msgstr "" + +#: gnu/packages/perl.scm:5849 +msgid "" +"Time::Duration::Parse is a module to parse human readable\n" +"duration strings like \"2 minutes\" and \"3 seconds\" to seconds." +msgstr "" + +#: gnu/packages/perl.scm:5867 +msgid "Efficiently compute time from local and GMT time" +msgstr "" + +#: gnu/packages/perl.scm:5868 +msgid "" +"This module provides functions that are the inverse of\n" +"built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" +"the system epoch." +msgstr "" + +#: gnu/packages/perl.scm:5888 +msgid "Date parsing/formatting subroutines" +msgstr "" + +#: gnu/packages/perl.scm:5889 +msgid "" +"This module provides routines for parsing date string into\n" +"time values and formatting dates into ASCII strings." +msgstr "" + +#: gnu/packages/perl.scm:5911 +msgid "Shift and scale time" +msgstr "" + +#: gnu/packages/perl.scm:5912 +msgid "" +"This module allows you to speed up your sleep(), alarm(),\n" +"and time() calls." +msgstr "" + +#: gnu/packages/perl.scm:5935 +msgid "Simple tree object" +msgstr "" + +#: gnu/packages/perl.scm:5936 +msgid "" +"This module in a fully object-oriented implementation of a\n" +"simple n-ary tree." +msgstr "" + +#: gnu/packages/perl.scm:5960 +msgid "Factory object for dispensing Visitor objects" +msgstr "" + +#: gnu/packages/perl.scm:5961 +msgid "" +"This module is a factory for dispensing\n" +"Tree::Simple::Visitor::* objects." +msgstr "" + +#: gnu/packages/perl.scm:5979 +msgid "Minimal try/catch with proper preservation of $@" +msgstr "" + +#: gnu/packages/perl.scm:5980 +msgid "" +"This module provides bare bones try/catch/finally statements\n" +"that are designed to minimize common mistakes with eval blocks, and not= hing\n" +"else." +msgstr "" + +#: gnu/packages/perl.scm:6001 +msgid "Data types for common serialisation formats" +msgstr "" + +#: gnu/packages/perl.scm:6002 +msgid "" +"This module provides some extra datatypes that are used by\n" +"common serialisation formats such as JSON or CBOR." +msgstr "" + +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 +msgid "UNIVERSAL::can() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6043 +msgid "" +"This module attempts to work around people calling\n" +"UNIVERSAL::can() as a function, which it is not." +msgstr "" + +#: gnu/packages/perl.scm:6063 +msgid "UNIVERSAL::isa() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6064 +msgid "" +"This module attempts to recover from people calling\n" +"UNIVERSAL::isa as a function." +msgstr "" + +#: gnu/packages/perl.scm:6082 +msgid "Associate user-defined magic to variables from Perl" +msgstr "" + +#: gnu/packages/perl.scm:6083 +msgid "" +"Magic is Perl's way of enhancing variables. This mechanism\n" +"lets the user add extra data to any variable and hook syntactical\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" +"it. With this module, you can add your own magic to any variable witho= ut\n" +"having to write a single line of XS." +msgstr "" + +#: gnu/packages/perl.scm:6106 +msgid "YAML for Perl" +msgstr "" + +#: gnu/packages/perl.scm:6107 +msgid "" +"The YAML.pm module implements a YAML Loader and Dumper based\n" +"on the YAML 1.0 specification." +msgstr "" + +#: gnu/packages/perl.scm:6130 +msgid "Read/Write YAML files" +msgstr "" + +#: gnu/packages/perl.scm:6131 +msgid "" +"YAML::Tiny is a perl class for reading and writing\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" +"and memory overhead." +msgstr "" + +#: gnu/packages/perl.scm:6158 +msgid "Distribution metadata for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6159 +msgid "" +"Software distributions released to the CPAN include a\n" +"META.json or, for older distributions, META.yml, which describes the\n" +"distribution, its contents, and the requirements for building and " +"installing\n" +"the distribution. The data structure stored in the META.json file is\n= " +"described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " +"represent this distribution metadata (or distmeta), along with some hel= pful\n" +"methods for interrogating that data." +msgstr "" + +#: gnu/packages/perl.scm:6182 +msgid "Set of version requirements for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6183 +msgid "" +"A CPAN::Meta::Requirements object models a set of version\n" +"constraints like those specified in the META.yml or META.json files in = CPAN\n" +"distributions, and as defined by CPAN::Meta::Spec. It can be built up = by\n" +"adding more and more constraints, and will reduce them to the simplest\= n" +"representation." +msgstr "" + +#: gnu/packages/perl.scm:6206 +msgid "Read and write a subset of YAML for CPAN Meta files" +msgstr "" + +#: gnu/packages/perl.scm:6207 +msgid "" +"This module implements a subset of the YAML specification\n" +"for use in reading and writing CPAN metadata files like META.yml and\n" +"MYMETA.yml." +msgstr "" + +#: gnu/packages/perl.scm:6228 +msgid "Build and install Perl modules" +msgstr "" + +#: gnu/packages/perl.scm:6229 +msgid "" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" +"through subclassing in a much more straightforward way than with\n" +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." +msgstr "" + +#: gnu/packages/perl.scm:6254 +msgid "Parse META.yml and META.json CPAN metadata files" +msgstr "" + +#: gnu/packages/perl.scm:6255 +msgid "" +"Parse::CPAN::Meta is a parser for META.json and META.yml\n" +"files, using JSON::PP and/or CPAN::Meta::YAML." +msgstr "" + +#: gnu/packages/perl.scm:6273 +msgid "Common Scalar and List utility subroutines" +msgstr "" + +#: gnu/packages/perl.scm:6274 +msgid "" +"This package contains a selection of subroutines that people\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" +"such that being individual extensions would be wasteful." +msgstr "" + +#: gnu/packages/photo.scm:61 +msgid "Raw image decoder" +msgstr "" + +#: gnu/packages/photo.scm:63 +msgid "" +"LibRaw is a library for reading RAW files obtained from digital photo\n= " +"cameras (CRW/CR2, NEF, RAF, DNG, and others)." +msgstr "" + +#: gnu/packages/photo.scm:80 +msgid "Read and manipulate EXIF data in digital photographs" +msgstr "" + +#: gnu/packages/photo.scm:82 +msgid "" +"The libexif C library allows applications to read, edit, and save EXIF\= n" +"data as produced by digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:107 +msgid "Accessing digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:109 +msgid "" +"This is the library backend for gphoto2. It contains the code for PTP,= \n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" +"from digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:150 +msgid "Command-line tools to access digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:152 +msgid "" +"Gphoto2 is a set of command line utilities for manipulating a large\n" +"number of different digital cameras. Through libgphoto2, it supports P= TP,\n" +"MTP, and much more." +msgstr "" + +#: gnu/packages/photo.scm:186 +msgid "Program and Perl library to manipulate EXIF tags" +msgstr "" + +#: gnu/packages/photo.scm:188 +msgid "" +"This package provides the 'exiftool' command and the 'Image::ExifTool'\= n" +"Perl library to manipulate EXIF tags of digital images." +msgstr "" + +#: gnu/packages/photo.scm:211 +msgid "Library for panoramic images" +msgstr "" + +#: gnu/packages/photo.scm:213 +msgid "" +"The libpano13 package contains the backend library written by the\n" +"Panorama Tools project for building panoramic images from a set of\n" +"overlapping images, as well as some command line tools." +msgstr "" + +#: gnu/packages/photo.scm:255 +msgid "Tools for combining and blending images" +msgstr "" + +#: gnu/packages/photo.scm:257 +msgid "" +"Enblend blends away the seams in a panoramic image mosaic using a\n" +"multi-resolution spline. Enfuse merges different exposures of the same= \n" +"scene to produce an image that looks much like a tone-mapped image." +msgstr "" + +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" +msgstr "" + +#: gnu/packages/qemu.scm:153 +msgid "" +"QEMU is a generic machine emulator and virtualizer.\n" +"\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" +"machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" +"using dynamic translation, it achieves very good performance.\n" +"\n" +"When used as a virtualizer, QEMU achieves near native performances by\n= " +"executing the guest code directly on the host CPU. QEMU supports\n" +"virtualization when executing under the Xen hypervisor or using\n" +"the KVM kernel module in Linux. When using KVM, QEMU can virtualize x8= 6,\n" +"server and embedded PowerPC, and S390 guests." +msgstr "" + +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" +msgstr "" + +#: gnu/packages/ratpoison.scm:85 +msgid "Simple mouse-free tiling window manager" +msgstr "" + +#: gnu/packages/ratpoison.scm:87 +msgid "" +"Ratpoison is a simple window manager with no fat library\n" +"dependencies, no fancy graphics, no window decorations, and no\n" +"rodent dependence. It is largely modelled after GNU Screen which\n" +"has done wonders in the virtual terminal market.\n" +"\n" +"The screen can be split into non-overlapping frames. All windows\n" +"are kept maximized inside their frames to take full advantage of\n" +"your precious screen real estate.\n" +"\n" +"All interaction with the window manager is done through keystrokes.\n" +"Ratpoison has a prefix map to minimize the key clobbering that\n" +"cripples Emacs and other quality pieces of software." +msgstr "" + +#: gnu/packages/readline.scm:68 +msgid "Edit command lines while typing, with history support" +msgstr "" + +#: gnu/packages/readline.scm:70 +msgid "" +"The GNU readline library allows users to edit command lines as they\n" +"are typed in. It can maintain a searchable history of previously enter= ed\n" +"commands, letting you easily recall, edit and re-enter past commands. = It\n" +"features both Emacs-like and vi-like keybindings, making its usage\n" +"comfortable for anyone." +msgstr "" + +#: gnu/packages/scanner.scm:70 +msgid "Raster image scanner library and drivers" +msgstr "" + +#: gnu/packages/scanner.scm:71 +msgid "" +"SANE stands for \"Scanner Access Now Easy\" and is an API\n" +"proving access to any raster image scanner hardware (flatbed scanner,\n= " +"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" +"package contains the library and drivers." +msgstr "" + +#: gnu/packages/scheme.scm:169 +msgid "A Scheme implementation with integrated editor and debugger" +msgstr "" + +#: gnu/packages/scheme.scm:171 +msgid "" +"GNU/MIT Scheme is an implementation of the Scheme programming\n" +"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" +"features an integrated Emacs-like editor and a large runtime library." +msgstr "" + +#: gnu/packages/scheme.scm:254 +msgid "Efficient Scheme compiler" +msgstr "" + +#: gnu/packages/scheme.scm:256 +msgid "" +"Bigloo is a Scheme implementation devoted to one goal: enabling\n" +"Scheme based programming style where C(++) is usually\n" +"required. Bigloo attempts to make Scheme practical by offering\n" +"features usually presented by traditional programming languages\n" +"but not offered by Scheme and functional programming. Bigloo\n" +"compiles Scheme modules. It delivers small and fast stand alone\n" +"binary executables. Bigloo enables full connections between\n" +"Scheme and C programs and between Scheme and Java programs." +msgstr "" + +#: gnu/packages/scheme.scm:300 +msgid "Multi-tier programming language for the Web 2.0" +msgstr "" + +#: gnu/packages/scheme.scm:302 +msgid "" +"HOP is a multi-tier programming language for the Web 2.0 and the\n" +"so-called diffuse Web. It is designed for programming interactive web\= n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" +"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" +"mashups, office (web agendas, mail clients, ...), etc." +msgstr "" + +#: gnu/packages/scheme.scm:342 +msgid "R5RS Scheme implementation that compiles native code via C" +msgstr "" + +#: gnu/packages/scheme.scm:344 +msgid "" +"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" +"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" +"language standard, and includes many enhancements and extensions." +msgstr "" + +#: gnu/packages/scheme.scm:363 +msgid "Scheme implementation using a bytecode interpreter" +msgstr "" + +#: gnu/packages/scheme.scm:365 +msgid "" +"Scheme 48 is an implementation of Scheme based on a byte-code\n" +"interpreter and is designed to be used as a testbed for experiments in\= n" +"implementation techniques and as an expository tool." +msgstr "" + +#: gnu/packages/scheme.scm:441 +msgid "Implementation of Scheme and related languages" +msgstr "" + +#: gnu/packages/scheme.scm:443 +msgid "" +"Racket is an implementation of the Scheme programming language (R5RS an= d\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" +"of libraries." +msgstr "" + +#: gnu/packages/scheme.scm:481 +msgid "Efficient Scheme interpreter and compiler" +msgstr "" + +#: gnu/packages/scheme.scm:483 +msgid "" +"Gambit consists of two main programs: gsi, the Gambit Scheme\n" +"interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" +"the complete execution and debugging environment. The compiler is the\= n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" +"loaded at run time. Interpreted code and compiled code can be freely\n= " +"mixed." +msgstr "" + +#: gnu/packages/scheme.scm:520 +msgid "Small embeddable Scheme implementation" +msgstr "" + +#: gnu/packages/scheme.scm:522 +msgid "" +"Chibi-Scheme is a very small library with no external dependencies\n" +"intended for use as an extension and scripting language in C programs. = In\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" +"threads." +msgstr "" + +#: gnu/packages/scheme.scm:699 +msgid "Scmutils library for MIT Scheme" +msgstr "" + +#: gnu/packages/scheme.scm:700 +msgid "" +"The Scmutils system is an integrated library of\n" +"procedures, embedded in the programming language Scheme, and intended t= o\n" +"support teaching and research in mathematical physics and electrical\n" +"engineering." +msgstr "" + +#: gnu/packages/search.scm:52 +msgid "Search Engine Library" +msgstr "" + +#: gnu/packages/search.scm:54 +msgid "" +"Xapian is a highly adaptable toolkit which allows developers to easily\= n" +"add advanced indexing and search facilities to their own applications. = It\n" +"supports the Probabilistic Information Retrieval model and also support= s a\n" +"rich set of boolean query operators." +msgstr "" + +#: gnu/packages/search.scm:97 +msgid "Tool for Obsessive Compulsive Classifiers" +msgstr "" + +#: gnu/packages/search.scm:99 +msgid "" +"libtocc is the engine of the Tocc project, a tag-based file management\= n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" +"that is more flexible than classic file systems that are based on a tre= e of\n" +"files and directories." +msgstr "" + +#: gnu/packages/search.scm:121 +msgid "Command-line interface to libtocc" +msgstr "" + +#: gnu/packages/search.scm:123 +msgid "" +"Tocc is a tag-based file management system. This package contains the\= n" +"command line tool for interacting with libtocc." +msgstr "" + +#: gnu/packages/search.scm:141 +msgid "Finding text and HTML files that match boolean expressions" +msgstr "" + +#: gnu/packages/search.scm:143 +msgid "" +"GNU Bool is a utility to perform text searches on files using Boolean\n= " +"expressions. For example, a search for \"hello AND world\" would retur= n a\n" +"file containing the phrase \"Hello, world!\". It supports both AND and= OR\n" +"statements, as well as the NEAR statement to search for the occurrence = of\n" +"words in close proximity to each other. It handles context gracefully,= \n" +"accounting for new lines and paragraph changes. It also has robust sup= port\n" +"for parsing HTML files." +msgstr "" + +#: gnu/packages/serveez.scm:51 +msgid "Framework for implementing IP-based servers" +msgstr "" + +#: gnu/packages/serveez.scm:53 +msgid "" +"GNU Serveez is a server framework providing the routines necessary to\n= " +"easily implement IP-based servers in your application. It\n" +"demonstrates aspects of network programming in a portable manner,\n" +"making it convenient for both simplifying the process of adding a\n" +"server to your application or for learning about how network services\n= " +"work. Several example servers are provided already, such as an HTTP\n" +"server and an IRC server." +msgstr "" + +#: gnu/packages/telephony.scm:52 +msgid "(u)Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:53 +msgid "" +"GNU Common C++ is an portable, optimized class framework for\n" +"threaded applications, supporting concurrent synchronization, inter-pro= cess\n" +"communications via sockets, and various methods for data handling, such= as\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" +"reimplementation." +msgstr "" + +#: gnu/packages/telephony.scm:73 +msgid "Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:74 +msgid "" +"GNU uCommon C++ is meant as a very light-weight C++ library\n" +"to facilitate using C++ design patterns even for very deeply embedded\n= " +"applications, such as for systems using uclibc along with posix threadi= ng\n" +"support." +msgstr "" + +#: gnu/packages/telephony.scm:95 +msgid "Implementation of RTP (real-time transport protocol)" +msgstr "" + +#: gnu/packages/telephony.scm:96 +msgid "" +"GNU ccRTP is an implementation of RTP, the real-time transport\n" +"protocol from the IETF. It is suitable both for high capacity servers = and\n" +"personal client applications. It is flexible in its design, allowing i= t to\n" +"function as a framework for the framework, rather than just being a\n" +"packet-manipulation library." +msgstr "" + +#: gnu/packages/telephony.scm:116 +msgid "Library implementing SIP (RFC-3261)" +msgstr "" + +#: gnu/packages/telephony.scm:117 +msgid "" +"GNU oSIP is an implementation of the SIP protocol. It is\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" +"to initiate and control SIP sessions." +msgstr "" + +#: gnu/packages/telephony.scm:137 +msgid "Sip abstraction library" +msgstr "" + +#: gnu/packages/telephony.scm:138 +msgid "" +"EXosip is a library that hides the complexity of using the\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" +"be used by VoIP telephony applications (endpoints or conference server)= but\n" +"might be also useful for any application that wish to establish session= s " +"like\n" +"multiplayer games." +msgstr "" + +#: gnu/packages/telephony.scm:181 +msgid "Secure peer-to-peer VoIP server for the SIP protocol" +msgstr "" + +#: gnu/packages/telephony.scm:182 +msgid "" +"GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" +"uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" +"there is no central point for media intercept or capture and thus it ca= n be\n" +"used to construct a secure telephone system that operates over the publ= ic\n" +"internet." +msgstr "" + +#: gnu/packages/telephony.scm:207 +msgid "Secure RTP (SRTP) Reference Implementation" +msgstr "" + +#: gnu/packages/telephony.scm:208 +msgid "" +"This package provides an implementation of the Secure\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" +"and a supporting cryptographic kernel." +msgstr "" + +#: gnu/packages/texinfo.scm:55 +msgid "The GNU documentation format" +msgstr "" + +#: gnu/packages/texinfo.scm:57 +msgid "" +"Texinfo is the official documentation format of the GNU project. It\n" +"uses a single source file using explicit commands to produce a final " +"document\n" +"in any of several supported output formats, such as HTML or PDF. This\= n" +"package includes both the tools necessary to produce Info documents fro= m\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" +"is on expressing the content semantically, avoiding physical markup com= mands." +msgstr "" + +#: gnu/packages/texinfo.scm:132 +msgid "Convert Texinfo to HTML" +msgstr "" + +#: gnu/packages/texinfo.scm:134 +msgid "" +"Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" +"output. It now supports many advanced features, such as " +"internationalization\n" +"and extremely configurable output formats.\n" +"\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" +"was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" +"Texi2HTML." +msgstr "" + +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 +msgid "TeX Live, a package of the TeX typesetting system" +msgstr "" + +#: gnu/packages/texlive.scm:157 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the binaries." +msgstr "" + +#: gnu/packages/texlive.scm:220 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete tree of texmf-dist data." +msgstr "" + +#: gnu/packages/texlive.scm:278 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete TeX Live distribution." +msgstr "" + +#: gnu/packages/texlive.scm:307 +msgid "Wrapper for LaTeX and friends" +msgstr "" + +#: gnu/packages/texlive.scm:309 +msgid "" +"Rubber is a program whose purpose is to handle all tasks related to the= \n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" +"PDF documents." +msgstr "" + +#: gnu/packages/textutils.scm:61 +msgid "Text encoding converter" +msgstr "" + +#: gnu/packages/textutils.scm:62 +msgid "" +"The Recode library converts files between character sets and\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" +"any pair. When exact transliteration are not possible, it gets rid of\= n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" +"handy front-end to the library." +msgstr "" + +#: gnu/packages/textutils.scm:90 +msgid "Text encoding detection tool" +msgstr "" + +#: gnu/packages/textutils.scm:91 +msgid "" +"Enca (Extremely Naive Charset Analyser) consists of libenca,\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" +"libenca and several charset conversion libraries and tools." +msgstr "" + +#: gnu/packages/textutils.scm:118 +msgid "C library for processing UTF-8 Unicode data" +msgstr "" + +#: gnu/packages/textutils.scm:119 +msgid "" +"utf8proc is a small C library that provides Unicode\n" +"normalization, case-folding, and other operations for data in the UTF-8= \n" +"encoding, supporting Unicode version 7.0." +msgstr "" + +#: gnu/packages/textutils.scm:148 +msgid "Gordon's text utils library" +msgstr "" + +#: gnu/packages/textutils.scm:150 +msgid "" +"libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" +"the Hannon Lab." +msgstr "" + +#: gnu/packages/textutils.scm:171 +msgid "C++ hash functions for strings" +msgstr "" + +#: gnu/packages/textutils.scm:173 +msgid "" +"CityHash provides hash functions for strings. The functions mix the\n" +"input bits thoroughly but are not suitable for cryptography." +msgstr "" + +#: gnu/packages/textutils.scm:190 +msgid "C/C++ configuration file library" +msgstr "" + +#: gnu/packages/textutils.scm:192 +msgid "" +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." +msgstr "" + +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" + +#: gnu/packages/textutils.scm:214 +msgid "" +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." +msgstr "" + +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" +msgstr "" + +#: gnu/packages/version-control.scm:105 +msgid "" +"GNU Bazaar is a version control system that allows you to record\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" +"as well as the classic centralized workflow." +msgstr "" + +#: gnu/packages/version-control.scm:264 +msgid "Distributed version control system" +msgstr "" + +#: gnu/packages/version-control.scm:266 +msgid "" +"Git is a free distributed version control system designed to handle\n" +"everything from small to very large projects with speed and efficiency.= " +msgstr "" + +#: gnu/packages/version-control.scm:311 +msgid "Man pages of the Git version control system" +msgstr "" + +#: gnu/packages/version-control.scm:313 +msgid "" +"This package provides the man pages of the Git version control system.\= n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" +"command." +msgstr "" + +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" + +#: gnu/packages/version-control.scm:354 +msgid "" +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." +msgstr "" + +#: gnu/packages/version-control.scm:393 +msgid "Command-line flags library for shell scripts" +msgstr "" + +#: gnu/packages/version-control.scm:395 +msgid "" +"Shell Flags (shFlags) is a library written to greatly simplify the\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" +"ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" +"different versions of getopt on various OSes make writing portable shel= l\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" +"shell and OS versions so the script writer can be confident that the sc= ript\n" +"will work." +msgstr "" + +#: gnu/packages/version-control.scm:438 +msgid "Git extensions for Vincent Driessen's branching model" +msgstr "" + +#: gnu/packages/version-control.scm:440 +msgid "" +"Vincent Driessen's branching model is a git branching and release\n" +"management strategy that helps developers keep track of features, hotfi= xes,\n" +"and releases in bigger software projects. The git-flow library of git\= n" +"subcommands helps automate some parts of the flow to make working with = it a\n" +"lot easier." +msgstr "" + +#: gnu/packages/version-control.scm:475 +msgid "Run a command over a sequence of commits" +msgstr "" + +#: gnu/packages/version-control.scm:477 +msgid "" +"git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" +"linear. It will test every change between two points in the DAG. It w= ill\n" +"also walk each side of a merge and test those changes individually." +msgstr "" + +#: gnu/packages/version-control.scm:535 +msgid "Git access control layer" +msgstr "" + +#: gnu/packages/version-control.scm:537 +msgid "" +"Gitolite is an access control layer on top of Git, providing fine acces= s\n" +"control to Git repositories." +msgstr "" + +#: gnu/packages/version-control.scm:561 +msgid "Decentralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:563 +msgid "" +"Mercurial is a free, distributed source control management tool.\n" +"It efficiently handles projects of any size\n" +"and offers an easy and intuitive interface." +msgstr "" + +#: gnu/packages/version-control.scm:597 +msgid "HTTP and WebDAV client library" +msgstr "" + +#: gnu/packages/version-control.scm:598 +msgid "" +"Neon is an HTTP and WebDAV client library, with a\n" +"C interface. Features:\n" +"High-level wrappers for common HTTP and WebDAV operations (GET, MOVE,\n= " +"DELETE, etc.);\n" +"low-level interface to the HTTP request/response engine, allowing the u= se\n" +"of arbitrary HTTP methods, headers, etc.;\n" +"authentication support including Basic and Digest support, along with\n= " +"GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32;= \n" +"SSL/TLS support using OpenSSL or GnuTLS, exposing an abstraction layer = for\n" +"verifying server certificates, handling client certificates, and examin= ing\n" +"certificate properties, smartcard-based client certificates are also\n" +"supported via a PKCS#11 wrapper interface;\n" +"abstract interface to parsing XML using libxml2 or expat, and wrappers = for\n" +"simplifying handling XML HTTP response bodies;\n" +"WebDAV metadata support, wrappers for PROPFIND and PROPPATCH to simplif= y\n" +"property manipulation." +msgstr "" + +#: gnu/packages/version-control.scm:677 +msgid "Revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:679 +msgid "" +"Subversion exists to be universally recognized and adopted as a\n" +"centralized version control system characterized by its\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" +"usage; and its ability to support the needs of a wide variety of users = and\n" +"projects, from individuals to large-scale enterprise operations." +msgstr "" + +#: gnu/packages/version-control.scm:700 +msgid "Per-file local revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:702 +msgid "" +"RCS is the original Revision Control System. It works on a\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" +"CVS, Subversion, and Git. This can make it suitable for system\n" +"administration files, for example, which are often inherently local to = one\n" +"machine." +msgstr "" + +#: gnu/packages/version-control.scm:729 +msgid "Historical centralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:731 +msgid "" +"CVS is a version control system, an important component of Source\n" +"Configuration Management (SCM). Using it, you can record the history o= f\n" +"sources files, and documents. It fills a similar role to the free soft= ware\n" +"RCS, PRCS, and Aegis packages." +msgstr "" + +#: gnu/packages/version-control.scm:764 +msgid "Export an RCS or CVS history as a fast-import stream" +msgstr "" + +#: gnu/packages/version-control.scm:765 +msgid "" +"This program analyzes a collection of RCS files in a CVS\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" +"in the form of a fast-import stream. Not all possible histories can be= \n" +"rendered this way; the program tries to emit useful warnings when it ca= n't.\n" +"\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" +"acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" +"masters from remote CVS hosts." +msgstr "" + +#: gnu/packages/version-control.scm:792 +msgid "Version-control-agnostic ChangeLog diff and commit tool" +msgstr "" + +#: gnu/packages/version-control.scm:794 +msgid "" +"The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " +"vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" +"using version control at the same time, for example by printing a remin= der\n" +"when a file change has been described in the ChangeLog but the file has= not\n" +"been added to the VC. vc-chlog scans changed files and generates\n" +"standards-compliant ChangeLog entries based on the changes that it dete= cts." +msgstr "" + +#: gnu/packages/version-control.scm:816 +msgid "Make histograms from the output of 'diff'" +msgstr "" + +#: gnu/packages/version-control.scm:818 +msgid "" +"Diffstat reads the output of 'diff' and displays a histogram of the\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" +"large, complex patch files." +msgstr "" + +#: gnu/packages/version-control.scm:859 +msgid "File-based version control like SCCS" +msgstr "" + +#: gnu/packages/version-control.scm:860 +msgid "" +"GNU CSSC provides a replacement for the legacy Unix source\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" +"accessed and migrated on modern systems." +msgstr "" + +#: gnu/packages/version-control.scm:941 +msgid "Project change supervisor" +msgstr "" + +#: gnu/packages/version-control.scm:942 +msgid "" +"Aegis is a project change supervisor, and performs some of\n" +"the Software Configuration Management needed in a CASE environment. Ae= gis\n" +"provides a framework within which a team of developers may work on many= \n" +"changes to a program independently, and Aegis coordinates integrating t= hese\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" +"any project with more than one developer, is one of Aegis's major funct= ions." +msgstr "" + +#: gnu/packages/version-control.scm:970 +msgid "Ncurses-based text user interface for Git" +msgstr "" + +#: gnu/packages/version-control.scm:972 +msgid "" +"Tig is an ncurses text user interface for Git, primarily intended as\n" +"a history browser. It can also stage hunks for commit, or colorize the= \n" +"output of the 'git' command." +msgstr "" + +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" + +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." +msgstr "" + +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" + +#: gnu/packages/version-control.scm:1027 +msgid "" +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." +msgstr "" + +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" + +#: gnu/packages/version-control.scm:1059 +msgid "" +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." +msgstr "" + +#: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" + +#: gnu/packages/webkit.scm:125 +msgid "" +"WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" +"suitable for projects requiring any kind of web integration, from hybri= d\n" +"HTML/CSS applications to full-fledged web browsers." +msgstr "" + +#: gnu/packages/web.scm:89 +msgid "Featureful HTTP server" +msgstr "" + +#: gnu/packages/web.scm:91 +msgid "" +"The Apache HTTP Server Project is a collaborative software development\= n" +"effort aimed at creating a robust, commercial-grade, featureful, and\n" +"freely-available source code implementation of an HTTP (Web) server. T= he\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" +"using the Internet and the Web to communicate, plan, and develop the se= rver\n" +"and its related documentation." +msgstr "" + +#: gnu/packages/web.scm:169 +msgid "HTTP and reverse proxy server" +msgstr "" + +#: gnu/packages/web.scm:171 +msgid "" +"Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" +"created by Igor Sysoev. It can be used both as a standalone web server= \n" +"and as a proxy to reduce the load on back-end HTTP or mail servers." +msgstr "" + +#: gnu/packages/web.scm:207 +msgid "PSGI/Plack web server" +msgstr "" + +#: gnu/packages/web.scm:208 +msgid "" +"Starman is a PSGI perl web server that has unique features\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" +"and UNIX socket support." +msgstr "" + +#: gnu/packages/web.scm:227 +msgid "JSON C library" +msgstr "" + +#: gnu/packages/web.scm:229 +msgid "" +"Jansson is a C library for encoding, decoding and manipulating JSON\n" +"data." +msgstr "" + +#: gnu/packages/web.scm:261 +msgid "JSON implementation in C" +msgstr "" + +#: gnu/packages/web.scm:263 +msgid "" +"JSON-C implements a reference counting object model that allows you to\= n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" +"parse JSON formatted strings back into the C representation of JSON obj= ects." +msgstr "" + +#: gnu/packages/web.scm:289 +msgid "JSON parser/generator for C++ with both SAX/DOM style API" +msgstr "" + +#: gnu/packages/web.scm:291 +msgid "" +"RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" +"style API." +msgstr "" + +#: gnu/packages/web.scm:309 +msgid "C library for parsing JSON" +msgstr "" + +#: gnu/packages/web.scm:311 +msgid "" +"Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" +"parser written in ANSI C and a small validating JSON generator." +msgstr "" + +#: gnu/packages/web.scm:341 +msgid "WebSockets library written in C" +msgstr "" + +#: gnu/packages/web.scm:343 +msgid "" +"Libwebsockets is a library that allows C programs to establish client\n= " +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" +"for efficient socket-like bidirectional reliable communication channels= ." +msgstr "" + +#: gnu/packages/web.scm:378 +msgid "C library for the Publix Suffix List" +msgstr "" + +#: gnu/packages/web.scm:380 +msgid "" +"A \"public suffix\" is a domain name under which Internet users can\n" +"directly register own names.\n" +"\n" +"Browsers and other web clients can use it to avoid privacy-leaking\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" +"by site.\n" +"\n" +"Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" +"domain verification, finds the longest public part of a given domain, f= inds\n" +"the shortest private part of a given domain, works with international\n= " +"domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" +"UTS#46." +msgstr "" + +#: gnu/packages/web.scm:426 +msgid "HTML validator and tidier" +msgstr "" + +#: gnu/packages/web.scm:427 +msgid "" +"HTML Tidy is a command-line tool and C library that can be\n" +"used to validate and fix HTML data." +msgstr "" + +#: gnu/packages/web.scm:468 +msgid "Light-weight HTTP/HTTPS proxy daemon" +msgstr "" + +#: gnu/packages/web.scm:469 +msgid "" +"Tinyproxy is a light-weight HTTP/HTTPS proxy\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" +"proxy is required, but the system resources for a larger proxy are\n" +"unavailable." +msgstr "" + +#: gnu/packages/web.scm:502 +msgid "Small caching web proxy" +msgstr "" + +#: gnu/packages/web.scm:504 +msgid "" +"Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " +"server). It was primarily designed to be used by one person or a small= " +"group\n" +"of people." +msgstr "" + +#: gnu/packages/web.scm:524 +msgid "YAML 1.1 parser and emitter written in C" +msgstr "" + +#: gnu/packages/web.scm:526 +msgid "LibYAML is a YAML 1.1 parser and emitter written in C." +msgstr "" + +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 +msgid "Media stream URL parser" +msgstr "" + +#: gnu/packages/web.scm:543 +msgid "" +"This package contains support scripts called by libquvi to\n" +"parse media stream properties." +msgstr "" + +#: gnu/packages/web.scm:576 +msgid "" +"libquvi is a library with a C API for parsing media stream\n" +"URLs and extracting their actual media files." +msgstr "" + +#: gnu/packages/web.scm:598 +msgid "" +"quvi is a command-line-tool suite to extract media files\n" +"from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." +msgstr "" + +#: gnu/packages/web.scm:661 +msgid "High-performance asynchronous HTTP client library" +msgstr "" + +#: gnu/packages/web.scm:663 +msgid "" +"serf is a C-based HTTP client library built upon the Apache Portable\n" +"Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" +"minimum to provide high performance operation." +msgstr "" + +#: gnu/packages/web.scm:718 +msgid "CSS pre-processor" +msgstr "" + +#: gnu/packages/web.scm:719 +msgid "" +"SassC is a compiler written in C for the CSS pre-processor\n" +"language known as SASS." +msgstr "" + +#: gnu/packages/web.scm:748 +msgid "Compile a log format string to perl-code" +msgstr "" + +#: gnu/packages/web.scm:749 +msgid "" +"This module provides methods to compile a log format string\n" +"to perl-code, for faster generation of access_log lines." +msgstr "" + +#: gnu/packages/web.scm:770 +msgid "SASL authentication framework" +msgstr "" + +#: gnu/packages/web.scm:771 +msgid "Authen::SASL provides an SASL authentication framework." +msgstr "" + +#: gnu/packages/web.scm:795 +msgid "Sensible default Catalyst action" +msgstr "" + +#: gnu/packages/web.scm:796 +msgid "" +"This Catalyst action implements a sensible default end\n" +"action, which will forward to the first available view." +msgstr "" + +#: gnu/packages/web.scm:824 +msgid "Automated REST Method Dispatching" +msgstr "" + +#: gnu/packages/web.scm:825 +msgid "" +"This Action handles doing automatic method dispatching for\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" +"append an underscore and method name. First it will try dispatching to= an\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" +"regular method." +msgstr "" + +#: gnu/packages/web.scm:861 +msgid "Storage class for Catalyst authentication using DBIx::Class" +msgstr "" + +#: gnu/packages/web.scm:862 +msgid "" +"The Catalyst::Authentication::Store::DBIx::Class class\n" +"provides access to authentication information stored in a database via\= n" +"DBIx::Class." +msgstr "" + +#: gnu/packages/web.scm:886 +msgid "Create only one instance of Moose component per context" +msgstr "" + +#: gnu/packages/web.scm:887 +msgid "" +"Catalyst::Component::InstancePerContext returns a new\n" +"instance of a component on each request." +msgstr "" + +#: gnu/packages/web.scm:924 +msgid "Catalyst Development Tools" +msgstr "" + +#: gnu/packages/web.scm:925 +msgid "" +"The Catalyst-Devel distribution includes a variety of\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" +"to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" +"modules." +msgstr "" + +#: gnu/packages/web.scm:954 +msgid "Regex DispatchType for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:955 +msgid "" +"Dispatch type managing path-matching behaviour using\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" +"core. It is recommend that you use Chained methods or other techniques= \n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" +"when the dispatch type is first seen in your application." +msgstr "" + +#: gnu/packages/web.scm:1003 +msgid "DBIx::Class::Schema Model Class" +msgstr "" + +#: gnu/packages/web.scm:1004 +msgid "" +"This is a Catalyst Model for DBIx::Class::Schema-based\n" +"Models." +msgstr "" + +#: gnu/packages/web.scm:1028 +msgid "Request logging from within Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1029 +msgid "" +"This Catalyst plugin enables you to create \"access logs\"\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" +"for you. It will work even with Catalyst debug logging turned off." +msgstr "" + +#: gnu/packages/web.scm:1061 +msgid "Infrastructure plugin for the Catalyst authentication framework" +msgstr "" + +#: gnu/packages/web.scm:1062 +msgid "" +"The authentication plugin provides generic user support for\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" +"who they claim to be), and authorization (allowing the user to do what = the\n" +"system authorises them to do)." +msgstr "" + +#: gnu/packages/web.scm:1092 +msgid "Role-based authorization for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1093 +msgid "" +"Catalyst::Plugin::Authorization::Roles provides role-based\n" +"authorization for Catalyst based on Catalyst::Plugin::Authentication." +msgstr "" + +#: gnu/packages/web.scm:1116 +msgid "Captchas for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1117 +msgid "" +"This plugin creates and validates Captcha images for\n" +"Catalyst." +msgstr "" + +#: gnu/packages/web.scm:1143 +msgid "Load config files of various types" +msgstr "" + +#: gnu/packages/web.scm:1144 +msgid "" +"This module will attempt to load find and load configuration\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" +"formats." +msgstr "" + +#: gnu/packages/web.scm:1174 +msgid "Catalyst generic session plugin" +msgstr "" + +#: gnu/packages/web.scm:1175 +msgid "" +"This plugin links the two pieces required for session\n" +"management in web applications together: the state, and the store." +msgstr "" + +#: gnu/packages/web.scm:1201 +msgid "Maintain session IDs using cookies" +msgstr "" + +#: gnu/packages/web.scm:1202 +msgid "" +"In order for Catalyst::Plugin::Session to work, the session\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" +"on the server. This plugin stores the session ID on the client using t= he\n" +"cookie mechanism." +msgstr "" + +#: gnu/packages/web.scm:1232 +msgid "FastMmap session storage backend" +msgstr "" + +#: gnu/packages/web.scm:1233 +msgid "" +"Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" +"storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" +"memory interprocess cache. It is based on Cache::FastMmap." +msgstr "" + +#: gnu/packages/web.scm:1256 +msgid "Stack trace on the Catalyst debug screen" +msgstr "" + +#: gnu/packages/web.scm:1257 +msgid "" +"This plugin enhances the standard Catalyst debug screen by\n" +"including a stack trace of your application up to the point where the e= rror\n" +"occurred. Each stack frame is displayed along with the package name, l= ine\n" +"number, file name, and code context surrounding the line number." +msgstr "" + +#: gnu/packages/web.scm:1283 +msgid "Simple serving of static pages" +msgstr "" + +#: gnu/packages/web.scm:1284 +msgid "" +"The Static::Simple plugin is designed to make serving static\n" +"content in your application during development quick and easy, without\= n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" +"plugin uses the lightweight MIME::Types module to map file extensions t= o\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" +"MIME type directly to the browser, without being processed through Cata= lyst." +msgstr "" + +#: gnu/packages/web.scm:1351 +msgid "The Catalyst Framework Runtime" +msgstr "" + +#: gnu/packages/web.scm:1352 +msgid "" +"Catalyst is a modern framework for making web applications.\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" +"\"plug in\" existing Perl modules that do what you need." +msgstr "" + +#: gnu/packages/web.scm:1382 +msgid "Replace request base with value passed by HTTP proxy" +msgstr "" + +#: gnu/packages/web.scm:1383 +msgid "" +"This module is a Moose::Role which allows you more\n" +"flexibility in your application's deployment configurations when deploy= ed\n" +"behind a proxy. Using this module, the request base ($c->req->base) is= \n" +"replaced with the contents of the X-Request-Base header." +msgstr "" + +#: gnu/packages/web.scm:1409 +msgid "Download data in many formats" +msgstr "" + +#: gnu/packages/web.scm:1410 +msgid "" +"The purpose of this module is to provide a method for\n" +"downloading data into many supportable formats. For example, downloadi= ng a\n" +"table based report in a variety of formats (CSV, HTML, etc.)." +msgstr "" + +#: gnu/packages/web.scm:1435 +msgid "Catalyst JSON view" +msgstr "" + +#: gnu/packages/web.scm:1436 +msgid "" +"Catalyst::View::JSON is a Catalyst View handler that returns\n" +"stash data in JSON format." +msgstr "" + +#: gnu/packages/web.scm:1461 +msgid "Template View Class" +msgstr "" + +#: gnu/packages/web.scm:1462 +msgid "" +"This module is a Catalyst view class for the Template\n" +"Toolkit." +msgstr "" + +#: gnu/packages/web.scm:1491 +msgid "Trait Loading and Resolution for Catalyst Components" +msgstr "" + +#: gnu/packages/web.scm:1492 +msgid "" +"Adds a \"COMPONENT\" in Catalyst::Component method to your\n" +"Catalyst component base class that reads the optional \"traits\" parame= ter\n" +"from app and component config and instantiates the component subclass w= ith\n" +"those traits using \"new_with_traits\" in MooseX::Traits from\n" +"MooseX::Traits::Pluggable." +msgstr "" + +#: gnu/packages/web.scm:1517 +msgid "Apply roles to Catalyst classes" +msgstr "" + +#: gnu/packages/web.scm:1518 +msgid "" +"CatalystX::RoleApplicator applies roles to Catalyst\n" +"application classes." +msgstr "" + +#: gnu/packages/web.scm:1544 +msgid "Catalyst development server with Starman" +msgstr "" + +#: gnu/packages/web.scm:1545 +msgid "" +"This module provides a Catalyst extension to replace the\n" +"development server with Starman." +msgstr "" + +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" + +#: gnu/packages/web.scm:1570 +msgid "" +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." +msgstr "" + +#: gnu/packages/web.scm:1594 +msgid "CGI interface that is CGI.pm compliant" +msgstr "" + +#: gnu/packages/web.scm:1595 +msgid "" +"CGI::Simple provides a relatively lightweight drop in\n" +"replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" +"parameter parsing, file upload, cookie handling and header generation." +msgstr "" + +#: gnu/packages/web.scm:1616 +msgid "Build structures from CGI data" +msgstr "" + +#: gnu/packages/web.scm:1617 +msgid "" +"This is a module for building structured data from CGI\n" +"inputs, in a manner reminiscent of how PHP does." +msgstr "" + +#: gnu/packages/web.scm:1640 +msgid "Date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:1641 +msgid "" +"This module provides functions that deal with the date\n" +"formats used by the HTTP protocol." +msgstr "" + +#: gnu/packages/web.scm:1661 +msgid "MD5 sums for files and urls" +msgstr "" + +#: gnu/packages/web.scm:1662 +msgid "" +"Digest::MD5::File is a Perl extension for getting MD5 sums\n" +"for files and urls." +msgstr "" + +#: gnu/packages/web.scm:1680 +msgid "Perl locale encoding determination" +msgstr "" + +#: gnu/packages/web.scm:1682 +msgid "" +"The POSIX locale system is used to specify both the language\n" +"conventions requested by the user and the preferred character set to\n" +"consume and output. The Encode::Locale module looks up the charset and= \n" +"encoding (called a CODESET in the locale jargon) and arranges for the\n= " +"Encode module to know this encoding under the name \"locale\". It mean= s\n" +"bytes obtained from the environment can be converted to Unicode strings= \n" +"by calling Encode::encode(locale =3D> $bytes) and converted back again\= n" +"with Encode::decode(locale =3D> $string)." +msgstr "" + +#: gnu/packages/web.scm:1708 +msgid "Perl directory listing parser" +msgstr "" + +#: gnu/packages/web.scm:1710 +msgid "" +"The File::Listing module exports a single function called parse_dir(),\= n" +"which can be used to parse directory listings." +msgstr "" + +#: gnu/packages/web.scm:1742 +msgid "Stock and mutual fund quotes" +msgstr "" + +#: gnu/packages/web.scm:1744 +msgid "" +"Finance::Quote gets stock quotes from various internet sources, includi= ng\n" +"Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." +msgstr "" + +#: gnu/packages/web.scm:1766 +msgid "Perl extension providing access to the GSSAPIv2 library" +msgstr "" + +#: gnu/packages/web.scm:1767 +msgid "" +"This is a Perl extension for using GSSAPI C bindings as\n" +"described in RFC 2744." +msgstr "" + +#: gnu/packages/web.scm:1787 +msgid "Manipulate tables of HTML::Element" +msgstr "" + +#: gnu/packages/web.scm:1789 +msgid "" +"HTML::Element::Extended is a Perl extension for manipulating a table\n" +"composed of HTML::Element style components." +msgstr "" + +#: gnu/packages/web.scm:1813 +msgid "Perl class representing an HTML form element" +msgstr "" + +#: gnu/packages/web.scm:1814 +msgid "" +"Objects of the HTML::Form class represents a single HTML\n" +"
...
instance." +msgstr "" + +#: gnu/packages/web.scm:1836 +msgid "Check for HTML errors in a string or file" +msgstr "" + +#: gnu/packages/web.scm:1837 +msgid "" +"HTML::Lint is a pure-Perl HTML parser and checker for\n" +"syntactic legitmacy." +msgstr "" + +#: gnu/packages/web.scm:1858 +msgid "Extract contents from HTML tables" +msgstr "" + +#: gnu/packages/web.scm:1860 +msgid "" +"HTML::TableExtract is a Perl module for extracting the content containe= d\n" +"in tables within an HTML document, either as text or encoded element tr= ees." +msgstr "" + +#: gnu/packages/web.scm:1885 +msgid "Work with HTML in a DOM-like tree structure" +msgstr "" + +#: gnu/packages/web.scm:1886 +msgid "" +"This distribution contains a suite of modules for\n" +"representing, creating, and extracting information from HTML syntax tre= es." +msgstr "" + +#: gnu/packages/web.scm:1906 +msgid "Perl HTML parser class" +msgstr "" + +#: gnu/packages/web.scm:1908 +msgid "" +"Objects of the HTML::Parser class will recognize markup and separate\n" +"it from plain text (alias data content) in HTML documents. As differen= t\n" +"kinds of markup and text are recognized, the corresponding event handle= rs\n" +"are invoked." +msgstr "" + +#: gnu/packages/web.scm:1928 +msgid "Perl data tables useful in parsing HTML" +msgstr "" + +#: gnu/packages/web.scm:1930 +msgid "" +"The HTML::Tagset module contains several data tables useful in various\= n" +"kinds of HTML parsing operations." +msgstr "" + +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" + +#: gnu/packages/web.scm:1951 +msgid "" +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." +msgstr "" + +#: gnu/packages/web.scm:1979 +msgid "HTTP Body Parser" +msgstr "" + +#: gnu/packages/web.scm:1980 +msgid "" +"HTTP::Body parses chunks of HTTP POST data and supports\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" +"and multipart/form-data." +msgstr "" + +#: gnu/packages/web.scm:2006 +msgid "Minimalist HTTP user agent cookie jar" +msgstr "" + +#: gnu/packages/web.scm:2007 +msgid "" +"This module implements a minimalist HTTP user agent cookie\n" +"jar in conformance with RFC 6265 ." +msgstr "" + +#: gnu/packages/web.scm:2027 +msgid "Perl HTTP cookie jars" +msgstr "" + +#: gnu/packages/web.scm:2029 +msgid "" +"The HTTP::Cookies class is for objects that represent a cookie jar,\n" +"that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" +"object knows about." +msgstr "" + +#: gnu/packages/web.scm:2051 +msgid "Perl simple http server class" +msgstr "" + +#: gnu/packages/web.scm:2053 +msgid "" +"Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" +"on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " +"IO::Socket::INET, so you can perform socket operations directly on it t= oo." +msgstr "" + +#: gnu/packages/web.scm:2072 +msgid "Perl date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:2074 +msgid "" +"The HTTP::Date module provides functions that deal with date formats\n" +"used by the HTTP protocol (and then some more)." +msgstr "" + +#: gnu/packages/web.scm:2097 +msgid "Perl HTTP style message" +msgstr "" + +#: gnu/packages/web.scm:2099 +msgid "An HTTP::Message object contains some headers and a content body.= " +msgstr "" + +#: gnu/packages/web.scm:2118 +msgid "Perl http content negotiation" +msgstr "" + +#: gnu/packages/web.scm:2120 +msgid "" +"The HTTP::Negotiate module provides a complete implementation of the\n" +"HTTP content negotiation algorithm specified in\n" +"draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows = for\n" +"the selection of a preferred content representation based upon attribut= es\n" +"of the negotiable variants and the value of the various Accept* header\= n" +"fields in the request." +msgstr "" + +#: gnu/packages/web.scm:2145 +msgid "Parse HTTP/1.1 requests" +msgstr "" + +#: gnu/packages/web.scm:2146 +msgid "" +"This is an HTTP request parser. It takes chunks of text as\n" +"received and returns a 'hint' as to what is required, or returns the\n" +"HTTP::Request when a complete request has been read. HTTP/1.1 chunking= is\n" +"supported." +msgstr "" + +#: gnu/packages/web.scm:2166 +msgid "Fast HTTP request parser" +msgstr "" + +#: gnu/packages/web.scm:2167 +msgid "" +"HTTP::Parser::XS is a fast, primitive HTTP request/response\n" +"parser." +msgstr "" + +#: gnu/packages/web.scm:2188 +msgid "Set up a CGI environment from an HTTP::Request" +msgstr "" + +#: gnu/packages/web.scm:2189 +msgid "" +"This module provides a convenient way to set up a CGI\n" +"environment from an HTTP::Request." msgstr "" =20 -#: gnu/packages/linux.scm:499 -msgid "Tools for working with USB devices, such as lsusb" +#: gnu/packages/web.scm:2213 +msgid "Lightweight HTTP server" msgstr "" =20 -#: gnu/packages/linux.scm:501 -msgid "Tools for working with USB devices, such as lsusb." +#: gnu/packages/web.scm:2214 +msgid "" +"HTTP::Server::Simple is a simple standalone HTTP daemon with\n" +"no non-core module dependencies. It can be used for building a standal= one\n" +"http-based UI to your existing tools." msgstr "" =20 -#: gnu/packages/linux.scm:542 -msgid "Creating and checking ext2/ext3/ext4 file systems" +#: gnu/packages/web.scm:2238 +msgid "HTTP/1.1 client" msgstr "" =20 -#: gnu/packages/linux.scm:544 -msgid "This package provides tools for manipulating ext2/ext3/ext4 file = systems." +#: gnu/packages/web.scm:2239 +msgid "" +"This is a very simple HTTP/1.1 client, designed for doing\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" +"It supports proxies and redirection. It also correctly resumes after E= INTR." msgstr "" =20 -#: gnu/packages/linux.scm:575 -msgid "Statically-linked fsck.* commands from e2fsprogs" +#: gnu/packages/web.scm:2258 +msgid "Perl module to open an HTML file with automatic charset detection= " msgstr "" =20 -#: gnu/packages/linux.scm:577 +#: gnu/packages/web.scm:2260 msgid "" -"This package provides statically-linked command of fsck.ext[234] taken\= n" -"from the e2fsprogs package. It is meant to be used in initrds." +"IO::HTML provides an easy way to open a file containing HTML while\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" +"algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" =20 -#: gnu/packages/linux.scm:596 -msgid "System call tracer for Linux" +#: gnu/packages/web.scm:2280 +msgid "Family-neutral IP socket supporting both IPv4 and IPv6" msgstr "" =20 -#: gnu/packages/linux.scm:598 +#: gnu/packages/web.scm:2281 msgid "" -"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" -"trace of all the system calls made by a another process/program." +"This module provides a protocol-independent way to use IPv4\n" +"and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" =20 -#: gnu/packages/linux.scm:617 -msgid "The Advanced Linux Sound Architecture libraries" +#: gnu/packages/web.scm:2301 +msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" msgstr "" =20 -#: gnu/packages/linux.scm:619 gnu/packages/linux.scm:661 +#: gnu/packages/web.scm:2303 msgid "" -"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" -"MIDI functionality to the Linux-based operating system." +"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" +"select or poll." msgstr "" =20 -#: gnu/packages/linux.scm:659 -msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" +#: gnu/packages/web.scm:2334 +msgid "Perl modules for the WWW" msgstr "" =20 -#: gnu/packages/linux.scm:683 -msgid "Program to configure the Linux IP packet filtering rules" +#: gnu/packages/web.scm:2336 +msgid "" +"The libwww-perl collection is a set of Perl modules which provides a\n" +"simple and consistent application programming interface to the\n" +"World-Wide Web. The main focus of the library is to provide classes\n" +"and functions that allow you to write WWW clients. The library also\n" +"contains modules that are of more general use and even classes that\n" +"help you implement simple HTTP servers." +msgstr "" + +#: gnu/packages/web.scm:2358 +msgid "Perl module to guess the media type for a file or a URL" msgstr "" =20 -#: gnu/packages/linux.scm:685 +#: gnu/packages/web.scm:2360 +#, scheme-format msgid "" -"iptables is the userspace command line program used to configure the\n" -"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted to= wards\n" -"system administrators. Since Network Address Translation is also confi= gured\n" -"from the packet filter ruleset, iptables is used for this, too. The ip= tables\n" -"package also includes ip6tables. ip6tables is used for configuring the= IPv6\n" -"packet filter." +"The LWP::MediaTypes module provides functions for handling media (also\= n" +"known as MIME) types and encodings. The mapping from file extensions t= o\n" +"media types is defined by the media.types file. If the ~/.media.types = file\n" +"exists it is used instead." msgstr "" =20 -#: gnu/packages/linux.scm:733 -msgid "Utilities for controlling TCP/IP networking and traffic in Linux" +#: gnu/packages/web.scm:2386 +msgid "HTTPS support for LWP::UserAgent" msgstr "" =20 -#: gnu/packages/linux.scm:735 +#: gnu/packages/web.scm:2387 msgid "" -"Iproute2 is a collection of utilities for controlling TCP/IP\n" -"networking and traffic with the Linux kernel.\n" -"\n" -"Most network configuration manuals still refer to ifconfig and route as= the\n" -"primary network configuration tools, but ifconfig is known to behave\n" -"inadequately in modern network environments. They should be deprecated= , but\n" -"most distros still include them. Most network configuration systems ma= ke use\n" -"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct aims\n" -"to support most modern network technologies, as it doesn't use ifconfig= and\n" -"allows a system administrator to make use of all iproute2 features, inc= luding\n" -"traffic control.\n" -"\n" -"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" -"consists of several tools, of which the most important are ip and tc. = ip\n" -"controls IPv4 and IPv6 configuration and tc stands for traffic control.= Both\n" -"tools print detailed usage messages and are accompanied by a set of\n" -"manpages." +"The LWP::Protocol::https module provides support for using\n" +"https schemed URLs with LWP." msgstr "" =20 -#: gnu/packages/linux.scm:827 -msgid "Tools for controlling the network subsystem in Linux" +#: gnu/packages/web.scm:2407 +msgid "Virtual browser that retries errors" msgstr "" =20 -#: gnu/packages/linux.scm:829 +#: gnu/packages/web.scm:2408 msgid "" -"This package includes the important tools for controlling the network\n= " -"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" -"netstat, rarp and route. Additionally, this package contains utilities= \n" -"relating to particular network hardware types (plipconfig, slattach) an= d\n" -"advanced aspects of IP configuration (iptunnel, ipmaddr)." +"LWP::UserAgent::Determined works just like LWP::UserAgent,\n" +"except that when you use it to get a web page but run into a\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" +"and retry a few times." msgstr "" =20 -#: gnu/packages/linux.scm:862 -msgid "Library for working with POSIX capabilities" +#: gnu/packages/web.scm:2453 +msgid "Perl interface to Amazon S3" msgstr "" =20 -#: gnu/packages/linux.scm:864 -msgid "" -"Libcap2 provides a programming interface to POSIX capabilities on\n" -"Linux-based operating systems." +#: gnu/packages/web.scm:2454 +msgid "This module provides a Perlish interface to Amazon S3." msgstr "" =20 -#: gnu/packages/linux.scm:896 -msgid "Manipulate Ethernet bridges" +#: gnu/packages/web.scm:2474 +msgid "Perl low-level HTTP connection (client)" msgstr "" =20 -#: gnu/packages/linux.scm:898 +#: gnu/packages/web.scm:2476 msgid "" -"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" -"to connect two Ethernet segments together in a protocol independent way= .\n" -"Packets are forwarded based on Ethernet address, rather than IP address= (like\n" -"a router). Since forwarding is done at Layer 2, all protocols can go\n= " -"transparently through a bridge." +"The Net::HTTP class is a low-level HTTP client. An instance of the\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" +"is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" +"HTTP/1.1." msgstr "" =20 -#: gnu/packages/linux.scm:920 -msgid "NetLink protocol library suite" +#: gnu/packages/web.scm:2496 +msgid "Extensible Perl server engine" msgstr "" =20 -#: gnu/packages/linux.scm:922 +#: gnu/packages/web.scm:2497 msgid "" -"The libnl suite is a collection of libraries providing APIs to netlink\= n" -"protocol based Linux kernel interfaces. Netlink is an IPC mechanism pr= imarly\n" -"between the kernel and user space processes. It was designed to be a m= ore\n" -"flexible successor to ioctl to provide mainly networking related kernel= \n" -"configuration and monitoring interfaces." +"Net::Server is an extensible, generic Perl server engine.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" +"It includes with it the ability to run as an inetd\n" +"process (Net::Server::INET), a single connection server (Net::Server or= \n" +"Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" +"server which maintains a constant number of preforked\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" +"or to multiple server ports." msgstr "" =20 -#: gnu/packages/linux.scm:955 -msgid "Analyze power consumption on Intel-based laptops" +#: gnu/packages/web.scm:2525 +msgid "SSL support for Net::SMTP" msgstr "" =20 -#: gnu/packages/linux.scm:957 -msgid "" -"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" -"power management. In addition to being a diagnostic tool, PowerTOP als= o has\n" -"an interactive mode where the user can experiment various power managem= ent\n" -"settings for cases where the operating system has not enabled these\n" -"settings." +#: gnu/packages/web.scm:2526 +msgid "SSL support for Net::SMTP." msgstr "" =20 -#: gnu/packages/linux.scm:979 -msgid "Audio mixer for X and the console" +#: gnu/packages/web.scm:2560 +msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" msgstr "" =20 -#: gnu/packages/linux.scm:981 +#: gnu/packages/web.scm:2561 msgid "" -"Aumix adjusts an audio mixer from X, the console, a terminal,\n" -"the command line or a script." +"Plack is a set of tools for using the PSGI stack. It\n" +"contains middleware components, a reference server, and utilities for W= eb\n" +"application frameworks. Plack is like Ruby's Rack or Python's Paste fo= r\n" +"WSGI." msgstr "" =20 -#: gnu/packages/linux.scm:1005 -msgid "Displays the IO activity of running processes" +#: gnu/packages/web.scm:2587 +msgid "Plack::Middleware which sets body for redirect response" msgstr "" =20 -#: gnu/packages/linux.scm:1007 +#: gnu/packages/web.scm:2588 msgid "" -"Iotop is a Python program with a top like user interface to show the\n" -"processes currently causing I/O." +"This module sets the body in redirect response, if it's not\n" +"already set." msgstr "" =20 -#: gnu/packages/linux.scm:1058 -msgid "Support file systems implemented in user space" +#: gnu/packages/web.scm:2611 +msgid "Override REST methods to Plack apps via POST" msgstr "" =20 -#: gnu/packages/linux.scm:1060 +#: gnu/packages/web.scm:2612 msgid "" -"As a consequence of its monolithic design, file system code for Linux\n= " -"normally goes into the kernel itself---which is not only a robustness i= ssue,\n" -"but also an impediment to system extensibility. FUSE, for \"file syste= ms in\n" -"user space\", is a kernel module and user-space library that tries to a= ddress\n" -"part of this problem by allowing users to run file system implementatio= ns as\n" -"user-space processes." +"This middleware allows for POST requests that pretend to be\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" +"can say what method it actually meant." msgstr "" =20 -#: gnu/packages/linux.scm:1085 -msgid "User-space union file system" +#: gnu/packages/web.scm:2636 +msgid "Plack::Middleware which removes body for HTTP response" msgstr "" =20 -#: gnu/packages/linux.scm:1087 +#: gnu/packages/web.scm:2637 msgid "" -"UnionFS-FUSE is a flexible union file system implementation in user\n" -"space, using the FUSE library. Mounting a union file system allows you= to\n" -"\"aggregate\" the contents of several directories into a single mount p= oint.\n" -"UnionFS-FUSE additionally supports copy-on-write." +"This module removes the body in an HTTP response if it's not\n" +"required." msgstr "" =20 -#: gnu/packages/linux.scm:1112 -msgid "User-space union file system (statically linked)" +#: gnu/packages/web.scm:2658 +msgid "Supports app to run as a reverse proxy backend" msgstr "" =20 -#: gnu/packages/linux.scm:1154 -msgid "Mount remote file systems over SSH" +#: gnu/packages/web.scm:2659 +msgid "" +"Plack::Middleware::ReverseProxy resets some HTTP headers,\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" +"and stop fake requests using 'enable_if' directive in your app.psgi." msgstr "" =20 -#: gnu/packages/linux.scm:1156 +#: gnu/packages/web.scm:2680 +msgid "Run HTTP tests on external live servers" +msgstr "" + +#: gnu/packages/web.scm:2681 msgid "" -"This is a file system client based on the SSH File Transfer Protocol.\n= " -"Since most SSH servers already support this protocol it is very easy to= set\n" -"up: on the server side there's nothing to do; on the client side mounti= ng the\n" -"file system is as easy as logging into the server with an SSH client." +"This module allows your to run your Plack::Test tests\n" +"against an external server instead of just against a local application = " +"through\n" +"either mocked HTTP or a locally spawned server." msgstr "" =20 -#: gnu/packages/linux.scm:1204 -msgid "Tools for non-uniform memory access (NUMA) machines" +#: gnu/packages/web.scm:2703 +msgid "Testing TCP programs" msgstr "" =20 -#: gnu/packages/linux.scm:1206 -msgid "" -"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" -"memory is not all in one place. The numactl program allows you to run = your\n" -"application program on specific CPU's and memory nodes. It does this b= y\n" -"supplying a NUMA memory policy to the operating system before running y= our\n" -"program.\n" -"\n" -"The package contains other commands, such as numademo, numastat and mem= hog.\n" -"The numademo command provides a quick overview of NUMA performance on y= our\n" -"system." +#: gnu/packages/web.scm:2704 +msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" =20 -#: gnu/packages/linux.scm:1269 -msgid "Linux keyboard utilities and keyboard maps" +#: gnu/packages/web.scm:2732 +msgid "Testing-specific WWW::Mechanize subclass" msgstr "" =20 -#: gnu/packages/linux.scm:1271 +#: gnu/packages/web.scm:2733 msgid "" -"This package contains keytable files and keyboard utilities compatible\= n" -"for systems using the Linux kernel. This includes commands such as\n" -"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +"Test::WWW::Mechanize is a subclass of the Perl module\n" +"WWW::Mechanize that incorporates features for web application testing." msgstr "" =20 -#: gnu/packages/linux.scm:1290 -msgid "Monitor file accesses" +#: gnu/packages/web.scm:2766 +msgid "Test::WWW::Mechanize for Catalyst" msgstr "" =20 -#: gnu/packages/linux.scm:1292 +#: gnu/packages/web.scm:2767 msgid "" -"The inotify-tools packages provides a C library and command-line tools\= n" -"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +"The Test::WWW::Mechanize::Catalyst module meshes the\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" +"testing of Catalyst applications without needing to start up a web serv= er." msgstr "" =20 -#: gnu/packages/linux.scm:1330 -msgid "Kernel module tools" +#: gnu/packages/web.scm:2791 +msgid "Test PSGI programs using WWW::Mechanize" msgstr "" =20 -#: gnu/packages/linux.scm:1331 +#: gnu/packages/web.scm:2792 msgid "" -"Kmod is a set of tools to handle common tasks with Linux\n" -"kernel modules like insert, remove, list, check properties, resolve\n" -"dependencies and aliases.\n" -"\n" -"These tools are designed on top of libkmod, a library that is shipped w= ith\n" -"kmod. The aim is to be compatible with tools, configurations and indic= es\n" -"from the module-init-tools project." +"PSGI is a specification to decouple web server environments\n" +"from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" +"WWW::Mechanize that incorporates features for web application testing. = The\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" +"applications." msgstr "" =20 -#: gnu/packages/linux.scm:1380 -msgid "Userspace device management" +#: gnu/packages/web.scm:2812 +msgid "Perl Uniform Resource Identifiers (absolute and relative)" msgstr "" =20 -#: gnu/packages/linux.scm:1381 +#: gnu/packages/web.scm:2814 msgid "" -"Udev is a daemon which dynamically creates and removes\n" -"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" -"time." +"The URI module implements the URI class. Objects of this class\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" +"and updated by RFC 2732." msgstr "" =20 -#: gnu/packages/linux.scm:1470 -msgid "Logical volume management for Linux" +#: gnu/packages/web.scm:2837 +msgid "Find URIs in arbitrary text" msgstr "" =20 -#: gnu/packages/linux.scm:1472 +#: gnu/packages/web.scm:2838 msgid "" -"LVM2 is the logical volume management tool set for Linux-based systems.= \n" -"This package includes the user-space libraries and tools, including the= device\n" -"mapper. Kernel components are part of Linux-libre." +"This module finds URIs and URLs (according to what URI.pm\n" +"considers a URI) in plain text. It only finds URIs which include a\n" +"scheme (http:// or the like), for something a bit less strict, consider= \n" +"URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." msgstr "" =20 -#: gnu/packages/linux.scm:1499 -msgid "Tools for manipulating Linux Wireless Extensions" +#: gnu/packages/web.scm:2860 +msgid "WebSocket support for URI package" msgstr "" =20 -#: gnu/packages/linux.scm:1500 +#: gnu/packages/web.scm:2861 msgid "" -"Wireless Tools are used to manipulate the Linux Wireless\n" -"Extensions. The Wireless Extension is an interface allowing you to set= \n" -"Wireless LAN specific parameters and get the specific stats." +"With this module, the URI package provides the same set of\n" +"methods for WebSocket URIs as it does for HTTP URIs." msgstr "" =20 -#: gnu/packages/linux.scm:1572 -msgid "Utilities to read temperature/voltage/fan sensors" +#: gnu/packages/web.scm:2881 +msgid "Perl extension interface for libcurl" msgstr "" =20 -#: gnu/packages/linux.scm:1574 +#: gnu/packages/web.scm:2883 msgid "" -"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" -"you to access information from temperature, voltage, and fan speed sens= ors.\n" -"It works with most newer systems." +"This is a Perl extension interface for the libcurl file downloading\n" +"library." msgstr "" =20 -#: gnu/packages/linux.scm:1609 -msgid "Hardware health information viewer" +#: gnu/packages/web.scm:2912 +msgid "Web browsing in a Perl object" msgstr "" =20 -#: gnu/packages/linux.scm:1611 +#: gnu/packages/web.scm:2913 msgid "" -"Xsensors reads data from the libsensors library regarding hardware\n" -"health such as temperature, voltage and fan speed and displays the info= rmation\n" -"in a digital read-out." +"WWW::Mechanize is a Perl module for stateful programmatic\n" +"web browsing, used for automating interaction with websites." msgstr "" =20 -#: gnu/packages/linux.scm:1654 -msgid "Linux profiling with performance counters" +#: gnu/packages/web.scm:2933 +msgid "Perl database of robots.txt-derived permissions" msgstr "" =20 -#: gnu/packages/linux.scm:1656 +#: gnu/packages/web.scm:2935 msgid "" -"perf is a tool suite for profiling using hardware performance counters,= \n" -"with support in the Linux kernel. perf can instrument CPU performance\= n" -"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is c= apable\n" -"of lightweight profiling. This package contains the user-land tools an= d in\n" -"particular the 'perf' command." +"The WWW::RobotRules module parses /robots.txt files as specified in\n" +"\"A Standard for Robot Exclusion\", at\n" +". Webmasters can use the\n" +"/robots.txt file to forbid conforming robots from accessing parts of\n" +"their web site." msgstr "" =20 -#: gnu/packages/lout.scm:109 -msgid "Document layout system" +#: gnu/packages/web.scm:2955 +msgid "HTTP and WebSocket server library for R" msgstr "" =20 -#: gnu/packages/lout.scm:111 +#: gnu/packages/web.scm:2957 msgid "" -"The Lout document formatting system reads a high-level description of\n= " -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" -"output file.\n" -"\n" -"Lout offers an unprecedented range of advanced features, including opti= mal\n" -"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" -"scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" -"hyphenation (most European languages are supported), formatting of comp= uter\n" -"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" -"extended with definitions which are very much easier to write than trof= f of\n" -"TeX macros because Lout is a high-level, purely functional language, th= e\n" -"outcome of an eight-year research project that went back to the\n" -"beginning." +"The httpuv package provides low-level socket and protocol support for\n= " +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" +"intended as a building block for other packages, rather than making it\= n" +"particularly easy to create complete web applications using httpuv alon= e." msgstr "" =20 -#: gnu/packages/mpd.scm:62 -msgid "Music Player Daemon client library" +#: gnu/packages/web.scm:2978 +msgid "Robust, high performance JSON parser and generator for R" msgstr "" =20 -#: gnu/packages/mpd.scm:63 +#: gnu/packages/web.scm:2980 msgid "" -"A stable, documented, asynchronous API library for\n" -"interfacing MPD in the C, C++ & Objective C languages." +"The jsonlite package provides a fast JSON parser and generator optimize= d\n" +"for statistical data and the web. It offers flexible, robust, high\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" +"in systems and applications." +msgstr "" + +#: gnu/packages/web.scm:3008 +msgid "Simple HTTP server to serve static files or dynamic documents" +msgstr "" + +#: gnu/packages/web.scm:3010 +msgid "" +"Servr provides an HTTP server in R to serve static files, or dynamic\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" +"directory." msgstr "" =20 -#: gnu/packages/mpd.scm:121 -msgid "Music Player Daemon" +#: gnu/packages/web.scm:3029 +msgid "R tools for HTML" +msgstr "" + +#: gnu/packages/web.scm:3031 +msgid "This package provides tools for HTML generation and output in R." +msgstr "" + +#: gnu/packages/web.scm:3050 +msgid "HTML Widgets for R" msgstr "" =20 -#: gnu/packages/mpd.scm:122 +#: gnu/packages/web.scm:3052 msgid "" -"Music Player Daemon (MPD) is a flexible, powerful,\n" -"server-side application for playing music. Through plugins and librari= es it\n" -"can play a variety of sound files while being controlled by its network= \n" -"protocol." +"HTML widgets is a framework for creating HTML widgets that render in\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" +"applications." msgstr "" =20 -#: gnu/packages/mpd.scm:147 -msgid "Curses Music Player Daemon client" +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" msgstr "" =20 -#: gnu/packages/mpd.scm:148 +#: gnu/packages/web.scm:3073 msgid "" -"ncmpc is a fully featured MPD client, which runs in a\n" -"terminal using ncurses." +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." msgstr "" =20 -#: gnu/packages/mpd.scm:169 -msgid "Featureful ncurses based MPD client inspired by ncmpc" +#: gnu/packages/web.scm:3107 +msgid "HTML5 parsing library" msgstr "" =20 -#: gnu/packages/mpd.scm:170 +#: gnu/packages/web.scm:3109 msgid "" -"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" -"but it provides new useful features such as support for regular express= ions\n" -"for library searches, extended song format, items filtering, the abilit= y to\n" -"sort playlists, and a local filesystem browser." +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." msgstr "" =20 -#: gnu/packages/pdf.scm:79 -msgid "PDF rendering library" +#: gnu/packages/weechat.scm:98 +msgid "Extensible chat client" msgstr "" =20 -#: gnu/packages/pdf.scm:81 -msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +#: gnu/packages/weechat.scm:99 +msgid "" +"WeeChat (Wee Enhanced Environment for Chat) is an\n" +"Internet Relay Chat client, which is designed to be light and fast.\n" +"The client uses a curses frontend, and there are remote interfaces\n" +"for Web, Qt, Android and Emacs. In WeeChat everything can be done\n" +"with a keyboard, though it also supports mouse. It is customizable\n" +"and extensible with plugins and scripts." msgstr "" =20 -#: gnu/packages/pdf.scm:124 -msgid "Viewer for PDF files based on the Motif toolkit" +#: gnu/packages/wordnet.scm:79 +msgid "Lexical database for the English language" msgstr "" =20 -#: gnu/packages/pdf.scm:126 -msgid "Xpdf is a viewer for Portable Document Format (PDF) files" +#: gnu/packages/wordnet.scm:81 +msgid "" +"WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" +"each expressing a distinct concept. Synsets are interlinked by means o= f\n" +"conceptual-semantic and lexical relations. The resulting network of\n" +"meaningfully related words and concepts can be navigated with the brows= er.\n" +"WordNet is also freely and publicly available for download. WordNet's\= n" +"structure makes it a useful tool for computational linguistics and natu= ral\n" +"language processing." msgstr "" =20 -#: gnu/packages/pdf.scm:154 -msgid "Tools to work with the PDF file format" +#: gnu/packages/xiph.scm:66 +msgid "Library for manipulating the ogg multimedia format" msgstr "" =20 -#: gnu/packages/pdf.scm:156 +#: gnu/packages/xiph.scm:68 msgid "" -"PoDoFo is a C++ library and set of command-line tools to work with the\= n" -"PDF file format. It can parse PDF files and load them into memory, and= makes\n" -"it easy to modify them and write the changes to disk. It is primarily = useful\n" -"for applications that wish to do lower level manipulation of PDF, such = as\n" -"extracting content or merging files." +"The libogg library allows to manipulate the ogg multimedia container\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" +"audio and video data. In addition to encapsulation and interleaving of= \n" +"multiple data streams, ogg provides packet framing, error detection, an= d\n" +"periodic timestamps for seeking." msgstr "" =20 -#: gnu/packages/pdf.scm:217 -msgid "Lightweight PDF viewer and toolkit" +#: gnu/packages/xiph.scm:92 +msgid "Library implementing the vorbis audio format" msgstr "" =20 -#: gnu/packages/pdf.scm:219 +#: gnu/packages/xiph.scm:94 msgid "" -"MuPDF is a C library that implements a PDF and XPS parsing and\n" -"rendering engine. It is used primarily to render pages into bitmaps,\n= " -"but also provides support for other operations such as searching and\n" -"listing the table of contents and hyperlinks.\n" -"\n" -"The library ships with a rudimentary X11 viewer, and a set of command\n= " -"line tools for batch rendering (pdfdraw), examining the file structure\= n" -"(pdfshow), and rewriting files (pdfclean)." +"The libvorbis library implements the ogg vorbis audio format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit,= \n" +"polyphonic) audio and music at fixed and variable bitrates from 16 to\n= " +"128 kbps/channel." msgstr "" =20 -#: gnu/packages/ratpoison.scm:60 -msgid "Simple mouse-free tiling window manager" +#: gnu/packages/xiph.scm:119 +msgid "Library implementing the Theora video format" msgstr "" =20 -#: gnu/packages/ratpoison.scm:62 +#: gnu/packages/xiph.scm:121 msgid "" -"Ratpoison is a simple window manager with no fat library\n" -"dependencies, no fancy graphics, no window decorations, and no\n" -"rodent dependence. It is largely modelled after GNU Screen which\n" -"has done wonders in the virtual terminal market.\n" -"\n" -"The screen can be split into non-overlapping frames. All windows\n" -"are kept maximized inside their frames to take full advantage of\n" -"your precious screen real estate.\n" -"\n" -"All interaction with the window manager is done through keystrokes.\n" -"Ratpoison has a prefix map to minimize the key clobbering that\n" -"cripples Emacs and other quality pieces of software." +"The libtheora library implements the ogg theora video format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed video format." msgstr "" =20 -#: gnu/packages/scanner.scm:52 -msgid "Raster image scanner library and drivers" +#: gnu/packages/xiph.scm:142 +msgid "Library for patent-free audio compression format" msgstr "" =20 -#: gnu/packages/scanner.scm:53 +#: gnu/packages/xiph.scm:144 msgid "" -"SANE stands for \"Scanner Access Now Easy\" and is an API\n" -"proving access to any raster image scanner hardware (flatbed scanner,\n= " -"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" -"package contains the library and drivers." +"GNU Speex is a patent-free audio compression codec specially designed\n= " +"for speech. It is well-adapted to internet applications, such as VoIP.= It\n" +"features compression of different bands in the same bitstream, intensit= y\n" +"stereo encoding, and voice activity detection." msgstr "" =20 -#: gnu/packages/scheme.scm:126 -msgid "A Scheme implementation with integrated editor and debugger" +#: gnu/packages/xiph.scm:174 +msgid "Cross platform audio library" msgstr "" =20 -#: gnu/packages/scheme.scm:128 +#: gnu/packages/xiph.scm:176 msgid "" -"GNU/MIT Scheme is an implementation of the Scheme programming\n" -"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" -"features an integrated Emacs-like editor and a large runtime library." +"Libao is a cross-platform audio library that allows programs to\n" +"output audio using a simple API on a wide variety of platforms.\n" +"It currently supports:\n" +"Null output (handy for testing without a sound device),\n" +"WAV files,\n" +"AU files,\n" +"RAW files,\n" +"OSS (Open Sound System, used on Linux and FreeBSD),\n" +"ALSA (Advanced Linux Sound Architecture),\n" +"aRts (Analog RealTime Synth, used by KDE),\n" +"PulseAudio (next generation GNOME sound server),\n" +"esd (EsounD or Enlightened Sound Daemon),\n" +"Mac OS X,\n" +"Windows (98 and later),\n" +"AIX,\n" +"Sun/NetBSD/OpenBSD,\n" +"IRIX,\n" +"NAS (Network Audio Server),\n" +"RoarAudio (Modern, multi-OS, networked Sound System),\n" +"OpenBSD's sndio." +msgstr "" + +#: gnu/packages/xiph.scm:215 +msgid "Free lossless audio codec" +msgstr "" + +#: gnu/packages/xiph.scm:217 +msgid "" +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" +"meaning that audio is compressed in FLAC without any loss in quality." msgstr "" =20 -#: gnu/packages/scheme.scm:208 -msgid "Efficient Scheme compiler" +#: gnu/packages/xiph.scm:243 +msgid "Karaoke and text codec for embedding in ogg" msgstr "" =20 -#: gnu/packages/scheme.scm:210 +#: gnu/packages/xiph.scm:245 msgid "" -"Bigloo is a Scheme implementation devoted to one goal: enabling\n" -"Scheme based programming style where C(++) is usually\n" -"required. Bigloo attempts to make Scheme practical by offering\n" -"features usually presented by traditional programming languages\n" -"but not offered by Scheme and functional programming. Bigloo\n" -"compiles Scheme modules. It delivers small and fast stand alone\n" -"binary executables. Bigloo enables full connections between\n" -"Scheme and C programs and between Scheme and Java programs." +"Kate is an overlay codec, originally designed for karaoke and text,\n" +"that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" +"stream, and animated. Most of the time, this would be multiplexed with= \n" +"audio/video to carry subtitles, song lyrics (with or without karaoke da= ta),\n" +"etc., but doesn't have to be.\n" +"\n" +"Series of curves (splines, segments, etc.) may be attached to various\n= " +"properties (text position, font size, etc.) to create animated overlays= .\n" +"This allows scrolling or fading text to be defined. This can even be u= sed\n" +"to draw arbitrary shapes, so hand drawing can also be represented by a\= n" +"Kate stream." msgstr "" =20 -#: gnu/packages/scheme.scm:281 -msgid "Multi-tier programming language for the Web 2.0" +#: gnu/packages/xiph.scm:279 +msgid "Ogg vorbis tools" msgstr "" =20 -#: gnu/packages/scheme.scm:283 +#: gnu/packages/xiph.scm:281 msgid "" -"HOP is a multi-tier programming language for the Web 2.0 and the\n" -"so-called diffuse Web. It is designed for programming interactive web\= n" -"applications in many fields such as multimedia (web galleries, music pl= ayers,\n" -"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" -"mashups, office (web agendas, mail clients, ...), etc." +"Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" +"general-purpose compressed audio format.\n" +"\n" +"The package vorbis-tools contains\n" +"ogg123, an ogg vorbis command line audio player;\n" +"oggenc, the ogg vorbis encoder;\n" +"oggdec, a simple, portable command line decoder (to wav and raw);\n" +"ogginfo, to obtain information (tags, bitrate, length, etc.) about\n" +" an ogg vorbis file." msgstr "" =20 -#: gnu/packages/scheme.scm:323 -msgid "R5RS Scheme implementation that compiles native code via C" +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 +msgid "Versatile audio codec" msgstr "" =20 -#: gnu/packages/scheme.scm:325 +#: gnu/packages/xiph.scm:308 msgid "" -"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" -"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" -"language standard, and includes many enhancements and extensions." +"Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" +"but is also intended for storage and streaming applications. It is\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" +"incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." msgstr "" =20 -#: gnu/packages/scheme.scm:344 -msgid "Scheme implementation using a bytecode interpreter" +#: gnu/packages/xiph.scm:342 +msgid "Command line utilities to encode, inspect, and decode .opus files= " msgstr "" =20 -#: gnu/packages/scheme.scm:346 +#: gnu/packages/xiph.scm:343 msgid "" -"Scheme 48 is an implementation of Scheme based on a byte-code\n" -"interpreter and is designed to be used as a testbed for experiments in\= n" -"implementation techniques and as an expository tool." +"Opus is a royalty-free, highly versatile audio codec.\n" +"Opus-tools provide command line utilities for creating, inspecting and\= n" +"decoding .opus files." msgstr "" =20 -#: gnu/packages/scheme.scm:419 -msgid "Implementation of Scheme and related languages" +#: gnu/packages/xiph.scm:371 +msgid "" +"The opusfile library provides seeking, decode, and playback of Opus\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" +"windows systems." msgstr "" =20 -#: gnu/packages/scheme.scm:421 +#: gnu/packages/xiph.scm:401 +#, fuzzy +msgid "Streaming media server" +msgstr "Folyamszerkeszt=C5=91" + +#: gnu/packages/xiph.scm:402 msgid "" -"Racket is an implementation of the Scheme programming language (R5RS an= d\n" -"R6RS) and related languages, such as Typed Racket. It features a compi= ler and\n" -"a virtual machine with just-in-time native compilation, as well as a la= rge set\n" -"of libraries." +"Icecast is a streaming media server which currently supports\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" +"create an Internet radio station or a privately running jukebox and man= y\n" +"things in between." msgstr "" =20 -#: gnu/packages/wordnet.scm:79 -msgid "Lexical database for the English language" +#: gnu/packages/xiph.scm:430 +msgid "Audio streaming library for icecast encoders" msgstr "" =20 -#: gnu/packages/wordnet.scm:81 +#: gnu/packages/xiph.scm:432 msgid "" -"WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" -"adjectives and adverbs are grouped into sets of cognitive synonyms\n" -"(synsets), each expressing a distinct concept. Synsets are interlinked= by\n" -"means of conceptual-semantic and lexical relations. The resulting netw= ork of\n" -"meaningfully related words and concepts can be navigated with the brows= er.\n" -"WordNet is also freely and publicly available for download. WordNet's\= n" -"structure makes it a useful tool for computational linguistics and natu= ral\n" -"language processing." +"Libshout is a library for communicating with and sending data to an\n" +"icecast server. It handles the socket connection, the timing of the da= ta,\n" +"and prevents bad data from getting to the icecast server." msgstr "" =20 -#: gnu/packages/zip.scm:56 +#: gnu/packages/zip.scm:57 msgid "Compression and file packing utility" msgstr "" =20 -#: gnu/packages/zip.scm:58 +#: gnu/packages/zip.scm:59 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful= \n" "for packaging a set of files for distribution, for archiving files, and= for\n" @@ -1211,15 +11368,16 @@ msgid "" "directory structure can be packed into a ZIP archive with a single comm= and.\n" "\n" "Zip has one compression method (deflation) and can also store files wit= hout\n" -"compression. Zip automatically chooses the better of the two for each = file.\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" =20 -#: gnu/packages/zip.scm:98 +#: gnu/packages/zip.scm:113 msgid "Decompression and file extraction utility" msgstr "" =20 -#: gnu/packages/zip.scm:100 +#: gnu/packages/zip.scm:115 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\= n" "also called \"zipfiles\".\n" @@ -1230,29 +11388,23 @@ msgid "" "recreates the stored directory structure by default." msgstr "" =20 -#: gnu/packages/zip.scm:134 +#: gnu/packages/zip.scm:149 msgid "Library for accessing zip files" msgstr "" =20 -#: gnu/packages/zip.scm:136 +#: gnu/packages/zip.scm:151 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" =20 -#: gnu/packages/zip.scm:154 +#: gnu/packages/zip.scm:169 msgid "Provides an interface to ZIP archive files" msgstr "" =20 -#: gnu/packages/zip.scm:155 -msgid "" -"The Archive::Zip module allows a Perl program to create,\n" -"manipulate, read, and write Zip archive files." -msgstr "" - -#: gnu/packages/zsh.scm:63 +#: gnu/packages/zsh.scm:71 msgid "Powerful shell for interactive use and scripting" msgstr "" =20 -#: gnu/packages/zsh.scm:64 +#: gnu/packages/zsh.scm:72 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" diff --git a/po/packages/pl.po b/po/packages/pl.po index d9f78ca..46e11f2 100644 --- a/po/packages/pl.po +++ b/po/packages/pl.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the guix package. # Daniel Ko=C4=87 , 2015. # -#: gnu/packages/databases.scm:598 +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix-packages 0.9.0\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2015-10-28 16:31+0100\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2015-12-05 21:46+0100\n" "Last-Translator: Daniel Ko=C4=87 \n" "Language-Team: Polish \n" @@ -29,44 +29,48 @@ msgstr "Edytor tekstu" #: gnu/packages/abiword.scm:110 msgid "" "AbiWord is a word processing program. It is rapidly\n" -"becoming a state of the art word processor, with lots of features usefu= l for\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" "your daily work, personal needs, or for just some good old typing fun." msgstr "" =20 -#: gnu/packages/aspell.scm:43 gnu/packages/libreoffice.scm:611 +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 msgid "Spell checker" msgstr "Korekta pisowni" =20 -#: gnu/packages/aspell.scm:45 +#: gnu/packages/aspell.scm:55 msgid "" "Aspell is a spell-checker which can be used either as a library or as\n= " -"a standalone program. Notable features of Aspell include its full supp= ort of\n" +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" "documents written in the UTF-8 encoding and its ability to use multiple= \n" "dictionaries, including personal ones." msgstr "" =20 -#: gnu/packages/aspell.scm:85 +#: gnu/packages/aspell.scm:95 msgid "This package provides a dictionary for the GNU Aspell spell check= er." msgstr "" =20 -#: gnu/packages/audio.scm:92 +#: gnu/packages/audio.scm:95 msgid "Realtime modular synthesizer and effect processor" msgstr "" =20 -#: gnu/packages/audio.scm:94 +#: gnu/packages/audio.scm:97 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" -"modular synthesizer system. It uses virtual control voltages to contro= l the\n" -"parameters of the modules. The control voltages which control the freq= uency\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" "e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" "Filter) modules follow the convention of 1V / Octave." msgstr "" =20 -#: gnu/packages/audio.scm:131 -msgid "A library for audio labelling" +#: gnu/packages/audio.scm:134 +msgid "Library for audio labelling" msgstr "" =20 -#: gnu/packages/audio.scm:133 +#: gnu/packages/audio.scm:136 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n= " "signals. Its features include segmenting a sound file before each of i= ts\n" @@ -74,35 +78,37 @@ msgid "" "streams from live audio." msgstr "" =20 -#: gnu/packages/audio.scm:226 +#: gnu/packages/audio.scm:228 msgid "Digital audio workstation" msgstr "Cyfrowa stacja d=C5=BAwi=C4=99kowa" =20 -#: gnu/packages/audio.scm:228 +#: gnu/packages/audio.scm:230 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\= n" -"record, edit, mix and master audio and MIDI projects. It is targeted a= t audio\n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" =20 -#: gnu/packages/audio.scm:289 +#: gnu/packages/audio.scm:262 msgid "Tonewheel organ synthesizer" msgstr "" =20 -#: gnu/packages/audio.scm:291 +#: gnu/packages/audio.scm:264 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" "with drawbars, distortion and rotating speakers. The organ has three\n= " -"sections, two polyphonic sections with nine drawbars each and one monop= honic\n" +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" "bass section with five drawbars. A standalone JACK application and LV2= \n" "plugins are provided." msgstr "" =20 -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:301 msgid "Audio plug-in pack for LV2 and JACK environments" msgstr "" =20 -#: gnu/packages/audio.scm:331 +#: gnu/packages/audio.scm:303 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" "The suite contains lots of effects (delay, modulation, signal processin= g,\n" @@ -111,132 +117,157 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" =20 -#: gnu/packages/audio.scm:367 +#: gnu/packages/audio.scm:346 msgid "Sound and music computing system" msgstr "" =20 -#: gnu/packages/audio.scm:369 +#: gnu/packages/audio.scm:348 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" =20 -#: gnu/packages/audio.scm:412 gnu/packages/audio.scm:1900 +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 msgid "C++ wrapper around the ALSA API" msgstr "" =20 -#: gnu/packages/audio.scm:414 +#: gnu/packages/audio.scm:393 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" =20 -#: gnu/packages/audio.scm:449 +#: gnu/packages/audio.scm:428 msgid "SoundFont synthesizer" msgstr "" =20 -#: gnu/packages/audio.scm:451 +#: gnu/packages/audio.scm:430 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" -"specifications. FluidSynth reads and handles MIDI events from the MIDI= input\n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" "device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" "also play midifiles using a Soundfont." msgstr "" =20 -#: gnu/packages/audio.scm:483 +#: gnu/packages/audio.scm:462 msgid "MPEG-4 and MPEG-2 AAC decoder" msgstr "" =20 -#: gnu/packages/audio.scm:485 +#: gnu/packages/audio.scm:464 msgid "" "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" "PS, and DAB+." msgstr "" =20 -#: gnu/packages/audio.scm:514 +#: gnu/packages/audio.scm:493 msgid "Signal processing language" msgstr "J=C4=99zyk przetwarzania sygna=C5=82=C3=B3w" =20 -#: gnu/packages/audio.scm:516 +#: gnu/packages/audio.scm:495 msgid "Faust is a programming language for realtime audio signal process= ing." msgstr "" =20 -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:530 msgid "GUS compatible patches for MIDI players" msgstr "" =20 -#: gnu/packages/audio.scm:553 +#: gnu/packages/audio.scm:532 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n= " "patches that can be used with softsynths such as Timidity and WildMidi.= " msgstr "" =20 -#: gnu/packages/audio.scm:604 +#: gnu/packages/audio.scm:585 msgid "Virtual guitar amplifier" msgstr "" =20 -#: gnu/packages/audio.scm:605 +#: gnu/packages/audio.scm:586 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" -"card. The input is processed by a main amp and a rack-section. Both c= an be\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" "routed separately and deliver a processed stereo-signal via JACK. You = may\n" -"fill the rack with effects from more than 25 built-in modules including= stuff\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" "from a simple noise gate to modulation effects like flanger, phaser or\= n" "auto-wah." msgstr "" =20 -#: gnu/packages/audio.scm:647 +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" +msgstr "" + +#: gnu/packages/audio.scm:634 +msgid "" +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." +msgstr "" + +#: gnu/packages/audio.scm:678 msgid "LV2 convolution reverb" msgstr "" =20 -#: gnu/packages/audio.scm:649 +#: gnu/packages/audio.scm:680 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" -"especially for creating reverb effects. It supports impulse responses = with 1,\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" =20 -#: gnu/packages/audio.scm:679 +#: gnu/packages/audio.scm:710 msgid "JACK audio connection kit" msgstr "" =20 -#: gnu/packages/audio.scm:681 +#: gnu/packages/audio.scm:712 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" -"different applications to an audio device, as well as allowing them to = share\n" -"audio between themselves. JACK is different from other audio server ef= forts\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" "in that it has been designed from the ground up to be suitable for\n" "professional audio work. This means that it focuses on two key areas:\= n" "synchronous execution of all clients, and low latency operation." msgstr "" =20 -#: gnu/packages/audio.scm:760 +#: gnu/packages/audio.scm:810 msgid "Simple LV2 host for JACK" msgstr "" =20 -#: gnu/packages/audio.scm:762 +#: gnu/packages/audio.scm:812 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any L= V2\n" "plugin function as a JACK application." msgstr "" =20 -#: gnu/packages/audio.scm:798 +#: gnu/packages/audio.scm:855 msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" msgstr "" =20 -#: gnu/packages/audio.scm:800 +#: gnu/packages/audio.scm:857 msgid "" "LADSPA is a standard that allows software audio processors and effects\= n" "to be plugged into a wide range of audio synthesis and recording packag= es." msgstr "" =20 -#: gnu/packages/audio.scm:836 +#: gnu/packages/audio.scm:893 msgid "Audio application session manager" msgstr "" =20 -#: gnu/packages/audio.scm:838 +#: gnu/packages/audio.scm:895 msgid "" "LASH is a session management system for audio applications. It allows\= n" "you to save and restore audio sessions consisting of multiple interconn= eced\n" @@ -244,255 +275,266 @@ msgid "" "connections between them." msgstr "" =20 -#: gnu/packages/audio.scm:859 +#: gnu/packages/audio.scm:916 msgid "Bauer stereophonic-to-binaural DSP" msgstr "" =20 -#: gnu/packages/audio.scm:861 +#: gnu/packages/audio.scm:918 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" -"designed to improve headphone listening of stereo audio records. Recom= mended\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" "for headphone prolonged listening to disable superstereo fatigue withou= t\n" "essential distortions." msgstr "" =20 -#: gnu/packages/audio.scm:886 +#: gnu/packages/audio.scm:943 msgid "Implementation of the Open Sound Control protocol" msgstr "" =20 -#: gnu/packages/audio.scm:888 +#: gnu/packages/audio.scm:945 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (OSC) protocol." msgstr "" =20 -#: gnu/packages/audio.scm:925 +#: gnu/packages/audio.scm:982 msgid "Library to simplify use of LV2 plugins in applications" msgstr "" =20 -#: gnu/packages/audio.scm:927 +#: gnu/packages/audio.scm:984 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" =20 -#: gnu/packages/audio.scm:954 +#: gnu/packages/audio.scm:1011 msgid "LV2 audio plugin specification" msgstr "" =20 -#: gnu/packages/audio.scm:956 +#: gnu/packages/audio.scm:1013 msgid "" "LV2 is an open specification for audio plugins and host applications.\n= " -"At its core, LV2 is a simple stable interface, accompanied by extension= s which\n" +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" "add functionality to support the needs of increasingly powerful audio\n= " "software." msgstr "" =20 -#: gnu/packages/audio.scm:991 +#: gnu/packages/audio.scm:1048 msgid "LV2 port of the mda Piano plugin" msgstr "" =20 -#: gnu/packages/audio.scm:992 +#: gnu/packages/audio.scm:1049 msgid "An LV2 port of the mda Piano VSTi." msgstr "" =20 -#: gnu/packages/audio.scm:1005 +#: gnu/packages/audio.scm:1062 msgid "LV2 port of the mda EPiano plugin" msgstr "" =20 -#: gnu/packages/audio.scm:1006 +#: gnu/packages/audio.scm:1063 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" =20 -#: gnu/packages/audio.scm:1035 +#: gnu/packages/audio.scm:1101 msgid "C++ libraries for LV2 plugins" msgstr "" =20 -#: gnu/packages/audio.scm:1037 +#: gnu/packages/audio.scm:1103 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" =20 -#: gnu/packages/audio.scm:1078 +#: gnu/packages/audio.scm:1144 msgid "3D audio API" msgstr "" =20 -#: gnu/packages/audio.scm:1080 +#: gnu/packages/audio.scm:1146 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional soun= d\n" "emitters are among the features handled by the API. More advanced effe= cts,\n" -"including air absorption, occlusion, and environmental reverb, are avai= lable\n" -"through the EFX extension. It also facilitates streaming audio, multi-= channel\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" "buffers, and audio capture." msgstr "" =20 -#: gnu/packages/audio.scm:1114 +#: gnu/packages/audio.scm:1180 msgid "Modular patch bay for audio and MIDI systems" msgstr "" =20 -#: gnu/packages/audio.scm:1116 +#: gnu/packages/audio.scm:1182 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" "and ALSA." msgstr "" =20 -#: gnu/packages/audio.scm:1141 +#: gnu/packages/audio.scm:1207 msgid "Real-time audio utility library" msgstr "" =20 -#: gnu/packages/audio.scm:1143 +#: gnu/packages/audio.scm:1209 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" "aimed at audio/musical applications." msgstr "" =20 -#: gnu/packages/audio.scm:1169 +#: gnu/packages/audio.scm:1235 msgid "Audio time-stretching and pitch-shifting library" msgstr "" =20 -#: gnu/packages/audio.scm:1171 +#: gnu/packages/audio.scm:1237 msgid "" "Rubber Band is a library and utility program that permits changing the\= n" "tempo and pitch of an audio recording independently of one another." msgstr "" =20 -#: gnu/packages/audio.scm:1219 +#: gnu/packages/audio.scm:1285 msgid "Cross-platform MIDI library for C++" msgstr "" =20 -#: gnu/packages/audio.scm:1221 +#: gnu/packages/audio.scm:1287 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" =20 -#: gnu/packages/audio.scm:1247 +#: gnu/packages/audio.scm:1313 msgid "Library for serialising LV2 atoms to/from RDF" msgstr "" =20 -#: gnu/packages/audio.scm:1249 +#: gnu/packages/audio.scm:1315 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" "the Turtle syntax." msgstr "" =20 -#: gnu/packages/audio.scm:1274 +#: gnu/packages/audio.scm:1340 msgid "Library for loading and wrapping LV2 plugin UIs" msgstr "" =20 -#: gnu/packages/audio.scm:1276 +#: gnu/packages/audio.scm:1342 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" "\n" "Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" "toolkit. The API is designed such that hosts do not need to explicitly= \n" -"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs in\n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" "that toolkit will work in all hosts that use Suil automatically.\n" "\n" "Suil currently supports every combination of Gtk 2, Qt 4, and X11." msgstr "" =20 -#: gnu/packages/audio.scm:1333 +#: gnu/packages/audio.scm:1399 msgid "Software synthesizer for playing MIDI files" msgstr "" =20 -#: gnu/packages/audio.scm:1335 +#: gnu/packages/audio.scm:1401 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" -"converting them into PCM waveform data; give it a MIDI data along with = digital\n" -"instrument data files, then it synthesizes them in real-time, and plays= . It\n" -"can not only play sounds, but also can save the generated waveforms int= o hard\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" "disks as various audio file formats." msgstr "" =20 -#: gnu/packages/audio.scm:1374 +#: gnu/packages/audio.scm:1440 msgid "Modular and extensible audio processing system" msgstr "" =20 -#: gnu/packages/audio.scm:1376 +#: gnu/packages/audio.scm:1442 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data =E2=80=94 typically referred to= as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" =20 -#: gnu/packages/audio.scm:1415 +#: gnu/packages/audio.scm:1481 msgid "Library for time stretching and pitch scaling of audio" msgstr "" =20 -#: gnu/packages/audio.scm:1417 +#: gnu/packages/audio.scm:1483 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the libra= ry." msgstr "" =20 -#: gnu/packages/audio.scm:1440 +#: gnu/packages/audio.scm:1506 msgid "Hybrid lossless audio codec" msgstr "" =20 -#: gnu/packages/audio.scm:1442 +#: gnu/packages/audio.scm:1508 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\= n" -"compression modes. This package contains command-line programs and lib= rary to\n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" "encode and decode wavpack files." msgstr "" =20 -#: gnu/packages/audio.scm:1461 +#: gnu/packages/audio.scm:1527 msgid "Mod file playing library" msgstr "" =20 -#: gnu/packages/audio.scm:1463 +#: gnu/packages/audio.scm:1529 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" -"supported. Optional features include high-quality resampling, bass exp= ansion,\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" "surround and reverb." msgstr "" =20 -#: gnu/packages/audio.scm:1482 +#: gnu/packages/audio.scm:1548 msgid "Module player library" msgstr "" =20 -#: gnu/packages/audio.scm:1484 +#: gnu/packages/audio.scm:1550 msgid "" "Libxmp is a library that renders module files to PCM data. It supports= \n" "over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " msgstr "" =20 -#: gnu/packages/audio.scm:1507 +#: gnu/packages/audio.scm:1573 msgid "Extended module player" msgstr "" =20 -#: gnu/packages/audio.scm:1509 +#: gnu/packages/audio.scm:1575 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" =20 -#: gnu/packages/audio.scm:1541 +#: gnu/packages/audio.scm:1607 msgid "Audio processing library for changing tempo, pitch and playback r= ate" msgstr "" =20 -#: gnu/packages/audio.scm:1543 +#: gnu/packages/audio.scm:1609 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch= \n" "and playback rates of audio streams or audio files. It is intended for= \n" -"application developers writing sound processing tools that require temp= o/pitch\n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" "control functionality, or just for playing around with the sound effect= s." msgstr "" =20 -#: gnu/packages/audio.scm:1580 +#: gnu/packages/audio.scm:1646 msgid "Sound processing utility" msgstr "" =20 -#: gnu/packages/audio.scm:1582 +#: gnu/packages/audio.scm:1648 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\= n" @@ -500,92 +542,96 @@ msgid "" "can play and record audio files." msgstr "" =20 -#: gnu/packages/audio.scm:1605 +#: gnu/packages/audio.scm:1671 msgid "One-dimensional sample-rate conversion library" msgstr "" =20 -#: gnu/packages/audio.scm:1607 +#: gnu/packages/audio.scm:1673 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" "conversion. It may be used, for example, to resample PCM-encoded audio= ." msgstr "" =20 -#: gnu/packages/audio.scm:1629 +#: gnu/packages/audio.scm:1695 msgid "MPEG Audio Layer 2 (MP2) encoder" msgstr "" =20 -#: gnu/packages/audio.scm:1631 +#: gnu/packages/audio.scm:1697 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" "portions of LAME." msgstr "" =20 -#: gnu/packages/audio.scm:1671 +#: gnu/packages/audio.scm:1737 msgid "Audio I/O library" msgstr "" =20 -#: gnu/packages/audio.scm:1673 +#: gnu/packages/audio.scm:1739 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" -"to record and/or play sound using a callback function or a blocking rea= d/write\n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" "interface." msgstr "" =20 -#: gnu/packages/audio.scm:1696 +#: gnu/packages/audio.scm:1762 msgid "Graphical user interface for FluidSynth" msgstr "" =20 -#: gnu/packages/audio.scm:1698 +#: gnu/packages/audio.scm:1764 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" =20 -#: gnu/packages/audio.scm:1736 +#: gnu/packages/audio.scm:1802 msgid "Networked audio system" msgstr "" =20 -#: gnu/packages/audio.scm:1738 +#: gnu/packages/audio.scm:1804 msgid "" "RSound allows you to send audio from an application and transfer it\n" -"directly to a different computer on your LAN network. It is an audio d= aemon\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" "with a much different focus than most other audio daemons." msgstr "" =20 -#: gnu/packages/audio.scm:1769 +#: gnu/packages/audio.scm:1835 msgid "JACK audio frequency analyzer and display" msgstr "" =20 -#: gnu/packages/audio.scm:1771 +#: gnu/packages/audio.scm:1837 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" -"Connection Kit. It can display the FFT of any input, modify it and out= put the\n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" "result." msgstr "" =20 -#: gnu/packages/audio.scm:1812 +#: gnu/packages/audio.scm:1883 msgid "Fast, partitioned convolution engine library" msgstr "" =20 -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1885 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" =20 -#: gnu/packages/audio.scm:1854 +#: gnu/packages/audio.scm:1930 msgid "C++ library for resampling audio signals" msgstr "" =20 -#: gnu/packages/audio.scm:1856 +#: gnu/packages/audio.scm:1932 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is= \n" -"designed to be used within a real-time processing context, to be fast, = and to\n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" "provide high-quality sample rate conversion." msgstr "" =20 -#: gnu/packages/audio.scm:1902 +#: gnu/packages/audio.scm:1978 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" "access to ALSA PCM devices, taking care of the many functions required = to\n" @@ -593,25 +639,52 @@ msgid "" "point audio data." msgstr "" =20 -#: gnu/packages/backup.scm:89 +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" + +#: gnu/packages/audio.scm:2010 +msgid "" +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." +msgstr "" + +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" + +#: gnu/packages/audio.scm:2030 +msgid "" +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 msgid "Encrypted backup using rsync algorithm" msgstr "" =20 -#: gnu/packages/backup.scm:91 +#: gnu/packages/backup.scm:94 msgid "" "Duplicity backs up directories by producing encrypted tar-format volume= s\n" -"and uploading them to a remote or local file server. Because duplicity= uses\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" "librsync, the incremental archives are space efficient and only record = the\n" "parts of files that have changed since the last backup. Because duplic= ity\n" "uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" "spying and/or modification by the server." msgstr "" =20 -#: gnu/packages/backup.scm:125 +#: gnu/packages/backup.scm:128 msgid "Simple incremental backup tool" msgstr "" =20 -#: gnu/packages/backup.scm:127 +#: gnu/packages/backup.scm:130 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -619,92 +692,120 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" =20 -#: gnu/packages/backup.scm:181 +#: gnu/packages/backup.scm:185 msgid "Multi-format archive and compression library" msgstr "" =20 -#: gnu/packages/backup.scm:183 +#: gnu/packages/backup.scm:187 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supp= orts\n" -"reading and writing archives compressed using various compression filte= rs such\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" "as gzip and bzip2. The library is inherently stream-oriented; readers\= n" "serially iterate through the archive, writers serially add things to th= e\n" -"archive. In particular, note that there is currently no built-in suppo= rt for\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" "random access nor for in-place modification." msgstr "" =20 -#: gnu/packages/backup.scm:246 +#: gnu/packages/backup.scm:250 msgid "Provide a list of files to backup" msgstr "" =20 -#: gnu/packages/backup.scm:248 +#: gnu/packages/backup.scm:252 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" "Rdup itself does not backup anything, it only print a list of absolute\= n" -"file names to standard output. Auxiliary scripts are needed that act o= n this\n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" "list and implement the backup strategy." msgstr "" =20 -#: gnu/packages/backup.scm:278 +#: gnu/packages/backup.scm:282 msgid "Tar-compatible archiver" msgstr "" =20 -#: gnu/packages/backup.scm:280 +#: gnu/packages/backup.scm:284 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" "ciphering, redundancy, differential backup, indexed extraction, multico= re\n" -"compression, input and output serialisation, and tolerance to partial a= rchive\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" "errors." msgstr "" =20 -#: gnu/packages/backup.scm:308 +#: gnu/packages/backup.scm:312 msgid "Local/remote mirroring+incremental backup" msgstr "" =20 -#: gnu/packages/backup.scm:310 +#: gnu/packages/backup.scm:314 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network= .\n" -"The target directory ends up a copy of the source directory, but extra = reverse\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" "diffs are stored in a special subdirectory of that target directory, so= you\n" -"can still recover files lost some time ago. The idea is to combine the= best\n" -"features of a mirror and an incremental backup. Rdiff-backup also pres= erves\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" "subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" "modification times, extended attributes, acls, and resource forks. Als= o,\n" "rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" -"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive up\n" -"to a remote location, and only the differences will be transmitted. Fi= nally,\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" =20 -#: gnu/packages/backup.scm:349 +#: gnu/packages/backup.scm:353 msgid "Deduplicating backup program" msgstr "" =20 -#: gnu/packages/backup.scm:350 +#: gnu/packages/backup.scm:354 msgid "" "Attic is a deduplicating backup program. The main goal of\n" "Attic is to provide an efficient and secure way to backup data. The da= ta\n" -"deduplication technique used makes Attic suitable for daily backups sin= ce only\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" "changes are stored." msgstr "" =20 -#: gnu/packages/base.scm:65 +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 msgid "Hello, GNU world: An example GNU package" msgstr "" =20 -#: gnu/packages/base.scm:67 +#: gnu/packages/base.scm:68 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" "command-line arguments, multiple languages, and so on." msgstr "" =20 -#: gnu/packages/base.scm:86 +#: gnu/packages/base.scm:89 msgid "Print lines matching a pattern" msgstr "" =20 -#: gnu/packages/base.scm:88 +#: gnu/packages/base.scm:91 msgid "" "grep is a tool for finding text inside files. Text is found by\n" "matching a pattern provided by the user in one or many files. The patt= ern\n" @@ -715,24 +816,26 @@ msgid "" "including, for example, recursive directory searching." msgstr "" =20 -#: gnu/packages/base.scm:111 +#: gnu/packages/base.scm:114 msgid "Stream editor" msgstr "Edytor ci=C4=85g=C3=B3w" =20 -#: gnu/packages/base.scm:126 +#: gnu/packages/base.scm:129 msgid "" "Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" "is often used for substituting text patterns in a stream. The GNU\n" "implementation offers several extensions over the standard utility." msgstr "" =20 -#: gnu/packages/base.scm:149 +#: gnu/packages/base.scm:152 msgid "Managing tar archives" msgstr "" =20 -#: gnu/packages/base.scm:151 +#: gnu/packages/base.scm:154 msgid "" "Tar provides the ability to create tar archives, as well as the\n" "ability to extract, update or list files in an existing archive. It is= \n" @@ -742,77 +845,84 @@ msgid "" "standard utility." msgstr "" =20 -#: gnu/packages/base.scm:174 +#: gnu/packages/base.scm:177 msgid "Apply differences to originals, with optional backups" msgstr "" =20 -#: gnu/packages/base.scm:176 +#: gnu/packages/base.scm:179 msgid "" "Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" "files depending on the contents of the diff file. It accepts several\n= " "different diff formats. It may also be used to revert previously appli= ed\n" "differences." msgstr "" =20 -#: gnu/packages/base.scm:196 +#: gnu/packages/base.scm:199 msgid "Comparing and merging files" msgstr "" =20 -#: gnu/packages/base.scm:198 +#: gnu/packages/base.scm:201 msgid "" "GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" "differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" "\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" "interactive means to merge two files." msgstr "" =20 -#: gnu/packages/base.scm:231 +#: gnu/packages/base.scm:234 msgid "Operating on files matching given criteria" msgstr "" =20 -#: gnu/packages/base.scm:233 +#: gnu/packages/base.scm:236 msgid "" "Findutils supplies the basic file directory searching utilities of the\= n" "GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" "used to apply commands with arbitrarily long arguments." msgstr "" =20 -#: gnu/packages/base.scm:297 +#: gnu/packages/base.scm:300 msgid "Core GNU utilities (file, text, shell)" msgstr "Podstawowe narz=C4=99dzia GNU (file, text, shell)" =20 -#: gnu/packages/base.scm:299 +#: gnu/packages/base.scm:302 msgid "" "GNU Coreutils includes all of the basic command-line tools that are\n" "expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" "functionality beyond that which is outlined in the POSIX standard." msgstr "" =20 -#: gnu/packages/base.scm:341 +#: gnu/packages/base.scm:344 msgid "Remake files automatically" msgstr "" =20 -#: gnu/packages/base.scm:343 +#: gnu/packages/base.scm:346 msgid "" "Make is a program that is used to control the production of\n" "executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" "generated from its source. It has powerful dependency resolution and t= he\n" "ability to determine when files have to be regenerated after their sour= ces\n" "change. GNU make offers many powerful extensions over the standard uti= lity." msgstr "" =20 -#: gnu/packages/base.scm:388 +#: gnu/packages/base.scm:391 msgid "Binary utilities: bfd gas gprof ld" msgstr "" =20 -#: gnu/packages/base.scm:390 +#: gnu/packages/base.scm:393 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" @@ -822,85 +932,90 @@ msgid "" "included." msgstr "" =20 -#: gnu/packages/base.scm:455 +#: gnu/packages/base.scm:458 msgid "The linker wrapper" msgstr "" =20 -#: gnu/packages/base.scm:457 +#: gnu/packages/base.scm:460 msgid "" "The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" -"missing '-rpath' flags, and to detect any misuse of libraries outside o= f the\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" "store." msgstr "" =20 -#: gnu/packages/base.scm:625 +#: gnu/packages/base.scm:637 msgid "The GNU C Library" msgstr "" =20 -#: gnu/packages/base.scm:627 +#: gnu/packages/base.scm:639 msgid "" "Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" "printf, exit...\n" "\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" "with the Linux kernel." msgstr "" =20 -#: gnu/packages/base.scm:643 +#: gnu/packages/base.scm:670 msgid "All the locales supported by the GNU C Library" msgstr "" =20 -#: gnu/packages/base.scm:645 +#: gnu/packages/base.scm:672 msgid "" "This package provides all the locales supported by the GNU C Library,\n= " -"more than 400 in total. To use them set the 'LOCPATH' environment vari= able to\n" +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" "the 'share/locale' sub-directory of this package." msgstr "" =20 -#: gnu/packages/base.scm:713 +#: gnu/packages/base.scm:740 msgid "Small sample of UTF-8 locales" msgstr "" =20 -#: gnu/packages/base.scm:715 +#: gnu/packages/base.scm:742 msgid "" "This package provides a small sample of UTF-8 locales mostly useful in\= n" "test environments." msgstr "" =20 -#: gnu/packages/base.scm:733 +#: gnu/packages/base.scm:760 msgid "Find full path of shell commands" msgstr "" =20 -#: gnu/packages/base.scm:735 +#: gnu/packages/base.scm:762 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-i= n\n" "command." msgstr "" =20 -#: gnu/packages/base.scm:805 +#: gnu/packages/base.scm:832 msgid "The GNU C Library (GNU Hurd variant)" msgstr "" =20 -#: gnu/packages/base.scm:907 +#: gnu/packages/base.scm:934 msgid "Database of current and historical time zones" msgstr "" =20 -#: gnu/packages/base.scm:908 +#: gnu/packages/base.scm:935 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for man= y\n" "representative locations around the globe. It is updated periodically = to\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" "and daylight-saving rules." msgstr "" =20 -#: gnu/packages/bittorrent.scm:82 +#: gnu/packages/bittorrent.scm:90 msgid "Fast and easy BitTorrent client" msgstr "" =20 -#: gnu/packages/bittorrent.scm:84 +#: gnu/packages/bittorrent.scm:92 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n= " @@ -908,28 +1023,50 @@ msgid "" "DHT, =C2=B5TP, PEX and Magnet Links." msgstr "" =20 -#: gnu/packages/bittorrent.scm:116 +#: gnu/packages/bittorrent.scm:124 msgid "BitTorrent library of rtorrent" msgstr "" =20 -#: gnu/packages/bittorrent.scm:118 +#: gnu/packages/bittorrent.scm:126 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" "speed and efficiency." msgstr "" =20 -#: gnu/packages/bittorrent.scm:145 +#: gnu/packages/bittorrent.scm:153 msgid "BitTorrent client with ncurses interface" msgstr "" =20 -#: gnu/packages/bittorrent.scm:147 +#: gnu/packages/bittorrent.scm:155 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" "XML-RPC over SCGI." msgstr "" =20 +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + #: gnu/packages/certs.scm:65 msgid "Python script to extract .pem data from certificate collection" msgstr "" @@ -951,60 +1088,67 @@ msgid "" "taken from the NSS package and thus ultimately from the Mozilla project= ." msgstr "" =20 -#: gnu/packages/compression.scm:72 +#: gnu/packages/compression.scm:75 msgid "Compression library" msgstr "Biblioteka kompresji" =20 -#: gnu/packages/compression.scm:74 +#: gnu/packages/compression.scm:77 msgid "" "zlib is designed to be a free, general-purpose, legally unencumbered --= \n" -"that is, not covered by any patents -- lossless data-compression librar= y for\n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" "use on virtually any computer hardware and operating system. The zlib = data\n" -"format is itself portable across platforms. Unlike the LZW compression= method\n" -"used in Unix compress(1) and in the GIF image format, the compression m= ethod\n" -"currently used in zlib essentially never expands the data. (LZW can dou= ble or\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" "triple the file size in extreme cases.) zlib's memory footprint is als= o\n" -"independent of the input data and can be reduced, if necessary, at some= cost\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" "in compression." msgstr "" =20 -#: gnu/packages/compression.scm:99 +#: gnu/packages/compression.scm:102 msgid "Replacement for Sun's 'jar' utility" msgstr "" =20 -#: gnu/packages/compression.scm:101 +#: gnu/packages/compression.scm:104 msgid "" "FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" "utility. Instead of being written in Java, FastJar is written in C." msgstr "" =20 -#: gnu/packages/compression.scm:119 +#: gnu/packages/compression.scm:122 msgid "C library for manipulating POSIX tar files" msgstr "" =20 -#: gnu/packages/compression.scm:121 +#: gnu/packages/compression.scm:124 msgid "" "libtar is a C library for manipulating POSIX tar files. It handles\n" "adding and extracting files to/from a tar archive." msgstr "" =20 -#: gnu/packages/compression.scm:138 +#: gnu/packages/compression.scm:141 msgid "General file (de)compression (using lzw)" msgstr "" =20 -#: gnu/packages/compression.scm:143 +#: gnu/packages/compression.scm:146 msgid "" "GNU Gzip provides data compression and decompression utilities; the\n" -"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a single\n" -"file; as a result, it is often used in conjunction with \"tar\", result= ing in\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" "\".tar.gz\" or \".tgz\", etc." msgstr "" =20 -#: gnu/packages/compression.scm:219 +#: gnu/packages/compression.scm:222 msgid "High-quality data compression program" msgstr "" =20 -#: gnu/packages/compression.scm:221 +#: gnu/packages/compression.scm:224 msgid "" "bzip2 is a freely available, patent free (see below), high-quality data= \n" "compressor. It typically compresses files to within 10% to 15% of the = best\n" @@ -1013,27 +1157,30 @@ msgid "" "decompression." msgstr "" =20 -#: gnu/packages/compression.scm:251 +#: gnu/packages/compression.scm:254 msgid "Parallel bzip2 implementation" msgstr "R=C3=B3wnoleg=C5=82a implementacja bzip2" =20 -#: gnu/packages/compression.scm:253 +#: gnu/packages/compression.scm:256 msgid "" "Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" -"compressor that uses pthreads and achieves near-linear speedup on SMP m= achines.\n" -"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = anything\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" "compressed with pbzip2 can be decompressed with bzip2)." msgstr "" =20 -#: gnu/packages/compression.scm:272 +#: gnu/packages/compression.scm:277 msgid "General-purpose data compression" msgstr "" =20 -#: gnu/packages/compression.scm:274 +#: gnu/packages/compression.scm:279 msgid "" "XZ Utils is free general-purpose data compression software with high\n" "compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" -"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = Utils.\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" "\n" "The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" "been modified quite a lot to be suitable for XZ Utils. The primary\n" @@ -1042,11 +1189,11 @@ msgid "" "than gzip and 15 % smaller output than bzip2." msgstr "" =20 -#: gnu/packages/compression.scm:302 +#: gnu/packages/compression.scm:307 msgid "Data compression library suitable for real-time data de-/compress= ion" msgstr "" =20 -#: gnu/packages/compression.scm:304 +#: gnu/packages/compression.scm:309 msgid "" "LZO is a data compression library which is suitable for data\n" "de-/compression in real-time. This means it favours speed over\n" @@ -1056,347 +1203,409 @@ msgid "" "format are designed to be portable across platforms." msgstr "" =20 -#: gnu/packages/compression.scm:327 +#: gnu/packages/compression.scm:332 msgid "Compress or expand files" msgstr "" =20 -#: gnu/packages/compression.scm:329 +#: gnu/packages/compression.scm:334 msgid "" "Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" -"LZO data compression library for compression services, and its main adv= antages\n" -"over gzip are much higher compression and decompression speed (at the c= ost of\n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" "some compression ratio)." msgstr "" =20 -#: gnu/packages/compression.scm:348 +#: gnu/packages/compression.scm:353 msgid "Lossless data compressor based on the LZMA algorithm" msgstr "" =20 -#: gnu/packages/compression.scm:350 +#: gnu/packages/compression.scm:355 msgid "" "Lzip is a lossless data compressor with a user interface similar to the= \n" -"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and com= presses\n" -"more than bzip2, which makes it well suited for software distribution a= nd data\n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" "archiving. Lzip is a clean implementation of the LZMA algorithm." msgstr "" =20 -#: gnu/packages/compression.scm:382 +#: gnu/packages/compression.scm:387 msgid "Archives in shell scripts, uuencode/uudecode" msgstr "" =20 -#: gnu/packages/compression.scm:384 +#: gnu/packages/compression.scm:389 msgid "" "GNU sharutils is a package for creating and manipulating shell\n" -"archives that can be readily emailed. A shell archive is a file that c= an be\n" -"processed by a Bourne-type shell to unpack the original collection of f= iles.\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" "This package is mostly for compatibility and historical interest." msgstr "" =20 -#: gnu/packages/compression.scm:415 +#: gnu/packages/compression.scm:420 msgid "Library for SoundFont decompression" msgstr "" =20 -#: gnu/packages/compression.scm:417 +#: gnu/packages/compression.scm:422 msgid "" "SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" "with the sfArk algorithm." msgstr "" =20 -#: gnu/packages/compression.scm:449 +#: gnu/packages/compression.scm:454 msgid "Basic sfArk decompressor" msgstr "" =20 -#: gnu/packages/compression.scm:450 +#: gnu/packages/compression.scm:455 msgid "" "SfArk extractor converts SoundFonts in the compressed legacy\n" "sfArk file format to the uncompressed sf2 format." msgstr "" =20 -#: gnu/packages/compression.scm:467 +#: gnu/packages/compression.scm:472 msgid "Compression tools for some formats used by Microsoft" msgstr "" =20 -#: gnu/packages/compression.scm:469 +#: gnu/packages/compression.scm:474 msgid "" "The purpose of libmspack is to provide both compression and\n" "decompression of some loosely related file formats used by Microsoft." msgstr "" =20 -#: gnu/packages/compression.scm:488 +#: gnu/packages/compression.scm:493 msgid "Low-level interface to bzip2 compression library" msgstr "" =20 -#: gnu/packages/compression.scm:489 +#: gnu/packages/compression.scm:494 msgid "" "This module provides a Perl interface to the bzip2\n" "compression library." msgstr "" =20 -#: gnu/packages/compression.scm:523 +#: gnu/packages/compression.scm:528 msgid "Low-level interface to zlib compression library" msgstr "" =20 -#: gnu/packages/compression.scm:524 +#: gnu/packages/compression.scm:529 msgid "" "This module provides a Perl interface to the zlib\n" "compression library." msgstr "" =20 -#: gnu/packages/compression.scm:545 +#: gnu/packages/compression.scm:550 msgid "IO Interface to compressed files/buffers" msgstr "" =20 -#: gnu/packages/compression.scm:546 +#: gnu/packages/compression.scm:551 msgid "" "IO-Compress provides a Perl interface to allow reading and\n" "writing of compressed data created with the zlib and bzip2 libraries." msgstr "" =20 -#: gnu/packages/compression.scm:572 +#: gnu/packages/compression.scm:577 msgid "Compression algorithm focused on speed" msgstr "" =20 -#: gnu/packages/compression.scm:573 +#: gnu/packages/compression.scm:578 msgid "" "LZ4 is a lossless compression algorithm, providing\n" -"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures an\n" -"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/cycle).\n" -"A high compression derivative, called LZ4_HC, is also provided. It tra= des CPU\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" "time for compression ratio." msgstr "" =20 -#: gnu/packages/compression.scm:613 +#: gnu/packages/compression.scm:618 msgid "Tools to create and extract squashfs filesystems" msgstr "" =20 -#: gnu/packages/compression.scm:615 +#: gnu/packages/compression.scm:620 msgid "" "Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" "zlib to compress files, inodes, and directories. All blocks are packed= to\n" -"minimize the data overhead, and block sizes of between 4K and 1M are su= pported.\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" "It is intended to be used for archival use, for live CDs, and for embed= ded\n" -"systems where low overhead is needed. This package allows you to creat= e and\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" "extract such filesystems." msgstr "" =20 -#: gnu/packages/compression.scm:652 +#: gnu/packages/compression.scm:657 msgid "Parallel implementation of gzip" msgstr "" =20 -#: gnu/packages/compression.scm:654 +#: gnu/packages/compression.scm:659 msgid "" "This package provides a parallel implementation of gzip that exploits\n= " "multiple processors and multiple cores when compressing data." msgstr "" =20 -#: gnu/packages/databases.scm:97 +#: gnu/packages/compression.scm:683 +#, fuzzy +msgid "Parallel indexing implementation of LZMA" +msgstr "R=C3=B3wnoleg=C5=82a implementacja bzip2" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 msgid "Berkeley database" msgstr "Baza danych Berkeley" =20 -#: gnu/packages/databases.scm:99 +#: gnu/packages/databases.scm:124 msgid "" "Berkeley DB is an embeddable database allowing developers the choice of= \n" "SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " msgstr "" =20 -#: gnu/packages/databases.scm:173 +#: gnu/packages/databases.scm:198 msgid "Fast, easy to use, and popular database" msgstr "" =20 -#: gnu/packages/databases.scm:175 +#: gnu/packages/databases.scm:200 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" =20 -#: gnu/packages/databases.scm:242 +#: gnu/packages/databases.scm:267 msgid "SQL database server" msgstr "" =20 -#: gnu/packages/databases.scm:244 +#: gnu/packages/databases.scm:269 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" "as a drop-in replacement of MySQL." msgstr "" =20 -#: gnu/packages/databases.scm:264 +#: gnu/packages/databases.scm:289 msgid "Powerful object-relational database system" msgstr "" =20 -#: gnu/packages/databases.scm:266 +#: gnu/packages/databases.scm:291 msgid "" "PostgreSQL is a powerful object-relational database system. It is full= y\n" -"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, and\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" "stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" -"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, and\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" "TIMESTAMP. It also supports storage of binary large objects, including= \n" "pictures, sounds, or video." msgstr "" =20 -#: gnu/packages/databases.scm:302 +#: gnu/packages/databases.scm:329 msgid "Manipulate plain text files as databases" msgstr "" =20 -#: gnu/packages/databases.scm:304 +#: gnu/packages/databases.scm:331 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" "databases created with Recutils carry all of the expected features such= as\n" "unique fields, primary keys, time stamps and more. Many different fiel= d\n" "types are supported, as is encryption." msgstr "" =20 -#: gnu/packages/databases.scm:356 +#: gnu/packages/databases.scm:383 msgid "The SQLite database management system" msgstr "" =20 -#: gnu/packages/databases.scm:358 +#: gnu/packages/databases.scm:385 msgid "" "SQLite is a software library that implements a self-contained, serverle= ss,\n" "zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" -"widely deployed SQL database engine in the world. The source code for = SQLite\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" "is in the public domain." msgstr "" =20 -#: gnu/packages/databases.scm:393 +#: gnu/packages/databases.scm:420 msgid "Trivial database" msgstr "Baza danych Trivial" =20 -#: gnu/packages/databases.scm:395 +#: gnu/packages/databases.scm:422 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and us= es\n" -"locking internally to keep writers from trampling on each other. TDB i= s also\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" "extremely small." msgstr "" =20 -#: gnu/packages/databases.scm:414 +#: gnu/packages/databases.scm:441 msgid "Database independent interface for Perl" msgstr "" =20 -#: gnu/packages/databases.scm:415 +#: gnu/packages/databases.scm:442 msgid "This package provides an database interface for Perl." msgstr "" =20 -#: gnu/packages/databases.scm:462 +#: gnu/packages/databases.scm:489 msgid "Extensible and flexible object <-> relational mapper" msgstr "" =20 -#: gnu/packages/databases.scm:463 +#: gnu/packages/databases.scm:490 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" -"resultset API that allows abstract encapsulation of database operations= . It\n" -"aims to make representing queries in your code as perl-ish as possible = while\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" "still providing access to as many of the capabilities of the database a= s\n" "possible, including retrieving related records from multiple tables in = a\n" -"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY\",\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" "\"ORDER BY\" and \"HAVING\" support." msgstr "" =20 -#: gnu/packages/databases.scm:493 +#: gnu/packages/databases.scm:520 msgid "Cursor with built-in caching support" msgstr "" =20 -#: gnu/packages/databases.scm:494 +#: gnu/packages/databases.scm:521 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" =20 -#: gnu/packages/databases.scm:514 +#: gnu/packages/databases.scm:541 msgid "Introspect many-to-many relationships" msgstr "" =20 -#: gnu/packages/databases.scm:515 +#: gnu/packages/databases.scm:542 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" -"relationships are actually just a collection of convenience methods ins= talled\n" -"to bridge two relationships. This DBIx::Class component can be used to= store\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" "all relevant information about these non-relationships so they can late= r be\n" "introspected and examined." msgstr "" =20 -#: gnu/packages/databases.scm:572 +#: gnu/packages/databases.scm:599 msgid "Create a DBIx::Class::Schema based on a database" msgstr "" =20 -#: gnu/packages/databases.scm:573 +#: gnu/packages/databases.scm:600 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" -"DBIx::Class::Schema by scanning database table definitions and setting = up the\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" "columns, primary keys, unique constraints and relationships." msgstr "" =20 -#: gnu/packages/databases.scm:597 +#: gnu/packages/databases.scm:624 msgid "DBI PostgreSQL interface" msgstr "" =20 -#: gnu/packages/databases.scm:616 +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "" + +#: gnu/packages/databases.scm:667 msgid "SQlite interface for Perl" msgstr "" =20 -#: gnu/packages/databases.scm:617 +#: gnu/packages/databases.scm:668 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" -"the entire thing in the distribution. So in order to get a fast transa= ction\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" "capable RDBMS working for your Perl project you simply have to install = this\n" "module, and nothing else." msgstr "" =20 -#: gnu/packages/databases.scm:647 +#: gnu/packages/databases.scm:698 msgid "Generate SQL from Perl data structures" msgstr "" =20 -#: gnu/packages/databases.scm:648 +#: gnu/packages/databases.scm:699 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" "been modified to make the SQL easier to generate from Perl data structu= res.\n" -"The underlying idea is for this module to do what you mean, based on th= e data\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" "structures you provide it, so that you don't have to modify your code e= very\n" "time your data changes." msgstr "" =20 -#: gnu/packages/databases.scm:677 +#: gnu/packages/databases.scm:728 msgid "Split SQL code into atomic statements" msgstr "" =20 -#: gnu/packages/databases.scm:678 +#: gnu/packages/databases.scm:729 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" =20 -#: gnu/packages/databases.scm:696 +#: gnu/packages/databases.scm:747 msgid "SQL tokenizer" msgstr "" =20 -#: gnu/packages/databases.scm:697 +#: gnu/packages/databases.scm:748 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" "valid SQL query." msgstr "" =20 -#: gnu/packages/databases.scm:714 +#: gnu/packages/databases.scm:765 msgid "Data source abstraction library" msgstr "" =20 -#: gnu/packages/databases.scm:715 +#: gnu/packages/databases.scm:766 msgid "" "Unixodbc is a library providing an API with which to access\n" -"data sources. Data sources include SQL Servers and any software with a= n ODBC\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" "Driver." msgstr "" =20 -#: gnu/packages/databases.scm:739 +#: gnu/packages/databases.scm:790 msgid "In-memory key/value and document store" msgstr "" =20 -#: gnu/packages/databases.scm:741 +#: gnu/packages/databases.scm:792 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -1405,14 +1614,15 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" =20 -#: gnu/packages/databases.scm:768 +#: gnu/packages/databases.scm:819 msgid "Key-value cache and store" msgstr "" =20 -#: gnu/packages/databases.scm:769 +#: gnu/packages/databases.scm:820 msgid "" "Redis is an advanced key-value cache and store. Redis\n" -"supports many data structures including strings, hashes, lists, sets, s= orted\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" =20 @@ -1424,7 +1634,8 @@ msgstr "" msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test= \n" "of their interestingness. A common such situation is when attempting t= o\n" -"isolate a small failure-inducing substring of a large input that causes= your\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" "program to exhibit a bug." msgstr "" =20 @@ -1437,20 +1648,24 @@ msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatica= lly\n" "produces a much smaller C/C++ program that has the same property. It i= s\n" -"intended for use by people who discover and report bugs in compilers an= d other\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" "tools that process C/C++ code." msgstr "" =20 -#: gnu/packages/debug.scm:229 +#: gnu/packages/debug.scm:249 msgid "Security-oriented fuzzer" msgstr "" =20 -#: gnu/packages/debug.scm:231 +#: gnu/packages/debug.scm:251 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " -"type of compile-time instrumentation and genetic algorithms to automati= cally\n" -"discover clean, interesting test cases that trigger new internal states= in the\n" -"targeted binary. This substantially improves the functional coverage f= or the\n" +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" "fuzzed code. The compact synthesized corpora produced by the tool are = also\n" "useful for seeding other, more labor- or resource-intensive testing reg= imes\n" "down the road." @@ -1463,15 +1678,16 @@ msgstr "" #: gnu/packages/dejagnu.scm:80 msgid "" "DejaGnu is a framework for testing software. In effect, it serves as\n= " -"a front-end for all tests written for a program. Thus, each program ca= n have\n" +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" "multiple test suites, which are then all managed by a single harness." msgstr "" =20 -#: gnu/packages/feh.scm:53 +#: gnu/packages/feh.scm:54 msgid "Fast and light imlib2-based image viewer" msgstr "" =20 -#: gnu/packages/feh.scm:55 +#: gnu/packages/feh.scm:56 msgid "" "feh is an X11 image viewer aimed mostly at console users.\n" "Unlike most other viewers, it does not have a fancy GUI, but simply\n" @@ -1480,75 +1696,81 @@ msgid "" "actions." msgstr "" =20 -#: gnu/packages/games.scm:113 +#: gnu/packages/games.scm:116 msgid "Backgammon game" msgstr "" =20 -#: gnu/packages/games.scm:114 +#: gnu/packages/games.scm:117 msgid "" "The GNU backgammon application can be used for playing, analyzing and\n= " -"teaching the game. It has an advanced evaluation engine based on artif= icial\n" +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" "neural networks suitable for both beginners and advanced players. In\n= " "addition to a command-line interface, it also features an attractive, 3= D\n" "representation of the playing board." msgstr "" =20 -#: gnu/packages/games.scm:143 +#: gnu/packages/games.scm:146 msgid "3d Rubik's cube game" msgstr "Tr=C3=B3jwymiarowa kostka Rubika" =20 -#: gnu/packages/games.scm:145 +#: gnu/packages/games.scm:148 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allo= wing\n" -"you to set the size of the cube (the default is 3x3) or to change the c= olors.\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" "You may even apply photos to the faces instead of colors. The game is\= n" "scriptable with Guile." msgstr "" =20 -#: gnu/packages/games.scm:195 +#: gnu/packages/games.scm:198 msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" msgstr "" =20 -#: gnu/packages/games.scm:196 +#: gnu/packages/games.scm:199 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" -"expelled by the Catholic Church out of the Languedoc region in France. = One of\n" -"them, called Jean Raymond, found an old church in which to hide, not kn= owing\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" "that beneath its ruins lay buried an ancient evil." msgstr "" =20 -#: gnu/packages/games.scm:239 +#: gnu/packages/games.scm:242 msgid "Lemmings clone" msgstr "Klon Leming=C3=B3w" =20 -#: gnu/packages/games.scm:241 +#: gnu/packages/games.scm:244 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through level= s.\n" "Since the animals walk on their own, the player can only influence them= by\n" -"giving them commands, like build a bridge, dig a hole, or redirect all = animals\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" "in the other direction. Multiple such commands are necessary to reach = the\n" "level's exit. The game is presented in a 2D side view." msgstr "" =20 -#: gnu/packages/games.scm:263 +#: gnu/packages/games.scm:266 msgid "Convert English text to humorous dialects" msgstr "" =20 -#: gnu/packages/games.scm:264 +#: gnu/packages/games.scm:267 msgid "" "The GNU Talk Filters are programs that convert English text\n" -"into stereotyped or otherwise humorous dialects. The filters are provi= ded as\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" "a C library, so they can easily be integrated into other programs." msgstr "" =20 -#: gnu/packages/games.scm:296 +#: gnu/packages/games.scm:299 msgid "Simulate the display from \"The Matrix\"" msgstr "" =20 -#: gnu/packages/games.scm:297 +#: gnu/packages/games.scm:300 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with termi= nal\n" @@ -1556,92 +1778,100 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" =20 -#: gnu/packages/games.scm:317 +#: gnu/packages/games.scm:320 msgid "Full chess implementation" msgstr "Pe=C5=82na implementacja programu szachowego" =20 -#: gnu/packages/games.scm:318 +#: gnu/packages/games.scm:321 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" -"against the computer in a game of chess, either through the default ter= minal\n" +"against the computer in a game of chess, either through the default " +"terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" =20 -#: gnu/packages/games.scm:346 +#: gnu/packages/games.scm:349 msgid "Twisted adventures of young pig farmer Dink Smallwood" msgstr "" =20 -#: gnu/packages/games.scm:348 +#: gnu/packages/games.scm:351 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" -"for the role-playing game Dink Smallwood. It supports not only the ori= ginal\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" "game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" "To that extent, it also includes a front-end for managing all of your D= -Mods." msgstr "" =20 -#: gnu/packages/games.scm:370 +#: gnu/packages/games.scm:373 msgid "Game data for GNU Freedink" msgstr "" =20 -#: gnu/packages/games.scm:372 +#: gnu/packages/games.scm:375 msgid "This package contains the game data of GNU Freedink." msgstr "" =20 -#: gnu/packages/games.scm:424 +#: gnu/packages/games.scm:427 msgid "Graphical user interface for chess programs" msgstr "" =20 -#: gnu/packages/games.scm:425 +#: gnu/packages/games.scm:428 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" -"including international chess, xiangqi (Chinese chess), shogi (Japanese= chess)\n" -"and Makruk. Several lesser-known variants are also supported. It pres= ents a\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" "fully interactive graphical interface and it can load and save games in= the\n" "Portable Game Notation." msgstr "" =20 -#: gnu/packages/games.scm:478 +#: gnu/packages/games.scm:481 msgid "Ball and paddle game" msgstr "" =20 -#: gnu/packages/games.scm:479 +#: gnu/packages/games.scm:482 msgid "" "XBoing is a blockout type game where you have a paddle which\n" "you control to bounce a ball around the game zone destroying blocks wit= h a\n" -"proton ball. Each block carries a different point value. The more blo= cks you\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" "destroy, the better your score. The person with the highest score wins= ." msgstr "" =20 -#: gnu/packages/games.scm:511 +#: gnu/packages/games.scm:514 msgid "Typing tutor" msgstr "Nauka pisania" =20 -#: gnu/packages/games.scm:513 +#: gnu/packages/games.scm:516 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\= n" "tutorials for the standard QWERTY layout, there are also tutorials for = the\n" -"alternative layouts Dvorak and Colemak, as well as for the numpad. Tut= orials\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" "are primarily in English, however some in other languages are provided.= " msgstr "" =20 -#: gnu/packages/games.scm:566 +#: gnu/packages/games.scm:569 msgid "3D game engine written in C++" msgstr "" =20 -#: gnu/packages/games.scm:568 +#: gnu/packages/games.scm:571 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in= \n" -"C++. Features include an OpenGL renderer, extensible materials, scene = graph\n" -"management, character animation, particle and other special effects, su= pport\n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" "for common mesh file formats, and collision detection." msgstr "" =20 -#: gnu/packages/games.scm:620 +#: gnu/packages/games.scm:623 msgid "2D space shooter" msgstr "" =20 -#: gnu/packages/games.scm:622 +#: gnu/packages/games.scm:625 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controll= ed\n" @@ -1649,45 +1879,49 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" =20 -#: gnu/packages/games.scm:663 +#: gnu/packages/games.scm:666 msgid "Main game data for the Minetest game engine" msgstr "" =20 -#: gnu/packages/games.scm:665 +#: gnu/packages/games.scm:668 msgid "Game data for the Minetest infinite-world block sandox game." msgstr "" =20 -#: gnu/packages/games.scm:717 +#: gnu/packages/games.scm:720 msgid "Infinite-world block sandbox game" msgstr "" =20 -#: gnu/packages/games.scm:719 +#: gnu/packages/games.scm:722 msgid "" "Minetest is a sandbox construction game. Players can create and destro= y\n" "various types of blocks in a three-dimensional open world. This allows= \n" -"forming structures in every possible creation, on multiplayer servers o= r as a\n" -"single player. Mods and texture packs allow players to personalize the= game\n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" "in different ways." msgstr "" =20 -#: gnu/packages/games.scm:758 +#: gnu/packages/games.scm:761 msgid "Curses Implementation of the Glk API" msgstr "" =20 -#: gnu/packages/games.scm:760 +#: gnu/packages/games.scm:763 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" -"primarily designed for interactive fiction, but it should be suitable f= or many\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" "interactive text utilities, particularly those based on a command line.= \n" -"This is an implementation of the Glk library which runs in a terminal w= indow,\n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" "using the curses.h library for screen control." msgstr "" =20 -#: gnu/packages/games.scm:797 +#: gnu/packages/games.scm:800 msgid "Interpreter for Glulx VM" msgstr "" =20 -#: gnu/packages/games.scm:799 +#: gnu/packages/games.scm:802 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" @@ -1695,35 +1929,37 @@ msgid "" "reference interpreter, using Glk API." msgstr "" =20 -#: gnu/packages/games.scm:835 +#: gnu/packages/games.scm:838 msgid "Z-machine interpreter" msgstr "" =20 -#: gnu/packages/games.scm:837 +#: gnu/packages/games.scm:840 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemen= ted\n" "either by Infocom or created using the Inform compiler." msgstr "" =20 -#: gnu/packages/games.scm:887 +#: gnu/packages/games.scm:890 msgid "Reference frontend for the libretro API" msgstr "" =20 -#: gnu/packages/games.scm:889 +#: gnu/packages/games.scm:892 msgid "" "Libretro is a simple but powerful development interface that allows for= \n" -"the easy creation of emulators, games and multimedia applications that = can plug\n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" "straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" -"reference frontend for the libretro API, currently used by most as a mo= dular\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" "multi-system game/emulator system." msgstr "" =20 -#: gnu/packages/games.scm:909 +#: gnu/packages/games.scm:912 msgid "Play the game of Go" msgstr "Gra w Go" =20 -#: gnu/packages/games.scm:911 +#: gnu/packages/games.scm:914 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. Whil= e\n" @@ -1734,56 +1970,64 @@ msgid "" "Protocol)." msgstr "" =20 -#: gnu/packages/games.scm:961 +#: gnu/packages/games.scm:964 msgid "High speed arctic racing game based on Tux Racer" msgstr "" =20 -#: gnu/packages/games.scm:963 +#: gnu/packages/games.scm:966 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" -"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of the\n" -"game is to slide down a snow- and ice-covered mountain as quickly as po= ssible,\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" "avoiding the trees and rocks that will slow you down.\n" "\n" -"Collect herrings and other goodies while sliding down the hill, but avo= id fish\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" "bones.\n" "\n" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" =20 -#: gnu/packages/games.scm:1001 +#: gnu/packages/games.scm:1004 msgid "Game of jumping to the next floor, trying not to fall" msgstr "" =20 -#: gnu/packages/games.scm:1003 +#: gnu/packages/games.scm:1006 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" -"platform to platform to avoid falling, while the platforms drop at fast= er rates\n" -"the higher you go. The game features multiplayer, unlimited FPS, smoot= h floor\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" "falling, themeable graphics and sounds, and replays." msgstr "" =20 -#: gnu/packages/games.scm:1044 +#: gnu/packages/games.scm:1047 msgid "Turn-based strategy game" msgstr "" =20 -#: gnu/packages/games.scm:1046 +#: gnu/packages/games.scm:1049 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" -"with several single player campaigns, and multiplayer games (both netwo= rked and\n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" "local).\n" "\n" "Battle for control on a range of maps, using variety of units which hav= e\n" -"advantages and disadvantages against different types of attacks. Units= gain\n" -"experience and advance levels, and are carried over from one scenario t= o the\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" "next campaign." msgstr "" =20 -#: gnu/packages/games.scm:1090 -msgid "x86 emulator with CGA/EGA/VGA/etc. graphics and sound" +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" msgstr "" =20 -#: gnu/packages/games.scm:1091 +#: gnu/packages/games.scm:1094 msgid "" "DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" "also emulates CPU:286/386 realmode/protected mode, Directory\n" @@ -1792,35 +2036,38 @@ msgid "" "older games." msgstr "" =20 -#: gnu/packages/games.scm:1136 +#: gnu/packages/games.scm:1139 msgid "Mouse and keyboard discovery for children" msgstr "" =20 -#: gnu/packages/games.scm:1138 +#: gnu/packages/games.scm:1141 msgid "" "Gamine is a game designed for young children who are learning to use th= e\n" -"mouse and keyboard. The child uses the mouse to draw colored dots and = lines\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" "on the screen and keyboard to display letters." msgstr "" =20 -#: gnu/packages/games.scm:1169 +#: gnu/packages/games.scm:1172 msgid "Puzzle game with a cat in lead role" msgstr "" =20 -#: gnu/packages/games.scm:1170 +#: gnu/packages/games.scm:1173 msgid "" "Project Raincat is a game developed by Carnegie Mellon\n" "students through GCS during the Fall 2008 semester. Raincat features g= ame\n" -"play inspired from classics Lemmings and The Incredible Machine. The p= roject\n" -"proved to be an excellent learning experience for the programmers. Eve= rything\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" "is programmed in Haskell." msgstr "" =20 -#: gnu/packages/games.scm:1205 +#: gnu/packages/games.scm:1208 msgid "Client for 'The Mana World' and similar games" msgstr "" =20 -#: gnu/packages/games.scm:1207 +#: gnu/packages/games.scm:1210 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\= n" @@ -1828,38 +2075,186 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" =20 -#: gnu/packages/gcc.scm:303 +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +#, fuzzy +msgid "Pinball simulator" +msgstr "Emulator terminala" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 msgid "GNU Compiler Collection" msgstr "Kolekcja kompilator=C3=B3w GNU" =20 -#: gnu/packages/gcc.scm:305 +#: gnu/packages/gcc.scm:315 msgid "" "GCC is the GNU Compiler Collection. It provides compiler front-ends\n" -"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, and\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" "Go. It also includes runtime support libraries for these languages." msgstr "" =20 -#: gnu/packages/gcc.scm:370 +#: gnu/packages/gcc.scm:380 msgid "GNU C++ standard library" msgstr "Standardowa biblioteka GNU C++" =20 -#: gnu/packages/gcc.scm:405 +#: gnu/packages/gcc.scm:415 msgid "Collection of subroutines used by various GNU programs" msgstr "" =20 -#: gnu/packages/gcc.scm:561 +#: gnu/packages/gcc.scm:610 msgid "GNU libstdc++ documentation" msgstr "" =20 -#: gnu/packages/gcc.scm:629 -msgid "Manipulating sets and relations of integer points bounded by line= ar constraints" +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" msgstr "" =20 -#: gnu/packages/gcc.scm:632 +#: gnu/packages/gcc.scm:681 msgid "" "isl is a library for manipulating sets and relations of integer points\= n" "bounded by linear constraints. Supported operations on sets include\n" -"intersection, union, set difference, emptiness check, convex hull, (int= eger)\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" "affine hull, integer projection, computing the lexicographic minimum us= ing\n" "parametric integer programming, coalescing and parametric vertex\n" "enumeration. It also includes an ILP solver based on generalized basis= \n" @@ -1867,11 +2262,11 @@ msgid "" "dependence analysis and bounds on piecewise step-polynomials." msgstr "" =20 -#: gnu/packages/gcc.scm:664 +#: gnu/packages/gcc.scm:713 msgid "Library to generate code for scanning Z-polyhedra" msgstr "" =20 -#: gnu/packages/gcc.scm:666 +#: gnu/packages/gcc.scm:715 msgid "" "CLooG is a free software library to generate code for scanning\n" "Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" @@ -1886,15 +2281,17 @@ msgid "" "effective code." msgstr "" =20 -#: gnu/packages/gcc.scm:721 +#: gnu/packages/gcc.scm:770 msgid "Reference manual for the C programming language" msgstr "" =20 -#: gnu/packages/gcc.scm:723 +#: gnu/packages/gcc.scm:772 msgid "" "This is a reference manual for the C programming language, as\n" -"implemented by the GNU C Compiler (gcc). As a reference, it is not int= ended\n" -"to be a tutorial of the language. Rather, it outlines all of the const= ructs\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" "of the language. Library functions are not included." msgstr "" =20 @@ -1905,53 +2302,57 @@ msgstr "" #: gnu/packages/geeqie.scm:50 msgid "" "Exiv2 is a C++ library and a command line utility to manage image\n" -"metadata. It provides fast and easy read and write access to the Exif,= IPTC\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" "and XMP metadata of images in various formats." msgstr "" =20 -#: gnu/packages/geeqie.scm:81 +#: gnu/packages/geeqie.scm:82 msgid "Lightweight GTK+ based image viewer" msgstr "" =20 -#: gnu/packages/geeqie.scm:83 +#: gnu/packages/geeqie.scm:84 msgid "" "Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" "systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" -"interoperability; easy integration with other software; geeqie works on= files\n" -"and directories, there is no need to import images; fast preview for ma= ny raw\n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" "image formats; tools for image comparison, sorting and managing photo\n= " "collection. Geeqie was initially based on GQview." msgstr "" =20 -#: gnu/packages/gettext.scm:91 +#: gnu/packages/gettext.scm:93 msgid "Tools and documentation for translation" msgstr "" =20 -#: gnu/packages/gettext.scm:93 +#: gnu/packages/gettext.scm:95 msgid "" "GNU Gettext is a package providing a framework for translating the\n" -"textual output of programs into multiple languages. It provides transl= ators\n" +"textual output of programs into multiple languages. It provides " +"translators\n" "with the means to create message catalogs, as well as an Emacs mode to = work\n" "with them, and a runtime library to load translated messages from the\n= " "catalogs. Nearly all GNU packages use Gettext." msgstr "" =20 -#: gnu/packages/gettext.scm:149 +#: gnu/packages/gettext.scm:151 msgid "Scripts to ease maintenance of translations" msgstr "" =20 -#: gnu/packages/gettext.scm:151 +#: gnu/packages/gettext.scm:153 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tool= s on\n" "areas where they were not expected like documentation." msgstr "" =20 -#: gnu/packages/gimp.scm:54 +#: gnu/packages/gimp.scm:53 msgid "Image pixel format conversion library" msgstr "" =20 -#: gnu/packages/gimp.scm:56 +#: gnu/packages/gimp.scm:55 msgid "" "Babl is a dynamic, any to any, pixel format translation library.\n" "It allows converting between different methods of storing pixels known = as\n" @@ -1962,57 +2363,59 @@ msgid "" "provided as well as the framework to add new color models and data type= s." msgstr "" =20 -#: gnu/packages/gimp.scm:111 +#: gnu/packages/gimp.scm:110 msgid "Graph based image processing framework" msgstr "" =20 -#: gnu/packages/gimp.scm:112 +#: gnu/packages/gimp.scm:111 msgid "" "GEGL (Generic Graphics Library) provides infrastructure to\n" "do demand based cached non destructive image editing on larger than RAM= \n" "buffers." msgstr "" =20 -#: gnu/packages/gimp.scm:148 +#: gnu/packages/gimp.scm:153 msgid "GNU Image Manipulation Program" msgstr "" =20 -#: gnu/packages/gimp.scm:150 +#: gnu/packages/gimp.scm:155 msgid "" "GIMP is an application for image manipulation tasks such as photo\n" -"retouching, composition and authoring. It supports all common image fo= rmats\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" "as well as specialized ones. It features a highly customizable interfa= ce\n" "that is extensible via a plugin system." msgstr "" =20 -#: gnu/packages/gnome.scm:138 +#: gnu/packages/gnome.scm:154 msgid "CD/DVD burning tool for Gnome" msgstr "Narz=C4=99dzie do wypalania p=C5=82yt CD/DVD pod GNOME" =20 -#: gnu/packages/gnome.scm:139 +#: gnu/packages/gnome.scm:155 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some uniqu= e\n" "features to enable users to create their discs easily and quickly." msgstr "" =20 -#: gnu/packages/gnome.scm:159 +#: gnu/packages/gnome.scm:175 msgid "Bootstrap GNOME modules built from Git" msgstr "" =20 -#: gnu/packages/gnome.scm:160 +#: gnu/packages/gnome.scm:176 msgid "" "gnome-common contains various files needed to bootstrap\n" -"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt that\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" "can be used to configure a source directory checked out from Git and so= me\n" "commonly used macros." msgstr "" =20 -#: gnu/packages/gnome.scm:198 +#: gnu/packages/gnome.scm:217 msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" msgstr "" =20 -#: gnu/packages/gnome.scm:200 +#: gnu/packages/gnome.scm:219 msgid "" "The libgnome-desktop library provides API shared by several application= s\n" "on the desktop, but that cannot live in the platform for various reason= s.\n" @@ -2022,44 +2425,45 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed.= " msgstr "" =20 -#: gnu/packages/gnome.scm:233 +#: gnu/packages/gnome.scm:252 msgid "Documentation utilities for the Gnome project" msgstr "" =20 -#: gnu/packages/gnome.scm:235 +#: gnu/packages/gnome.scm:254 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" "and keep up to date translations of documentation." msgstr "" =20 -#: gnu/packages/gnome.scm:277 +#: gnu/packages/gnome.scm:298 msgid "Libraries for displaying certificates and accessing key stores" msgstr "" =20 -#: gnu/packages/gnome.scm:279 +#: gnu/packages/gnome.scm:300 msgid "" "The GCR package contains libraries used for displaying certificates and= \n" "accessing key stores. It also provides the viewer for crypto files on = the\n" "GNOME Desktop." msgstr "" =20 -#: gnu/packages/gnome.scm:308 +#: gnu/packages/gnome.scm:329 msgid "Accessing passwords from the GNOME keyring" msgstr "" =20 -#: gnu/packages/gnome.scm:310 +#: gnu/packages/gnome.scm:331 msgid "Client library to access passwords from the GNOME keyring." msgstr "" =20 -#: gnu/packages/gnome.scm:371 +#: gnu/packages/gnome.scm:393 msgid "Daemon to store passwords and encryption keys" msgstr "" =20 -#: gnu/packages/gnome.scm:373 +#: gnu/packages/gnome.scm:395 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n= " -"users. It is run as a daemon in the session, similar to ssh-agent, and= other\n" +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" "applications locate it via an environment variable or D-Bus.\n" "\n" "The program can manage several keyrings, each with its own master passw= ord,\n" @@ -2067,11 +2471,11 @@ msgid "" "forgotten when the session ends." msgstr "" =20 -#: gnu/packages/gnome.scm:438 +#: gnu/packages/gnome.scm:460 msgid "GNOME's document viewer" msgstr "Przegl=C4=85darka dokument=C3=B3w GNOME" =20 -#: gnu/packages/gnome.scm:440 +#: gnu/packages/gnome.scm:462 msgid "" "Evince is a document viewer for multiple document formats. It\n" "currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" @@ -2079,32 +2483,32 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" =20 -#: gnu/packages/gnome.scm:469 +#: gnu/packages/gnome.scm:491 msgid "GNOME settings for various desktop components" msgstr "" =20 -#: gnu/packages/gnome.scm:471 +#: gnu/packages/gnome.scm:493 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings schemas\n" "for settings shared by various components of the GNOME desktop." msgstr "" =20 -#: gnu/packages/gnome.scm:505 +#: gnu/packages/gnome.scm:527 msgid "Utility to implement the Freedesktop Icon Naming Specification" msgstr "" =20 -#: gnu/packages/gnome.scm:507 +#: gnu/packages/gnome.scm:529 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\= n" "GNOME and KDE desktops to the icon names proposed in the specification.= " msgstr "" =20 -#: gnu/packages/gnome.scm:529 +#: gnu/packages/gnome.scm:551 msgid "Utilities for working with desktop entries" msgstr "" =20 -#: gnu/packages/gnome.scm:531 +#: gnu/packages/gnome.scm:553 msgid "" "This package contains a few command line utilities for working with\n" "desktop entries:\n" @@ -2112,47 +2516,52 @@ msgid "" "desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" " about desktop entry specification violations.\n" "\n" -"desktop-file-install: installs a desktop file to the applications direc= tory,\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" " optionally munging it a bit in transit.\n" "\n" -"update-desktop-database: updates the database containing a cache of MIM= E types\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" " handled by desktop files." msgstr "" =20 -#: gnu/packages/gnome.scm:565 +#: gnu/packages/gnome.scm:587 msgid "GNOME icon theme" msgstr "Motyw ikon GNOME" =20 -#: gnu/packages/gnome.scm:567 +#: gnu/packages/gnome.scm:589 msgid "Icons for the GNOME desktop." msgstr "Ikony dla =C5=9Brodowiska GNOME" =20 -#: gnu/packages/gnome.scm:606 +#: gnu/packages/gnome.scm:628 msgid "Database of common MIME types" msgstr "" =20 -#: gnu/packages/gnome.scm:608 +#: gnu/packages/gnome.scm:630 msgid "" "The shared-mime-info package contains the core database of common types= \n" -"and the update-mime-database command used to extend it. It requires gl= ib2 to\n" -"be installed for building the update command. Additionally, it uses in= tltool\n" -"for translations, though this is only a dependency for the maintainers.= This\n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" "database is translated at Transifex." msgstr "" =20 -#: gnu/packages/gnome.scm:632 +#: gnu/packages/gnome.scm:654 msgid "Freedesktop icon theme" msgstr "Motyw ikon Freedesktop" =20 -#: gnu/packages/gnome.scm:634 +#: gnu/packages/gnome.scm:656 msgid "Freedesktop icon theme." msgstr "Motyw ikon Freedesktop" =20 -#: gnu/packages/gnome.scm:661 +#: gnu/packages/gnome.scm:683 msgid "GNOME desktop notification library" msgstr "" =20 -#: gnu/packages/gnome.scm:663 +#: gnu/packages/gnome.scm:685 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. The= se\n" @@ -2160,392 +2569,408 @@ msgid "" "some form of information without getting in the user's way." msgstr "" =20 -#: gnu/packages/gnome.scm:695 +#: gnu/packages/gnome.scm:717 msgid "GObject plugin system" msgstr "" =20 -#: gnu/packages/gnome.scm:697 +#: gnu/packages/gnome.scm:719 msgid "" "Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " -"every application the chance to assume its own extensibility. It also = has a\n" -"set of features including, but not limited to: multiple extension point= s; on\n" -"demand (lazy) programming language support for C, Python and JS; simpli= city of\n" +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" "the API." msgstr "" =20 -#: gnu/packages/gnome.scm:726 +#: gnu/packages/gnome.scm:748 msgid "OpenGL extension to GTK+" msgstr "" =20 -#: gnu/packages/gnome.scm:727 +#: gnu/packages/gnome.scm:749 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" =20 -#: gnu/packages/gnome.scm:752 +#: gnu/packages/gnome.scm:792 msgid "GTK+ rapid application development tool" msgstr "" =20 -#: gnu/packages/gnome.scm:753 +#: gnu/packages/gnome.scm:793 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" "the GNOME desktop environment." msgstr "" =20 -#: gnu/packages/gnome.scm:778 +#: gnu/packages/gnome.scm:818 msgid "CSS2 parsing and manipulation library" msgstr "" =20 -#: gnu/packages/gnome.scm:780 +#: gnu/packages/gnome.scm:820 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" -"model like API. Libcroco provides a CSS2 selection engine and an exper= imental\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" "XML/CSS rendering engine." msgstr "" =20 -#: gnu/packages/gnome.scm:813 +#: gnu/packages/gnome.scm:853 msgid "GNOME's Structured File Library" msgstr "" =20 -#: gnu/packages/gnome.scm:815 +#: gnu/packages/gnome.scm:855 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction for\n" "dealing with different structured file formats." msgstr "" =20 -#: gnu/packages/gnome.scm:880 +#: gnu/packages/gnome.scm:920 msgid "Render SVG files using Cairo" msgstr "" =20 -#: gnu/packages/gnome.scm:882 +#: gnu/packages/gnome.scm:922 msgid "" "Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" "library." msgstr "" =20 -#: gnu/packages/gnome.scm:906 +#: gnu/packages/gnome.scm:946 msgid "Create trees of CORBA Interface Definition Language files" msgstr "" =20 -#: gnu/packages/gnome.scm:907 +#: gnu/packages/gnome.scm:947 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\= n" -"portable interfaces. libidl was initially written for orbit (the orb fr= om the\n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" "GNOME project, and the primary means of libidl distribution). However,= the\n" "functionality was designed to be as reusable and portable as possible." msgstr "" =20 -#: gnu/packages/gnome.scm:944 +#: gnu/packages/gnome.scm:987 msgid "CORBA 2.4-compliant Object Request Broker" msgstr "" =20 -#: gnu/packages/gnome.scm:945 +#: gnu/packages/gnome.scm:988 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" =20 -#: gnu/packages/gnome.scm:991 -msgid "Framework for creating reusable components for use in GNOME appli= cations" +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" msgstr "" =20 -#: gnu/packages/gnome.scm:992 +#: gnu/packages/gnome.scm:1035 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" =20 -#: gnu/packages/gnome.scm:1023 +#: gnu/packages/gnome.scm:1066 msgid "Store application preferences" msgstr "" =20 -#: gnu/packages/gnome.scm:1024 +#: gnu/packages/gnome.scm:1067 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" =20 -#: gnu/packages/gnome.scm:1046 +#: gnu/packages/gnome.scm:1089 msgid "Base MIME and Application database for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:1047 +#: gnu/packages/gnome.scm:1090 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\= n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" =20 -#: gnu/packages/gnome.scm:1091 +#: gnu/packages/gnome.scm:1134 msgid "Access files and folders in GNOME applications" msgstr "" =20 -#: gnu/packages/gnome.scm:1093 +#: gnu/packages/gnome.scm:1136 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\= n" -"applications. It provides a file system abstraction which allows appli= cations\n" +"applications. It provides a file system abstraction which allows " +"applications\n" "to access local and remote files with a single consistent API." msgstr "" =20 -#: gnu/packages/gnome.scm:1137 +#: gnu/packages/gnome.scm:1180 msgid "Useful routines for building applications" msgstr "" =20 -#: gnu/packages/gnome.scm:1138 +#: gnu/packages/gnome.scm:1181 msgid "" "The libgnome library provides a number of useful routines\n" -"for building modern applications, including session management, activat= ion of\n" +"for building modern applications, including session management, activat= ion " +"of\n" "files and URIs, and displaying help." msgstr "" =20 -#: gnu/packages/gnome.scm:1161 +#: gnu/packages/gnome.scm:1204 msgid "2D drawing library" msgstr "" =20 -#: gnu/packages/gnome.scm:1162 +#: gnu/packages/gnome.scm:1205 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha compos= ition." msgstr "" =20 -#: gnu/packages/gnome.scm:1189 +#: gnu/packages/gnome.scm:1232 msgid "Flexible widget for creating interactive structured graphics" msgstr "" =20 -#: gnu/packages/gnome.scm:1190 +#: gnu/packages/gnome.scm:1233 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" =20 -#: gnu/packages/gnome.scm:1212 +#: gnu/packages/gnome.scm:1257 msgid "C++ bindings to the GNOME Canvas library" msgstr "" =20 -#: gnu/packages/gnome.scm:1213 +#: gnu/packages/gnome.scm:1258 msgid "C++ bindings to the GNOME Canvas library." msgstr "" =20 -#: gnu/packages/gnome.scm:1244 +#: gnu/packages/gnome.scm:1289 msgid "Additional widgets for applications" msgstr "" =20 -#: gnu/packages/gnome.scm:1245 +#: gnu/packages/gnome.scm:1290 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" =20 -#: gnu/packages/gnome.scm:1271 +#: gnu/packages/gnome.scm:1316 msgid "Load glade interfaces and access the glade built widgets" msgstr "" =20 -#: gnu/packages/gnome.scm:1272 +#: gnu/packages/gnome.scm:1317 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" =20 -#: gnu/packages/gnome.scm:1309 gnu/packages/gnome.scm:1341 +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 msgid "Printing framework for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:1311 +#: gnu/packages/gnome.scm:1356 msgid "" "GNOME-print was a printing framework for GNOME. It has been deprecated= \n" "since ca. 2006, when GTK+ itself incorporated printing support." msgstr "" =20 -#: gnu/packages/gnome.scm:1386 +#: gnu/packages/gnome.scm:1431 msgid "Some user interface controls using Bonobo" msgstr "" =20 -#: gnu/packages/gnome.scm:1387 +#: gnu/packages/gnome.scm:1432 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" =20 -#: gnu/packages/gnome.scm:1411 +#: gnu/packages/gnome.scm:1456 msgid "Window Navigator Construction Kit" msgstr "" =20 -#: gnu/packages/gnome.scm:1413 +#: gnu/packages/gnome.scm:1458 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\= n" "writing pagers, tasklists, and more generally applications that are dea= ling\n" -"with window management. It tries hard to respect the Extended Window M= anager\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" "Hints specification (EWMH)." msgstr "" =20 -#: gnu/packages/gnome.scm:1460 +#: gnu/packages/gnome.scm:1511 msgid "Document-centric objects and utilities" msgstr "" =20 -#: gnu/packages/gnome.scm:1461 +#: gnu/packages/gnome.scm:1512 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" =20 -#: gnu/packages/gnome.scm:1536 +#: gnu/packages/gnome.scm:1594 msgid "Spreadsheet application" msgstr "Arkusz kalkulacyjny" =20 -#: gnu/packages/gnome.scm:1538 +#: gnu/packages/gnome.scm:1596 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" "interoperable with other spreadsheet applications. It has a vast array= of\n" -"features beyond typical spreadsheet functionality, such as support for = linear\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" "and non-linear solvers, statistical analysis, and telecommunication\n" "engineering." msgstr "" =20 -#: gnu/packages/gnome.scm:1586 +#: gnu/packages/gnome.scm:1642 msgid "Default GNOME 3 themes" msgstr "Domy=C5=9Blne motywy GNOME 3" =20 -#: gnu/packages/gnome.scm:1588 +#: gnu/packages/gnome.scm:1644 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." msgstr "" =20 -#: gnu/packages/gnome.scm:1619 +#: gnu/packages/gnome.scm:1677 msgid "Manage encryption keys and passwords in the GNOME keyring" msgstr "" =20 -#: gnu/packages/gnome.scm:1621 +#: gnu/packages/gnome.scm:1679 msgid "" "Seahorse is a GNOME application for managing encryption keys and\n" "passwords in the GNOME keyring." msgstr "" =20 -#: gnu/packages/gnome.scm:1655 gnu/packages/gnome.scm:1791 +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 msgid "Compiler for the GObject type system" msgstr "" =20 -#: gnu/packages/gnome.scm:1657 +#: gnu/packages/gnome.scm:1717 msgid "" "Vala is a programming language that aims to bring modern programming\n" -"language features to GNOME developers without imposing any additional r= untime\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" "requirements and without using a different ABI compared to applications= and\n" "libraries written in C." msgstr "" =20 -#: gnu/packages/gnome.scm:1687 +#: gnu/packages/gnome.scm:1747 msgid "Virtual Terminal Emulator" msgstr "" =20 -#: gnu/packages/gnome.scm:1689 +#: gnu/packages/gnome.scm:1749 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n= " -"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used in\n" +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" "gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" "editors, IDEs, etc." msgstr "" =20 -#: gnu/packages/gnome.scm:1765 +#: gnu/packages/gnome.scm:1847 msgid "Low-level GNOME configuration system" msgstr "" =20 -#: gnu/packages/gnome.scm:1766 +#: gnu/packages/gnome.scm:1848 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already ha= ve\n" "configuration storage systems." msgstr "" =20 -#: gnu/packages/gnome.scm:1793 +#: gnu/packages/gnome.scm:1882 msgid "" "JSON-GLib is a C library based on GLib providing serialization and\n" "deserialization support for the JavaScript Object Notation (JSON) forma= t\n" -"described by RFC 4627. It provides parser and generator GObject classe= s and\n" -"various wrappers for the complex data types employed by JSON, such as a= rrays\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" "and objects." msgstr "" =20 -#: gnu/packages/gnome.scm:1832 +#: gnu/packages/gnome.scm:1921 msgid "High-level API for X Keyboard Extension" msgstr "" =20 -#: gnu/packages/gnome.scm:1834 +#: gnu/packages/gnome.scm:1923 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" -"Extension known as XKB. This library is intended to support XFree86 an= d other\n" -"commercial X servers. It is useful for creating XKB-related software (= layout\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" "indicators etc)." msgstr "" =20 -#: gnu/packages/gnome.scm:1862 +#: gnu/packages/gnome.scm:1951 msgid "Python bindings to librsvg" msgstr "" =20 -#: gnu/packages/gnome.scm:1864 +#: gnu/packages/gnome.scm:1953 msgid "" "This packages provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" =20 -#: gnu/packages/gnome.scm:1913 +#: gnu/packages/gnome.scm:2002 msgid "Network-related GIO modules" msgstr "" =20 -#: gnu/packages/gnome.scm:1915 +#: gnu/packages/gnome.scm:2004 msgid "" "This package contains various network related extensions for the GIO\n" "library." msgstr "" =20 -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:2035 msgid "RESTful web api query library" msgstr "" =20 -#: gnu/packages/gnome.scm:1948 +#: gnu/packages/gnome.scm:2037 msgid "" "This library was designed to make it easier to access web services that= \n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" "libxml to ease remote use of the RESTful API." msgstr "" =20 -#: gnu/packages/gnome.scm:2012 +#: gnu/packages/gnome.scm:2106 msgid "GLib-based HTTP Library" msgstr "" =20 -#: gnu/packages/gnome.scm:2014 +#: gnu/packages/gnome.scm:2108 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " "and the GLib main loop, to integrate well with GNOME applications." msgstr "" =20 -#: gnu/packages/gnome.scm:2059 +#: gnu/packages/gnome.scm:2154 msgid "GObject bindings for \"Secret Service\" API" msgstr "" =20 -#: gnu/packages/gnome.scm:2061 +#: gnu/packages/gnome.scm:2156 msgid "" "Libsecret is a GObject based library for storing and retrieving passwor= ds\n" "and other secrets. It communicates with the \"Secret Service\" using D= Bus." msgstr "" =20 -#: gnu/packages/gnome.scm:2105 +#: gnu/packages/gnome.scm:2200 msgid "Minesweeper game" msgstr "Gra Saper" =20 -#: gnu/packages/gnome.scm:2107 +#: gnu/packages/gnome.scm:2202 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" =20 -#: gnu/packages/gnome.scm:2151 +#: gnu/packages/gnome.scm:2246 msgid "Terminal emulator" msgstr "Emulator terminala" =20 -#: gnu/packages/gnome.scm:2153 +#: gnu/packages/gnome.scm:2248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n= " @@ -2555,47 +2980,50 @@ msgid "" "keyboard shortcuts." msgstr "" =20 -#: gnu/packages/gnome.scm:2218 +#: gnu/packages/gnome.scm:2314 msgid "Color management service" msgstr "" =20 -#: gnu/packages/gnome.scm:2219 +#: gnu/packages/gnome.scm:2315 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input an= d\n" "output devices." msgstr "" =20 -#: gnu/packages/gnome.scm:2261 +#: gnu/packages/gnome.scm:2357 msgid "Geolocation service" msgstr "" =20 -#: gnu/packages/gnome.scm:2262 +#: gnu/packages/gnome.scm:2358 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creati= ng\n" -"location-aware applications as simple as possible, while the secondary = goal is\n" -"to ensure that no application can access location information without e= xplicit\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" "permission from user." msgstr "" =20 -#: gnu/packages/gnome.scm:2298 +#: gnu/packages/gnome.scm:2393 msgid "Geocoding and reverse-geocoding library" msgstr "" =20 -#: gnu/packages/gnome.scm:2300 +#: gnu/packages/gnome.scm:2395 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,= \n" -"and latitude from an address) and reverse geocoding (finding an address= from\n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" "coordinates) using the Nominatim service. geocode-glib caches requests= for\n" "faster results and to avoid unnecessary server load." msgstr "" =20 -#: gnu/packages/gnome.scm:2347 +#: gnu/packages/gnome.scm:2448 msgid "System daemon for managing power devices" msgstr "" =20 -#: gnu/packages/gnome.scm:2349 +#: gnu/packages/gnome.scm:2450 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -2603,207 +3031,217 @@ msgid "" "service via the system message bus." msgstr "" =20 -#: gnu/packages/gnome.scm:2395 +#: gnu/packages/gnome.scm:2500 msgid "Location, time zone, and weather library for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:2397 +#: gnu/packages/gnome.scm:2502 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" =20 -#: gnu/packages/gnome.scm:2449 +#: gnu/packages/gnome.scm:2554 msgid "GNOME settings daemon" msgstr "" =20 -#: gnu/packages/gnome.scm:2451 +#: gnu/packages/gnome.scm:2556 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. = It\n" -"handles settings such keyboard layout, shortcuts, and accessibility, cl= ipboard\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" "settings, themes, mouse settings, and startup of other daemons." msgstr "" =20 -#: gnu/packages/gnome.scm:2487 +#: gnu/packages/gnome.scm:2592 msgid "Library to parse and save media playlists for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:2488 +#: gnu/packages/gnome.scm:2593 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" =20 -#: gnu/packages/gnome.scm:2522 +#: gnu/packages/gnome.scm:2627 msgid "Solitaire card games" msgstr "Gry typu pasjans" =20 -#: gnu/packages/gnome.scm:2524 +#: gnu/packages/gnome.scm:2629 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" "which are easy to play with the aid of a mouse." msgstr "" =20 -#: gnu/packages/gnome.scm:2548 +#: gnu/packages/gnome.scm:2653 msgid "API documentation browser for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:2550 +#: gnu/packages/gnome.scm:2655 msgid "" "Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " "natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" "throughout GNOME for API documentation)." msgstr "" =20 -#: gnu/packages/gnome.scm:2611 +#: gnu/packages/gnome.scm:2716 msgid "Object oriented GL/GLES Abstraction/Utility Layer" msgstr "" =20 -#: gnu/packages/gnome.scm:2613 +#: gnu/packages/gnome.scm:2718 msgid "" "Cogl is a small library for using 3D graphics hardware to draw pretty\n= " -"pictures. The API departs from the flat state machine style of OpenGL = and is\n" +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" "designed to make it easy to write orthogonal components that can render= \n" "without stepping on each others toes." msgstr "" =20 -#: gnu/packages/gnome.scm:2668 +#: gnu/packages/gnome.scm:2773 msgid "Open GL based interactive canvas library" msgstr "" =20 -#: gnu/packages/gnome.scm:2670 gnu/packages/gnome.scm:2698 +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 msgid "" "Clutter is an Open GL based interactive canvas library, designed for\n" "creating fast, mainly 2D single window applications such as media box U= Is,\n" "presentations, kiosk style applications and so on." msgstr "" =20 -#: gnu/packages/gnome.scm:2696 +#: gnu/packages/gnome.scm:2802 msgid "Open GL based interactive canvas library GTK+ widget" msgstr "" =20 -#: gnu/packages/gnome.scm:2726 +#: gnu/packages/gnome.scm:2832 msgid "Integration library for using GStreamer with Clutter" msgstr "" =20 -#: gnu/packages/gnome.scm:2728 +#: gnu/packages/gnome.scm:2834 msgid "" "Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" "It provides a GStreamer sink to upload frames to GL and an actor that\n= " -"implements the ClutterGstPlayer interface using playbin. Clutter is an= Open\n" +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" "GL based interactive canvas library." msgstr "" =20 -#: gnu/packages/gnome.scm:2758 +#: gnu/packages/gnome.scm:2864 msgid "C library providing a ClutterActor to display maps" msgstr "" =20 -#: gnu/packages/gnome.scm:2760 +#: gnu/packages/gnome.scm:2866 msgid "" "libchamplain is a C library providing a ClutterActor to display maps.\n= " -"It also provides a Gtk+ widget to display maps in Gtk+ applications. P= ython\n" -"and Perl bindings are also available. It supports numerous free map so= urces\n" +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" "such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." msgstr "" =20 -#: gnu/packages/gnome.scm:2791 +#: gnu/packages/gnome.scm:2897 msgid "Object mapper from GObjects to SQLite" msgstr "" =20 -#: gnu/packages/gnome.scm:2793 +#: gnu/packages/gnome.scm:2899 msgid "" "Gom provides an object mapper from GObjects to SQLite. It helps you\n" -"write applications that need to store structured data as well as make c= omplex\n" +"write applications that need to store structured data as well as make " +"complex\n" "queries upon that data." msgstr "" =20 -#: gnu/packages/gnome.scm:2821 +#: gnu/packages/gnome.scm:2927 msgid "Sliding block puzzles" msgstr "" =20 -#: gnu/packages/gnome.scm:2823 +#: gnu/packages/gnome.scm:2929 msgid "" "GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" -"the patterned block to the area bordered by green markers. To do so, y= ou will\n" -"need to slide other blocks out of the way. Complete each puzzle in as = few moves\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" "as possible!" msgstr "" =20 -#: gnu/packages/gnome.scm:2874 +#: gnu/packages/gnome.scm:2980 msgid "Framework for discovering and browsing media" msgstr "" =20 -#: gnu/packages/gnome.scm:2876 gnu/packages/gnome.scm:2928 +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 msgid "" "Grilo is a framework focused on making media discovery and browsing eas= y\n" "for application developers." msgstr "" =20 -#: gnu/packages/gnome.scm:2926 +#: gnu/packages/gnome.scm:3032 msgid "Plugins for the Grilo media discovery library" msgstr "" =20 -#: gnu/packages/gnome.scm:3003 +#: gnu/packages/gnome.scm:3109 msgid "Simple media player for GNOME based on GStreamer" msgstr "" =20 -#: gnu/packages/gnome.scm:3004 +#: gnu/packages/gnome.scm:3110 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" =20 -#: gnu/packages/gnome.scm:3093 +#: gnu/packages/gnome.scm:3199 msgid "Music player for GNOME" msgstr "Odtwarzacz muzyki GNOME" =20 -#: gnu/packages/gnome.scm:3094 +#: gnu/packages/gnome.scm:3200 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstr= eamer." msgstr "" =20 -#: gnu/packages/gnome.scm:3144 +#: gnu/packages/gnome.scm:3250 msgid "GNOME image viewer" msgstr "Przegl=C4=85darka obraz=C3=B3w GNOME" =20 -#: gnu/packages/gnome.scm:3145 +#: gnu/packages/gnome.scm:3251 msgid "" "Eye of GNOME is the GNOME image viewer. It\n" "supports image conversion, rotation, and slideshows." msgstr "" =20 -#: gnu/packages/gnome.scm:3170 +#: gnu/packages/gnome.scm:3276 msgid "GObject bindings for libudev" msgstr "" =20 -#: gnu/packages/gnome.scm:3172 +#: gnu/packages/gnome.scm:3278 msgid "" "This library provides GObject bindings for libudev. It was originally\= n" "part of udev-extras, then udev, then systemd. It's now a project on it= s own." msgstr "" =20 -#: gnu/packages/gnome.scm:3217 +#: gnu/packages/gnome.scm:3324 msgid "Userspace virtual filesystem for GIO" msgstr "" =20 -#: gnu/packages/gnome.scm:3219 +#: gnu/packages/gnome.scm:3326 msgid "" "GVFS is a userspace virtual filesystem designed to work with the I/O\n" -"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= support\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" "to all applications using the GIO API. It also supports exposing the G= VFS\n" "mounts to non-GIO applications using FUSE.\n" "\n" -"GVFS comes with a set of backends, including trash support, SFTP, SMB, = HTTP,\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" "DAV, and others." msgstr "" =20 -#: gnu/packages/gnome.scm:3265 -msgid "A GLib binding for libusb1" +#: gnu/packages/gnome.scm:3372 +msgid "GLib binding for libusb1" msgstr "" =20 -#: gnu/packages/gnome.scm:3267 +#: gnu/packages/gnome.scm:3374 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" @@ -2811,65 +3249,66 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" =20 -#: gnu/packages/gnome.scm:3304 +#: gnu/packages/gnome.scm:3411 msgid "Document and image scanner" msgstr "" =20 -#: gnu/packages/gnome.scm:3305 +#: gnu/packages/gnome.scm:3412 msgid "" "Simple Scan is an easy-to-use application, designed to let\n" "users connect their scanner and quickly have the image/document in an\n= " -"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch is\n" +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" "the same backend as XSANE uses. This means that all existing scanners w= ill\n" "work and the interface is well tested." msgstr "" =20 -#: gnu/packages/gnome.scm:3354 +#: gnu/packages/gnome.scm:3461 msgid "GNOME web browser" msgstr "Przegl=C4=85darka internetu GNOME" =20 -#: gnu/packages/gnome.scm:3356 +#: gnu/packages/gnome.scm:3463 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " "principles are simplicity and standards compliance." msgstr "" =20 -#: gnu/packages/gnome.scm:3412 +#: gnu/packages/gnome.scm:3519 msgid "D-Bus debugger" msgstr "" =20 -#: gnu/packages/gnome.scm:3414 +#: gnu/packages/gnome.scm:3521 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" "of running programs and invoke methods on those interfaces." msgstr "" =20 -#: gnu/packages/gnome.scm:3436 +#: gnu/packages/gnome.scm:3543 msgid "XSL stylesheets for Yelp" msgstr "" =20 -#: gnu/packages/gnome.scm:3438 +#: gnu/packages/gnome.scm:3545 msgid "" "Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" "to format Docbook and Mallard documents." msgstr "" =20 -#: gnu/packages/gnome.scm:3470 +#: gnu/packages/gnome.scm:3575 msgid "GNOME help browser" msgstr "" =20 -#: gnu/packages/gnome.scm:3472 +#: gnu/packages/gnome.scm:3577 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" "man, info, and HTML documents. It can locate documents according to th= e\n" "freedesktop.org help system specification." msgstr "" =20 -#: gnu/packages/gnome.scm:3500 +#: gnu/packages/gnome.scm:3605 msgid "Yelp documentation tools" msgstr "" =20 -#: gnu/packages/gnome.scm:3502 +#: gnu/packages/gnome.scm:3607 msgid "" "Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" "manage, and publish documentation for Yelp and the web. Most of the he= avy\n" @@ -2877,111 +3316,338 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" =20 -#: gnu/packages/gnome.scm:3539 +#: gnu/packages/gnome.scm:3644 msgid "GObject collection library" msgstr "" =20 -#: gnu/packages/gnome.scm:3541 +#: gnu/packages/gnome.scm:3646 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" =20 -#: gnu/packages/gnome.scm:3568 +#: gnu/packages/gnome.scm:3673 msgid "GObject wrapper around the Exiv2 photo metadata library" msgstr "" =20 -#: gnu/packages/gnome.scm:3570 +#: gnu/packages/gnome.scm:3675 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" -"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and XMP\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" "metadata in photo and video files of various formats." msgstr "" =20 -#: gnu/packages/gnome.scm:3622 +#: gnu/packages/gnome.scm:3727 msgid "Photo manager for GNOME 3" msgstr "" =20 -#: gnu/packages/gnome.scm:3624 +#: gnu/packages/gnome.scm:3729 msgid "" "Shotwell is a digital photo manager designed for the GNOME desktop\n" "environment. It allows you to import photos from disk or camera, organ= ize\n" -"them by keywords and events, view them in full-window or fullscreen mod= e, and\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" "share them with others via social networking and more." msgstr "" =20 -#: gnu/packages/gnome.scm:3656 +#: gnu/packages/gnome.scm:3761 msgid "Graphical archive manager for GNOME" msgstr "" =20 -#: gnu/packages/gnome.scm:3657 +#: gnu/packages/gnome.scm:3762 msgid "" "File Roller is an archive manager for the GNOME desktop\n" -"environment that allows users to view, unpack, and create compressed ar= chives\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" "such as gzip tarballs." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:90 +#: gnu/packages/gnome.scm:3797 +#, fuzzy +msgid "Session manager for GNOME" +msgstr "Odtwarzacz muzyki GNOME" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +msgid "Javascript bindings for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "Edytor ci=C4=85g=C3=B3w" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "" + +#: gnu/packages/gnome.scm:4356 +#, fuzzy +msgid "Display manager for GNOME" +msgstr "Odtwarzacz muzyki GNOME" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:4484 +#, fuzzy +msgid "Utilities to configure the GNOME desktop" +msgstr "Ikony dla =C5=9Brodowiska GNOME" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +#, fuzzy +msgid "File manager for GNOME" +msgstr "Odtwarzacz muzyki GNOME" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +#, fuzzy +msgid "Disk usage analyzer for GNOME" +msgstr "Odtwarzacz muzyki GNOME" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 msgid "Mozilla javascript engine" msgstr "" =20 -#: gnu/packages/gnuzilla.scm:91 +#: gnu/packages/gnuzilla.scm:96 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:123 +#: gnu/packages/gnuzilla.scm:171 msgid "Netscape API for system level and libc-like functions" msgstr "" =20 -#: gnu/packages/gnuzilla.scm:124 +#: gnu/packages/gnuzilla.scm:172 msgid "" "Netscape Portable Runtime (NSPR) provides a\n" "platform-neutral API for system level and libc-like functions. It is u= sed\n" "in the Mozilla clients." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:219 +#: gnu/packages/gnuzilla.scm:268 msgid "Network Security Services" msgstr "" =20 -#: gnu/packages/gnuzilla.scm:221 +#: gnu/packages/gnuzilla.scm:270 msgid "" "Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" -"cross-platform development of security-enabled client and server applic= ations.\n" -"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS #7,\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" "PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " "standards." msgstr "" =20 -#: gnu/packages/gnuzilla.scm:453 +#: gnu/packages/gnuzilla.scm:506 msgid "Entirely free browser derived from Mozilla Firefox" msgstr "Ca=C5=82kowicie wolna przegl=C4=85darka pochodz=C4=85ca od Firef= oksa" =20 -#: gnu/packages/gnuzilla.scm:455 +#: gnu/packages/gnuzilla.scm:508 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\= n" "software, which does not recommend non-free plugins and addons. It als= o\n" "features built-in privacy-protecting features." msgstr "" =20 -#: gnu/packages/gtk.scm:84 +#: gnu/packages/gtk.scm:87 msgid "GNOME accessibility toolkit" msgstr "" =20 -#: gnu/packages/gtk.scm:86 +#: gnu/packages/gtk.scm:89 msgid "" "ATK provides the set of accessibility interfaces that are implemented\n= " -"by other toolkits and applications. Using the ATK interfaces, accessib= ility\n" +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" "tools have full access to view and control running applications." msgstr "" =20 -#: gnu/packages/gtk.scm:125 +#: gnu/packages/gtk.scm:128 msgid "2D graphics library" msgstr "" =20 -#: gnu/packages/gtk.scm:127 +#: gnu/packages/gtk.scm:130 msgid "" "Cairo is a 2D graphics library with support for multiple output devices= .\n" "Currently supported output targets include the X Window System (via bot= h\n" @@ -2993,100 +3659,115 @@ msgid "" "eg. through the X Render Extension).\n" "\n" "The cairo API provides operations similar to the drawing operators of\n= " -"PostScript and PDF. Operations in cairo including stroking and filling= cubic\n" +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" "B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" -"antialiased text rendering. All drawing operations can be transformed = by any\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" "affine transformation (scale, rotation, shear, etc.)." msgstr "" =20 -#: gnu/packages/gtk.scm:175 +#: gnu/packages/gtk.scm:178 msgid "OpenType text shaping engine" msgstr "" =20 -#: gnu/packages/gtk.scm:177 +#: gnu/packages/gtk.scm:180 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" =20 -#: gnu/packages/gtk.scm:208 +#: gnu/packages/gtk.scm:211 msgid "GNOME text and font handling library" msgstr "" =20 -#: gnu/packages/gtk.scm:210 +#: gnu/packages/gtk.scm:213 msgid "" "Pango is the core text and font handling library used in GNOME\n" "applications. It has extensive support for the different writing syste= ms\n" "used throughout the world." msgstr "" =20 -#: gnu/packages/gtk.scm:236 +#: gnu/packages/gtk.scm:239 msgid "Obsolete pango functions" msgstr "" =20 -#: gnu/packages/gtk.scm:237 +#: gnu/packages/gtk.scm:240 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n= " "functions which were removed." msgstr "" =20 -#: gnu/packages/gtk.scm:271 +#: gnu/packages/gtk.scm:276 msgid "GTK+ widget for interactive graph-like environments" msgstr "" =20 -#: gnu/packages/gtk.scm:273 +#: gnu/packages/gtk.scm:278 msgid "" "Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" =20 -#: gnu/packages/gtk.scm:323 +#: gnu/packages/gtk.scm:330 msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" msgstr "" =20 -#: gnu/packages/gtk.scm:325 +#: gnu/packages/gtk.scm:332 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable synt= ax\n" -"highlighting, unlimited undo/redo, search and replace, a completion fra= mework,\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" "printing and other features typical of a source code editor." msgstr "" =20 -#: gnu/packages/gtk.scm:374 +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 msgid "GNOME image loading and manipulation library" msgstr "" =20 -#: gnu/packages/gtk.scm:376 +#: gnu/packages/gtk.scm:431 msgid "" "GdkPixbuf is a library for image loading and manipulation developed\n" "in the GNOME project." msgstr "" =20 -#: gnu/packages/gtk.scm:417 +#: gnu/packages/gtk.scm:474 msgid "Assistive Technology Service Provider Interface, core components" msgstr "" =20 -#: gnu/packages/gtk.scm:419 +#: gnu/packages/gtk.scm:476 msgid "" "The Assistive Technology Service Provider Interface, core components,\n= " "is part of the GNOME accessibility project." msgstr "" =20 -#: gnu/packages/gtk.scm:451 +#: gnu/packages/gtk.scm:509 msgid "Assistive Technology Service Provider Interface, ATK bindings" msgstr "" =20 -#: gnu/packages/gtk.scm:453 +#: gnu/packages/gtk.scm:511 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" =20 -#: gnu/packages/gtk.scm:505 +#: gnu/packages/gtk.scm:568 msgid "Cross-platform toolkit for creating graphical user interfaces" msgstr "" =20 -#: gnu/packages/gtk.scm:507 +#: gnu/packages/gtk.scm:570 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" @@ -3094,11 +3775,11 @@ msgid "" "application suites." msgstr "" =20 -#: gnu/packages/gtk.scm:630 +#: gnu/packages/gtk.scm:705 msgid "Cairo bindings for GNU Guile" msgstr "" =20 -#: gnu/packages/gtk.scm:632 +#: gnu/packages/gtk.scm:707 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" @@ -3108,21 +3789,21 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" =20 -#: gnu/packages/gtk.scm:672 +#: gnu/packages/gtk.scm:747 msgid "Render SVG images using Cairo from Guile" msgstr "" =20 -#: gnu/packages/gtk.scm:674 +#: gnu/packages/gtk.scm:749 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" "images onto Cairo surfaces." msgstr "" =20 -#: gnu/packages/gtk.scm:718 +#: gnu/packages/gtk.scm:793 msgid "Create SVG or PDF presentations in Guile" msgstr "" =20 -#: gnu/packages/gtk.scm:720 +#: gnu/packages/gtk.scm:795 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -3131,121 +3812,167 @@ msgid "" "documents." msgstr "" =20 -#: gnu/packages/gtk.scm:753 +#: gnu/packages/gtk.scm:829 msgid "C++ bindings to the Cairo 2D graphics library" msgstr "" =20 -#: gnu/packages/gtk.scm:755 +#: gnu/packages/gtk.scm:831 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " "library." msgstr "" =20 -#: gnu/packages/gtk.scm:779 +#: gnu/packages/gtk.scm:855 msgid "C++ interface to the Pango text rendering library" msgstr "" =20 -#: gnu/packages/gtk.scm:781 +#: gnu/packages/gtk.scm:857 msgid "" "Pangomm provides a C++ programming interface to the Pango text renderin= g\n" "library." msgstr "" =20 -#: gnu/packages/gtk.scm:802 +#: gnu/packages/gtk.scm:878 msgid "C++ interface to the ATK accessibility library" msgstr "" =20 -#: gnu/packages/gtk.scm:804 +#: gnu/packages/gtk.scm:880 msgid "" "ATKmm provides a C++ programming interface to the ATK accessibility\n" "toolkit." msgstr "" =20 -#: gnu/packages/gtk.scm:830 +#: gnu/packages/gtk.scm:907 msgid "C++ interface to the GTK+ graphical user interface library" msgstr "" =20 -#: gnu/packages/gtk.scm:832 +#: gnu/packages/gtk.scm:909 msgid "" "gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " -"Highlights include typesafe callbacks, and a comprehensive set of widge= ts that\n" -"are easily extensible via inheritance. You can create user interfaces = either\n" -"in code or with the Glade User Interface designer, using libglademm. T= here's\n" +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" "extensive documentation, including API reference and a tutorial." msgstr "" =20 -#: gnu/packages/gtk.scm:888 +#: gnu/packages/gtk.scm:968 msgid "Python bindings for cairo" msgstr "" =20 -#: gnu/packages/gtk.scm:890 +#: gnu/packages/gtk.scm:970 msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." msgstr "" =20 -#: gnu/packages/gtk.scm:964 +#: gnu/packages/gtk.scm:1053 msgid "Python bindings for GTK+" msgstr "" =20 -#: gnu/packages/gtk.scm:966 +#: gnu/packages/gtk.scm:1055 msgid "" "PyGTK allows you to write full featured GTK programs in Python. It is\= n" "targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" "write GNOME applications." msgstr "" =20 -#: gnu/packages/gtk.scm:997 +#: gnu/packages/gtk.scm:1086 msgid "Library for minimalistic gtk+3 user interfaces" msgstr "" =20 -#: gnu/packages/gtk.scm:998 +#: gnu/packages/gtk.scm:1087 msgid "" "Girara is a library that implements a user interface that\n" "focuses on simplicity and minimalism. Currently based on GTK+, a\n" -"cross-platform widget toolkit, it provides an interface that focuses on= three\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" "main components: a so-called view widget that represents the actual\n" "application, an input bar that is used to execute commands of the\n" "application and the status bar which provides the user with current\n" "information." msgstr "" =20 -#: gnu/packages/gtk.scm:1041 +#: gnu/packages/gtk.scm:1130 msgid "Documentation generator from C source code" msgstr "" =20 -#: gnu/packages/gtk.scm:1043 +#: gnu/packages/gtk.scm:1132 msgid "" -"GTK-Doc generates API documentation from comments added to C code. It i= s\n" -"typically used to document the public API of GTK+ and GNOME libraries, = but it\n" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" "can also be used to document application code." msgstr "" =20 -#: gnu/packages/guile.scm:107 gnu/packages/guile.scm:174 +#: gnu/packages/gtk.scm:1159 +msgid "Theming engines for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 msgid "Scheme implementation intended especially for extensions" msgstr "" =20 -#: gnu/packages/guile.scm:109 gnu/packages/guile.scm:176 +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation= of\n" "the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" +"provide a convenient means of extending the functionality of the " +"application\n" "without requiring the source code to be rewritten." msgstr "" =20 -#: gnu/packages/guile.scm:217 +#: gnu/packages/guile.scm:213 msgid "Snapshot of what will become version 2.2 of GNU Guile" msgstr "" =20 -#: gnu/packages/guile.scm:264 +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 msgid "Framework for building readers for GNU Guile" msgstr "" =20 -#: gnu/packages/guile.scm:266 +#: gnu/packages/guile.scm:327 msgid "" "Guile-Reader is a simple framework for building readers for GNU Guile.\= n" "\n" "The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wr= itten,\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" "possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" "readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" "document syntax.\n" @@ -3255,33 +3982,34 @@ msgid "" "many readers as needed)." msgstr "" =20 -#: gnu/packages/guile.scm:311 +#: gnu/packages/guile.scm:376 msgid "Guile bindings to ncurses" msgstr "" =20 -#: gnu/packages/guile.scm:313 +#: gnu/packages/guile.scm:378 msgid "" "guile-ncurses provides Guile language bindings for the ncurses\n" "library." msgstr "" =20 -#: gnu/packages/guile.scm:333 +#: gnu/packages/guile.scm:398 msgid "Run jobs at scheduled times" msgstr "" =20 -#: gnu/packages/guile.scm:335 +#: gnu/packages/guile.scm:400 msgid "" "GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" "Guile, so its configuration can be written in Scheme; the original cron= \n" "format is also supported." msgstr "" =20 -#: gnu/packages/guile.scm:363 +#: gnu/packages/guile.scm:428 msgid "Collection of useful Guile Scheme modules" msgstr "" =20 -#: gnu/packages/guile.scm:365 +#: gnu/packages/guile.scm:430 msgid "" "Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" "modules, allowing for people to cooperate integrating their generic Gui= le\n" @@ -3289,11 +4017,11 @@ msgid "" "for Guile\"." msgstr "" =20 -#: gnu/packages/guile.scm:396 +#: gnu/packages/guile.scm:461 msgid "JSON module for Guile" msgstr "" =20 -#: gnu/packages/guile.scm:398 +#: gnu/packages/guile.scm:463 msgid "" "Guile-json supports parsing and building JSON documents according to th= e\n" "http:://json.org specification. These are the main features:\n" @@ -3303,11 +4031,11 @@ msgid "" "- Allows JSON pretty printing." msgstr "" =20 -#: gnu/packages/guile.scm:468 +#: gnu/packages/guile.scm:534 msgid "MiniKanren declarative logic system, packaged for Guile" msgstr "" =20 -#: gnu/packages/guile.scm:470 +#: gnu/packages/guile.scm:536 msgid "" "MiniKanren is a relational programming extension to the Scheme\n" "programming Language, written as a smaller version of Kanren suitable f= or\n" @@ -3320,89 +4048,139 @@ msgid "" "See http://minikanren.org/ for more on miniKanren generally." msgstr "" =20 -#: gnu/packages/guile.scm:540 +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 msgid "Guile bindings to the GDBM library via Guile's FFI" msgstr "" =20 -#: gnu/packages/guile.scm:542 +#: gnu/packages/guile.scm:687 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" =20 -#: gnu/packages/guile.scm:560 +#: gnu/packages/guile.scm:727 msgid "Functional static site generator" msgstr "" =20 -#: gnu/packages/guile.scm:561 +#: gnu/packages/guile.scm:728 msgid "" "Haunt is a static site generator written in Guile\n" "Scheme. Haunt features a functional build system and an extensible\n" "interface for reading articles in any format." msgstr "" =20 -#: gnu/packages/guile.scm:591 +#: gnu/packages/guile.scm:758 msgid "Redis client library for Guile" msgstr "" =20 -#: gnu/packages/guile.scm:592 +#: gnu/packages/guile.scm:759 msgid "" "Guile-redis provides a Scheme interface to the Redis\n" "key-value cache and store." msgstr "" =20 -#: gnu/packages/guile.scm:666 -msgid "wisp is a whitespace to lisp syntax for Guile" +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" msgstr "" =20 -#: gnu/packages/guile.scm:667 +#: gnu/packages/guile.scm:834 msgid "" -"wisp is a syntax for Guile which provides a Python-like\n" +"Wisp is a syntax for Guile which provides a Python-like\n" "whitespace-significant language. It may be easier on the eyes for some= \n" "users and in some situations." msgstr "" =20 -#: gnu/packages/imagemagick.scm:99 +#: gnu/packages/guile.scm:867 +msgid "2D/3D game engine for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +msgid "Generate C bindings for Guile" +msgstr "" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 msgid "Create, edit, compose, or convert bitmap images" msgstr "" =20 -#: gnu/packages/imagemagick.scm:101 +#: gnu/packages/imagemagick.scm:103 msgid "" "ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" -"bitmap images. It can read and write images in a variety of formats (o= ver 100)\n" -"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , SVG,\n" -"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear and\n" -"transform images, adjust image colors, apply various special effects, o= r draw\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" "text, lines, polygons, ellipses and B=C3=A9zier curves." msgstr "" =20 -#: gnu/packages/imagemagick.scm:145 +#: gnu/packages/imagemagick.scm:147 msgid "Perl interface to ImageMagick" msgstr "" =20 -#: gnu/packages/imagemagick.scm:146 +#: gnu/packages/imagemagick.scm:148 msgid "" "This Perl extension allows the reading, manipulation and\n" -"writing of a large number of image file formats using the ImageMagick l= ibrary.\n" -"Use it to create, edit, compose, or convert bitmap images from within a= Perl\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" "script." msgstr "" =20 -#: gnu/packages/image.scm:69 -msgid "Library for handling PNG files" +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." msgstr "" =20 #: gnu/packages/image.scm:71 +msgid "Library for handling PNG files" +msgstr "" + +#: gnu/packages/image.scm:73 msgid "" "Libpng is the official PNG (Portable Network Graphics) reference\n" "library. It supports almost all PNG features and is extensible." msgstr "" =20 -#: gnu/packages/image.scm:87 +#: gnu/packages/image.scm:89 msgid "Library for handling JPEG files" msgstr "" =20 -#: gnu/packages/image.scm:89 +#: gnu/packages/image.scm:91 msgid "" "Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" "JPEG is a standardized compression method for full-color and gray-scale= \n" @@ -3411,11 +4189,22 @@ msgid "" "image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." msgstr "" =20 -#: gnu/packages/image.scm:128 +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 msgid "Library for handling TIFF files" msgstr "" =20 -#: gnu/packages/image.scm:130 +#: gnu/packages/image.scm:159 msgid "" "Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" "used for storing image data.\n" @@ -3423,37 +4212,42 @@ msgid "" "collection of tools for doing simple manipulations of TIFF images." msgstr "" =20 -#: gnu/packages/image.scm:173 +#: gnu/packages/image.scm:202 msgid "Library for reading images in the Microsoft WMF format" msgstr "" =20 -#: gnu/packages/image.scm:175 +#: gnu/packages/image.scm:204 msgid "" "libwmf is a library for reading vector images in Microsoft's native\n" -"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., an X\n" -"window; or (b) converting them to more standard/free file formats such = as, e.g.,\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" "the W3C's XML-based Scaleable Vector Graphic (SVG) format." msgstr "" =20 -#: gnu/packages/image.scm:233 +#: gnu/packages/image.scm:271 msgid "Library and tools for image processing and analysis" msgstr "" =20 -#: gnu/packages/image.scm:235 +#: gnu/packages/image.scm:273 msgid "" "Leptonica is a C library and set of command-line tools for efficient\n" -"image processing and image analysis operations. It supports rasterop, = affine\n" -"transformations, binary and grayscale morphology, rank order, and convo= lution,\n" -"seedfill and connected components, image transformations combining chan= ges in\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" "scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" "arithmetic ops." msgstr "" =20 -#: gnu/packages/image.scm:258 +#: gnu/packages/image.scm:296 msgid "Decoder of the JBIG2 image compression format" msgstr "" =20 -#: gnu/packages/image.scm:260 +#: gnu/packages/image.scm:298 msgid "" "JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" "monochrome) images at moderately high resolution, and in particular sca= nned\n" @@ -3466,11 +4260,11 @@ msgid "" "work." msgstr "" =20 -#: gnu/packages/image.scm:295 +#: gnu/packages/image.scm:333 msgid "JPEG 2000 codec" msgstr "Kodek JPEG 2000" =20 -#: gnu/packages/image.scm:297 +#: gnu/packages/image.scm:335 msgid "" "The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" "been developed in order to promote the use of JPEG 2000, the new\n" @@ -3483,31 +4277,32 @@ msgid "" "error-resilience, a Java-viewer for j2k-images, ..." msgstr "" =20 -#: gnu/packages/image.scm:376 +#: gnu/packages/image.scm:414 msgid "Tools and library for working with GIF images" msgstr "" =20 -#: gnu/packages/image.scm:378 +#: gnu/packages/image.scm:416 msgid "" "GIFLIB is a library for reading and writing GIF images. It is API and\= n" -"ABI compatible with libungif which was in wide use while the LZW compre= ssion\n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" "algorithm was patented. Tools are also included to convert, manipulate= ,\n" "compose, and analyze GIF images." msgstr "" =20 -#: gnu/packages/image.scm:399 +#: gnu/packages/image.scm:437 msgid "GIF decompression library" msgstr "" =20 -#: gnu/packages/image.scm:401 +#: gnu/packages/image.scm:439 msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." msgstr "" =20 -#: gnu/packages/image.scm:430 +#: gnu/packages/image.scm:468 msgid "Loading, saving, rendering and manipulating image files" msgstr "" =20 -#: gnu/packages/image.scm:432 +#: gnu/packages/image.scm:470 msgid "" "Imlib2 is a library that does image file loading and saving as well as\= n" "rendering, manipulation, arbitrary polygon support, etc.\n" @@ -3520,32 +4315,32 @@ msgid "" "more modular, simple, and flexible." msgstr "" =20 -#: gnu/packages/image.scm:460 +#: gnu/packages/image.scm:498 msgid "Wrapper library for imlib2" msgstr "" =20 -#: gnu/packages/image.scm:462 +#: gnu/packages/image.scm:500 msgid "" "Giblib is a simple library which wraps imlib2's context API, avoiding\n= " "all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" "supplies a generic doubly-linked list and some string functions." msgstr "" =20 -#: gnu/packages/image.scm:502 +#: gnu/packages/image.scm:540 msgid "Library for handling popular graphics image formats" msgstr "" =20 -#: gnu/packages/image.scm:504 +#: gnu/packages/image.scm:542 msgid "" "FreeImage is a library for developers who would like to support popular= \n" "graphics image formats like PNG, BMP, JPEG, TIFF and others." msgstr "" =20 -#: gnu/packages/image.scm:554 +#: gnu/packages/image.scm:592 msgid "Computer vision library" msgstr "" =20 -#: gnu/packages/image.scm:556 +#: gnu/packages/image.scm:594 msgid "" "VIGRA stands for Vision with Generic Algorithms. It is an image\n" "processing and analysis library that puts its main emphasis on customiz= able\n" @@ -3553,38 +4348,65 @@ msgid "" "multi-dimensional image processing." msgstr "" =20 -#: gnu/packages/image.scm:587 +#: gnu/packages/image.scm:625 msgid "Lossless and lossy image compression" msgstr "" =20 -#: gnu/packages/image.scm:589 +#: gnu/packages/image.scm:627 msgid "" "WebP is a new image format that provides lossless and lossy compression= \n" "for images. WebP lossless images are 26% smaller in size compared to\n= " -"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages at\n" +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" "equivalent SSIM index. WebP supports lossless transparency (also known= as\n" -"alpha channel) with just 22% additional bytes. Transparency is also su= pported\n" -"with lossy compression and typically provides 3x smaller file sizes com= pared\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" "to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" "channels." msgstr "" =20 -#: gnu/packages/image.scm:617 -msgid "Library for handling MNG files" +#: gnu/packages/image.scm:655 +msgid "Library for handling MNG files" +msgstr "" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +msgid "Library for manipulating many image formats" +msgstr "" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" msgstr "" =20 -#: gnu/packages/image.scm:619 -msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." msgstr "" =20 -#: gnu/packages/inkscape.scm:84 +#: gnu/packages/inkscape.scm:88 msgid "Vector graphics editor" msgstr "Edytor grafiki wektorowej" =20 -#: gnu/packages/inkscape.scm:85 +#: gnu/packages/inkscape.scm:89 msgid "" "Inkscape is a vector graphics editor. What sets Inkscape\n" -"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C st= andard,\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" "as the native format." msgstr "" =20 @@ -3616,8 +4438,10 @@ msgstr "" msgid "" "GNU less is a pager, a program that allows you to view large amounts\n" "of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" -"backwards and forwards movement through the document. It also does not= have\n" -"to read the entire input file before starting, so it starts faster than= most\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" "text editors." msgstr "" =20 @@ -3629,11 +4453,11 @@ msgstr "" msgid "Clone of the Motif toolkit for the X window system." msgstr "" =20 -#: gnu/packages/libreoffice.scm:85 +#: gnu/packages/libreoffice.scm:86 msgid "General purpose formula parser and interpreter" msgstr "" =20 -#: gnu/packages/libreoffice.scm:86 +#: gnu/packages/libreoffice.scm:87 msgid "" "Ixion is a library for calculating the results of formula\n" "expressions stored in multiple named targets, or \"cells\". The cells = can\n" @@ -3641,47 +4465,49 @@ msgid "" "their dependencies automatically upon calculation." msgstr "" =20 -#: gnu/packages/libreoffice.scm:111 +#: gnu/packages/libreoffice.scm:112 msgid "File import filter library for spreadsheet documents" msgstr "" =20 -#: gnu/packages/libreoffice.scm:112 +#: gnu/packages/libreoffice.scm:113 msgid "" "Orcus is a library that provides a collection of standalone\n" "file processing filters. It is currently focused on providing filters = for\n" "spreadsheet documents. The library includes import filters for\n" -"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document Sprea= dsheet,\n" -"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" "CSV, CSS and XML." msgstr "" =20 -#: gnu/packages/libreoffice.scm:143 +#: gnu/packages/libreoffice.scm:147 msgid "Document importer for office suites" msgstr "" =20 -#: gnu/packages/libreoffice.scm:144 +#: gnu/packages/libreoffice.scm:148 msgid "" "Librevenge is a base library for writing document import\n" "filters. It has interfaces for text documents, vector graphics,\n" "spreadsheets and presentations." msgstr "" =20 -#: gnu/packages/libreoffice.scm:169 +#: gnu/packages/libreoffice.scm:173 msgid "Library for importing WordPerfect documents" msgstr "" =20 -#: gnu/packages/libreoffice.scm:170 +#: gnu/packages/libreoffice.scm:174 msgid "" "Libwpd is a C++ library designed to help process\n" "WordPerfect documents. It is most commonly used to import such documen= ts\n" "into other word processors." msgstr "" =20 -#: gnu/packages/libreoffice.scm:202 +#: gnu/packages/libreoffice.scm:206 msgid "Library for import of reflowable e-book formats" msgstr "" =20 -#: gnu/packages/libreoffice.scm:203 +#: gnu/packages/libreoffice.scm:207 msgid "" "Libe-book is a library and a set of tools for reading and\n" "converting various reflowable e-book formats. Currently supported are:= \n" @@ -3691,113 +4517,114 @@ msgid "" "ZVR (simple compressed text format)." msgstr "" =20 -#: gnu/packages/libreoffice.scm:232 +#: gnu/packages/libreoffice.scm:236 msgid "Library and tools for the WordPerfect Graphics format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:233 +#: gnu/packages/libreoffice.scm:237 msgid "" "The libwpg project provides a library and tools for\n" "working with graphics in the WPG (WordPerfect Graphics) format." msgstr "" =20 -#: gnu/packages/libreoffice.scm:273 +#: gnu/packages/libreoffice.scm:278 msgid "CMIS client library" msgstr "" =20 -#: gnu/packages/libreoffice.scm:274 +#: gnu/packages/libreoffice.scm:279 msgid "" "LibCMIS is a C++ client library for the CMIS interface. It\n" -"allows C++ applications to connect to any ECM behaving as a CMIS server= such\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" "as Alfresco or Nuxeo." msgstr "" =20 -#: gnu/packages/libreoffice.scm:305 +#: gnu/packages/libreoffice.scm:310 msgid "Library for parsing the AbiWord format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:306 +#: gnu/packages/libreoffice.scm:311 msgid "" "Libabw is a library that parses the file format of\n" "AbiWord documents." msgstr "" =20 -#: gnu/packages/libreoffice.scm:336 +#: gnu/packages/libreoffice.scm:341 msgid "Library for parsing the CorelDRAW format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:337 +#: gnu/packages/libreoffice.scm:342 msgid "" "Libcdr is a library that parses the file format of\n" "CorelDRAW documents of all versions." msgstr "" =20 -#: gnu/packages/libreoffice.scm:366 +#: gnu/packages/libreoffice.scm:371 msgid "Library for parsing the Apple Keynote format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:367 +#: gnu/packages/libreoffice.scm:372 msgid "" "Libetonyek is a library that parses the file format of\n" "Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." msgstr "" =20 -#: gnu/packages/libreoffice.scm:384 +#: gnu/packages/libreoffice.scm:389 msgid "Text Categorization library" msgstr "" =20 -#: gnu/packages/libreoffice.scm:385 +#: gnu/packages/libreoffice.scm:390 msgid "" "Libexttextcat is an N-Gram-Based Text Categorization\n" "library primarily intended for language guessing." msgstr "" =20 -#: gnu/packages/libreoffice.scm:411 +#: gnu/packages/libreoffice.scm:416 msgid "Library for parsing the FreeHand format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:412 +#: gnu/packages/libreoffice.scm:417 msgid "" "Libfreehand is a library that parses the file format of\n" "Aldus/Macromedia/Adobe FreeHand documents." msgstr "" =20 -#: gnu/packages/libreoffice.scm:438 +#: gnu/packages/libreoffice.scm:443 msgid "Library for parsing the Microsoft Publisher format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:439 +#: gnu/packages/libreoffice.scm:444 msgid "" "Libmspub is a library that parses the file format of\n" "Microsoft Publisher documents of all versions." msgstr "" =20 -#: gnu/packages/libreoffice.scm:467 +#: gnu/packages/libreoffice.scm:472 msgid "Library for parsing the PageMaker format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:468 +#: gnu/packages/libreoffice.scm:473 msgid "" "Libpagemaker is a library that parses the file format of\n" "Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" "created by PageMaker version 6.x and 7." msgstr "" =20 -#: gnu/packages/libreoffice.scm:503 +#: gnu/packages/libreoffice.scm:508 msgid "Library for parsing the Microsoft Visio format" msgstr "" =20 -#: gnu/packages/libreoffice.scm:504 +#: gnu/packages/libreoffice.scm:509 msgid "" "Libvisio is a library that parses the file format of\n" "Microsoft Visio documents of all versions." msgstr "" =20 -#: gnu/packages/libreoffice.scm:532 +#: gnu/packages/libreoffice.scm:537 msgid "ODF (Open Document Format) library" msgstr "" =20 -#: gnu/packages/libreoffice.scm:533 +#: gnu/packages/libreoffice.scm:538 msgid "" "Libodfgen is a library for generating documents in the\n" "Open Document Format (ODF). It provides generator implementations for = all\n" @@ -3805,60 +4632,60 @@ msgid "" "text documents, vector drawings, presentations and spreadsheets." msgstr "" =20 -#: gnu/packages/libreoffice.scm:563 +#: gnu/packages/libreoffice.scm:568 msgid "Import library for some old Macintosh text documents" msgstr "" =20 -#: gnu/packages/libreoffice.scm:564 +#: gnu/packages/libreoffice.scm:569 msgid "" "Libmwaw contains some import filters for old Macintosh\n" "text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" "spreadsheet documents." msgstr "" =20 -#: gnu/packages/libreoffice.scm:593 +#: gnu/packages/libreoffice.scm:598 msgid "Import library for Microsoft Works text documents" msgstr "" =20 -#: gnu/packages/libreoffice.scm:594 +#: gnu/packages/libreoffice.scm:599 msgid "" "Libwps is a library for importing files in the Microsoft\n" "Works word processor file format." msgstr "" =20 -#: gnu/packages/libreoffice.scm:612 +#: gnu/packages/libreoffice.scm:617 msgid "" "Hunspell is a spell checker and morphological analyzer\n" "library and program designed for languages with rich morphology and com= plex\n" "word compounding or character encoding." msgstr "" =20 -#: gnu/packages/libreoffice.scm:633 +#: gnu/packages/libreoffice.scm:638 msgid "Hyphenation library" msgstr "Biblioteka dzielenia wyraz=C3=B3w" =20 -#: gnu/packages/libreoffice.scm:634 +#: gnu/packages/libreoffice.scm:639 msgid "" "Hyphen is a hyphenation library using TeX hyphenation\n" "patterns, which are pre-processed by a perl script." msgstr "" =20 -#: gnu/packages/libreoffice.scm:657 +#: gnu/packages/libreoffice.scm:662 msgid "Thesaurus" msgstr "" =20 -#: gnu/packages/libreoffice.scm:658 +#: gnu/packages/libreoffice.scm:663 msgid "" "MyThes is a simple thesaurus that uses a structured text\n" "data file and an index file with binary search to look up words and phr= ases\n" "and to return information on pronunciations, meanings and synonyms." msgstr "" =20 -#: gnu/packages/libreoffice.scm:822 +#: gnu/packages/libreoffice.scm:829 msgid "Office suite" msgstr "Pakiet biurowy" =20 -#: gnu/packages/libreoffice.scm:823 +#: gnu/packages/libreoffice.scm:830 msgid "" "LibreOffice is a comprehensive office suite. It contains\n" "a number of components: Writer, a word processor; Calc, a spreadsheet\n= " @@ -3867,39 +4694,39 @@ msgid "" "Math for editing mathematics." msgstr "" =20 -#: gnu/packages/linux.scm:149 +#: gnu/packages/linux.scm:155 msgid "GNU Linux-Libre kernel headers" msgstr "" =20 -#: gnu/packages/linux.scm:150 +#: gnu/packages/linux.scm:156 msgid "Headers of the Linux-Libre kernel." msgstr "" =20 -#: gnu/packages/linux.scm:181 +#: gnu/packages/linux.scm:187 msgid "Tools for loading and managing Linux kernel modules" msgstr "" =20 -#: gnu/packages/linux.scm:183 +#: gnu/packages/linux.scm:189 msgid "" "Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" "`insmod', `lsmod', and more." msgstr "" =20 -#: gnu/packages/linux.scm:311 +#: gnu/packages/linux.scm:322 msgid "100% free redistribution of a cleaned Linux kernel" msgstr "" =20 -#: gnu/packages/linux.scm:313 +#: gnu/packages/linux.scm:324 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" "It has been modified to remove all non-free binary blobs." msgstr "" =20 -#: gnu/packages/linux.scm:356 +#: gnu/packages/linux.scm:384 msgid "Pluggable authentication modules for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:358 +#: gnu/packages/linux.scm:386 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can= \n" @@ -3907,30 +4734,34 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" =20 -#: gnu/packages/linux.scm:385 +#: gnu/packages/linux.scm:413 msgid "Small utilities that use the proc filesystem" msgstr "" =20 -#: gnu/packages/linux.scm:387 +#: gnu/packages/linux.scm:415 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc filesystem. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" =20 -#: gnu/packages/linux.scm:449 +#: gnu/packages/linux.scm:480 msgid "Collection of utilities for the Linux kernel" msgstr "" =20 -#: gnu/packages/linux.scm:451 -msgid "Util-linux is a random collection of utilities for the Linux kern= el." +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." msgstr "" =20 -#: gnu/packages/linux.scm:518 +#: gnu/packages/linux.scm:522 msgid "Utilities that give information about processes" msgstr "" =20 -#: gnu/packages/linux.scm:520 +#: gnu/packages/linux.scm:524 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system= .\n" @@ -3938,132 +4769,142 @@ msgid "" "slabtop, and skill." msgstr "" =20 -#: gnu/packages/linux.scm:545 +#: gnu/packages/linux.scm:549 msgid "Tools for working with USB devices, such as lsusb" msgstr "" =20 -#: gnu/packages/linux.scm:547 +#: gnu/packages/linux.scm:551 msgid "Tools for working with USB devices, such as lsusb." msgstr "" =20 -#: gnu/packages/linux.scm:621 +#: gnu/packages/linux.scm:625 msgid "Creating and checking ext2/ext3/ext4 file systems" msgstr "" =20 -#: gnu/packages/linux.scm:623 -msgid "This package provides tools for manipulating ext2/ext3/ext4 file = systems." +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." msgstr "" =20 -#: gnu/packages/linux.scm:665 +#: gnu/packages/linux.scm:669 msgid "Statically-linked fsck.* commands from e2fsprogs" msgstr "" =20 -#: gnu/packages/linux.scm:667 +#: gnu/packages/linux.scm:671 msgid "" "This package provides statically-linked command of fsck.ext[234] taken\= n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" =20 -#: gnu/packages/linux.scm:686 +#: gnu/packages/linux.scm:690 msgid "Recover deleted files from ext2/3/4 partitions" msgstr "" =20 -#: gnu/packages/linux.scm:688 +#: gnu/packages/linux.scm:692 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" =20 -#: gnu/packages/linux.scm:720 +#: gnu/packages/linux.scm:724 msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" msgstr "" =20 -#: gnu/packages/linux.scm:722 +#: gnu/packages/linux.scm:726 msgid "" "The zerofree command scans the free blocks in an ext2 file system and\n= " "fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" "images more compressible." msgstr "" =20 -#: gnu/packages/linux.scm:741 +#: gnu/packages/linux.scm:745 msgid "System call tracer for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:743 +#: gnu/packages/linux.scm:747 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out = a\n" "trace of all the system calls made by a another process/program." msgstr "" =20 -#: gnu/packages/linux.scm:764 +#: gnu/packages/linux.scm:768 msgid "Library call tracer for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:766 +#: gnu/packages/linux.scm:770 msgid "" "ltrace intercepts and records dynamic library calls which are called by= \n" "an executed process and the signals received by that process. It can a= lso\n" "intercept and print the system calls executed by the program." msgstr "" =20 -#: gnu/packages/linux.scm:786 +#: gnu/packages/linux.scm:790 msgid "The Advanced Linux Sound Architecture libraries" msgstr "" =20 -#: gnu/packages/linux.scm:788 gnu/packages/linux.scm:830 +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" =20 -#: gnu/packages/linux.scm:828 +#: gnu/packages/linux.scm:832 msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" msgstr "" =20 -#: gnu/packages/linux.scm:855 +#: gnu/packages/linux.scm:859 msgid "Program to configure the Linux IP packet filtering rules" msgstr "" =20 -#: gnu/packages/linux.scm:857 +#: gnu/packages/linux.scm:861 msgid "" "iptables is the userspace command line program used to configure the\n" -"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted to= wards\n" -"system administrators. Since Network Address Translation is also confi= gured\n" -"from the packet filter ruleset, iptables is used for this, too. The ip= tables\n" -"package also includes ip6tables. ip6tables is used for configuring the= IPv6\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" "packet filter." msgstr "" =20 -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:908 msgid "Utilities for controlling TCP/IP networking and traffic in Linux" msgstr "" =20 -#: gnu/packages/linux.scm:907 +#: gnu/packages/linux.scm:910 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP\n" "networking and traffic with the Linux kernel.\n" "\n" "Most network configuration manuals still refer to ifconfig and route as= the\n" "primary network configuration tools, but ifconfig is known to behave\n" -"inadequately in modern network environments. They should be deprecated= , but\n" -"most distros still include them. Most network configuration systems ma= ke use\n" -"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct aims\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" "to support most modern network technologies, as it doesn't use ifconfig= and\n" -"allows a system administrator to make use of all iproute2 features, inc= luding\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" "traffic control.\n" "\n" "iproute2 is usually shipped in a package called iproute or iproute2 and= \n" "consists of several tools, of which the most important are ip and tc. = ip\n" -"controls IPv4 and IPv6 configuration and tc stands for traffic control.= Both\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" "tools print detailed usage messages and are accompanied by a set of\n" "manpages." msgstr "" =20 -#: gnu/packages/linux.scm:1015 +#: gnu/packages/linux.scm:1022 msgid "Tools for controlling the network subsystem in Linux" msgstr "" =20 -#: gnu/packages/linux.scm:1017 +#: gnu/packages/linux.scm:1024 msgid "" "This package includes the important tools for controlling the network\n= " "subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" @@ -4072,132 +4913,141 @@ msgid "" "advanced aspects of IP configuration (iptunnel, ipmaddr)." msgstr "" =20 -#: gnu/packages/linux.scm:1054 +#: gnu/packages/linux.scm:1061 msgid "Library for working with POSIX capabilities" msgstr "" =20 -#: gnu/packages/linux.scm:1056 +#: gnu/packages/linux.scm:1063 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" =20 -#: gnu/packages/linux.scm:1099 +#: gnu/packages/linux.scm:1106 msgid "Manipulate Ethernet bridges" msgstr "" =20 -#: gnu/packages/linux.scm:1101 +#: gnu/packages/linux.scm:1108 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" "to connect two Ethernet segments together in a protocol independent way= .\n" -"Packets are forwarded based on Ethernet address, rather than IP address= (like\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" "a router). Since forwarding is done at Layer 2, all protocols can go\n= " "transparently through a bridge." msgstr "" =20 -#: gnu/packages/linux.scm:1123 +#: gnu/packages/linux.scm:1130 msgid "NetLink protocol library suite" msgstr "" =20 -#: gnu/packages/linux.scm:1125 +#: gnu/packages/linux.scm:1132 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\= n" -"protocol based Linux kernel interfaces. Netlink is an IPC mechanism pr= imarily\n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" "between the kernel and user space processes. It was designed to be a m= ore\n" "flexible successor to ioctl to provide mainly networking related kernel= \n" "configuration and monitoring interfaces." msgstr "" =20 -#: gnu/packages/linux.scm:1155 +#: gnu/packages/linux.scm:1162 msgid "Tool for configuring wireless devices" msgstr "" =20 -#: gnu/packages/linux.scm:1157 +#: gnu/packages/linux.scm:1164 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces 'iwconfig', which is deprecated." msgstr "" =20 -#: gnu/packages/linux.scm:1183 +#: gnu/packages/linux.scm:1190 msgid "Analyze power consumption on Intel-based laptops" msgstr "" =20 -#: gnu/packages/linux.scm:1185 +#: gnu/packages/linux.scm:1192 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" -"power management. In addition to being a diagnostic tool, PowerTOP als= o has\n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" "an interactive mode where the user can experiment various power managem= ent\n" "settings for cases where the operating system has not enabled these\n" "settings." msgstr "" =20 -#: gnu/packages/linux.scm:1207 +#: gnu/packages/linux.scm:1214 msgid "Audio mixer for X and the console" msgstr "" =20 -#: gnu/packages/linux.scm:1209 +#: gnu/packages/linux.scm:1216 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" =20 -#: gnu/packages/linux.scm:1233 +#: gnu/packages/linux.scm:1240 msgid "Displays the IO activity of running processes" msgstr "" =20 -#: gnu/packages/linux.scm:1235 +#: gnu/packages/linux.scm:1242 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" =20 -#: gnu/packages/linux.scm:1287 +#: gnu/packages/linux.scm:1297 msgid "Support file systems implemented in user space" msgstr "" =20 -#: gnu/packages/linux.scm:1289 +#: gnu/packages/linux.scm:1299 msgid "" "As a consequence of its monolithic design, file system code for Linux\n= " -"normally goes into the kernel itself---which is not only a robustness i= ssue,\n" -"but also an impediment to system extensibility. FUSE, for \"file syste= ms in\n" -"user space\", is a kernel module and user-space library that tries to a= ddress\n" -"part of this problem by allowing users to run file system implementatio= ns as\n" +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" "user-space processes." msgstr "" =20 -#: gnu/packages/linux.scm:1314 +#: gnu/packages/linux.scm:1324 msgid "User-space union file system" msgstr "" =20 -#: gnu/packages/linux.scm:1316 +#: gnu/packages/linux.scm:1326 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you= to\n" -"\"aggregate\" the contents of several directories into a single mount p= oint.\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" =20 -#: gnu/packages/linux.scm:1341 +#: gnu/packages/linux.scm:1351 msgid "User-space union file system (statically linked)" msgstr "" =20 -#: gnu/packages/linux.scm:1383 +#: gnu/packages/linux.scm:1396 msgid "Mount remote file systems over SSH" msgstr "" =20 -#: gnu/packages/linux.scm:1385 +#: gnu/packages/linux.scm:1398 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n= " "Since most SSH servers already support this protocol it is very easy to= set\n" -"up: on the server side there's nothing to do; on the client side mounti= ng the\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" "file system is as easy as logging into the server with an SSH client." msgstr "" =20 -#: gnu/packages/linux.scm:1433 +#: gnu/packages/linux.scm:1427 msgid "Tools for non-uniform memory access (NUMA) machines" msgstr "" =20 -#: gnu/packages/linux.scm:1435 +#: gnu/packages/linux.scm:1429 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" "memory is not all in one place. The numactl program allows you to run = your\n" @@ -4210,32 +5060,32 @@ msgid "" "system." msgstr "" =20 -#: gnu/packages/linux.scm:1498 +#: gnu/packages/linux.scm:1492 msgid "Linux keyboard utilities and keyboard maps" msgstr "" =20 -#: gnu/packages/linux.scm:1500 +#: gnu/packages/linux.scm:1494 msgid "" "This package contains keytable files and keyboard utilities compatible\= n" "for systems using the Linux kernel. This includes commands such as\n" "'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." msgstr "" =20 -#: gnu/packages/linux.scm:1519 +#: gnu/packages/linux.scm:1513 msgid "Monitor file accesses" msgstr "" =20 -#: gnu/packages/linux.scm:1521 +#: gnu/packages/linux.scm:1515 msgid "" "The inotify-tools packages provides a C library and command-line tools\= n" "to use Linux' inotify mechanism, which allows file accesses to be monit= ored." msgstr "" =20 -#: gnu/packages/linux.scm:1559 +#: gnu/packages/linux.scm:1553 msgid "Kernel module tools" msgstr "" =20 -#: gnu/packages/linux.scm:1560 +#: gnu/packages/linux.scm:1554 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -4246,149 +5096,157 @@ msgid "" "from the module-init-tools project." msgstr "" =20 -#: gnu/packages/linux.scm:1631 +#: gnu/packages/linux.scm:1586 msgid "Userspace device management" msgstr "" =20 -#: gnu/packages/linux.scm:1632 +#: gnu/packages/linux.scm:1587 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" "time." msgstr "" =20 -#: gnu/packages/linux.scm:1692 +#: gnu/packages/linux.scm:1659 msgid "Logical volume management for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:1694 +#: gnu/packages/linux.scm:1661 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.= \n" -"This package includes the user-space libraries and tools, including the= device\n" +"This package includes the user-space libraries and tools, including the= " +"device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" =20 -#: gnu/packages/linux.scm:1730 +#: gnu/packages/linux.scm:1697 msgid "Tools for manipulating Linux Wireless Extensions" msgstr "" =20 -#: gnu/packages/linux.scm:1731 +#: gnu/packages/linux.scm:1698 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " "Extension was an interface allowing you to set Wireless LAN specific\n" -"parameters and get the specific stats. It is deprecated in favor the n= l80211\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" "interface." msgstr "" =20 -#: gnu/packages/linux.scm:1803 +#: gnu/packages/linux.scm:1770 msgid "Central regulatory domain agent (CRDA) for WiFi" msgstr "" =20 -#: gnu/packages/linux.scm:1805 +#: gnu/packages/linux.scm:1772 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" =20 -#: gnu/packages/linux.scm:1841 +#: gnu/packages/linux.scm:1818 msgid "Wireless regulatory database" msgstr "" =20 -#: gnu/packages/linux.scm:1843 +#: gnu/packages/linux.scm:1820 msgid "" "This package contains the wireless regulatory database Central\n" -"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion on\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" "country-specific regulations for the wireless spectrum." msgstr "" =20 -#: gnu/packages/linux.scm:1914 +#: gnu/packages/linux.scm:1891 msgid "Utilities to read temperature/voltage/fan sensors" msgstr "" =20 -#: gnu/packages/linux.scm:1916 +#: gnu/packages/linux.scm:1893 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" "you to access information from temperature, voltage, and fan speed sens= ors.\n" "It works with most newer systems." msgstr "" =20 -#: gnu/packages/linux.scm:1943 +#: gnu/packages/linux.scm:1920 msgid "I2C tools for Linux" msgstr "" =20 -#: gnu/packages/linux.scm:1945 +#: gnu/packages/linux.scm:1922 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" -"Linux: a bus probing tool, a chip dumper, register-level SMBus access h= elpers,\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" "EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" "SMBus access." msgstr "" =20 -#: gnu/packages/linux.scm:1981 +#: gnu/packages/linux.scm:1958 msgid "Hardware health information viewer" msgstr "" =20 -#: gnu/packages/linux.scm:1983 +#: gnu/packages/linux.scm:1960 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" -"health such as temperature, voltage and fan speed and displays the info= rmation\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" "in a digital read-out." msgstr "" =20 -#: gnu/packages/linux.scm:2031 +#: gnu/packages/linux.scm:2008 msgid "Linux profiling with performance counters" msgstr "" =20 -#: gnu/packages/linux.scm:2033 +#: gnu/packages/linux.scm:2010 msgid "" "perf is a tool suite for profiling using hardware performance counters,= \n" "with support in the Linux kernel. perf can instrument CPU performance\= n" -"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is c= apable\n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" "of lightweight profiling. This package contains the user-land tools an= d in\n" "particular the 'perf' command." msgstr "" =20 -#: gnu/packages/linux.scm:2056 +#: gnu/packages/linux.scm:2033 msgid "Simple tool for creating Linux namespace containers" msgstr "" =20 -#: gnu/packages/linux.scm:2057 +#: gnu/packages/linux.scm:2034 msgid "" "pflask is a simple tool for creating Linux namespace\n" -"containers. It can be used for running a command or even booting an OS= inside\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" "an isolated container, created with the help of Linux namespaces. It i= s\n" -"similar in functionality to chroot, although pflask provides better iso= lation\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" "thanks to the use of namespaces." msgstr "" =20 -#: gnu/packages/linux.scm:2084 +#: gnu/packages/linux.scm:2061 msgid "Tune hard disk parameters for high performance" msgstr "" =20 -#: gnu/packages/linux.scm:2086 +#: gnu/packages/linux.scm:2063 msgid "" "Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" "is for enabling irq-unmasking and IDE multiple-mode." msgstr "" =20 -#: gnu/packages/linux.scm:2109 +#: gnu/packages/linux.scm:2086 msgid "Tool for enabling and disabling wireless devices" msgstr "" =20 -#: gnu/packages/linux.scm:2111 +#: gnu/packages/linux.scm:2088 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typica= lly\n" "WLAN, Bluetooth and mobile broadband." msgstr "" =20 -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2107 msgid "Daemon for delivering ACPI events to user-space programs" msgstr "" =20 -#: gnu/packages/linux.scm:2132 +#: gnu/packages/linux.scm:2109 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" @@ -4397,107 +5255,135 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the even= t." msgstr "" =20 -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2131 msgid "System utilities based on Linux sysfs" msgstr "" =20 -#: gnu/packages/linux.scm:2156 +#: gnu/packages/linux.scm:2133 msgid "" "These are a set of utilities built upon sysfs, a virtual filesystem in\= n" -"Linux kernel versions 2.5+ that exposes a system's device tree. The pa= ckage\n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" "also contains the libsysfs library." msgstr "" =20 -#: gnu/packages/linux.scm:2185 +#: gnu/packages/linux.scm:2162 msgid "System utilities based on Linux sysfs (version 1.x)" msgstr "" =20 -#: gnu/packages/linux.scm:2208 +#: gnu/packages/linux.scm:2185 msgid "Utilities to get and set CPU frequency on Linux" msgstr "" =20 -#: gnu/packages/linux.scm:2210 +#: gnu/packages/linux.scm:2187 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\= n" "capabilities of the Linux kernel." msgstr "" =20 -#: gnu/packages/linux.scm:2229 +#: gnu/packages/linux.scm:2206 msgid "Interface library for the Linux IEEE1394 drivers" msgstr "" =20 -#: gnu/packages/linux.scm:2231 +#: gnu/packages/linux.scm:2208 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" -"the Linux IEEE-1394 subsystem, which provides direct access to the conn= ected\n" -"1394 buses to user space. Through libraw1394/raw1394, applications can= directly\n" -"send to and receive from other nodes without requiring a kernel driver = for the\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" "protocol in question." msgstr "" =20 -#: gnu/packages/linux.scm:2255 +#: gnu/packages/linux.scm:2232 msgid "AV/C protocol library for IEEE 1394" msgstr "" =20 -#: gnu/packages/linux.scm:2257 +#: gnu/packages/linux.scm:2234 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" =20 -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2256 msgid "Isochronous streaming media library for IEEE 1394" msgstr "" =20 -#: gnu/packages/linux.scm:2281 +#: gnu/packages/linux.scm:2258 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n= " "MPEG-2 and audio over Linux IEEE 1394." msgstr "" =20 -#: gnu/packages/linux.scm:2321 +#: gnu/packages/linux.scm:2298 msgid "Tool for managing Linux Software RAID arrays" msgstr "" =20 -#: gnu/packages/linux.scm:2323 +#: gnu/packages/linux.scm:2300 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" -"assemble, report on, and monitor arrays. It can also move spares betwe= en raid\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" "arrays when needed." msgstr "" =20 -#: gnu/packages/linux.scm:2350 +#: gnu/packages/linux.scm:2327 msgid "Linux-native asynchronous I/O access library" msgstr "" =20 -#: gnu/packages/linux.scm:2352 +#: gnu/packages/linux.scm:2329 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other adva= nced\n" "applications." msgstr "" =20 -#: gnu/packages/linux.scm:2388 +#: gnu/packages/linux.scm:2365 msgid "Linux Bluetooth protocol stack" msgstr "" =20 -#: gnu/packages/linux.scm:2390 +#: gnu/packages/linux.scm:2367 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It= \n" "is flexible, efficient and uses a modular implementation." msgstr "" =20 -#: gnu/packages/linux.scm:2446 +#: gnu/packages/linux.scm:2423 msgid "Mount exFAT file systems" msgstr "" =20 -#: gnu/packages/linux.scm:2448 +#: gnu/packages/linux.scm:2425 msgid "" "This package provides a FUSE-based file system that provides read and\n= " "write access to exFAT devices." msgstr "" =20 +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + #: gnu/packages/lout.scm:109 msgid "Document layout system" msgstr "" @@ -4505,14 +5391,17 @@ msgstr "" #: gnu/packages/lout.scm:111 msgid "" "The Lout document formatting system reads a high-level description of\n= " -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" "output file.\n" "\n" "Lout offers an unprecedented range of advanced features, including opti= mal\n" "paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" "scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" "hyphenation (most European languages are supported), formatting of comp= uter\n" "programs, and much more, all ready to use. Furthermore, Lout is easily= \n" "extended with definitions which are very much easier to write than trof= f of\n" @@ -4521,122 +5410,138 @@ msgid "" "beginning." msgstr "" =20 -#: gnu/packages/messaging.scm:76 +#: gnu/packages/messaging.scm:77 msgid "Off-the-Record (OTR) Messaging Library and Toolkit" msgstr "" =20 -#: gnu/packages/messaging.scm:78 +#: gnu/packages/messaging.scm:79 msgid "" "OTR allows you to have private conversations over instant messaging by\= n" "providing: (1) Encryption: No one else can read your instant messages. = (2)\n" -"Authentication: You are assured the correspondent is who you think it i= s. (3)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" "Deniability: The messages you send do not have digital signatures that = are\n" -"checkable by a third party. Anyone can forge messages after a conversa= tion to\n" -"make them look like they came from you. However, during a conversation= , your\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" "correspondent is assured the messages he sees are authentic and\n" -"unmodified. (4) Perfect forward secrecy: If you lose control of your p= rivate\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" "keys, no previous conversation is compromised." msgstr "" =20 -#: gnu/packages/messaging.scm:134 +#: gnu/packages/messaging.scm:135 msgid "IRC to instant messaging gateway" msgstr "" =20 -#: gnu/packages/messaging.scm:135 +#: gnu/packages/messaging.scm:136 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to ru= n an\n" "additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" -"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the Tw= itter\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" "microblogging network (plus all other Twitter API compatible services l= ike\n" "identi.ca and status.net)." msgstr "" =20 -#: gnu/packages/messaging.scm:168 +#: gnu/packages/messaging.scm:169 msgid "Graphical IRC Client" msgstr "Graficzny klient IRC" =20 -#: gnu/packages/messaging.scm:170 +#: gnu/packages/messaging.scm:171 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" -"shows the list of currently connected networks and their channels, the = current\n" -"conversation and the list of users. It uses colors to differentiate be= tween\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" "users and to highlight messages. It checks spelling using available\n" "dictionaries. HexChat can be extended with multiple addons." msgstr "" =20 -#: gnu/packages/messaging.scm:236 +#: gnu/packages/messaging.scm:237 msgid "Lightweight Internet Relay Chat server for small networks" msgstr "" =20 -#: gnu/packages/messaging.scm:238 +#: gnu/packages/messaging.scm:239 msgid "" "ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" "networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" "supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." msgstr "" =20 -#: gnu/packages/messaging.scm:309 +#: gnu/packages/messaging.scm:310 msgid "Graphical multi-protocol instant messaging client" msgstr "" =20 -#: gnu/packages/messaging.scm:311 +#: gnu/packages/messaging.scm:312 msgid "" "Pidgin is a modular instant messaging client that supports many popular= \n" "chat protocols." msgstr "" =20 -#: gnu/packages/messaging.scm:349 +#: gnu/packages/messaging.scm:350 msgid "Off-the-Record Messaging plugin for Pidgin" msgstr "" =20 -#: gnu/packages/messaging.scm:351 +#: gnu/packages/messaging.scm:352 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" -"messaging client. OTR (Off-the-Record) Messaging allows you to have pr= ivate\n" -"conversations over instant messaging by providing: (1) Encryption: No o= ne else\n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" "can read your instant messages. (2) Authentication: You are assured th= e\n" -"correspondent is who you think it is. (3) Deniability: The messages yo= u send\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" "do not have digital signatures that are checkable by a third party. An= yone\n" -"can forge messages after a conversation to make them look like they cam= e from\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" "you. However, during a conversation, your correspondent is assured the= \n" -"messages he sees are authentic and unmodified. (4) Perfect forward sec= recy:\n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" "If you lose control of your private keys, no previous conversation is\n= " "compromised." msgstr "" =20 -#: gnu/packages/messaging.scm:391 +#: gnu/packages/messaging.scm:392 msgid "IRC network bouncer" msgstr "" =20 -#: gnu/packages/messaging.scm:392 +#: gnu/packages/messaging.scm:393 msgid "" "ZNC is an IRC network bouncer or BNC. It can detach the\n" -"client from the actual IRC server, and also from selected channels. Mu= ltiple\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" "clients from different locations can connect to a single ZNC account\n" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" =20 -#: gnu/packages/messaging.scm:414 +#: gnu/packages/messaging.scm:415 msgid "Non-blocking Jabber/XMPP module" msgstr "" =20 -#: gnu/packages/messaging.scm:416 +#: gnu/packages/messaging.scm:417 msgid "" "The goal of this python library is to provide a way for Python\n" -"applications to use Jabber/XMPP networks in a non-blocking way. This l= ibrary\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" "was initially a fork of xmpppy, but is using non-blocking sockets." msgstr "" =20 -#: gnu/packages/messaging.scm:466 +#: gnu/packages/messaging.scm:474 msgid "Jabber (XMPP) client" msgstr "" =20 -#: gnu/packages/messaging.scm:467 +#: gnu/packages/messaging.scm:475 msgid "" "Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" -"Among its features are: a tabbed chat window and single window modes; s= upport\n" -"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up chat\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" "transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" "end-to-end encryption support; XML console." msgstr "" @@ -4658,7 +5563,8 @@ msgstr "" #: gnu/packages/mpd.scm:125 msgid "" "Music Player Daemon (MPD) is a flexible, powerful,\n" -"server-side application for playing music. Through plugins and librari= es it\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" "can play a variety of sound files while being controlled by its network= \n" "protocol." msgstr "" @@ -4717,11 +5623,11 @@ msgid "" "about 100 graphics formats." msgstr "" =20 -#: gnu/packages/nettle.scm:50 +#: gnu/packages/nettle.scm:51 msgid "C library for low-level cryptographic functionality" msgstr "" =20 -#: gnu/packages/nettle.scm:52 +#: gnu/packages/nettle.scm:53 msgid "" "GNU Nettle is a low-level cryptographic library. It is designed to\n" "fit in easily in almost any context. It can be easily included in\n" @@ -4736,7 +5642,8 @@ msgstr "" #: gnu/packages/networking.scm:54 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" -"specification, which provides IPv6 Internet connectivity to IPv6 enable= d hosts\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device.= " msgstr "" =20 @@ -4750,10 +5657,13 @@ msgid "" "data channels---files, pipes, devices, sockets, etc. It can create\n" "\"listening\" sockets, named pipes, and pseudo terminals.\n" "\n" -"socat can be used, for instance, as TCP port forwarder, as a shell inte= rface\n" -"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= serial\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" "line, to logically connect serial lines on different computers, or to\n= " -"establish a relatively secure environment (su and chroot) for running c= lient\n" +"establish a relatively secure environment (su and chroot) for running " +"client\n" "or server shell scripts with network connections." msgstr "" =20 @@ -4764,10 +5674,12 @@ msgstr "" #: gnu/packages/networking.scm:104 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" -"standard socket interfaces with features traditionally provided by spec= ialized\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" "messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" "asynchronous message queues, multiple messaging patterns, message\n" -"filtering (subscriptions), seamless access to multiple transport protoc= ols and\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" "more." msgstr "" =20 @@ -4805,105 +5717,107 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" =20 -#: gnu/packages/pdf.scm:102 +#: gnu/packages/pdf.scm:101 msgid "PDF rendering library" msgstr "Biblioteka wy=C5=9Bwietlania PDF" =20 -#: gnu/packages/pdf.scm:104 +#: gnu/packages/pdf.scm:103 msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." msgstr "" =20 -#: gnu/packages/pdf.scm:113 +#: gnu/packages/pdf.scm:112 msgid "Qt4 frontend for the Poppler PDF rendering library" msgstr "" =20 -#: gnu/packages/pdf.scm:146 +#: gnu/packages/pdf.scm:145 msgid "Python bindings for Poppler-Qt4" msgstr "" =20 -#: gnu/packages/pdf.scm:148 +#: gnu/packages/pdf.scm:147 msgid "" "This package provides Python bindings for the Qt4 interface of the\n" "Poppler PDF rendering library." msgstr "" =20 -#: gnu/packages/pdf.scm:195 +#: gnu/packages/pdf.scm:194 msgid "Viewer for PDF files based on the Motif toolkit" msgstr "" =20 -#: gnu/packages/pdf.scm:197 +#: gnu/packages/pdf.scm:196 msgid "Xpdf is a viewer for Portable Document Format (PDF) files." msgstr "" =20 -#: gnu/packages/pdf.scm:227 +#: gnu/packages/pdf.scm:226 msgid "Comic book support for zathura (libarchive backend)" msgstr "" =20 -#: gnu/packages/pdf.scm:228 +#: gnu/packages/pdf.scm:227 msgid "" "The zathura-cb plugin adds comic book support to zathura\n" "using libarchive." msgstr "" =20 -#: gnu/packages/pdf.scm:258 +#: gnu/packages/pdf.scm:257 msgid "PS support for zathura (libspectre backend)" msgstr "" =20 -#: gnu/packages/pdf.scm:259 +#: gnu/packages/pdf.scm:258 msgid "" "The zathura-ps plugin adds PS support to zathura\n" "using libspectre." msgstr "" =20 -#: gnu/packages/pdf.scm:290 +#: gnu/packages/pdf.scm:289 msgid "DjVu support for zathura (DjVuLibre backend)" msgstr "" =20 -#: gnu/packages/pdf.scm:291 +#: gnu/packages/pdf.scm:290 msgid "" "The zathura-djvu plugin adds DjVu support to zathura\n" "using the DjVuLibre library." msgstr "" =20 -#: gnu/packages/pdf.scm:323 +#: gnu/packages/pdf.scm:322 msgid "PDF support for zathura (poppler backend)" msgstr "" =20 -#: gnu/packages/pdf.scm:324 +#: gnu/packages/pdf.scm:323 msgid "" "The zathura-pdf-poppler plugin adds PDF support to zathura\n" "by using the poppler rendering engine." msgstr "" =20 -#: gnu/packages/pdf.scm:362 +#: gnu/packages/pdf.scm:361 msgid "Lightweight keyboard-driven PDF viewer" msgstr "" =20 -#: gnu/packages/pdf.scm:363 +#: gnu/packages/pdf.scm:362 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard= \n" "interaction." msgstr "" =20 -#: gnu/packages/pdf.scm:402 +#: gnu/packages/pdf.scm:401 msgid "Tools to work with the PDF file format" msgstr "" =20 -#: gnu/packages/pdf.scm:404 +#: gnu/packages/pdf.scm:403 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\= n" -"PDF file format. It can parse PDF files and load them into memory, and= makes\n" -"it easy to modify them and write the changes to disk. It is primarily = useful\n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" "for applications that wish to do lower level manipulation of PDF, such = as\n" "extracting content or merging files." msgstr "" =20 -#: gnu/packages/pdf.scm:465 +#: gnu/packages/pdf.scm:464 msgid "Lightweight PDF viewer and toolkit" msgstr "" =20 -#: gnu/packages/pdf.scm:467 +#: gnu/packages/pdf.scm:466 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n= " @@ -4915,11 +5829,11 @@ msgid "" "and examining the file structure (pdfshow)." msgstr "" =20 -#: gnu/packages/pdf.scm:507 +#: gnu/packages/pdf.scm:506 msgid "Command-line tools and library for transforming PDF files" msgstr "" =20 -#: gnu/packages/pdf.scm:509 +#: gnu/packages/pdf.scm:508 msgid "" "QPDF is a command-line program that does structural, content-preserving= \n" "transformations on PDF files. It could have been called something like= \n" @@ -4928,11 +5842,11 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" =20 -#: gnu/packages/pdf.scm:539 +#: gnu/packages/pdf.scm:538 msgid "Notetaking using a stylus" msgstr "" =20 -#: gnu/packages/pdf.scm:541 +#: gnu/packages/pdf.scm:540 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\= n" "using a stylus." @@ -4951,44 +5865,45 @@ msgid "" "feature." msgstr "" =20 -#: gnu/packages/perl.scm:100 +#: gnu/packages/perl.scm:110 msgid "Implementation of the Perl programming language" msgstr "" =20 -#: gnu/packages/perl.scm:102 +#: gnu/packages/perl.scm:112 msgid "" "Perl 5 is a highly capable, feature-rich programming language with over= \n" "24 years of development." msgstr "" =20 -#: gnu/packages/perl.scm:121 +#: gnu/packages/perl.scm:131 msgid "Module for merging hierarchies using the C3 algorithm" msgstr "" =20 -#: gnu/packages/perl.scm:122 +#: gnu/packages/perl.scm:132 msgid "" "This module implements the C3 algorithm, which aims to\n" "provide a sane method resolution order under multiple inheritance." msgstr "" =20 -#: gnu/packages/perl.scm:140 +#: gnu/packages/perl.scm:150 msgid "Compute differences between two files or lists" msgstr "" =20 -#: gnu/packages/perl.scm:141 +#: gnu/packages/perl.scm:151 msgid "" "This is a module for computing the difference between two\n" -"files, two strings, or any other two lists of things. It uses an intel= ligent\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" "algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" "program. It is guaranteed to find the *smallest possible* set of\n" "differences." msgstr "" =20 -#: gnu/packages/perl.scm:162 +#: gnu/packages/perl.scm:173 msgid "Use shorter versions of class names" msgstr "" =20 -#: gnu/packages/perl.scm:163 +#: gnu/packages/perl.scm:174 msgid "" "The alias module loads the class you specify and exports\n" "into your namespace a subroutine that returns the class name. You can\= n" @@ -4996,444 +5911,467 @@ msgid "" "implicitly." msgstr "" =20 -#: gnu/packages/perl.scm:185 +#: gnu/packages/perl.scm:196 msgid "Configuration files and command line parsing" msgstr "" =20 -#: gnu/packages/perl.scm:186 +#: gnu/packages/perl.scm:197 msgid "" "AppConfig is a bundle of Perl5 modules for reading\n" "configuration files and parsing command line arguments." msgstr "" =20 -#: gnu/packages/perl.scm:204 +#: gnu/packages/perl.scm:215 msgid "Perl API to zip files" msgstr "" =20 -#: gnu/packages/perl.scm:205 gnu/packages/zip.scm:168 +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 msgid "" "The Archive::Zip module allows a Perl program to create,\n" "manipulate, read, and write Zip archive files." msgstr "" =20 -#: gnu/packages/perl.scm:224 gnu/packages/perl.scm:3966 +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 msgid "Establish an ISA relationship with base classes at compile time" msgstr "" =20 -#: gnu/packages/perl.scm:225 +#: gnu/packages/perl.scm:236 msgid "" "Allows you to both load one or more modules, while setting\n" -"up inheritance from those modules at the same time. Unless you are usi= ng the\n" -"fields pragma, consider this module discouraged in favor of the lighter= -weight\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" "parent." msgstr "" =20 -#: gnu/packages/perl.scm:250 +#: gnu/packages/perl.scm:261 msgid "Execute code after a scope finished compilation" msgstr "" =20 -#: gnu/packages/perl.scm:251 +#: gnu/packages/perl.scm:262 msgid "" "This module allows you to execute code when perl finished\n" "compiling the surrounding scope." msgstr "" =20 -#: gnu/packages/perl.scm:269 +#: gnu/packages/perl.scm:280 msgid "Benchmarking with statistical confidence" msgstr "" =20 -#: gnu/packages/perl.scm:271 +#: gnu/packages/perl.scm:282 msgid "" "The Benchmark::Timer class allows you to time portions of code\n" "conveniently, as well as benchmark code by allowing timings of repeated= \n" "trials. It is perfect for when you need more precise information about= the\n" -"running time of portions of your code than the Benchmark module will gi= ve you,\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" "but don't want to go all out and profile your code." msgstr "" =20 -#: gnu/packages/perl.scm:296 +#: gnu/packages/perl.scm:307 msgid "Bit vector library" msgstr "" =20 -#: gnu/packages/perl.scm:297 +#: gnu/packages/perl.scm:308 msgid "" "Bit::Vector is an efficient C library which allows you to\n" -"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = boolean\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" "matrices, all of arbitrary sizes. The package also includes an\n" "object-oriented Perl module for accessing the C library from Perl, and\= n" "optionally features overloaded operators for maximum ease of use. The = C\n" "library can nevertheless be used stand-alone, without Perl." msgstr "" =20 -#: gnu/packages/perl.scm:319 +#: gnu/packages/perl.scm:330 msgid "Boolean support for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:320 +#: gnu/packages/perl.scm:331 msgid "" "This module provides basic Boolean support, by defining two\n" "special objects: true and false." msgstr "" =20 -#: gnu/packages/perl.scm:341 +#: gnu/packages/perl.scm:352 msgid "Cache interface for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:342 +#: gnu/packages/perl.scm:353 msgid "" "The Cache modules are designed to assist a developer in\n" -"persisting data for a specified period of time. Often these modules ar= e used\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" "in web applications to store data locally to save repeated and redundan= t\n" -"expensive calls to remote machines or databases. People have also been= known\n" -"to use Cache::Cache for its straightforward interface in sharing data b= etween\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" "runs of an application or invocations of a CGI-style script or simply a= s an\n" "easy to use abstraction of the filesystem or shared memory." msgstr "" =20 -#: gnu/packages/perl.scm:365 +#: gnu/packages/perl.scm:376 msgid "Shared memory interprocess cache via mmap" msgstr "" =20 -#: gnu/packages/perl.scm:366 +#: gnu/packages/perl.scm:377 msgid "" "A shared memory cache through an mmap'ed file. It's core is\n" "written in C for performance. It uses fcntl locking to ensure multiple= \n" -"processes can safely access the cache at the same time. It uses a basi= c LRU\n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" "algorithm to keep the most used entries in the cache." msgstr "" =20 -#: gnu/packages/perl.scm:387 +#: gnu/packages/perl.scm:398 msgid "Capture STDOUT and STDERR from Perl, XS or external programs" msgstr "" =20 -#: gnu/packages/perl.scm:389 +#: gnu/packages/perl.scm:400 msgid "" "Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" "sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" -"code or from an external program. Optionally, output can be teed so th= at it\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" "is captured while being passed through to the original file handles." msgstr "" =20 -#: gnu/packages/perl.scm:409 +#: gnu/packages/perl.scm:420 msgid "Executable comments for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:410 +#: gnu/packages/perl.scm:421 msgid "" "Carp::Assert is intended for a purpose like the ANSI C\n" "library assert.h." msgstr "" =20 -#: gnu/packages/perl.scm:432 +#: gnu/packages/perl.scm:443 msgid "Convenience wrappers around Carp::Assert" msgstr "" =20 -#: gnu/packages/perl.scm:433 +#: gnu/packages/perl.scm:444 msgid "" "Carp::Assert::More is a set of handy assertion functions for\n" "Perl." msgstr "" =20 -#: gnu/packages/perl.scm:453 +#: gnu/packages/perl.scm:464 msgid "Report errors from a \"clan\" of modules" msgstr "" =20 -#: gnu/packages/perl.scm:454 +#: gnu/packages/perl.scm:465 msgid "" "This module allows errors from a clan (or family) of modules\n" "to appear to originate from the caller of the clan. This is necessary = in\n" -"cases where the clan modules are not classes derived from each other, a= nd thus\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" "the Carp.pm module doesn't help." msgstr "" =20 -#: gnu/packages/perl.scm:478 +#: gnu/packages/perl.scm:489 msgid "Automated accessor generation" msgstr "" =20 -#: gnu/packages/perl.scm:479 +#: gnu/packages/perl.scm:490 msgid "" "This module automagically generates accessors/mutators for\n" "your class." msgstr "" =20 -#: gnu/packages/perl.scm:499 +#: gnu/packages/perl.scm:512 msgid "Faster, but less expandable, chained accessors" msgstr "" =20 -#: gnu/packages/perl.scm:500 +#: gnu/packages/perl.scm:513 msgid "" "A chained accessor is one that always returns the object\n" -"when called with parameters (to set), and the value of the field when c= alled\n" -"with no arguments. This module subclasses Class::Accessor in order to = provide\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" "the same mk_accessors interface." msgstr "" =20 -#: gnu/packages/perl.scm:526 +#: gnu/packages/perl.scm:539 msgid "Build groups of accessors" msgstr "" =20 -#: gnu/packages/perl.scm:527 +#: gnu/packages/perl.scm:540 msgid "" "This class lets you build groups of accessors that will call\n" "different getters and setters." msgstr "" =20 -#: gnu/packages/perl.scm:547 +#: gnu/packages/perl.scm:560 msgid "Pragma to use the C3 method resolution order algorithm" msgstr "" =20 -#: gnu/packages/perl.scm:548 +#: gnu/packages/perl.scm:561 msgid "" "This is pragma to change Perl 5's standard method resolution\n" "order from depth-first left-to-right (a.k.a - pre-order) to the more\n" "sophisticated C3 method resolution order." msgstr "" =20 -#: gnu/packages/perl.scm:572 +#: gnu/packages/perl.scm:585 msgid "Drop-in replacement for NEXT" msgstr "" =20 -#: gnu/packages/perl.scm:573 +#: gnu/packages/perl.scm:586 msgid "" "This module is intended as a drop-in replacement for NEXT,\n" "supporting the same interface, but using Class::C3 to do the hard work.= " msgstr "" =20 -#: gnu/packages/perl.scm:597 +#: gnu/packages/perl.scm:610 msgid "Load mix-ins or components to your C3-based class" msgstr "" =20 -#: gnu/packages/perl.scm:598 +#: gnu/packages/perl.scm:611 msgid "" "This module will inject base classes to your module using\n" "the Class::C3 method resolution order." msgstr "" =20 -#: gnu/packages/perl.scm:616 +#: gnu/packages/perl.scm:629 msgid "Inheritable, overridable class data" msgstr "" =20 -#: gnu/packages/perl.scm:617 +#: gnu/packages/perl.scm:630 msgid "" "Class::Data::Inheritable is for creating accessor/mutators\n" -"to class data. That is, if you want to store something about your clas= s as a\n" -"whole (instead of about a single object). This data is then inherited = by your\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" "subclasses and can be overridden." msgstr "" =20 -#: gnu/packages/perl.scm:638 +#: gnu/packages/perl.scm:651 msgid "Class for easy date and time manipulation" msgstr "" =20 -#: gnu/packages/perl.scm:639 +#: gnu/packages/perl.scm:652 msgid "" "This module provides a general-purpose date and datetime\n" "type for perl." msgstr "" =20 -#: gnu/packages/perl.scm:657 +#: gnu/packages/perl.scm:671 msgid "Utility methods for factory classes" msgstr "" =20 -#: gnu/packages/perl.scm:658 +#: gnu/packages/perl.scm:672 msgid "This module exports methods useful for factory classes." msgstr "" =20 -#: gnu/packages/perl.scm:675 +#: gnu/packages/perl.scm:689 msgid "Get information about a class and its structure" msgstr "" =20 -#: gnu/packages/perl.scm:676 +#: gnu/packages/perl.scm:690 msgid "" "Class::Inspector allows you to get information about a\n" "loaded class." msgstr "" =20 -#: gnu/packages/perl.scm:704 +#: gnu/packages/perl.scm:718 msgid "Working (require \"Class::Name\") and more" msgstr "" =20 -#: gnu/packages/perl.scm:705 +#: gnu/packages/perl.scm:719 msgid "" "\"require EXPR\" only accepts Class/Name.pm style module\n" "names, not Class::Name. For that, this module provides \"load_class\n" "'Class::Name'\"." msgstr "" =20 -#: gnu/packages/perl.scm:728 +#: gnu/packages/perl.scm:742 msgid "XS implementation of parts of Class::Load" msgstr "" =20 -#: gnu/packages/perl.scm:729 +#: gnu/packages/perl.scm:743 msgid "" "This module provides an XS implementation for portions of\n" "Class::Load." msgstr "" =20 -#: gnu/packages/perl.scm:748 +#: gnu/packages/perl.scm:762 msgid "Create generic methods for OO Perl" msgstr "" =20 -#: gnu/packages/perl.scm:749 +#: gnu/packages/perl.scm:763 msgid "" "This module solves the problem of having to continually\n" "write accessor methods for your objects that perform standard tasks." msgstr "" =20 -#: gnu/packages/perl.scm:770 +#: gnu/packages/perl.scm:784 msgid "Moose-like method modifiers" msgstr "" =20 -#: gnu/packages/perl.scm:771 +#: gnu/packages/perl.scm:785 msgid "" "Class::Method::Modifiers provides three modifiers: 'before',\n" -"'around', and 'after'. 'before' and 'after' are run just before and af= ter the\n" -"method they modify, but can not really affect that original method. 'a= round'\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" "is run in place of the original method, with a hook to easily call that= \n" "original method." msgstr "" =20 -#: gnu/packages/perl.scm:792 +#: gnu/packages/perl.scm:806 msgid "Implementation of a singleton class for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:793 +#: gnu/packages/perl.scm:807 msgid "" "This module implements a Singleton class from which other\n" "classes can be derived. By itself, the Class::Singleton module does ve= ry\n" "little other than manage the instantiation of a single object." msgstr "" =20 -#: gnu/packages/perl.scm:812 +#: gnu/packages/perl.scm:826 msgid "Minimalist class construction" msgstr "" =20 -#: gnu/packages/perl.scm:813 +#: gnu/packages/perl.scm:827 msgid "" "This module offers a minimalist class construction kit. It\n" "uses no non-core modules for any recent Perl." msgstr "" =20 -#: gnu/packages/perl.scm:833 +#: gnu/packages/perl.scm:847 msgid "Unload a class" msgstr "" =20 -#: gnu/packages/perl.scm:834 +#: gnu/packages/perl.scm:848 msgid "" "Class:Unload unloads a given class by clearing out its\n" "symbol table and removing it from %INC." msgstr "" =20 -#: gnu/packages/perl.scm:852 +#: gnu/packages/perl.scm:866 msgid "Generate fast XS accessors without runtime compilation" msgstr "" =20 -#: gnu/packages/perl.scm:853 +#: gnu/packages/perl.scm:867 msgid "" "Class::XSAccessor implements fast read, write, and\n" -"read/write accessors in XS. Additionally, it can provide predicates su= ch as\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" "\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" -"object. It only works with objects that are implemented as ordinary ha= shes.\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" "Class::XSAccessor::Array implements the same interface for objects that= use\n" "arrays for their internal representation." msgstr "" =20 -#: gnu/packages/perl.scm:873 +#: gnu/packages/perl.scm:887 msgid "Recursively copy Perl datatypes" msgstr "" =20 -#: gnu/packages/perl.scm:875 +#: gnu/packages/perl.scm:889 msgid "" "This module provides a clone() method which makes recursive copies of\n= " -"nested hash, array, scalar and reference types, including tied variable= s and\n" +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" "objects." msgstr "" =20 -#: gnu/packages/perl.scm:896 +#: gnu/packages/perl.scm:910 msgid "Sane defaults for Perl programs" msgstr "" =20 -#: gnu/packages/perl.scm:897 +#: gnu/packages/perl.scm:911 msgid "" "This module implements some sane defaults for Perl programs,\n" "as defined by two typical specimens of Perl coders." msgstr "" =20 -#: gnu/packages/perl.scm:915 +#: gnu/packages/perl.scm:931 msgid "Load configuration from different file formats" msgstr "" =20 -#: gnu/packages/perl.scm:916 +#: gnu/packages/perl.scm:932 msgid "" "Config::Any provides a facility for Perl applications and\n" -"libraries to load configuration data from multiple different file forma= ts. It\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" "supports XML, YAML, JSON, Apache-style configuration, and Perl code." msgstr "" =20 -#: gnu/packages/perl.scm:937 +#: gnu/packages/perl.scm:953 msgid "Module to implement some AutoConf macros in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:938 +#: gnu/packages/perl.scm:954 msgid "" "Config::AutoConf is intended to provide the same\n" "opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." msgstr "" =20 -#: gnu/packages/perl.scm:956 +#: gnu/packages/perl.scm:972 msgid "Generic Config Module" msgstr "" =20 -#: gnu/packages/perl.scm:957 +#: gnu/packages/perl.scm:973 msgid "" "This module opens a config file and parses its contents for\n" -"you. The format of config files supported by Config::General is inspir= ed by\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" "the well known Apache config format and is 100% compatible with Apache\= n" "configs, but you can also just use simple name/value pairs in your conf= ig\n" -"files. In addition to the capabilities of an Apache config file it sup= ports\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" "some enhancements such as here-documents, C-style comments, and multili= ne\n" "options." msgstr "" =20 -#: gnu/packages/perl.scm:983 +#: gnu/packages/perl.scm:999 msgid "Preserve context during subroutine call" msgstr "" =20 -#: gnu/packages/perl.scm:984 +#: gnu/packages/perl.scm:1000 msgid "" "This module runs code after a subroutine call, preserving\n" "the context the subroutine would have seen if it were the last statemen= t in\n" "the caller." msgstr "" =20 -#: gnu/packages/perl.scm:1005 +#: gnu/packages/perl.scm:1021 msgid "Verify requirements in a CPAN::Meta object" msgstr "" =20 -#: gnu/packages/perl.scm:1006 +#: gnu/packages/perl.scm:1022 msgid "" "This module verifies if requirements described in a\n" "CPAN::Meta object are present." msgstr "" =20 -#: gnu/packages/perl.scm:1026 +#: gnu/packages/perl.scm:1042 msgid "JSON::XS for Cpanel" msgstr "" =20 -#: gnu/packages/perl.scm:1027 gnu/packages/perl.scm:2769 +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 msgid "" "This module converts Perl data structures to JSON and vice\n" "versa." msgstr "" =20 -#: gnu/packages/perl.scm:1045 +#: gnu/packages/perl.scm:1061 msgid "Random password generator" msgstr "Generator losowych hase=C5=82" =20 -#: gnu/packages/perl.scm:1046 +#: gnu/packages/perl.scm:1062 msgid "" "Crypt::RandPasswd provides three functions that can be used\n" -"to generate random passwords, constructed from words, letters, or chara= cters.\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" "This code is a Perl implementation of the Automated Password Generator\= n" "standard, like the program described in \"A Random Word Generator For\n= " "Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" @@ -5441,403 +6379,422 @@ msgid "" "Password Generator\"." msgstr "" =20 -#: gnu/packages/perl.scm:1089 +#: gnu/packages/perl.scm:1105 msgid "Library for genomic analysis" msgstr "" =20 -#: gnu/packages/perl.scm:1090 +#: gnu/packages/perl.scm:1106 msgid "" "Chaolin Zhang's Perl Library (czplib) contains assorted\n" "functions and data structures for processing and analysing genomic and\= n" "bioinformatics data." msgstr "" =20 -#: gnu/packages/perl.scm:1109 +#: gnu/packages/perl.scm:1125 msgid "Pretty printing of data structures" msgstr "" =20 -#: gnu/packages/perl.scm:1110 +#: gnu/packages/perl.scm:1126 msgid "" "This module provide functions that takes a list of values as\n" -"their argument and produces a string as its result. The string contain= s Perl\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" "code that, when \"eval\"ed, produces a deep copy of the original argume= nts." msgstr "" =20 -#: gnu/packages/perl.scm:1129 +#: gnu/packages/perl.scm:1145 msgid "Concise data dumper" msgstr "" =20 -#: gnu/packages/perl.scm:1130 +#: gnu/packages/perl.scm:1146 msgid "" "Data::Dumper::Concise provides a dumper with Less\n" "indentation and newlines plus sub deparsing." msgstr "" =20 -#: gnu/packages/perl.scm:1152 +#: gnu/packages/perl.scm:1168 msgid "Parse and validate simple name/value option pairs" msgstr "" =20 -#: gnu/packages/perl.scm:1154 +#: gnu/packages/perl.scm:1170 msgid "Data::OptList provides a simple syntax for name/value option pair= s." msgstr "" =20 -#: gnu/packages/perl.scm:1175 +#: gnu/packages/perl.scm:1192 msgid "Help when paging through sets of results" msgstr "" =20 -#: gnu/packages/perl.scm:1176 +#: gnu/packages/perl.scm:1193 msgid "" "When searching through large amounts of data, it is often\n" -"the case that a result set is returned that is larger than we want to d= isplay\n" -"on one page. This results in wanting to page through various pages of = data.\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" "The maths behind this is unfortunately fiddly, hence this module." msgstr "" =20 -#: gnu/packages/perl.scm:1198 +#: gnu/packages/perl.scm:1215 msgid "Structured tags datastructures" msgstr "" =20 -#: gnu/packages/perl.scm:1200 +#: gnu/packages/perl.scm:1217 msgid "" "This module is for manipulating data as hierarchical tag/value\n" -"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s can\n" -"be represented as nested arrays, which have the advantage of being nati= ve to\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" "Perl." msgstr "" =20 -#: gnu/packages/perl.scm:1227 +#: gnu/packages/perl.scm:1244 msgid "N at a time iteration API" msgstr "" =20 -#: gnu/packages/perl.scm:1228 +#: gnu/packages/perl.scm:1245 msgid "" "This module tries to find middle ground between one at a\n" -"time and all at once processing of data sets. The purpose of this modu= le is\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" "to avoid the overhead of implementing an iterative api when this isn't\= n" "necessary, without breaking forward compatibility in case that becomes\= n" "necessary later on." msgstr "" =20 -#: gnu/packages/perl.scm:1253 +#: gnu/packages/perl.scm:1270 msgid "Dynamic generation of nested combinations of variants" msgstr "" =20 -#: gnu/packages/perl.scm:1254 +#: gnu/packages/perl.scm:1271 msgid "" "Data::Tumbler - Dynamic generation of nested combinations of\n" "variants." msgstr "" =20 -#: gnu/packages/perl.scm:1280 +#: gnu/packages/perl.scm:1297 msgid "Visitor style traversal of Perl data structures" msgstr "" =20 -#: gnu/packages/perl.scm:1281 +#: gnu/packages/perl.scm:1298 msgid "" "This module is a simple visitor implementation for Perl\n" "values. It has a main dispatcher method, visit, which takes a single p= erl\n" "value and then calls the methods appropriate for that value. It can\n" -"recursively map (cloning as necessary) or just traverse most structures= , with\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" "support for per-object behavior, circular structures, visiting tied\n" "structures, and all ref types (hashes, arrays, scalars, code, globs)." msgstr "" =20 -#: gnu/packages/perl.scm:1306 +#: gnu/packages/perl.scm:1323 msgid "Gregorian calendar date calculations" msgstr "" =20 -#: gnu/packages/perl.scm:1307 +#: gnu/packages/perl.scm:1324 msgid "" "This package consists of a Perl module for date calculations\n" -"based on the Gregorian calendar, thereby complying with all relevant no= rms and\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" "standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" "applicable)." msgstr "" =20 -#: gnu/packages/perl.scm:1331 +#: gnu/packages/perl.scm:1348 msgid "XS wrapper for Date::Calc" msgstr "" =20 -#: gnu/packages/perl.scm:1332 +#: gnu/packages/perl.scm:1349 msgid "" "Date::Calc::XS is an XS wrapper and C library plug-in for\n" "Date::Calc." msgstr "" =20 -#: gnu/packages/perl.scm:1355 +#: gnu/packages/perl.scm:1373 msgid "Date manipulation routines" msgstr "" =20 -#: gnu/packages/perl.scm:1356 +#: gnu/packages/perl.scm:1374 msgid "" "Date::Manip is a series of modules for common date/time\n" -"operations, such as comparing two times, determining a date a given amo= unt of\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" "time from another, or parsing international times." msgstr "" =20 -#: gnu/packages/perl.scm:1383 +#: gnu/packages/perl.scm:1402 msgid "Date and time object for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:1384 +#: gnu/packages/perl.scm:1403 msgid "" "DateTime is a class for the representation of date/time\n" "combinations. It represents the Gregorian calendar, extended backwards= in\n" "time before its creation (in 1582)." msgstr "" =20 -#: gnu/packages/perl.scm:1407 +#: gnu/packages/perl.scm:1428 msgid "DateTime set objects" msgstr "" =20 -#: gnu/packages/perl.scm:1408 +#: gnu/packages/perl.scm:1429 msgid "" "The DateTime::Set module provides a date/time sets\n" "implementation. It allows, for example, the generation of groups of da= tes,\n" -"like \"every wednesday\", and then find all the dates matching that pat= tern,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" "within a time range." msgstr "" =20 -#: gnu/packages/perl.scm:1431 +#: gnu/packages/perl.scm:1452 msgid "DateTime rfc2445 recurrences" msgstr "" =20 -#: gnu/packages/perl.scm:1432 +#: gnu/packages/perl.scm:1453 msgid "" "This module provides convenience methods that let you easily\n" "create DateTime::Set objects for RFC 2445 style recurrences." msgstr "" =20 -#: gnu/packages/perl.scm:1453 +#: gnu/packages/perl.scm:1474 msgid "DateTime::Set extension for basic recurrences" msgstr "" =20 -#: gnu/packages/perl.scm:1454 +#: gnu/packages/perl.scm:1475 msgid "" "This module provides convenience methods that let you easily\n" -"create DateTime::Set objects for various recurrences, such as \"once a = month\"\n" -"or \"every day\". You can also create more complicated recurrences, su= ch as\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" "\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." msgstr "" =20 -#: gnu/packages/perl.scm:1479 +#: gnu/packages/perl.scm:1500 msgid "Create DateTime parser classes and objects" msgstr "" =20 -#: gnu/packages/perl.scm:1480 +#: gnu/packages/perl.scm:1501 msgid "" "DateTime::Format::Builder creates DateTime parsers. Many\n" -"string formats of dates and times are simple and just require a basic r= egular\n" -"expression to extract the relevant information. Builder provides a sim= ple way\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" "to do this without writing reams of structural code." msgstr "" =20 -#: gnu/packages/perl.scm:1506 +#: gnu/packages/perl.scm:1528 msgid "Parse data/time strings" msgstr "" =20 -#: gnu/packages/perl.scm:1507 +#: gnu/packages/perl.scm:1529 msgid "" "DateTime::Format::Flexible attempts to take any string you\n" "give it and parse it into a DateTime object." msgstr "" =20 -#: gnu/packages/perl.scm:1531 +#: gnu/packages/perl.scm:1555 msgid "Parse and format iCal datetime and duration strings" msgstr "" =20 -#: gnu/packages/perl.scm:1532 +#: gnu/packages/perl.scm:1556 msgid "" "This module understands the ICal date/time and duration\n" "formats, as defined in RFC 2445. It can be used to parse these formats= in\n" "order to create the appropriate objects." msgstr "" =20 -#: gnu/packages/perl.scm:1563 +#: gnu/packages/perl.scm:1588 msgid "Machine-readable date/time with natural parsing" msgstr "" =20 -#: gnu/packages/perl.scm:1564 +#: gnu/packages/perl.scm:1589 msgid "" "DateTime::Format::Natural takes a string with a human\n" "readable date/time and creates a machine readable one by applying natur= al\n" "parsing logic." msgstr "" =20 -#: gnu/packages/perl.scm:1588 +#: gnu/packages/perl.scm:1613 msgid "Parse and format strp and strf time patterns" msgstr "" =20 -#: gnu/packages/perl.scm:1589 +#: gnu/packages/perl.scm:1614 msgid "" "This module implements most of `strptime(3)`, the POSIX\n" "function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " -"`strftime` takes a `DateTime` and a pattern and returns a string, `strp= time`\n" +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" "takes a string and a pattern and returns the `DateTime` object associat= ed." msgstr "" =20 -#: gnu/packages/perl.scm:1612 +#: gnu/packages/perl.scm:1639 msgid "Localization support for DateTime.pm" msgstr "" =20 -#: gnu/packages/perl.scm:1613 +#: gnu/packages/perl.scm:1640 msgid "" "The DateTime::Locale modules provide localization data for\n" "the DateTime.pm class." msgstr "" =20 -#: gnu/packages/perl.scm:1640 +#: gnu/packages/perl.scm:1667 msgid "Time zone object for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:1641 +#: gnu/packages/perl.scm:1668 msgid "" "This class is the base class for all time zone objects. A\n" "time zone is represented internally as a set of observances, each of wh= ich\n" -"describes the offset from GMT for a given time period. Note that witho= ut the\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" "DateTime module, this module does not do much. It's primary interface = is\n" "through a DateTime object, and most users will not need to directly use= \n" "DateTime::TimeZone methods." msgstr "" =20 -#: gnu/packages/perl.scm:1671 +#: gnu/packages/perl.scm:1698 msgid "Parse date/time strings" msgstr "" =20 -#: gnu/packages/perl.scm:1672 +#: gnu/packages/perl.scm:1699 msgid "" "DateTimeX::Easy uses a variety of DateTime::Format packages\n" "to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" "edges (mainly concerning timezone detection and selection)." msgstr "" =20 -#: gnu/packages/perl.scm:1693 +#: gnu/packages/perl.scm:1720 msgid "Meatier version of caller" msgstr "" =20 -#: gnu/packages/perl.scm:1694 +#: gnu/packages/perl.scm:1721 msgid "Devel::Caller provides meatier version of caller." msgstr "" =20 -#: gnu/packages/perl.scm:1711 +#: gnu/packages/perl.scm:1739 msgid "Check that a command is available" msgstr "" =20 -#: gnu/packages/perl.scm:1712 +#: gnu/packages/perl.scm:1740 msgid "" "Devel::CheckBin is a perl module that checks whether a\n" "particular command is available." msgstr "" =20 -#: gnu/packages/perl.scm:1732 +#: gnu/packages/perl.scm:1760 msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" msgstr "" =20 -#: gnu/packages/perl.scm:1733 +#: gnu/packages/perl.scm:1761 msgid "" "Devel::GlobalDestruction provides a function returning the\n" "equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." msgstr "" =20 -#: gnu/packages/perl.scm:1753 +#: gnu/packages/perl.scm:1781 msgid "Alias lexical variables" msgstr "" =20 -#: gnu/packages/perl.scm:1754 +#: gnu/packages/perl.scm:1782 msgid "" "Devel::LexAlias provides the ability to alias a lexical\n" "variable in a subroutines scope to one of your choosing." msgstr "" =20 -#: gnu/packages/perl.scm:1776 +#: gnu/packages/perl.scm:1804 msgid "Introspect overloaded operators" msgstr "" =20 -#: gnu/packages/perl.scm:1777 +#: gnu/packages/perl.scm:1805 msgid "" "Devel::OverloadInfo returns information about overloaded\n" "operators for a given class (or object), including where in the inherit= ance\n" "hierarchy the overloads are declared and where the code implementing it= is." msgstr "" =20 -#: gnu/packages/perl.scm:1804 +#: gnu/packages/perl.scm:1832 msgid "Partial dumping of data structures" msgstr "" =20 -#: gnu/packages/perl.scm:1805 +#: gnu/packages/perl.scm:1833 msgid "" "This module is a data dumper optimized for logging of\n" "arbitrary parameters." msgstr "" =20 -#: gnu/packages/perl.scm:1823 +#: gnu/packages/perl.scm:1851 msgid "Object representing a stack trace" msgstr "" =20 -#: gnu/packages/perl.scm:1824 +#: gnu/packages/perl.scm:1852 msgid "" "The Devel::StackTrace module contains two classes,\n" -"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate the\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" "information that can be retrieved via Perl's caller() function, as well= as\n" "providing a simple interface to this data." msgstr "" =20 -#: gnu/packages/perl.scm:1846 +#: gnu/packages/perl.scm:1874 msgid "Displays stack trace in HTML" msgstr "" =20 -#: gnu/packages/perl.scm:1847 +#: gnu/packages/perl.scm:1875 msgid "" "Devel::StackTrace::AsHTML adds as_html method to\n" -"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h code\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" "snippet context and function parameters. If you call it on an instance= of\n" -"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" "each stack frame." msgstr "" =20 -#: gnu/packages/perl.scm:1868 +#: gnu/packages/perl.scm:1896 msgid "Dump symbol names or the symbol table" msgstr "" =20 -#: gnu/packages/perl.scm:1869 +#: gnu/packages/perl.scm:1897 msgid "Devel::Symdump provides access to the perl symbol table." msgstr "" =20 -#: gnu/packages/perl.scm:1886 +#: gnu/packages/perl.scm:1914 msgid "Keyed-Hashing for Message Authentication" msgstr "" =20 -#: gnu/packages/perl.scm:1887 +#: gnu/packages/perl.scm:1915 msgid "" "The Digest::HMAC module follows the common Digest::\n" "interface for the RFC 2104 HMAC mechanism." msgstr "" =20 -#: gnu/packages/perl.scm:1903 +#: gnu/packages/perl.scm:1931 msgid "Perl implementation of the SHA-1 message digest algorithm" msgstr "" =20 -#: gnu/packages/perl.scm:1905 +#: gnu/packages/perl.scm:1933 msgid "" "This package provides 'Digest::SHA1', an implementation of the NIST\n" "SHA-1 message digest algorithm for use by Perl programs." msgstr "" =20 -#: gnu/packages/perl.scm:1927 +#: gnu/packages/perl.scm:1955 msgid "Declare version conflicts for your dist" msgstr "" =20 -#: gnu/packages/perl.scm:1928 +#: gnu/packages/perl.scm:1956 msgid "" "This module allows you to specify conflicting versions of\n" "modules separately and deal with them after the module is done installi= ng." msgstr "" =20 -#: gnu/packages/perl.scm:1945 +#: gnu/packages/perl.scm:1974 msgid "OO-ish Error/Exception handling for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:1946 +#: gnu/packages/perl.scm:1975 msgid "" "The Error package provides two interfaces. Firstly Error\n" "provides a procedural interface to exception handling. Secondly Error = is a\n" @@ -5845,231 +6802,255 @@ msgid "" "catch, or can simply be recorded." msgstr "" =20 -#: gnu/packages/perl.scm:1971 +#: gnu/packages/perl.scm:2000 msgid "Safely and cleanly create closures via string eval" msgstr "" =20 -#: gnu/packages/perl.scm:1972 +#: gnu/packages/perl.scm:2001 msgid "" "String eval is often used for dynamic code generation. For\n" -"instance, Moose uses it heavily, to generate inlined versions of access= ors and\n" -"constructors, which speeds code up at runtime by a significant amount. = String\n" -"eval is not without its issues however - it's difficult to control the = scope\n" -"it's used in (which determines which variables are in scope inside the = eval),\n" -"and it's easy to miss compilation errors, since eval catches them and s= ticks\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" "them in $@@ instead. This module attempts to solve these problems. It= \n" "provides an eval_closure function, which evals a string in a clean\n" "environment, other than a fixed list of specified variables. Compilati= on\n" "errors are rethrown automatically." msgstr "" =20 -#: gnu/packages/perl.scm:2001 +#: gnu/packages/perl.scm:2030 msgid "Allows you to declare real exception classes in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2002 +#: gnu/packages/perl.scm:2031 msgid "" "Exception::Class allows you to declare exception hierarchies\n" "in your modules in a \"Java-esque\" manner." msgstr "" =20 -#: gnu/packages/perl.scm:2018 +#: gnu/packages/perl.scm:2047 msgid "Lightweight exporting of functions and variables" msgstr "" =20 -#: gnu/packages/perl.scm:2020 +#: gnu/packages/perl.scm:2049 msgid "" "Exporter::Lite is an alternative to Exporter, intended to provide a\n" "lightweight subset of the most commonly-used functionality. It support= s\n" "import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." msgstr "" =20 -#: gnu/packages/perl.scm:2041 +#: gnu/packages/perl.scm:2070 msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" msgstr "" =20 -#: gnu/packages/perl.scm:2042 +#: gnu/packages/perl.scm:2071 msgid "" "Exporter::Tiny supports many of Sub::Exporter's\n" -"external-facing features including renaming imported functions with the= `-as`,\n" -"`-prefix` and `-suffix` options; explicit destinations with the `into` = option;\n" -"and alternative installers with the `installler` option. But it's writ= ten in\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" "only about 40% as many lines of code and with zero non-core dependencie= s." msgstr "" =20 -#: gnu/packages/perl.scm:2065 +#: gnu/packages/perl.scm:2094 msgid "Build.PL install path logic made easy" msgstr "" =20 -#: gnu/packages/perl.scm:2066 +#: gnu/packages/perl.scm:2095 msgid "" "This module tries to make install path resolution as easy as\n" "possible." msgstr "" =20 -#: gnu/packages/perl.scm:2084 +#: gnu/packages/perl.scm:2113 msgid "Wrapper for perl's configuration" msgstr "" =20 -#: gnu/packages/perl.scm:2085 +#: gnu/packages/perl.scm:2114 msgid "" "ExtUtils::Config is an abstraction around the %Config hash.\n" -"By itself it is not a particularly interesting module by any measure, h= owever\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" "it ties together a family of modern toolchain modules." msgstr "" =20 -#: gnu/packages/perl.scm:2104 +#: gnu/packages/perl.scm:2133 msgid "Various portability utilities for module builders" msgstr "" =20 -#: gnu/packages/perl.scm:2105 +#: gnu/packages/perl.scm:2134 msgid "" "This module provides various portable helper functions for\n" "module building modules." msgstr "" =20 -#: gnu/packages/perl.scm:2133 +#: gnu/packages/perl.scm:2164 msgid "Watch for changes to files" msgstr "" =20 -#: gnu/packages/perl.scm:2134 +#: gnu/packages/perl.scm:2165 msgid "" "This module provides a class to monitor a directory for\n" "changes made to any file." msgstr "" =20 -#: gnu/packages/perl.scm:2152 +#: gnu/packages/perl.scm:2183 msgid "Recursively copy files and directories" msgstr "" =20 -#: gnu/packages/perl.scm:2153 +#: gnu/packages/perl.scm:2184 msgid "" "This module has 3 functions: one to copy files only, one to\n" "copy directories only, and one to do either depending on the argument's= \n" "type." msgstr "" =20 -#: gnu/packages/perl.scm:2175 +#: gnu/packages/perl.scm:2206 msgid "Alternative interface to File::Find" msgstr "" =20 -#: gnu/packages/perl.scm:2176 +#: gnu/packages/perl.scm:2207 msgid "" "File::Find::Rule is a friendlier interface to File::Find.\n" "It allows you to build rules which specify the desired files and\n" "directories." msgstr "" =20 -#: gnu/packages/perl.scm:2199 +#: gnu/packages/perl.scm:2230 msgid "Common rules for searching for Perl things" msgstr "" =20 -#: gnu/packages/perl.scm:2200 +#: gnu/packages/perl.scm:2231 msgid "" "File::Find::Rule::Perl provides methods for finding various\n" -"types Perl-related files, or replicating search queries run on a distri= bution\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" "in various parts of the CPAN ecosystem." msgstr "" =20 -#: gnu/packages/perl.scm:2223 +#: gnu/packages/perl.scm:2254 msgid "Find your home and other directories on any platform" msgstr "" =20 -#: gnu/packages/perl.scm:2224 +#: gnu/packages/perl.scm:2255 msgid "" "File::HomeDir is a module for locating the directories that\n" -"are \"owned\" by a user (typically your user) and to solve the various = issues\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" "that arise trying to find them consistently across a wide variety of\n" "platforms." msgstr "" =20 -#: gnu/packages/perl.scm:2251 +#: gnu/packages/perl.scm:2282 msgid "" "Perl extension for crawling directory trees and compiling\n" "lists of files" msgstr "" =20 -#: gnu/packages/perl.scm:2254 +#: gnu/packages/perl.scm:2285 msgid "" "The File::List module crawls the directory tree starting at the\n" -"provided base directory and can return files (and/or directories if des= ired)\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" "matching a regular expression." msgstr "" =20 -#: gnu/packages/perl.scm:2273 +#: gnu/packages/perl.scm:2304 msgid "Remove files and directories in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2274 +#: gnu/packages/perl.scm:2305 msgid "" "File::Remove::remove removes files and directories. It acts\n" -"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st of\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" "files, it will not remove directories; this module remedies that. It a= lso\n" "accepts wildcards, * and ?, as arguments for file names." msgstr "" =20 -#: gnu/packages/perl.scm:2298 +#: gnu/packages/perl.scm:2329 msgid "Locate per-dist and per-module shared files" msgstr "" =20 -#: gnu/packages/perl.scm:2299 +#: gnu/packages/perl.scm:2330 msgid "" "The intent of File::ShareDir is to provide a companion to\n" "Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" "module to have access to a large amount of read-only data that is store= d on\n" "the file-system at run-time. Once the files have been installed to the= \n" -"correct directory, you can use File::ShareDir to find your files again = after\n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" "the installation." msgstr "" =20 -#: gnu/packages/perl.scm:2321 +#: gnu/packages/perl.scm:2352 msgid "Install shared files" msgstr "" =20 -#: gnu/packages/perl.scm:2322 +#: gnu/packages/perl.scm:2353 msgid "" "File::ShareDir::Install allows you to install read-only data\n" -"files from a distribution. It is a companion module to File::ShareDir,= which\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" "allows you to locate these files after installation." msgstr "" =20 -#: gnu/packages/perl.scm:2341 +#: gnu/packages/perl.scm:2372 msgid "Reading/Writing/Modifying of complete files" msgstr "" =20 -#: gnu/packages/perl.scm:2342 +#: gnu/packages/perl.scm:2373 msgid "" "File::Slurp provides subroutines to read or write entire\n" "files with a simple call. It also has a subroutine for reading the lis= t of\n" "file names in a directory." msgstr "" =20 -#: gnu/packages/perl.scm:2363 +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 msgid "Return name and handle of a temporary file safely" msgstr "" =20 -#: gnu/packages/perl.scm:2364 +#: gnu/packages/perl.scm:2413 msgid "" "File::Temp can be used to create and open temporary files in\n" "a safe way." msgstr "" =20 -#: gnu/packages/perl.scm:2381 +#: gnu/packages/perl.scm:2430 msgid "Portable implementation of the `which' utility" msgstr "" =20 -#: gnu/packages/perl.scm:2383 +#: gnu/packages/perl.scm:2432 msgid "" "File::Which was created to be able to get the paths to executable\n" -"programs on systems under which the `which' program wasn't implemented = in the\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" "shell." msgstr "" =20 -#: gnu/packages/perl.scm:2410 +#: gnu/packages/perl.scm:2459 msgid "Getopt::Long, but simpler and more powerful" msgstr "" =20 -#: gnu/packages/perl.scm:2411 +#: gnu/packages/perl.scm:2460 msgid "" "Getopt::Long::Descriptive is yet another Getopt library.\n" "It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" @@ -6077,240 +7058,285 @@ msgid "" "usage (help) messages, data validation, and a few other useful features= ." msgstr "" =20 -#: gnu/packages/perl.scm:2429 +#: gnu/packages/perl.scm:2478 msgid "Table-driven argument parsing for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2431 +#: gnu/packages/perl.scm:2480 msgid "" "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " "vaguely inspired by John Ousterhout's Tk_ParseArgv." msgstr "" =20 -#: gnu/packages/perl.scm:2451 +#: gnu/packages/perl.scm:2500 msgid "Merge arbitrarily deep hashes into a single hash" msgstr "" =20 -#: gnu/packages/perl.scm:2452 +#: gnu/packages/perl.scm:2501 msgid "" "Hash::Merge merges two arbitrarily deep hashes into a single\n" -"hash. That is, at any level, it will add non-conflicting key-value pai= rs from\n" -"one hash to the other, and follows a set of specific rules when there a= re key\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" "value conflicts. The hash is followed recursively, so that deeply nest= ed\n" "hashes that are at the same level will be merged when the parent hashes= are\n" "merged." msgstr "" =20 -#: gnu/packages/perl.scm:2474 +#: gnu/packages/perl.scm:2523 msgid "Store multiple values per key" msgstr "" =20 -#: gnu/packages/perl.scm:2475 +#: gnu/packages/perl.scm:2524 msgid "" "Hash::MultiValue is an object (and a plain hash reference)\n" "that may contain multiple values per key, inspired by MultiDict of WebO= b." msgstr "" =20 -#: gnu/packages/perl.scm:2495 +#: gnu/packages/perl.scm:2544 msgid "Import packages into other packages" msgstr "" =20 -#: gnu/packages/perl.scm:2496 +#: gnu/packages/perl.scm:2545 msgid "" "Writing exporters is a pain. Some use Exporter, some use\n" "Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" -"some things are pragmas. Exporting on someone else's behalf is harder.= The\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" "exporters don't provide a consistent API for this, and pragmas need to = have\n" "their import method called directly, since they effect the current unit= of\n" "compilation. Import::Into provides global methods to make this painles= s." msgstr "" =20 -#: gnu/packages/perl.scm:2518 +#: gnu/packages/perl.scm:2567 msgid "Use modules in inc/ if newer than installed" msgstr "" =20 -#: gnu/packages/perl.scm:2519 +#: gnu/packages/perl.scm:2568 msgid "" "The inc::latest module helps bootstrap configure-time\n" -"dependencies for CPAN distributions. These dependencies get bundled in= to the\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" "inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." msgstr "" =20 -#: gnu/packages/perl.scm:2538 +#: gnu/packages/perl.scm:2587 msgid "Utilities for interactive I/O" msgstr "" =20 -#: gnu/packages/perl.scm:2539 +#: gnu/packages/perl.scm:2588 msgid "" "This module provides three utility subroutines that make it\n" -"easier to develop interactive applications: is_interactive(), interacti= ve(),\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" "and busy()." msgstr "" =20 -#: gnu/packages/perl.scm:2558 +#: gnu/packages/perl.scm:2607 msgid "Emulate file interface for in-core strings" msgstr "" =20 -#: gnu/packages/perl.scm:2559 +#: gnu/packages/perl.scm:2608 msgid "" "IO::String is an IO::File (and IO::Handle) compatible class\n" "that reads or writes data from in-core strings." msgstr "" =20 -#: gnu/packages/perl.scm:2577 +#: gnu/packages/perl.scm:2626 msgid "IO:: interface for reading/writing an array of lines" msgstr "" =20 -#: gnu/packages/perl.scm:2578 +#: gnu/packages/perl.scm:2627 msgid "" "This toolkit primarily provides modules for performing both\n" "traditional and object-oriented i/o) on things *other* than normal\n" "filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " msgstr "" =20 -#: gnu/packages/perl.scm:2596 +#: gnu/packages/perl.scm:2645 msgid "Perl interface to pseudo ttys" msgstr "" =20 -#: gnu/packages/perl.scm:2598 +#: gnu/packages/perl.scm:2647 msgid "" "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" "pseudo ttys." msgstr "" =20 -#: gnu/packages/perl.scm:2626 +#: gnu/packages/perl.scm:2675 msgid "Run system() and background procs w/ piping, redirs, ptys" msgstr "" =20 -#: gnu/packages/perl.scm:2627 +#: gnu/packages/perl.scm:2676 msgid "" "IPC::Run allows you run and interact with child processes\n" -"using files, pipes, and pseudo-ttys. Both system()-style and scripted = usages\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" "are supported and may be mixed. Likewise, functional and OO API styles= are\n" "both supported and may be mixed." msgstr "" =20 -#: gnu/packages/perl.scm:2645 +#: gnu/packages/perl.scm:2694 msgid "Run a subprocess with input/output redirection" msgstr "" =20 -#: gnu/packages/perl.scm:2647 +#: gnu/packages/perl.scm:2696 msgid "" "The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" -"stdout, and/or stderr to files and perl data structures. It aims to sa= tisfy\n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" "99% of the need for using system, qx, and open3 with a simple, extremel= y\n" "Perlish API and none of the bloat and rarely used features of IPC::Run.= " msgstr "" =20 -#: gnu/packages/perl.scm:2671 +#: gnu/packages/perl.scm:2720 msgid "Lightweight interface to shared memory" msgstr "" =20 -#: gnu/packages/perl.scm:2672 +#: gnu/packages/perl.scm:2721 msgid "" "IPC::ShareLite provides a simple interface to shared memory,\n" "allowing data to be efficiently communicated between processes." msgstr "" =20 -#: gnu/packages/perl.scm:2692 +#: gnu/packages/perl.scm:2741 msgid "JSON encoder/decoder for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2693 +#: gnu/packages/perl.scm:2742 msgid "" "This module converts Perl data structures to JSON and vice\n" "versa using either JSON::XS or JSON::PP." msgstr "" =20 -#: gnu/packages/perl.scm:2718 +#: gnu/packages/perl.scm:2767 msgid "Wrapper for Perl JSON classes" msgstr "" =20 -#: gnu/packages/perl.scm:2720 +#: gnu/packages/perl.scm:2769 msgid "" "This module tries to provide a coherent API to bring together the\n" -"various JSON modules currently on CPAN. This module will allow you to = code to\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" "any JSON API and have it work regardless of which JSON module is actual= ly\n" "installed." msgstr "" =20 -#: gnu/packages/perl.scm:2744 +#: gnu/packages/perl.scm:2793 msgid "Cpanel::JSON::XS with fallback" msgstr "" =20 -#: gnu/packages/perl.scm:2745 +#: gnu/packages/perl.scm:2794 msgid "" "This module first checks to see if either Cpanel::JSON::XS\n" -"or JSON::XS is already loaded, in which case it uses that module. Othe= rwise\n" -"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, and\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" "either uses the first module it finds or throws an error." msgstr "" =20 -#: gnu/packages/perl.scm:2768 +#: gnu/packages/perl.scm:2817 msgid "JSON serialising/deserialising for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:2792 +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 msgid "Combination of List::Util and List::MoreUtils" msgstr "" =20 -#: gnu/packages/perl.scm:2793 +#: gnu/packages/perl.scm:2890 msgid "" "This module exports all of the functions that either\n" "List::Util or List::MoreUtils defines, with preference to List::Util." msgstr "" =20 -#: gnu/packages/perl.scm:2817 +#: gnu/packages/perl.scm:2914 msgid "Provide the stuff missing in List::Util" msgstr "" =20 -#: gnu/packages/perl.scm:2818 +#: gnu/packages/perl.scm:2915 msgid "" "List::MoreUtils provides some trivial but commonly needed\n" "functionality on lists which is not going to go into List::Util." msgstr "" =20 -#: gnu/packages/perl.scm:2836 +#: gnu/packages/perl.scm:2933 msgid "Expiry plug-in for Memoize that adds LRU cache expiration" msgstr "" =20 -#: gnu/packages/perl.scm:2837 +#: gnu/packages/perl.scm:2934 msgid "" "This module implements an expiry policy for Memoize that\n" "follows LRU semantics, that is, the last n results, where n is specifie= d as\n" "the argument to the CACHESIZE parameter, will be cached." msgstr "" =20 -#: gnu/packages/perl.scm:2856 +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 msgid "Definition of MIME types" msgstr "Definicja typ=C3=B3w MIME" =20 -#: gnu/packages/perl.scm:2857 +#: gnu/packages/perl.scm:2973 msgid "" "This module provides a list of known mime-types, combined\n" "from various sources. For instance, it contains all IANA types and the= \n" "knowledge of Apache." msgstr "" =20 -#: gnu/packages/perl.scm:2886 +#: gnu/packages/perl.scm:3002 msgid "Tiny replacement for Module::Build" msgstr "" =20 -#: gnu/packages/perl.scm:2887 +#: gnu/packages/perl.scm:3003 msgid "" "Many Perl distributions use a Build.PL file instead of a\n" "Makefile.PL file to drive distribution configuration, build, test and\n= " "installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" "build system. This module provides a simple, lightweight, drop-in\n" -"replacement. Whereas Module::Build has over 6,700 lines of code; this = module\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" "has less than 120, yet supports the features needed by most distributio= ns." msgstr "" =20 -#: gnu/packages/perl.scm:2909 +#: gnu/packages/perl.scm:3025 msgid "Find and use installed modules in a (sub)category" msgstr "" =20 -#: gnu/packages/perl.scm:2910 +#: gnu/packages/perl.scm:3026 msgid "" "Module::Find lets you find and use modules in categories.\n" "This can be useful for auto-detecting driver or plugin modules. You ca= n\n" @@ -6318,67 +7344,81 @@ msgid "" "subcategories." msgstr "" =20 -#: gnu/packages/perl.scm:2936 +#: gnu/packages/perl.scm:3052 msgid "Loads alternate underlying implementations for a module" msgstr "" =20 -#: gnu/packages/perl.scm:2937 +#: gnu/packages/perl.scm:3053 msgid "" "This module abstracts out the process of choosing one of\n" -"several underlying implementations for a module. This can be used to p= rovide\n" -"XS and pure Perl implementations of a module, or it could be used to lo= ad an\n" -"implementation for a given OS or any other case of needing to provide m= ultiple\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" "implementations." msgstr "" =20 -#: gnu/packages/perl.scm:2975 +#: gnu/packages/perl.scm:3091 msgid "Standalone, extensible Perl module installer" msgstr "" =20 -#: gnu/packages/perl.scm:2976 +#: gnu/packages/perl.scm:3092 msgid "" "Module::Install is a package for writing installers for\n" -"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in a\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" "strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" "installation version 5.005 or newer." msgstr "" =20 -#: gnu/packages/perl.scm:2996 +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 msgid "Perl runtime module handling" msgstr "" =20 -#: gnu/packages/perl.scm:2997 +#: gnu/packages/perl.scm:3134 msgid "" "The functions exported by this module deal with runtime\n" "handling of Perl modules, which are normally handled at compile time." msgstr "" =20 -#: gnu/packages/perl.scm:3018 +#: gnu/packages/perl.scm:3157 msgid "Provide information on conflicts for Module::Runtime" msgstr "" =20 -#: gnu/packages/perl.scm:3019 +#: gnu/packages/perl.scm:3158 msgid "" "This module provides conflicts checking for Module::Runtime,\n" "which had a recent release that broke some versions of Moose. It is ca= lled\n" "from Moose::Conflicts and moose-outdated." msgstr "" =20 -#: gnu/packages/perl.scm:3040 +#: gnu/packages/perl.scm:3179 msgid "Recursively scan Perl code for dependencies" msgstr "" =20 -#: gnu/packages/perl.scm:3041 +#: gnu/packages/perl.scm:3180 msgid "" "Module::ScanDeps is a module to recursively scan Perl\n" "programs for dependencies." msgstr "" =20 -#: gnu/packages/perl.scm:3061 +#: gnu/packages/perl.scm:3200 msgid "Module name tools and transformations" msgstr "" =20 -#: gnu/packages/perl.scm:3062 +#: gnu/packages/perl.scm:3201 msgid "" "This module provides a few useful functions for manipulating\n" "module names. Its main aim is to centralise some of the functions comm= only\n" @@ -6386,117 +7426,123 @@ msgid "" "module names to relative paths." msgstr "" =20 -#: gnu/packages/perl.scm:3092 +#: gnu/packages/perl.scm:3231 msgid "Minimalist Object Orientation (with Moose compatibility)" msgstr "" =20 -#: gnu/packages/perl.scm:3093 +#: gnu/packages/perl.scm:3232 msgid "" "Moo is an extremely light-weight Object Orientation system.\n" -"It allows one to concisely define objects and roles with a convenient s= yntax\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" "that avoids the details of Perl's object system. Moo contains a subset= of\n" "Moose and is optimised for rapid startup." msgstr "" =20 -#: gnu/packages/perl.scm:3169 +#: gnu/packages/perl.scm:3308 msgid "Postmodern object system for Perl 5" msgstr "" =20 -#: gnu/packages/perl.scm:3171 +#: gnu/packages/perl.scm:3310 msgid "" "Moose is a complete object system for Perl 5. It provides keywords for= \n" -"attribute declaration, object construction, inheritance, and maybe more= . With\n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" "Moose, you define your class declaratively, without needing to know abo= ut\n" "blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" -"logical structure of your classes, focusing on \"what\" rather than \"h= ow\".\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" "A class definition with Moose reads like a list of very concise English= \n" "sentences." msgstr "" =20 -#: gnu/packages/perl.scm:3199 +#: gnu/packages/perl.scm:3338 msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" msgstr "" =20 -#: gnu/packages/perl.scm:3200 +#: gnu/packages/perl.scm:3339 msgid "" "This module attempts to emulate the behavior of\n" "Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" -"system. The public API of Class::Accessor::Fast is wholly supported, b= ut the\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" "private methods are not." msgstr "" =20 -#: gnu/packages/perl.scm:3231 +#: gnu/packages/perl.scm:3371 msgid "Moose role for processing command line options" msgstr "" =20 -#: gnu/packages/perl.scm:3232 +#: gnu/packages/perl.scm:3372 msgid "" "This is a Moose role which provides an alternate constructor\n" "for creating objects using parameters passed in from the command line." msgstr "" =20 -#: gnu/packages/perl.scm:3253 +#: gnu/packages/perl.scm:3393 msgid "Mark overload code symbols as methods" msgstr "" =20 -#: gnu/packages/perl.scm:3254 +#: gnu/packages/perl.scm:3394 msgid "" "MooseX::MarkAsMethods allows one to easily mark certain\n" "functions as Moose methods. This will allow other packages such as\n" "namespace::autoclean to operate without blowing away your overloads. A= fter\n" -"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP as\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" "being methods, and class extension as well as composition from roles wi= th\n" "overloads will \"just work\"." msgstr "" =20 -#: gnu/packages/perl.scm:3284 +#: gnu/packages/perl.scm:3424 msgid "Code attribute introspection" msgstr "" =20 -#: gnu/packages/perl.scm:3285 +#: gnu/packages/perl.scm:3425 msgid "" "This module allows code attributes of methods to be\n" "introspected using Moose meta method objects." msgstr "" =20 -#: gnu/packages/perl.scm:3311 +#: gnu/packages/perl.scm:3451 msgid "Subclassing of non-Moose classes" msgstr "" =20 -#: gnu/packages/perl.scm:3312 +#: gnu/packages/perl.scm:3452 msgid "" "MooseX::NonMoose allows for easily subclassing non-Moose\n" -"classes with Moose, taking care of the details connected with doing thi= s, such\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" "as setting up proper inheritance from Moose::Object and installing (and= \n" "inlining, at make_immutable time) a constructor that makes sure things = like\n" "BUILD methods are called. It tries to be as non-intrusive as possible.= " msgstr "" =20 -#: gnu/packages/perl.scm:3341 +#: gnu/packages/perl.scm:3481 msgid "Extension of Params::Validate using Moose's types" msgstr "" =20 -#: gnu/packages/perl.scm:3342 +#: gnu/packages/perl.scm:3482 msgid "" "This module fills a gap in Moose by adding method parameter\n" "validation to Moose." msgstr "" =20 -#: gnu/packages/perl.scm:3363 +#: gnu/packages/perl.scm:3503 msgid "Apply roles to a related Perl class" msgstr "" =20 -#: gnu/packages/perl.scm:3364 +#: gnu/packages/perl.scm:3504 msgid "" "This module applies roles to make a subclass instead of\n" "manually setting up a subclass." msgstr "" =20 -#: gnu/packages/perl.scm:3390 +#: gnu/packages/perl.scm:3531 msgid "Moose roles with composition parameters" msgstr "" =20 -#: gnu/packages/perl.scm:3391 +#: gnu/packages/perl.scm:3532 msgid "" "Because Moose roles serve many different masters, they\n" "usually provide only the least common denominator of functionality. To= \n" @@ -6506,11 +7552,11 @@ msgid "" "Parameterized roles offer a solution to these (and other) kinds of prob= lems." msgstr "" =20 -#: gnu/packages/perl.scm:3417 +#: gnu/packages/perl.scm:3558 msgid "Roles which support overloading" msgstr "" =20 -#: gnu/packages/perl.scm:3418 +#: gnu/packages/perl.scm:3559 msgid "" "MooseX::Role::WithOverloading allows you to write a\n" "Moose::Role which defines overloaded operators and allows those overloa= d\n" @@ -6518,124 +7564,132 @@ msgid "" "where plain Moose::Roles would lose the overloading." msgstr "" =20 -#: gnu/packages/perl.scm:3440 +#: gnu/packages/perl.scm:3581 msgid "Name your accessors foo() and set_foo()" msgstr "" =20 -#: gnu/packages/perl.scm:3441 +#: gnu/packages/perl.scm:3582 msgid "" "This module does not provide any methods. Simply loading it\n" -"changes the default naming policy for the loading class so that accesso= rs are\n" -"separated into get and set methods. The get methods have the same name= as the\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" "accessor, while set methods are prefixed with \"_set_\"." msgstr "" =20 -#: gnu/packages/perl.scm:3467 +#: gnu/packages/perl.scm:3608 msgid "Strict object constructors for Moose" msgstr "" =20 -#: gnu/packages/perl.scm:3468 +#: gnu/packages/perl.scm:3609 msgid "" "Simply loading this module makes your constructors\n" "\"strict\". If your constructor is called with an attribute init argum= ent\n" "that your class does not declare, then it calls Moose->throw_error()." msgstr "" =20 -#: gnu/packages/perl.scm:3496 +#: gnu/packages/perl.scm:3637 msgid "Trait loading and resolution for Moose" msgstr "" =20 -#: gnu/packages/perl.scm:3497 +#: gnu/packages/perl.scm:3638 msgid "" "Adds support on top of MooseX::Traits for class precedence\n" "search for traits and some extra attributes." msgstr "" =20 -#: gnu/packages/perl.scm:3522 +#: gnu/packages/perl.scm:3664 msgid "Organise your Moose types in libraries" msgstr "" =20 -#: gnu/packages/perl.scm:3523 +#: gnu/packages/perl.scm:3665 msgid "" "This package lets you declare types using short names, but\n" "behind the scenes it namespaces all your type declarations, effectively= \n" "prevent name clashes between packages." msgstr "" =20 -#: gnu/packages/perl.scm:3554 +#: gnu/packages/perl.scm:3696 msgid "DateTime related constraints and coercions for Moose" msgstr "" =20 -#: gnu/packages/perl.scm:3555 +#: gnu/packages/perl.scm:3697 msgid "" "This module packages several Moose::Util::TypeConstraints\n" "with coercions, designed to work with the DateTime suite of objects." msgstr "" =20 -#: gnu/packages/perl.scm:3587 +#: gnu/packages/perl.scm:3729 msgid "Extensions to MooseX::Types::DateTime" msgstr "" =20 -#: gnu/packages/perl.scm:3588 +#: gnu/packages/perl.scm:3730 msgid "" "This module builds on MooseX::Types::DateTime to add\n" -"additional custom types and coercions. Since it builds on an existing = type,\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" "all coercions and constraints are inherited." msgstr "" =20 -#: gnu/packages/perl.scm:3617 +#: gnu/packages/perl.scm:3759 msgid "ClassName type constraints for Moose" msgstr "" =20 -#: gnu/packages/perl.scm:3618 +#: gnu/packages/perl.scm:3760 msgid "" "MooseX::Types::LoadableClass provides a ClassName type\n" "constraint with coercion to load the class." msgstr "" =20 -#: gnu/packages/perl.scm:3642 +#: gnu/packages/perl.scm:3784 msgid "Moosish types and type builder" msgstr "" =20 -#: gnu/packages/perl.scm:3643 +#: gnu/packages/perl.scm:3785 msgid "" "MooX::Types::MooseLike provides a possibility to build your\n" -"own set of Moose-like types. These custom types can then be used to de= scribe\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" "fields in Moo-based classes." msgstr "" =20 -#: gnu/packages/perl.scm:3662 +#: gnu/packages/perl.scm:3804 msgid "MRO interface compatibility for Perls < 5.9.5" msgstr "" =20 -#: gnu/packages/perl.scm:3663 +#: gnu/packages/perl.scm:3805 msgid "" "The \"mro\" namespace provides several utilities for dealing\n" -"with method resolution order and method caching in general in Perl 5.9.= 5 and\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" "higher. This module provides those interfaces for earlier versions of\= n" "Perl (back to 5.6.0)." msgstr "" =20 -#: gnu/packages/perl.scm:3689 +#: gnu/packages/perl.scm:3832 msgid "Keep imports out of your namespace" msgstr "" =20 -#: gnu/packages/perl.scm:3690 +#: gnu/packages/perl.scm:3833 msgid "" "The namespace::autoclean pragma will remove all imported\n" -"symbols at the end of the current package's compile cycle. Functions c= alled\n" -"in the package itself will still be bound by their name, but they won't= show\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" "up as methods on your class or instances. It is very similar to\n" "namespace::clean, except it will clean all imported functions, no matte= r if\n" -"you imported them before or after you used the pragma. It will also no= t touch\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" "anything that looks like a method." msgstr "" =20 -#: gnu/packages/perl.scm:3716 +#: gnu/packages/perl.scm:3859 msgid "Keep imports and functions out of your namespace" msgstr "" =20 -#: gnu/packages/perl.scm:3717 +#: gnu/packages/perl.scm:3860 msgid "" "The namespace::clean pragma will remove all previously\n" "declared or imported symbols at the end of the current package's compil= e\n" @@ -6643,155 +7697,160 @@ msgid "" "name, but they won't show up as methods on your class or instances." msgstr "" =20 -#: gnu/packages/perl.scm:3737 +#: gnu/packages/perl.scm:3880 msgid "Numeric comparisons" msgstr "" =20 -#: gnu/packages/perl.scm:3738 +#: gnu/packages/perl.scm:3881 msgid "" "Number::Compare compiles a simple comparison to an anonymous\n" "subroutine, which you can call with a value to be tested against." msgstr "" =20 -#: gnu/packages/perl.scm:3756 +#: gnu/packages/perl.scm:3899 msgid "Generate cryptographic signatures for objects" msgstr "" =20 -#: gnu/packages/perl.scm:3757 +#: gnu/packages/perl.scm:3900 msgid "" "Object::Signature is an abstract base class that you can\n" -"inherit from in order to allow your objects to generate unique cryptogr= aphic\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" "signatures." msgstr "" =20 -#: gnu/packages/perl.scm:3779 +#: gnu/packages/perl.scm:3922 msgid "Anonymous packages" msgstr "" =20 -#: gnu/packages/perl.scm:3780 +#: gnu/packages/perl.scm:3923 msgid "" "This module allows for anonymous packages that are\n" "independent of the main namespace and only available through an object\= n" "instance, not by name." msgstr "" =20 -#: gnu/packages/perl.scm:3808 +#: gnu/packages/perl.scm:3951 msgid "Manage deprecation warnings for your distribution" msgstr "" =20 -#: gnu/packages/perl.scm:3809 +#: gnu/packages/perl.scm:3952 msgid "" "This module allows you to manage a set of deprecations for\n" "one or more modules." msgstr "" =20 -#: gnu/packages/perl.scm:3836 +#: gnu/packages/perl.scm:3979 msgid "Routines for manipulating stashes" msgstr "" =20 -#: gnu/packages/perl.scm:3837 +#: gnu/packages/perl.scm:3980 msgid "" "Manipulating stashes (Perl's symbol tables) is occasionally\n" -"necessary, but incredibly messy, and easy to get wrong. This module hi= des all\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" "of that behind a simple API." msgstr "" =20 -#: gnu/packages/perl.scm:3860 +#: gnu/packages/perl.scm:4003 msgid "Faster implementation of the Package::Stash API" msgstr "" =20 -#: gnu/packages/perl.scm:3861 +#: gnu/packages/perl.scm:4004 msgid "" "This is a backend for Package::Stash, which provides the\n" -"functionality in a way that's less buggy and much faster. It will be u= sed by\n" -"default if it's installed, and should be preferred in all environments = with a\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" "compiler." msgstr "" =20 -#: gnu/packages/perl.scm:3881 +#: gnu/packages/perl.scm:4024 msgid "Play with other peoples' lexical variables" msgstr "" =20 -#: gnu/packages/perl.scm:3882 +#: gnu/packages/perl.scm:4025 msgid "" "PadWalker is a module which allows you to inspect (and even\n" "change) lexical variables in any subroutine which called you. It will = only\n" -"show those variables which are in scope at the point of the call. PadW= alker\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" "is particularly useful for debugging." msgstr "" =20 -#: gnu/packages/perl.scm:3903 +#: gnu/packages/perl.scm:4046 msgid "Simple, compact and correct param-checking functions" msgstr "" =20 -#: gnu/packages/perl.scm:3905 +#: gnu/packages/perl.scm:4048 msgid "" "Params::Util provides a basic set of importable functions that makes\n" "checking parameters easier." msgstr "" =20 -#: gnu/packages/perl.scm:3928 +#: gnu/packages/perl.scm:4072 msgid "Validate method/function parameters" msgstr "" =20 -#: gnu/packages/perl.scm:3929 +#: gnu/packages/perl.scm:4073 msgid "" "The Params::Validate module allows you to validate method or\n" "function call parameters to an arbitrary level of specificity." msgstr "" =20 -#: gnu/packages/perl.scm:3947 +#: gnu/packages/perl.scm:4091 msgid "Create and manipulate PAR distributions" msgstr "" =20 -#: gnu/packages/perl.scm:3948 +#: gnu/packages/perl.scm:4092 msgid "" "PAR::Dist is a toolkit to create and manipulate PAR\n" "distributions." msgstr "" =20 -#: gnu/packages/perl.scm:3967 +#: gnu/packages/perl.scm:4111 msgid "" "Allows you to both load one or more modules, while setting\n" "up inheritance from those modules at the same time." msgstr "" =20 -#: gnu/packages/perl.scm:3985 +#: gnu/packages/perl.scm:4130 msgid "Path specification manipulation" msgstr "" =20 -#: gnu/packages/perl.scm:3986 +#: gnu/packages/perl.scm:4131 msgid "" "Path::Class is a module for manipulation of file and\n" "directory specifications in a cross-platform manner." msgstr "" =20 -#: gnu/packages/perl.scm:4006 +#: gnu/packages/perl.scm:4151 msgid "Check for comprehensive documentation of a module" msgstr "" =20 -#: gnu/packages/perl.scm:4007 +#: gnu/packages/perl.scm:4152 msgid "" "This module provides a mechanism for determining if the pod\n" "for a given module is comprehensive." msgstr "" =20 -#: gnu/packages/perl.scm:4024 +#: gnu/packages/perl.scm:4169 msgid "Parsing library for text in Pod format" msgstr "" =20 -#: gnu/packages/perl.scm:4025 +#: gnu/packages/perl.scm:4170 msgid "" "Pod::Simple is a Perl library for parsing text in\n" "the Pod (plain old documentation) markup language that is typically\n" "used for writing documentation for Perl and for Perl modules." msgstr "" =20 -#: gnu/packages/perl.scm:4045 +#: gnu/packages/perl.scm:4191 msgid "GNU C library compatible strftime for loggers and servers" msgstr "" =20 -#: gnu/packages/perl.scm:4046 +#: gnu/packages/perl.scm:4192 msgid "" "POSIX::strftime::Compiler provides GNU C library compatible\n" "strftime(3). But this module is not affected by the system locale. Th= is\n" @@ -6799,372 +7858,410 @@ msgid "" "applications." msgstr "" =20 -#: gnu/packages/perl.scm:4064 +#: gnu/packages/perl.scm:4210 msgid "Information about the currently running perl" msgstr "" =20 -#: gnu/packages/perl.scm:4066 +#: gnu/packages/perl.scm:4212 msgid "" "Probe::Perl provides methods for obtaining information about the\n" -"currently running perl interpreter. It originally began life as code i= n the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" "Module::Build project, but has been externalized here for general use." msgstr "" =20 -#: gnu/packages/perl.scm:4087 +#: gnu/packages/perl.scm:4234 msgid "Create read-only scalars, arrays, hashes" msgstr "" =20 -#: gnu/packages/perl.scm:4088 +#: gnu/packages/perl.scm:4235 msgid "" "This module provides a facility for creating non-modifiable\n" -"variables in Perl. This is useful for configuration files, headers, et= c. It\n" -"can also be useful as a development and debugging tool for catching upd= ates to\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" "variables that should not be changed." msgstr "" =20 -#: gnu/packages/perl.scm:4106 +#: gnu/packages/perl.scm:4253 msgid "Provide commonly requested regular expressions" msgstr "" =20 -#: gnu/packages/perl.scm:4108 +#: gnu/packages/perl.scm:4255 msgid "" "This module exports a single hash (`%RE') that stores or generates\n" "commonly needed regular expressions. Patterns currently provided inclu= de:\n" -"balanced parentheses and brackets, delimited text (with escapes), integ= ers and\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" "floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" "offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" "codes." msgstr "" =20 -#: gnu/packages/perl.scm:4138 +#: gnu/packages/perl.scm:4285 msgid "Roles, as a slice of Moose" msgstr "" =20 -#: gnu/packages/perl.scm:4139 +#: gnu/packages/perl.scm:4286 msgid "Role::Tiny is a minimalist role composition tool." msgstr "" =20 -#: gnu/packages/perl.scm:4156 +#: gnu/packages/perl.scm:4303 msgid "Call isa, can, does, and DOES safely" msgstr "" =20 -#: gnu/packages/perl.scm:4157 +#: gnu/packages/perl.scm:4304 msgid "" "This module allows you to call isa, can, does, and DOES\n" "safely on things that may not be objects." msgstr "" =20 -#: gnu/packages/perl.scm:4175 +#: gnu/packages/perl.scm:4322 msgid "Lexically-scoped resource management" msgstr "" =20 -#: gnu/packages/perl.scm:4176 +#: gnu/packages/perl.scm:4323 msgid "" "This module provides a convenient way to perform cleanup or\n" -"other forms of resource management at the end of a scope. It is partic= ularly\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" "useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" -"reference to a subroutine that is guaranteed to be called even if the t= hread\n" -"of execution is aborted prematurely. This effectively allows lexically= -scoped\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" "\"promises\" to be made that are automatically honoured by perl's garba= ge\n" "collector." msgstr "" =20 -#: gnu/packages/perl.scm:4199 +#: gnu/packages/perl.scm:4346 msgid "Infinite sets" msgstr "" =20 -#: gnu/packages/perl.scm:4200 +#: gnu/packages/perl.scm:4347 msgid "Set::Infinite is a set theory module for infinite sets." msgstr "" =20 -#: gnu/packages/perl.scm:4220 +#: gnu/packages/perl.scm:4367 msgid "Unordered collections of Perl Objects" msgstr "" =20 -#: gnu/packages/perl.scm:4221 +#: gnu/packages/perl.scm:4368 msgid "" "Set::Object provides efficient sets, unordered collections\n" "of Perl objects without duplicates for scalars and references." msgstr "" =20 -#: gnu/packages/perl.scm:4239 +#: gnu/packages/perl.scm:4386 msgid "Set operations for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4240 +#: gnu/packages/perl.scm:4387 msgid "" "The first priority of Set::Scalar is to be a convenient\n" -"interface to sets (as in: unordered collections of Perl scalars). Whil= e not\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" "designed to be slow or big, neither has it been designed to be fast or\= n" "compact." msgstr "" =20 -#: gnu/packages/perl.scm:4260 +#: gnu/packages/perl.scm:4407 msgid "Spiffy Perl Interface Framework For You" msgstr "" =20 -#: gnu/packages/perl.scm:4261 +#: gnu/packages/perl.scm:4408 msgid "" "Spiffy is a framework and methodology for doing object\n" "oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " -"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation c= lass.\n" -"It attempts to fix all the nits and warts of traditional Perl OO, in a = clean,\n" -"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as from\n" +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" "other OO languages like Python, Ruby, Java and Perl 6." msgstr "" =20 -#: gnu/packages/perl.scm:4283 +#: gnu/packages/perl.scm:4430 msgid "Temporary buffer to save bytes" msgstr "" =20 -#: gnu/packages/perl.scm:4284 +#: gnu/packages/perl.scm:4431 msgid "" "Stream::Buffered is a buffer class to store arbitrary length\n" "of byte strings and then get a seekable filehandle once everything is\n= " -"buffered. It uses PerlIO and/or temporary file to save the buffer depe= nding\n" +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" "on the length of the size." msgstr "" =20 -#: gnu/packages/perl.scm:4304 +#: gnu/packages/perl.scm:4451 msgid "Turn on strict and make all warnings fatal" msgstr "" =20 -#: gnu/packages/perl.scm:4305 +#: gnu/packages/perl.scm:4452 msgid "" "Strictures turns on strict and make all warnings fatal when\n" "run from within a source-controlled directory." msgstr "" =20 -#: gnu/packages/perl.scm:4323 +#: gnu/packages/perl.scm:4470 msgid "Camelcase and de-camelcase" msgstr "" =20 -#: gnu/packages/perl.scm:4324 +#: gnu/packages/perl.scm:4471 msgid "" "This module may be used to convert from under_score text to\n" "CamelCase and back again." msgstr "" =20 -#: gnu/packages/perl.scm:4344 +#: gnu/packages/perl.scm:4491 msgid "Rewrite strings based on a set of known prefixes" msgstr "" =20 -#: gnu/packages/perl.scm:4345 +#: gnu/packages/perl.scm:4492 msgid "" "This module allows you to rewrite strings based on a set of\n" "known prefixes." msgstr "" =20 -#: gnu/packages/perl.scm:4367 +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 msgid "Sophisticated exporter for custom-built routines" msgstr "" =20 -#: gnu/packages/perl.scm:4369 +#: gnu/packages/perl.scm:4538 msgid "" "Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " "custom-built routines." msgstr "" =20 -#: gnu/packages/perl.scm:4388 +#: gnu/packages/perl.scm:4557 msgid "Only use Sub::Exporter if you need it" msgstr "" =20 -#: gnu/packages/perl.scm:4389 +#: gnu/packages/perl.scm:4558 msgid "" "Sub::Exporter is an incredibly powerful module, but with\n" "that power comes great responsibility, as well as some runtime penaltie= s.\n" -"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t use\n" -"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter\"\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" "if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" "renaming exports, if they try to use them." msgstr "" =20 -#: gnu/packages/perl.scm:4411 +#: gnu/packages/perl.scm:4580 msgid "Retrieve names of code references" msgstr "" =20 -#: gnu/packages/perl.scm:4412 +#: gnu/packages/perl.scm:4581 msgid "" "Sub::Identify allows you to retrieve the real name of code\n" "references." msgstr "" =20 -#: gnu/packages/perl.scm:4431 +#: gnu/packages/perl.scm:4600 msgid "Install subroutines into packages easily" msgstr "" =20 -#: gnu/packages/perl.scm:4433 +#: gnu/packages/perl.scm:4602 msgid "" "Sub::Install makes it easy to install subroutines into packages without= \n" -"the unsightly mess of C or typeglobs lying about where just = anyone\n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" "can see them." msgstr "" =20 -#: gnu/packages/perl.scm:4454 +#: gnu/packages/perl.scm:4623 msgid "(Re)name a sub" msgstr "" =20 -#: gnu/packages/perl.scm:4455 +#: gnu/packages/perl.scm:4624 msgid "" "Assigns a new name to referenced sub. If package\n" -"specification is omitted in the name, then the current package is used.= The\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" "return value is the sub." msgstr "" =20 -#: gnu/packages/perl.scm:4474 +#: gnu/packages/perl.scm:4643 msgid "Apparently run a function in a higher stack frame" msgstr "" =20 -#: gnu/packages/perl.scm:4475 +#: gnu/packages/perl.scm:4644 msgid "" "Like Tcl's uplevel() function, but not quite so dangerous.\n" "The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" "uplevel() are avoided." msgstr "" =20 -#: gnu/packages/perl.scm:4494 +#: gnu/packages/perl.scm:4663 msgid "Perl extension for generating SVG documents" msgstr "" =20 -#: gnu/packages/perl.scm:4495 +#: gnu/packages/perl.scm:4664 msgid "" "SVG is a Perl module which generates a nested data structure\n" -"containing the DOM representation of an SVG (Scalable Vector Graphics) = image.\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" "Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" "access the DOM object, create and access Javascript, and generate SMIL\= n" "animation content." msgstr "" =20 -#: gnu/packages/perl.scm:4514 +#: gnu/packages/perl.scm:4683 msgid "Perl extension for getting CPU information" msgstr "" =20 -#: gnu/packages/perl.scm:4516 +#: gnu/packages/perl.scm:4685 msgid "" "In responce to a post on perlmonks.org, a module for counting the numbe= r\n" "of CPU's on a system. Support has now also been added for type of CPU = and\n" "clock speed." msgstr "" =20 -#: gnu/packages/perl.scm:4538 +#: gnu/packages/perl.scm:4707 msgid "Get full hostname in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4539 +#: gnu/packages/perl.scm:4708 msgid "" "Sys::Hostname::Long tries very hard to get the full hostname\n" "of a system." msgstr "" =20 -#: gnu/packages/perl.scm:4557 +#: gnu/packages/perl.scm:4726 msgid "Ensure that a platform has weaken support" msgstr "" =20 -#: gnu/packages/perl.scm:4558 +#: gnu/packages/perl.scm:4727 msgid "" "One recurring problem in modules that use Scalar::Util's\n" "weaken function is that it is not present in the pure-perl variant. If= \n" -"Scalar::Util is not available at all, it will issue a normal dependency= on the\n" -"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and the\n" -"module does not have weaken, the install will bail out altogether with = a long\n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" "error encouraging the user to seek support." msgstr "" =20 -#: gnu/packages/perl.scm:4583 +#: gnu/packages/perl.scm:4752 msgid "Template processing system for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4584 +#: gnu/packages/perl.scm:4753 msgid "" "The Template Toolkit is a collection of modules which\n" "implement an extensible template processing system. It was originally\= n" -"designed and remains primarily useful for generating dynamic web conten= t, but\n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" "it can be used equally well for processing any other kind of text based= \n" "documents: HTML, XML, POD, PostScript, LaTeX, and so on." msgstr "" =20 -#: gnu/packages/perl.scm:4607 +#: gnu/packages/perl.scm:4776 msgid "Profiling for Template Toolkit" msgstr "" =20 -#: gnu/packages/perl.scm:4608 +#: gnu/packages/perl.scm:4777 msgid "" "Template::Timer provides inline profiling of the template\n" "processing in Perl code." msgstr "" =20 -#: gnu/packages/perl.scm:4626 +#: gnu/packages/perl.scm:4795 msgid "Detect encoding of the current terminal" msgstr "" =20 -#: gnu/packages/perl.scm:4627 +#: gnu/packages/perl.scm:4796 msgid "" "Term::Encoding is a simple module to detect the encoding of\n" "the current terminal expects in various ways." msgstr "" =20 -#: gnu/packages/perl.scm:4651 +#: gnu/packages/perl.scm:4820 msgid "Progress meter on a standard terminal" msgstr "" =20 -#: gnu/packages/perl.scm:4652 +#: gnu/packages/perl.scm:4821 msgid "" "Term::ProgressBar provides a simple progress bar on the\n" -"terminal, to let the user know that something is happening, roughly how= much\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" "stuff has been done, and maybe an estimate at how long remains." msgstr "" =20 -#: gnu/packages/perl.scm:4675 +#: gnu/packages/perl.scm:4844 msgid "Progress meter if run interactively" msgstr "" =20 -#: gnu/packages/perl.scm:4676 +#: gnu/packages/perl.scm:4845 msgid "" "Term::ProgressBar is a wonderful module for showing progress\n" -"bars on the terminal. This module acts very much like that module when= it is\n" -"run interactively. However, when it is not run interactively (for exam= ple, as\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" "a cron job) then it does not show the progress bar." msgstr "" =20 -#: gnu/packages/perl.scm:4698 +#: gnu/packages/perl.scm:4867 msgid "Simple progress bars" msgstr "" =20 -#: gnu/packages/perl.scm:4699 +#: gnu/packages/perl.scm:4868 msgid "" "Term::ProgressBar::Simple tells you how much work has been\n" "done, how much is left to do, and estimate how long it will take." msgstr "" =20 -#: gnu/packages/perl.scm:4717 +#: gnu/packages/perl.scm:4886 msgid "Simple terminal control" msgstr "" =20 -#: gnu/packages/perl.scm:4718 +#: gnu/packages/perl.scm:4887 msgid "" "This module, ReadKey, provides ioctl control for terminals\n" -"so the input modes can be changed (thus allowing reads of a single char= acter\n" -"at a time), and also provides non-blocking reads of stdin, as well as s= everal\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" "other terminal related features, including retrieval/modification of th= e\n" "screen size, and retrieval/modification of the control characters." msgstr "" =20 -#: gnu/packages/perl.scm:4745 +#: gnu/packages/perl.scm:4914 msgid "Data-driven testing framework for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4746 +#: gnu/packages/perl.scm:4915 msgid "" "Test::Base gives a way to trivially write your own test\n" "framework base class. It concentrates on offering reusable data driven= \n" "patterns, so that you can write tests with a minimum of code." msgstr "" =20 -#: gnu/packages/perl.scm:4777 +#: gnu/packages/perl.scm:4946 msgid "Check for uncleaned imports" msgstr "" =20 -#: gnu/packages/perl.scm:4778 +#: gnu/packages/perl.scm:4947 msgid "" "This module lets you check your module's namespaces for\n" "imported functions you might have forgotten to remove with\n" @@ -7172,276 +8269,294 @@ msgid "" "called as methods, which usually isn't want you want." msgstr "" =20 -#: gnu/packages/perl.scm:4798 +#: gnu/packages/perl.scm:4967 msgid "Flexible deep comparison for the Test::Builder framework" msgstr "" =20 -#: gnu/packages/perl.scm:4800 +#: gnu/packages/perl.scm:4969 msgid "" "Test::Deep compares two structures by going through each level, ensurin= g\n" -"that the values match, that arrays and hashes have the same elements an= d that\n" -"references are blessed into the correct class. It also handles circula= r data\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" "structures without getting caught in an infinite loop." msgstr "" =20 -#: gnu/packages/perl.scm:4825 +#: gnu/packages/perl.scm:4996 msgid "Test strings and data structures and show differences" msgstr "" =20 -#: gnu/packages/perl.scm:4826 +#: gnu/packages/perl.scm:4997 msgid "" "This module exports three test functions and four diff-style\n" "functions." msgstr "" =20 -#: gnu/packages/perl.scm:4847 +#: gnu/packages/perl.scm:5018 msgid "Perl extension for maintaining test directories" msgstr "" =20 -#: gnu/packages/perl.scm:4848 +#: gnu/packages/perl.scm:5019 msgid "" "Testing code can involve making sure that files are created\n" -"and deleted as expected. Doing this manually can be error prone, as it= 's easy\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" "to forget a file, or miss that some unexpected file was added. This mo= dule\n" -"simplifies maintaining test directories by tracking their status as the= y are\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" "modified or tested with this API, making it simple to test both individ= ual\n" "files, as well as to verify that there are no missing or unknown files.= " msgstr "" =20 -#: gnu/packages/perl.scm:4874 +#: gnu/packages/perl.scm:5045 msgid "Test exception based code" msgstr "" =20 -#: gnu/packages/perl.scm:4875 +#: gnu/packages/perl.scm:5046 msgid "" "This module provides a few convenience methods for testing\n" -"exception based code. It is built with Test::Builder and plays happily= with\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" "Test::More and friends." msgstr "" =20 -#: gnu/packages/perl.scm:4895 +#: gnu/packages/perl.scm:5066 msgid "Simple helpers for testing code with exceptions" msgstr "" =20 -#: gnu/packages/perl.scm:4896 +#: gnu/packages/perl.scm:5067 msgid "" "Test::Fatal is an alternative to the popular\n" -"Test::Exception. It does much less, but should allow greater flexibili= ty in\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" "testing exception-throwing code with about the same amount of typing." msgstr "" =20 -#: gnu/packages/perl.scm:4926 +#: gnu/packages/perl.scm:5097 msgid "Run Perl standard test scripts with statistics" msgstr "" =20 -#: gnu/packages/perl.scm:4927 +#: gnu/packages/perl.scm:5098 msgid "" "Simple test harness which allows tests to be run and results\n" "automatically aggregated and output to STDOUT." msgstr "" =20 -#: gnu/packages/perl.scm:4945 +#: gnu/packages/perl.scm:5116 msgid "Traces memory leaks in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4946 +#: gnu/packages/perl.scm:5117 msgid "" "Test::LeakTrace provides several functions that trace memory\n" "leaks. This module scans arenas, the memory allocation system, so it c= an\n" "detect any leaked SVs in given blocks." msgstr "" =20 -#: gnu/packages/perl.scm:4965 +#: gnu/packages/perl.scm:5136 msgid "Tests strings for equality, with more helpful failures" msgstr "" =20 -#: gnu/packages/perl.scm:4966 +#: gnu/packages/perl.scm:5137 msgid "" "This module provides some drop-in replacements for the\n" "string comparison functions of Test::More, but which are more suitable = when\n" "you test against long strings." msgstr "" =20 -#: gnu/packages/perl.scm:4993 +#: gnu/packages/perl.scm:5165 msgid "Emulate troublesome interfaces in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:4994 +#: gnu/packages/perl.scm:5166 msgid "" "Test::MockObject allows you to create objects that conform\n" -"to particular interfaces with very little code. You don't have to reim= plement\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" "the behavior, just the input and the output." msgstr "" =20 -#: gnu/packages/perl.scm:5013 +#: gnu/packages/perl.scm:5185 msgid "Replaces actual time with simulated time" msgstr "" =20 -#: gnu/packages/perl.scm:5014 +#: gnu/packages/perl.scm:5186 msgid "" "This module was created to enable test suites to test code\n" -"at specific points in time. Specifically it overrides localtime, gmtim= e and\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" "time at compile time and then relies on the user supplying a mock time = via\n" -"set_relative_time, set_absolute_time or set_fixed_time to alter future = calls\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" "to gmtime,time or localtime." msgstr "" =20 -#: gnu/packages/perl.scm:5041 +#: gnu/packages/perl.scm:5213 msgid "Most commonly needed test functions and features" msgstr "" =20 -#: gnu/packages/perl.scm:5042 +#: gnu/packages/perl.scm:5214 msgid "" "This module provides the most commonly used testing\n" -"functions, along with automatically turning on strict and warning and g= ives a\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" "bit more fine-grained control over test suites." msgstr "" =20 -#: gnu/packages/perl.scm:5060 +#: gnu/packages/perl.scm:5232 msgid "Ensure no warnings are produced while testing" msgstr "" =20 -#: gnu/packages/perl.scm:5062 +#: gnu/packages/perl.scm:5234 msgid "" "This modules causes any warnings during testing to be captured and\n" "stored. It automatically adds an extra test that will run when your sc= ript\n" "ends to check that there were no warnings. If there were any warnings,= the\n" -"test will fail and output diagnostics of where, when and what the warni= ng was,\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" "including a stack trace of what was going on when it occurred." msgstr "" =20 -#: gnu/packages/perl.scm:5087 +#: gnu/packages/perl.scm:5259 msgid "Utilities to test STDOUT and STDERR messages" msgstr "" =20 -#: gnu/packages/perl.scm:5089 +#: gnu/packages/perl.scm:5261 msgid "" "Test::Output provides a simple interface for testing output sent to\n" -"STDOUT or STDERR. A number of different utilities are included to try = and be\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" "as flexible as possible to the tester." msgstr "" =20 -#: gnu/packages/perl.scm:5110 +#: gnu/packages/perl.scm:5283 msgid "Check for POD errors in files" msgstr "" =20 -#: gnu/packages/perl.scm:5111 +#: gnu/packages/perl.scm:5284 msgid "" "Check POD files for errors or warnings in a test file, using\n" "Pod::Simple to do the heavy lifting." msgstr "" =20 -#: gnu/packages/perl.scm:5131 +#: gnu/packages/perl.scm:5304 msgid "Check for pod coverage" msgstr "" =20 -#: gnu/packages/perl.scm:5132 +#: gnu/packages/perl.scm:5305 msgid "" "This module adds a test to your Perl distribution which\n" "checks for pod coverage of all appropriate files." msgstr "" =20 -#: gnu/packages/perl.scm:5150 +#: gnu/packages/perl.scm:5323 msgid "Checks to see if the module can be loaded" msgstr "" =20 -#: gnu/packages/perl.scm:5151 +#: gnu/packages/perl.scm:5324 msgid "" "Test::Requires checks to see if the module can be loaded.\n" "If this fails, then rather than failing tests this skips all tests." msgstr "" =20 -#: gnu/packages/perl.scm:5170 +#: gnu/packages/perl.scm:5343 msgid "Basic cross-platform tests for scripts" msgstr "" =20 -#: gnu/packages/perl.scm:5172 +#: gnu/packages/perl.scm:5345 msgid "" "The intent of the Test::Script module is to provide a series of basic\n= " -"tests for 80% of the testing you will need to do for scripts in the scr= ipt (or\n" +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" "bin as is also commonly used) paths of your Perl distribution." msgstr "" =20 -#: gnu/packages/perl.scm:5195 +#: gnu/packages/perl.scm:5368 msgid "Fork test in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5196 +#: gnu/packages/perl.scm:5369 msgid "" "Test::SharedFork is a utility module for Test::Builder. It\n" "makes fork(2) safe to use in test cases." msgstr "" =20 -#: gnu/packages/perl.scm:5212 +#: gnu/packages/perl.scm:5385 msgid "Basic utilities for writing tests" msgstr "" =20 -#: gnu/packages/perl.scm:5214 +#: gnu/packages/perl.scm:5387 msgid "Test::Simple contains basic utilities for writing tests." msgstr "" =20 -#: gnu/packages/perl.scm:5231 +#: gnu/packages/perl.scm:5404 msgid "Simplify running Test::Builder tests" msgstr "" =20 -#: gnu/packages/perl.scm:5233 +#: gnu/packages/perl.scm:5406 msgid "" "Test::Tester allows testing of test modules based on Test::Builder with= \n" "a minimum of effort." msgstr "" =20 -#: gnu/packages/perl.scm:5257 +#: gnu/packages/perl.scm:5432 msgid "Trap exit codes, exceptions, output, etc." msgstr "" =20 -#: gnu/packages/perl.scm:5258 +#: gnu/packages/perl.scm:5433 msgid "" "This module is primarily (but not exclusively) for use in\n" -"test scripts: A block eval configurable and extensible but by default t= rapping\n" -"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return v= alues\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" "from boxed blocks of test code." msgstr "" =20 -#: gnu/packages/perl.scm:5278 +#: gnu/packages/perl.scm:5453 msgid "UTF-8 testing in Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5279 +#: gnu/packages/perl.scm:5454 msgid "" "This module is a collection of tests useful for dealing with\n" -"UTF-8 strings in Perl. This module has two types of tests: The validit= y tests\n" -"check if a string is valid and not corrupt, whereas the characteristics= tests\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" "will check that string has a given set of characteristics." msgstr "" =20 -#: gnu/packages/perl.scm:5301 +#: gnu/packages/perl.scm:5476 msgid "Perl extension to test methods for warnings" msgstr "" =20 -#: gnu/packages/perl.scm:5302 +#: gnu/packages/perl.scm:5477 msgid "" "This module provides a few convenience methods for testing\n" "warning based code." msgstr "" =20 -#: gnu/packages/perl.scm:5320 +#: gnu/packages/perl.scm:5495 msgid "Test for warnings and the lack of them" msgstr "" =20 -#: gnu/packages/perl.scm:5321 +#: gnu/packages/perl.scm:5496 msgid "" "This module is intended to be used as a drop-in replacement\n" -"for Test::NoWarnings. It also adds an extra test, but runs this test b= efore\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" "done_testing calculates the test count, rather than after. It does thi= s by\n" "hooking into done_testing as well as via an END block. You can declare= a\n" "plan, or not, and things will still Just Work." msgstr "" =20 -#: gnu/packages/perl.scm:5342 +#: gnu/packages/perl.scm:5517 msgid "Test fallback behaviour in absence of modules" msgstr "" =20 -#: gnu/packages/perl.scm:5343 +#: gnu/packages/perl.scm:5518 msgid "" "This module allows you to deliberately hide modules from a\n" "program even though they are installed. This is mostly useful for test= ing\n" @@ -7449,312 +8564,336 @@ msgid "" "installed." msgstr "" =20 -#: gnu/packages/perl.scm:5369 +#: gnu/packages/perl.scm:5545 msgid "Dynamic generation of tests" msgstr "" =20 -#: gnu/packages/perl.scm:5370 +#: gnu/packages/perl.scm:5546 msgid "" "The Test::WriteVariants module provides for the dynamic\n" "generation of tests in nested combinations of contexts." msgstr "" =20 -#: gnu/packages/perl.scm:5390 +#: gnu/packages/perl.scm:5566 msgid "Testing module for YAML implementations" msgstr "" =20 -#: gnu/packages/perl.scm:5391 +#: gnu/packages/perl.scm:5567 msgid "" "Test::YAML is a subclass of Test::Base with YAML specific\n" "support." msgstr "" =20 -#: gnu/packages/perl.scm:5409 +#: gnu/packages/perl.scm:5586 msgid "Align text" msgstr "" =20 -#: gnu/packages/perl.scm:5410 +#: gnu/packages/perl.scm:5587 msgid "" "Text::Aligner exports a single function, align(), which is\n" "used to justify strings to various alignment styles." msgstr "" =20 -#: gnu/packages/perl.scm:5428 +#: gnu/packages/perl.scm:5605 msgid "Extract delimited text sequences from strings" msgstr "" =20 -#: gnu/packages/perl.scm:5429 +#: gnu/packages/perl.scm:5606 msgid "" "The Text::Balanced module can be used to extract delimited\n" "text sequences from strings." msgstr "" =20 -#: gnu/packages/perl.scm:5447 +#: gnu/packages/perl.scm:5624 msgid "Manipulate comma-separated values" msgstr "" =20 -#: gnu/packages/perl.scm:5448 +#: gnu/packages/perl.scm:5625 msgid "" "Text::CSV provides facilities for the composition and\n" -"decomposition of comma-separated values. An instance of the Text::CSV = class\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" "can combine fields into a CSV string and parse a CSV string into fields= ." msgstr "" =20 -#: gnu/packages/perl.scm:5469 +#: gnu/packages/perl.scm:5646 msgid "Perform diffs on files and record sets" msgstr "" =20 -#: gnu/packages/perl.scm:5470 +#: gnu/packages/perl.scm:5647 msgid "" "Text::Diff provides a basic set of services akin to the GNU\n" -"diff utility. It is not anywhere near as feature complete as GNU diff,= but it\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" "is better integrated with Perl and available on all platforms. It is o= ften\n" "faster than shelling out to a system's diff executable for small files,= and\n" "generally slower on larger files." msgstr "" =20 -#: gnu/packages/perl.scm:5491 +#: gnu/packages/perl.scm:5669 msgid "Match globbing patterns against text" msgstr "" =20 -#: gnu/packages/perl.scm:5492 +#: gnu/packages/perl.scm:5670 msgid "" "Text::Glob implements glob(3) style matching that can be\n" -"used to match against text, rather than fetching names from a filesyste= m. If\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" "you want to do full file globbing use the File::Glob module instead." msgstr "" =20 -#: gnu/packages/perl.scm:5511 +#: gnu/packages/perl.scm:5689 msgid "Simple ASCII tables" msgstr "" =20 -#: gnu/packages/perl.scm:5512 +#: gnu/packages/perl.scm:5690 msgid "Text::SimpleTable draws simple ASCII tables." msgstr "" =20 -#: gnu/packages/perl.scm:5531 +#: gnu/packages/perl.scm:5711 msgid "Organize Data in Tables" msgstr "" =20 -#: gnu/packages/perl.scm:5532 +#: gnu/packages/perl.scm:5712 msgid "Text::Table renders plaintext tables." msgstr "" =20 -#: gnu/packages/perl.scm:5549 +#: gnu/packages/perl.scm:5729 msgid "Provide plain ASCII transliterations of Unicode text" msgstr "" =20 -#: gnu/packages/perl.scm:5550 +#: gnu/packages/perl.scm:5730 msgid "" "Text::Unidecode provides a function, unidecode(...) that\n" -"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., the\n" -"universally displayable characters between 0x00 and 0x7F). The represe= ntation\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" "is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" "letters, the pronunciation expressed by the text in some other writing\= n" "system." msgstr "" =20 -#: gnu/packages/perl.scm:5578 +#: gnu/packages/perl.scm:5758 msgid "Role for classes that can be thrown" msgstr "" =20 -#: gnu/packages/perl.scm:5579 +#: gnu/packages/perl.scm:5759 msgid "" "Throwable is a role for classes that are meant to be thrown\n" "as exceptions to standard program flow." msgstr "" =20 -#: gnu/packages/perl.scm:5597 +#: gnu/packages/perl.scm:5778 msgid "Ordered associative arrays for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5598 +#: gnu/packages/perl.scm:5779 msgid "" "This Perl module implements Perl hashes that preserve the\n" -"order in which the hash elements were added. The order is not affected= when\n" -"values corresponding to existing keys in the IxHash are changed. The e= lements\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" "can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" "operations can also be performed on the IxHash." msgstr "" =20 -#: gnu/packages/perl.scm:5621 +#: gnu/packages/perl.scm:5802 msgid "Tie to an existing Perl object" msgstr "" =20 -#: gnu/packages/perl.scm:5622 +#: gnu/packages/perl.scm:5803 msgid "" "This class provides a tie constructor that returns the\n" -"object it was given as it's first argument. This way side effects of c= alling\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" "$object->TIEHASH are avoided." msgstr "" =20 -#: gnu/packages/perl.scm:5644 +#: gnu/packages/perl.scm:5825 msgid "English expression of durations" msgstr "" =20 -#: gnu/packages/perl.scm:5645 +#: gnu/packages/perl.scm:5826 msgid "" "This module provides functions for expressing durations in\n" "rounded or exact terms." msgstr "" =20 -#: gnu/packages/perl.scm:5667 +#: gnu/packages/perl.scm:5848 msgid "Parse time duration strings" msgstr "" =20 -#: gnu/packages/perl.scm:5668 +#: gnu/packages/perl.scm:5849 msgid "" "Time::Duration::Parse is a module to parse human readable\n" "duration strings like \"2 minutes\" and \"3 seconds\" to seconds." msgstr "" =20 -#: gnu/packages/perl.scm:5686 +#: gnu/packages/perl.scm:5867 msgid "Efficiently compute time from local and GMT time" msgstr "" =20 -#: gnu/packages/perl.scm:5687 +#: gnu/packages/perl.scm:5868 msgid "" "This module provides functions that are the inverse of\n" "built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" -"six-element array, and return the corresponding time(2) value in second= s since\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" "the system epoch." msgstr "" =20 -#: gnu/packages/perl.scm:5707 +#: gnu/packages/perl.scm:5888 msgid "Date parsing/formatting subroutines" msgstr "" =20 -#: gnu/packages/perl.scm:5708 +#: gnu/packages/perl.scm:5889 msgid "" "This module provides routines for parsing date string into\n" "time values and formatting dates into ASCII strings." msgstr "" =20 -#: gnu/packages/perl.scm:5728 +#: gnu/packages/perl.scm:5911 msgid "Shift and scale time" msgstr "" =20 -#: gnu/packages/perl.scm:5729 +#: gnu/packages/perl.scm:5912 msgid "" "This module allows you to speed up your sleep(), alarm(),\n" "and time() calls." msgstr "" =20 -#: gnu/packages/perl.scm:5752 +#: gnu/packages/perl.scm:5935 msgid "Simple tree object" msgstr "" =20 -#: gnu/packages/perl.scm:5753 +#: gnu/packages/perl.scm:5936 msgid "" "This module in a fully object-oriented implementation of a\n" "simple n-ary tree." msgstr "" =20 -#: gnu/packages/perl.scm:5776 +#: gnu/packages/perl.scm:5960 msgid "Factory object for dispensing Visitor objects" msgstr "" =20 -#: gnu/packages/perl.scm:5777 +#: gnu/packages/perl.scm:5961 msgid "" "This module is a factory for dispensing\n" "Tree::Simple::Visitor::* objects." msgstr "" =20 -#: gnu/packages/perl.scm:5795 +#: gnu/packages/perl.scm:5979 msgid "Minimal try/catch with proper preservation of $@" msgstr "" =20 -#: gnu/packages/perl.scm:5796 +#: gnu/packages/perl.scm:5980 msgid "" "This module provides bare bones try/catch/finally statements\n" "that are designed to minimize common mistakes with eval blocks, and not= hing\n" "else." msgstr "" =20 -#: gnu/packages/perl.scm:5817 +#: gnu/packages/perl.scm:6001 msgid "Data types for common serialisation formats" msgstr "" =20 -#: gnu/packages/perl.scm:5818 +#: gnu/packages/perl.scm:6002 msgid "" "This module provides some extra datatypes that are used by\n" "common serialisation formats such as JSON or CBOR." msgstr "" =20 -#: gnu/packages/perl.scm:5836 +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 msgid "UNIVERSAL::can() reimplementation" msgstr "" =20 -#: gnu/packages/perl.scm:5837 +#: gnu/packages/perl.scm:6043 msgid "" "This module attempts to work around people calling\n" "UNIVERSAL::can() as a function, which it is not." msgstr "" =20 -#: gnu/packages/perl.scm:5857 +#: gnu/packages/perl.scm:6063 msgid "UNIVERSAL::isa() reimplementation" msgstr "" =20 -#: gnu/packages/perl.scm:5858 +#: gnu/packages/perl.scm:6064 msgid "" "This module attempts to recover from people calling\n" "UNIVERSAL::isa as a function." msgstr "" =20 -#: gnu/packages/perl.scm:5876 +#: gnu/packages/perl.scm:6082 msgid "Associate user-defined magic to variables from Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5877 +#: gnu/packages/perl.scm:6083 msgid "" "Magic is Perl's way of enhancing variables. This mechanism\n" "lets the user add extra data to any variable and hook syntactical\n" -"operations (such as access, assignment or destruction) that can be appl= ied to\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" "it. With this module, you can add your own magic to any variable witho= ut\n" "having to write a single line of XS." msgstr "" =20 -#: gnu/packages/perl.scm:5900 +#: gnu/packages/perl.scm:6106 msgid "YAML for Perl" msgstr "" =20 -#: gnu/packages/perl.scm:5901 +#: gnu/packages/perl.scm:6107 msgid "" "The YAML.pm module implements a YAML Loader and Dumper based\n" "on the YAML 1.0 specification." msgstr "" =20 -#: gnu/packages/perl.scm:5924 +#: gnu/packages/perl.scm:6130 msgid "Read/Write YAML files" msgstr "" =20 -#: gnu/packages/perl.scm:5925 +#: gnu/packages/perl.scm:6131 msgid "" "YAML::Tiny is a perl class for reading and writing\n" -"YAML-style files, written with as little code as possible, reducing loa= d time\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" "and memory overhead." msgstr "" =20 -#: gnu/packages/perl.scm:5952 +#: gnu/packages/perl.scm:6158 msgid "Distribution metadata for a CPAN dist" msgstr "" =20 -#: gnu/packages/perl.scm:5953 +#: gnu/packages/perl.scm:6159 msgid "" "Software distributions released to the CPAN include a\n" "META.json or, for older distributions, META.yml, which describes the\n" -"distribution, its contents, and the requirements for building and insta= lling\n" +"distribution, its contents, and the requirements for building and " +"installing\n" "the distribution. The data structure stored in the META.json file is\n= " "described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " "represent this distribution metadata (or distmeta), along with some hel= pful\n" "methods for interrogating that data." msgstr "" =20 -#: gnu/packages/perl.scm:5976 +#: gnu/packages/perl.scm:6182 msgid "Set of version requirements for a CPAN dist" msgstr "" =20 -#: gnu/packages/perl.scm:5977 +#: gnu/packages/perl.scm:6183 msgid "" "A CPAN::Meta::Requirements object models a set of version\n" "constraints like those specified in the META.yml or META.json files in = CPAN\n" @@ -7763,50 +8902,55 @@ msgid "" "representation." msgstr "" =20 -#: gnu/packages/perl.scm:6000 +#: gnu/packages/perl.scm:6206 msgid "Read and write a subset of YAML for CPAN Meta files" msgstr "" =20 -#: gnu/packages/perl.scm:6001 +#: gnu/packages/perl.scm:6207 msgid "" "This module implements a subset of the YAML specification\n" "for use in reading and writing CPAN metadata files like META.yml and\n" "MYMETA.yml." msgstr "" =20 -#: gnu/packages/perl.scm:6022 +#: gnu/packages/perl.scm:6228 msgid "Build and install Perl modules" msgstr "" =20 -#: gnu/packages/perl.scm:6023 +#: gnu/packages/perl.scm:6229 msgid "" -"\"Module::Build\" is a system for building, testing, and\n" -"installing Perl modules. It is meant to be an alternative to\n" -"\"ExtUtils::MakeMaker\". Developers may alter the behavior of the modu= le\n" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" "through subclassing in a much more straightforward way than with\n" -"\"MakeMaker\". It also does not require a \"make\" on your system - mo= st of\n" -"the \"Module::Build\" code is pure-perl and written in a cross-platform= way." +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." msgstr "" =20 -#: gnu/packages/perl.scm:6047 +#: gnu/packages/perl.scm:6254 msgid "Parse META.yml and META.json CPAN metadata files" msgstr "" =20 -#: gnu/packages/perl.scm:6048 +#: gnu/packages/perl.scm:6255 msgid "" "Parse::CPAN::Meta is a parser for META.json and META.yml\n" "files, using JSON::PP and/or CPAN::Meta::YAML." msgstr "" =20 -#: gnu/packages/perl.scm:6066 +#: gnu/packages/perl.scm:6273 msgid "Common Scalar and List utility subroutines" msgstr "" =20 -#: gnu/packages/perl.scm:6067 +#: gnu/packages/perl.scm:6274 msgid "" "This package contains a selection of subroutines that people\n" -"have expressed would be nice to have in the perl core, but the usage wo= uld not\n" -"really be high enough to warrant the use of a keyword, and the size so = small\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" "such that being individual extensions would be wasteful." msgstr "" =20 @@ -7837,7 +8981,8 @@ msgstr "" #: gnu/packages/photo.scm:109 msgid "" "This is the library backend for gphoto2. It contains the code for PTP,= \n" -"MTP, and other vendor specific protocols for controlling and transferri= ng data\n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" "from digital cameras." msgstr "" =20 @@ -7884,15 +9029,16 @@ msgid "" "scene to produce an image that looks much like a tone-mapped image." msgstr "" =20 -#: gnu/packages/qemu.scm:119 -msgid "Machine emulator and virtualizer (without GUI)" +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" msgstr "" =20 -#: gnu/packages/qemu.scm:121 +#: gnu/packages/qemu.scm:153 msgid "" "QEMU is a generic machine emulator and virtualizer.\n" "\n" -"When used as a machine emulator, QEMU can run OSes and programs made fo= r one\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" "machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" "using dynamic translation, it achieves very good performance.\n" "\n" @@ -7903,8 +9049,8 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" =20 -#: gnu/packages/qemu.scm:143 -msgid "Machine emulator and virtualizer" +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" msgstr "" =20 #: gnu/packages/ratpoison.scm:85 @@ -7952,22 +9098,22 @@ msgid "" "package contains the library and drivers." msgstr "" =20 -#: gnu/packages/scheme.scm:132 +#: gnu/packages/scheme.scm:169 msgid "A Scheme implementation with integrated editor and debugger" msgstr "" =20 -#: gnu/packages/scheme.scm:134 +#: gnu/packages/scheme.scm:171 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It a= lso\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" =20 -#: gnu/packages/scheme.scm:217 +#: gnu/packages/scheme.scm:254 msgid "Efficient Scheme compiler" msgstr "" =20 -#: gnu/packages/scheme.scm:219 +#: gnu/packages/scheme.scm:256 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling\n" "Scheme based programming style where C(++) is usually\n" @@ -7979,86 +9125,93 @@ msgid "" "Scheme and C programs and between Scheme and Java programs." msgstr "" =20 -#: gnu/packages/scheme.scm:262 +#: gnu/packages/scheme.scm:300 msgid "Multi-tier programming language for the Web 2.0" msgstr "" =20 -#: gnu/packages/scheme.scm:264 +#: gnu/packages/scheme.scm:302 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\= n" -"applications in many fields such as multimedia (web galleries, music pl= ayers,\n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" "...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" =20 -#: gnu/packages/scheme.scm:304 +#: gnu/packages/scheme.scm:342 msgid "R5RS Scheme implementation that compiles native code via C" msgstr "" =20 -#: gnu/packages/scheme.scm:306 +#: gnu/packages/scheme.scm:344 msgid "" "CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" "produces portable and efficient C, supports almost all of the R5RS Sche= me\n" "language standard, and includes many enhancements and extensions." msgstr "" =20 -#: gnu/packages/scheme.scm:325 +#: gnu/packages/scheme.scm:363 msgid "Scheme implementation using a bytecode interpreter" msgstr "" =20 -#: gnu/packages/scheme.scm:327 +#: gnu/packages/scheme.scm:365 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\= n" "implementation techniques and as an expository tool." msgstr "" =20 -#: gnu/packages/scheme.scm:403 +#: gnu/packages/scheme.scm:441 msgid "Implementation of Scheme and related languages" msgstr "" =20 -#: gnu/packages/scheme.scm:405 +#: gnu/packages/scheme.scm:443 msgid "" "Racket is an implementation of the Scheme programming language (R5RS an= d\n" -"R6RS) and related languages, such as Typed Racket. It features a compi= ler and\n" -"a virtual machine with just-in-time native compilation, as well as a la= rge set\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" "of libraries." msgstr "" =20 -#: gnu/packages/scheme.scm:443 +#: gnu/packages/scheme.scm:481 msgid "Efficient Scheme interpreter and compiler" msgstr "" =20 -#: gnu/packages/scheme.scm:445 +#: gnu/packages/scheme.scm:483 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" "the complete execution and debugging environment. The compiler is the\= n" -"interpreter extended with the capability of generating executable files= . The\n" -"compiler can produce standalone executables or compiled modules which c= an be\n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" "loaded at run time. Interpreted code and compiled code can be freely\n= " "mixed." msgstr "" =20 -#: gnu/packages/scheme.scm:482 +#: gnu/packages/scheme.scm:520 msgid "Small embeddable Scheme implementation" msgstr "" =20 -#: gnu/packages/scheme.scm:484 +#: gnu/packages/scheme.scm:522 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. = In\n" -"addition to support for lightweight VM-based threads, each VM itself ru= ns in\n" -"an isolated heap allowing multiple VMs to run simultaneously in differe= nt OS\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" "threads." msgstr "" =20 -#: gnu/packages/scheme.scm:660 +#: gnu/packages/scheme.scm:699 msgid "Scmutils library for MIT Scheme" msgstr "" =20 -#: gnu/packages/scheme.scm:661 +#: gnu/packages/scheme.scm:700 msgid "" "The Scmutils system is an integrated library of\n" "procedures, embedded in the programming language Scheme, and intended t= o\n" @@ -8085,7 +9238,8 @@ msgstr "" #: gnu/packages/search.scm:99 msgid "" "libtocc is the engine of the Tocc project, a tag-based file management\= n" -"system. The goal of Tocc is to provide a better system for classifying= files\n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" "that is more flexible than classic file systems that are based on a tre= e of\n" "files and directories." msgstr "" @@ -8130,24 +9284,25 @@ msgid "" "server and an IRC server." msgstr "" =20 -#: gnu/packages/telephony.scm:50 +#: gnu/packages/telephony.scm:52 msgid "(u)Common C++ framework for threaded applications" msgstr "" =20 -#: gnu/packages/telephony.scm:51 +#: gnu/packages/telephony.scm:53 msgid "" "GNU Common C++ is an portable, optimized class framework for\n" "threaded applications, supporting concurrent synchronization, inter-pro= cess\n" "communications via sockets, and various methods for data handling, such= as\n" -"serialization and XML parsing. It includes the uCommon C++ library, a = smaller\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" "reimplementation." msgstr "" =20 -#: gnu/packages/telephony.scm:70 +#: gnu/packages/telephony.scm:73 msgid "Common C++ framework for threaded applications" msgstr "" =20 -#: gnu/packages/telephony.scm:71 +#: gnu/packages/telephony.scm:74 msgid "" "GNU uCommon C++ is meant as a very light-weight C++ library\n" "to facilitate using C++ design patterns even for very deeply embedded\n= " @@ -8155,11 +9310,11 @@ msgid "" "support." msgstr "" =20 -#: gnu/packages/telephony.scm:92 +#: gnu/packages/telephony.scm:95 msgid "Implementation of RTP (real-time transport protocol)" msgstr "" =20 -#: gnu/packages/telephony.scm:93 +#: gnu/packages/telephony.scm:96 msgid "" "GNU ccRTP is an implementation of RTP, the real-time transport\n" "protocol from the IETF. It is suitable both for high capacity servers = and\n" @@ -8168,94 +9323,107 @@ msgid "" "packet-manipulation library." msgstr "" =20 -#: gnu/packages/telephony.scm:113 +#: gnu/packages/telephony.scm:116 msgid "Library implementing SIP (RFC-3261)" msgstr "" =20 -#: gnu/packages/telephony.scm:114 +#: gnu/packages/telephony.scm:117 msgid "" "GNU oSIP is an implementation of the SIP protocol. It is\n" -"used to provide multimedia and telecom software developers with an inte= rface\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" "to initiate and control SIP sessions." msgstr "" =20 -#: gnu/packages/telephony.scm:134 +#: gnu/packages/telephony.scm:137 msgid "Sip abstraction library" msgstr "" =20 -#: gnu/packages/telephony.scm:135 +#: gnu/packages/telephony.scm:138 msgid "" "EXosip is a library that hides the complexity of using the\n" -"SIP protocol for multimedia session establishment. This protocol is ma= inly to\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" "be used by VoIP telephony applications (endpoints or conference server)= but\n" -"might be also useful for any application that wish to establish session= s like\n" +"might be also useful for any application that wish to establish session= s " +"like\n" "multiplayer games." msgstr "" =20 -#: gnu/packages/telephony.scm:178 +#: gnu/packages/telephony.scm:181 msgid "Secure peer-to-peer VoIP server for the SIP protocol" msgstr "" =20 -#: gnu/packages/telephony.scm:179 +#: gnu/packages/telephony.scm:182 msgid "" "GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" "uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" -"without the need for a service provider. Its peer-to-peer design ensur= es that\n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" "there is no central point for media intercept or capture and thus it ca= n be\n" "used to construct a secure telephone system that operates over the publ= ic\n" "internet." msgstr "" =20 -#: gnu/packages/telephony.scm:204 +#: gnu/packages/telephony.scm:207 msgid "Secure RTP (SRTP) Reference Implementation" msgstr "" =20 -#: gnu/packages/telephony.scm:205 +#: gnu/packages/telephony.scm:208 msgid "" "This package provides an implementation of the Secure\n" -"Real-time Transport Protocol (SRTP), the Universal Security Transform (= UST),\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" "and a supporting cryptographic kernel." msgstr "" =20 -#: gnu/packages/texinfo.scm:56 +#: gnu/packages/texinfo.scm:55 msgid "The GNU documentation format" msgstr "" =20 -#: gnu/packages/texinfo.scm:58 +#: gnu/packages/texinfo.scm:57 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" -"uses a single source file using explicit commands to produce a final do= cument\n" +"uses a single source file using explicit commands to produce a final " +"document\n" "in any of several supported output formats, such as HTML or PDF. This\= n" "package includes both the tools necessary to produce Info documents fro= m\n" -"their source and the command-line Info reader. The emphasis of the lan= guage\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" "is on expressing the content semantically, avoiding physical markup com= mands." msgstr "" =20 -#: gnu/packages/texinfo.scm:116 +#: gnu/packages/texinfo.scm:132 msgid "Convert Texinfo to HTML" msgstr "Konwersja Texinfo do HTML" =20 -#: gnu/packages/texinfo.scm:118 +#: gnu/packages/texinfo.scm:134 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" -"output. It now supports many advanced features, such as internationali= zation\n" +"output. It now supports many advanced features, such as " +"internationalization\n" "and extremely configurable output formats.\n" "\n" -"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince it\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" "was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" -"forward for authors is, in most cases, to alter manuals and build proce= sses as\n" -"necessary to use the new features of the makeinfo/texi2any implementati= on of\n" -"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal a= uthor\n" -"of the GNU Texinfo implementation) do not intend to make further releas= es of\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" "Texi2HTML." msgstr "" =20 -#: gnu/packages/texlive.scm:156 gnu/packages/texlive.scm:216 -#: gnu/packages/texlive.scm:274 +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 msgid "TeX Live, a package of the TeX typesetting system" msgstr "" =20 -#: gnu/packages/texlive.scm:158 +#: gnu/packages/texlive.scm:157 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fon= ts\n" @@ -8265,7 +9433,7 @@ msgid "" "This package contains the binaries." msgstr "" =20 -#: gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:220 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fon= ts\n" @@ -8275,7 +9443,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" =20 -#: gnu/packages/texlive.scm:276 +#: gnu/packages/texlive.scm:278 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fon= ts\n" @@ -8285,128 +9453,179 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" =20 -#: gnu/packages/texlive.scm:305 +#: gnu/packages/texlive.scm:307 msgid "Wrapper for LaTeX and friends" msgstr "" =20 -#: gnu/packages/texlive.scm:307 +#: gnu/packages/texlive.scm:309 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the= \n" -"compilation of LaTeX documents. This includes compiling the document i= tself,\n" -"of course, enough times so that all references are defined, and running= BibTeX\n" -"to manage bibliographic references. Automatic execution of dvips to pr= oduce\n" -"PostScript documents is also included, as well as usage of pdfLaTeX to = produce\n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" "PDF documents." msgstr "" =20 -#: gnu/packages/textutils.scm:58 +#: gnu/packages/textutils.scm:61 msgid "Text encoding converter" msgstr "" =20 -#: gnu/packages/textutils.scm:59 +#: gnu/packages/textutils.scm:62 msgid "" "The Recode library converts files between character sets and\n" -"usages. It recognises or produces over 200 different character sets (o= r about\n" -"300 if combined with an iconv library) and transliterates files between= almost\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" "any pair. When exact transliteration are not possible, it gets rid of\= n" -"offending characters or falls back on approximations. The recode progr= am is a\n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" "handy front-end to the library." msgstr "" =20 -#: gnu/packages/textutils.scm:86 +#: gnu/packages/textutils.scm:90 msgid "Text encoding detection tool" msgstr "" =20 -#: gnu/packages/textutils.scm:87 +#: gnu/packages/textutils.scm:91 msgid "" "Enca (Extremely Naive Charset Analyser) consists of libenca,\n" -"an encoding detection library, and enca, a command line frontend, integ= rating\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" "libenca and several charset conversion libraries and tools." msgstr "" =20 -#: gnu/packages/textutils.scm:122 +#: gnu/packages/textutils.scm:118 msgid "C library for processing UTF-8 Unicode data" msgstr "" =20 -#: gnu/packages/textutils.scm:123 +#: gnu/packages/textutils.scm:119 msgid "" "utf8proc is a small C library that provides Unicode\n" "normalization, case-folding, and other operations for data in the UTF-8= \n" "encoding, supporting Unicode version 7.0." msgstr "" =20 -#: gnu/packages/textutils.scm:152 +#: gnu/packages/textutils.scm:148 msgid "Gordon's text utils library" msgstr "" =20 -#: gnu/packages/textutils.scm:154 +#: gnu/packages/textutils.scm:150 msgid "" "libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" "the Hannon Lab." msgstr "" =20 -#: gnu/packages/textutils.scm:175 +#: gnu/packages/textutils.scm:171 msgid "C++ hash functions for strings" msgstr "" =20 -#: gnu/packages/textutils.scm:177 +#: gnu/packages/textutils.scm:173 msgid "" "CityHash provides hash functions for strings. The functions mix the\n" "input bits thoroughly but are not suitable for cryptography." msgstr "" =20 -#: gnu/packages/version-control.scm:97 -msgid "Version control system supporting both distributed and centralize= d workflows" +#: gnu/packages/textutils.scm:190 +msgid "C/C++ configuration file library" +msgstr "" + +#: gnu/packages/textutils.scm:192 +msgid "" +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." +msgstr "" + +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" + +#: gnu/packages/textutils.scm:214 +msgid "" +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." +msgstr "" + +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" msgstr "" =20 -#: gnu/packages/version-control.scm:99 +#: gnu/packages/version-control.scm:105 msgid "" "GNU Bazaar is a version control system that allows you to record\n" -"changes to project files over time. It supports both a distributed wor= kflow\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" "as well as the classic centralized workflow." msgstr "" =20 -#: gnu/packages/version-control.scm:258 +#: gnu/packages/version-control.scm:264 msgid "Distributed version control system" msgstr "Rozproszony system kontroli wersji" =20 -#: gnu/packages/version-control.scm:260 +#: gnu/packages/version-control.scm:266 msgid "" "Git is a free distributed version control system designed to handle\n" "everything from small to very large projects with speed and efficiency.= " msgstr "" =20 -#: gnu/packages/version-control.scm:305 +#: gnu/packages/version-control.scm:311 msgid "Man pages of the Git version control system" msgstr "" =20 -#: gnu/packages/version-control.scm:307 +#: gnu/packages/version-control.scm:313 msgid "" "This package provides the man pages of the Git version control system.\= n" -"This is the documentation displayed when using the '--help' option of a= 'git'\n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" "command." msgstr "" =20 -#: gnu/packages/version-control.scm:344 +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" + +#: gnu/packages/version-control.scm:354 +msgid "" +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." +msgstr "" + +#: gnu/packages/version-control.scm:393 msgid "Command-line flags library for shell scripts" msgstr "" =20 -#: gnu/packages/version-control.scm:346 +#: gnu/packages/version-control.scm:395 msgid "" "Shell Flags (shFlags) is a library written to greatly simplify the\n" -"handling of command-line flags in Bourne based Unix shell scripts (bash= , dash,\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" "ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" "different versions of getopt on various OSes make writing portable shel= l\n" -"scripts difficult. shFlags instead provides an API that doesn't change= across\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" "shell and OS versions so the script writer can be confident that the sc= ript\n" "will work." msgstr "" =20 -#: gnu/packages/version-control.scm:389 +#: gnu/packages/version-control.scm:438 msgid "Git extensions for Vincent Driessen's branching model" msgstr "" =20 -#: gnu/packages/version-control.scm:391 +#: gnu/packages/version-control.scm:440 msgid "" "Vincent Driessen's branching model is a git branching and release\n" "management strategy that helps developers keep track of features, hotfi= xes,\n" @@ -8415,43 +9634,43 @@ msgid "" "lot easier." msgstr "" =20 -#: gnu/packages/version-control.scm:426 +#: gnu/packages/version-control.scm:475 msgid "Run a command over a sequence of commits" msgstr "" =20 -#: gnu/packages/version-control.scm:428 +#: gnu/packages/version-control.scm:477 msgid "" "git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" "linear. It will test every change between two points in the DAG. It w= ill\n" "also walk each side of a merge and test those changes individually." msgstr "" =20 -#: gnu/packages/version-control.scm:486 +#: gnu/packages/version-control.scm:535 msgid "Git access control layer" msgstr "" =20 -#: gnu/packages/version-control.scm:488 +#: gnu/packages/version-control.scm:537 msgid "" "Gitolite is an access control layer on top of Git, providing fine acces= s\n" "control to Git repositories." msgstr "" =20 -#: gnu/packages/version-control.scm:512 +#: gnu/packages/version-control.scm:561 msgid "Decentralized version control system" msgstr "" =20 -#: gnu/packages/version-control.scm:514 +#: gnu/packages/version-control.scm:563 msgid "" "Mercurial is a free, distributed source control management tool.\n" "It efficiently handles projects of any size\n" "and offers an easy and intuitive interface." msgstr "" =20 -#: gnu/packages/version-control.scm:548 +#: gnu/packages/version-control.scm:597 msgid "HTTP and WebDAV client library" msgstr "" =20 -#: gnu/packages/version-control.scm:549 +#: gnu/packages/version-control.scm:598 msgid "" "Neon is an HTTP and WebDAV client library, with a\n" "C interface. Features:\n" @@ -8471,37 +9690,39 @@ msgid "" "property manipulation." msgstr "" =20 -#: gnu/packages/version-control.scm:628 +#: gnu/packages/version-control.scm:677 msgid "Revision control system" msgstr "System kontroli wersji" =20 -#: gnu/packages/version-control.scm:630 +#: gnu/packages/version-control.scm:679 msgid "" "Subversion exists to be universally recognized and adopted as a\n" "centralized version control system characterized by its\n" -"reliability as a safe haven for valuable data; the simplicity of its mo= del and\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" "usage; and its ability to support the needs of a wide variety of users = and\n" "projects, from individuals to large-scale enterprise operations." msgstr "" =20 -#: gnu/packages/version-control.scm:651 +#: gnu/packages/version-control.scm:700 msgid "Per-file local revision control system" msgstr "" =20 -#: gnu/packages/version-control.scm:653 +#: gnu/packages/version-control.scm:702 msgid "" "RCS is the original Revision Control System. It works on a\n" -"file-by-file basis, in contrast to subsequent version control systems s= uch as\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" "CVS, Subversion, and Git. This can make it suitable for system\n" "administration files, for example, which are often inherently local to = one\n" "machine." msgstr "" =20 -#: gnu/packages/version-control.scm:679 +#: gnu/packages/version-control.scm:729 msgid "Historical centralized version control system" msgstr "" =20 -#: gnu/packages/version-control.scm:681 +#: gnu/packages/version-control.scm:731 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history o= f\n" @@ -8509,28 +9730,31 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" =20 -#: gnu/packages/version-control.scm:714 +#: gnu/packages/version-control.scm:764 msgid "Export an RCS or CVS history as a fast-import stream" msgstr "" =20 -#: gnu/packages/version-control.scm:715 +#: gnu/packages/version-control.scm:765 msgid "" "This program analyzes a collection of RCS files in a CVS\n" -"repository (or outside of one) and, when possible, emits an equivalent = history\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" "in the form of a fast-import stream. Not all possible histories can be= \n" "rendered this way; the program tries to emit useful warnings when it ca= n't.\n" "\n" -"The program can also produce a visualization of the resulting commit di= rected\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" "acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" -"Graphviz}. The package also includes @command{cvssync}, a tool for mir= roring\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" "masters from remote CVS hosts." msgstr "" =20 -#: gnu/packages/version-control.scm:742 +#: gnu/packages/version-control.scm:792 msgid "Version-control-agnostic ChangeLog diff and commit tool" msgstr "" =20 -#: gnu/packages/version-control.scm:744 +#: gnu/packages/version-control.scm:794 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" @@ -8540,453 +9764,512 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it dete= cts." msgstr "" =20 -#: gnu/packages/version-control.scm:766 +#: gnu/packages/version-control.scm:816 msgid "Make histograms from the output of 'diff'" msgstr "" =20 -#: gnu/packages/version-control.scm:768 +#: gnu/packages/version-control.scm:818 msgid "" "Diffstat reads the output of 'diff' and displays a histogram of the\n" -"insertions, deletions, and modifications per-file. It is useful for re= viewing\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" "large, complex patch files." msgstr "" =20 -#: gnu/packages/version-control.scm:809 +#: gnu/packages/version-control.scm:859 msgid "File-based version control like SCCS" msgstr "" =20 -#: gnu/packages/version-control.scm:810 +#: gnu/packages/version-control.scm:860 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" -"code control system SCCS. This allows old code still under that system= to be\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" "accessed and migrated on modern systems." msgstr "" =20 -#: gnu/packages/version-control.scm:891 +#: gnu/packages/version-control.scm:941 msgid "Project change supervisor" msgstr "" =20 -#: gnu/packages/version-control.scm:892 +#: gnu/packages/version-control.scm:942 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Ae= gis\n" "provides a framework within which a team of developers may work on many= \n" "changes to a program independently, and Aegis coordinates integrating t= hese\n" -"changes back into the master source of the program, with as little disr= uption\n" -"as possible. Resolution of contention for source files, a major headac= he for\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" "any project with more than one developer, is one of Aegis's major funct= ions." msgstr "" =20 -#: gnu/packages/version-control.scm:919 +#: gnu/packages/version-control.scm:970 msgid "Ncurses-based text user interface for Git" msgstr "" =20 -#: gnu/packages/version-control.scm:921 +#: gnu/packages/version-control.scm:972 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the= \n" "output of the 'git' command." msgstr "" =20 -#: gnu/packages/webkit.scm:121 -msgid "Web content engine for GTK+" +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" + +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." +msgstr "" + +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" + +#: gnu/packages/version-control.scm:1027 +msgid "" +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." +msgstr "" + +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" + +#: gnu/packages/version-control.scm:1059 +msgid "" +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." msgstr "" =20 #: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" + +#: gnu/packages/webkit.scm:125 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybri= d\n" "HTML/CSS applications to full-fledged web browsers." msgstr "" =20 -#: gnu/packages/web.scm:88 +#: gnu/packages/web.scm:89 msgid "Featureful HTTP server" msgstr "" =20 -#: gnu/packages/web.scm:90 +#: gnu/packages/web.scm:91 msgid "" "The Apache HTTP Server Project is a collaborative software development\= n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" "freely-available source code implementation of an HTTP (Web) server. T= he\n" -"project is jointly managed by a group of volunteers located around the = world,\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" "using the Internet and the Web to communicate, plan, and develop the se= rver\n" "and its related documentation." msgstr "" =20 -#: gnu/packages/web.scm:168 +#: gnu/packages/web.scm:169 msgid "HTTP and reverse proxy server" msgstr "" =20 -#: gnu/packages/web.scm:170 +#: gnu/packages/web.scm:171 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" "created by Igor Sysoev. It can be used both as a standalone web server= \n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" =20 -#: gnu/packages/web.scm:206 +#: gnu/packages/web.scm:207 msgid "PSGI/Plack web server" msgstr "" =20 -#: gnu/packages/web.scm:207 +#: gnu/packages/web.scm:208 msgid "" "Starman is a PSGI perl web server that has unique features\n" -"such as high performance, preforking, signal support, superdaemon aware= ness,\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" "and UNIX socket support." msgstr "" =20 -#: gnu/packages/web.scm:226 +#: gnu/packages/web.scm:227 msgid "JSON C library" msgstr "" =20 -#: gnu/packages/web.scm:228 +#: gnu/packages/web.scm:229 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" =20 -#: gnu/packages/web.scm:259 +#: gnu/packages/web.scm:261 msgid "JSON implementation in C" msgstr "" =20 -#: gnu/packages/web.scm:261 +#: gnu/packages/web.scm:263 msgid "" "JSON-C implements a reference counting object model that allows you to\= n" -"easily construct JSON objects in C, output them as JSON formatted strin= gs and\n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" "parse JSON formatted strings back into the C representation of JSON obj= ects." msgstr "" =20 -#: gnu/packages/web.scm:287 +#: gnu/packages/web.scm:289 msgid "JSON parser/generator for C++ with both SAX/DOM style API" msgstr "" =20 -#: gnu/packages/web.scm:289 +#: gnu/packages/web.scm:291 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" =20 -#: gnu/packages/web.scm:307 +#: gnu/packages/web.scm:309 msgid "C library for parsing JSON" msgstr "" =20 -#: gnu/packages/web.scm:309 +#: gnu/packages/web.scm:311 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" =20 -#: gnu/packages/web.scm:339 +#: gnu/packages/web.scm:341 msgid "WebSockets library written in C" msgstr "" =20 -#: gnu/packages/web.scm:341 +#: gnu/packages/web.scm:343 msgid "" "Libwebsockets is a library that allows C programs to establish client\n= " -"and server WebSockets connections---a protocol layered above HTTP that = allows\n" +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" "for efficient socket-like bidirectional reliable communication channels= ." msgstr "" =20 -#: gnu/packages/web.scm:376 +#: gnu/packages/web.scm:378 msgid "C library for the Publix Suffix List" msgstr "" =20 -#: gnu/packages/web.scm:378 +#: gnu/packages/web.scm:380 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" "\n" "Browsers and other web clients can use it to avoid privacy-leaking\n" -"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = domain\n" -"highlighting parts of the domain in a user interface, and sorting domai= n lists\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" "by site.\n" "\n" "Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" -"files, checks if a given domain is a public suffix, provides immediate = cookie\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" "domain verification, finds the longest public part of a given domain, f= inds\n" "the shortest private part of a given domain, works with international\n= " "domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" "UTS#46." msgstr "" =20 -#: gnu/packages/web.scm:424 +#: gnu/packages/web.scm:426 msgid "HTML validator and tidier" msgstr "" =20 -#: gnu/packages/web.scm:425 +#: gnu/packages/web.scm:427 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" =20 -#: gnu/packages/web.scm:465 +#: gnu/packages/web.scm:468 msgid "Light-weight HTTP/HTTPS proxy daemon" msgstr "" =20 -#: gnu/packages/web.scm:466 +#: gnu/packages/web.scm:469 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" -"daemon. Designed from the ground up to be fast and yet small, it is an= ideal\n" -"solution for use cases such as embedded deployments where a full featur= ed HTTP\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" "proxy is required, but the system resources for a larger proxy are\n" "unavailable." msgstr "" =20 -#: gnu/packages/web.scm:499 +#: gnu/packages/web.scm:502 msgid "Small caching web proxy" msgstr "" =20 -#: gnu/packages/web.scm:501 +#: gnu/packages/web.scm:504 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " -"server). It was primarily designed to be used by one person or a small= group\n" +"server). It was primarily designed to be used by one person or a small= " +"group\n" "of people." msgstr "" =20 -#: gnu/packages/web.scm:521 +#: gnu/packages/web.scm:524 msgid "YAML 1.1 parser and emitter written in C" msgstr "" =20 -#: gnu/packages/web.scm:523 +#: gnu/packages/web.scm:526 msgid "LibYAML is a YAML 1.1 parser and emitter written in C." msgstr "" =20 -#: gnu/packages/web.scm:539 gnu/packages/web.scm:572 gnu/packages/web.sc= m:594 +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 msgid "Media stream URL parser" msgstr "" =20 -#: gnu/packages/web.scm:540 +#: gnu/packages/web.scm:543 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" =20 -#: gnu/packages/web.scm:573 +#: gnu/packages/web.scm:576 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" =20 -#: gnu/packages/web.scm:595 +#: gnu/packages/web.scm:598 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." msgstr "" =20 -#: gnu/packages/web.scm:658 +#: gnu/packages/web.scm:661 msgid "High-performance asynchronous HTTP client library" msgstr "" =20 -#: gnu/packages/web.scm:660 +#: gnu/packages/web.scm:663 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" -"communication asynchronously. Memory copies and transformations are ke= pt to a\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" "minimum to provide high performance operation." msgstr "" =20 -#: gnu/packages/web.scm:715 +#: gnu/packages/web.scm:718 msgid "CSS pre-processor" msgstr "" =20 -#: gnu/packages/web.scm:716 +#: gnu/packages/web.scm:719 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" =20 -#: gnu/packages/web.scm:744 +#: gnu/packages/web.scm:748 msgid "Compile a log format string to perl-code" msgstr "" =20 -#: gnu/packages/web.scm:745 +#: gnu/packages/web.scm:749 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" =20 -#: gnu/packages/web.scm:766 +#: gnu/packages/web.scm:770 msgid "SASL authentication framework" msgstr "" =20 -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:771 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" =20 -#: gnu/packages/web.scm:791 +#: gnu/packages/web.scm:795 msgid "Sensible default Catalyst action" msgstr "" =20 -#: gnu/packages/web.scm:792 +#: gnu/packages/web.scm:796 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" =20 -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:824 msgid "Automated REST Method Dispatching" msgstr "" =20 -#: gnu/packages/web.scm:821 +#: gnu/packages/web.scm:825 msgid "" "This Action handles doing automatic method dispatching for\n" -"REST requests. It takes a normal Catalyst action, and changes the disp= atch to\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" "append an underscore and method name. First it will try dispatching to= an\n" -"action with the generated name, and failing that it will try to dispatc= h to a\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" "regular method." msgstr "" =20 -#: gnu/packages/web.scm:857 +#: gnu/packages/web.scm:861 msgid "Storage class for Catalyst authentication using DBIx::Class" msgstr "" =20 -#: gnu/packages/web.scm:858 +#: gnu/packages/web.scm:862 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\= n" "DBIx::Class." msgstr "" =20 -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:886 msgid "Create only one instance of Moose component per context" msgstr "" =20 -#: gnu/packages/web.scm:883 +#: gnu/packages/web.scm:887 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" =20 -#: gnu/packages/web.scm:920 +#: gnu/packages/web.scm:924 msgid "Catalyst Development Tools" msgstr "" =20 -#: gnu/packages/web.scm:921 +#: gnu/packages/web.scm:925 msgid "" "The Catalyst-Devel distribution includes a variety of\n" -"modules useful for the development of Catalyst applications, but not re= quired\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" "to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" -"autogenerates scripts and tests; Module::Install::Catalyst, a Module::I= nstall\n" -"extension for Catalyst; and requirements for a variety of development-r= elated\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" "modules." msgstr "" =20 -#: gnu/packages/web.scm:950 +#: gnu/packages/web.scm:954 msgid "Regex DispatchType for Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:951 +#: gnu/packages/web.scm:955 msgid "" "Dispatch type managing path-matching behaviour using\n" -"regexes. Regex dispatch types have been deprecated and removed from Ca= talyst\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" "core. It is recommend that you use Chained methods or other techniques= \n" -"instead. As part of the refactoring, the dispatch priority of Regex vs= Regexp\n" -"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced by\n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" "when the dispatch type is first seen in your application." msgstr "" =20 -#: gnu/packages/web.scm:999 +#: gnu/packages/web.scm:1003 msgid "DBIx::Class::Schema Model Class" msgstr "" =20 -#: gnu/packages/web.scm:1000 +#: gnu/packages/web.scm:1004 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" =20 -#: gnu/packages/web.scm:1024 +#: gnu/packages/web.scm:1028 msgid "Request logging from within Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:1025 +#: gnu/packages/web.scm:1029 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" -"from within a Catalyst application instead of requiring a webserver to = do it\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" =20 -#: gnu/packages/web.scm:1057 +#: gnu/packages/web.scm:1061 msgid "Infrastructure plugin for the Catalyst authentication framework" msgstr "" =20 -#: gnu/packages/web.scm:1058 +#: gnu/packages/web.scm:1062 msgid "" "The authentication plugin provides generic user support for\n" -"Catalyst apps. It is the basis for both authentication (checking the u= ser is\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" "who they claim to be), and authorization (allowing the user to do what = the\n" "system authorises them to do)." msgstr "" =20 -#: gnu/packages/web.scm:1088 +#: gnu/packages/web.scm:1092 msgid "Role-based authorization for Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:1089 +#: gnu/packages/web.scm:1093 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" =20 -#: gnu/packages/web.scm:1112 +#: gnu/packages/web.scm:1116 msgid "Captchas for Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:1113 +#: gnu/packages/web.scm:1117 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" =20 -#: gnu/packages/web.scm:1139 +#: gnu/packages/web.scm:1143 msgid "Load config files of various types" msgstr "" =20 -#: gnu/packages/web.scm:1140 +#: gnu/packages/web.scm:1144 msgid "" "This module will attempt to load find and load configuration\n" -"files of various types. Currently it supports YAML, JSON, XML, INI and= Perl\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" "formats." msgstr "" =20 -#: gnu/packages/web.scm:1170 +#: gnu/packages/web.scm:1174 msgid "Catalyst generic session plugin" msgstr "" =20 -#: gnu/packages/web.scm:1171 +#: gnu/packages/web.scm:1175 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" =20 -#: gnu/packages/web.scm:1197 +#: gnu/packages/web.scm:1201 msgid "Maintain session IDs using cookies" msgstr "" =20 -#: gnu/packages/web.scm:1198 +#: gnu/packages/web.scm:1202 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" -"ID needs to be stored on the client, and the session data needs to be s= tored\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" "on the server. This plugin stores the session ID on the client using t= he\n" "cookie mechanism." msgstr "" =20 -#: gnu/packages/web.scm:1228 +#: gnu/packages/web.scm:1232 msgid "FastMmap session storage backend" msgstr "" =20 -#: gnu/packages/web.scm:1229 +#: gnu/packages/web.scm:1233 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" =20 -#: gnu/packages/web.scm:1252 +#: gnu/packages/web.scm:1256 msgid "Stack trace on the Catalyst debug screen" msgstr "" =20 -#: gnu/packages/web.scm:1253 +#: gnu/packages/web.scm:1257 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the e= rror\n" @@ -8994,38 +10277,43 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" =20 -#: gnu/packages/web.scm:1279 +#: gnu/packages/web.scm:1283 msgid "Simple serving of static pages" msgstr "" =20 -#: gnu/packages/web.scm:1280 +#: gnu/packages/web.scm:1284 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\= n" -"requiring a single line of code from you. This plugin detects static f= iles by\n" -"looking at the file extension in the URL (such as .css or .png or .js).= The\n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" "plugin uses the lightweight MIME::Types module to map file extensions t= o\n" -"IANA-registered MIME types, and will serve your static files with the c= orrect\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" "MIME type directly to the browser, without being processed through Cata= lyst." msgstr "" =20 -#: gnu/packages/web.scm:1346 +#: gnu/packages/web.scm:1351 msgid "The Catalyst Framework Runtime" msgstr "" =20 -#: gnu/packages/web.scm:1347 +#: gnu/packages/web.scm:1352 msgid "" "Catalyst is a modern framework for making web applications.\n" -"It is designed to make it easy to manage the various tasks you need to = do to\n" -"run an application on the web, either by doing them itself, or by letti= ng you\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" "\"plug in\" existing Perl modules that do what you need." msgstr "" =20 -#: gnu/packages/web.scm:1377 +#: gnu/packages/web.scm:1382 msgid "Replace request base with value passed by HTTP proxy" msgstr "" =20 -#: gnu/packages/web.scm:1378 +#: gnu/packages/web.scm:1383 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deploy= ed\n" @@ -9033,42 +10321,42 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" =20 -#: gnu/packages/web.scm:1404 +#: gnu/packages/web.scm:1409 msgid "Download data in many formats" msgstr "" =20 -#: gnu/packages/web.scm:1405 +#: gnu/packages/web.scm:1410 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloadi= ng a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" =20 -#: gnu/packages/web.scm:1430 +#: gnu/packages/web.scm:1435 msgid "Catalyst JSON view" msgstr "" =20 -#: gnu/packages/web.scm:1431 +#: gnu/packages/web.scm:1436 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" =20 -#: gnu/packages/web.scm:1456 +#: gnu/packages/web.scm:1461 msgid "Template View Class" msgstr "" =20 -#: gnu/packages/web.scm:1457 +#: gnu/packages/web.scm:1462 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" =20 -#: gnu/packages/web.scm:1486 +#: gnu/packages/web.scm:1491 msgid "Trait Loading and Resolution for Catalyst Components" msgstr "" =20 -#: gnu/packages/web.scm:1487 +#: gnu/packages/web.scm:1492 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parame= ter\n" @@ -9077,72 +10365,87 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" =20 -#: gnu/packages/web.scm:1512 +#: gnu/packages/web.scm:1517 msgid "Apply roles to Catalyst classes" msgstr "" =20 -#: gnu/packages/web.scm:1513 +#: gnu/packages/web.scm:1518 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" =20 -#: gnu/packages/web.scm:1539 +#: gnu/packages/web.scm:1544 msgid "Catalyst development server with Starman" msgstr "" =20 -#: gnu/packages/web.scm:1540 +#: gnu/packages/web.scm:1545 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" =20 -#: gnu/packages/web.scm:1560 +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" + +#: gnu/packages/web.scm:1570 +msgid "" +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." +msgstr "" + +#: gnu/packages/web.scm:1594 msgid "CGI interface that is CGI.pm compliant" msgstr "" =20 -#: gnu/packages/web.scm:1561 +#: gnu/packages/web.scm:1595 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" =20 -#: gnu/packages/web.scm:1582 +#: gnu/packages/web.scm:1616 msgid "Build structures from CGI data" msgstr "" =20 -#: gnu/packages/web.scm:1583 +#: gnu/packages/web.scm:1617 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" =20 -#: gnu/packages/web.scm:1604 +#: gnu/packages/web.scm:1640 msgid "Date conversion routines" msgstr "" =20 -#: gnu/packages/web.scm:1605 +#: gnu/packages/web.scm:1641 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" =20 -#: gnu/packages/web.scm:1625 +#: gnu/packages/web.scm:1661 msgid "MD5 sums for files and urls" msgstr "" =20 -#: gnu/packages/web.scm:1626 +#: gnu/packages/web.scm:1662 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" =20 -#: gnu/packages/web.scm:1644 +#: gnu/packages/web.scm:1680 msgid "Perl locale encoding determination" msgstr "" =20 -#: gnu/packages/web.scm:1646 +#: gnu/packages/web.scm:1682 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -9154,91 +10457,91 @@ msgid "" "with Encode::decode(locale =3D> $string)." msgstr "" =20 -#: gnu/packages/web.scm:1672 +#: gnu/packages/web.scm:1708 msgid "Perl directory listing parser" msgstr "" =20 -#: gnu/packages/web.scm:1674 +#: gnu/packages/web.scm:1710 msgid "" "The File::Listing module exports a single function called parse_dir(),\= n" "which can be used to parse directory listings." msgstr "" =20 -#: gnu/packages/web.scm:1705 +#: gnu/packages/web.scm:1742 msgid "Stock and mutual fund quotes" msgstr "" =20 -#: gnu/packages/web.scm:1707 +#: gnu/packages/web.scm:1744 msgid "" "Finance::Quote gets stock quotes from various internet sources, includi= ng\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." msgstr "" =20 -#: gnu/packages/web.scm:1729 +#: gnu/packages/web.scm:1766 msgid "Perl extension providing access to the GSSAPIv2 library" msgstr "" =20 -#: gnu/packages/web.scm:1730 +#: gnu/packages/web.scm:1767 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" =20 -#: gnu/packages/web.scm:1750 +#: gnu/packages/web.scm:1787 msgid "Manipulate tables of HTML::Element" msgstr "" =20 -#: gnu/packages/web.scm:1752 +#: gnu/packages/web.scm:1789 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" =20 -#: gnu/packages/web.scm:1776 +#: gnu/packages/web.scm:1813 msgid "Perl class representing an HTML form element" msgstr "" =20 -#: gnu/packages/web.scm:1777 +#: gnu/packages/web.scm:1814 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" =20 -#: gnu/packages/web.scm:1799 +#: gnu/packages/web.scm:1836 msgid "Check for HTML errors in a string or file" msgstr "" =20 -#: gnu/packages/web.scm:1800 +#: gnu/packages/web.scm:1837 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" =20 -#: gnu/packages/web.scm:1821 +#: gnu/packages/web.scm:1858 msgid "Extract contents from HTML tables" msgstr "" =20 -#: gnu/packages/web.scm:1823 +#: gnu/packages/web.scm:1860 msgid "" "HTML::TableExtract is a Perl module for extracting the content containe= d\n" "in tables within an HTML document, either as text or encoded element tr= ees." msgstr "" =20 -#: gnu/packages/web.scm:1847 +#: gnu/packages/web.scm:1885 msgid "Work with HTML in a DOM-like tree structure" msgstr "" =20 -#: gnu/packages/web.scm:1848 +#: gnu/packages/web.scm:1886 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax tre= es." msgstr "" =20 -#: gnu/packages/web.scm:1868 +#: gnu/packages/web.scm:1906 msgid "Perl HTML parser class" msgstr "" =20 -#: gnu/packages/web.scm:1870 +#: gnu/packages/web.scm:1908 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As differen= t\n" @@ -9246,82 +10549,101 @@ msgid "" "are invoked." msgstr "" =20 -#: gnu/packages/web.scm:1890 +#: gnu/packages/web.scm:1928 msgid "Perl data tables useful in parsing HTML" msgstr "" =20 -#: gnu/packages/web.scm:1892 +#: gnu/packages/web.scm:1930 msgid "" "The HTML::Tagset module contains several data tables useful in various\= n" "kinds of HTML parsing operations." msgstr "" =20 -#: gnu/packages/web.scm:1915 +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" + +#: gnu/packages/web.scm:1951 +msgid "" +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." +msgstr "" + +#: gnu/packages/web.scm:1979 msgid "HTTP Body Parser" msgstr "" =20 -#: gnu/packages/web.scm:1916 +#: gnu/packages/web.scm:1980 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" -"application/octet-stream, application/json, application/x-www-form-urle= ncoded,\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" "and multipart/form-data." msgstr "" =20 -#: gnu/packages/web.scm:1942 +#: gnu/packages/web.scm:2006 msgid "Minimalist HTTP user agent cookie jar" msgstr "" =20 -#: gnu/packages/web.scm:1943 +#: gnu/packages/web.scm:2007 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" =20 -#: gnu/packages/web.scm:1963 +#: gnu/packages/web.scm:2027 msgid "Perl HTTP cookie jars" msgstr "" =20 -#: gnu/packages/web.scm:1965 +#: gnu/packages/web.scm:2029 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" "object knows about." msgstr "" =20 -#: gnu/packages/web.scm:1987 +#: gnu/packages/web.scm:2051 msgid "Perl simple http server class" msgstr "" =20 -#: gnu/packages/web.scm:1989 +#: gnu/packages/web.scm:2053 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " "IO::Socket::INET, so you can perform socket operations directly on it t= oo." msgstr "" =20 -#: gnu/packages/web.scm:2008 +#: gnu/packages/web.scm:2072 msgid "Perl date conversion routines" msgstr "" =20 -#: gnu/packages/web.scm:2010 +#: gnu/packages/web.scm:2074 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" =20 -#: gnu/packages/web.scm:2033 +#: gnu/packages/web.scm:2097 msgid "Perl HTTP style message" msgstr "" =20 -#: gnu/packages/web.scm:2035 +#: gnu/packages/web.scm:2099 msgid "An HTTP::Message object contains some headers and a content body.= " msgstr "" =20 -#: gnu/packages/web.scm:2054 +#: gnu/packages/web.scm:2118 msgid "Perl http content negotiation" msgstr "" =20 -#: gnu/packages/web.scm:2056 +#: gnu/packages/web.scm:2120 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -9331,11 +10653,11 @@ msgid "" "fields in the request." msgstr "" =20 -#: gnu/packages/web.scm:2081 +#: gnu/packages/web.scm:2145 msgid "Parse HTTP/1.1 requests" msgstr "" =20 -#: gnu/packages/web.scm:2082 +#: gnu/packages/web.scm:2146 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a 'hint' as to what is required, or returns the\n" @@ -9343,87 +10665,92 @@ msgid "" "supported." msgstr "" =20 -#: gnu/packages/web.scm:2102 +#: gnu/packages/web.scm:2166 msgid "Fast HTTP request parser" msgstr "" =20 -#: gnu/packages/web.scm:2103 +#: gnu/packages/web.scm:2167 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" =20 -#: gnu/packages/web.scm:2124 +#: gnu/packages/web.scm:2188 msgid "Set up a CGI environment from an HTTP::Request" msgstr "" =20 -#: gnu/packages/web.scm:2125 +#: gnu/packages/web.scm:2189 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" =20 -#: gnu/packages/web.scm:2147 +#: gnu/packages/web.scm:2213 msgid "Lightweight HTTP server" msgstr "" =20 -#: gnu/packages/web.scm:2148 +#: gnu/packages/web.scm:2214 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standal= one\n" "http-based UI to your existing tools." msgstr "" =20 -#: gnu/packages/web.scm:2172 +#: gnu/packages/web.scm:2238 msgid "HTTP/1.1 client" msgstr "" =20 -#: gnu/packages/web.scm:2173 +#: gnu/packages/web.scm:2239 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" -"simple requests without the overhead of a large framework like LWP::Use= rAgent.\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after E= INTR." msgstr "" =20 -#: gnu/packages/web.scm:2192 +#: gnu/packages/web.scm:2258 msgid "Perl module to open an HTML file with automatic charset detection= " msgstr "" =20 -#: gnu/packages/web.scm:2194 +#: gnu/packages/web.scm:2260 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" -"automatically determining its encoding. It uses the HTML5 encoding sni= ffing\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" =20 -#: gnu/packages/web.scm:2213 +#: gnu/packages/web.scm:2280 msgid "Family-neutral IP socket supporting both IPv4 and IPv6" msgstr "" =20 -#: gnu/packages/web.scm:2214 +#: gnu/packages/web.scm:2281 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" =20 -#: gnu/packages/web.scm:2231 +#: gnu/packages/web.scm:2301 msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" msgstr "" =20 -#: gnu/packages/web.scm:2233 +#: gnu/packages/web.scm:2303 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" -"necessary functionality into the familiar IO::Socket interface and prov= iding\n" -"secure defaults whenever possible. This way existing applications can = be made\n" -"SSL-aware without much effort, at least if you do blocking I/O and don'= t use\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" "select or poll." msgstr "" =20 -#: gnu/packages/web.scm:2264 +#: gnu/packages/web.scm:2334 msgid "Perl modules for the WWW" msgstr "" =20 -#: gnu/packages/web.scm:2266 +#: gnu/packages/web.scm:2336 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -9433,11 +10760,11 @@ msgid "" "help you implement simple HTTP servers." msgstr "" =20 -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2358 msgid "Perl module to guess the media type for a file or a URL" msgstr "" =20 -#: gnu/packages/web.scm:2290 +#: gnu/packages/web.scm:2360 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\= n" @@ -9446,79 +10773,85 @@ msgid "" "exists it is used instead." msgstr "" =20 -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2386 msgid "HTTPS support for LWP::UserAgent" msgstr "" =20 -#: gnu/packages/web.scm:2317 +#: gnu/packages/web.scm:2387 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" =20 -#: gnu/packages/web.scm:2337 +#: gnu/packages/web.scm:2407 msgid "Virtual browser that retries errors" msgstr "" =20 -#: gnu/packages/web.scm:2338 +#: gnu/packages/web.scm:2408 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" -"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = seconds\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" "and retry a few times." msgstr "" =20 -#: gnu/packages/web.scm:2383 +#: gnu/packages/web.scm:2453 msgid "Perl interface to Amazon S3" msgstr "" =20 -#: gnu/packages/web.scm:2384 +#: gnu/packages/web.scm:2454 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" =20 -#: gnu/packages/web.scm:2404 +#: gnu/packages/web.scm:2474 msgid "Perl low-level HTTP connection (client)" msgstr "" =20 -#: gnu/packages/web.scm:2406 +#: gnu/packages/web.scm:2476 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" -"Net::HTTP class represents a connection to an HTTP server. The HTTP pr= otocol\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" "is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" "HTTP/1.1." msgstr "" =20 -#: gnu/packages/web.scm:2426 +#: gnu/packages/web.scm:2496 msgid "Extensible Perl server engine" msgstr "" =20 -#: gnu/packages/web.scm:2427 +#: gnu/packages/web.scm:2497 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" -"It attempts to be a generic server as in Net::Daemon and NetServer::Gen= eric.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" "It includes with it the ability to run as an inetd\n" "process (Net::Server::INET), a single connection server (Net::Server or= \n" "Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" "server which maintains a constant number of preforked\n" -"children (Net::Server::PreForkSimple), or as a managed preforking serve= r which\n" -"maintains the number of children based on server load (Net::Server::Pre= Fork).\n" -"In all but the inetd type, the server provides the ability to connect t= o one\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" "or to multiple server ports." msgstr "" =20 -#: gnu/packages/web.scm:2455 +#: gnu/packages/web.scm:2525 msgid "SSL support for Net::SMTP" msgstr "" =20 -#: gnu/packages/web.scm:2456 +#: gnu/packages/web.scm:2526 msgid "SSL support for Net::SMTP." msgstr "" =20 -#: gnu/packages/web.scm:2490 +#: gnu/packages/web.scm:2560 msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" msgstr "" =20 -#: gnu/packages/web.scm:2491 +#: gnu/packages/web.scm:2561 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for W= eb\n" @@ -9526,118 +10859,125 @@ msgid "" "WSGI." msgstr "" =20 -#: gnu/packages/web.scm:2517 +#: gnu/packages/web.scm:2587 msgid "Plack::Middleware which sets body for redirect response" msgstr "" =20 -#: gnu/packages/web.scm:2518 +#: gnu/packages/web.scm:2588 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" =20 -#: gnu/packages/web.scm:2539 +#: gnu/packages/web.scm:2611 msgid "Override REST methods to Plack apps via POST" msgstr "" =20 -#: gnu/packages/web.scm:2540 +#: gnu/packages/web.scm:2612 msgid "" "This middleware allows for POST requests that pretend to be\n" -"something else: by adding either a header named X-HTTP-Method-Override = to the\n" -"request, or a query parameter named x-tunneled-method to the URI, the c= lient\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" "can say what method it actually meant." msgstr "" =20 -#: gnu/packages/web.scm:2564 +#: gnu/packages/web.scm:2636 msgid "Plack::Middleware which removes body for HTTP response" msgstr "" =20 -#: gnu/packages/web.scm:2565 +#: gnu/packages/web.scm:2637 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" =20 -#: gnu/packages/web.scm:2586 +#: gnu/packages/web.scm:2658 msgid "Supports app to run as a reverse proxy backend" msgstr "" =20 -#: gnu/packages/web.scm:2587 +#: gnu/packages/web.scm:2659 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" -"which are changed by reverse-proxy. You can specify the reverse proxy = address\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" "and stop fake requests using 'enable_if' directive in your app.psgi." msgstr "" =20 -#: gnu/packages/web.scm:2608 +#: gnu/packages/web.scm:2680 msgid "Run HTTP tests on external live servers" msgstr "" =20 -#: gnu/packages/web.scm:2609 +#: gnu/packages/web.scm:2681 msgid "" "This module allows your to run your Plack::Test tests\n" -"against an external server instead of just against a local application = through\n" +"against an external server instead of just against a local application = " +"through\n" "either mocked HTTP or a locally spawned server." msgstr "" =20 -#: gnu/packages/web.scm:2631 +#: gnu/packages/web.scm:2703 msgid "Testing TCP programs" msgstr "" =20 -#: gnu/packages/web.scm:2632 +#: gnu/packages/web.scm:2704 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" =20 -#: gnu/packages/web.scm:2660 +#: gnu/packages/web.scm:2732 msgid "Testing-specific WWW::Mechanize subclass" msgstr "" =20 -#: gnu/packages/web.scm:2661 +#: gnu/packages/web.scm:2733 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" =20 -#: gnu/packages/web.scm:2694 +#: gnu/packages/web.scm:2766 msgid "Test::WWW::Mechanize for Catalyst" msgstr "" =20 -#: gnu/packages/web.scm:2695 +#: gnu/packages/web.scm:2767 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" -"Test::WWW:Mechanize module and the Catalyst web application framework t= o allow\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" "testing of Catalyst applications without needing to start up a web serv= er." msgstr "" =20 -#: gnu/packages/web.scm:2719 +#: gnu/packages/web.scm:2791 msgid "Test PSGI programs using WWW::Mechanize" msgstr "" =20 -#: gnu/packages/web.scm:2720 +#: gnu/packages/web.scm:2792 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" "WWW::Mechanize that incorporates features for web application testing. = The\n" -"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of PSGI\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" "applications." msgstr "" =20 -#: gnu/packages/web.scm:2740 +#: gnu/packages/web.scm:2812 msgid "Perl Uniform Resource Identifiers (absolute and relative)" msgstr "" =20 -#: gnu/packages/web.scm:2742 +#: gnu/packages/web.scm:2814 msgid "" "The URI module implements the URI class. Objects of this class\n" -"represent \"Uniform Resource Identifier references\" as specified in RF= C 2396\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" "and updated by RFC 2732." msgstr "" =20 -#: gnu/packages/web.scm:2763 +#: gnu/packages/web.scm:2837 msgid "Find URIs in arbitrary text" msgstr "" =20 -#: gnu/packages/web.scm:2764 +#: gnu/packages/web.scm:2838 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -9645,41 +10985,41 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." msgstr "" =20 -#: gnu/packages/web.scm:2786 +#: gnu/packages/web.scm:2860 msgid "WebSocket support for URI package" msgstr "" =20 -#: gnu/packages/web.scm:2787 +#: gnu/packages/web.scm:2861 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" =20 -#: gnu/packages/web.scm:2807 +#: gnu/packages/web.scm:2881 msgid "Perl extension interface for libcurl" msgstr "" =20 -#: gnu/packages/web.scm:2809 +#: gnu/packages/web.scm:2883 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" =20 -#: gnu/packages/web.scm:2836 +#: gnu/packages/web.scm:2912 msgid "Web browsing in a Perl object" msgstr "" =20 -#: gnu/packages/web.scm:2837 +#: gnu/packages/web.scm:2913 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" =20 -#: gnu/packages/web.scm:2857 +#: gnu/packages/web.scm:2933 msgid "Perl database of robots.txt-derived permissions" msgstr "" =20 -#: gnu/packages/web.scm:2859 +#: gnu/packages/web.scm:2935 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -9688,69 +11028,104 @@ msgid "" "their web site." msgstr "" =20 -#: gnu/packages/web.scm:2879 +#: gnu/packages/web.scm:2955 msgid "HTTP and WebSocket server library for R" msgstr "" =20 -#: gnu/packages/web.scm:2881 +#: gnu/packages/web.scm:2957 msgid "" "The httpuv package provides low-level socket and protocol support for\n= " -"handling HTTP and WebSocket requests directly from within R. It is pri= marily\n" +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" "intended as a building block for other packages, rather than making it\= n" "particularly easy to create complete web applications using httpuv alon= e." msgstr "" =20 -#: gnu/packages/web.scm:2902 +#: gnu/packages/web.scm:2978 msgid "Robust, high performance JSON parser and generator for R" msgstr "" =20 -#: gnu/packages/web.scm:2904 +#: gnu/packages/web.scm:2980 msgid "" "The jsonlite package provides a fast JSON parser and generator optimize= d\n" "for statistical data and the web. It offers flexible, robust, high\n" -"performance tools for working with JSON in R and is particularly powerf= ul for\n" -"building pipelines and interacting with a web API. In addition to conv= erting\n" -"JSON data from/to R objects, jsonlite contains functions to stream, val= idate,\n" -"and prettify JSON data. The unit tests included with the package verif= y that\n" -"all edge cases are encoded and decoded consistently for use with dynami= c data\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" "in systems and applications." msgstr "" =20 -#: gnu/packages/web.scm:2932 +#: gnu/packages/web.scm:3008 msgid "Simple HTTP server to serve static files or dynamic documents" msgstr "" =20 -#: gnu/packages/web.scm:2934 +#: gnu/packages/web.scm:3010 msgid "" "Servr provides an HTTP server in R to serve static files, or dynamic\n" -"documents that can be converted to HTML files (e.g., R Markdown) under = a given\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" "directory." msgstr "" =20 -#: gnu/packages/web.scm:2953 +#: gnu/packages/web.scm:3029 msgid "R tools for HTML" msgstr "" =20 -#: gnu/packages/web.scm:2955 +#: gnu/packages/web.scm:3031 msgid "This package provides tools for HTML generation and output in R." msgstr "" =20 -#: gnu/packages/web.scm:2974 +#: gnu/packages/web.scm:3050 msgid "HTML Widgets for R" msgstr "" =20 -#: gnu/packages/web.scm:2976 +#: gnu/packages/web.scm:3052 msgid "" "HTML widgets is a framework for creating HTML widgets that render in\n" -"various contexts including the R console, R Markdown documents, and Shi= ny web\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" "applications." msgstr "" =20 -#: gnu/packages/weechat.scm:92 +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" +msgstr "" + +#: gnu/packages/web.scm:3073 +msgid "" +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." +msgstr "" + +#: gnu/packages/web.scm:3107 +#, fuzzy +msgid "HTML5 parsing library" +msgstr "Biblioteka kompresji" + +#: gnu/packages/web.scm:3109 +msgid "" +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." +msgstr "" + +#: gnu/packages/weechat.scm:98 msgid "Extensible chat client" msgstr "" =20 -#: gnu/packages/weechat.scm:93 +#: gnu/packages/weechat.scm:99 msgid "" "WeeChat (Wee Enhanced Environment for Chat) is an\n" "Internet Relay Chat client, which is designed to be light and fast.\n" @@ -9767,7 +11142,8 @@ msgstr "" #: gnu/packages/wordnet.scm:81 msgid "" "WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" -"adjectives and adverbs are grouped into sets of cognitive synonyms (syn= sets),\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" "each expressing a distinct concept. Synsets are interlinked by means o= f\n" "conceptual-semantic and lexical relations. The resulting network of\n" "meaningfully related words and concepts can be navigated with the brows= er.\n" @@ -9776,24 +11152,25 @@ msgid "" "language processing." msgstr "" =20 -#: gnu/packages/xiph.scm:65 +#: gnu/packages/xiph.scm:66 msgid "Library for manipulating the ogg multimedia format" msgstr "" =20 -#: gnu/packages/xiph.scm:67 +#: gnu/packages/xiph.scm:68 msgid "" "The libogg library allows to manipulate the ogg multimedia container\n" -"format, which encapsulates raw compressed data and allows the interleav= ing of\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" "audio and video data. In addition to encapsulation and interleaving of= \n" "multiple data streams, ogg provides packet framing, error detection, an= d\n" "periodic timestamps for seeking." msgstr "" =20 -#: gnu/packages/xiph.scm:91 +#: gnu/packages/xiph.scm:92 msgid "Library implementing the vorbis audio format" msgstr "" =20 -#: gnu/packages/xiph.scm:93 +#: gnu/packages/xiph.scm:94 msgid "" "The libvorbis library implements the ogg vorbis audio format,\n" "a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" @@ -9802,22 +11179,22 @@ msgid "" "128 kbps/channel." msgstr "" =20 -#: gnu/packages/xiph.scm:118 +#: gnu/packages/xiph.scm:119 msgid "Library implementing the Theora video format" msgstr "" =20 -#: gnu/packages/xiph.scm:120 +#: gnu/packages/xiph.scm:121 msgid "" "The libtheora library implements the ogg theora video format,\n" "a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" "compressed video format." msgstr "" =20 -#: gnu/packages/xiph.scm:141 +#: gnu/packages/xiph.scm:142 msgid "Library for patent-free audio compression format" msgstr "" =20 -#: gnu/packages/xiph.scm:143 +#: gnu/packages/xiph.scm:144 msgid "" "GNU Speex is a patent-free audio compression codec specially designed\n= " "for speech. It is well-adapted to internet applications, such as VoIP.= It\n" @@ -9825,11 +11202,11 @@ msgid "" "stereo encoding, and voice activity detection." msgstr "" =20 -#: gnu/packages/xiph.scm:171 +#: gnu/packages/xiph.scm:174 msgid "Cross platform audio library" msgstr "" =20 -#: gnu/packages/xiph.scm:173 +#: gnu/packages/xiph.scm:176 msgid "" "Libao is a cross-platform audio library that allows programs to\n" "output audio using a simple API on a wide variety of platforms.\n" @@ -9853,21 +11230,22 @@ msgid "" "OpenBSD's sndio." msgstr "" =20 -#: gnu/packages/xiph.scm:212 +#: gnu/packages/xiph.scm:215 msgid "Free lossless audio codec" msgstr "" =20 -#: gnu/packages/xiph.scm:214 +#: gnu/packages/xiph.scm:217 msgid "" -"FLAC stands for Free Lossless Audio Codec, an audio format that is loss= less,\n" +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" "meaning that audio is compressed in FLAC without any loss in quality." msgstr "" =20 -#: gnu/packages/xiph.scm:240 +#: gnu/packages/xiph.scm:243 msgid "Karaoke and text codec for embedding in ogg" msgstr "" =20 -#: gnu/packages/xiph.scm:242 +#: gnu/packages/xiph.scm:245 msgid "" "Kate is an overlay codec, originally designed for karaoke and text,\n" "that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" @@ -9882,11 +11260,11 @@ msgid "" "Kate stream." msgstr "" =20 -#: gnu/packages/xiph.scm:276 +#: gnu/packages/xiph.scm:279 msgid "Ogg vorbis tools" msgstr "" =20 -#: gnu/packages/xiph.scm:278 +#: gnu/packages/xiph.scm:281 msgid "" "Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" "general-purpose compressed audio format.\n" @@ -9899,54 +11277,58 @@ msgid "" " an ogg vorbis file." msgstr "" =20 -#: gnu/packages/xiph.scm:303 gnu/packages/xiph.scm:366 +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 msgid "Versatile audio codec" msgstr "" =20 -#: gnu/packages/xiph.scm:305 +#: gnu/packages/xiph.scm:308 msgid "" "Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" -"is unmatched for interactive speech and music transmission over the Int= ernet,\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" "but is also intended for storage and streaming applications. It is\n" -"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = which\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" "incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." msgstr "" =20 -#: gnu/packages/xiph.scm:339 +#: gnu/packages/xiph.scm:342 msgid "Command line utilities to encode, inspect, and decode .opus files= " msgstr "" =20 -#: gnu/packages/xiph.scm:340 +#: gnu/packages/xiph.scm:343 msgid "" "Opus is a royalty-free, highly versatile audio codec.\n" "Opus-tools provide command line utilities for creating, inspecting and\= n" "decoding .opus files." msgstr "" =20 -#: gnu/packages/xiph.scm:368 +#: gnu/packages/xiph.scm:371 msgid "" "The opusfile library provides seeking, decode, and playback of Opus\n" -"streams in the Ogg container (.opus files) including over http(s) on po= six and\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" "windows systems." msgstr "" =20 -#: gnu/packages/xiph.scm:398 +#: gnu/packages/xiph.scm:401 msgid "Streaming media server" msgstr "" =20 -#: gnu/packages/xiph.scm:399 +#: gnu/packages/xiph.scm:402 msgid "" "Icecast is a streaming media server which currently supports\n" -"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed to\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" "create an Internet radio station or a privately running jukebox and man= y\n" "things in between." msgstr "" =20 -#: gnu/packages/xiph.scm:427 +#: gnu/packages/xiph.scm:430 msgid "Audio streaming library for icecast encoders" msgstr "" =20 -#: gnu/packages/xiph.scm:429 +#: gnu/packages/xiph.scm:432 msgid "" "Libshout is a library for communicating with and sending data to an\n" "icecast server. It handles the socket connection, the timing of the da= ta,\n" @@ -9968,15 +11350,16 @@ msgid "" "directory structure can be packed into a ZIP archive with a single comm= and.\n" "\n" "Zip has one compression method (deflation) and can also store files wit= hout\n" -"compression. Zip automatically chooses the better of the two for each = file.\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" =20 -#: gnu/packages/zip.scm:111 +#: gnu/packages/zip.scm:113 msgid "Decompression and file extraction utility" msgstr "" =20 -#: gnu/packages/zip.scm:113 +#: gnu/packages/zip.scm:115 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\= n" "also called \"zipfiles\".\n" @@ -9987,23 +11370,23 @@ msgid "" "recreates the stored directory structure by default." msgstr "" =20 -#: gnu/packages/zip.scm:147 +#: gnu/packages/zip.scm:149 msgid "Library for accessing zip files" msgstr "" =20 -#: gnu/packages/zip.scm:149 +#: gnu/packages/zip.scm:151 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" =20 -#: gnu/packages/zip.scm:167 +#: gnu/packages/zip.scm:169 msgid "Provides an interface to ZIP archive files" msgstr "" =20 -#: gnu/packages/zsh.scm:65 +#: gnu/packages/zsh.scm:71 msgid "Powerful shell for interactive use and scripting" msgstr "" =20 -#: gnu/packages/zsh.scm:66 +#: gnu/packages/zsh.scm:72 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" diff --git a/po/packages/pt_BR.po b/po/packages/pt_BR.po index 47d8fc2..ec2bd58 100644 --- a/po/packages/pt_BR.po +++ b/po/packages/pt_BR.po @@ -4,14 +4,16 @@ # This file is distributed under the same license as the guix package. # Rafael Ferreira , 2013. # +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix 0.4-pre2\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-07-14 11:59+0200\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2013-09-28 21:29-0300\n" "Last-Translator: Rafael Ferreira \n" -"Language-Team: Brazilian Portuguese \n" +"Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=3DUTF-8\n" @@ -19,344 +21,11443 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" "X-Generator: Poedit 1.5.7\n" =20 -#: gnu/packages/base.scm:65 +#: gnu/packages/abiword.scm:101 +msgid "Word processing program" +msgstr "" + +#. TRANSLATORS: Dear translator, We would like to inform you that packag= e +#. descriptions may occasionally include Texinfo markup. Texinfo markup +#. looks like "@code{rm -rf}", "@emph{important}", etc. When translatin= g, +#. please leave markup as is. +#: gnu/packages/abiword.scm:110 +msgid "" +"AbiWord is a word processing program. It is rapidly\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" +"your daily work, personal needs, or for just some good old typing fun." +msgstr "" + +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 +msgid "Spell checker" +msgstr "" + +#: gnu/packages/aspell.scm:55 +msgid "" +"Aspell is a spell-checker which can be used either as a library or as\n= " +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" +"documents written in the UTF-8 encoding and its ability to use multiple= \n" +"dictionaries, including personal ones." +msgstr "" + +#: gnu/packages/aspell.scm:95 +msgid "This package provides a dictionary for the GNU Aspell spell check= er." +msgstr "" + +#: gnu/packages/audio.scm:95 +msgid "Realtime modular synthesizer and effect processor" +msgstr "" + +#: gnu/packages/audio.scm:97 +msgid "" +"AlsaModularSynth is a digital implementation of a classical analog\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" +"e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" +"Filter) modules follow the convention of 1V / Octave." +msgstr "" + +#: gnu/packages/audio.scm:134 +msgid "Library for audio labelling" +msgstr "" + +#: gnu/packages/audio.scm:136 +msgid "" +"aubio is a tool designed for the extraction of annotations from audio\n= " +"signals. Its features include segmenting a sound file before each of i= ts\n" +"attacks, performing pitch detection, tapping the beat and producing MID= I\n" +"streams from live audio." +msgstr "" + +#: gnu/packages/audio.scm:228 +msgid "Digital audio workstation" +msgstr "" + +#: gnu/packages/audio.scm:230 +msgid "" +"Ardour is a multi-channel digital audio workstation, allowing users to\= n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" +"engineers, musicians, soundtrack editors and composers." +msgstr "" + +#: gnu/packages/audio.scm:262 +msgid "Tonewheel organ synthesizer" +msgstr "" + +#: gnu/packages/audio.scm:264 +msgid "" +"AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" +"with drawbars, distortion and rotating speakers. The organ has three\n= " +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" +"bass section with five drawbars. A standalone JACK application and LV2= \n" +"plugins are provided." +msgstr "" + +#: gnu/packages/audio.scm:301 +msgid "Audio plug-in pack for LV2 and JACK environments" +msgstr "" + +#: gnu/packages/audio.scm:303 +msgid "" +"Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" +"The suite contains lots of effects (delay, modulation, signal processin= g,\n" +"filters, equalizers, dynamics, distortion and mastering effects),\n" +"instruments (SF2 player, organ simulator and a monophonic synthesizer) = and\n" +"tools (analyzer, mono/stereo tools, crossovers)." +msgstr "" + +#: gnu/packages/audio.scm:346 +msgid "Sound and music computing system" +msgstr "" + +#: gnu/packages/audio.scm:348 +msgid "" +"Csound is a user-programmable and user-extensible sound processing\n" +"language and software synthesizer." +msgstr "" + +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 +msgid "C++ wrapper around the ALSA API" +msgstr "" + +#: gnu/packages/audio.scm:393 +msgid "" +"clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" +"ALSA PCM devices." +msgstr "" + +#: gnu/packages/audio.scm:428 +msgid "SoundFont synthesizer" +msgstr "" + +#: gnu/packages/audio.scm:430 +msgid "" +"FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" +"device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" +"also play midifiles using a Soundfont." +msgstr "" + +#: gnu/packages/audio.scm:462 +msgid "MPEG-4 and MPEG-2 AAC decoder" +msgstr "" + +#: gnu/packages/audio.scm:464 +msgid "" +"FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" +"PS, and DAB+." +msgstr "" + +#: gnu/packages/audio.scm:493 +msgid "Signal processing language" +msgstr "" + +#: gnu/packages/audio.scm:495 +msgid "Faust is a programming language for realtime audio signal process= ing." +msgstr "" + +#: gnu/packages/audio.scm:530 +msgid "GUS compatible patches for MIDI players" +msgstr "" + +#: gnu/packages/audio.scm:532 +msgid "" +"FreePats is a project to create a free and open set of GUS compatible\n= " +"patches that can be used with softsynths such as Timidity and WildMidi.= " +msgstr "" + +#: gnu/packages/audio.scm:585 +msgid "Virtual guitar amplifier" +msgstr "" + +#: gnu/packages/audio.scm:586 +msgid "" +"Guitarix is a virtual guitar amplifier running JACK.\n" +"Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" +"routed separately and deliver a processed stereo-signal via JACK. You = may\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" +"from a simple noise gate to modulation effects like flanger, phaser or\= n" +"auto-wah." +msgstr "" + +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" +msgstr "" + +#: gnu/packages/audio.scm:634 +msgid "" +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." +msgstr "" + +#: gnu/packages/audio.scm:678 +msgid "LV2 convolution reverb" +msgstr "" + +#: gnu/packages/audio.scm:680 +msgid "" +"IR is a low-latency, real-time, high performance signal convolver\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" +"2 or 4 channels, in any soundfile format supported by libsndfile." +msgstr "" + +#: gnu/packages/audio.scm:710 +msgid "JACK audio connection kit" +msgstr "" + +#: gnu/packages/audio.scm:712 +msgid "" +"JACK is a low-latency audio server. It can connect a number of\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" +"in that it has been designed from the ground up to be suitable for\n" +"professional audio work. This means that it focuses on two key areas:\= n" +"synchronous execution of all clients, and low latency operation." +msgstr "" + +#: gnu/packages/audio.scm:810 +msgid "Simple LV2 host for JACK" +msgstr "" + +#: gnu/packages/audio.scm:812 +msgid "" +"Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" +"plugins and exposes their ports as JACK ports, essentially making any L= V2\n" +"plugin function as a JACK application." +msgstr "" + +#: gnu/packages/audio.scm:855 +msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" +msgstr "" + +#: gnu/packages/audio.scm:857 +msgid "" +"LADSPA is a standard that allows software audio processors and effects\= n" +"to be plugged into a wide range of audio synthesis and recording packag= es." +msgstr "" + +#: gnu/packages/audio.scm:893 +msgid "Audio application session manager" +msgstr "" + +#: gnu/packages/audio.scm:895 +msgid "" +"LASH is a session management system for audio applications. It allows\= n" +"you to save and restore audio sessions consisting of multiple interconn= eced\n" +"applications, restoring program state (i.e. loaded patches) and the\n" +"connections between them." +msgstr "" + +#: gnu/packages/audio.scm:916 +msgid "Bauer stereophonic-to-binaural DSP" +msgstr "" + +#: gnu/packages/audio.scm:918 +msgid "" +"The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" +"for headphone prolonged listening to disable superstereo fatigue withou= t\n" +"essential distortions." +msgstr "" + +#: gnu/packages/audio.scm:943 +msgid "Implementation of the Open Sound Control protocol" +msgstr "" + +#: gnu/packages/audio.scm:945 +msgid "" +"liblo is a lightweight library that provides an easy to use\n" +"implementation of the Open Sound Control (OSC) protocol." +msgstr "" + +#: gnu/packages/audio.scm:982 +msgid "Library to simplify use of LV2 plugins in applications" +msgstr "" + +#: gnu/packages/audio.scm:984 +msgid "" +"Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" +"for applications. Lilv is the successor to SLV2, rewritten to be\n" +"significantly faster and have minimal dependencies." +msgstr "" + +#: gnu/packages/audio.scm:1011 +msgid "LV2 audio plugin specification" +msgstr "" + +#: gnu/packages/audio.scm:1013 +msgid "" +"LV2 is an open specification for audio plugins and host applications.\n= " +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" +"add functionality to support the needs of increasingly powerful audio\n= " +"software." +msgstr "" + +#: gnu/packages/audio.scm:1048 +msgid "LV2 port of the mda Piano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1049 +msgid "An LV2 port of the mda Piano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1062 +msgid "LV2 port of the mda EPiano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1063 +msgid "An LV2 port of the mda EPiano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1101 +msgid "C++ libraries for LV2 plugins" +msgstr "" + +#: gnu/packages/audio.scm:1103 +msgid "" +"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " +"extensions into easy to use C++ classes. It is the successor of\n" +"lv2-c++-tools." +msgstr "" + +#: gnu/packages/audio.scm:1144 +msgid "3D audio API" +msgstr "" + +#: gnu/packages/audio.scm:1146 +msgid "" +"OpenAL provides capabilities for playing audio in a virtual 3D\n" +"environment. Distance attenuation, doppler shift, and directional soun= d\n" +"emitters are among the features handled by the API. More advanced effe= cts,\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" +"buffers, and audio capture." +msgstr "" + +#: gnu/packages/audio.scm:1180 +msgid "Modular patch bay for audio and MIDI systems" +msgstr "" + +#: gnu/packages/audio.scm:1182 +msgid "" +"Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" +"and ALSA." +msgstr "" + +#: gnu/packages/audio.scm:1207 +msgid "Real-time audio utility library" +msgstr "" + +#: gnu/packages/audio.scm:1209 +msgid "" +"Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" +"aimed at audio/musical applications." +msgstr "" + +#: gnu/packages/audio.scm:1235 +msgid "Audio time-stretching and pitch-shifting library" +msgstr "" + +#: gnu/packages/audio.scm:1237 +msgid "" +"Rubber Band is a library and utility program that permits changing the\= n" +"tempo and pitch of an audio recording independently of one another." +msgstr "" + +#: gnu/packages/audio.scm:1285 +msgid "Cross-platform MIDI library for C++" +msgstr "" + +#: gnu/packages/audio.scm:1287 +msgid "" +"RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " +"classes) that provide a common cross-platform API for realtime MIDI\n" +"input/output." +msgstr "" + +#: gnu/packages/audio.scm:1313 +msgid "Library for serialising LV2 atoms to/from RDF" +msgstr "" + +#: gnu/packages/audio.scm:1315 +msgid "" +"Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" +"the Turtle syntax." +msgstr "" + +#: gnu/packages/audio.scm:1340 +msgid "Library for loading and wrapping LV2 plugin UIs" +msgstr "" + +#: gnu/packages/audio.scm:1342 +msgid "" +"Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" +"\n" +"Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" +"toolkit. The API is designed such that hosts do not need to explicitly= \n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" +"that toolkit will work in all hosts that use Suil automatically.\n" +"\n" +"Suil currently supports every combination of Gtk 2, Qt 4, and X11." +msgstr "" + +#: gnu/packages/audio.scm:1399 +msgid "Software synthesizer for playing MIDI files" +msgstr "" + +#: gnu/packages/audio.scm:1401 +msgid "" +"TiMidity++ is a software synthesizer. It can play MIDI files by\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" +"disks as various audio file formats." +msgstr "" + +#: gnu/packages/audio.scm:1440 +msgid "Modular and extensible audio processing system" +msgstr "" + +#: gnu/packages/audio.scm:1442 +msgid "" +"Vamp is an audio processing plugin system for plugins that extract\n" +"descriptive information from audio data =E2=80=94 typically referred to= as audio\n" +"analysis plugins or audio feature extraction plugins." +msgstr "" + +#: gnu/packages/audio.scm:1481 +msgid "Library for time stretching and pitch scaling of audio" +msgstr "" + +#: gnu/packages/audio.scm:1483 +msgid "" +"SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" +"stretching and pitch scaling of audio. This package contains the libra= ry." +msgstr "" + +#: gnu/packages/audio.scm:1506 +msgid "Hybrid lossless audio codec" +msgstr "" + +#: gnu/packages/audio.scm:1508 +msgid "" +"WavPack is an audio compression format with lossless, lossy and hybrid\= n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" +"encode and decode wavpack files." +msgstr "" + +#: gnu/packages/audio.scm:1527 +msgid "Mod file playing library" +msgstr "" + +#: gnu/packages/audio.scm:1529 +msgid "" +"Libmodplug renders mod music files as raw audio data, for playing or\n" +"conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" +"surround and reverb." +msgstr "" + +#: gnu/packages/audio.scm:1548 +msgid "Module player library" +msgstr "" + +#: gnu/packages/audio.scm:1550 +msgid "" +"Libxmp is a library that renders module files to PCM data. It supports= \n" +"over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" +"Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " +msgstr "" + +#: gnu/packages/audio.scm:1573 +msgid "Extended module player" +msgstr "" + +#: gnu/packages/audio.scm:1575 +msgid "" +"Xmp is a portable module player that plays over 90 mainstream and\n" +"obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" +"Tracker 3 S3M and Impulse Tracker IT files." +msgstr "" + +#: gnu/packages/audio.scm:1607 +msgid "Audio processing library for changing tempo, pitch and playback r= ate" +msgstr "" + +#: gnu/packages/audio.scm:1609 +msgid "" +"SoundTouch is an audio processing library for changing the tempo, pitch= \n" +"and playback rates of audio streams or audio files. It is intended for= \n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" +"control functionality, or just for playing around with the sound effect= s." +msgstr "" + +#: gnu/packages/audio.scm:1646 +msgid "Sound processing utility" +msgstr "" + +#: gnu/packages/audio.scm:1648 +msgid "" +"SoX (Sound eXchange) is a command line utility that can convert\n" +"various formats of computer audio files to other formats. It can also\= n" +"apply various effects to these sound files, and, as an added bonus, SoX= \n" +"can play and record audio files." +msgstr "" + +#: gnu/packages/audio.scm:1671 +msgid "One-dimensional sample-rate conversion library" +msgstr "" + +#: gnu/packages/audio.scm:1673 +msgid "" +"The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" +"conversion. It may be used, for example, to resample PCM-encoded audio= ." +msgstr "" + +#: gnu/packages/audio.scm:1695 +msgid "MPEG Audio Layer 2 (MP2) encoder" +msgstr "" + +#: gnu/packages/audio.scm:1697 +msgid "" +"TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" +"tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" +"portions of LAME." +msgstr "" + +#: gnu/packages/audio.scm:1737 +msgid "Audio I/O library" +msgstr "" + +#: gnu/packages/audio.scm:1739 +msgid "" +"PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" +"interface." +msgstr "" + +#: gnu/packages/audio.scm:1762 +msgid "Graphical user interface for FluidSynth" +msgstr "" + +#: gnu/packages/audio.scm:1764 +msgid "" +"Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" +"synthesizer written in C++." +msgstr "" + +#: gnu/packages/audio.scm:1802 +msgid "Networked audio system" +msgstr "" + +#: gnu/packages/audio.scm:1804 +msgid "" +"RSound allows you to send audio from an application and transfer it\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" +"with a much different focus than most other audio daemons." +msgstr "" + +#: gnu/packages/audio.scm:1835 +msgid "JACK audio frequency analyzer and display" +msgstr "" + +#: gnu/packages/audio.scm:1837 +msgid "" +"XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" +"result." +msgstr "" + +#: gnu/packages/audio.scm:1883 +msgid "Fast, partitioned convolution engine library" +msgstr "" + +#: gnu/packages/audio.scm:1885 +msgid "" +"Zita convolver is a C++ library providing a real-time convolution\n" +"engine." +msgstr "" + +#: gnu/packages/audio.scm:1930 +msgid "C++ library for resampling audio signals" +msgstr "" + +#: gnu/packages/audio.scm:1932 +msgid "" +"Libzita-resampler is a C++ library for resampling audio signals. It is= \n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" +"provide high-quality sample rate conversion." +msgstr "" + +#: gnu/packages/audio.scm:1978 +msgid "" +"Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" +"access to ALSA PCM devices, taking care of the many functions required = to\n" +"open, initialise and use a hw: device in mmap mode, and providing float= ing\n" +"point audio data." +msgstr "" + +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" + +#: gnu/packages/audio.scm:2010 +msgid "" +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." +msgstr "" + +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" + +#: gnu/packages/audio.scm:2030 +msgid "" +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 +msgid "Encrypted backup using rsync algorithm" +msgstr "" + +#: gnu/packages/backup.scm:94 +msgid "" +"Duplicity backs up directories by producing encrypted tar-format volume= s\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" +"librsync, the incremental archives are space efficient and only record = the\n" +"parts of files that have changed since the last backup. Because duplic= ity\n" +"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" +"spying and/or modification by the server." +msgstr "" + +#: gnu/packages/backup.scm:128 +msgid "Simple incremental backup tool" +msgstr "" + +#: gnu/packages/backup.scm:130 +msgid "" +"Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" +"backup scheduling is done by means of a cron job. It supports an\n" +"include/exclude mechanism, remote backups, encrypted backups and split\= n" +"backups (called chunks) to allow easy burning to CD/DVD." +msgstr "" + +#: gnu/packages/backup.scm:185 +msgid "Multi-format archive and compression library" +msgstr "" + +#: gnu/packages/backup.scm:187 +msgid "" +"Libarchive provides a flexible interface for reading and writing\n" +"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" +"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" +"serially iterate through the archive, writers serially add things to th= e\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" +"random access nor for in-place modification." +msgstr "" + +#: gnu/packages/backup.scm:250 +msgid "Provide a list of files to backup" +msgstr "" + +#: gnu/packages/backup.scm:252 +msgid "" +"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" +"Rdup itself does not backup anything, it only print a list of absolute\= n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" +"list and implement the backup strategy." +msgstr "" + +#: gnu/packages/backup.scm:282 +msgid "Tar-compatible archiver" +msgstr "" + +#: gnu/packages/backup.scm:284 +msgid "" +"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" +"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" +"errors." +msgstr "" + +#: gnu/packages/backup.scm:312 +msgid "Local/remote mirroring+incremental backup" +msgstr "" + +#: gnu/packages/backup.scm:314 +msgid "" +"Rdiff-backup backs up one directory to another, possibly over a network= .\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" +"diffs are stored in a special subdirectory of that target directory, so= you\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" +"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" +"modification times, extended attributes, acls, and resource forks. Als= o,\n" +"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" +"rdiff-backup is easy to use and settings have sensible defaults." +msgstr "" + +#: gnu/packages/backup.scm:353 +msgid "Deduplicating backup program" +msgstr "" + +#: gnu/packages/backup.scm:354 +msgid "" +"Attic is a deduplicating backup program. The main goal of\n" +"Attic is to provide an efficient and secure way to backup data. The da= ta\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" +"changes are stored." +msgstr "" + +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 msgid "Hello, GNU world: An example GNU package" msgstr "Ol=C3=A1, mundo GNU: Um exemplo de pacote GNU" =20 -#: gnu/packages/base.scm:67 +#: gnu/packages/base.scm:68 +msgid "" +"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" +"command-line arguments, multiple languages, and so on." +msgstr "" + +#: gnu/packages/base.scm:89 +msgid "Print lines matching a pattern" +msgstr "Exibe linhas correspondendo a um padr=C3=A3o" + +#: gnu/packages/base.scm:91 +msgid "" +"grep is a tool for finding text inside files. Text is found by\n" +"matching a pattern provided by the user in one or many files. The patt= ern\n" +"may be provided as a basic or extended regular expression, or as fixed\= n" +"strings. By default, the matching text is simply printed to the screen= ,\n" +"however the output can be greatly customized to include, for example, l= ine\n" +"numbers. GNU grep offers many extensions over the standard utility,\n" +"including, for example, recursive directory searching." +msgstr "" + +#: gnu/packages/base.scm:114 +msgid "Stream editor" +msgstr "Editor de fluxo" + +#: gnu/packages/base.scm:129 +msgid "" +"Sed is a non-interactive, text stream editor. It receives a text\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" +"is often used for substituting text patterns in a stream. The GNU\n" +"implementation offers several extensions over the standard utility." +msgstr "" + +#: gnu/packages/base.scm:152 +msgid "Managing tar archives" +msgstr "Gerenciando de arquivos-tar" + +#: gnu/packages/base.scm:154 +msgid "" +"Tar provides the ability to create tar archives, as well as the\n" +"ability to extract, update or list files in an existing archive. It is= \n" +"useful for combining many files into one larger file, while maintaining= \n" +"directory structure and file information such as permissions and\n" +"creation/modification dates. GNU tar offers many extensions over the\n= " +"standard utility." +msgstr "" + +#: gnu/packages/base.scm:177 +msgid "Apply differences to originals, with optional backups" +msgstr "Aplica diferen=C3=A7as aos originais, com backups opcionais" + +#: gnu/packages/base.scm:179 +msgid "" +"Patch is a program that applies changes to files based on differences\n= " +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" +"files depending on the contents of the diff file. It accepts several\n= " +"different diff formats. It may also be used to revert previously appli= ed\n" +"differences." +msgstr "" + +#: gnu/packages/base.scm:199 +msgid "Comparing and merging files" +msgstr "Comparando e mesclando arquivos" + +#: gnu/packages/base.scm:201 +msgid "" +"GNU Diffutils is a package containing tools for finding the\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" +"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" +"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" +"interactive means to merge two files." +msgstr "" + +#: gnu/packages/base.scm:234 +msgid "Operating on files matching given criteria" +msgstr "Opera=C3=A7=C3=A3o em arquivos correspondendo aos crit=C3=A9rios= dados" + +#: gnu/packages/base.scm:236 +msgid "" +"Findutils supplies the basic file directory searching utilities of the\= n" +"GNU system. It consists of two primary searching utilities: \"find\"\n= " +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" +"used to apply commands with arbitrarily long arguments." +msgstr "" + +#: gnu/packages/base.scm:300 +msgid "Core GNU utilities (file, text, shell)" +msgstr "Utilit=C3=A1rios centrais do GNU (file, text, shell)" + +#: gnu/packages/base.scm:302 +msgid "" +"GNU Coreutils includes all of the basic command-line tools that are\n" +"expected in a POSIX system. These provide the basic file, shell and te= xt\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" +"functionality beyond that which is outlined in the POSIX standard." +msgstr "" + +#: gnu/packages/base.scm:344 +msgid "Remake files automatically" +msgstr "Refaz arquivos automaticamente" + +#: gnu/packages/base.scm:346 +msgid "" +"Make is a program that is used to control the production of\n" +"executables or other files from their source files. The process is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" +"generated from its source. It has powerful dependency resolution and t= he\n" +"ability to determine when files have to be regenerated after their sour= ces\n" +"change. GNU make offers many powerful extensions over the standard uti= lity." +msgstr "" + +#: gnu/packages/base.scm:391 +msgid "Binary utilities: bfd gas gprof ld" +msgstr "Utilit=C3=A1rios de bin=C3=A1rios: bfd gas gprof ld" + +#: gnu/packages/base.scm:393 +msgid "" +"GNU Binutils is a collection of tools for working with binary files.\n" +"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" +"Other tools include programs to display binary profiling information, l= ist\n" +"the strings in a binary file, and utilities for working with archives. = The\n" +"\"bfd\" library for working with executable and object formats is also\= n" +"included." +msgstr "" + +#: gnu/packages/base.scm:458 +msgid "The linker wrapper" +msgstr "A interface do linker" + +# Desconhe=C3=A7o tradu=C3=A7=C3=A3o para o 'linker', sendo ele amplamen= te conhecido com este nome. Al=C3=A9m do mais, o binutils n=C3=A3o foi tr= aduzido at=C3=A9 a tradu=C3=A7=C3=A3o inicial do guix. Portanto, mantive = 'linker' - Rafael +#: gnu/packages/base.scm:460 +#, fuzzy +msgid "" +"The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" +"store." +msgstr "" +"o linker wrapper (ou `ld-wrapper') atua como interface do linker para\n= " +"adicionar quaisquer op=C3=A7=C3=B5es \"-rpath\" faltando e para detecta= r qualquer\n" +"uso incorreto de bibliotecas fora do armazenamento." + +#: gnu/packages/base.scm:637 +msgid "The GNU C Library" +msgstr "A GNU C Library" + +#: gnu/packages/base.scm:639 +msgid "" +"Any Unix-like operating system needs a C library: the library which\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" +"printf, exit...\n" +"\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" +"with the Linux kernel." +msgstr "" +"Qualquer sistema operacional tipo Unix precisa de uma biblioteca C: a\n= " +"biblioteca que define as \"chamadas de sistema\" e outras funcionalidad= es\n" +" b=C3=A1sicas como open, malloc, printf, exit ...\n" +"\n" +"A biblioteca C do GNU =C3=A9 usada como uma biblioteca C no sistema GNU= e na\n" +"maioria dos sistemas com kernel Linux." + +#: gnu/packages/base.scm:670 +msgid "All the locales supported by the GNU C Library" +msgstr "" + +#: gnu/packages/base.scm:672 +msgid "" +"This package provides all the locales supported by the GNU C Library,\n= " +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" +"the 'share/locale' sub-directory of this package." +msgstr "" + +#: gnu/packages/base.scm:740 +msgid "Small sample of UTF-8 locales" +msgstr "" + +#: gnu/packages/base.scm:742 +msgid "" +"This package provides a small sample of UTF-8 locales mostly useful in\= n" +"test environments." +msgstr "" + +#: gnu/packages/base.scm:760 +msgid "Find full path of shell commands" +msgstr "" + +#: gnu/packages/base.scm:762 +msgid "" +"The which program finds the location of executables in PATH, with a\n" +"variety of options. It is an alternative to the shell \"type\" built-i= n\n" +"command." +msgstr "" + +#: gnu/packages/base.scm:832 +#, fuzzy +msgid "The GNU C Library (GNU Hurd variant)" +msgstr "A GNU C Library" + +#: gnu/packages/base.scm:934 +msgid "Database of current and historical time zones" +msgstr "Banco de dados de fusos hor=C3=A1rios hist=C3=B3ricos e atuais" + +#: gnu/packages/base.scm:935 +#, fuzzy +msgid "" +"The Time Zone Database (often called tz or zoneinfo)\n" +"contains code and data that represent the history of local time for man= y\n" +"representative locations around the globe. It is updated periodically = to\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" +"and daylight-saving rules." +msgstr "" +"O Time Zone Database (geralmente chamado de tz ou zoneinfo)\n" +"cont=C3=A9m c=C3=B3digos e dados que representam o hist=C3=B3rico dos h= or=C3=A1rios locais de\n" +"muitas localiza=C3=A7=C3=B5es representativas pelo mundo. =C3=89 atuali= zado periodicamente\n" +"para refletir as altera=C3=A7=C3=B5es feitas por corpos pol=C3=ADticos = nos limites de " +"fusos\n" +"hor=C3=A1rios, posi=C3=A7=C3=A3o do UTC e regras de hor=C3=A1rio de ver= =C3=A3o." + +#: gnu/packages/bittorrent.scm:90 +msgid "Fast and easy BitTorrent client" +msgstr "" + +#: gnu/packages/bittorrent.scm:92 +msgid "" +"Transmission is a BitTorrent client that comes with graphical,\n" +"textual, and Web user interfaces. Transmission also has a daemon for\n= " +"unattended operations. It supports local peer discovery, full encrypti= on,\n" +"DHT, =C2=B5TP, PEX and Magnet Links." +msgstr "" + +#: gnu/packages/bittorrent.scm:124 +msgid "BitTorrent library of rtorrent" +msgstr "" + +#: gnu/packages/bittorrent.scm:126 +msgid "" +"LibTorrent is a BitTorrent library used by and developed in parallel\n" +"with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" +"speed and efficiency." +msgstr "" + +#: gnu/packages/bittorrent.scm:153 +msgid "BitTorrent client with ncurses interface" +msgstr "" + +#: gnu/packages/bittorrent.scm:155 +msgid "" +"rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" +"full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" +"XML-RPC over SCGI." +msgstr "" + +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + +#: gnu/packages/certs.scm:65 +msgid "Python script to extract .pem data from certificate collection" +msgstr "" + +#: gnu/packages/certs.scm:67 +msgid "" +"certdata2pem.py is a Python script to transform X.509 certificate\n" +"\"source code\" as contained, for example, in the Mozilla sources, into= \n" +".pem formatted certificates." +msgstr "" + +#: gnu/packages/certs.scm:124 +msgid "CA certificates from Mozilla" +msgstr "" + +#: gnu/packages/certs.scm:126 +msgid "" +"This package provides certificates for Certification Authorities (CA)\n= " +"taken from the NSS package and thus ultimately from the Mozilla project= ." +msgstr "" + +#: gnu/packages/compression.scm:75 +msgid "Compression library" +msgstr "" + +#: gnu/packages/compression.scm:77 +msgid "" +"zlib is designed to be a free, general-purpose, legally unencumbered --= \n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" +"use on virtually any computer hardware and operating system. The zlib = data\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" +"triple the file size in extreme cases.) zlib's memory footprint is als= o\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" +"in compression." +msgstr "" + +#: gnu/packages/compression.scm:102 +msgid "Replacement for Sun's 'jar' utility" +msgstr "" + +#: gnu/packages/compression.scm:104 +msgid "" +"FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" +"utility. Instead of being written in Java, FastJar is written in C." +msgstr "" + +#: gnu/packages/compression.scm:122 +msgid "C library for manipulating POSIX tar files" +msgstr "" + +#: gnu/packages/compression.scm:124 +msgid "" +"libtar is a C library for manipulating POSIX tar files. It handles\n" +"adding and extracting files to/from a tar archive." +msgstr "" + +#: gnu/packages/compression.scm:141 +msgid "General file (de)compression (using lzw)" +msgstr "" + +#: gnu/packages/compression.scm:146 +msgid "" +"GNU Gzip provides data compression and decompression utilities; the\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" +"\".tar.gz\" or \".tgz\", etc." +msgstr "" + +#: gnu/packages/compression.scm:222 +msgid "High-quality data compression program" +msgstr "" + +#: gnu/packages/compression.scm:224 +msgid "" +"bzip2 is a freely available, patent free (see below), high-quality data= \n" +"compressor. It typically compresses files to within 10% to 15% of the = best\n" +"available techniques (the PPM family of statistical compressors), whils= t\n" +"being around twice as fast at compression and six times faster at\n" +"decompression." +msgstr "" + +#: gnu/packages/compression.scm:254 +msgid "Parallel bzip2 implementation" +msgstr "" + +#: gnu/packages/compression.scm:256 +msgid "" +"Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" +"compressed with pbzip2 can be decompressed with bzip2)." +msgstr "" + +#: gnu/packages/compression.scm:277 +msgid "General-purpose data compression" +msgstr "" + +#: gnu/packages/compression.scm:279 +msgid "" +"XZ Utils is free general-purpose data compression software with high\n" +"compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" +"\n" +"The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" +"been modified quite a lot to be suitable for XZ Utils. The primary\n" +"compression algorithm is currently LZMA2, which is used inside the .xz\= n" +"container format. With typical files, XZ Utils create 30 % smaller out= put\n" +"than gzip and 15 % smaller output than bzip2." +msgstr "" + +#: gnu/packages/compression.scm:307 +msgid "Data compression library suitable for real-time data de-/compress= ion" +msgstr "" + +#: gnu/packages/compression.scm:309 +msgid "" +"LZO is a data compression library which is suitable for data\n" +"de-/compression in real-time. This means it favours speed over\n" +"compression ratio.\n" +"\n" +"LZO is written in ANSI C. Both the source code and the compressed data= \n" +"format are designed to be portable across platforms." +msgstr "" + +#: gnu/packages/compression.scm:332 +msgid "Compress or expand files" +msgstr "" + +#: gnu/packages/compression.scm:334 +msgid "" +"Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" +"some compression ratio)." +msgstr "" + +#: gnu/packages/compression.scm:353 +msgid "Lossless data compressor based on the LZMA algorithm" +msgstr "" + +#: gnu/packages/compression.scm:355 +msgid "" +"Lzip is a lossless data compressor with a user interface similar to the= \n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" +"archiving. Lzip is a clean implementation of the LZMA algorithm." +msgstr "" + +#: gnu/packages/compression.scm:387 +msgid "Archives in shell scripts, uuencode/uudecode" +msgstr "" + +#: gnu/packages/compression.scm:389 +msgid "" +"GNU sharutils is a package for creating and manipulating shell\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" +"This package is mostly for compatibility and historical interest." +msgstr "" + +#: gnu/packages/compression.scm:420 +msgid "Library for SoundFont decompression" +msgstr "" + +#: gnu/packages/compression.scm:422 +msgid "" +"SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" +"with the sfArk algorithm." +msgstr "" + +#: gnu/packages/compression.scm:454 +msgid "Basic sfArk decompressor" +msgstr "" + +#: gnu/packages/compression.scm:455 +msgid "" +"SfArk extractor converts SoundFonts in the compressed legacy\n" +"sfArk file format to the uncompressed sf2 format." +msgstr "" + +#: gnu/packages/compression.scm:472 +msgid "Compression tools for some formats used by Microsoft" +msgstr "" + +#: gnu/packages/compression.scm:474 +msgid "" +"The purpose of libmspack is to provide both compression and\n" +"decompression of some loosely related file formats used by Microsoft." +msgstr "" + +#: gnu/packages/compression.scm:493 +msgid "Low-level interface to bzip2 compression library" +msgstr "" + +#: gnu/packages/compression.scm:494 +msgid "" +"This module provides a Perl interface to the bzip2\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:528 +msgid "Low-level interface to zlib compression library" +msgstr "" + +#: gnu/packages/compression.scm:529 +msgid "" +"This module provides a Perl interface to the zlib\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:550 +msgid "IO Interface to compressed files/buffers" +msgstr "" + +#: gnu/packages/compression.scm:551 +msgid "" +"IO-Compress provides a Perl interface to allow reading and\n" +"writing of compressed data created with the zlib and bzip2 libraries." +msgstr "" + +#: gnu/packages/compression.scm:577 +msgid "Compression algorithm focused on speed" +msgstr "" + +#: gnu/packages/compression.scm:578 +msgid "" +"LZ4 is a lossless compression algorithm, providing\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" +"time for compression ratio." +msgstr "" + +#: gnu/packages/compression.scm:618 +msgid "Tools to create and extract squashfs filesystems" +msgstr "" + +#: gnu/packages/compression.scm:620 +msgid "" +"Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" +"zlib to compress files, inodes, and directories. All blocks are packed= to\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" +"It is intended to be used for archival use, for live CDs, and for embed= ded\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" +"extract such filesystems." +msgstr "" + +#: gnu/packages/compression.scm:657 +msgid "Parallel implementation of gzip" +msgstr "" + +#: gnu/packages/compression.scm:659 +msgid "" +"This package provides a parallel implementation of gzip that exploits\n= " +"multiple processors and multiple cores when compressing data." +msgstr "" + +#: gnu/packages/compression.scm:683 +msgid "Parallel indexing implementation of LZMA" +msgstr "" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 +msgid "Berkeley database" +msgstr "" + +#: gnu/packages/databases.scm:124 +msgid "" +"Berkeley DB is an embeddable database allowing developers the choice of= \n" +"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +msgstr "" + +#: gnu/packages/databases.scm:198 +msgid "Fast, easy to use, and popular database" +msgstr "" + +#: gnu/packages/databases.scm:200 +msgid "" +"MySQL is a fast, reliable, and easy to use relational database\n" +"management system that supports the standardized Structured Query\n" +"Language." +msgstr "" + +#: gnu/packages/databases.scm:267 +msgid "SQL database server" +msgstr "" + +#: gnu/packages/databases.scm:269 +msgid "" +"MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" +"as a drop-in replacement of MySQL." +msgstr "" + +#: gnu/packages/databases.scm:289 +msgid "Powerful object-relational database system" +msgstr "" + +#: gnu/packages/databases.scm:291 +msgid "" +"PostgreSQL is a powerful object-relational database system. It is full= y\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" +"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" +"TIMESTAMP. It also supports storage of binary large objects, including= \n" +"pictures, sounds, or video." +msgstr "" + +#: gnu/packages/databases.scm:329 +msgid "Manipulate plain text files as databases" +msgstr "Manipula arquivos texto simples como banco de dados" + +#: gnu/packages/databases.scm:331 +msgid "" +"GNU Recutils is a set of tools and libraries for creating and\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" +"databases created with Recutils carry all of the expected features such= as\n" +"unique fields, primary keys, time stamps and more. Many different fiel= d\n" +"types are supported, as is encryption." +msgstr "" + +#: gnu/packages/databases.scm:383 +msgid "The SQLite database management system" +msgstr "" + +#: gnu/packages/databases.scm:385 +msgid "" +"SQLite is a software library that implements a self-contained, serverle= ss,\n" +"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" +"is in the public domain." +msgstr "" + +#: gnu/packages/databases.scm:420 +msgid "Trivial database" +msgstr "" + +#: gnu/packages/databases.scm:422 +msgid "" +"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" +"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" +"extremely small." +msgstr "" + +#: gnu/packages/databases.scm:441 +msgid "Database independent interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:442 +msgid "This package provides an database interface for Perl." +msgstr "" + +#: gnu/packages/databases.scm:489 +msgid "Extensible and flexible object <-> relational mapper" +msgstr "" + +#: gnu/packages/databases.scm:490 +msgid "" +"An SQL to OO mapper with an object API inspired by\n" +"Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" +"still providing access to as many of the capabilities of the database a= s\n" +"possible, including retrieving related records from multiple tables in = a\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" +"\"ORDER BY\" and \"HAVING\" support." +msgstr "" + +#: gnu/packages/databases.scm:520 +msgid "Cursor with built-in caching support" +msgstr "" + +#: gnu/packages/databases.scm:521 +msgid "" +"DBIx::Class::Cursor::Cached provides a cursor class with\n" +"built-in caching support." +msgstr "" + +#: gnu/packages/databases.scm:541 +msgid "Introspect many-to-many relationships" +msgstr "" + +#: gnu/packages/databases.scm:542 +msgid "" +"Because the many-to-many relationships are not real\n" +"relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" +"all relevant information about these non-relationships so they can late= r be\n" +"introspected and examined." +msgstr "" + +#: gnu/packages/databases.scm:599 +msgid "Create a DBIx::Class::Schema based on a database" +msgstr "" + +#: gnu/packages/databases.scm:600 +msgid "" +"DBIx::Class::Schema::Loader automates the definition of a\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" +"columns, primary keys, unique constraints and relationships." +msgstr "" + +#: gnu/packages/databases.scm:624 +msgid "DBI PostgreSQL interface" +msgstr "" + +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "" + +#: gnu/packages/databases.scm:667 +msgid "SQlite interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:668 +msgid "" +"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" +"capable RDBMS working for your Perl project you simply have to install = this\n" +"module, and nothing else." +msgstr "" + +#: gnu/packages/databases.scm:698 +msgid "Generate SQL from Perl data structures" +msgstr "" + +#: gnu/packages/databases.scm:699 +msgid "" +"This module was inspired by the excellent DBIx::Abstract.\n" +"While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" +"been modified to make the SQL easier to generate from Perl data structu= res.\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" +"structures you provide it, so that you don't have to modify your code e= very\n" +"time your data changes." +msgstr "" + +#: gnu/packages/databases.scm:728 +msgid "Split SQL code into atomic statements" +msgstr "" + +#: gnu/packages/databases.scm:729 +msgid "" +"This module tries to split any SQL code, even including\n" +"non-standard extensions, into the atomic statements it is composed of." +msgstr "" + +#: gnu/packages/databases.scm:747 +msgid "SQL tokenizer" +msgstr "" + +#: gnu/packages/databases.scm:748 +msgid "" +"SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" +"claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" +"valid SQL query." +msgstr "" + +#: gnu/packages/databases.scm:765 +msgid "Data source abstraction library" +msgstr "" + +#: gnu/packages/databases.scm:766 +msgid "" +"Unixodbc is a library providing an API with which to access\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" +"Driver." +msgstr "" + +#: gnu/packages/databases.scm:790 +msgid "In-memory key/value and document store" +msgstr "" + +#: gnu/packages/databases.scm:792 +msgid "" +"UnQLite is an in-process software library which implements a\n" +"self-contained, serverless, zero-configuration, transactional NoSQL\n" +"database engine. UnQLite is a document store database similar to\n" +"MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store\n" +"similar to BerkeleyDB, LevelDB, etc." +msgstr "" + +#: gnu/packages/databases.scm:819 +msgid "Key-value cache and store" +msgstr "" + +#: gnu/packages/databases.scm:820 +msgid "" +"Redis is an advanced key-value cache and store. Redis\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" +"sets, bitmaps and hyperloglogs." +msgstr "" + +#: gnu/packages/debug.scm:74 +msgid "Heuristical file minimizer" +msgstr "" + +#: gnu/packages/debug.scm:76 +msgid "" +"Delta assists you in minimizing \"interesting\" files subject to a test= \n" +"of their interestingness. A common such situation is when attempting t= o\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" +"program to exhibit a bug." +msgstr "" + +#: gnu/packages/debug.scm:135 +msgid "Reducer for interesting code" +msgstr "" + +#: gnu/packages/debug.scm:137 +msgid "" +"C-Reduce is a tool that takes a large C or C++ program that has a\n" +"property of interest (such as triggering a compiler bug) and automatica= lly\n" +"produces a much smaller C/C++ program that has the same property. It i= s\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" +"tools that process C/C++ code." +msgstr "" + +#: gnu/packages/debug.scm:249 +msgid "Security-oriented fuzzer" +msgstr "" + +#: gnu/packages/debug.scm:251 +msgid "" +"American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" +"fuzzed code. The compact synthesized corpora produced by the tool are = also\n" +"useful for seeding other, more labor- or resource-intensive testing reg= imes\n" +"down the road." +msgstr "" + +#: gnu/packages/dejagnu.scm:78 +msgid "GNU software testing framework" +msgstr "" + +#: gnu/packages/dejagnu.scm:80 +msgid "" +"DejaGnu is a framework for testing software. In effect, it serves as\n= " +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" +"multiple test suites, which are then all managed by a single harness." +msgstr "" + +#: gnu/packages/feh.scm:54 +msgid "Fast and light imlib2-based image viewer" +msgstr "" + +#: gnu/packages/feh.scm:56 +msgid "" +"feh is an X11 image viewer aimed mostly at console users.\n" +"Unlike most other viewers, it does not have a fancy GUI, but simply\n" +"displays images. It can also be used to set the desktop wallpaper.\n" +"It is controlled via commandline arguments and configurable key/mouse\n= " +"actions." +msgstr "" + +#: gnu/packages/games.scm:116 +msgid "Backgammon game" +msgstr "" + +#: gnu/packages/games.scm:117 +msgid "" +"The GNU backgammon application can be used for playing, analyzing and\n= " +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" +"neural networks suitable for both beginners and advanced players. In\n= " +"addition to a command-line interface, it also features an attractive, 3= D\n" +"representation of the playing board." +msgstr "" + +#: gnu/packages/games.scm:146 +msgid "3d Rubik's cube game" +msgstr "" + +#: gnu/packages/games.scm:148 +msgid "" +"GNUbik is a puzzle game in which you must manipulate a cube to make\n" +"each of its faces have a uniform color. The game is customizable, allo= wing\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" +"You may even apply photos to the faces instead of colors. The game is\= n" +"scriptable with Guile." +msgstr "" + +#: gnu/packages/games.scm:198 +msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" +msgstr "" + +#: gnu/packages/games.scm:199 +msgid "" +"L'Abbaye des Morts is a 2D platform game set in 13th century\n" +"France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" +"that beneath its ruins lay buried an ancient evil." +msgstr "" + +#: gnu/packages/games.scm:242 +msgid "Lemmings clone" +msgstr "" + +#: gnu/packages/games.scm:244 +msgid "" +"Pingus is a free Lemmings-like puzzle game in which the player takes\n" +"command of a bunch of small animals and has to guide them through level= s.\n" +"Since the animals walk on their own, the player can only influence them= by\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" +"in the other direction. Multiple such commands are necessary to reach = the\n" +"level's exit. The game is presented in a 2D side view." +msgstr "" + +#: gnu/packages/games.scm:266 +msgid "Convert English text to humorous dialects" +msgstr "" + +#: gnu/packages/games.scm:267 +msgid "" +"The GNU Talk Filters are programs that convert English text\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" +"a C library, so they can easily be integrated into other programs." +msgstr "" + +#: gnu/packages/games.scm:299 +msgid "Simulate the display from \"The Matrix\"" +msgstr "" + +#: gnu/packages/games.scm:300 +msgid "" +"CMatrix simulates the display from \"The Matrix\" and is\n" +"based on the screensaver from the movie's website. It works with termi= nal\n" +"settings up to 132x300 and can scroll lines all at the same rate or\n" +"asynchronously and at a user-defined speed." +msgstr "" + +#: gnu/packages/games.scm:320 +msgid "Full chess implementation" +msgstr "" + +#: gnu/packages/games.scm:321 +msgid "" +"GNU Chess is a chess engine. It allows you to compete\n" +"against the computer in a game of chess, either through the default " +"terminal\n" +"interface or via an external visual interface such as GNU XBoard." +msgstr "" + +#: gnu/packages/games.scm:349 +msgid "Twisted adventures of young pig farmer Dink Smallwood" +msgstr "" + +#: gnu/packages/games.scm:351 +msgid "" +"GNU FreeDink is a free and portable re-implementation of the engine\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" +"game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" +"To that extent, it also includes a front-end for managing all of your D= -Mods." +msgstr "" + +#: gnu/packages/games.scm:373 +msgid "Game data for GNU Freedink" +msgstr "" + +#: gnu/packages/games.scm:375 +msgid "This package contains the game data of GNU Freedink." +msgstr "" + +#: gnu/packages/games.scm:427 +msgid "Graphical user interface for chess programs" +msgstr "" + +#: gnu/packages/games.scm:428 +msgid "" +"GNU XBoard is a graphical board for all varieties of chess,\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" +"fully interactive graphical interface and it can load and save games in= the\n" +"Portable Game Notation." +msgstr "" + +#: gnu/packages/games.scm:481 +msgid "Ball and paddle game" +msgstr "" + +#: gnu/packages/games.scm:482 +msgid "" +"XBoing is a blockout type game where you have a paddle which\n" +"you control to bounce a ball around the game zone destroying blocks wit= h a\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" +"destroy, the better your score. The person with the highest score wins= ." +msgstr "" + +#: gnu/packages/games.scm:514 +msgid "Typing tutor" +msgstr "" + +#: gnu/packages/games.scm:516 +msgid "" +"GNU Typist is a universal typing tutor. It can be used to learn and\n" +"practice touch-typing. Several tutorials are included; in addition to\= n" +"tutorials for the standard QWERTY layout, there are also tutorials for = the\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" +"are primarily in English, however some in other languages are provided.= " +msgstr "" + +#: gnu/packages/games.scm:569 +msgid "3D game engine written in C++" +msgstr "" + +#: gnu/packages/games.scm:571 +msgid "" +"The Irrlicht Engine is a high performance realtime 3D engine written in= \n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" +"for common mesh file formats, and collision detection." +msgstr "" + +#: gnu/packages/games.scm:623 +msgid "2D space shooter" +msgstr "" + +#: gnu/packages/games.scm:625 +msgid "" +"M.A.R.S. is a 2D space shooter with pretty visual effects and\n" +"attractive physics. Players can battle each other or computer controll= ed\n" +"enemies in different game modes such as space ball, death match, team d= eath\n" +"match, cannon keep, and grave-itation pit." +msgstr "" + +#: gnu/packages/games.scm:666 +msgid "Main game data for the Minetest game engine" +msgstr "" + +#: gnu/packages/games.scm:668 +msgid "Game data for the Minetest infinite-world block sandox game." +msgstr "" + +#: gnu/packages/games.scm:720 +msgid "Infinite-world block sandbox game" +msgstr "" + +#: gnu/packages/games.scm:722 +msgid "" +"Minetest is a sandbox construction game. Players can create and destro= y\n" +"various types of blocks in a three-dimensional open world. This allows= \n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" +"in different ways." +msgstr "" + +#: gnu/packages/games.scm:761 +msgid "Curses Implementation of the Glk API" +msgstr "" + +#: gnu/packages/games.scm:763 +msgid "" +"Glk defines a portable API for applications with text UIs. It was\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" +"interactive text utilities, particularly those based on a command line.= \n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" +"using the curses.h library for screen control." +msgstr "" + +#: gnu/packages/games.scm:800 +msgid "Interpreter for Glulx VM" +msgstr "" + +#: gnu/packages/games.scm:802 +msgid "" +"Glulx is a 32-bit portable virtual machine intended for writing and\n" +"playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" +"some of the restrictions in the venerable Z-machine format. This is th= e\n" +"reference interpreter, using Glk API." +msgstr "" + +#: gnu/packages/games.scm:838 +msgid "Z-machine interpreter" +msgstr "" + +#: gnu/packages/games.scm:840 +msgid "" +"Fizmo is a console-based Z-machine interpreter. It is used to play\n" +"interactive fiction, also known as text adventures, which were implemen= ted\n" +"either by Infocom or created using the Inform compiler." +msgstr "" + +#: gnu/packages/games.scm:890 +msgid "Reference frontend for the libretro API" +msgstr "" + +#: gnu/packages/games.scm:892 +msgid "" +"Libretro is a simple but powerful development interface that allows for= \n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" +"straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" +"multi-system game/emulator system." +msgstr "" + +#: gnu/packages/games.scm:912 +msgid "Play the game of Go" +msgstr "" + +#: gnu/packages/games.scm:914 +msgid "" +"GNU Go is a program that plays the game of Go, in which players\n" +"place stones on a grid to form territory or capture other stones. Whil= e\n" +"it can be played directly from the terminal, rendered in ASCII characte= rs,\n" +"it is also possible to play GNU Go with 3rd party graphical interfaces = or\n" +"even in Emacs. It supports the standard game storage format (SGF, Smar= t\n" +"Game Format) and inter-process communication format (GMP, Go Modem\n" +"Protocol)." +msgstr "" + +#: gnu/packages/games.scm:964 +msgid "High speed arctic racing game based on Tux Racer" +msgstr "" + +#: gnu/packages/games.scm:966 +msgid "" +"Extreme Tux Racer, or etracer as it is called for short, is\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" +"avoiding the trees and rocks that will slow you down.\n" +"\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" +"bones.\n" +"\n" +"This game is based on the GPL version of the famous game TuxRacer." +msgstr "" + +#: gnu/packages/games.scm:1004 +msgid "Game of jumping to the next floor, trying not to fall" +msgstr "" + +#: gnu/packages/games.scm:1006 +msgid "" +"GNUjump is a simple, yet addictive game in which you must jump from\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" +"falling, themeable graphics and sounds, and replays." +msgstr "" + +#: gnu/packages/games.scm:1047 +msgid "Turn-based strategy game" +msgstr "" + +#: gnu/packages/games.scm:1049 +msgid "" +"The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" +"local).\n" +"\n" +"Battle for control on a range of maps, using variety of units which hav= e\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" +"next campaign." +msgstr "" + +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" +msgstr "" + +#: gnu/packages/games.scm:1094 +msgid "" +"DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" +"also emulates CPU:286/386 realmode/protected mode, Directory\n" +"FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a\n" +"SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility = with\n" +"older games." +msgstr "" + +#: gnu/packages/games.scm:1139 +msgid "Mouse and keyboard discovery for children" +msgstr "" + +#: gnu/packages/games.scm:1141 +msgid "" +"Gamine is a game designed for young children who are learning to use th= e\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" +"on the screen and keyboard to display letters." +msgstr "" + +#: gnu/packages/games.scm:1172 +msgid "Puzzle game with a cat in lead role" +msgstr "" + +#: gnu/packages/games.scm:1173 +msgid "" +"Project Raincat is a game developed by Carnegie Mellon\n" +"students through GCS during the Fall 2008 semester. Raincat features g= ame\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" +"is programmed in Haskell." +msgstr "" + +#: gnu/packages/games.scm:1208 +msgid "Client for 'The Mana World' and similar games" +msgstr "" + +#: gnu/packages/games.scm:1210 +msgid "" +"ManaPlus is a 2D MMORPG client for game servers. It is the only\n" +"fully supported client for @uref{http://www.themanaworld.org, The mana\= n" +"world}, @uref{http://evolonline.org, Evol Online} and\n" +"@uref{http://landoffire.org, Land of fire}." +msgstr "" + +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +msgid "Pinball simulator" +msgstr "" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 +msgid "GNU Compiler Collection" +msgstr "" + +#: gnu/packages/gcc.scm:315 +msgid "" +"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" +"Go. It also includes runtime support libraries for these languages." +msgstr "" + +#: gnu/packages/gcc.scm:380 +msgid "GNU C++ standard library" +msgstr "" + +#: gnu/packages/gcc.scm:415 +msgid "Collection of subroutines used by various GNU programs" +msgstr "" + +#: gnu/packages/gcc.scm:610 +msgid "GNU libstdc++ documentation" +msgstr "" + +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" +msgstr "" + +#: gnu/packages/gcc.scm:681 +msgid "" +"isl is a library for manipulating sets and relations of integer points\= n" +"bounded by linear constraints. Supported operations on sets include\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" +"affine hull, integer projection, computing the lexicographic minimum us= ing\n" +"parametric integer programming, coalescing and parametric vertex\n" +"enumeration. It also includes an ILP solver based on generalized basis= \n" +"reduction, transitive closures on maps (which may encode infinite graph= s),\n" +"dependence analysis and bounds on piecewise step-polynomials." +msgstr "" + +#: gnu/packages/gcc.scm:713 +msgid "Library to generate code for scanning Z-polyhedra" +msgstr "" + +#: gnu/packages/gcc.scm:715 +msgid "" +"CLooG is a free software library to generate code for scanning\n" +"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" +"reaches each integral point of one or more parameterized polyhedra.\n" +"CLooG has been originally written to solve the code generation problem\= n" +"for optimizing compilers based on the polytope model. Nevertheless it\= n" +"is used now in various area e.g., to build control automata for\n" +"high-level synthesis or to find the best polynomial approximation of a\= n" +"function. CLooG may help in any situation where scanning polyhedra\n" +"matters. While the user has full control on generated code quality,\n" +"CLooG is designed to avoid control overhead and to produce a very\n" +"effective code." +msgstr "" + +#: gnu/packages/gcc.scm:770 +msgid "Reference manual for the C programming language" +msgstr "" + +#: gnu/packages/gcc.scm:772 +msgid "" +"This is a reference manual for the C programming language, as\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" +"of the language. Library functions are not included." +msgstr "" + +#: gnu/packages/geeqie.scm:48 +msgid "Library and command-line utility to manage image metadata" +msgstr "" + +#: gnu/packages/geeqie.scm:50 +msgid "" +"Exiv2 is a C++ library and a command line utility to manage image\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" +"and XMP metadata of images in various formats." +msgstr "" + +#: gnu/packages/geeqie.scm:82 +msgid "Lightweight GTK+ based image viewer" +msgstr "" + +#: gnu/packages/geeqie.scm:84 +msgid "" +"Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" +"systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" +"image formats; tools for image comparison, sorting and managing photo\n= " +"collection. Geeqie was initially based on GQview." +msgstr "" + +#: gnu/packages/gettext.scm:93 +msgid "Tools and documentation for translation" +msgstr "" + +#: gnu/packages/gettext.scm:95 +msgid "" +"GNU Gettext is a package providing a framework for translating the\n" +"textual output of programs into multiple languages. It provides " +"translators\n" +"with the means to create message catalogs, as well as an Emacs mode to = work\n" +"with them, and a runtime library to load translated messages from the\n= " +"catalogs. Nearly all GNU packages use Gettext." +msgstr "" + +#: gnu/packages/gettext.scm:151 +msgid "Scripts to ease maintenance of translations" +msgstr "" + +#: gnu/packages/gettext.scm:153 +msgid "" +"The po4a (PO for anything) project goal is to ease translations (and\n" +"more interestingly, the maintenance of translations) using gettext tool= s on\n" +"areas where they were not expected like documentation." +msgstr "" + +#: gnu/packages/gimp.scm:53 +msgid "Image pixel format conversion library" +msgstr "" + +#: gnu/packages/gimp.scm:55 +msgid "" +"Babl is a dynamic, any to any, pixel format translation library.\n" +"It allows converting between different methods of storing pixels known = as\n" +"pixel formats that have with different bitdepths and other data\n" +"representations, color models and component permutations.\n" +"\n" +"A vocabulary to formulate new pixel formats from existing primitives is= \n" +"provided as well as the framework to add new color models and data type= s." +msgstr "" + +#: gnu/packages/gimp.scm:110 +msgid "Graph based image processing framework" +msgstr "" + +#: gnu/packages/gimp.scm:111 +msgid "" +"GEGL (Generic Graphics Library) provides infrastructure to\n" +"do demand based cached non destructive image editing on larger than RAM= \n" +"buffers." +msgstr "" + +#: gnu/packages/gimp.scm:153 +msgid "GNU Image Manipulation Program" +msgstr "" + +#: gnu/packages/gimp.scm:155 +msgid "" +"GIMP is an application for image manipulation tasks such as photo\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" +"as well as specialized ones. It features a highly customizable interfa= ce\n" +"that is extensible via a plugin system." +msgstr "" + +#: gnu/packages/gnome.scm:154 +msgid "CD/DVD burning tool for Gnome" +msgstr "" + +#: gnu/packages/gnome.scm:155 +msgid "" +"Brasero is an application to burn CD/DVD for the Gnome\n" +"Desktop. It is designed to be as simple as possible and has some uniqu= e\n" +"features to enable users to create their discs easily and quickly." +msgstr "" + +#: gnu/packages/gnome.scm:175 +msgid "Bootstrap GNOME modules built from Git" +msgstr "" + +#: gnu/packages/gnome.scm:176 +msgid "" +"gnome-common contains various files needed to bootstrap\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" +"can be used to configure a source directory checked out from Git and so= me\n" +"commonly used macros." +msgstr "" + +#: gnu/packages/gnome.scm:217 +msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" +msgstr "" + +#: gnu/packages/gnome.scm:219 +msgid "" +"The libgnome-desktop library provides API shared by several application= s\n" +"on the desktop, but that cannot live in the platform for various reason= s.\n" +"There is no API or ABI guarantee, although we are doing our best to pro= vide\n" +"stability. Documentation for the API is available with gtk-doc.\n" +"\n" +"The gnome-about program helps find which version of GNOME is installed.= " +msgstr "" + +#: gnu/packages/gnome.scm:252 +msgid "Documentation utilities for the Gnome project" +msgstr "" + +#: gnu/packages/gnome.scm:254 +msgid "" +"Gnome-doc-utils is a collection of documentation utilities for the\n" +"Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" +"and keep up to date translations of documentation." +msgstr "" + +#: gnu/packages/gnome.scm:298 +msgid "Libraries for displaying certificates and accessing key stores" +msgstr "" + +#: gnu/packages/gnome.scm:300 +msgid "" +"The GCR package contains libraries used for displaying certificates and= \n" +"accessing key stores. It also provides the viewer for crypto files on = the\n" +"GNOME Desktop." +msgstr "" + +#: gnu/packages/gnome.scm:329 +msgid "Accessing passwords from the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:331 +msgid "Client library to access passwords from the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:393 +msgid "Daemon to store passwords and encryption keys" +msgstr "" + +#: gnu/packages/gnome.scm:395 +msgid "" +"gnome-keyring is a program that keeps passwords and other secrets for\n= " +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" +"applications locate it via an environment variable or D-Bus.\n" +"\n" +"The program can manage several keyrings, each with its own master passw= ord,\n" +"and there is also a session keyring which is never stored to disk, but\= n" +"forgotten when the session ends." +msgstr "" + +#: gnu/packages/gnome.scm:460 +msgid "GNOME's document viewer" +msgstr "" + +#: gnu/packages/gnome.scm:462 +msgid "" +"Evince is a document viewer for multiple document formats. It\n" +"currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" +"of Evince is to replace the multiple document viewers that exist\n" +"on the GNOME Desktop with a single simple application." +msgstr "" + +#: gnu/packages/gnome.scm:491 +msgid "GNOME settings for various desktop components" +msgstr "" + +#: gnu/packages/gnome.scm:493 +msgid "" +"Gsettings-desktop-schemas contains a collection of GSettings schemas\n" +"for settings shared by various components of the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:527 +msgid "Utility to implement the Freedesktop Icon Naming Specification" +msgstr "" + +#: gnu/packages/gnome.scm:529 +msgid "" +"To help with the transition to the Freedesktop Icon Naming\n" +"Specification, the icon naming utility maps the icon names used by the\= n" +"GNOME and KDE desktops to the icon names proposed in the specification.= " +msgstr "" + +#: gnu/packages/gnome.scm:551 +msgid "Utilities for working with desktop entries" +msgstr "" + +#: gnu/packages/gnome.scm:553 +msgid "" +"This package contains a few command line utilities for working with\n" +"desktop entries:\n" +"\n" +"desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" +" about desktop entry specification violations.\n" +"\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" +" optionally munging it a bit in transit.\n" +"\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" +" handled by desktop files." +msgstr "" + +#: gnu/packages/gnome.scm:587 +msgid "GNOME icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:589 +msgid "Icons for the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:628 +msgid "Database of common MIME types" +msgstr "" + +#: gnu/packages/gnome.scm:630 +msgid "" +"The shared-mime-info package contains the core database of common types= \n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" +"database is translated at Transifex." +msgstr "" + +#: gnu/packages/gnome.scm:654 +msgid "Freedesktop icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:656 +msgid "Freedesktop icon theme." +msgstr "" + +#: gnu/packages/gnome.scm:683 +msgid "GNOME desktop notification library" +msgstr "" + +#: gnu/packages/gnome.scm:685 +msgid "" +"Libnotify is a library that sends desktop notifications to a\n" +"notification daemon, as defined in the Desktop Notifications spec. The= se\n" +"notifications can be used to inform the user about an event or display\= n" +"some form of information without getting in the user's way." +msgstr "" + +#: gnu/packages/gnome.scm:717 +msgid "GObject plugin system" +msgstr "" + +#: gnu/packages/gnome.scm:719 +msgid "" +"Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" +"the API." +msgstr "" + +#: gnu/packages/gnome.scm:748 +msgid "OpenGL extension to GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:749 +msgid "" +"GtkGLExt is an OpenGL extension to GTK+. It provides\n" +"additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" +"API add-ons to make GTK+ widgets OpenGL-capable." +msgstr "" + +#: gnu/packages/gnome.scm:792 +msgid "GTK+ rapid application development tool" +msgstr "" + +#: gnu/packages/gnome.scm:793 +msgid "" +"Glade is a rapid application development (RAD) tool to\n" +"enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" +"the GNOME desktop environment." +msgstr "" + +#: gnu/packages/gnome.scm:818 +msgid "CSS2 parsing and manipulation library" +msgstr "" + +#: gnu/packages/gnome.scm:820 +msgid "" +"Libcroco is a standalone CSS2 parsing and manipulation library.\n" +"The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" +"XML/CSS rendering engine." +msgstr "" + +#: gnu/packages/gnome.scm:853 +msgid "GNOME's Structured File Library" +msgstr "" + +#: gnu/packages/gnome.scm:855 +msgid "" +"Libgsf aims to provide an efficient extensible I/O abstraction for\n" +"dealing with different structured file formats." +msgstr "" + +#: gnu/packages/gnome.scm:920 +msgid "Render SVG files using Cairo" +msgstr "" + +#: gnu/packages/gnome.scm:922 +msgid "" +"Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:946 +msgid "Create trees of CORBA Interface Definition Language files" +msgstr "" + +#: gnu/packages/gnome.scm:947 +msgid "" +"Libidl is a library for creating trees of CORBA Interface\n" +"Definition Language (idl) files, which is a specification for defining\= n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" +"GNOME project, and the primary means of libidl distribution). However,= the\n" +"functionality was designed to be as reusable and portable as possible." +msgstr "" + +#: gnu/packages/gnome.scm:987 +msgid "CORBA 2.4-compliant Object Request Broker" +msgstr "" + +#: gnu/packages/gnome.scm:988 +msgid "" +"ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" +"featuring mature C, C++ and Python bindings." +msgstr "" + +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" +msgstr "" + +#: gnu/packages/gnome.scm:1035 +msgid "" +"Bonobo is a framework for creating reusable components for\n" +"use in GNOME applications, built on top of CORBA." +msgstr "" + +#: gnu/packages/gnome.scm:1066 +msgid "Store application preferences" +msgstr "" + +#: gnu/packages/gnome.scm:1067 +msgid "" +"Gconf is a system for storing application preferences. It\n" +"is intended for user preferences; not arbitrary data storage." +msgstr "" + +#: gnu/packages/gnome.scm:1089 +msgid "Base MIME and Application database for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1090 +msgid "" +"GNOME Mime Data is a module which contains the base MIME\n" +"and Application database for GNOME. The data stored by this module is\= n" +"designed to be accessed through the MIME functions in GnomeVFS." +msgstr "" + +#: gnu/packages/gnome.scm:1134 +msgid "Access files and folders in GNOME applications" +msgstr "" + +#: gnu/packages/gnome.scm:1136 +msgid "" +"GnomeVFS is the core library used to access files and folders in GNOME\= n" +"applications. It provides a file system abstraction which allows " +"applications\n" +"to access local and remote files with a single consistent API." +msgstr "" + +#: gnu/packages/gnome.scm:1180 +msgid "Useful routines for building applications" +msgstr "" + +#: gnu/packages/gnome.scm:1181 +msgid "" +"The libgnome library provides a number of useful routines\n" +"for building modern applications, including session management, activat= ion " +"of\n" +"files and URIs, and displaying help." +msgstr "" + +#: gnu/packages/gnome.scm:1204 +msgid "2D drawing library" +msgstr "" + +#: gnu/packages/gnome.scm:1205 +msgid "" +"Libart is a 2D drawing library intended as a\n" +"high-quality vector-based 2D library with antialiasing and alpha compos= ition." +msgstr "" + +#: gnu/packages/gnome.scm:1232 +msgid "Flexible widget for creating interactive structured graphics" +msgstr "" + +#: gnu/packages/gnome.scm:1233 +msgid "" +"The GnomeCanvas widget provides a flexible widget for\n" +"creating interactive structured graphics." +msgstr "" + +#: gnu/packages/gnome.scm:1257 +msgid "C++ bindings to the GNOME Canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:1258 +msgid "C++ bindings to the GNOME Canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:1289 +msgid "Additional widgets for applications" +msgstr "" + +#: gnu/packages/gnome.scm:1290 +msgid "" +"The libgnomeui library provides additional widgets for\n" +"applications. Many of the widgets from libgnomeui have already been\n" +"ported to GTK+." +msgstr "" + +#: gnu/packages/gnome.scm:1316 +msgid "Load glade interfaces and access the glade built widgets" +msgstr "" + +#: gnu/packages/gnome.scm:1317 +msgid "" +"Libglade is a library that provides interfaces for loading\n" +"graphical interfaces described in glade files and for accessing the\n" +"widgets built in the loading process." +msgstr "" + +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 +msgid "Printing framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1356 +msgid "" +"GNOME-print was a printing framework for GNOME. It has been deprecated= \n" +"since ca. 2006, when GTK+ itself incorporated printing support." +msgstr "" + +#: gnu/packages/gnome.scm:1431 +msgid "Some user interface controls using Bonobo" +msgstr "" + +#: gnu/packages/gnome.scm:1432 +msgid "" +"The Bonobo UI library provides a number of user interface\n" +"controls using the Bonobo component framework." +msgstr "" + +#: gnu/packages/gnome.scm:1456 +msgid "Window Navigator Construction Kit" +msgstr "" + +#: gnu/packages/gnome.scm:1458 +msgid "" +"Libwnck is the Window Navigator Construction Kit, a library for use in\= n" +"writing pagers, tasklists, and more generally applications that are dea= ling\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" +"Hints specification (EWMH)." +msgstr "" + +#: gnu/packages/gnome.scm:1511 +msgid "Document-centric objects and utilities" +msgstr "" + +#: gnu/packages/gnome.scm:1512 +msgid "A GLib/GTK+ set of document-centric objects and utilities." +msgstr "" + +#: gnu/packages/gnome.scm:1594 +msgid "Spreadsheet application" +msgstr "" + +#: gnu/packages/gnome.scm:1596 +msgid "" +"GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" +"interoperable with other spreadsheet applications. It has a vast array= of\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" +"and non-linear solvers, statistical analysis, and telecommunication\n" +"engineering." +msgstr "" + +#: gnu/packages/gnome.scm:1642 +msgid "Default GNOME 3 themes" +msgstr "" + +#: gnu/packages/gnome.scm:1644 +msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." +msgstr "" + +#: gnu/packages/gnome.scm:1677 +msgid "Manage encryption keys and passwords in the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:1679 +msgid "" +"Seahorse is a GNOME application for managing encryption keys and\n" +"passwords in the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 +msgid "Compiler for the GObject type system" +msgstr "" + +#: gnu/packages/gnome.scm:1717 +msgid "" +"Vala is a programming language that aims to bring modern programming\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" +"requirements and without using a different ABI compared to applications= and\n" +"libraries written in C." +msgstr "" + +#: gnu/packages/gnome.scm:1747 +msgid "Virtual Terminal Emulator" +msgstr "" + +#: gnu/packages/gnome.scm:1749 +msgid "" +"VTE is a library (libvte) implementing a terminal emulator widget for\n= " +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" +"gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" +"editors, IDEs, etc." +msgstr "" + +#: gnu/packages/gnome.scm:1847 +msgid "Low-level GNOME configuration system" +msgstr "" + +#: gnu/packages/gnome.scm:1848 +msgid "" +"Dconf is a low-level configuration system. Its main purpose\n" +"is to provide a backend to GSettings on platforms that don't already ha= ve\n" +"configuration storage systems." +msgstr "" + +#: gnu/packages/gnome.scm:1882 +msgid "" +"JSON-GLib is a C library based on GLib providing serialization and\n" +"deserialization support for the JavaScript Object Notation (JSON) forma= t\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" +"and objects." +msgstr "" + +#: gnu/packages/gnome.scm:1921 +msgid "High-level API for X Keyboard Extension" +msgstr "" + +#: gnu/packages/gnome.scm:1923 +msgid "" +"LibXklavier is a library providing high-level API for X Keyboard\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" +"indicators etc)." +msgstr "" + +#: gnu/packages/gnome.scm:1951 +msgid "Python bindings to librsvg" +msgstr "" + +#: gnu/packages/gnome.scm:1953 +msgid "" +"This packages provides Python bindings to librsvg, the SVG rendering\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2002 +msgid "Network-related GIO modules" +msgstr "" + +#: gnu/packages/gnome.scm:2004 +msgid "" +"This package contains various network related extensions for the GIO\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2035 +msgid "RESTful web api query library" +msgstr "" + +#: gnu/packages/gnome.scm:2037 +msgid "" +"This library was designed to make it easier to access web services that= \n" +"claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" +"libxml to ease remote use of the RESTful API." +msgstr "" + +#: gnu/packages/gnome.scm:2106 +msgid "GLib-based HTTP Library" +msgstr "" + +#: gnu/packages/gnome.scm:2108 +msgid "" +"LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " +"and the GLib main loop, to integrate well with GNOME applications." +msgstr "" + +#: gnu/packages/gnome.scm:2154 +msgid "GObject bindings for \"Secret Service\" API" +msgstr "" + +#: gnu/packages/gnome.scm:2156 +msgid "" +"Libsecret is a GObject based library for storing and retrieving passwor= ds\n" +"and other secrets. It communicates with the \"Secret Service\" using D= Bus." +msgstr "" + +#: gnu/packages/gnome.scm:2200 +msgid "Minesweeper game" +msgstr "" + +#: gnu/packages/gnome.scm:2202 +msgid "" +"Mines (previously gnomine) is a puzzle game where you locate mines\n" +"floating in an ocean using only your brain and a little bit of luck." +msgstr "" + +#: gnu/packages/gnome.scm:2246 +msgid "Terminal emulator" +msgstr "" + +#: gnu/packages/gnome.scm:2248 +msgid "" +"GNOME Terminal is a terminal emulator application for accessing a\n" +"UNIX shell environment which can be used to run programs available on\n= " +"your system.\n" +"\n" +"It supports several profiles, multiple tabs and implements several\n" +"keyboard shortcuts." +msgstr "" + +#: gnu/packages/gnome.scm:2314 +msgid "Color management service" +msgstr "" + +#: gnu/packages/gnome.scm:2315 +msgid "" +"Colord is a system service that makes it easy to manage,\n" +"install and generate color profiles to accurately color manage input an= d\n" +"output devices." +msgstr "" + +#: gnu/packages/gnome.scm:2357 +msgid "Geolocation service" +msgstr "" + +#: gnu/packages/gnome.scm:2358 +msgid "" +"Geoclue is a D-Bus service that provides location\n" +"information. The primary goal of the Geoclue project is to make creati= ng\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" +"permission from user." +msgstr "" + +#: gnu/packages/gnome.scm:2393 +msgid "Geocoding and reverse-geocoding library" +msgstr "" + +#: gnu/packages/gnome.scm:2395 +msgid "" +"geocode-glib is a convenience library for geocoding (finding longitude,= \n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" +"coordinates) using the Nominatim service. geocode-glib caches requests= for\n" +"faster results and to avoid unnecessary server load." +msgstr "" + +#: gnu/packages/gnome.scm:2448 +msgid "System daemon for managing power devices" +msgstr "" + +#: gnu/packages/gnome.scm:2450 +msgid "" +"UPower is an abstraction for enumerating power devices,\n" +"listening to device events and querying history and statistics. Any\n" +"application or service on the system can access the org.freedesktop.UPo= wer\n" +"service via the system message bus." +msgstr "" + +#: gnu/packages/gnome.scm:2500 +msgid "Location, time zone, and weather library for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2502 +msgid "" +"libgweather is a library to access weather information from online\n" +"services for numerous locations." +msgstr "" + +#: gnu/packages/gnome.scm:2554 +msgid "GNOME settings daemon" +msgstr "" + +#: gnu/packages/gnome.scm:2556 +msgid "" +"This package contains the daemon responsible for setting the various\n" +"parameters of a GNOME session and the applications that run under it. = It\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" +"settings, themes, mouse settings, and startup of other daemons." +msgstr "" + +#: gnu/packages/gnome.scm:2592 +msgid "Library to parse and save media playlists for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2593 +msgid "" +"Totem-pl-parser is a GObjects-based library to parse and save\n" +"playlists in a variety of formats." +msgstr "" + +#: gnu/packages/gnome.scm:2627 +msgid "Solitaire card games" +msgstr "" + +#: gnu/packages/gnome.scm:2629 +msgid "" +"Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" +"which are easy to play with the aid of a mouse." +msgstr "" + +#: gnu/packages/gnome.scm:2653 +msgid "API documentation browser for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2655 +msgid "" +"Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " +"natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" +"throughout GNOME for API documentation)." +msgstr "" + +#: gnu/packages/gnome.scm:2716 +msgid "Object oriented GL/GLES Abstraction/Utility Layer" +msgstr "" + +#: gnu/packages/gnome.scm:2718 +msgid "" +"Cogl is a small library for using 3D graphics hardware to draw pretty\n= " +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" +"designed to make it easy to write orthogonal components that can render= \n" +"without stepping on each others toes." +msgstr "" + +#: gnu/packages/gnome.scm:2773 +msgid "Open GL based interactive canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 +msgid "" +"Clutter is an Open GL based interactive canvas library, designed for\n" +"creating fast, mainly 2D single window applications such as media box U= Is,\n" +"presentations, kiosk style applications and so on." +msgstr "" + +#: gnu/packages/gnome.scm:2802 +msgid "Open GL based interactive canvas library GTK+ widget" +msgstr "" + +#: gnu/packages/gnome.scm:2832 +msgid "Integration library for using GStreamer with Clutter" +msgstr "" + +#: gnu/packages/gnome.scm:2834 +msgid "" +"Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" +"It provides a GStreamer sink to upload frames to GL and an actor that\n= " +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" +"GL based interactive canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:2864 +msgid "C library providing a ClutterActor to display maps" +msgstr "" + +#: gnu/packages/gnome.scm:2866 +msgid "" +"libchamplain is a C library providing a ClutterActor to display maps.\n= " +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" +"such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." +msgstr "" + +#: gnu/packages/gnome.scm:2897 +msgid "Object mapper from GObjects to SQLite" +msgstr "" + +#: gnu/packages/gnome.scm:2899 +msgid "" +"Gom provides an object mapper from GObjects to SQLite. It helps you\n" +"write applications that need to store structured data as well as make " +"complex\n" +"queries upon that data." +msgstr "" + +#: gnu/packages/gnome.scm:2927 +msgid "Sliding block puzzles" +msgstr "" + +#: gnu/packages/gnome.scm:2929 +msgid "" +"GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" +"as possible!" +msgstr "" + +#: gnu/packages/gnome.scm:2980 +msgid "Framework for discovering and browsing media" +msgstr "" + +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 +msgid "" +"Grilo is a framework focused on making media discovery and browsing eas= y\n" +"for application developers." +msgstr "" + +#: gnu/packages/gnome.scm:3032 +msgid "Plugins for the Grilo media discovery library" +msgstr "" + +#: gnu/packages/gnome.scm:3109 +msgid "Simple media player for GNOME based on GStreamer" +msgstr "" + +#: gnu/packages/gnome.scm:3110 +msgid "" +"Totem is a simple yet featureful media player for GNOME\n" +"which can read a large number of file formats." +msgstr "" + +#: gnu/packages/gnome.scm:3199 +msgid "Music player for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3200 +msgid "" +"Rhythmbox is a music playing application for GNOME. It\n" +"supports playlists, song ratings, and any codecs installed through gstr= eamer." +msgstr "" + +#: gnu/packages/gnome.scm:3250 +msgid "GNOME image viewer" +msgstr "" + +#: gnu/packages/gnome.scm:3251 +msgid "" +"Eye of GNOME is the GNOME image viewer. It\n" +"supports image conversion, rotation, and slideshows." +msgstr "" + +#: gnu/packages/gnome.scm:3276 +#, fuzzy +msgid "GObject bindings for libudev" +msgstr "Bindings de Guile para ncurses" + +#: gnu/packages/gnome.scm:3278 +msgid "" +"This library provides GObject bindings for libudev. It was originally\= n" +"part of udev-extras, then udev, then systemd. It's now a project on it= s own." +msgstr "" + +#: gnu/packages/gnome.scm:3324 +msgid "Userspace virtual filesystem for GIO" +msgstr "" + +#: gnu/packages/gnome.scm:3326 +msgid "" +"GVFS is a userspace virtual filesystem designed to work with the I/O\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" +"to all applications using the GIO API. It also supports exposing the G= VFS\n" +"mounts to non-GIO applications using FUSE.\n" +"\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" +"DAV, and others." +msgstr "" + +#: gnu/packages/gnome.scm:3372 +#, fuzzy +msgid "GLib binding for libusb1" +msgstr "Bindings de Guile para ncurses" + +#: gnu/packages/gnome.scm:3374 +msgid "" +"GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" +"asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" +"and integration into a mainloop. This makes it easy to integrate low l= evel\n" +"USB transfers with your high-level application or system daemon." +msgstr "" + +#: gnu/packages/gnome.scm:3411 +msgid "Document and image scanner" +msgstr "" + +#: gnu/packages/gnome.scm:3412 +msgid "" +"Simple Scan is an easy-to-use application, designed to let\n" +"users connect their scanner and quickly have the image/document in an\n= " +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" +"the same backend as XSANE uses. This means that all existing scanners w= ill\n" +"work and the interface is well tested." +msgstr "" + +#: gnu/packages/gnome.scm:3461 +msgid "GNOME web browser" +msgstr "" + +#: gnu/packages/gnome.scm:3463 +msgid "" +"Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " +"principles are simplicity and standards compliance." +msgstr "" + +#: gnu/packages/gnome.scm:3519 +msgid "D-Bus debugger" +msgstr "" + +#: gnu/packages/gnome.scm:3521 +msgid "" +"D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" +"of running programs and invoke methods on those interfaces." +msgstr "" + +#: gnu/packages/gnome.scm:3543 +msgid "XSL stylesheets for Yelp" +msgstr "" + +#: gnu/packages/gnome.scm:3545 +msgid "" +"Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" +"to format Docbook and Mallard documents." +msgstr "" + +#: gnu/packages/gnome.scm:3575 +msgid "GNOME help browser" +msgstr "" + +#: gnu/packages/gnome.scm:3577 +msgid "" +"Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" +"man, info, and HTML documents. It can locate documents according to th= e\n" +"freedesktop.org help system specification." +msgstr "" + +#: gnu/packages/gnome.scm:3605 +msgid "Yelp documentation tools" +msgstr "" + +#: gnu/packages/gnome.scm:3607 +msgid "" +"Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" +"manage, and publish documentation for Yelp and the web. Most of the he= avy\n" +"lifting is done by packages like yelp-xsl and itstool. This package ju= st\n" +"wraps things up in a developer-friendly way." +msgstr "" + +#: gnu/packages/gnome.scm:3644 +msgid "GObject collection library" +msgstr "" + +#: gnu/packages/gnome.scm:3646 +msgid "" +"Libgee is a utility library providing GObject-based interfaces and\n" +"classes for commonly used data structures." +msgstr "" + +#: gnu/packages/gnome.scm:3673 +msgid "GObject wrapper around the Exiv2 photo metadata library" +msgstr "" + +#: gnu/packages/gnome.scm:3675 +msgid "" +"Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" +"metadata in photo and video files of various formats." +msgstr "" + +#: gnu/packages/gnome.scm:3727 +msgid "Photo manager for GNOME 3" +msgstr "" + +#: gnu/packages/gnome.scm:3729 +msgid "" +"Shotwell is a digital photo manager designed for the GNOME desktop\n" +"environment. It allows you to import photos from disk or camera, organ= ize\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" +"share them with others via social networking and more." +msgstr "" + +#: gnu/packages/gnome.scm:3761 +msgid "Graphical archive manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3762 +msgid "" +"File Roller is an archive manager for the GNOME desktop\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" +"such as gzip tarballs." +msgstr "" + +#: gnu/packages/gnome.scm:3797 +msgid "Session manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +msgid "Javascript bindings for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "Editor de fluxo" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "" + +#: gnu/packages/gnome.scm:4356 +msgid "Display manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:4484 +msgid "Utilities to configure the GNOME desktop" +msgstr "" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +msgid "File manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +msgid "Disk usage analyzer for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 +msgid "Mozilla javascript engine" +msgstr "" + +#: gnu/packages/gnuzilla.scm:96 +msgid "" +"SpiderMonkey is Mozilla's JavaScript engine written\n" +"in C/C++." +msgstr "" + +#: gnu/packages/gnuzilla.scm:171 +msgid "Netscape API for system level and libc-like functions" +msgstr "" + +#: gnu/packages/gnuzilla.scm:172 +msgid "" +"Netscape Portable Runtime (NSPR) provides a\n" +"platform-neutral API for system level and libc-like functions. It is u= sed\n" +"in the Mozilla clients." +msgstr "" + +#: gnu/packages/gnuzilla.scm:268 +msgid "Network Security Services" +msgstr "" + +#: gnu/packages/gnuzilla.scm:270 +msgid "" +"Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" +"PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " +"standards." +msgstr "" + +#: gnu/packages/gnuzilla.scm:506 +msgid "Entirely free browser derived from Mozilla Firefox" +msgstr "" + +#: gnu/packages/gnuzilla.scm:508 +msgid "" +"IceCat is the GNU version of the Firefox browser. It is entirely free\= n" +"software, which does not recommend non-free plugins and addons. It als= o\n" +"features built-in privacy-protecting features." +msgstr "" + +#: gnu/packages/gtk.scm:87 +msgid "GNOME accessibility toolkit" +msgstr "" + +#: gnu/packages/gtk.scm:89 +msgid "" +"ATK provides the set of accessibility interfaces that are implemented\n= " +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" +"tools have full access to view and control running applications." +msgstr "" + +#: gnu/packages/gtk.scm:128 +msgid "2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:130 +msgid "" +"Cairo is a 2D graphics library with support for multiple output devices= .\n" +"Currently supported output targets include the X Window System (via bot= h\n" +"Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG f= ile\n" +"output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB= .\n" +"\n" +"Cairo is designed to produce consistent output on all output media whil= e\n" +"taking advantage of display hardware acceleration when available\n" +"eg. through the X Render Extension).\n" +"\n" +"The cairo API provides operations similar to the drawing operators of\n= " +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" +"B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" +"affine transformation (scale, rotation, shear, etc.)." +msgstr "" + +#: gnu/packages/gtk.scm:178 +msgid "OpenType text shaping engine" +msgstr "" + +#: gnu/packages/gtk.scm:180 +msgid "HarfBuzz is an OpenType text shaping engine." +msgstr "" + +#: gnu/packages/gtk.scm:211 +msgid "GNOME text and font handling library" +msgstr "" + +#: gnu/packages/gtk.scm:213 +msgid "" +"Pango is the core text and font handling library used in GNOME\n" +"applications. It has extensive support for the different writing syste= ms\n" +"used throughout the world." +msgstr "" + +#: gnu/packages/gtk.scm:239 +msgid "Obsolete pango functions" +msgstr "" + +#: gnu/packages/gtk.scm:240 +msgid "" +"Pangox was a X backend to pango. It is now obsolete and no\n" +"longer provided by recent pango releases. pangox-compat provides the\n= " +"functions which were removed." +msgstr "" + +#: gnu/packages/gtk.scm:276 +msgid "GTK+ widget for interactive graph-like environments" +msgstr "" + +#: gnu/packages/gtk.scm:278 +msgid "" +"Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" +"graph-like environments, e.g. modular synths or finite state machine\n" +"diagrams." +msgstr "" + +#: gnu/packages/gtk.scm:330 +msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" +msgstr "" + +#: gnu/packages/gtk.scm:332 +msgid "" +"GtkSourceView is a portable C library that extends the standard GTK+\n" +"framework for multiline text editing with support for configurable synt= ax\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" +"printing and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 +msgid "GNOME image loading and manipulation library" +msgstr "" + +#: gnu/packages/gtk.scm:431 +msgid "" +"GdkPixbuf is a library for image loading and manipulation developed\n" +"in the GNOME project." +msgstr "" + +#: gnu/packages/gtk.scm:474 +msgid "Assistive Technology Service Provider Interface, core components" +msgstr "" + +#: gnu/packages/gtk.scm:476 +msgid "" +"The Assistive Technology Service Provider Interface, core components,\n= " +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:509 +msgid "Assistive Technology Service Provider Interface, ATK bindings" +msgstr "" + +#: gnu/packages/gtk.scm:511 +msgid "" +"The Assistive Technology Service Provider Interface\n" +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:568 +msgid "Cross-platform toolkit for creating graphical user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:570 +msgid "" +"GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" +"graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" +"suitable for projects ranging from small one-off tools to complete\n" +"application suites." +msgstr "" + +#: gnu/packages/gtk.scm:705 +#, fuzzy +msgid "Cairo bindings for GNU Guile" +msgstr "Infraestrutura para compila=C3=A7=C3=A3o de leitores para GNU Gu= ile" + +#: gnu/packages/gtk.scm:707 +msgid "" +"Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" +"Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" +"stable, providing a firm base on which to do graphics work. Finally, a= nd\n" +"importantly, it is pleasant to use. You get a powerful and well-mainta= ined\n" +"graphics library with all of the benefits of Scheme: memory management,= \n" +"exceptions, macros, and a dynamic programming environment." +msgstr "" + +#: gnu/packages/gtk.scm:747 +msgid "Render SVG images using Cairo from Guile" +msgstr "" + +#: gnu/packages/gtk.scm:749 +msgid "" +"Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" +"images onto Cairo surfaces." +msgstr "" + +#: gnu/packages/gtk.scm:793 +msgid "Create SVG or PDF presentations in Guile" +msgstr "" + +#: gnu/packages/gtk.scm:795 +msgid "" +"Guile-Present defines a declarative vocabulary for presentations,\n" +"together with tools to render presentation documents as SVG or PDF.\n" +"Guile-Present can be used to make presentations programmatically, but a= lso\n" +"includes a tools to generate PDF presentations out of Org mode and Texi= nfo\n" +"documents." +msgstr "" + +#: gnu/packages/gtk.scm:829 +msgid "C++ bindings to the Cairo 2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:831 +msgid "" +"Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " +"library." +msgstr "" + +#: gnu/packages/gtk.scm:855 +msgid "C++ interface to the Pango text rendering library" +msgstr "" + +#: gnu/packages/gtk.scm:857 +msgid "" +"Pangomm provides a C++ programming interface to the Pango text renderin= g\n" +"library." +msgstr "" + +#: gnu/packages/gtk.scm:878 +msgid "C++ interface to the ATK accessibility library" +msgstr "" + +#: gnu/packages/gtk.scm:880 +msgid "" +"ATKmm provides a C++ programming interface to the ATK accessibility\n" +"toolkit." +msgstr "" + +#: gnu/packages/gtk.scm:907 +msgid "C++ interface to the GTK+ graphical user interface library" +msgstr "" + +#: gnu/packages/gtk.scm:909 +msgid "" +"gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" +"extensive documentation, including API reference and a tutorial." +msgstr "" + +#: gnu/packages/gtk.scm:968 +msgid "Python bindings for cairo" +msgstr "" + +#: gnu/packages/gtk.scm:970 +msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." +msgstr "" + +#: gnu/packages/gtk.scm:1053 +msgid "Python bindings for GTK+" +msgstr "" + +#: gnu/packages/gtk.scm:1055 +msgid "" +"PyGTK allows you to write full featured GTK programs in Python. It is\= n" +"targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" +"write GNOME applications." +msgstr "" + +#: gnu/packages/gtk.scm:1086 +msgid "Library for minimalistic gtk+3 user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:1087 +msgid "" +"Girara is a library that implements a user interface that\n" +"focuses on simplicity and minimalism. Currently based on GTK+, a\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" +"main components: a so-called view widget that represents the actual\n" +"application, an input bar that is used to execute commands of the\n" +"application and the status bar which provides the user with current\n" +"information." +msgstr "" + +#: gnu/packages/gtk.scm:1130 +msgid "Documentation generator from C source code" +msgstr "" + +#: gnu/packages/gtk.scm:1132 +msgid "" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" +"can also be used to document application code." +msgstr "" + +#: gnu/packages/gtk.scm:1159 +msgid "Theming engines for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 +msgid "Scheme implementation intended especially for extensions" +msgstr "Implementa=C3=A7=C3=A3o de Scheme com inten=C3=A7=C3=A3o especia= lmente para extens=C3=B5es" + +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 +msgid "" +"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" +"official extension language of the GNU system. It is an implementation= of\n" +"the Scheme language which can be easily embedded in other applications = to\n" +"provide a convenient means of extending the functionality of the " +"application\n" +"without requiring the source code to be rewritten." +msgstr "" + +#: gnu/packages/guile.scm:213 +msgid "Snapshot of what will become version 2.2 of GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 +msgid "Framework for building readers for GNU Guile" +msgstr "Infraestrutura para compila=C3=A7=C3=A3o de leitores para GNU Gu= ile" + +#: gnu/packages/guile.scm:327 +#, fuzzy +msgid "" +"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"\n" +"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" +"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" +"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" +"document syntax.\n" +"\n" +"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" +"hopefully more powerful and flexible (for instance, one may instantiate= as\n" +"many readers as needed)." +msgstr "" +"Guile-Reader =C3=A9 uma infraestrutura simples de compila=C3=A7=C3=A3o = de leitores GNU " +"Guile.\n" +"\n" +"A ideia =C3=A9 facilitar a compila=C3=A7=C3=A3o de procedimentos que es= tendam o " +"procedimento\n" +"de leitura do Guile. Leitores que tenham suporte a diversas variantes d= e\n" +"sintaxe podem ser escritos facilmente, possivelmente reusando \"leitore= s de\n" +"token\" de Scheme padr=C3=A3o de leitores. Por exemplo, ele =C3=A9 usad= o para " +"implementar\n" +"sintaxe de documentos derivados do R5RS do Skribilo.\n" +"\n" +"A abordagem do Guile-Readers =C3=A9 similar ao \"read table\" do Common= Lisps,\n" +"mas muito mais poderoso e flex=C3=ADvel (por exemplo, =C3=A9 poss=C3=AD= vel instanciar com\n" +"quantos leitores quiser)." + +#: gnu/packages/guile.scm:376 +msgid "Guile bindings to ncurses" +msgstr "Bindings de Guile para ncurses" + +#: gnu/packages/guile.scm:378 +msgid "" +"guile-ncurses provides Guile language bindings for the ncurses\n" +"library." +msgstr "" + +#: gnu/packages/guile.scm:398 +msgid "Run jobs at scheduled times" +msgstr "Executa trabalhos no hor=C3=A1rio agendado" + +#: gnu/packages/guile.scm:400 +msgid "" +"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" +"Guile, so its configuration can be written in Scheme; the original cron= \n" +"format is also supported." +msgstr "" + +#: gnu/packages/guile.scm:428 +msgid "Collection of useful Guile Scheme modules" +msgstr "Cole=C3=A7=C3=A3o de m=C3=B3dulos =C3=BAteis de Scheme de Guile" + +#: gnu/packages/guile.scm:430 +#, fuzzy +msgid "" +"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" +"modules, allowing for people to cooperate integrating their generic Gui= le\n" +"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" +"for Guile\"." +msgstr "" +"guile-lib tem a inten=C3=A7=C3=A3o de ser um lugar acumulado para m=C3=B3= dulos Guile de " +"pure-scheme, permitindo que pessoas cooperem com integra=C3=A7=C3=A3o d= e seus m=C3=B3dulos " +"gen=C3=A9ricos de Guile em uma biblioteca coerente. Pense \"um CPAN de = escopo " +"limitado, objetivo para Guile\"." + +#: gnu/packages/guile.scm:461 +msgid "JSON module for Guile" +msgstr "" + +#: gnu/packages/guile.scm:463 +msgid "" +"Guile-json supports parsing and building JSON documents according to th= e\n" +"http:://json.org specification. These are the main features:\n" +"- Strictly complies to http://json.org specification.\n" +"- Build JSON documents programmatically via macros.\n" +"- Unicode support for strings.\n" +"- Allows JSON pretty printing." +msgstr "" + +#: gnu/packages/guile.scm:534 +msgid "MiniKanren declarative logic system, packaged for Guile" +msgstr "" + +#: gnu/packages/guile.scm:536 +msgid "" +"MiniKanren is a relational programming extension to the Scheme\n" +"programming Language, written as a smaller version of Kanren suitable f= or\n" +"pedagogical purposes. It is featured in the book, The Reasoned Schemer= ,\n" +"written by Dan Friedman, William Byrd, and Oleg Kiselyov.\n" +"\n" +"This is Ian Price's r6rs packaged version of miniKanren, which deviates= \n" +"slightly from miniKanren mainline.\n" +"\n" +"See http://minikanren.org/ for more on miniKanren generally." +msgstr "" + +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 +msgid "Guile bindings to the GDBM library via Guile's FFI" +msgstr "" + +#: gnu/packages/guile.scm:687 +msgid "" +"Guile bindings to the GDBM key-value storage system, using\n" +"Guile's foreign function interface." +msgstr "" + +#: gnu/packages/guile.scm:727 +msgid "Functional static site generator" +msgstr "" + +#: gnu/packages/guile.scm:728 +msgid "" +"Haunt is a static site generator written in Guile\n" +"Scheme. Haunt features a functional build system and an extensible\n" +"interface for reading articles in any format." +msgstr "" + +#: gnu/packages/guile.scm:758 +msgid "Redis client library for Guile" +msgstr "" + +#: gnu/packages/guile.scm:759 +msgid "" +"Guile-redis provides a Scheme interface to the Redis\n" +"key-value cache and store." +msgstr "" + +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" +msgstr "" + +#: gnu/packages/guile.scm:834 +msgid "" +"Wisp is a syntax for Guile which provides a Python-like\n" +"whitespace-significant language. It may be easier on the eyes for some= \n" +"users and in some situations." +msgstr "" + +#: gnu/packages/guile.scm:867 +msgid "2D/3D game engine for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +#, fuzzy +msgid "Generate C bindings for Guile" +msgstr "Infraestrutura para compila=C3=A7=C3=A3o de leitores para GNU Gu= ile" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 +msgid "Create, edit, compose, or convert bitmap images" +msgstr "" + +#: gnu/packages/imagemagick.scm:103 +msgid "" +"ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" +"text, lines, polygons, ellipses and B=C3=A9zier curves." +msgstr "" + +#: gnu/packages/imagemagick.scm:147 +msgid "Perl interface to ImageMagick" +msgstr "" + +#: gnu/packages/imagemagick.scm:148 +msgid "" +"This Perl extension allows the reading, manipulation and\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" +"script." +msgstr "" + +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." +msgstr "" + +#: gnu/packages/image.scm:71 +msgid "Library for handling PNG files" +msgstr "" + +#: gnu/packages/image.scm:73 +msgid "" +"Libpng is the official PNG (Portable Network Graphics) reference\n" +"library. It supports almost all PNG features and is extensible." +msgstr "" + +#: gnu/packages/image.scm:89 +msgid "Library for handling JPEG files" +msgstr "" + +#: gnu/packages/image.scm:91 +msgid "" +"Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" +"JPEG is a standardized compression method for full-color and gray-scale= \n" +"images.\n" +"The included programs provide conversion between the JPEG format and\n" +"image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." +msgstr "" + +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 +msgid "Library for handling TIFF files" +msgstr "" + +#: gnu/packages/image.scm:159 +msgid "" +"Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" +"used for storing image data.\n" +"Included are a library, libtiff, for reading and writing TIFF and a sma= ll\n" +"collection of tools for doing simple manipulations of TIFF images." +msgstr "" + +#: gnu/packages/image.scm:202 +msgid "Library for reading images in the Microsoft WMF format" +msgstr "" + +#: gnu/packages/image.scm:204 +msgid "" +"libwmf is a library for reading vector images in Microsoft's native\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" +"the W3C's XML-based Scaleable Vector Graphic (SVG) format." +msgstr "" + +#: gnu/packages/image.scm:271 +msgid "Library and tools for image processing and analysis" +msgstr "" + +#: gnu/packages/image.scm:273 +msgid "" +"Leptonica is a C library and set of command-line tools for efficient\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" +"scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" +"arithmetic ops." +msgstr "" + +#: gnu/packages/image.scm:296 +msgid "Decoder of the JBIG2 image compression format" +msgstr "" + +#: gnu/packages/image.scm:298 +msgid "" +"JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" +"monochrome) images at moderately high resolution, and in particular sca= nned\n" +"paper documents. In this domain it is very efficient, offering compres= sion\n" +"ratios on the order of 100:1.\n" +"\n" +"This is a decoder only implementation, and currently is in the alpha\n" +"stage, meaning it doesn't completely work yet. However, it is\n" +"maintaining parity with available encoders, so it is useful for real\n" +"work." +msgstr "" + +#: gnu/packages/image.scm:333 +msgid "JPEG 2000 codec" +msgstr "" + +#: gnu/packages/image.scm:335 +msgid "" +"The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" +"been developed in order to promote the use of JPEG 2000, the new\n" +"still-image compression standard from the Joint Photographic Experts\n" +"Group (JPEG).\n" +"\n" +"In addition to the basic codec, various other features are under\n" +"development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats= ,\n" +"an indexing tool useful for the JPIP protocol, JPWL-tools for\n" +"error-resilience, a Java-viewer for j2k-images, ..." +msgstr "" + +#: gnu/packages/image.scm:414 +msgid "Tools and library for working with GIF images" +msgstr "" + +#: gnu/packages/image.scm:416 +msgid "" +"GIFLIB is a library for reading and writing GIF images. It is API and\= n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" +"algorithm was patented. Tools are also included to convert, manipulate= ,\n" +"compose, and analyze GIF images." +msgstr "" + +#: gnu/packages/image.scm:437 +msgid "GIF decompression library" +msgstr "" + +#: gnu/packages/image.scm:439 +msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." +msgstr "" + +#: gnu/packages/image.scm:468 +msgid "Loading, saving, rendering and manipulating image files" +msgstr "" + +#: gnu/packages/image.scm:470 +msgid "" +"Imlib2 is a library that does image file loading and saving as well as\= n" +"rendering, manipulation, arbitrary polygon support, etc.\n" +"\n" +"It does ALL of these operations FAST. Imlib2 also tries to be highly\n= " +"intelligent about doing them, so writing naive programs can be done eas= ily,\n" +"without sacrificing speed.\n" +"\n" +"This is a complete rewrite over the Imlib 1.x series. The architecture= is\n" +"more modular, simple, and flexible." +msgstr "" + +#: gnu/packages/image.scm:498 +msgid "Wrapper library for imlib2" +msgstr "" + +#: gnu/packages/image.scm:500 +msgid "" +"Giblib is a simple library which wraps imlib2's context API, avoiding\n= " +"all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" +"supplies a generic doubly-linked list and some string functions." +msgstr "" + +#: gnu/packages/image.scm:540 +msgid "Library for handling popular graphics image formats" +msgstr "" + +#: gnu/packages/image.scm:542 +msgid "" +"FreeImage is a library for developers who would like to support popular= \n" +"graphics image formats like PNG, BMP, JPEG, TIFF and others." +msgstr "" + +#: gnu/packages/image.scm:592 +msgid "Computer vision library" +msgstr "" + +#: gnu/packages/image.scm:594 +msgid "" +"VIGRA stands for Vision with Generic Algorithms. It is an image\n" +"processing and analysis library that puts its main emphasis on customiz= able\n" +"algorithms and data structures. It is particularly strong for\n" +"multi-dimensional image processing." +msgstr "" + +#: gnu/packages/image.scm:625 +msgid "Lossless and lossy image compression" +msgstr "" + +#: gnu/packages/image.scm:627 +msgid "" +"WebP is a new image format that provides lossless and lossy compression= \n" +"for images. WebP lossless images are 26% smaller in size compared to\n= " +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" +"equivalent SSIM index. WebP supports lossless transparency (also known= as\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" +"to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" +"channels." +msgstr "" + +#: gnu/packages/image.scm:655 +msgid "Library for handling MNG files" +msgstr "" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +msgid "Library for manipulating many image formats" +msgstr "" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" +msgstr "" + +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." +msgstr "" + +#: gnu/packages/inkscape.scm:88 +msgid "Vector graphics editor" +msgstr "" + +#: gnu/packages/inkscape.scm:89 +msgid "" +"Inkscape is a vector graphics editor. What sets Inkscape\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" +"as the native format." +msgstr "" + +#: gnu/packages/jemalloc.scm:47 +msgid "General-purpose scalable concurrent malloc implementation" +msgstr "" + +#: gnu/packages/jemalloc.scm:49 +msgid "" +"This library providing a malloc(3) implementation that emphasizes\n" +"fragmentation avoidance and scalable concurrency support." +msgstr "" + +#: gnu/packages/key-mon.scm:65 +msgid "Show keyboard and mouse status" +msgstr "" + +#: gnu/packages/key-mon.scm:67 +msgid "" +"The key-mon utility displays the current keyboard and mouse status.\n" +"This is useful for teaching and screencasts." +msgstr "" + +#: gnu/packages/less.scm:41 +msgid "Paginator for terminals" +msgstr "" + +#: gnu/packages/less.scm:43 +msgid "" +"GNU less is a pager, a program that allows you to view large amounts\n" +"of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" +"text editors." +msgstr "" + +#: gnu/packages/lesstif.scm:47 +msgid "Clone of the Motif toolkit for the X window system" +msgstr "" + +#: gnu/packages/lesstif.scm:48 +msgid "Clone of the Motif toolkit for the X window system." +msgstr "" + +#: gnu/packages/libreoffice.scm:86 +msgid "General purpose formula parser and interpreter" +msgstr "" + +#: gnu/packages/libreoffice.scm:87 +msgid "" +"Ixion is a library for calculating the results of formula\n" +"expressions stored in multiple named targets, or \"cells\". The cells = can\n" +"be referenced from each other, and the library takes care of resolving\= n" +"their dependencies automatically upon calculation." +msgstr "" + +#: gnu/packages/libreoffice.scm:112 +msgid "File import filter library for spreadsheet documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:113 +msgid "" +"Orcus is a library that provides a collection of standalone\n" +"file processing filters. It is currently focused on providing filters = for\n" +"spreadsheet documents. The library includes import filters for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" +"CSV, CSS and XML." +msgstr "" + +#: gnu/packages/libreoffice.scm:147 +msgid "Document importer for office suites" +msgstr "" + +#: gnu/packages/libreoffice.scm:148 +msgid "" +"Librevenge is a base library for writing document import\n" +"filters. It has interfaces for text documents, vector graphics,\n" +"spreadsheets and presentations." +msgstr "" + +#: gnu/packages/libreoffice.scm:173 +msgid "Library for importing WordPerfect documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:174 +msgid "" +"Libwpd is a C++ library designed to help process\n" +"WordPerfect documents. It is most commonly used to import such documen= ts\n" +"into other word processors." +msgstr "" + +#: gnu/packages/libreoffice.scm:206 +msgid "Library for import of reflowable e-book formats" +msgstr "" + +#: gnu/packages/libreoffice.scm:207 +msgid "" +"Libe-book is a library and a set of tools for reading and\n" +"converting various reflowable e-book formats. Currently supported are:= \n" +"Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped file= s),\n" +"PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled\n" +"cellphones), TCR (simple compressed text format), TealDoc, zTXT,\n" +"ZVR (simple compressed text format)." +msgstr "" + +#: gnu/packages/libreoffice.scm:236 +msgid "Library and tools for the WordPerfect Graphics format" +msgstr "" + +#: gnu/packages/libreoffice.scm:237 +msgid "" +"The libwpg project provides a library and tools for\n" +"working with graphics in the WPG (WordPerfect Graphics) format." +msgstr "" + +#: gnu/packages/libreoffice.scm:278 +msgid "CMIS client library" +msgstr "" + +#: gnu/packages/libreoffice.scm:279 +msgid "" +"LibCMIS is a C++ client library for the CMIS interface. It\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" +"as Alfresco or Nuxeo." +msgstr "" + +#: gnu/packages/libreoffice.scm:310 +msgid "Library for parsing the AbiWord format" +msgstr "" + +#: gnu/packages/libreoffice.scm:311 +msgid "" +"Libabw is a library that parses the file format of\n" +"AbiWord documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:341 +msgid "Library for parsing the CorelDRAW format" +msgstr "" + +#: gnu/packages/libreoffice.scm:342 +msgid "" +"Libcdr is a library that parses the file format of\n" +"CorelDRAW documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:371 +msgid "Library for parsing the Apple Keynote format" +msgstr "" + +#: gnu/packages/libreoffice.scm:372 +msgid "" +"Libetonyek is a library that parses the file format of\n" +"Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." +msgstr "" + +#: gnu/packages/libreoffice.scm:389 +msgid "Text Categorization library" +msgstr "" + +#: gnu/packages/libreoffice.scm:390 +msgid "" +"Libexttextcat is an N-Gram-Based Text Categorization\n" +"library primarily intended for language guessing." +msgstr "" + +#: gnu/packages/libreoffice.scm:416 +msgid "Library for parsing the FreeHand format" +msgstr "" + +#: gnu/packages/libreoffice.scm:417 +msgid "" +"Libfreehand is a library that parses the file format of\n" +"Aldus/Macromedia/Adobe FreeHand documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:443 +msgid "Library for parsing the Microsoft Publisher format" +msgstr "" + +#: gnu/packages/libreoffice.scm:444 +msgid "" +"Libmspub is a library that parses the file format of\n" +"Microsoft Publisher documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:472 +msgid "Library for parsing the PageMaker format" +msgstr "" + +#: gnu/packages/libreoffice.scm:473 +msgid "" +"Libpagemaker is a library that parses the file format of\n" +"Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" +"created by PageMaker version 6.x and 7." +msgstr "" + +#: gnu/packages/libreoffice.scm:508 +msgid "Library for parsing the Microsoft Visio format" +msgstr "" + +#: gnu/packages/libreoffice.scm:509 +msgid "" +"Libvisio is a library that parses the file format of\n" +"Microsoft Visio documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:537 +msgid "ODF (Open Document Format) library" +msgstr "" + +#: gnu/packages/libreoffice.scm:538 +msgid "" +"Libodfgen is a library for generating documents in the\n" +"Open Document Format (ODF). It provides generator implementations for = all\n" +"document interfaces supported by librevenge:\n" +"text documents, vector drawings, presentations and spreadsheets." +msgstr "" + +#: gnu/packages/libreoffice.scm:568 +msgid "Import library for some old Macintosh text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:569 +msgid "" +"Libmwaw contains some import filters for old Macintosh\n" +"text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" +"spreadsheet documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:598 +msgid "Import library for Microsoft Works text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:599 +msgid "" +"Libwps is a library for importing files in the Microsoft\n" +"Works word processor file format." +msgstr "" + +#: gnu/packages/libreoffice.scm:617 +msgid "" +"Hunspell is a spell checker and morphological analyzer\n" +"library and program designed for languages with rich morphology and com= plex\n" +"word compounding or character encoding." +msgstr "" + +#: gnu/packages/libreoffice.scm:638 +msgid "Hyphenation library" +msgstr "" + +#: gnu/packages/libreoffice.scm:639 +msgid "" +"Hyphen is a hyphenation library using TeX hyphenation\n" +"patterns, which are pre-processed by a perl script." +msgstr "" + +#: gnu/packages/libreoffice.scm:662 +msgid "Thesaurus" +msgstr "" + +#: gnu/packages/libreoffice.scm:663 +msgid "" +"MyThes is a simple thesaurus that uses a structured text\n" +"data file and an index file with binary search to look up words and phr= ases\n" +"and to return information on pronunciations, meanings and synonyms." +msgstr "" + +#: gnu/packages/libreoffice.scm:829 +msgid "Office suite" +msgstr "" + +#: gnu/packages/libreoffice.scm:830 +msgid "" +"LibreOffice is a comprehensive office suite. It contains\n" +"a number of components: Writer, a word processor; Calc, a spreadsheet\n= " +"application; Impress, a presentation engine; Draw, a drawing and\n" +"flowcharting application; Base, a database and database frontend;\n" +"Math for editing mathematics." +msgstr "" + +#: gnu/packages/linux.scm:155 +msgid "GNU Linux-Libre kernel headers" +msgstr "" + +#: gnu/packages/linux.scm:156 +msgid "Headers of the Linux-Libre kernel." +msgstr "" + +#: gnu/packages/linux.scm:187 +msgid "Tools for loading and managing Linux kernel modules" +msgstr "" + +#: gnu/packages/linux.scm:189 +msgid "" +"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" +"`insmod', `lsmod', and more." +msgstr "" + +#: gnu/packages/linux.scm:322 +msgid "100% free redistribution of a cleaned Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:324 +msgid "" +"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" +"It has been modified to remove all non-free binary blobs." +msgstr "" + +#: gnu/packages/linux.scm:384 +msgid "Pluggable authentication modules for Linux" +msgstr "" + +#: gnu/packages/linux.scm:386 +msgid "" +"A *Free* project to implement OSF's RFC 86.0.\n" +"Pluggable authentication modules are small shared object files that can= \n" +"be used through the PAM API to perform tasks, like authenticating a use= r\n" +"at login. Local and dynamic reconfiguration are its key features." +msgstr "" + +#: gnu/packages/linux.scm:413 +msgid "Small utilities that use the proc filesystem" +msgstr "" + +#: gnu/packages/linux.scm:415 +msgid "" +"This PSmisc package is a set of some small useful utilities that\n" +"use the proc filesystem. We're not about changing the world, but\n" +"providing the system administrator with some help in common tasks." +msgstr "" + +#: gnu/packages/linux.scm:480 +msgid "Collection of utilities for the Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." +msgstr "" + +#: gnu/packages/linux.scm:522 +msgid "Utilities that give information about processes" +msgstr "" + +#: gnu/packages/linux.scm:524 +msgid "" +"Procps is the package that has a bunch of small useful utilities\n" +"that give information about processes using the Linux /proc file system= .\n" +"The package includes the programs ps, top, vmstat, w, kill, free,\n" +"slabtop, and skill." +msgstr "" + +#: gnu/packages/linux.scm:549 +msgid "Tools for working with USB devices, such as lsusb" +msgstr "" + +#: gnu/packages/linux.scm:551 +msgid "Tools for working with USB devices, such as lsusb." +msgstr "" + +#: gnu/packages/linux.scm:625 +msgid "Creating and checking ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." +msgstr "" + +#: gnu/packages/linux.scm:669 +msgid "Statically-linked fsck.* commands from e2fsprogs" +msgstr "" + +#: gnu/packages/linux.scm:671 +msgid "" +"This package provides statically-linked command of fsck.ext[234] taken\= n" +"from the e2fsprogs package. It is meant to be used in initrds." +msgstr "" + +#: gnu/packages/linux.scm:690 +msgid "Recover deleted files from ext2/3/4 partitions" +msgstr "" + +#: gnu/packages/linux.scm:692 +msgid "" +"Extundelete is a set of tools that can recover deleted files from an\n" +"ext3 or ext4 partition." +msgstr "" + +#: gnu/packages/linux.scm:724 +msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:726 +msgid "" +"The zerofree command scans the free blocks in an ext2 file system and\n= " +"fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" +"images more compressible." +msgstr "" + +#: gnu/packages/linux.scm:745 +msgid "System call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:747 +msgid "" +"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" +"trace of all the system calls made by a another process/program." +msgstr "" + +#: gnu/packages/linux.scm:768 +msgid "Library call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:770 +msgid "" +"ltrace intercepts and records dynamic library calls which are called by= \n" +"an executed process and the signals received by that process. It can a= lso\n" +"intercept and print the system calls executed by the program." +msgstr "" + +#: gnu/packages/linux.scm:790 +msgid "The Advanced Linux Sound Architecture libraries" +msgstr "" + +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 +msgid "" +"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" +"MIDI functionality to the Linux-based operating system." +msgstr "" + +#: gnu/packages/linux.scm:832 +msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" +msgstr "" + +#: gnu/packages/linux.scm:859 +msgid "Program to configure the Linux IP packet filtering rules" +msgstr "" + +#: gnu/packages/linux.scm:861 +msgid "" +"iptables is the userspace command line program used to configure the\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" +"packet filter." +msgstr "" + +#: gnu/packages/linux.scm:908 +msgid "Utilities for controlling TCP/IP networking and traffic in Linux" +msgstr "" + +#: gnu/packages/linux.scm:910 +msgid "" +"Iproute2 is a collection of utilities for controlling TCP/IP\n" +"networking and traffic with the Linux kernel.\n" +"\n" +"Most network configuration manuals still refer to ifconfig and route as= the\n" +"primary network configuration tools, but ifconfig is known to behave\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" +"to support most modern network technologies, as it doesn't use ifconfig= and\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" +"traffic control.\n" +"\n" +"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" +"consists of several tools, of which the most important are ip and tc. = ip\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" +"tools print detailed usage messages and are accompanied by a set of\n" +"manpages." +msgstr "" + +#: gnu/packages/linux.scm:1022 +msgid "Tools for controlling the network subsystem in Linux" +msgstr "" + +#: gnu/packages/linux.scm:1024 +msgid "" +"This package includes the important tools for controlling the network\n= " +"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" +"netstat, rarp and route. Additionally, this package contains utilities= \n" +"relating to particular network hardware types (plipconfig, slattach) an= d\n" +"advanced aspects of IP configuration (iptunnel, ipmaddr)." +msgstr "" + +#: gnu/packages/linux.scm:1061 +msgid "Library for working with POSIX capabilities" +msgstr "" + +#: gnu/packages/linux.scm:1063 +msgid "" +"Libcap2 provides a programming interface to POSIX capabilities on\n" +"Linux-based operating systems." +msgstr "" + +#: gnu/packages/linux.scm:1106 +msgid "Manipulate Ethernet bridges" +msgstr "" + +#: gnu/packages/linux.scm:1108 +msgid "" +"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" +"to connect two Ethernet segments together in a protocol independent way= .\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" +"a router). Since forwarding is done at Layer 2, all protocols can go\n= " +"transparently through a bridge." +msgstr "" + +#: gnu/packages/linux.scm:1130 +msgid "NetLink protocol library suite" +msgstr "" + +#: gnu/packages/linux.scm:1132 +msgid "" +"The libnl suite is a collection of libraries providing APIs to netlink\= n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" +"between the kernel and user space processes. It was designed to be a m= ore\n" +"flexible successor to ioctl to provide mainly networking related kernel= \n" +"configuration and monitoring interfaces." +msgstr "" + +#: gnu/packages/linux.scm:1162 +msgid "Tool for configuring wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:1164 +msgid "" +"iw is a new nl80211 based CLI configuration utility for wireless\n" +"devices. It replaces 'iwconfig', which is deprecated." +msgstr "" + +#: gnu/packages/linux.scm:1190 +msgid "Analyze power consumption on Intel-based laptops" +msgstr "" + +#: gnu/packages/linux.scm:1192 +msgid "" +"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" +"an interactive mode where the user can experiment various power managem= ent\n" +"settings for cases where the operating system has not enabled these\n" +"settings." +msgstr "" + +#: gnu/packages/linux.scm:1214 +msgid "Audio mixer for X and the console" +msgstr "" + +#: gnu/packages/linux.scm:1216 +msgid "" +"Aumix adjusts an audio mixer from X, the console, a terminal,\n" +"the command line or a script." +msgstr "" + +#: gnu/packages/linux.scm:1240 +msgid "Displays the IO activity of running processes" +msgstr "" + +#: gnu/packages/linux.scm:1242 +msgid "" +"Iotop is a Python program with a top like user interface to show the\n" +"processes currently causing I/O." +msgstr "" + +#: gnu/packages/linux.scm:1297 +msgid "Support file systems implemented in user space" +msgstr "" + +#: gnu/packages/linux.scm:1299 +msgid "" +"As a consequence of its monolithic design, file system code for Linux\n= " +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" +"user-space processes." +msgstr "" + +#: gnu/packages/linux.scm:1324 +msgid "User-space union file system" +msgstr "" + +#: gnu/packages/linux.scm:1326 +msgid "" +"UnionFS-FUSE is a flexible union file system implementation in user\n" +"space, using the FUSE library. Mounting a union file system allows you= to\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" +"UnionFS-FUSE additionally supports copy-on-write." +msgstr "" + +#: gnu/packages/linux.scm:1351 +msgid "User-space union file system (statically linked)" +msgstr "" + +#: gnu/packages/linux.scm:1396 +msgid "Mount remote file systems over SSH" +msgstr "" + +#: gnu/packages/linux.scm:1398 +msgid "" +"This is a file system client based on the SSH File Transfer Protocol.\n= " +"Since most SSH servers already support this protocol it is very easy to= set\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" +"file system is as easy as logging into the server with an SSH client." +msgstr "" + +#: gnu/packages/linux.scm:1427 +msgid "Tools for non-uniform memory access (NUMA) machines" +msgstr "" + +#: gnu/packages/linux.scm:1429 +msgid "" +"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" +"memory is not all in one place. The numactl program allows you to run = your\n" +"application program on specific CPU's and memory nodes. It does this b= y\n" +"supplying a NUMA memory policy to the operating system before running y= our\n" +"program.\n" +"\n" +"The package contains other commands, such as numademo, numastat and mem= hog.\n" +"The numademo command provides a quick overview of NUMA performance on y= our\n" +"system." +msgstr "" + +#: gnu/packages/linux.scm:1492 +msgid "Linux keyboard utilities and keyboard maps" +msgstr "" + +#: gnu/packages/linux.scm:1494 +msgid "" +"This package contains keytable files and keyboard utilities compatible\= n" +"for systems using the Linux kernel. This includes commands such as\n" +"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +msgstr "" + +#: gnu/packages/linux.scm:1513 +msgid "Monitor file accesses" +msgstr "" + +#: gnu/packages/linux.scm:1515 +msgid "" +"The inotify-tools packages provides a C library and command-line tools\= n" +"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +msgstr "" + +#: gnu/packages/linux.scm:1553 +msgid "Kernel module tools" +msgstr "" + +#: gnu/packages/linux.scm:1554 +msgid "" +"Kmod is a set of tools to handle common tasks with Linux\n" +"kernel modules like insert, remove, list, check properties, resolve\n" +"dependencies and aliases.\n" +"\n" +"These tools are designed on top of libkmod, a library that is shipped w= ith\n" +"kmod. The aim is to be compatible with tools, configurations and indic= es\n" +"from the module-init-tools project." +msgstr "" + +#: gnu/packages/linux.scm:1586 +msgid "Userspace device management" +msgstr "" + +#: gnu/packages/linux.scm:1587 +msgid "" +"Udev is a daemon which dynamically creates and removes\n" +"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" +"time." +msgstr "" + +#: gnu/packages/linux.scm:1659 +msgid "Logical volume management for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1661 +msgid "" +"LVM2 is the logical volume management tool set for Linux-based systems.= \n" +"This package includes the user-space libraries and tools, including the= " +"device\n" +"mapper. Kernel components are part of Linux-libre." +msgstr "" + +#: gnu/packages/linux.scm:1697 +msgid "Tools for manipulating Linux Wireless Extensions" +msgstr "" + +#: gnu/packages/linux.scm:1698 +msgid "" +"Wireless Tools are used to manipulate the now-deprecated\n" +"Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " +"Extension was an interface allowing you to set Wireless LAN specific\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" +"interface." +msgstr "" + +#: gnu/packages/linux.scm:1770 +msgid "Central regulatory domain agent (CRDA) for WiFi" +msgstr "" + +#: gnu/packages/linux.scm:1772 +msgid "" +"The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" +"communication between the kernel Linux and user space for regulatory\n" +"compliance." +msgstr "" + +#: gnu/packages/linux.scm:1818 +msgid "Wireless regulatory database" +msgstr "" + +#: gnu/packages/linux.scm:1820 +msgid "" +"This package contains the wireless regulatory database Central\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" +"country-specific regulations for the wireless spectrum." +msgstr "" + +#: gnu/packages/linux.scm:1891 +msgid "Utilities to read temperature/voltage/fan sensors" +msgstr "" + +#: gnu/packages/linux.scm:1893 +msgid "" +"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" +"you to access information from temperature, voltage, and fan speed sens= ors.\n" +"It works with most newer systems." +msgstr "" + +#: gnu/packages/linux.scm:1920 +msgid "I2C tools for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1922 +msgid "" +"The i2c-tools package contains a heterogeneous set of I2C tools for\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" +"EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" +"SMBus access." +msgstr "" + +#: gnu/packages/linux.scm:1958 +msgid "Hardware health information viewer" +msgstr "" + +#: gnu/packages/linux.scm:1960 +msgid "" +"Xsensors reads data from the libsensors library regarding hardware\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" +"in a digital read-out." +msgstr "" + +#: gnu/packages/linux.scm:2008 +msgid "Linux profiling with performance counters" +msgstr "" + +#: gnu/packages/linux.scm:2010 +msgid "" +"perf is a tool suite for profiling using hardware performance counters,= \n" +"with support in the Linux kernel. perf can instrument CPU performance\= n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" +"of lightweight profiling. This package contains the user-land tools an= d in\n" +"particular the 'perf' command." +msgstr "" + +#: gnu/packages/linux.scm:2033 +msgid "Simple tool for creating Linux namespace containers" +msgstr "" + +#: gnu/packages/linux.scm:2034 +msgid "" +"pflask is a simple tool for creating Linux namespace\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" +"an isolated container, created with the help of Linux namespaces. It i= s\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" +"thanks to the use of namespaces." +msgstr "" + +#: gnu/packages/linux.scm:2061 +msgid "Tune hard disk parameters for high performance" +msgstr "" + +#: gnu/packages/linux.scm:2063 +msgid "" +"Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" +"is for enabling irq-unmasking and IDE multiple-mode." +msgstr "" + +#: gnu/packages/linux.scm:2086 +msgid "Tool for enabling and disabling wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:2088 +msgid "" +"rfkill is a simple tool for accessing the rfkill device interface,\n" +"which is used to enable and disable wireless networking devices, typica= lly\n" +"WLAN, Bluetooth and mobile broadband." +msgstr "" + +#: gnu/packages/linux.scm:2107 +msgid "Daemon for delivering ACPI events to user-space programs" +msgstr "" + +#: gnu/packages/linux.scm:2109 +msgid "" +"acpid is designed to notify user-space programs of Advanced\n" +"Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" +"during the system boot, and will run as a background process. When an = ACPI\n" +"event is received from the kernel, acpid will examine the list of rules= \n" +"specified in /etc/acpi/events and execute the rules that match the even= t." +msgstr "" + +#: gnu/packages/linux.scm:2131 +msgid "System utilities based on Linux sysfs" +msgstr "" + +#: gnu/packages/linux.scm:2133 +msgid "" +"These are a set of utilities built upon sysfs, a virtual filesystem in\= n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" +"also contains the libsysfs library." +msgstr "" + +#: gnu/packages/linux.scm:2162 +msgid "System utilities based on Linux sysfs (version 1.x)" +msgstr "" + +#: gnu/packages/linux.scm:2185 +msgid "Utilities to get and set CPU frequency on Linux" +msgstr "" + +#: gnu/packages/linux.scm:2187 +msgid "" +"The cpufrequtils suite contains utilities to retrieve CPU frequency\n" +"information, and set the CPU frequency if supported, using the cpufreq\= n" +"capabilities of the Linux kernel." +msgstr "" + +#: gnu/packages/linux.scm:2206 +msgid "Interface library for the Linux IEEE1394 drivers" +msgstr "" + +#: gnu/packages/linux.scm:2208 +msgid "" +"Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" +"protocol in question." +msgstr "" + +#: gnu/packages/linux.scm:2232 +msgid "AV/C protocol library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2234 +msgid "" +"Libavc1394 is a programming interface to the AV/C specification from\n" +"the 1394 Trade Association. AV/C stands for Audio/Video Control." +msgstr "" + +#: gnu/packages/linux.scm:2256 +msgid "Isochronous streaming media library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2258 +msgid "" +"The libiec61883 library provides a higher level API for streaming DV,\n= " +"MPEG-2 and audio over Linux IEEE 1394." +msgstr "" + +#: gnu/packages/linux.scm:2298 +msgid "Tool for managing Linux Software RAID arrays" +msgstr "" + +#: gnu/packages/linux.scm:2300 +msgid "" +"mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" +"arrays when needed." +msgstr "" + +#: gnu/packages/linux.scm:2327 +msgid "Linux-native asynchronous I/O access library" +msgstr "" + +#: gnu/packages/linux.scm:2329 +msgid "" +"This library enables userspace to use Linux kernel asynchronous I/O\n" +"system calls, important for the performance of databases and other adva= nced\n" +"applications." +msgstr "" + +#: gnu/packages/linux.scm:2365 +msgid "Linux Bluetooth protocol stack" +msgstr "" + +#: gnu/packages/linux.scm:2367 +msgid "" +"BlueZ provides support for the core Bluetooth layers and protocols. It= \n" +"is flexible, efficient and uses a modular implementation." +msgstr "" + +#: gnu/packages/linux.scm:2423 +msgid "Mount exFAT file systems" +msgstr "" + +#: gnu/packages/linux.scm:2425 +msgid "" +"This package provides a FUSE-based file system that provides read and\n= " +"write access to exFAT devices." +msgstr "" + +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + +#: gnu/packages/lout.scm:109 +msgid "Document layout system" +msgstr "" + +#: gnu/packages/lout.scm:111 +#, fuzzy +msgid "" +"The Lout document formatting system reads a high-level description of\n= " +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" +"output file.\n" +"\n" +"Lout offers an unprecedented range of advanced features, including opti= mal\n" +"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" +"scaling, sorted indexes, bibliographic databases, running headers and\n= " +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" +"hyphenation (most European languages are supported), formatting of comp= uter\n" +"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" +"extended with definitions which are very much easier to write than trof= f of\n" +"TeX macros because Lout is a high-level, purely functional language, th= e\n" +"outcome of an eight-year research project that went back to the\n" +"beginning." +msgstr "" +"O sistema de formata=C3=A7=C3=A3o de texto Lout agora l=C3=AA uma descr= i=C3=A7=C3=A3o de alto n=C3=ADvel " +"de\n" +"documentos similar em estilo ao LaTeX e produz um arquivo de sa=C3=ADda= em texto\n" +"simples ou em PostScript.\n" +"\n" +"Lout oferece uma faixa sem precedente de recursos avan=C3=A7ados, inclu= indo uma\n" +"=C3=B3tima quebra de par=C3=A1grafo e p=C3=A1gina, hifeniza=C3=A7=C3=A3= o autom=C3=A1tica, inclus=C3=A3o e\n" +"cria=C3=A7=C3=A3o de arquivo EPS de PostScript, formata=C3=A7=C3=A3o de= equa=C3=A7=C3=A3o, tabelas,\n" +"diagramas, rota=C3=A7=C3=A3o e escalas, =C3=ADndices ordenados, banco d= e dados\n" +"bibliogr=C3=A1ficos, executar cabe=C3=A7alhos e p=C3=A1ginas =C3=ADmpar= -par, refer=C3=AAncia cruzada\n" +"autom=C3=A1tica, documentos multil=C3=ADngues incluindo hifeniza=C3=A7=C3= =A3o (h=C3=A1 suporte =C3=A0\n" +"maioria dos idiomas europeus), formata=C3=A7=C3=A3o de programas de com= putador, e " +"muito\n" +"mais, tudo pronto para uso. Al=C3=A9m disso, Lout pode ser estendido fa= cilmente " +"com\n" +"defini=C3=A7=C3=B5es que s=C3=A3o muito f=C3=A1cil de escrever do que t= roff das macros TeX " +"porque\n" +"Lout =C3=A9 uma linguagem puramente funcional de alto n=C3=ADvel, sendo= o resultado " +"de\n" +"oito anos de um projeto de pesquisa que voltou para o come=C3=A7o." + +#: gnu/packages/messaging.scm:77 +msgid "Off-the-Record (OTR) Messaging Library and Toolkit" +msgstr "" + +#: gnu/packages/messaging.scm:79 +msgid "" +"OTR allows you to have private conversations over instant messaging by\= n" +"providing: (1) Encryption: No one else can read your instant messages. = (2)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" +"Deniability: The messages you send do not have digital signatures that = are\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" +"correspondent is assured the messages he sees are authentic and\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" +"keys, no previous conversation is compromised." +msgstr "" + +#: gnu/packages/messaging.scm:135 +msgid "IRC to instant messaging gateway" +msgstr "" + +#: gnu/packages/messaging.scm:136 +msgid "" +"BitlBee brings IM (instant messaging) to IRC clients, for\n" +"people who have an IRC client running all the time and don't want to ru= n an\n" +"additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" +"microblogging network (plus all other Twitter API compatible services l= ike\n" +"identi.ca and status.net)." +msgstr "" + +#: gnu/packages/messaging.scm:169 +msgid "Graphical IRC Client" +msgstr "" + +#: gnu/packages/messaging.scm:171 +msgid "" +"HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" +"users and to highlight messages. It checks spelling using available\n" +"dictionaries. HexChat can be extended with multiple addons." +msgstr "" + +#: gnu/packages/messaging.scm:237 +msgid "Lightweight Internet Relay Chat server for small networks" +msgstr "" + +#: gnu/packages/messaging.scm:239 +msgid "" +"ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" +"networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" +"supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." +msgstr "" + +#: gnu/packages/messaging.scm:310 +msgid "Graphical multi-protocol instant messaging client" +msgstr "" + +#: gnu/packages/messaging.scm:312 +msgid "" +"Pidgin is a modular instant messaging client that supports many popular= \n" +"chat protocols." +msgstr "" + +#: gnu/packages/messaging.scm:350 +msgid "Off-the-Record Messaging plugin for Pidgin" +msgstr "" + +#: gnu/packages/messaging.scm:352 +msgid "" +"Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" +"can read your instant messages. (2) Authentication: You are assured th= e\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" +"do not have digital signatures that are checkable by a third party. An= yone\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" +"you. However, during a conversation, your correspondent is assured the= \n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" +"If you lose control of your private keys, no previous conversation is\n= " +"compromised." +msgstr "" + +#: gnu/packages/messaging.scm:392 +msgid "IRC network bouncer" +msgstr "" + +#: gnu/packages/messaging.scm:393 +msgid "" +"ZNC is an IRC network bouncer or BNC. It can detach the\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" +"clients from different locations can connect to a single ZNC account\n" +"simultaneously and therefore appear under the same nickname on IRC." +msgstr "" + +#: gnu/packages/messaging.scm:415 +msgid "Non-blocking Jabber/XMPP module" +msgstr "" + +#: gnu/packages/messaging.scm:417 +msgid "" +"The goal of this python library is to provide a way for Python\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" +"was initially a fork of xmpppy, but is using non-blocking sockets." +msgstr "" + +#: gnu/packages/messaging.scm:474 +msgid "Jabber (XMPP) client" +msgstr "" + +#: gnu/packages/messaging.scm:475 +msgid "" +"Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" +"transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" +"end-to-end encryption support; XML console." +msgstr "" + +#: gnu/packages/mpd.scm:63 +msgid "Music Player Daemon client library" +msgstr "" + +#: gnu/packages/mpd.scm:64 +msgid "" +"A stable, documented, asynchronous API library for\n" +"interfacing MPD in the C, C++ & Objective C languages." +msgstr "" + +#: gnu/packages/mpd.scm:124 +msgid "Music Player Daemon" +msgstr "" + +#: gnu/packages/mpd.scm:125 +msgid "" +"Music Player Daemon (MPD) is a flexible, powerful,\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" +"can play a variety of sound files while being controlled by its network= \n" +"protocol." +msgstr "" + +#: gnu/packages/mpd.scm:148 +msgid "Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:149 +msgid "" +"MPC is a minimalist command line interface to MPD, the music\n" +"player daemon." +msgstr "" + +#: gnu/packages/mpd.scm:172 +msgid "Curses Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:173 +msgid "" +"ncmpc is a fully featured MPD client, which runs in a\n" +"terminal using ncurses." +msgstr "" + +#: gnu/packages/mpd.scm:211 +msgid "Featureful ncurses based MPD client inspired by ncmpc" +msgstr "" + +#: gnu/packages/mpd.scm:212 +msgid "" +"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" +"but it provides new useful features such as support for regular express= ions\n" +"for library searches, extended song format, items filtering, the abilit= y to\n" +"sort playlists, and a local filesystem browser." +msgstr "" + +#: gnu/packages/mpd.scm:235 +msgid "MPD client for track scrobbling" +msgstr "" + +#: gnu/packages/mpd.scm:236 +msgid "" +"mpdscribble is a Music Player Daemon client which submits\n" +"information about tracks being played to a scrobbler, such as Libre.FM.= " +msgstr "" + +#: gnu/packages/netpbm.scm:146 +msgid "Toolkit for manipulation of images" +msgstr "" + +#: gnu/packages/netpbm.scm:148 +msgid "" +"Netpbm is a toolkit for the manipulation of graphic images, including\n= " +"the conversion of images between a variety of different formats.\n" +"There are over 300 separate tools in the package including converters f= or\n" +"about 100 graphics formats." +msgstr "" + +#: gnu/packages/nettle.scm:51 +msgid "C library for low-level cryptographic functionality" +msgstr "" + +#: gnu/packages/nettle.scm:53 +msgid "" +"GNU Nettle is a low-level cryptographic library. It is designed to\n" +"fit in easily in almost any context. It can be easily included in\n" +"cryptographic toolkits for object-oriented languages or in applications= \n" +"themselves." +msgstr "" + +#: gnu/packages/networking.scm:52 +msgid "Teredo IPv6 tunneling software" +msgstr "" + +#: gnu/packages/networking.scm:54 +msgid "" +"Miredo is an implementation (client, relay, server) of the Teredo\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" +"residing in IPv4-only networks, even when they are behind a NAT device.= " +msgstr "" + +#: gnu/packages/networking.scm:76 +msgid "Open bidirectional communication channels from the command line" +msgstr "" + +#: gnu/packages/networking.scm:78 +msgid "" +"socat is a relay for bidirectional data transfer between two independen= t\n" +"data channels---files, pipes, devices, sockets, etc. It can create\n" +"\"listening\" sockets, named pipes, and pseudo terminals.\n" +"\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" +"line, to logically connect serial lines on different computers, or to\n= " +"establish a relatively secure environment (su and chroot) for running " +"client\n" +"or server shell scripts with network connections." +msgstr "" + +#: gnu/packages/networking.scm:102 +msgid "Library for message-based applications" +msgstr "" + +#: gnu/packages/networking.scm:104 +msgid "" +"The 0MQ lightweight messaging kernel is a library which extends the\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" +"messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" +"asynchronous message queues, multiple messaging patterns, message\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" +"more." +msgstr "" + +#: gnu/packages/networking.scm:125 +msgid "Library for Neighbor Discovery Protocol" +msgstr "" + +#: gnu/packages/networking.scm:127 +msgid "" +"libndp contains a library which provides a wrapper for IPv6 Neighbor\n" +"Discovery Protocol. It also provides a tool named ndptool for sending = and\n" +"receiving NDP messages." +msgstr "" + +#: gnu/packages/networking.scm:145 +msgid "Display or change Ethernet device settings" +msgstr "" + +#: gnu/packages/networking.scm:147 +msgid "" +"ethtool can be used to query and change settings such as speed,\n" +"auto-negotiation and checksum offload on many network devices, especial= ly\n" +"Ethernet devices." +msgstr "" + +#: gnu/packages/networking.scm:183 +msgid "Text based network interface status monitor" +msgstr "" + +#: gnu/packages/networking.scm:185 +msgid "" +"IFStatus is a simple, easy-to-use program for displaying commonly\n" +"needed/wanted real-time traffic statistics of multiple network\n" +"interfaces, with a simple and efficient view on the command line. It i= s\n" +"intended as a substitute for the PPPStatus and EthStatus projects." +msgstr "" + +#: gnu/packages/pdf.scm:101 +msgid "PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:103 +msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +msgstr "" + +#: gnu/packages/pdf.scm:112 +msgid "Qt4 frontend for the Poppler PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:145 +msgid "Python bindings for Poppler-Qt4" +msgstr "" + +#: gnu/packages/pdf.scm:147 +msgid "" +"This package provides Python bindings for the Qt4 interface of the\n" +"Poppler PDF rendering library." +msgstr "" + +#: gnu/packages/pdf.scm:194 +msgid "Viewer for PDF files based on the Motif toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:196 +msgid "Xpdf is a viewer for Portable Document Format (PDF) files." +msgstr "" + +#: gnu/packages/pdf.scm:226 +msgid "Comic book support for zathura (libarchive backend)" +msgstr "" + +#: gnu/packages/pdf.scm:227 +msgid "" +"The zathura-cb plugin adds comic book support to zathura\n" +"using libarchive." +msgstr "" + +#: gnu/packages/pdf.scm:257 +msgid "PS support for zathura (libspectre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:258 +msgid "" +"The zathura-ps plugin adds PS support to zathura\n" +"using libspectre." +msgstr "" + +#: gnu/packages/pdf.scm:289 +msgid "DjVu support for zathura (DjVuLibre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:290 +msgid "" +"The zathura-djvu plugin adds DjVu support to zathura\n" +"using the DjVuLibre library." +msgstr "" + +#: gnu/packages/pdf.scm:322 +msgid "PDF support for zathura (poppler backend)" +msgstr "" + +#: gnu/packages/pdf.scm:323 +msgid "" +"The zathura-pdf-poppler plugin adds PDF support to zathura\n" +"by using the poppler rendering engine." +msgstr "" + +#: gnu/packages/pdf.scm:361 +msgid "Lightweight keyboard-driven PDF viewer" +msgstr "" + +#: gnu/packages/pdf.scm:362 +msgid "" +"Zathura is a customizable document viewer. It provides a\n" +"minimalistic interface and an interface that mainly focuses on keyboard= \n" +"interaction." +msgstr "" + +#: gnu/packages/pdf.scm:401 +msgid "Tools to work with the PDF file format" +msgstr "" + +#: gnu/packages/pdf.scm:403 +msgid "" +"PoDoFo is a C++ library and set of command-line tools to work with the\= n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" +"for applications that wish to do lower level manipulation of PDF, such = as\n" +"extracting content or merging files." +msgstr "" + +#: gnu/packages/pdf.scm:464 +msgid "Lightweight PDF viewer and toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:466 +msgid "" +"MuPDF is a C library that implements a PDF and XPS parsing and\n" +"rendering engine. It is used primarily to render pages into bitmaps,\n= " +"but also provides support for other operations such as searching and\n" +"listing the table of contents and hyperlinks.\n" +"\n" +"The library ships with a rudimentary X11 viewer, and a set of command\n= " +"line tools for batch rendering (pdfdraw), rewriting files (pdfclean),\n= " +"and examining the file structure (pdfshow)." +msgstr "" + +#: gnu/packages/pdf.scm:506 +msgid "Command-line tools and library for transforming PDF files" +msgstr "" + +#: gnu/packages/pdf.scm:508 +msgid "" +"QPDF is a command-line program that does structural, content-preserving= \n" +"transformations on PDF files. It could have been called something like= \n" +"pdf-to-pdf. It includes support for merging and splitting PDFs and to\= n" +"manipulate the list of pages in a PDF file. It is not a PDF viewer or = a\n" +"program capable of converting PDF into other formats." +msgstr "" + +#: gnu/packages/pdf.scm:538 +msgid "Notetaking using a stylus" +msgstr "" + +#: gnu/packages/pdf.scm:540 +msgid "" +"Xournal is an application for notetaking, sketching, keeping a journal\= n" +"using a stylus." +msgstr "" + +#: gnu/packages/pem.scm:41 +msgid "Personal expenses manager" +msgstr "" + +#: gnu/packages/pem.scm:43 +msgid "" +"GNU Pem is a simple tool for tracking personal income and\n" +"expenses. It operates from the command line and it stores its data\n" +"in a basic text format in your home directory. It can easily print\n" +"reports of your spending on different expenses via a basic search\n" +"feature." +msgstr "" + +#: gnu/packages/perl.scm:110 +msgid "Implementation of the Perl programming language" +msgstr "" + +#: gnu/packages/perl.scm:112 +msgid "" +"Perl 5 is a highly capable, feature-rich programming language with over= \n" +"24 years of development." +msgstr "" + +#: gnu/packages/perl.scm:131 +msgid "Module for merging hierarchies using the C3 algorithm" +msgstr "" + +#: gnu/packages/perl.scm:132 +msgid "" +"This module implements the C3 algorithm, which aims to\n" +"provide a sane method resolution order under multiple inheritance." +msgstr "" + +#: gnu/packages/perl.scm:150 +msgid "Compute differences between two files or lists" +msgstr "" + +#: gnu/packages/perl.scm:151 +msgid "" +"This is a module for computing the difference between two\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" +"algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" +"program. It is guaranteed to find the *smallest possible* set of\n" +"differences." +msgstr "" + +#: gnu/packages/perl.scm:173 +msgid "Use shorter versions of class names" +msgstr "" + +#: gnu/packages/perl.scm:174 +msgid "" +"The alias module loads the class you specify and exports\n" +"into your namespace a subroutine that returns the class name. You can\= n" +"explicitly alias the class to another name or, if you prefer, you can d= o so\n" +"implicitly." +msgstr "" + +#: gnu/packages/perl.scm:196 +msgid "Configuration files and command line parsing" +msgstr "" + +#: gnu/packages/perl.scm:197 +msgid "" +"AppConfig is a bundle of Perl5 modules for reading\n" +"configuration files and parsing command line arguments." +msgstr "" + +#: gnu/packages/perl.scm:215 +msgid "Perl API to zip files" +msgstr "" + +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 +msgid "" +"The Archive::Zip module allows a Perl program to create,\n" +"manipulate, read, and write Zip archive files." +msgstr "" + +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 +msgid "Establish an ISA relationship with base classes at compile time" +msgstr "" + +#: gnu/packages/perl.scm:236 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" +"parent." +msgstr "" + +#: gnu/packages/perl.scm:261 +msgid "Execute code after a scope finished compilation" +msgstr "" + +#: gnu/packages/perl.scm:262 +msgid "" +"This module allows you to execute code when perl finished\n" +"compiling the surrounding scope." +msgstr "" + +#: gnu/packages/perl.scm:280 +msgid "Benchmarking with statistical confidence" +msgstr "" + +#: gnu/packages/perl.scm:282 +msgid "" +"The Benchmark::Timer class allows you to time portions of code\n" +"conveniently, as well as benchmark code by allowing timings of repeated= \n" +"trials. It is perfect for when you need more precise information about= the\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" +"but don't want to go all out and profile your code." +msgstr "" + +#: gnu/packages/perl.scm:307 +msgid "Bit vector library" +msgstr "" + +#: gnu/packages/perl.scm:308 +msgid "" +"Bit::Vector is an efficient C library which allows you to\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" +"matrices, all of arbitrary sizes. The package also includes an\n" +"object-oriented Perl module for accessing the C library from Perl, and\= n" +"optionally features overloaded operators for maximum ease of use. The = C\n" +"library can nevertheless be used stand-alone, without Perl." +msgstr "" + +#: gnu/packages/perl.scm:330 +msgid "Boolean support for Perl" +msgstr "" + +#: gnu/packages/perl.scm:331 +msgid "" +"This module provides basic Boolean support, by defining two\n" +"special objects: true and false." +msgstr "" + +#: gnu/packages/perl.scm:352 +msgid "Cache interface for Perl" +msgstr "" + +#: gnu/packages/perl.scm:353 +msgid "" +"The Cache modules are designed to assist a developer in\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" +"in web applications to store data locally to save repeated and redundan= t\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" +"runs of an application or invocations of a CGI-style script or simply a= s an\n" +"easy to use abstraction of the filesystem or shared memory." +msgstr "" + +#: gnu/packages/perl.scm:376 +msgid "Shared memory interprocess cache via mmap" +msgstr "" + +#: gnu/packages/perl.scm:377 +msgid "" +"A shared memory cache through an mmap'ed file. It's core is\n" +"written in C for performance. It uses fcntl locking to ensure multiple= \n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" +"algorithm to keep the most used entries in the cache." +msgstr "" + +#: gnu/packages/perl.scm:398 +msgid "Capture STDOUT and STDERR from Perl, XS or external programs" +msgstr "" + +#: gnu/packages/perl.scm:400 +msgid "" +"Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" +"sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" +"is captured while being passed through to the original file handles." +msgstr "" + +#: gnu/packages/perl.scm:420 +msgid "Executable comments for Perl" +msgstr "" + +#: gnu/packages/perl.scm:421 +msgid "" +"Carp::Assert is intended for a purpose like the ANSI C\n" +"library assert.h." +msgstr "" + +#: gnu/packages/perl.scm:443 +msgid "Convenience wrappers around Carp::Assert" +msgstr "" + +#: gnu/packages/perl.scm:444 +msgid "" +"Carp::Assert::More is a set of handy assertion functions for\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:464 +msgid "Report errors from a \"clan\" of modules" +msgstr "" + +#: gnu/packages/perl.scm:465 +msgid "" +"This module allows errors from a clan (or family) of modules\n" +"to appear to originate from the caller of the clan. This is necessary = in\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" +"the Carp.pm module doesn't help." +msgstr "" + +#: gnu/packages/perl.scm:489 +msgid "Automated accessor generation" +msgstr "" + +#: gnu/packages/perl.scm:490 +msgid "" +"This module automagically generates accessors/mutators for\n" +"your class." +msgstr "" + +#: gnu/packages/perl.scm:512 +msgid "Faster, but less expandable, chained accessors" +msgstr "" + +#: gnu/packages/perl.scm:513 +msgid "" +"A chained accessor is one that always returns the object\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" +"the same mk_accessors interface." +msgstr "" + +#: gnu/packages/perl.scm:539 +msgid "Build groups of accessors" +msgstr "" + +#: gnu/packages/perl.scm:540 +msgid "" +"This class lets you build groups of accessors that will call\n" +"different getters and setters." +msgstr "" + +#: gnu/packages/perl.scm:560 +msgid "Pragma to use the C3 method resolution order algorithm" +msgstr "" + +#: gnu/packages/perl.scm:561 +msgid "" +"This is pragma to change Perl 5's standard method resolution\n" +"order from depth-first left-to-right (a.k.a - pre-order) to the more\n" +"sophisticated C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:585 +msgid "Drop-in replacement for NEXT" +msgstr "" + +#: gnu/packages/perl.scm:586 +msgid "" +"This module is intended as a drop-in replacement for NEXT,\n" +"supporting the same interface, but using Class::C3 to do the hard work.= " +msgstr "" + +#: gnu/packages/perl.scm:610 +msgid "Load mix-ins or components to your C3-based class" +msgstr "" + +#: gnu/packages/perl.scm:611 +msgid "" +"This module will inject base classes to your module using\n" +"the Class::C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:629 +msgid "Inheritable, overridable class data" +msgstr "" + +#: gnu/packages/perl.scm:630 +msgid "" +"Class::Data::Inheritable is for creating accessor/mutators\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" +"subclasses and can be overridden." +msgstr "" + +#: gnu/packages/perl.scm:651 +msgid "Class for easy date and time manipulation" +msgstr "" + +#: gnu/packages/perl.scm:652 +msgid "" +"This module provides a general-purpose date and datetime\n" +"type for perl." +msgstr "" + +#: gnu/packages/perl.scm:671 +msgid "Utility methods for factory classes" +msgstr "" + +#: gnu/packages/perl.scm:672 +msgid "This module exports methods useful for factory classes." +msgstr "" + +#: gnu/packages/perl.scm:689 +msgid "Get information about a class and its structure" +msgstr "" + +#: gnu/packages/perl.scm:690 +msgid "" +"Class::Inspector allows you to get information about a\n" +"loaded class." +msgstr "" + +#: gnu/packages/perl.scm:718 +msgid "Working (require \"Class::Name\") and more" +msgstr "" + +#: gnu/packages/perl.scm:719 +msgid "" +"\"require EXPR\" only accepts Class/Name.pm style module\n" +"names, not Class::Name. For that, this module provides \"load_class\n" +"'Class::Name'\"." +msgstr "" + +#: gnu/packages/perl.scm:742 +msgid "XS implementation of parts of Class::Load" +msgstr "" + +#: gnu/packages/perl.scm:743 +msgid "" +"This module provides an XS implementation for portions of\n" +"Class::Load." +msgstr "" + +#: gnu/packages/perl.scm:762 +msgid "Create generic methods for OO Perl" +msgstr "" + +#: gnu/packages/perl.scm:763 +msgid "" +"This module solves the problem of having to continually\n" +"write accessor methods for your objects that perform standard tasks." +msgstr "" + +#: gnu/packages/perl.scm:784 +msgid "Moose-like method modifiers" +msgstr "" + +#: gnu/packages/perl.scm:785 +msgid "" +"Class::Method::Modifiers provides three modifiers: 'before',\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" +"is run in place of the original method, with a hook to easily call that= \n" +"original method." +msgstr "" + +#: gnu/packages/perl.scm:806 +msgid "Implementation of a singleton class for Perl" +msgstr "" + +#: gnu/packages/perl.scm:807 +msgid "" +"This module implements a Singleton class from which other\n" +"classes can be derived. By itself, the Class::Singleton module does ve= ry\n" +"little other than manage the instantiation of a single object." +msgstr "" + +#: gnu/packages/perl.scm:826 +msgid "Minimalist class construction" +msgstr "" + +#: gnu/packages/perl.scm:827 +msgid "" +"This module offers a minimalist class construction kit. It\n" +"uses no non-core modules for any recent Perl." +msgstr "" + +#: gnu/packages/perl.scm:847 +msgid "Unload a class" +msgstr "" + +#: gnu/packages/perl.scm:848 +msgid "" +"Class:Unload unloads a given class by clearing out its\n" +"symbol table and removing it from %INC." +msgstr "" + +#: gnu/packages/perl.scm:866 +msgid "Generate fast XS accessors without runtime compilation" +msgstr "" + +#: gnu/packages/perl.scm:867 +msgid "" +"Class::XSAccessor implements fast read, write, and\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" +"\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" +"Class::XSAccessor::Array implements the same interface for objects that= use\n" +"arrays for their internal representation." +msgstr "" + +#: gnu/packages/perl.scm:887 +msgid "Recursively copy Perl datatypes" +msgstr "" + +#: gnu/packages/perl.scm:889 +msgid "" +"This module provides a clone() method which makes recursive copies of\n= " +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" +"objects." +msgstr "" + +#: gnu/packages/perl.scm:910 +msgid "Sane defaults for Perl programs" +msgstr "" + +#: gnu/packages/perl.scm:911 +msgid "" +"This module implements some sane defaults for Perl programs,\n" +"as defined by two typical specimens of Perl coders." +msgstr "" + +#: gnu/packages/perl.scm:931 +msgid "Load configuration from different file formats" +msgstr "" + +#: gnu/packages/perl.scm:932 +msgid "" +"Config::Any provides a facility for Perl applications and\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" +"supports XML, YAML, JSON, Apache-style configuration, and Perl code." +msgstr "" + +#: gnu/packages/perl.scm:953 +msgid "Module to implement some AutoConf macros in Perl" +msgstr "" + +#: gnu/packages/perl.scm:954 +msgid "" +"Config::AutoConf is intended to provide the same\n" +"opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." +msgstr "" + +#: gnu/packages/perl.scm:972 +msgid "Generic Config Module" +msgstr "" + +#: gnu/packages/perl.scm:973 +msgid "" +"This module opens a config file and parses its contents for\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" +"the well known Apache config format and is 100% compatible with Apache\= n" +"configs, but you can also just use simple name/value pairs in your conf= ig\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" +"some enhancements such as here-documents, C-style comments, and multili= ne\n" +"options." +msgstr "" + +#: gnu/packages/perl.scm:999 +msgid "Preserve context during subroutine call" +msgstr "" + +#: gnu/packages/perl.scm:1000 +msgid "" +"This module runs code after a subroutine call, preserving\n" +"the context the subroutine would have seen if it were the last statemen= t in\n" +"the caller." +msgstr "" + +#: gnu/packages/perl.scm:1021 +msgid "Verify requirements in a CPAN::Meta object" +msgstr "" + +#: gnu/packages/perl.scm:1022 +msgid "" +"This module verifies if requirements described in a\n" +"CPAN::Meta object are present." +msgstr "" + +#: gnu/packages/perl.scm:1042 +msgid "JSON::XS for Cpanel" +msgstr "" + +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa." +msgstr "" + +#: gnu/packages/perl.scm:1061 +msgid "Random password generator" +msgstr "" + +#: gnu/packages/perl.scm:1062 +msgid "" +"Crypt::RandPasswd provides three functions that can be used\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" +"This code is a Perl implementation of the Automated Password Generator\= n" +"standard, like the program described in \"A Random Word Generator For\n= " +"Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" +"contained in Appendix A of FIPS Publication 181, \"Standard for Automat= ed\n" +"Password Generator\"." +msgstr "" + +#: gnu/packages/perl.scm:1105 +msgid "Library for genomic analysis" +msgstr "" + +#: gnu/packages/perl.scm:1106 +msgid "" +"Chaolin Zhang's Perl Library (czplib) contains assorted\n" +"functions and data structures for processing and analysing genomic and\= n" +"bioinformatics data." +msgstr "" + +#: gnu/packages/perl.scm:1125 +msgid "Pretty printing of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1126 +msgid "" +"This module provide functions that takes a list of values as\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" +"code that, when \"eval\"ed, produces a deep copy of the original argume= nts." +msgstr "" + +#: gnu/packages/perl.scm:1145 +msgid "Concise data dumper" +msgstr "" + +#: gnu/packages/perl.scm:1146 +msgid "" +"Data::Dumper::Concise provides a dumper with Less\n" +"indentation and newlines plus sub deparsing." +msgstr "" + +#: gnu/packages/perl.scm:1168 +msgid "Parse and validate simple name/value option pairs" +msgstr "" + +#: gnu/packages/perl.scm:1170 +msgid "Data::OptList provides a simple syntax for name/value option pair= s." +msgstr "" + +#: gnu/packages/perl.scm:1192 +msgid "Help when paging through sets of results" +msgstr "" + +#: gnu/packages/perl.scm:1193 +msgid "" +"When searching through large amounts of data, it is often\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" +"The maths behind this is unfortunately fiddly, hence this module." +msgstr "" + +#: gnu/packages/perl.scm:1215 +msgid "Structured tags datastructures" +msgstr "" + +#: gnu/packages/perl.scm:1217 +msgid "" +"This module is for manipulating data as hierarchical tag/value\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:1244 +msgid "N at a time iteration API" +msgstr "" + +#: gnu/packages/perl.scm:1245 +msgid "" +"This module tries to find middle ground between one at a\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" +"to avoid the overhead of implementing an iterative api when this isn't\= n" +"necessary, without breaking forward compatibility in case that becomes\= n" +"necessary later on." +msgstr "" + +#: gnu/packages/perl.scm:1270 +msgid "Dynamic generation of nested combinations of variants" +msgstr "" + +#: gnu/packages/perl.scm:1271 +msgid "" +"Data::Tumbler - Dynamic generation of nested combinations of\n" +"variants." +msgstr "" + +#: gnu/packages/perl.scm:1297 +msgid "Visitor style traversal of Perl data structures" +msgstr "" + +#: gnu/packages/perl.scm:1298 +msgid "" +"This module is a simple visitor implementation for Perl\n" +"values. It has a main dispatcher method, visit, which takes a single p= erl\n" +"value and then calls the methods appropriate for that value. It can\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" +"support for per-object behavior, circular structures, visiting tied\n" +"structures, and all ref types (hashes, arrays, scalars, code, globs)." +msgstr "" + +#: gnu/packages/perl.scm:1323 +msgid "Gregorian calendar date calculations" +msgstr "" + +#: gnu/packages/perl.scm:1324 +msgid "" +"This package consists of a Perl module for date calculations\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" +"standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" +"applicable)." +msgstr "" + +#: gnu/packages/perl.scm:1348 +msgid "XS wrapper for Date::Calc" +msgstr "" + +#: gnu/packages/perl.scm:1349 +msgid "" +"Date::Calc::XS is an XS wrapper and C library plug-in for\n" +"Date::Calc." +msgstr "" + +#: gnu/packages/perl.scm:1373 +msgid "Date manipulation routines" +msgstr "" + +#: gnu/packages/perl.scm:1374 +msgid "" +"Date::Manip is a series of modules for common date/time\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" +"time from another, or parsing international times." +msgstr "" + +#: gnu/packages/perl.scm:1402 +msgid "Date and time object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1403 +msgid "" +"DateTime is a class for the representation of date/time\n" +"combinations. It represents the Gregorian calendar, extended backwards= in\n" +"time before its creation (in 1582)." +msgstr "" + +#: gnu/packages/perl.scm:1428 +msgid "DateTime set objects" +msgstr "" + +#: gnu/packages/perl.scm:1429 +msgid "" +"The DateTime::Set module provides a date/time sets\n" +"implementation. It allows, for example, the generation of groups of da= tes,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" +"within a time range." +msgstr "" + +#: gnu/packages/perl.scm:1452 +msgid "DateTime rfc2445 recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1453 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for RFC 2445 style recurrences." +msgstr "" + +#: gnu/packages/perl.scm:1474 +msgid "DateTime::Set extension for basic recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1475 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" +"\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." +msgstr "" + +#: gnu/packages/perl.scm:1500 +msgid "Create DateTime parser classes and objects" +msgstr "" + +#: gnu/packages/perl.scm:1501 +msgid "" +"DateTime::Format::Builder creates DateTime parsers. Many\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" +"to do this without writing reams of structural code." +msgstr "" + +#: gnu/packages/perl.scm:1528 +msgid "Parse data/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1529 +msgid "" +"DateTime::Format::Flexible attempts to take any string you\n" +"give it and parse it into a DateTime object." +msgstr "" + +#: gnu/packages/perl.scm:1555 +msgid "Parse and format iCal datetime and duration strings" +msgstr "" + +#: gnu/packages/perl.scm:1556 +msgid "" +"This module understands the ICal date/time and duration\n" +"formats, as defined in RFC 2445. It can be used to parse these formats= in\n" +"order to create the appropriate objects." +msgstr "" + +#: gnu/packages/perl.scm:1588 +msgid "Machine-readable date/time with natural parsing" +msgstr "" + +#: gnu/packages/perl.scm:1589 +msgid "" +"DateTime::Format::Natural takes a string with a human\n" +"readable date/time and creates a machine readable one by applying natur= al\n" +"parsing logic." +msgstr "" + +#: gnu/packages/perl.scm:1613 +msgid "Parse and format strp and strf time patterns" +msgstr "" + +#: gnu/packages/perl.scm:1614 +msgid "" +"This module implements most of `strptime(3)`, the POSIX\n" +"function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" +"takes a string and a pattern and returns the `DateTime` object associat= ed." +msgstr "" + +#: gnu/packages/perl.scm:1639 +msgid "Localization support for DateTime.pm" +msgstr "" + +#: gnu/packages/perl.scm:1640 +msgid "" +"The DateTime::Locale modules provide localization data for\n" +"the DateTime.pm class." +msgstr "" + +#: gnu/packages/perl.scm:1667 +msgid "Time zone object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1668 +msgid "" +"This class is the base class for all time zone objects. A\n" +"time zone is represented internally as a set of observances, each of wh= ich\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" +"DateTime module, this module does not do much. It's primary interface = is\n" +"through a DateTime object, and most users will not need to directly use= \n" +"DateTime::TimeZone methods." +msgstr "" + +#: gnu/packages/perl.scm:1698 +msgid "Parse date/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1699 +msgid "" +"DateTimeX::Easy uses a variety of DateTime::Format packages\n" +"to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" +"edges (mainly concerning timezone detection and selection)." +msgstr "" + +#: gnu/packages/perl.scm:1720 +msgid "Meatier version of caller" +msgstr "" + +#: gnu/packages/perl.scm:1721 +msgid "Devel::Caller provides meatier version of caller." +msgstr "" + +#: gnu/packages/perl.scm:1739 +msgid "Check that a command is available" +msgstr "" + +#: gnu/packages/perl.scm:1740 +msgid "" +"Devel::CheckBin is a perl module that checks whether a\n" +"particular command is available." +msgstr "" + +#: gnu/packages/perl.scm:1760 +msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" +msgstr "" + +#: gnu/packages/perl.scm:1761 +msgid "" +"Devel::GlobalDestruction provides a function returning the\n" +"equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." +msgstr "" + +#: gnu/packages/perl.scm:1781 +msgid "Alias lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:1782 +msgid "" +"Devel::LexAlias provides the ability to alias a lexical\n" +"variable in a subroutines scope to one of your choosing." +msgstr "" + +#: gnu/packages/perl.scm:1804 +msgid "Introspect overloaded operators" +msgstr "" + +#: gnu/packages/perl.scm:1805 +msgid "" +"Devel::OverloadInfo returns information about overloaded\n" +"operators for a given class (or object), including where in the inherit= ance\n" +"hierarchy the overloads are declared and where the code implementing it= is." +msgstr "" + +#: gnu/packages/perl.scm:1832 +msgid "Partial dumping of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1833 +msgid "" +"This module is a data dumper optimized for logging of\n" +"arbitrary parameters." +msgstr "" + +#: gnu/packages/perl.scm:1851 +msgid "Object representing a stack trace" +msgstr "" + +#: gnu/packages/perl.scm:1852 +msgid "" +"The Devel::StackTrace module contains two classes,\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" +"information that can be retrieved via Perl's caller() function, as well= as\n" +"providing a simple interface to this data." +msgstr "" + +#: gnu/packages/perl.scm:1874 +msgid "Displays stack trace in HTML" +msgstr "" + +#: gnu/packages/perl.scm:1875 +msgid "" +"Devel::StackTrace::AsHTML adds as_html method to\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" +"snippet context and function parameters. If you call it on an instance= of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" +"each stack frame." +msgstr "" + +#: gnu/packages/perl.scm:1896 +msgid "Dump symbol names or the symbol table" +msgstr "" + +#: gnu/packages/perl.scm:1897 +msgid "Devel::Symdump provides access to the perl symbol table." +msgstr "" + +#: gnu/packages/perl.scm:1914 +msgid "Keyed-Hashing for Message Authentication" +msgstr "" + +#: gnu/packages/perl.scm:1915 +msgid "" +"The Digest::HMAC module follows the common Digest::\n" +"interface for the RFC 2104 HMAC mechanism." +msgstr "" + +#: gnu/packages/perl.scm:1931 +msgid "Perl implementation of the SHA-1 message digest algorithm" +msgstr "" + +#: gnu/packages/perl.scm:1933 +msgid "" +"This package provides 'Digest::SHA1', an implementation of the NIST\n" +"SHA-1 message digest algorithm for use by Perl programs." +msgstr "" + +#: gnu/packages/perl.scm:1955 +msgid "Declare version conflicts for your dist" +msgstr "" + +#: gnu/packages/perl.scm:1956 +msgid "" +"This module allows you to specify conflicting versions of\n" +"modules separately and deal with them after the module is done installi= ng." +msgstr "" + +#: gnu/packages/perl.scm:1974 +msgid "OO-ish Error/Exception handling for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1975 +msgid "" +"The Error package provides two interfaces. Firstly Error\n" +"provides a procedural interface to exception handling. Secondly Error = is a\n" +"base class for errors/exceptions that can either be thrown, for subsequ= ent\n" +"catch, or can simply be recorded." +msgstr "" + +#: gnu/packages/perl.scm:2000 +msgid "Safely and cleanly create closures via string eval" +msgstr "" + +#: gnu/packages/perl.scm:2001 +msgid "" +"String eval is often used for dynamic code generation. For\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" +"them in $@@ instead. This module attempts to solve these problems. It= \n" +"provides an eval_closure function, which evals a string in a clean\n" +"environment, other than a fixed list of specified variables. Compilati= on\n" +"errors are rethrown automatically." +msgstr "" + +#: gnu/packages/perl.scm:2030 +msgid "Allows you to declare real exception classes in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2031 +msgid "" +"Exception::Class allows you to declare exception hierarchies\n" +"in your modules in a \"Java-esque\" manner." +msgstr "" + +#: gnu/packages/perl.scm:2047 +msgid "Lightweight exporting of functions and variables" +msgstr "" + +#: gnu/packages/perl.scm:2049 +msgid "" +"Exporter::Lite is an alternative to Exporter, intended to provide a\n" +"lightweight subset of the most commonly-used functionality. It support= s\n" +"import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." +msgstr "" + +#: gnu/packages/perl.scm:2070 +msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" +msgstr "" + +#: gnu/packages/perl.scm:2071 +msgid "" +"Exporter::Tiny supports many of Sub::Exporter's\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" +"only about 40% as many lines of code and with zero non-core dependencie= s." +msgstr "" + +#: gnu/packages/perl.scm:2094 +msgid "Build.PL install path logic made easy" +msgstr "" + +#: gnu/packages/perl.scm:2095 +msgid "" +"This module tries to make install path resolution as easy as\n" +"possible." +msgstr "" + +#: gnu/packages/perl.scm:2113 +msgid "Wrapper for perl's configuration" +msgstr "" + +#: gnu/packages/perl.scm:2114 +msgid "" +"ExtUtils::Config is an abstraction around the %Config hash.\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" +"it ties together a family of modern toolchain modules." +msgstr "" + +#: gnu/packages/perl.scm:2133 +msgid "Various portability utilities for module builders" +msgstr "" + +#: gnu/packages/perl.scm:2134 +msgid "" +"This module provides various portable helper functions for\n" +"module building modules." +msgstr "" + +#: gnu/packages/perl.scm:2164 +msgid "Watch for changes to files" +msgstr "" + +#: gnu/packages/perl.scm:2165 +msgid "" +"This module provides a class to monitor a directory for\n" +"changes made to any file." +msgstr "" + +#: gnu/packages/perl.scm:2183 +msgid "Recursively copy files and directories" +msgstr "" + +#: gnu/packages/perl.scm:2184 +msgid "" +"This module has 3 functions: one to copy files only, one to\n" +"copy directories only, and one to do either depending on the argument's= \n" +"type." +msgstr "" + +#: gnu/packages/perl.scm:2206 +msgid "Alternative interface to File::Find" +msgstr "" + +#: gnu/packages/perl.scm:2207 +msgid "" +"File::Find::Rule is a friendlier interface to File::Find.\n" +"It allows you to build rules which specify the desired files and\n" +"directories." +msgstr "" + +#: gnu/packages/perl.scm:2230 +msgid "Common rules for searching for Perl things" +msgstr "" + +#: gnu/packages/perl.scm:2231 +msgid "" +"File::Find::Rule::Perl provides methods for finding various\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" +"in various parts of the CPAN ecosystem." +msgstr "" + +#: gnu/packages/perl.scm:2254 +msgid "Find your home and other directories on any platform" +msgstr "" + +#: gnu/packages/perl.scm:2255 +msgid "" +"File::HomeDir is a module for locating the directories that\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" +"that arise trying to find them consistently across a wide variety of\n" +"platforms." +msgstr "" + +#: gnu/packages/perl.scm:2282 +msgid "" +"Perl extension for crawling directory trees and compiling\n" +"lists of files" +msgstr "" + +#: gnu/packages/perl.scm:2285 +msgid "" +"The File::List module crawls the directory tree starting at the\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" +"matching a regular expression." +msgstr "" + +#: gnu/packages/perl.scm:2304 +msgid "Remove files and directories in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2305 +msgid "" +"File::Remove::remove removes files and directories. It acts\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" +"files, it will not remove directories; this module remedies that. It a= lso\n" +"accepts wildcards, * and ?, as arguments for file names." +msgstr "" + +#: gnu/packages/perl.scm:2329 +msgid "Locate per-dist and per-module shared files" +msgstr "" + +#: gnu/packages/perl.scm:2330 +msgid "" +"The intent of File::ShareDir is to provide a companion to\n" +"Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" +"module to have access to a large amount of read-only data that is store= d on\n" +"the file-system at run-time. Once the files have been installed to the= \n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" +"the installation." +msgstr "" + +#: gnu/packages/perl.scm:2352 +msgid "Install shared files" +msgstr "" + +#: gnu/packages/perl.scm:2353 +msgid "" +"File::ShareDir::Install allows you to install read-only data\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" +"allows you to locate these files after installation." +msgstr "" + +#: gnu/packages/perl.scm:2372 +msgid "Reading/Writing/Modifying of complete files" +msgstr "" + +#: gnu/packages/perl.scm:2373 +msgid "" +"File::Slurp provides subroutines to read or write entire\n" +"files with a simple call. It also has a subroutine for reading the lis= t of\n" +"file names in a directory." +msgstr "" + +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 +msgid "Return name and handle of a temporary file safely" +msgstr "" + +#: gnu/packages/perl.scm:2413 +msgid "" +"File::Temp can be used to create and open temporary files in\n" +"a safe way." +msgstr "" + +#: gnu/packages/perl.scm:2430 +msgid "Portable implementation of the `which' utility" +msgstr "" + +#: gnu/packages/perl.scm:2432 +msgid "" +"File::Which was created to be able to get the paths to executable\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" +"shell." +msgstr "" + +#: gnu/packages/perl.scm:2459 +msgid "Getopt::Long, but simpler and more powerful" +msgstr "" + +#: gnu/packages/perl.scm:2460 +msgid "" +"Getopt::Long::Descriptive is yet another Getopt library.\n" +"It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" +"avoid making you think about its huge array of options. It also provid= es\n" +"usage (help) messages, data validation, and a few other useful features= ." +msgstr "" + +#: gnu/packages/perl.scm:2478 +msgid "Table-driven argument parsing for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2480 +msgid "" +"Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " +"vaguely inspired by John Ousterhout's Tk_ParseArgv." +msgstr "" + +#: gnu/packages/perl.scm:2500 +msgid "Merge arbitrarily deep hashes into a single hash" +msgstr "" + +#: gnu/packages/perl.scm:2501 +msgid "" +"Hash::Merge merges two arbitrarily deep hashes into a single\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" +"value conflicts. The hash is followed recursively, so that deeply nest= ed\n" +"hashes that are at the same level will be merged when the parent hashes= are\n" +"merged." +msgstr "" + +#: gnu/packages/perl.scm:2523 +msgid "Store multiple values per key" +msgstr "" + +#: gnu/packages/perl.scm:2524 +msgid "" +"Hash::MultiValue is an object (and a plain hash reference)\n" +"that may contain multiple values per key, inspired by MultiDict of WebO= b." +msgstr "" + +#: gnu/packages/perl.scm:2544 +msgid "Import packages into other packages" +msgstr "" + +#: gnu/packages/perl.scm:2545 +msgid "" +"Writing exporters is a pain. Some use Exporter, some use\n" +"Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" +"exporters don't provide a consistent API for this, and pragmas need to = have\n" +"their import method called directly, since they effect the current unit= of\n" +"compilation. Import::Into provides global methods to make this painles= s." +msgstr "" + +#: gnu/packages/perl.scm:2567 +msgid "Use modules in inc/ if newer than installed" +msgstr "" + +#: gnu/packages/perl.scm:2568 +msgid "" +"The inc::latest module helps bootstrap configure-time\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" +"inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." +msgstr "" + +#: gnu/packages/perl.scm:2587 +msgid "Utilities for interactive I/O" +msgstr "" + +#: gnu/packages/perl.scm:2588 +msgid "" +"This module provides three utility subroutines that make it\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" +"and busy()." +msgstr "" + +#: gnu/packages/perl.scm:2607 +msgid "Emulate file interface for in-core strings" +msgstr "" + +#: gnu/packages/perl.scm:2608 +msgid "" +"IO::String is an IO::File (and IO::Handle) compatible class\n" +"that reads or writes data from in-core strings." +msgstr "" + +#: gnu/packages/perl.scm:2626 +msgid "IO:: interface for reading/writing an array of lines" +msgstr "" + +#: gnu/packages/perl.scm:2627 +msgid "" +"This toolkit primarily provides modules for performing both\n" +"traditional and object-oriented i/o) on things *other* than normal\n" +"filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " +msgstr "" + +#: gnu/packages/perl.scm:2645 +msgid "Perl interface to pseudo ttys" +msgstr "" + +#: gnu/packages/perl.scm:2647 +msgid "" +"This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" +"pseudo ttys." +msgstr "" + +#: gnu/packages/perl.scm:2675 +msgid "Run system() and background procs w/ piping, redirs, ptys" +msgstr "" + +#: gnu/packages/perl.scm:2676 +msgid "" +"IPC::Run allows you run and interact with child processes\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" +"are supported and may be mixed. Likewise, functional and OO API styles= are\n" +"both supported and may be mixed." +msgstr "" + +#: gnu/packages/perl.scm:2694 +msgid "Run a subprocess with input/output redirection" +msgstr "" + +#: gnu/packages/perl.scm:2696 +msgid "" +"The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" +"99% of the need for using system, qx, and open3 with a simple, extremel= y\n" +"Perlish API and none of the bloat and rarely used features of IPC::Run.= " +msgstr "" + +#: gnu/packages/perl.scm:2720 +msgid "Lightweight interface to shared memory" +msgstr "" + +#: gnu/packages/perl.scm:2721 +msgid "" +"IPC::ShareLite provides a simple interface to shared memory,\n" +"allowing data to be efficiently communicated between processes." +msgstr "" + +#: gnu/packages/perl.scm:2741 +msgid "JSON encoder/decoder for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2742 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa using either JSON::XS or JSON::PP." +msgstr "" + +#: gnu/packages/perl.scm:2767 +msgid "Wrapper for Perl JSON classes" +msgstr "" + +#: gnu/packages/perl.scm:2769 +msgid "" +"This module tries to provide a coherent API to bring together the\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" +"any JSON API and have it work regardless of which JSON module is actual= ly\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:2793 +msgid "Cpanel::JSON::XS with fallback" +msgstr "" + +#: gnu/packages/perl.scm:2794 +msgid "" +"This module first checks to see if either Cpanel::JSON::XS\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" +"either uses the first module it finds or throws an error." +msgstr "" + +#: gnu/packages/perl.scm:2817 +msgid "JSON serialising/deserialising for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 +msgid "Combination of List::Util and List::MoreUtils" +msgstr "" + +#: gnu/packages/perl.scm:2890 +msgid "" +"This module exports all of the functions that either\n" +"List::Util or List::MoreUtils defines, with preference to List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2914 +msgid "Provide the stuff missing in List::Util" +msgstr "" + +#: gnu/packages/perl.scm:2915 +msgid "" +"List::MoreUtils provides some trivial but commonly needed\n" +"functionality on lists which is not going to go into List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2933 +msgid "Expiry plug-in for Memoize that adds LRU cache expiration" +msgstr "" + +#: gnu/packages/perl.scm:2934 +msgid "" +"This module implements an expiry policy for Memoize that\n" +"follows LRU semantics, that is, the last n results, where n is specifie= d as\n" +"the argument to the CACHESIZE parameter, will be cached." +msgstr "" + +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 +msgid "Definition of MIME types" +msgstr "" + +#: gnu/packages/perl.scm:2973 +msgid "" +"This module provides a list of known mime-types, combined\n" +"from various sources. For instance, it contains all IANA types and the= \n" +"knowledge of Apache." +msgstr "" + +#: gnu/packages/perl.scm:3002 +msgid "Tiny replacement for Module::Build" +msgstr "" + +#: gnu/packages/perl.scm:3003 +msgid "" +"Many Perl distributions use a Build.PL file instead of a\n" +"Makefile.PL file to drive distribution configuration, build, test and\n= " +"installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" +"build system. This module provides a simple, lightweight, drop-in\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" +"has less than 120, yet supports the features needed by most distributio= ns." +msgstr "" + +#: gnu/packages/perl.scm:3025 +msgid "Find and use installed modules in a (sub)category" +msgstr "" + +#: gnu/packages/perl.scm:3026 +msgid "" +"Module::Find lets you find and use modules in categories.\n" +"This can be useful for auto-detecting driver or plugin modules. You ca= n\n" +"differentiate between looking in the category itself or in all\n" +"subcategories." +msgstr "" + +#: gnu/packages/perl.scm:3052 +msgid "Loads alternate underlying implementations for a module" +msgstr "" + +#: gnu/packages/perl.scm:3053 +msgid "" +"This module abstracts out the process of choosing one of\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" +"implementations." +msgstr "" + +#: gnu/packages/perl.scm:3091 +msgid "Standalone, extensible Perl module installer" +msgstr "" + +#: gnu/packages/perl.scm:3092 +msgid "" +"Module::Install is a package for writing installers for\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" +"strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" +"installation version 5.005 or newer." +msgstr "" + +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 +msgid "Perl runtime module handling" +msgstr "" + +#: gnu/packages/perl.scm:3134 +msgid "" +"The functions exported by this module deal with runtime\n" +"handling of Perl modules, which are normally handled at compile time." +msgstr "" + +#: gnu/packages/perl.scm:3157 +msgid "Provide information on conflicts for Module::Runtime" +msgstr "" + +#: gnu/packages/perl.scm:3158 +msgid "" +"This module provides conflicts checking for Module::Runtime,\n" +"which had a recent release that broke some versions of Moose. It is ca= lled\n" +"from Moose::Conflicts and moose-outdated." +msgstr "" + +#: gnu/packages/perl.scm:3179 +msgid "Recursively scan Perl code for dependencies" +msgstr "" + +#: gnu/packages/perl.scm:3180 +msgid "" +"Module::ScanDeps is a module to recursively scan Perl\n" +"programs for dependencies." +msgstr "" + +#: gnu/packages/perl.scm:3200 +msgid "Module name tools and transformations" +msgstr "" + +#: gnu/packages/perl.scm:3201 +msgid "" +"This module provides a few useful functions for manipulating\n" +"module names. Its main aim is to centralise some of the functions comm= only\n" +"used by modules that manipulate other modules in some way, like convert= ing\n" +"module names to relative paths." +msgstr "" + +#: gnu/packages/perl.scm:3231 +msgid "Minimalist Object Orientation (with Moose compatibility)" +msgstr "" + +#: gnu/packages/perl.scm:3232 +msgid "" +"Moo is an extremely light-weight Object Orientation system.\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" +"that avoids the details of Perl's object system. Moo contains a subset= of\n" +"Moose and is optimised for rapid startup." +msgstr "" + +#: gnu/packages/perl.scm:3308 +msgid "Postmodern object system for Perl 5" +msgstr "" + +#: gnu/packages/perl.scm:3310 +msgid "" +"Moose is a complete object system for Perl 5. It provides keywords for= \n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" +"Moose, you define your class declaratively, without needing to know abo= ut\n" +"blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" +"A class definition with Moose reads like a list of very concise English= \n" +"sentences." +msgstr "" + +#: gnu/packages/perl.scm:3338 +msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" +msgstr "" + +#: gnu/packages/perl.scm:3339 +msgid "" +"This module attempts to emulate the behavior of\n" +"Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" +"private methods are not." +msgstr "" + +#: gnu/packages/perl.scm:3371 +msgid "Moose role for processing command line options" +msgstr "" + +#: gnu/packages/perl.scm:3372 +msgid "" +"This is a Moose role which provides an alternate constructor\n" +"for creating objects using parameters passed in from the command line." +msgstr "" + +#: gnu/packages/perl.scm:3393 +msgid "Mark overload code symbols as methods" +msgstr "" + +#: gnu/packages/perl.scm:3394 +msgid "" +"MooseX::MarkAsMethods allows one to easily mark certain\n" +"functions as Moose methods. This will allow other packages such as\n" +"namespace::autoclean to operate without blowing away your overloads. A= fter\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" +"being methods, and class extension as well as composition from roles wi= th\n" +"overloads will \"just work\"." +msgstr "" + +#: gnu/packages/perl.scm:3424 +msgid "Code attribute introspection" +msgstr "" + +#: gnu/packages/perl.scm:3425 +msgid "" +"This module allows code attributes of methods to be\n" +"introspected using Moose meta method objects." +msgstr "" + +#: gnu/packages/perl.scm:3451 +msgid "Subclassing of non-Moose classes" +msgstr "" + +#: gnu/packages/perl.scm:3452 +msgid "" +"MooseX::NonMoose allows for easily subclassing non-Moose\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" +"as setting up proper inheritance from Moose::Object and installing (and= \n" +"inlining, at make_immutable time) a constructor that makes sure things = like\n" +"BUILD methods are called. It tries to be as non-intrusive as possible.= " +msgstr "" + +#: gnu/packages/perl.scm:3481 +msgid "Extension of Params::Validate using Moose's types" +msgstr "" + +#: gnu/packages/perl.scm:3482 +msgid "" +"This module fills a gap in Moose by adding method parameter\n" +"validation to Moose." +msgstr "" + +#: gnu/packages/perl.scm:3503 +msgid "Apply roles to a related Perl class" +msgstr "" + +#: gnu/packages/perl.scm:3504 +msgid "" +"This module applies roles to make a subclass instead of\n" +"manually setting up a subclass." +msgstr "" + +#: gnu/packages/perl.scm:3531 +msgid "Moose roles with composition parameters" +msgstr "" + +#: gnu/packages/perl.scm:3532 +msgid "" +"Because Moose roles serve many different masters, they\n" +"usually provide only the least common denominator of functionality. To= \n" +"empower roles further, more configurability than -alias and -excludes i= s\n" +"required. Perhaps your role needs to know which method to call when it= is\n" +"done processing, or what default value to use for its url attribute.\n" +"Parameterized roles offer a solution to these (and other) kinds of prob= lems." +msgstr "" + +#: gnu/packages/perl.scm:3558 +msgid "Roles which support overloading" +msgstr "" + +#: gnu/packages/perl.scm:3559 +msgid "" +"MooseX::Role::WithOverloading allows you to write a\n" +"Moose::Role which defines overloaded operators and allows those overloa= d\n" +"methods to be composed into the classes/roles/instances it's compiled t= o,\n" +"where plain Moose::Roles would lose the overloading." +msgstr "" + +#: gnu/packages/perl.scm:3581 +msgid "Name your accessors foo() and set_foo()" +msgstr "" + +#: gnu/packages/perl.scm:3582 +msgid "" +"This module does not provide any methods. Simply loading it\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" +"accessor, while set methods are prefixed with \"_set_\"." +msgstr "" + +#: gnu/packages/perl.scm:3608 +msgid "Strict object constructors for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3609 +msgid "" +"Simply loading this module makes your constructors\n" +"\"strict\". If your constructor is called with an attribute init argum= ent\n" +"that your class does not declare, then it calls Moose->throw_error()." +msgstr "" + +#: gnu/packages/perl.scm:3637 +msgid "Trait loading and resolution for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3638 +msgid "" +"Adds support on top of MooseX::Traits for class precedence\n" +"search for traits and some extra attributes." +msgstr "" + +#: gnu/packages/perl.scm:3664 +msgid "Organise your Moose types in libraries" +msgstr "" + +#: gnu/packages/perl.scm:3665 +msgid "" +"This package lets you declare types using short names, but\n" +"behind the scenes it namespaces all your type declarations, effectively= \n" +"prevent name clashes between packages." +msgstr "" + +#: gnu/packages/perl.scm:3696 +msgid "DateTime related constraints and coercions for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3697 +msgid "" +"This module packages several Moose::Util::TypeConstraints\n" +"with coercions, designed to work with the DateTime suite of objects." +msgstr "" + +#: gnu/packages/perl.scm:3729 +msgid "Extensions to MooseX::Types::DateTime" +msgstr "" + +#: gnu/packages/perl.scm:3730 +msgid "" +"This module builds on MooseX::Types::DateTime to add\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" +"all coercions and constraints are inherited." +msgstr "" + +#: gnu/packages/perl.scm:3759 +msgid "ClassName type constraints for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3760 +msgid "" +"MooseX::Types::LoadableClass provides a ClassName type\n" +"constraint with coercion to load the class." +msgstr "" + +#: gnu/packages/perl.scm:3784 +msgid "Moosish types and type builder" +msgstr "" + +#: gnu/packages/perl.scm:3785 +msgid "" +"MooX::Types::MooseLike provides a possibility to build your\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" +"fields in Moo-based classes." +msgstr "" + +#: gnu/packages/perl.scm:3804 +msgid "MRO interface compatibility for Perls < 5.9.5" +msgstr "" + +#: gnu/packages/perl.scm:3805 +msgid "" +"The \"mro\" namespace provides several utilities for dealing\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" +"higher. This module provides those interfaces for earlier versions of\= n" +"Perl (back to 5.6.0)." +msgstr "" + +#: gnu/packages/perl.scm:3832 +msgid "Keep imports out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3833 +msgid "" +"The namespace::autoclean pragma will remove all imported\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" +"up as methods on your class or instances. It is very similar to\n" +"namespace::clean, except it will clean all imported functions, no matte= r if\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" +"anything that looks like a method." +msgstr "" + +#: gnu/packages/perl.scm:3859 +msgid "Keep imports and functions out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3860 +msgid "" +"The namespace::clean pragma will remove all previously\n" +"declared or imported symbols at the end of the current package's compil= e\n" +"cycle. Functions called in the package itself will still be bound by t= heir\n" +"name, but they won't show up as methods on your class or instances." +msgstr "" + +#: gnu/packages/perl.scm:3880 +msgid "Numeric comparisons" +msgstr "" + +#: gnu/packages/perl.scm:3881 +msgid "" +"Number::Compare compiles a simple comparison to an anonymous\n" +"subroutine, which you can call with a value to be tested against." +msgstr "" + +#: gnu/packages/perl.scm:3899 +msgid "Generate cryptographic signatures for objects" +msgstr "" + +#: gnu/packages/perl.scm:3900 +msgid "" +"Object::Signature is an abstract base class that you can\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" +"signatures." +msgstr "" + +#: gnu/packages/perl.scm:3922 +msgid "Anonymous packages" +msgstr "" + +#: gnu/packages/perl.scm:3923 +msgid "" +"This module allows for anonymous packages that are\n" +"independent of the main namespace and only available through an object\= n" +"instance, not by name." +msgstr "" + +#: gnu/packages/perl.scm:3951 +msgid "Manage deprecation warnings for your distribution" +msgstr "" + +#: gnu/packages/perl.scm:3952 +msgid "" +"This module allows you to manage a set of deprecations for\n" +"one or more modules." +msgstr "" + +#: gnu/packages/perl.scm:3979 +msgid "Routines for manipulating stashes" +msgstr "" + +#: gnu/packages/perl.scm:3980 +msgid "" +"Manipulating stashes (Perl's symbol tables) is occasionally\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" +"of that behind a simple API." +msgstr "" + +#: gnu/packages/perl.scm:4003 +msgid "Faster implementation of the Package::Stash API" +msgstr "" + +#: gnu/packages/perl.scm:4004 +msgid "" +"This is a backend for Package::Stash, which provides the\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" +"compiler." +msgstr "" + +#: gnu/packages/perl.scm:4024 +msgid "Play with other peoples' lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:4025 +msgid "" +"PadWalker is a module which allows you to inspect (and even\n" +"change) lexical variables in any subroutine which called you. It will = only\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" +"is particularly useful for debugging." +msgstr "" + +#: gnu/packages/perl.scm:4046 +msgid "Simple, compact and correct param-checking functions" +msgstr "" + +#: gnu/packages/perl.scm:4048 +msgid "" +"Params::Util provides a basic set of importable functions that makes\n" +"checking parameters easier." +msgstr "" + +#: gnu/packages/perl.scm:4072 +msgid "Validate method/function parameters" +msgstr "" + +#: gnu/packages/perl.scm:4073 +msgid "" +"The Params::Validate module allows you to validate method or\n" +"function call parameters to an arbitrary level of specificity." +msgstr "" + +#: gnu/packages/perl.scm:4091 +msgid "Create and manipulate PAR distributions" +msgstr "" + +#: gnu/packages/perl.scm:4092 +msgid "" +"PAR::Dist is a toolkit to create and manipulate PAR\n" +"distributions." +msgstr "" + +#: gnu/packages/perl.scm:4111 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time." +msgstr "" + +#: gnu/packages/perl.scm:4130 +msgid "Path specification manipulation" +msgstr "" + +#: gnu/packages/perl.scm:4131 +msgid "" +"Path::Class is a module for manipulation of file and\n" +"directory specifications in a cross-platform manner." +msgstr "" + +#: gnu/packages/perl.scm:4151 +msgid "Check for comprehensive documentation of a module" +msgstr "" + +#: gnu/packages/perl.scm:4152 +msgid "" +"This module provides a mechanism for determining if the pod\n" +"for a given module is comprehensive." +msgstr "" + +#: gnu/packages/perl.scm:4169 +msgid "Parsing library for text in Pod format" +msgstr "" + +#: gnu/packages/perl.scm:4170 +msgid "" +"Pod::Simple is a Perl library for parsing text in\n" +"the Pod (plain old documentation) markup language that is typically\n" +"used for writing documentation for Perl and for Perl modules." +msgstr "" + +#: gnu/packages/perl.scm:4191 +msgid "GNU C library compatible strftime for loggers and servers" +msgstr "" + +#: gnu/packages/perl.scm:4192 +msgid "" +"POSIX::strftime::Compiler provides GNU C library compatible\n" +"strftime(3). But this module is not affected by the system locale. Th= is\n" +"feature is useful when you want to write loggers, servers, and portable= \n" +"applications." +msgstr "" + +#: gnu/packages/perl.scm:4210 +msgid "Information about the currently running perl" +msgstr "" + +#: gnu/packages/perl.scm:4212 +msgid "" +"Probe::Perl provides methods for obtaining information about the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" +"Module::Build project, but has been externalized here for general use." +msgstr "" + +#: gnu/packages/perl.scm:4234 +msgid "Create read-only scalars, arrays, hashes" +msgstr "" + +#: gnu/packages/perl.scm:4235 +msgid "" +"This module provides a facility for creating non-modifiable\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" +"variables that should not be changed." +msgstr "" + +#: gnu/packages/perl.scm:4253 +msgid "Provide commonly requested regular expressions" +msgstr "" + +#: gnu/packages/perl.scm:4255 +msgid "" +"This module exports a single hash (`%RE') that stores or generates\n" +"commonly needed regular expressions. Patterns currently provided inclu= de:\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" +"floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" +"offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" +"codes." +msgstr "" + +#: gnu/packages/perl.scm:4285 +msgid "Roles, as a slice of Moose" +msgstr "" + +#: gnu/packages/perl.scm:4286 +msgid "Role::Tiny is a minimalist role composition tool." +msgstr "" + +#: gnu/packages/perl.scm:4303 +msgid "Call isa, can, does, and DOES safely" +msgstr "" + +#: gnu/packages/perl.scm:4304 +msgid "" +"This module allows you to call isa, can, does, and DOES\n" +"safely on things that may not be objects." +msgstr "" + +#: gnu/packages/perl.scm:4322 +msgid "Lexically-scoped resource management" +msgstr "" + +#: gnu/packages/perl.scm:4323 +msgid "" +"This module provides a convenient way to perform cleanup or\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" +"useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" +"\"promises\" to be made that are automatically honoured by perl's garba= ge\n" +"collector." +msgstr "" + +#: gnu/packages/perl.scm:4346 +msgid "Infinite sets" +msgstr "" + +#: gnu/packages/perl.scm:4347 +msgid "Set::Infinite is a set theory module for infinite sets." +msgstr "" + +#: gnu/packages/perl.scm:4367 +msgid "Unordered collections of Perl Objects" +msgstr "" + +#: gnu/packages/perl.scm:4368 +msgid "" +"Set::Object provides efficient sets, unordered collections\n" +"of Perl objects without duplicates for scalars and references." +msgstr "" + +#: gnu/packages/perl.scm:4386 +msgid "Set operations for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4387 +msgid "" +"The first priority of Set::Scalar is to be a convenient\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" +"designed to be slow or big, neither has it been designed to be fast or\= n" +"compact." +msgstr "" + +#: gnu/packages/perl.scm:4407 +msgid "Spiffy Perl Interface Framework For You" +msgstr "" + +#: gnu/packages/perl.scm:4408 +msgid "" +"Spiffy is a framework and methodology for doing object\n" +"oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" +"other OO languages like Python, Ruby, Java and Perl 6." +msgstr "" + +#: gnu/packages/perl.scm:4430 +msgid "Temporary buffer to save bytes" +msgstr "" + +#: gnu/packages/perl.scm:4431 +msgid "" +"Stream::Buffered is a buffer class to store arbitrary length\n" +"of byte strings and then get a seekable filehandle once everything is\n= " +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" +"on the length of the size." +msgstr "" + +#: gnu/packages/perl.scm:4451 +msgid "Turn on strict and make all warnings fatal" +msgstr "" + +#: gnu/packages/perl.scm:4452 +msgid "" +"Strictures turns on strict and make all warnings fatal when\n" +"run from within a source-controlled directory." +msgstr "" + +#: gnu/packages/perl.scm:4470 +msgid "Camelcase and de-camelcase" +msgstr "" + +#: gnu/packages/perl.scm:4471 +msgid "" +"This module may be used to convert from under_score text to\n" +"CamelCase and back again." +msgstr "" + +#: gnu/packages/perl.scm:4491 +msgid "Rewrite strings based on a set of known prefixes" +msgstr "" + +#: gnu/packages/perl.scm:4492 +msgid "" +"This module allows you to rewrite strings based on a set of\n" +"known prefixes." +msgstr "" + +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 +msgid "Sophisticated exporter for custom-built routines" +msgstr "" + +#: gnu/packages/perl.scm:4538 +msgid "" +"Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " +"custom-built routines." +msgstr "" + +#: gnu/packages/perl.scm:4557 +msgid "Only use Sub::Exporter if you need it" +msgstr "" + +#: gnu/packages/perl.scm:4558 +msgid "" +"Sub::Exporter is an incredibly powerful module, but with\n" +"that power comes great responsibility, as well as some runtime penaltie= s.\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" +"if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" +"renaming exports, if they try to use them." +msgstr "" + +#: gnu/packages/perl.scm:4580 +msgid "Retrieve names of code references" +msgstr "" + +#: gnu/packages/perl.scm:4581 +msgid "" +"Sub::Identify allows you to retrieve the real name of code\n" +"references." +msgstr "" + +#: gnu/packages/perl.scm:4600 +msgid "Install subroutines into packages easily" +msgstr "" + +#: gnu/packages/perl.scm:4602 +msgid "" +"Sub::Install makes it easy to install subroutines into packages without= \n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" +"can see them." +msgstr "" + +#: gnu/packages/perl.scm:4623 +msgid "(Re)name a sub" +msgstr "" + +#: gnu/packages/perl.scm:4624 +msgid "" +"Assigns a new name to referenced sub. If package\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" +"return value is the sub." +msgstr "" + +#: gnu/packages/perl.scm:4643 +msgid "Apparently run a function in a higher stack frame" +msgstr "" + +#: gnu/packages/perl.scm:4644 +msgid "" +"Like Tcl's uplevel() function, but not quite so dangerous.\n" +"The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" +"uplevel() are avoided." +msgstr "" + +#: gnu/packages/perl.scm:4663 +msgid "Perl extension for generating SVG documents" +msgstr "" + +#: gnu/packages/perl.scm:4664 +msgid "" +"SVG is a Perl module which generates a nested data structure\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" +"Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" +"access the DOM object, create and access Javascript, and generate SMIL\= n" +"animation content." +msgstr "" + +#: gnu/packages/perl.scm:4683 +msgid "Perl extension for getting CPU information" +msgstr "" + +#: gnu/packages/perl.scm:4685 +msgid "" +"In responce to a post on perlmonks.org, a module for counting the numbe= r\n" +"of CPU's on a system. Support has now also been added for type of CPU = and\n" +"clock speed." +msgstr "" + +#: gnu/packages/perl.scm:4707 +msgid "Get full hostname in Perl" +msgstr "" + +#: gnu/packages/perl.scm:4708 +msgid "" +"Sys::Hostname::Long tries very hard to get the full hostname\n" +"of a system." +msgstr "" + +#: gnu/packages/perl.scm:4726 +msgid "Ensure that a platform has weaken support" +msgstr "" + +#: gnu/packages/perl.scm:4727 +msgid "" +"One recurring problem in modules that use Scalar::Util's\n" +"weaken function is that it is not present in the pure-perl variant. If= \n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" +"error encouraging the user to seek support." +msgstr "" + +#: gnu/packages/perl.scm:4752 +msgid "Template processing system for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4753 +msgid "" +"The Template Toolkit is a collection of modules which\n" +"implement an extensible template processing system. It was originally\= n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" +"it can be used equally well for processing any other kind of text based= \n" +"documents: HTML, XML, POD, PostScript, LaTeX, and so on." +msgstr "" + +#: gnu/packages/perl.scm:4776 +msgid "Profiling for Template Toolkit" +msgstr "" + +#: gnu/packages/perl.scm:4777 +msgid "" +"Template::Timer provides inline profiling of the template\n" +"processing in Perl code." +msgstr "" + +#: gnu/packages/perl.scm:4795 +msgid "Detect encoding of the current terminal" +msgstr "" + +#: gnu/packages/perl.scm:4796 +msgid "" +"Term::Encoding is a simple module to detect the encoding of\n" +"the current terminal expects in various ways." +msgstr "" + +#: gnu/packages/perl.scm:4820 +msgid "Progress meter on a standard terminal" +msgstr "" + +#: gnu/packages/perl.scm:4821 +msgid "" +"Term::ProgressBar provides a simple progress bar on the\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" +"stuff has been done, and maybe an estimate at how long remains." +msgstr "" + +#: gnu/packages/perl.scm:4844 +msgid "Progress meter if run interactively" +msgstr "" + +#: gnu/packages/perl.scm:4845 +msgid "" +"Term::ProgressBar is a wonderful module for showing progress\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" +"a cron job) then it does not show the progress bar." +msgstr "" + +#: gnu/packages/perl.scm:4867 +msgid "Simple progress bars" +msgstr "" + +#: gnu/packages/perl.scm:4868 +msgid "" +"Term::ProgressBar::Simple tells you how much work has been\n" +"done, how much is left to do, and estimate how long it will take." +msgstr "" + +#: gnu/packages/perl.scm:4886 +msgid "Simple terminal control" +msgstr "" + +#: gnu/packages/perl.scm:4887 +msgid "" +"This module, ReadKey, provides ioctl control for terminals\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" +"other terminal related features, including retrieval/modification of th= e\n" +"screen size, and retrieval/modification of the control characters." +msgstr "" + +#: gnu/packages/perl.scm:4914 +msgid "Data-driven testing framework for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4915 +msgid "" +"Test::Base gives a way to trivially write your own test\n" +"framework base class. It concentrates on offering reusable data driven= \n" +"patterns, so that you can write tests with a minimum of code." +msgstr "" + +#: gnu/packages/perl.scm:4946 +msgid "Check for uncleaned imports" +msgstr "" + +#: gnu/packages/perl.scm:4947 +msgid "" +"This module lets you check your module's namespaces for\n" +"imported functions you might have forgotten to remove with\n" +"namespace::autoclean or namespace::clean and are therefore available to= be\n" +"called as methods, which usually isn't want you want." +msgstr "" + +#: gnu/packages/perl.scm:4967 +msgid "Flexible deep comparison for the Test::Builder framework" +msgstr "" + +#: gnu/packages/perl.scm:4969 +msgid "" +"Test::Deep compares two structures by going through each level, ensurin= g\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" +"structures without getting caught in an infinite loop." +msgstr "" + +#: gnu/packages/perl.scm:4996 +msgid "Test strings and data structures and show differences" +msgstr "" + +#: gnu/packages/perl.scm:4997 +msgid "" +"This module exports three test functions and four diff-style\n" +"functions." +msgstr "" + +#: gnu/packages/perl.scm:5018 +msgid "Perl extension for maintaining test directories" +msgstr "" + +#: gnu/packages/perl.scm:5019 +msgid "" +"Testing code can involve making sure that files are created\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" +"to forget a file, or miss that some unexpected file was added. This mo= dule\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" +"modified or tested with this API, making it simple to test both individ= ual\n" +"files, as well as to verify that there are no missing or unknown files.= " +msgstr "" + +#: gnu/packages/perl.scm:5045 +msgid "Test exception based code" +msgstr "" + +#: gnu/packages/perl.scm:5046 +msgid "" +"This module provides a few convenience methods for testing\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" +"Test::More and friends." +msgstr "" + +#: gnu/packages/perl.scm:5066 +msgid "Simple helpers for testing code with exceptions" +msgstr "" + +#: gnu/packages/perl.scm:5067 +msgid "" +"Test::Fatal is an alternative to the popular\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" +"testing exception-throwing code with about the same amount of typing." +msgstr "" + +#: gnu/packages/perl.scm:5097 +msgid "Run Perl standard test scripts with statistics" +msgstr "" + +#: gnu/packages/perl.scm:5098 +msgid "" +"Simple test harness which allows tests to be run and results\n" +"automatically aggregated and output to STDOUT." +msgstr "" + +#: gnu/packages/perl.scm:5116 +msgid "Traces memory leaks in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5117 +msgid "" +"Test::LeakTrace provides several functions that trace memory\n" +"leaks. This module scans arenas, the memory allocation system, so it c= an\n" +"detect any leaked SVs in given blocks." +msgstr "" + +#: gnu/packages/perl.scm:5136 +msgid "Tests strings for equality, with more helpful failures" +msgstr "" + +#: gnu/packages/perl.scm:5137 +msgid "" +"This module provides some drop-in replacements for the\n" +"string comparison functions of Test::More, but which are more suitable = when\n" +"you test against long strings." +msgstr "" + +#: gnu/packages/perl.scm:5165 +msgid "Emulate troublesome interfaces in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5166 +msgid "" +"Test::MockObject allows you to create objects that conform\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" +"the behavior, just the input and the output." +msgstr "" + +#: gnu/packages/perl.scm:5185 +msgid "Replaces actual time with simulated time" +msgstr "" + +#: gnu/packages/perl.scm:5186 +msgid "" +"This module was created to enable test suites to test code\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" +"time at compile time and then relies on the user supplying a mock time = via\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" +"to gmtime,time or localtime." +msgstr "" + +#: gnu/packages/perl.scm:5213 +msgid "Most commonly needed test functions and features" +msgstr "" + +#: gnu/packages/perl.scm:5214 +msgid "" +"This module provides the most commonly used testing\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" +"bit more fine-grained control over test suites." +msgstr "" + +#: gnu/packages/perl.scm:5232 +msgid "Ensure no warnings are produced while testing" +msgstr "" + +#: gnu/packages/perl.scm:5234 +msgid "" +"This modules causes any warnings during testing to be captured and\n" +"stored. It automatically adds an extra test that will run when your sc= ript\n" +"ends to check that there were no warnings. If there were any warnings,= the\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" +"including a stack trace of what was going on when it occurred." +msgstr "" + +#: gnu/packages/perl.scm:5259 +msgid "Utilities to test STDOUT and STDERR messages" +msgstr "" + +#: gnu/packages/perl.scm:5261 +msgid "" +"Test::Output provides a simple interface for testing output sent to\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" +"as flexible as possible to the tester." +msgstr "" + +#: gnu/packages/perl.scm:5283 +msgid "Check for POD errors in files" +msgstr "" + +#: gnu/packages/perl.scm:5284 +msgid "" +"Check POD files for errors or warnings in a test file, using\n" +"Pod::Simple to do the heavy lifting." +msgstr "" + +#: gnu/packages/perl.scm:5304 +msgid "Check for pod coverage" +msgstr "" + +#: gnu/packages/perl.scm:5305 +msgid "" +"This module adds a test to your Perl distribution which\n" +"checks for pod coverage of all appropriate files." +msgstr "" + +#: gnu/packages/perl.scm:5323 +msgid "Checks to see if the module can be loaded" +msgstr "" + +#: gnu/packages/perl.scm:5324 +msgid "" +"Test::Requires checks to see if the module can be loaded.\n" +"If this fails, then rather than failing tests this skips all tests." +msgstr "" + +#: gnu/packages/perl.scm:5343 +msgid "Basic cross-platform tests for scripts" +msgstr "" + +#: gnu/packages/perl.scm:5345 +msgid "" +"The intent of the Test::Script module is to provide a series of basic\n= " +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" +"bin as is also commonly used) paths of your Perl distribution." +msgstr "" + +#: gnu/packages/perl.scm:5368 +msgid "Fork test in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5369 +msgid "" +"Test::SharedFork is a utility module for Test::Builder. It\n" +"makes fork(2) safe to use in test cases." +msgstr "" + +#: gnu/packages/perl.scm:5385 +msgid "Basic utilities for writing tests" +msgstr "" + +#: gnu/packages/perl.scm:5387 +msgid "Test::Simple contains basic utilities for writing tests." +msgstr "" + +#: gnu/packages/perl.scm:5404 +msgid "Simplify running Test::Builder tests" +msgstr "" + +#: gnu/packages/perl.scm:5406 +msgid "" +"Test::Tester allows testing of test modules based on Test::Builder with= \n" +"a minimum of effort." +msgstr "" + +#: gnu/packages/perl.scm:5432 +msgid "Trap exit codes, exceptions, output, etc." +msgstr "" + +#: gnu/packages/perl.scm:5433 +msgid "" +"This module is primarily (but not exclusively) for use in\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" +"from boxed blocks of test code." +msgstr "" + +#: gnu/packages/perl.scm:5453 +msgid "UTF-8 testing in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5454 +msgid "" +"This module is a collection of tests useful for dealing with\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" +"will check that string has a given set of characteristics." +msgstr "" + +#: gnu/packages/perl.scm:5476 +msgid "Perl extension to test methods for warnings" +msgstr "" + +#: gnu/packages/perl.scm:5477 +msgid "" +"This module provides a few convenience methods for testing\n" +"warning based code." +msgstr "" + +#: gnu/packages/perl.scm:5495 +msgid "Test for warnings and the lack of them" +msgstr "" + +#: gnu/packages/perl.scm:5496 +msgid "" +"This module is intended to be used as a drop-in replacement\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" +"done_testing calculates the test count, rather than after. It does thi= s by\n" +"hooking into done_testing as well as via an END block. You can declare= a\n" +"plan, or not, and things will still Just Work." +msgstr "" + +#: gnu/packages/perl.scm:5517 +msgid "Test fallback behaviour in absence of modules" +msgstr "" + +#: gnu/packages/perl.scm:5518 +msgid "" +"This module allows you to deliberately hide modules from a\n" +"program even though they are installed. This is mostly useful for test= ing\n" +"modules that have a fallback when a certain dependency module is not\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:5545 +msgid "Dynamic generation of tests" +msgstr "" + +#: gnu/packages/perl.scm:5546 +msgid "" +"The Test::WriteVariants module provides for the dynamic\n" +"generation of tests in nested combinations of contexts." +msgstr "" + +#: gnu/packages/perl.scm:5566 +msgid "Testing module for YAML implementations" +msgstr "" + +#: gnu/packages/perl.scm:5567 +msgid "" +"Test::YAML is a subclass of Test::Base with YAML specific\n" +"support." +msgstr "" + +#: gnu/packages/perl.scm:5586 +msgid "Align text" +msgstr "" + +#: gnu/packages/perl.scm:5587 +msgid "" +"Text::Aligner exports a single function, align(), which is\n" +"used to justify strings to various alignment styles." +msgstr "" + +#: gnu/packages/perl.scm:5605 +msgid "Extract delimited text sequences from strings" +msgstr "" + +#: gnu/packages/perl.scm:5606 +msgid "" +"The Text::Balanced module can be used to extract delimited\n" +"text sequences from strings." +msgstr "" + +#: gnu/packages/perl.scm:5624 +msgid "Manipulate comma-separated values" +msgstr "" + +#: gnu/packages/perl.scm:5625 +msgid "" +"Text::CSV provides facilities for the composition and\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" +"can combine fields into a CSV string and parse a CSV string into fields= ." +msgstr "" + +#: gnu/packages/perl.scm:5646 +msgid "Perform diffs on files and record sets" +msgstr "" + +#: gnu/packages/perl.scm:5647 +msgid "" +"Text::Diff provides a basic set of services akin to the GNU\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" +"is better integrated with Perl and available on all platforms. It is o= ften\n" +"faster than shelling out to a system's diff executable for small files,= and\n" +"generally slower on larger files." +msgstr "" + +#: gnu/packages/perl.scm:5669 +msgid "Match globbing patterns against text" +msgstr "" + +#: gnu/packages/perl.scm:5670 +msgid "" +"Text::Glob implements glob(3) style matching that can be\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" +"you want to do full file globbing use the File::Glob module instead." +msgstr "" + +#: gnu/packages/perl.scm:5689 +msgid "Simple ASCII tables" +msgstr "" + +#: gnu/packages/perl.scm:5690 +msgid "Text::SimpleTable draws simple ASCII tables." +msgstr "" + +#: gnu/packages/perl.scm:5711 +msgid "Organize Data in Tables" +msgstr "" + +#: gnu/packages/perl.scm:5712 +msgid "Text::Table renders plaintext tables." +msgstr "" + +#: gnu/packages/perl.scm:5729 +msgid "Provide plain ASCII transliterations of Unicode text" +msgstr "" + +#: gnu/packages/perl.scm:5730 +msgid "" +"Text::Unidecode provides a function, unidecode(...) that\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" +"is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" +"letters, the pronunciation expressed by the text in some other writing\= n" +"system." +msgstr "" + +#: gnu/packages/perl.scm:5758 +msgid "Role for classes that can be thrown" +msgstr "" + +#: gnu/packages/perl.scm:5759 +msgid "" +"Throwable is a role for classes that are meant to be thrown\n" +"as exceptions to standard program flow." +msgstr "" + +#: gnu/packages/perl.scm:5778 +msgid "Ordered associative arrays for Perl" +msgstr "" + +#: gnu/packages/perl.scm:5779 +msgid "" +"This Perl module implements Perl hashes that preserve the\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" +"can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" +"operations can also be performed on the IxHash." +msgstr "" + +#: gnu/packages/perl.scm:5802 +msgid "Tie to an existing Perl object" +msgstr "" + +#: gnu/packages/perl.scm:5803 +msgid "" +"This class provides a tie constructor that returns the\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" +"$object->TIEHASH are avoided." +msgstr "" + +#: gnu/packages/perl.scm:5825 +msgid "English expression of durations" +msgstr "" + +#: gnu/packages/perl.scm:5826 +msgid "" +"This module provides functions for expressing durations in\n" +"rounded or exact terms." +msgstr "" + +#: gnu/packages/perl.scm:5848 +msgid "Parse time duration strings" +msgstr "" + +#: gnu/packages/perl.scm:5849 +msgid "" +"Time::Duration::Parse is a module to parse human readable\n" +"duration strings like \"2 minutes\" and \"3 seconds\" to seconds." +msgstr "" + +#: gnu/packages/perl.scm:5867 +msgid "Efficiently compute time from local and GMT time" +msgstr "" + +#: gnu/packages/perl.scm:5868 +msgid "" +"This module provides functions that are the inverse of\n" +"built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" +"the system epoch." +msgstr "" + +#: gnu/packages/perl.scm:5888 +msgid "Date parsing/formatting subroutines" +msgstr "" + +#: gnu/packages/perl.scm:5889 +msgid "" +"This module provides routines for parsing date string into\n" +"time values and formatting dates into ASCII strings." +msgstr "" + +#: gnu/packages/perl.scm:5911 +msgid "Shift and scale time" +msgstr "" + +#: gnu/packages/perl.scm:5912 +msgid "" +"This module allows you to speed up your sleep(), alarm(),\n" +"and time() calls." +msgstr "" + +#: gnu/packages/perl.scm:5935 +msgid "Simple tree object" +msgstr "" + +#: gnu/packages/perl.scm:5936 +msgid "" +"This module in a fully object-oriented implementation of a\n" +"simple n-ary tree." +msgstr "" + +#: gnu/packages/perl.scm:5960 +msgid "Factory object for dispensing Visitor objects" +msgstr "" + +#: gnu/packages/perl.scm:5961 +msgid "" +"This module is a factory for dispensing\n" +"Tree::Simple::Visitor::* objects." +msgstr "" + +#: gnu/packages/perl.scm:5979 +msgid "Minimal try/catch with proper preservation of $@" +msgstr "" + +#: gnu/packages/perl.scm:5980 +msgid "" +"This module provides bare bones try/catch/finally statements\n" +"that are designed to minimize common mistakes with eval blocks, and not= hing\n" +"else." +msgstr "" + +#: gnu/packages/perl.scm:6001 +msgid "Data types for common serialisation formats" +msgstr "" + +#: gnu/packages/perl.scm:6002 +msgid "" +"This module provides some extra datatypes that are used by\n" +"common serialisation formats such as JSON or CBOR." +msgstr "" + +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 +msgid "UNIVERSAL::can() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6043 +msgid "" +"This module attempts to work around people calling\n" +"UNIVERSAL::can() as a function, which it is not." +msgstr "" + +#: gnu/packages/perl.scm:6063 +msgid "UNIVERSAL::isa() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6064 +msgid "" +"This module attempts to recover from people calling\n" +"UNIVERSAL::isa as a function." +msgstr "" + +#: gnu/packages/perl.scm:6082 +msgid "Associate user-defined magic to variables from Perl" +msgstr "" + +#: gnu/packages/perl.scm:6083 +msgid "" +"Magic is Perl's way of enhancing variables. This mechanism\n" +"lets the user add extra data to any variable and hook syntactical\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" +"it. With this module, you can add your own magic to any variable witho= ut\n" +"having to write a single line of XS." +msgstr "" + +#: gnu/packages/perl.scm:6106 +msgid "YAML for Perl" +msgstr "" + +#: gnu/packages/perl.scm:6107 +msgid "" +"The YAML.pm module implements a YAML Loader and Dumper based\n" +"on the YAML 1.0 specification." +msgstr "" + +#: gnu/packages/perl.scm:6130 +msgid "Read/Write YAML files" +msgstr "" + +#: gnu/packages/perl.scm:6131 +msgid "" +"YAML::Tiny is a perl class for reading and writing\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" +"and memory overhead." +msgstr "" + +#: gnu/packages/perl.scm:6158 +msgid "Distribution metadata for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6159 +msgid "" +"Software distributions released to the CPAN include a\n" +"META.json or, for older distributions, META.yml, which describes the\n" +"distribution, its contents, and the requirements for building and " +"installing\n" +"the distribution. The data structure stored in the META.json file is\n= " +"described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " +"represent this distribution metadata (or distmeta), along with some hel= pful\n" +"methods for interrogating that data." +msgstr "" + +#: gnu/packages/perl.scm:6182 +msgid "Set of version requirements for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6183 +msgid "" +"A CPAN::Meta::Requirements object models a set of version\n" +"constraints like those specified in the META.yml or META.json files in = CPAN\n" +"distributions, and as defined by CPAN::Meta::Spec. It can be built up = by\n" +"adding more and more constraints, and will reduce them to the simplest\= n" +"representation." +msgstr "" + +#: gnu/packages/perl.scm:6206 +msgid "Read and write a subset of YAML for CPAN Meta files" +msgstr "" + +#: gnu/packages/perl.scm:6207 +msgid "" +"This module implements a subset of the YAML specification\n" +"for use in reading and writing CPAN metadata files like META.yml and\n" +"MYMETA.yml." +msgstr "" + +#: gnu/packages/perl.scm:6228 +msgid "Build and install Perl modules" +msgstr "" + +#: gnu/packages/perl.scm:6229 +msgid "" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" +"through subclassing in a much more straightforward way than with\n" +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." +msgstr "" + +#: gnu/packages/perl.scm:6254 +msgid "Parse META.yml and META.json CPAN metadata files" +msgstr "" + +#: gnu/packages/perl.scm:6255 +msgid "" +"Parse::CPAN::Meta is a parser for META.json and META.yml\n" +"files, using JSON::PP and/or CPAN::Meta::YAML." +msgstr "" + +#: gnu/packages/perl.scm:6273 +msgid "Common Scalar and List utility subroutines" +msgstr "" + +#: gnu/packages/perl.scm:6274 +msgid "" +"This package contains a selection of subroutines that people\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" +"such that being individual extensions would be wasteful." +msgstr "" + +#: gnu/packages/photo.scm:61 +msgid "Raw image decoder" +msgstr "" + +#: gnu/packages/photo.scm:63 +msgid "" +"LibRaw is a library for reading RAW files obtained from digital photo\n= " +"cameras (CRW/CR2, NEF, RAF, DNG, and others)." +msgstr "" + +#: gnu/packages/photo.scm:80 +msgid "Read and manipulate EXIF data in digital photographs" +msgstr "" + +#: gnu/packages/photo.scm:82 +msgid "" +"The libexif C library allows applications to read, edit, and save EXIF\= n" +"data as produced by digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:107 +msgid "Accessing digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:109 +msgid "" +"This is the library backend for gphoto2. It contains the code for PTP,= \n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" +"from digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:150 +msgid "Command-line tools to access digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:152 +msgid "" +"Gphoto2 is a set of command line utilities for manipulating a large\n" +"number of different digital cameras. Through libgphoto2, it supports P= TP,\n" +"MTP, and much more." +msgstr "" + +#: gnu/packages/photo.scm:186 +msgid "Program and Perl library to manipulate EXIF tags" +msgstr "" + +#: gnu/packages/photo.scm:188 +msgid "" +"This package provides the 'exiftool' command and the 'Image::ExifTool'\= n" +"Perl library to manipulate EXIF tags of digital images." +msgstr "" + +#: gnu/packages/photo.scm:211 +msgid "Library for panoramic images" +msgstr "" + +#: gnu/packages/photo.scm:213 +msgid "" +"The libpano13 package contains the backend library written by the\n" +"Panorama Tools project for building panoramic images from a set of\n" +"overlapping images, as well as some command line tools." +msgstr "" + +#: gnu/packages/photo.scm:255 +msgid "Tools for combining and blending images" +msgstr "" + +#: gnu/packages/photo.scm:257 +msgid "" +"Enblend blends away the seams in a panoramic image mosaic using a\n" +"multi-resolution spline. Enfuse merges different exposures of the same= \n" +"scene to produce an image that looks much like a tone-mapped image." +msgstr "" + +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" +msgstr "" + +#: gnu/packages/qemu.scm:153 +msgid "" +"QEMU is a generic machine emulator and virtualizer.\n" +"\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" +"machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" +"using dynamic translation, it achieves very good performance.\n" +"\n" +"When used as a virtualizer, QEMU achieves near native performances by\n= " +"executing the guest code directly on the host CPU. QEMU supports\n" +"virtualization when executing under the Xen hypervisor or using\n" +"the KVM kernel module in Linux. When using KVM, QEMU can virtualize x8= 6,\n" +"server and embedded PowerPC, and S390 guests." +msgstr "" + +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" +msgstr "" + +#: gnu/packages/ratpoison.scm:85 +msgid "Simple mouse-free tiling window manager" +msgstr "" + +#: gnu/packages/ratpoison.scm:87 +msgid "" +"Ratpoison is a simple window manager with no fat library\n" +"dependencies, no fancy graphics, no window decorations, and no\n" +"rodent dependence. It is largely modelled after GNU Screen which\n" +"has done wonders in the virtual terminal market.\n" +"\n" +"The screen can be split into non-overlapping frames. All windows\n" +"are kept maximized inside their frames to take full advantage of\n" +"your precious screen real estate.\n" +"\n" +"All interaction with the window manager is done through keystrokes.\n" +"Ratpoison has a prefix map to minimize the key clobbering that\n" +"cripples Emacs and other quality pieces of software." +msgstr "" + +#: gnu/packages/readline.scm:68 +msgid "Edit command lines while typing, with history support" +msgstr "" + +#: gnu/packages/readline.scm:70 +msgid "" +"The GNU readline library allows users to edit command lines as they\n" +"are typed in. It can maintain a searchable history of previously enter= ed\n" +"commands, letting you easily recall, edit and re-enter past commands. = It\n" +"features both Emacs-like and vi-like keybindings, making its usage\n" +"comfortable for anyone." +msgstr "" + +#: gnu/packages/scanner.scm:70 +msgid "Raster image scanner library and drivers" +msgstr "" + +#: gnu/packages/scanner.scm:71 +msgid "" +"SANE stands for \"Scanner Access Now Easy\" and is an API\n" +"proving access to any raster image scanner hardware (flatbed scanner,\n= " +"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" +"package contains the library and drivers." +msgstr "" + +#: gnu/packages/scheme.scm:169 +#, fuzzy +msgid "A Scheme implementation with integrated editor and debugger" +msgstr "Implementa=C3=A7=C3=A3o de Scheme com inten=C3=A7=C3=A3o especia= lmente para extens=C3=B5es" + +#: gnu/packages/scheme.scm:171 +msgid "" +"GNU/MIT Scheme is an implementation of the Scheme programming\n" +"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" +"features an integrated Emacs-like editor and a large runtime library." +msgstr "" + +#: gnu/packages/scheme.scm:254 +msgid "Efficient Scheme compiler" +msgstr "" + +#: gnu/packages/scheme.scm:256 +msgid "" +"Bigloo is a Scheme implementation devoted to one goal: enabling\n" +"Scheme based programming style where C(++) is usually\n" +"required. Bigloo attempts to make Scheme practical by offering\n" +"features usually presented by traditional programming languages\n" +"but not offered by Scheme and functional programming. Bigloo\n" +"compiles Scheme modules. It delivers small and fast stand alone\n" +"binary executables. Bigloo enables full connections between\n" +"Scheme and C programs and between Scheme and Java programs." +msgstr "" + +#: gnu/packages/scheme.scm:300 +msgid "Multi-tier programming language for the Web 2.0" +msgstr "" + +#: gnu/packages/scheme.scm:302 +msgid "" +"HOP is a multi-tier programming language for the Web 2.0 and the\n" +"so-called diffuse Web. It is designed for programming interactive web\= n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" +"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" +"mashups, office (web agendas, mail clients, ...), etc." +msgstr "" + +#: gnu/packages/scheme.scm:342 +msgid "R5RS Scheme implementation that compiles native code via C" +msgstr "" + +#: gnu/packages/scheme.scm:344 +msgid "" +"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" +"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" +"language standard, and includes many enhancements and extensions." +msgstr "" + +#: gnu/packages/scheme.scm:363 +#, fuzzy +msgid "Scheme implementation using a bytecode interpreter" +msgstr "Implementa=C3=A7=C3=A3o de Scheme com inten=C3=A7=C3=A3o especia= lmente para extens=C3=B5es" + +#: gnu/packages/scheme.scm:365 +msgid "" +"Scheme 48 is an implementation of Scheme based on a byte-code\n" +"interpreter and is designed to be used as a testbed for experiments in\= n" +"implementation techniques and as an expository tool." +msgstr "" + +#: gnu/packages/scheme.scm:441 +msgid "Implementation of Scheme and related languages" +msgstr "" + +#: gnu/packages/scheme.scm:443 +msgid "" +"Racket is an implementation of the Scheme programming language (R5RS an= d\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" +"of libraries." +msgstr "" + +#: gnu/packages/scheme.scm:481 +msgid "Efficient Scheme interpreter and compiler" +msgstr "" + +#: gnu/packages/scheme.scm:483 +msgid "" +"Gambit consists of two main programs: gsi, the Gambit Scheme\n" +"interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" +"the complete execution and debugging environment. The compiler is the\= n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" +"loaded at run time. Interpreted code and compiled code can be freely\n= " +"mixed." +msgstr "" + +#: gnu/packages/scheme.scm:520 +msgid "Small embeddable Scheme implementation" +msgstr "" + +#: gnu/packages/scheme.scm:522 +msgid "" +"Chibi-Scheme is a very small library with no external dependencies\n" +"intended for use as an extension and scripting language in C programs. = In\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" +"threads." +msgstr "" + +#: gnu/packages/scheme.scm:699 +msgid "Scmutils library for MIT Scheme" +msgstr "" + +#: gnu/packages/scheme.scm:700 +msgid "" +"The Scmutils system is an integrated library of\n" +"procedures, embedded in the programming language Scheme, and intended t= o\n" +"support teaching and research in mathematical physics and electrical\n" +"engineering." +msgstr "" + +#: gnu/packages/search.scm:52 +msgid "Search Engine Library" +msgstr "" + +#: gnu/packages/search.scm:54 +msgid "" +"Xapian is a highly adaptable toolkit which allows developers to easily\= n" +"add advanced indexing and search facilities to their own applications. = It\n" +"supports the Probabilistic Information Retrieval model and also support= s a\n" +"rich set of boolean query operators." +msgstr "" + +#: gnu/packages/search.scm:97 +msgid "Tool for Obsessive Compulsive Classifiers" +msgstr "" + +#: gnu/packages/search.scm:99 +msgid "" +"libtocc is the engine of the Tocc project, a tag-based file management\= n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" +"that is more flexible than classic file systems that are based on a tre= e of\n" +"files and directories." +msgstr "" + +#: gnu/packages/search.scm:121 +msgid "Command-line interface to libtocc" +msgstr "" + +#: gnu/packages/search.scm:123 +msgid "" +"Tocc is a tag-based file management system. This package contains the\= n" +"command line tool for interacting with libtocc." +msgstr "" + +#: gnu/packages/search.scm:141 +msgid "Finding text and HTML files that match boolean expressions" +msgstr "" + +#: gnu/packages/search.scm:143 +msgid "" +"GNU Bool is a utility to perform text searches on files using Boolean\n= " +"expressions. For example, a search for \"hello AND world\" would retur= n a\n" +"file containing the phrase \"Hello, world!\". It supports both AND and= OR\n" +"statements, as well as the NEAR statement to search for the occurrence = of\n" +"words in close proximity to each other. It handles context gracefully,= \n" +"accounting for new lines and paragraph changes. It also has robust sup= port\n" +"for parsing HTML files." +msgstr "" + +#: gnu/packages/serveez.scm:51 +msgid "Framework for implementing IP-based servers" +msgstr "" + +#: gnu/packages/serveez.scm:53 +msgid "" +"GNU Serveez is a server framework providing the routines necessary to\n= " +"easily implement IP-based servers in your application. It\n" +"demonstrates aspects of network programming in a portable manner,\n" +"making it convenient for both simplifying the process of adding a\n" +"server to your application or for learning about how network services\n= " +"work. Several example servers are provided already, such as an HTTP\n" +"server and an IRC server." +msgstr "" + +#: gnu/packages/telephony.scm:52 +msgid "(u)Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:53 +msgid "" +"GNU Common C++ is an portable, optimized class framework for\n" +"threaded applications, supporting concurrent synchronization, inter-pro= cess\n" +"communications via sockets, and various methods for data handling, such= as\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" +"reimplementation." +msgstr "" + +#: gnu/packages/telephony.scm:73 +msgid "Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:74 +msgid "" +"GNU uCommon C++ is meant as a very light-weight C++ library\n" +"to facilitate using C++ design patterns even for very deeply embedded\n= " +"applications, such as for systems using uclibc along with posix threadi= ng\n" +"support." +msgstr "" + +#: gnu/packages/telephony.scm:95 +msgid "Implementation of RTP (real-time transport protocol)" +msgstr "" + +#: gnu/packages/telephony.scm:96 +msgid "" +"GNU ccRTP is an implementation of RTP, the real-time transport\n" +"protocol from the IETF. It is suitable both for high capacity servers = and\n" +"personal client applications. It is flexible in its design, allowing i= t to\n" +"function as a framework for the framework, rather than just being a\n" +"packet-manipulation library." +msgstr "" + +#: gnu/packages/telephony.scm:116 +msgid "Library implementing SIP (RFC-3261)" +msgstr "" + +#: gnu/packages/telephony.scm:117 +msgid "" +"GNU oSIP is an implementation of the SIP protocol. It is\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" +"to initiate and control SIP sessions." +msgstr "" + +#: gnu/packages/telephony.scm:137 +msgid "Sip abstraction library" +msgstr "" + +#: gnu/packages/telephony.scm:138 +msgid "" +"EXosip is a library that hides the complexity of using the\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" +"be used by VoIP telephony applications (endpoints or conference server)= but\n" +"might be also useful for any application that wish to establish session= s " +"like\n" +"multiplayer games." +msgstr "" + +#: gnu/packages/telephony.scm:181 +msgid "Secure peer-to-peer VoIP server for the SIP protocol" +msgstr "" + +#: gnu/packages/telephony.scm:182 +msgid "" +"GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" +"uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" +"there is no central point for media intercept or capture and thus it ca= n be\n" +"used to construct a secure telephone system that operates over the publ= ic\n" +"internet." +msgstr "" + +#: gnu/packages/telephony.scm:207 +msgid "Secure RTP (SRTP) Reference Implementation" +msgstr "" + +#: gnu/packages/telephony.scm:208 +msgid "" +"This package provides an implementation of the Secure\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" +"and a supporting cryptographic kernel." +msgstr "" + +#: gnu/packages/texinfo.scm:55 +msgid "The GNU documentation format" +msgstr "" + +#: gnu/packages/texinfo.scm:57 +msgid "" +"Texinfo is the official documentation format of the GNU project. It\n" +"uses a single source file using explicit commands to produce a final " +"document\n" +"in any of several supported output formats, such as HTML or PDF. This\= n" +"package includes both the tools necessary to produce Info documents fro= m\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" +"is on expressing the content semantically, avoiding physical markup com= mands." +msgstr "" + +#: gnu/packages/texinfo.scm:132 +msgid "Convert Texinfo to HTML" +msgstr "" + +#: gnu/packages/texinfo.scm:134 +msgid "" +"Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" +"output. It now supports many advanced features, such as " +"internationalization\n" +"and extremely configurable output formats.\n" +"\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" +"was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" +"Texi2HTML." +msgstr "" + +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 +msgid "TeX Live, a package of the TeX typesetting system" +msgstr "" + +#: gnu/packages/texlive.scm:157 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the binaries." +msgstr "" + +#: gnu/packages/texlive.scm:220 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete tree of texmf-dist data." +msgstr "" + +#: gnu/packages/texlive.scm:278 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete TeX Live distribution." +msgstr "" + +#: gnu/packages/texlive.scm:307 +msgid "Wrapper for LaTeX and friends" +msgstr "" + +#: gnu/packages/texlive.scm:309 +msgid "" +"Rubber is a program whose purpose is to handle all tasks related to the= \n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" +"PDF documents." +msgstr "" + +#: gnu/packages/textutils.scm:61 +msgid "Text encoding converter" +msgstr "" + +#: gnu/packages/textutils.scm:62 +msgid "" +"The Recode library converts files between character sets and\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" +"any pair. When exact transliteration are not possible, it gets rid of\= n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" +"handy front-end to the library." +msgstr "" + +#: gnu/packages/textutils.scm:90 +msgid "Text encoding detection tool" +msgstr "" + +#: gnu/packages/textutils.scm:91 +msgid "" +"Enca (Extremely Naive Charset Analyser) consists of libenca,\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" +"libenca and several charset conversion libraries and tools." +msgstr "" + +#: gnu/packages/textutils.scm:118 +msgid "C library for processing UTF-8 Unicode data" +msgstr "" + +#: gnu/packages/textutils.scm:119 +msgid "" +"utf8proc is a small C library that provides Unicode\n" +"normalization, case-folding, and other operations for data in the UTF-8= \n" +"encoding, supporting Unicode version 7.0." +msgstr "" + +#: gnu/packages/textutils.scm:148 +msgid "Gordon's text utils library" +msgstr "" + +#: gnu/packages/textutils.scm:150 +msgid "" +"libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" +"the Hannon Lab." +msgstr "" + +#: gnu/packages/textutils.scm:171 +msgid "C++ hash functions for strings" +msgstr "" + +#: gnu/packages/textutils.scm:173 +msgid "" +"CityHash provides hash functions for strings. The functions mix the\n" +"input bits thoroughly but are not suitable for cryptography." +msgstr "" + +#: gnu/packages/textutils.scm:190 +msgid "C/C++ configuration file library" +msgstr "" + +#: gnu/packages/textutils.scm:192 +msgid "" +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." +msgstr "" + +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" + +#: gnu/packages/textutils.scm:214 +msgid "" +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." +msgstr "" + +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" +msgstr "" + +#: gnu/packages/version-control.scm:105 +msgid "" +"GNU Bazaar is a version control system that allows you to record\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" +"as well as the classic centralized workflow." +msgstr "" + +#: gnu/packages/version-control.scm:264 +msgid "Distributed version control system" +msgstr "" + +#: gnu/packages/version-control.scm:266 +msgid "" +"Git is a free distributed version control system designed to handle\n" +"everything from small to very large projects with speed and efficiency.= " +msgstr "" + +#: gnu/packages/version-control.scm:311 +msgid "Man pages of the Git version control system" +msgstr "" + +#: gnu/packages/version-control.scm:313 +msgid "" +"This package provides the man pages of the Git version control system.\= n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" +"command." +msgstr "" + +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" + +#: gnu/packages/version-control.scm:354 +msgid "" +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." +msgstr "" + +#: gnu/packages/version-control.scm:393 +msgid "Command-line flags library for shell scripts" +msgstr "" + +#: gnu/packages/version-control.scm:395 +msgid "" +"Shell Flags (shFlags) is a library written to greatly simplify the\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" +"ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" +"different versions of getopt on various OSes make writing portable shel= l\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" +"shell and OS versions so the script writer can be confident that the sc= ript\n" +"will work." +msgstr "" + +#: gnu/packages/version-control.scm:438 +msgid "Git extensions for Vincent Driessen's branching model" +msgstr "" + +#: gnu/packages/version-control.scm:440 +msgid "" +"Vincent Driessen's branching model is a git branching and release\n" +"management strategy that helps developers keep track of features, hotfi= xes,\n" +"and releases in bigger software projects. The git-flow library of git\= n" +"subcommands helps automate some parts of the flow to make working with = it a\n" +"lot easier." +msgstr "" + +#: gnu/packages/version-control.scm:475 +msgid "Run a command over a sequence of commits" +msgstr "" + +#: gnu/packages/version-control.scm:477 +msgid "" +"git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" +"linear. It will test every change between two points in the DAG. It w= ill\n" +"also walk each side of a merge and test those changes individually." +msgstr "" + +#: gnu/packages/version-control.scm:535 +msgid "Git access control layer" +msgstr "" + +#: gnu/packages/version-control.scm:537 +msgid "" +"Gitolite is an access control layer on top of Git, providing fine acces= s\n" +"control to Git repositories." +msgstr "" + +#: gnu/packages/version-control.scm:561 +msgid "Decentralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:563 +msgid "" +"Mercurial is a free, distributed source control management tool.\n" +"It efficiently handles projects of any size\n" +"and offers an easy and intuitive interface." +msgstr "" + +#: gnu/packages/version-control.scm:597 +msgid "HTTP and WebDAV client library" +msgstr "" + +#: gnu/packages/version-control.scm:598 +msgid "" +"Neon is an HTTP and WebDAV client library, with a\n" +"C interface. Features:\n" +"High-level wrappers for common HTTP and WebDAV operations (GET, MOVE,\n= " +"DELETE, etc.);\n" +"low-level interface to the HTTP request/response engine, allowing the u= se\n" +"of arbitrary HTTP methods, headers, etc.;\n" +"authentication support including Basic and Digest support, along with\n= " +"GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32;= \n" +"SSL/TLS support using OpenSSL or GnuTLS, exposing an abstraction layer = for\n" +"verifying server certificates, handling client certificates, and examin= ing\n" +"certificate properties, smartcard-based client certificates are also\n" +"supported via a PKCS#11 wrapper interface;\n" +"abstract interface to parsing XML using libxml2 or expat, and wrappers = for\n" +"simplifying handling XML HTTP response bodies;\n" +"WebDAV metadata support, wrappers for PROPFIND and PROPPATCH to simplif= y\n" +"property manipulation." +msgstr "" + +#: gnu/packages/version-control.scm:677 +msgid "Revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:679 +msgid "" +"Subversion exists to be universally recognized and adopted as a\n" +"centralized version control system characterized by its\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" +"usage; and its ability to support the needs of a wide variety of users = and\n" +"projects, from individuals to large-scale enterprise operations." +msgstr "" + +#: gnu/packages/version-control.scm:700 +msgid "Per-file local revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:702 +msgid "" +"RCS is the original Revision Control System. It works on a\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" +"CVS, Subversion, and Git. This can make it suitable for system\n" +"administration files, for example, which are often inherently local to = one\n" +"machine." +msgstr "" + +#: gnu/packages/version-control.scm:729 +msgid "Historical centralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:731 +msgid "" +"CVS is a version control system, an important component of Source\n" +"Configuration Management (SCM). Using it, you can record the history o= f\n" +"sources files, and documents. It fills a similar role to the free soft= ware\n" +"RCS, PRCS, and Aegis packages." +msgstr "" + +#: gnu/packages/version-control.scm:764 +msgid "Export an RCS or CVS history as a fast-import stream" +msgstr "" + +#: gnu/packages/version-control.scm:765 +msgid "" +"This program analyzes a collection of RCS files in a CVS\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" +"in the form of a fast-import stream. Not all possible histories can be= \n" +"rendered this way; the program tries to emit useful warnings when it ca= n't.\n" +"\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" +"acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" +"masters from remote CVS hosts." +msgstr "" + +#: gnu/packages/version-control.scm:792 +msgid "Version-control-agnostic ChangeLog diff and commit tool" +msgstr "" + +#: gnu/packages/version-control.scm:794 +msgid "" +"The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " +"vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" +"using version control at the same time, for example by printing a remin= der\n" +"when a file change has been described in the ChangeLog but the file has= not\n" +"been added to the VC. vc-chlog scans changed files and generates\n" +"standards-compliant ChangeLog entries based on the changes that it dete= cts." +msgstr "" + +#: gnu/packages/version-control.scm:816 +msgid "Make histograms from the output of 'diff'" +msgstr "" + +#: gnu/packages/version-control.scm:818 +msgid "" +"Diffstat reads the output of 'diff' and displays a histogram of the\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" +"large, complex patch files." +msgstr "" + +#: gnu/packages/version-control.scm:859 +msgid "File-based version control like SCCS" +msgstr "" + +#: gnu/packages/version-control.scm:860 +msgid "" +"GNU CSSC provides a replacement for the legacy Unix source\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" +"accessed and migrated on modern systems." +msgstr "" + +#: gnu/packages/version-control.scm:941 +msgid "Project change supervisor" +msgstr "" + +#: gnu/packages/version-control.scm:942 +msgid "" +"Aegis is a project change supervisor, and performs some of\n" +"the Software Configuration Management needed in a CASE environment. Ae= gis\n" +"provides a framework within which a team of developers may work on many= \n" +"changes to a program independently, and Aegis coordinates integrating t= hese\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" +"any project with more than one developer, is one of Aegis's major funct= ions." +msgstr "" + +#: gnu/packages/version-control.scm:970 +msgid "Ncurses-based text user interface for Git" +msgstr "" + +#: gnu/packages/version-control.scm:972 +msgid "" +"Tig is an ncurses text user interface for Git, primarily intended as\n" +"a history browser. It can also stage hunks for commit, or colorize the= \n" +"output of the 'git' command." +msgstr "" + +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" + +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." +msgstr "" + +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" + +#: gnu/packages/version-control.scm:1027 +msgid "" +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." +msgstr "" + +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" + +#: gnu/packages/version-control.scm:1059 +msgid "" +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." +msgstr "" + +#: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" + +#: gnu/packages/webkit.scm:125 +msgid "" +"WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" +"suitable for projects requiring any kind of web integration, from hybri= d\n" +"HTML/CSS applications to full-fledged web browsers." +msgstr "" + +#: gnu/packages/web.scm:89 +msgid "Featureful HTTP server" +msgstr "" + +#: gnu/packages/web.scm:91 +msgid "" +"The Apache HTTP Server Project is a collaborative software development\= n" +"effort aimed at creating a robust, commercial-grade, featureful, and\n" +"freely-available source code implementation of an HTTP (Web) server. T= he\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" +"using the Internet and the Web to communicate, plan, and develop the se= rver\n" +"and its related documentation." +msgstr "" + +#: gnu/packages/web.scm:169 +msgid "HTTP and reverse proxy server" +msgstr "" + +#: gnu/packages/web.scm:171 +msgid "" +"Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" +"created by Igor Sysoev. It can be used both as a standalone web server= \n" +"and as a proxy to reduce the load on back-end HTTP or mail servers." +msgstr "" + +#: gnu/packages/web.scm:207 +msgid "PSGI/Plack web server" +msgstr "" + +#: gnu/packages/web.scm:208 +msgid "" +"Starman is a PSGI perl web server that has unique features\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" +"and UNIX socket support." +msgstr "" + +#: gnu/packages/web.scm:227 +#, fuzzy +msgid "JSON C library" +msgstr "A GNU C Library" + +#: gnu/packages/web.scm:229 +msgid "" +"Jansson is a C library for encoding, decoding and manipulating JSON\n" +"data." +msgstr "" + +#: gnu/packages/web.scm:261 +msgid "JSON implementation in C" +msgstr "" + +#: gnu/packages/web.scm:263 +msgid "" +"JSON-C implements a reference counting object model that allows you to\= n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" +"parse JSON formatted strings back into the C representation of JSON obj= ects." +msgstr "" + +#: gnu/packages/web.scm:289 +msgid "JSON parser/generator for C++ with both SAX/DOM style API" +msgstr "" + +#: gnu/packages/web.scm:291 +msgid "" +"RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" +"style API." +msgstr "" + +#: gnu/packages/web.scm:309 +msgid "C library for parsing JSON" +msgstr "" + +#: gnu/packages/web.scm:311 +msgid "" +"Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" +"parser written in ANSI C and a small validating JSON generator." +msgstr "" + +#: gnu/packages/web.scm:341 +msgid "WebSockets library written in C" +msgstr "" + +#: gnu/packages/web.scm:343 +msgid "" +"Libwebsockets is a library that allows C programs to establish client\n= " +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" +"for efficient socket-like bidirectional reliable communication channels= ." +msgstr "" + +#: gnu/packages/web.scm:378 +msgid "C library for the Publix Suffix List" +msgstr "" + +#: gnu/packages/web.scm:380 +msgid "" +"A \"public suffix\" is a domain name under which Internet users can\n" +"directly register own names.\n" +"\n" +"Browsers and other web clients can use it to avoid privacy-leaking\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" +"by site.\n" +"\n" +"Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" +"domain verification, finds the longest public part of a given domain, f= inds\n" +"the shortest private part of a given domain, works with international\n= " +"domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" +"UTS#46." +msgstr "" + +#: gnu/packages/web.scm:426 +msgid "HTML validator and tidier" +msgstr "" + +#: gnu/packages/web.scm:427 +msgid "" +"HTML Tidy is a command-line tool and C library that can be\n" +"used to validate and fix HTML data." +msgstr "" + +#: gnu/packages/web.scm:468 +msgid "Light-weight HTTP/HTTPS proxy daemon" +msgstr "" + +#: gnu/packages/web.scm:469 +msgid "" +"Tinyproxy is a light-weight HTTP/HTTPS proxy\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" +"proxy is required, but the system resources for a larger proxy are\n" +"unavailable." +msgstr "" + +#: gnu/packages/web.scm:502 +msgid "Small caching web proxy" +msgstr "" + +#: gnu/packages/web.scm:504 +msgid "" +"Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " +"server). It was primarily designed to be used by one person or a small= " +"group\n" +"of people." +msgstr "" + +#: gnu/packages/web.scm:524 +msgid "YAML 1.1 parser and emitter written in C" +msgstr "" + +#: gnu/packages/web.scm:526 +msgid "LibYAML is a YAML 1.1 parser and emitter written in C." +msgstr "" + +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 +msgid "Media stream URL parser" +msgstr "" + +#: gnu/packages/web.scm:543 +msgid "" +"This package contains support scripts called by libquvi to\n" +"parse media stream properties." +msgstr "" + +#: gnu/packages/web.scm:576 +msgid "" +"libquvi is a library with a C API for parsing media stream\n" +"URLs and extracting their actual media files." +msgstr "" + +#: gnu/packages/web.scm:598 +msgid "" +"quvi is a command-line-tool suite to extract media files\n" +"from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." +msgstr "" + +#: gnu/packages/web.scm:661 +msgid "High-performance asynchronous HTTP client library" +msgstr "" + +#: gnu/packages/web.scm:663 +msgid "" +"serf is a C-based HTTP client library built upon the Apache Portable\n" +"Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" +"minimum to provide high performance operation." +msgstr "" + +#: gnu/packages/web.scm:718 +msgid "CSS pre-processor" +msgstr "" + +#: gnu/packages/web.scm:719 +msgid "" +"SassC is a compiler written in C for the CSS pre-processor\n" +"language known as SASS." +msgstr "" + +#: gnu/packages/web.scm:748 +msgid "Compile a log format string to perl-code" +msgstr "" + +#: gnu/packages/web.scm:749 +msgid "" +"This module provides methods to compile a log format string\n" +"to perl-code, for faster generation of access_log lines." +msgstr "" + +#: gnu/packages/web.scm:770 +msgid "SASL authentication framework" +msgstr "" + +#: gnu/packages/web.scm:771 +msgid "Authen::SASL provides an SASL authentication framework." +msgstr "" + +#: gnu/packages/web.scm:795 +msgid "Sensible default Catalyst action" +msgstr "" + +#: gnu/packages/web.scm:796 +msgid "" +"This Catalyst action implements a sensible default end\n" +"action, which will forward to the first available view." +msgstr "" + +#: gnu/packages/web.scm:824 +msgid "Automated REST Method Dispatching" +msgstr "" + +#: gnu/packages/web.scm:825 +msgid "" +"This Action handles doing automatic method dispatching for\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" +"append an underscore and method name. First it will try dispatching to= an\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" +"regular method." +msgstr "" + +#: gnu/packages/web.scm:861 +msgid "Storage class for Catalyst authentication using DBIx::Class" +msgstr "" + +#: gnu/packages/web.scm:862 +msgid "" +"The Catalyst::Authentication::Store::DBIx::Class class\n" +"provides access to authentication information stored in a database via\= n" +"DBIx::Class." +msgstr "" + +#: gnu/packages/web.scm:886 +msgid "Create only one instance of Moose component per context" +msgstr "" + +#: gnu/packages/web.scm:887 +msgid "" +"Catalyst::Component::InstancePerContext returns a new\n" +"instance of a component on each request." +msgstr "" + +#: gnu/packages/web.scm:924 +msgid "Catalyst Development Tools" +msgstr "" + +#: gnu/packages/web.scm:925 +msgid "" +"The Catalyst-Devel distribution includes a variety of\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" +"to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" +"modules." +msgstr "" + +#: gnu/packages/web.scm:954 +msgid "Regex DispatchType for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:955 +msgid "" +"Dispatch type managing path-matching behaviour using\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" +"core. It is recommend that you use Chained methods or other techniques= \n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" +"when the dispatch type is first seen in your application." +msgstr "" + +#: gnu/packages/web.scm:1003 +msgid "DBIx::Class::Schema Model Class" +msgstr "" + +#: gnu/packages/web.scm:1004 +msgid "" +"This is a Catalyst Model for DBIx::Class::Schema-based\n" +"Models." +msgstr "" + +#: gnu/packages/web.scm:1028 +msgid "Request logging from within Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1029 +msgid "" +"This Catalyst plugin enables you to create \"access logs\"\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" +"for you. It will work even with Catalyst debug logging turned off." +msgstr "" + +#: gnu/packages/web.scm:1061 +msgid "Infrastructure plugin for the Catalyst authentication framework" +msgstr "" + +#: gnu/packages/web.scm:1062 +msgid "" +"The authentication plugin provides generic user support for\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" +"who they claim to be), and authorization (allowing the user to do what = the\n" +"system authorises them to do)." +msgstr "" + +#: gnu/packages/web.scm:1092 +msgid "Role-based authorization for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1093 +msgid "" +"Catalyst::Plugin::Authorization::Roles provides role-based\n" +"authorization for Catalyst based on Catalyst::Plugin::Authentication." +msgstr "" + +#: gnu/packages/web.scm:1116 +msgid "Captchas for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1117 +msgid "" +"This plugin creates and validates Captcha images for\n" +"Catalyst." +msgstr "" + +#: gnu/packages/web.scm:1143 +msgid "Load config files of various types" +msgstr "" + +#: gnu/packages/web.scm:1144 +msgid "" +"This module will attempt to load find and load configuration\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" +"formats." +msgstr "" + +#: gnu/packages/web.scm:1174 +msgid "Catalyst generic session plugin" +msgstr "" + +#: gnu/packages/web.scm:1175 +msgid "" +"This plugin links the two pieces required for session\n" +"management in web applications together: the state, and the store." +msgstr "" + +#: gnu/packages/web.scm:1201 +msgid "Maintain session IDs using cookies" +msgstr "" + +#: gnu/packages/web.scm:1202 +msgid "" +"In order for Catalyst::Plugin::Session to work, the session\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" +"on the server. This plugin stores the session ID on the client using t= he\n" +"cookie mechanism." +msgstr "" + +#: gnu/packages/web.scm:1232 +msgid "FastMmap session storage backend" +msgstr "" + +#: gnu/packages/web.scm:1233 +msgid "" +"Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" +"storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" +"memory interprocess cache. It is based on Cache::FastMmap." +msgstr "" + +#: gnu/packages/web.scm:1256 +msgid "Stack trace on the Catalyst debug screen" +msgstr "" + +#: gnu/packages/web.scm:1257 +msgid "" +"This plugin enhances the standard Catalyst debug screen by\n" +"including a stack trace of your application up to the point where the e= rror\n" +"occurred. Each stack frame is displayed along with the package name, l= ine\n" +"number, file name, and code context surrounding the line number." +msgstr "" + +#: gnu/packages/web.scm:1283 +msgid "Simple serving of static pages" +msgstr "" + +#: gnu/packages/web.scm:1284 +msgid "" +"The Static::Simple plugin is designed to make serving static\n" +"content in your application during development quick and easy, without\= n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" +"plugin uses the lightweight MIME::Types module to map file extensions t= o\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" +"MIME type directly to the browser, without being processed through Cata= lyst." +msgstr "" + +#: gnu/packages/web.scm:1351 +msgid "The Catalyst Framework Runtime" +msgstr "" + +#: gnu/packages/web.scm:1352 +msgid "" +"Catalyst is a modern framework for making web applications.\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" +"\"plug in\" existing Perl modules that do what you need." +msgstr "" + +#: gnu/packages/web.scm:1382 +msgid "Replace request base with value passed by HTTP proxy" +msgstr "" + +#: gnu/packages/web.scm:1383 +msgid "" +"This module is a Moose::Role which allows you more\n" +"flexibility in your application's deployment configurations when deploy= ed\n" +"behind a proxy. Using this module, the request base ($c->req->base) is= \n" +"replaced with the contents of the X-Request-Base header." +msgstr "" + +#: gnu/packages/web.scm:1409 +msgid "Download data in many formats" +msgstr "" + +#: gnu/packages/web.scm:1410 +msgid "" +"The purpose of this module is to provide a method for\n" +"downloading data into many supportable formats. For example, downloadi= ng a\n" +"table based report in a variety of formats (CSV, HTML, etc.)." +msgstr "" + +#: gnu/packages/web.scm:1435 +msgid "Catalyst JSON view" +msgstr "" + +#: gnu/packages/web.scm:1436 +msgid "" +"Catalyst::View::JSON is a Catalyst View handler that returns\n" +"stash data in JSON format." +msgstr "" + +#: gnu/packages/web.scm:1461 +msgid "Template View Class" +msgstr "" + +#: gnu/packages/web.scm:1462 +msgid "" +"This module is a Catalyst view class for the Template\n" +"Toolkit." +msgstr "" + +#: gnu/packages/web.scm:1491 +msgid "Trait Loading and Resolution for Catalyst Components" +msgstr "" + +#: gnu/packages/web.scm:1492 +msgid "" +"Adds a \"COMPONENT\" in Catalyst::Component method to your\n" +"Catalyst component base class that reads the optional \"traits\" parame= ter\n" +"from app and component config and instantiates the component subclass w= ith\n" +"those traits using \"new_with_traits\" in MooseX::Traits from\n" +"MooseX::Traits::Pluggable." +msgstr "" + +#: gnu/packages/web.scm:1517 +msgid "Apply roles to Catalyst classes" +msgstr "" + +#: gnu/packages/web.scm:1518 +msgid "" +"CatalystX::RoleApplicator applies roles to Catalyst\n" +"application classes." +msgstr "" + +#: gnu/packages/web.scm:1544 +msgid "Catalyst development server with Starman" +msgstr "" + +#: gnu/packages/web.scm:1545 +msgid "" +"This module provides a Catalyst extension to replace the\n" +"development server with Starman." +msgstr "" + +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" + +#: gnu/packages/web.scm:1570 +msgid "" +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." +msgstr "" + +#: gnu/packages/web.scm:1594 +msgid "CGI interface that is CGI.pm compliant" +msgstr "" + +#: gnu/packages/web.scm:1595 +msgid "" +"CGI::Simple provides a relatively lightweight drop in\n" +"replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" +"parameter parsing, file upload, cookie handling and header generation." +msgstr "" + +#: gnu/packages/web.scm:1616 +msgid "Build structures from CGI data" +msgstr "" + +#: gnu/packages/web.scm:1617 +msgid "" +"This is a module for building structured data from CGI\n" +"inputs, in a manner reminiscent of how PHP does." +msgstr "" + +#: gnu/packages/web.scm:1640 +msgid "Date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:1641 +msgid "" +"This module provides functions that deal with the date\n" +"formats used by the HTTP protocol." +msgstr "" + +#: gnu/packages/web.scm:1661 +msgid "MD5 sums for files and urls" +msgstr "" + +#: gnu/packages/web.scm:1662 +msgid "" +"Digest::MD5::File is a Perl extension for getting MD5 sums\n" +"for files and urls." +msgstr "" + +#: gnu/packages/web.scm:1680 +msgid "Perl locale encoding determination" +msgstr "" + +#: gnu/packages/web.scm:1682 +msgid "" +"The POSIX locale system is used to specify both the language\n" +"conventions requested by the user and the preferred character set to\n" +"consume and output. The Encode::Locale module looks up the charset and= \n" +"encoding (called a CODESET in the locale jargon) and arranges for the\n= " +"Encode module to know this encoding under the name \"locale\". It mean= s\n" +"bytes obtained from the environment can be converted to Unicode strings= \n" +"by calling Encode::encode(locale =3D> $bytes) and converted back again\= n" +"with Encode::decode(locale =3D> $string)." +msgstr "" + +#: gnu/packages/web.scm:1708 +msgid "Perl directory listing parser" +msgstr "" + +#: gnu/packages/web.scm:1710 +msgid "" +"The File::Listing module exports a single function called parse_dir(),\= n" +"which can be used to parse directory listings." +msgstr "" + +#: gnu/packages/web.scm:1742 +msgid "Stock and mutual fund quotes" +msgstr "" + +#: gnu/packages/web.scm:1744 +msgid "" +"Finance::Quote gets stock quotes from various internet sources, includi= ng\n" +"Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." +msgstr "" + +#: gnu/packages/web.scm:1766 +msgid "Perl extension providing access to the GSSAPIv2 library" +msgstr "" + +#: gnu/packages/web.scm:1767 +msgid "" +"This is a Perl extension for using GSSAPI C bindings as\n" +"described in RFC 2744." +msgstr "" + +#: gnu/packages/web.scm:1787 +msgid "Manipulate tables of HTML::Element" +msgstr "" + +#: gnu/packages/web.scm:1789 +msgid "" +"HTML::Element::Extended is a Perl extension for manipulating a table\n" +"composed of HTML::Element style components." +msgstr "" + +#: gnu/packages/web.scm:1813 +msgid "Perl class representing an HTML form element" +msgstr "" + +#: gnu/packages/web.scm:1814 +msgid "" +"Objects of the HTML::Form class represents a single HTML\n" +"
...
instance." +msgstr "" + +#: gnu/packages/web.scm:1836 +msgid "Check for HTML errors in a string or file" +msgstr "" + +#: gnu/packages/web.scm:1837 +msgid "" +"HTML::Lint is a pure-Perl HTML parser and checker for\n" +"syntactic legitmacy." +msgstr "" + +#: gnu/packages/web.scm:1858 +msgid "Extract contents from HTML tables" +msgstr "" + +#: gnu/packages/web.scm:1860 +msgid "" +"HTML::TableExtract is a Perl module for extracting the content containe= d\n" +"in tables within an HTML document, either as text or encoded element tr= ees." +msgstr "" + +#: gnu/packages/web.scm:1885 +msgid "Work with HTML in a DOM-like tree structure" +msgstr "" + +#: gnu/packages/web.scm:1886 +msgid "" +"This distribution contains a suite of modules for\n" +"representing, creating, and extracting information from HTML syntax tre= es." +msgstr "" + +#: gnu/packages/web.scm:1906 +msgid "Perl HTML parser class" +msgstr "" + +#: gnu/packages/web.scm:1908 +msgid "" +"Objects of the HTML::Parser class will recognize markup and separate\n" +"it from plain text (alias data content) in HTML documents. As differen= t\n" +"kinds of markup and text are recognized, the corresponding event handle= rs\n" +"are invoked." +msgstr "" + +#: gnu/packages/web.scm:1928 +msgid "Perl data tables useful in parsing HTML" +msgstr "" + +#: gnu/packages/web.scm:1930 +msgid "" +"The HTML::Tagset module contains several data tables useful in various\= n" +"kinds of HTML parsing operations." +msgstr "" + +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" + +#: gnu/packages/web.scm:1951 +msgid "" +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." +msgstr "" + +#: gnu/packages/web.scm:1979 +msgid "HTTP Body Parser" +msgstr "" + +#: gnu/packages/web.scm:1980 +msgid "" +"HTTP::Body parses chunks of HTTP POST data and supports\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" +"and multipart/form-data." +msgstr "" + +#: gnu/packages/web.scm:2006 +msgid "Minimalist HTTP user agent cookie jar" +msgstr "" + +#: gnu/packages/web.scm:2007 +msgid "" +"This module implements a minimalist HTTP user agent cookie\n" +"jar in conformance with RFC 6265 ." +msgstr "" + +#: gnu/packages/web.scm:2027 +msgid "Perl HTTP cookie jars" +msgstr "" + +#: gnu/packages/web.scm:2029 +msgid "" +"The HTTP::Cookies class is for objects that represent a cookie jar,\n" +"that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" +"object knows about." +msgstr "" + +#: gnu/packages/web.scm:2051 +msgid "Perl simple http server class" +msgstr "" + +#: gnu/packages/web.scm:2053 +msgid "" +"Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" +"on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " +"IO::Socket::INET, so you can perform socket operations directly on it t= oo." +msgstr "" + +#: gnu/packages/web.scm:2072 +msgid "Perl date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:2074 +msgid "" +"The HTTP::Date module provides functions that deal with date formats\n" +"used by the HTTP protocol (and then some more)." +msgstr "" + +#: gnu/packages/web.scm:2097 +msgid "Perl HTTP style message" +msgstr "" + +#: gnu/packages/web.scm:2099 +msgid "An HTTP::Message object contains some headers and a content body.= " +msgstr "" + +#: gnu/packages/web.scm:2118 +msgid "Perl http content negotiation" +msgstr "" + +#: gnu/packages/web.scm:2120 +msgid "" +"The HTTP::Negotiate module provides a complete implementation of the\n" +"HTTP content negotiation algorithm specified in\n" +"draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows = for\n" +"the selection of a preferred content representation based upon attribut= es\n" +"of the negotiable variants and the value of the various Accept* header\= n" +"fields in the request." +msgstr "" + +#: gnu/packages/web.scm:2145 +msgid "Parse HTTP/1.1 requests" +msgstr "" + +#: gnu/packages/web.scm:2146 +msgid "" +"This is an HTTP request parser. It takes chunks of text as\n" +"received and returns a 'hint' as to what is required, or returns the\n" +"HTTP::Request when a complete request has been read. HTTP/1.1 chunking= is\n" +"supported." +msgstr "" + +#: gnu/packages/web.scm:2166 +msgid "Fast HTTP request parser" +msgstr "" + +#: gnu/packages/web.scm:2167 +msgid "" +"HTTP::Parser::XS is a fast, primitive HTTP request/response\n" +"parser." +msgstr "" + +#: gnu/packages/web.scm:2188 +msgid "Set up a CGI environment from an HTTP::Request" +msgstr "" + +#: gnu/packages/web.scm:2189 +msgid "" +"This module provides a convenient way to set up a CGI\n" +"environment from an HTTP::Request." +msgstr "" + +#: gnu/packages/web.scm:2213 +msgid "Lightweight HTTP server" +msgstr "" + +#: gnu/packages/web.scm:2214 +msgid "" +"HTTP::Server::Simple is a simple standalone HTTP daemon with\n" +"no non-core module dependencies. It can be used for building a standal= one\n" +"http-based UI to your existing tools." +msgstr "" + +#: gnu/packages/web.scm:2238 +msgid "HTTP/1.1 client" +msgstr "" + +#: gnu/packages/web.scm:2239 +msgid "" +"This is a very simple HTTP/1.1 client, designed for doing\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" +"It supports proxies and redirection. It also correctly resumes after E= INTR." +msgstr "" + +#: gnu/packages/web.scm:2258 +msgid "Perl module to open an HTML file with automatic charset detection= " +msgstr "" + +#: gnu/packages/web.scm:2260 +msgid "" +"IO::HTML provides an easy way to open a file containing HTML while\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" +"algorithm specified in section 8.2.2.1 of the draft standard." +msgstr "" + +#: gnu/packages/web.scm:2280 +msgid "Family-neutral IP socket supporting both IPv4 and IPv6" +msgstr "" + +#: gnu/packages/web.scm:2281 +msgid "" +"This module provides a protocol-independent way to use IPv4\n" +"and IPv6 sockets, intended as a replacement for IO::Socket::INET." +msgstr "" + +#: gnu/packages/web.scm:2301 +msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" +msgstr "" + +#: gnu/packages/web.scm:2303 +msgid "" +"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" +"select or poll." +msgstr "" + +#: gnu/packages/web.scm:2334 +msgid "Perl modules for the WWW" +msgstr "" + +#: gnu/packages/web.scm:2336 +msgid "" +"The libwww-perl collection is a set of Perl modules which provides a\n" +"simple and consistent application programming interface to the\n" +"World-Wide Web. The main focus of the library is to provide classes\n" +"and functions that allow you to write WWW clients. The library also\n" +"contains modules that are of more general use and even classes that\n" +"help you implement simple HTTP servers." +msgstr "" + +#: gnu/packages/web.scm:2358 +msgid "Perl module to guess the media type for a file or a URL" +msgstr "" + +#: gnu/packages/web.scm:2360 +#, scheme-format +msgid "" +"The LWP::MediaTypes module provides functions for handling media (also\= n" +"known as MIME) types and encodings. The mapping from file extensions t= o\n" +"media types is defined by the media.types file. If the ~/.media.types = file\n" +"exists it is used instead." +msgstr "" + +#: gnu/packages/web.scm:2386 +msgid "HTTPS support for LWP::UserAgent" +msgstr "" + +#: gnu/packages/web.scm:2387 +msgid "" +"The LWP::Protocol::https module provides support for using\n" +"https schemed URLs with LWP." +msgstr "" + +#: gnu/packages/web.scm:2407 +msgid "Virtual browser that retries errors" +msgstr "" + +#: gnu/packages/web.scm:2408 +msgid "" +"LWP::UserAgent::Determined works just like LWP::UserAgent,\n" +"except that when you use it to get a web page but run into a\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" +"and retry a few times." +msgstr "" + +#: gnu/packages/web.scm:2453 +msgid "Perl interface to Amazon S3" +msgstr "" + +#: gnu/packages/web.scm:2454 +msgid "This module provides a Perlish interface to Amazon S3." +msgstr "" + +#: gnu/packages/web.scm:2474 +msgid "Perl low-level HTTP connection (client)" +msgstr "" + +#: gnu/packages/web.scm:2476 +msgid "" +"The Net::HTTP class is a low-level HTTP client. An instance of the\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" +"is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" +"HTTP/1.1." +msgstr "" + +#: gnu/packages/web.scm:2496 +msgid "Extensible Perl server engine" +msgstr "" + +#: gnu/packages/web.scm:2497 +msgid "" +"Net::Server is an extensible, generic Perl server engine.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" +"It includes with it the ability to run as an inetd\n" +"process (Net::Server::INET), a single connection server (Net::Server or= \n" +"Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" +"server which maintains a constant number of preforked\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" +"or to multiple server ports." +msgstr "" + +#: gnu/packages/web.scm:2525 +msgid "SSL support for Net::SMTP" +msgstr "" + +#: gnu/packages/web.scm:2526 +msgid "SSL support for Net::SMTP." +msgstr "" + +#: gnu/packages/web.scm:2560 +msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" +msgstr "" + +#: gnu/packages/web.scm:2561 +msgid "" +"Plack is a set of tools for using the PSGI stack. It\n" +"contains middleware components, a reference server, and utilities for W= eb\n" +"application frameworks. Plack is like Ruby's Rack or Python's Paste fo= r\n" +"WSGI." +msgstr "" + +#: gnu/packages/web.scm:2587 +msgid "Plack::Middleware which sets body for redirect response" +msgstr "" + +#: gnu/packages/web.scm:2588 +msgid "" +"This module sets the body in redirect response, if it's not\n" +"already set." +msgstr "" + +#: gnu/packages/web.scm:2611 +msgid "Override REST methods to Plack apps via POST" +msgstr "" + +#: gnu/packages/web.scm:2612 +msgid "" +"This middleware allows for POST requests that pretend to be\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" +"can say what method it actually meant." +msgstr "" + +#: gnu/packages/web.scm:2636 +msgid "Plack::Middleware which removes body for HTTP response" +msgstr "" + +#: gnu/packages/web.scm:2637 msgid "" -"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" -"command-line arguments, multiple languages, and so on." +"This module removes the body in an HTTP response if it's not\n" +"required." msgstr "" =20 -#: gnu/packages/base.scm:85 -msgid "Print lines matching a pattern" -msgstr "Exibe linhas correspondendo a um padr=C3=A3o" +#: gnu/packages/web.scm:2658 +msgid "Supports app to run as a reverse proxy backend" +msgstr "" =20 -#: gnu/packages/base.scm:87 +#: gnu/packages/web.scm:2659 msgid "" -"grep is a tool for finding text inside files. Text is found by\n" -"matching a pattern provided by the user in one or many files. The patt= ern\n" -"may be provided as a basic or extended regular expression, or as fixed\= n" -"strings. By default, the matching text is simply printed to the screen= ,\n" -"however the output can be greatly customized to include, for example, l= ine\n" -"numbers. GNU grep offers many extensions over the standard utility,\n" -"including, for example, recursive directory searching." +"Plack::Middleware::ReverseProxy resets some HTTP headers,\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" +"and stop fake requests using 'enable_if' directive in your app.psgi." msgstr "" =20 -#: gnu/packages/base.scm:109 -msgid "Stream editor" -msgstr "Editor de fluxo" +#: gnu/packages/web.scm:2680 +msgid "Run HTTP tests on external live servers" +msgstr "" =20 -#: gnu/packages/base.scm:124 +#: gnu/packages/web.scm:2681 msgid "" -"Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" -"is often used for substituting text patterns in a stream. The GNU\n" -"implementation offers several extensions over the standard utility." +"This module allows your to run your Plack::Test tests\n" +"against an external server instead of just against a local application = " +"through\n" +"either mocked HTTP or a locally spawned server." msgstr "" =20 -#: gnu/packages/base.scm:144 -msgid "Managing tar archives" -msgstr "Gerenciando de arquivos-tar" +#: gnu/packages/web.scm:2703 +msgid "Testing TCP programs" +msgstr "" + +#: gnu/packages/web.scm:2704 +msgid "Test::TCP is test utilities for TCP/IP programs." +msgstr "" + +#: gnu/packages/web.scm:2732 +msgid "Testing-specific WWW::Mechanize subclass" +msgstr "" =20 -#: gnu/packages/base.scm:146 +#: gnu/packages/web.scm:2733 msgid "" -"Tar provides the ability to create tar archives, as well as the\n" -"ability to extract, update or list files in an existing archive. It is= \n" -"useful for combining many files into one larger file, while maintaining= \n" -"directory structure and file information such as permissions and\n" -"creation/modification dates. GNU tar offers many extensions over the\n= " -"standard utility." +"Test::WWW::Mechanize is a subclass of the Perl module\n" +"WWW::Mechanize that incorporates features for web application testing." msgstr "" =20 -#: gnu/packages/base.scm:173 -msgid "Apply differences to originals, with optional backups" -msgstr "Aplica diferen=C3=A7as aos originais, com backups opcionais" +#: gnu/packages/web.scm:2766 +msgid "Test::WWW::Mechanize for Catalyst" +msgstr "" =20 -#: gnu/packages/base.scm:175 +#: gnu/packages/web.scm:2767 msgid "" -"Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" -"files depending on the contents of the diff file. It accepts several\n= " -"different diff formats. It may also be used to revert previously appli= ed\n" -"differences." +"The Test::WWW::Mechanize::Catalyst module meshes the\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" +"testing of Catalyst applications without needing to start up a web serv= er." msgstr "" =20 -#: gnu/packages/base.scm:195 -msgid "Comparing and merging files" -msgstr "Comparando e mesclando arquivos" +#: gnu/packages/web.scm:2791 +msgid "Test PSGI programs using WWW::Mechanize" +msgstr "" =20 -#: gnu/packages/base.scm:197 +#: gnu/packages/web.scm:2792 msgid "" -"GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" -"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer. \n" -"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" -"interactive means to merge two files." +"PSGI is a specification to decouple web server environments\n" +"from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" +"WWW::Mechanize that incorporates features for web application testing. = The\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" +"applications." msgstr "" =20 -#: gnu/packages/base.scm:224 -msgid "Operating on files matching given criteria" -msgstr "Opera=C3=A7=C3=A3o em arquivos correspondendo aos crit=C3=A9rios= dados" +#: gnu/packages/web.scm:2812 +msgid "Perl Uniform Resource Identifiers (absolute and relative)" +msgstr "" =20 -#: gnu/packages/base.scm:226 +#: gnu/packages/web.scm:2814 msgid "" -"Findutils supplies the basic file directory searching utilities of the\= n" -"GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" -"used to apply commands with arbitrarily long arguments." +"The URI module implements the URI class. Objects of this class\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" +"and updated by RFC 2732." msgstr "" =20 -#: gnu/packages/base.scm:278 -msgid "Core GNU utilities (file, text, shell)" -msgstr "Utilit=C3=A1rios centrais do GNU (file, text, shell)" +#: gnu/packages/web.scm:2837 +msgid "Find URIs in arbitrary text" +msgstr "" =20 -#: gnu/packages/base.scm:280 +#: gnu/packages/web.scm:2838 msgid "" -"GNU Coreutils includes all of the basic command-line tools that are\n" -"expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" -"functionality beyond that which is outlined in the POSIX standard." +"This module finds URIs and URLs (according to what URI.pm\n" +"considers a URI) in plain text. It only finds URIs which include a\n" +"scheme (http:// or the like), for something a bit less strict, consider= \n" +"URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." msgstr "" =20 -#: gnu/packages/base.scm:314 -msgid "Remake files automatically" -msgstr "Refaz arquivos automaticamente" +#: gnu/packages/web.scm:2860 +msgid "WebSocket support for URI package" +msgstr "" =20 -#: gnu/packages/base.scm:316 +#: gnu/packages/web.scm:2861 msgid "" -"Make is a program that is used to control the production of\n" -"executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" -"generated from its source. It has powerful dependency resolution and t= he\n" -"ability to determine when files have to be regenerated after their sour= ces\n" -"change. GNU make offers many powerful extensions over the standard uti= lity." +"With this module, the URI package provides the same set of\n" +"methods for WebSocket URIs as it does for HTTP URIs." msgstr "" =20 -#: gnu/packages/base.scm:361 -msgid "Binary utilities: bfd gas gprof ld" -msgstr "Utilit=C3=A1rios de bin=C3=A1rios: bfd gas gprof ld" +#: gnu/packages/web.scm:2881 +msgid "Perl extension interface for libcurl" +msgstr "" =20 -#: gnu/packages/base.scm:363 +#: gnu/packages/web.scm:2883 msgid "" -"GNU Binutils is a collection of tools for working with binary files.\n" -"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= . Other\n" -"tools include programs to display binary profiling information, list th= e\n" -"strings in a binary file, and utilities for working with archives. The= \"bfd\"\n" -"library for working with executable and object formats is also included= ." +"This is a Perl extension interface for the libcurl file downloading\n" +"library." msgstr "" =20 -#: gnu/packages/base.scm:504 -msgid "The GNU C Library" -msgstr "A GNU C Library" +#: gnu/packages/web.scm:2912 +msgid "Web browsing in a Perl object" +msgstr "" =20 -#: gnu/packages/base.scm:506 +#: gnu/packages/web.scm:2913 msgid "" -"Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" -"printf, exit...\n" -"\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" -"with the Linux kernel." +"WWW::Mechanize is a Perl module for stateful programmatic\n" +"web browsing, used for automating interaction with websites." msgstr "" -"Qualquer sistema operacional tipo Unix precisa de uma biblioteca C: a\n= " -"biblioteca que define as \"chamadas de sistema\" e outras funcionalidad= es\n" -" b=C3=A1sicas como open, malloc, printf, exit ...\n" -"\n" -"A biblioteca C do GNU =C3=A9 usada como uma biblioteca C no sistema GNU= e na\n" -"maioria dos sistemas com kernel Linux." =20 -#: gnu/packages/base.scm:575 -msgid "Database of current and historical time zones" -msgstr "Banco de dados de fusos hor=C3=A1rios hist=C3=B3ricos e atuais" +#: gnu/packages/web.scm:2933 +msgid "Perl database of robots.txt-derived permissions" +msgstr "" =20 -#: gnu/packages/base.scm:576 +#: gnu/packages/web.scm:2935 msgid "" -"The Time Zone Database (often called tz or zoneinfo)\n" -"contains code and data that represent the history of local time for man= y\n" -"representative locations around the globe. It is updated periodically t= o\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" -"and daylight-saving rules." +"The WWW::RobotRules module parses /robots.txt files as specified in\n" +"\"A Standard for Robot Exclusion\", at\n" +". Webmasters can use the\n" +"/robots.txt file to forbid conforming robots from accessing parts of\n" +"their web site." msgstr "" -"O Time Zone Database (geralmente chamado de tz ou zoneinfo)\n" -"cont=C3=A9m c=C3=B3digos e dados que representam o hist=C3=B3rico dos h= or=C3=A1rios locais de\n" -"muitas localiza=C3=A7=C3=B5es representativas pelo mundo. =C3=89 atuali= zado periodicamente\n" -"para refletir as altera=C3=A7=C3=B5es feitas por corpos pol=C3=ADticos = nos limites de fusos\n" -"hor=C3=A1rios, posi=C3=A7=C3=A3o do UTC e regras de hor=C3=A1rio de ver= =C3=A3o." =20 -#: gnu/packages/base.scm:1004 -msgid "GNU C++ standard library (intermediate)" +#: gnu/packages/web.scm:2955 +msgid "HTTP and WebSocket server library for R" msgstr "" =20 -#: gnu/packages/base.scm:1098 -msgid "The linker wrapper" -msgstr "A interface do linker" +#: gnu/packages/web.scm:2957 +msgid "" +"The httpuv package provides low-level socket and protocol support for\n= " +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" +"intended as a building block for other packages, rather than making it\= n" +"particularly easy to create complete web applications using httpuv alon= e." +msgstr "" =20 -# Desconhe=C3=A7o tradu=C3=A7=C3=A3o para o 'linker', sendo ele amplamen= te conhecido com este nome. Al=C3=A9m do mais, o binutils n=C3=A3o foi tr= aduzido at=C3=A9 a tradu=C3=A7=C3=A3o inicial do guix. Portanto, mantive = 'linker' - Rafael -#: gnu/packages/base.scm:1100 +#: gnu/packages/web.scm:2978 +msgid "Robust, high performance JSON parser and generator for R" +msgstr "" + +#: gnu/packages/web.scm:2980 msgid "" -"The linker wrapper (or `ld-wrapper') wraps the linker to add any\n" -"missing `-rpath' flags, and to detect any misuse of libraries outside o= f the\n" -"store." +"The jsonlite package provides a fast JSON parser and generator optimize= d\n" +"for statistical data and the web. It offers flexible, robust, high\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" +"in systems and applications." msgstr "" -"o linker wrapper (ou `ld-wrapper') atua como interface do linker para\n= " -"adicionar quaisquer op=C3=A7=C3=B5es \"-rpath\" faltando e para detecta= r qualquer\n" -"uso incorreto de bibliotecas fora do armazenamento." =20 -#: gnu/packages/base.scm:1264 -msgid "Complete GCC tool chain for C/C++ development" +#: gnu/packages/web.scm:3008 +msgid "Simple HTTP server to serve static files or dynamic documents" msgstr "" =20 -#: gnu/packages/base.scm:1266 +#: gnu/packages/web.scm:3010 msgid "" -"This package provides a complete GCC tool chain for C/C++ development t= o\n" -"be installed in user profiles. This includes GCC, as well as libc (hea= ders\n" -"and binaries, plus debugging symbols in the 'debug' output), and Binuti= ls." +"Servr provides an HTTP server in R to serve static files, or dynamic\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" +"directory." msgstr "" =20 -#: gnu/packages/guile.scm:99 gnu/packages/guile.scm:166 -msgid "Scheme implementation intended especially for extensions" -msgstr "Implementa=C3=A7=C3=A3o de Scheme com inten=C3=A7=C3=A3o especia= lmente para extens=C3=B5es" +#: gnu/packages/web.scm:3029 +msgid "R tools for HTML" +msgstr "" + +#: gnu/packages/web.scm:3031 +msgid "This package provides tools for HTML generation and output in R." +msgstr "" + +#: gnu/packages/web.scm:3050 +msgid "HTML Widgets for R" +msgstr "" =20 -#: gnu/packages/guile.scm:101 gnu/packages/guile.scm:168 +#: gnu/packages/web.scm:3052 msgid "" -"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" -"official extension language of the GNU system. It is an implementation= of\n" -"the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" -"without requiring the source code to be rewritten." +"HTML widgets is a framework for creating HTML widgets that render in\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" +"applications." msgstr "" =20 -#: gnu/packages/guile.scm:211 -msgid "Framework for building readers for GNU Guile" -msgstr "Infraestrutura para compila=C3=A7=C3=A3o de leitores para GNU Gu= ile" +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" +msgstr "" =20 -#: gnu/packages/guile.scm:213 +#: gnu/packages/web.scm:3073 msgid "" -"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" -"\n" -"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wri= tten,\n" -"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" -"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-d= erived\n" -"document syntax.\n" -"\n" -"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" -"hopefully more powerful and flexible (for instance, one may instantiate= as\n" -"many readers as needed)." +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." +msgstr "" + +#: gnu/packages/web.scm:3107 +msgid "HTML5 parsing library" +msgstr "" + +#: gnu/packages/web.scm:3109 +msgid "" +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." +msgstr "" + +#: gnu/packages/weechat.scm:98 +msgid "Extensible chat client" +msgstr "" + +#: gnu/packages/weechat.scm:99 +msgid "" +"WeeChat (Wee Enhanced Environment for Chat) is an\n" +"Internet Relay Chat client, which is designed to be light and fast.\n" +"The client uses a curses frontend, and there are remote interfaces\n" +"for Web, Qt, Android and Emacs. In WeeChat everything can be done\n" +"with a keyboard, though it also supports mouse. It is customizable\n" +"and extensible with plugins and scripts." +msgstr "" + +#: gnu/packages/wordnet.scm:79 +msgid "Lexical database for the English language" +msgstr "" + +#: gnu/packages/wordnet.scm:81 +msgid "" +"WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" +"each expressing a distinct concept. Synsets are interlinked by means o= f\n" +"conceptual-semantic and lexical relations. The resulting network of\n" +"meaningfully related words and concepts can be navigated with the brows= er.\n" +"WordNet is also freely and publicly available for download. WordNet's\= n" +"structure makes it a useful tool for computational linguistics and natu= ral\n" +"language processing." +msgstr "" + +#: gnu/packages/xiph.scm:66 +msgid "Library for manipulating the ogg multimedia format" +msgstr "" + +#: gnu/packages/xiph.scm:68 +msgid "" +"The libogg library allows to manipulate the ogg multimedia container\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" +"audio and video data. In addition to encapsulation and interleaving of= \n" +"multiple data streams, ogg provides packet framing, error detection, an= d\n" +"periodic timestamps for seeking." +msgstr "" + +#: gnu/packages/xiph.scm:92 +msgid "Library implementing the vorbis audio format" +msgstr "" + +#: gnu/packages/xiph.scm:94 +msgid "" +"The libvorbis library implements the ogg vorbis audio format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit,= \n" +"polyphonic) audio and music at fixed and variable bitrates from 16 to\n= " +"128 kbps/channel." +msgstr "" + +#: gnu/packages/xiph.scm:119 +msgid "Library implementing the Theora video format" +msgstr "" + +#: gnu/packages/xiph.scm:121 +msgid "" +"The libtheora library implements the ogg theora video format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed video format." +msgstr "" + +#: gnu/packages/xiph.scm:142 +msgid "Library for patent-free audio compression format" +msgstr "" + +#: gnu/packages/xiph.scm:144 +msgid "" +"GNU Speex is a patent-free audio compression codec specially designed\n= " +"for speech. It is well-adapted to internet applications, such as VoIP.= It\n" +"features compression of different bands in the same bitstream, intensit= y\n" +"stereo encoding, and voice activity detection." +msgstr "" + +#: gnu/packages/xiph.scm:174 +msgid "Cross platform audio library" +msgstr "" + +#: gnu/packages/xiph.scm:176 +msgid "" +"Libao is a cross-platform audio library that allows programs to\n" +"output audio using a simple API on a wide variety of platforms.\n" +"It currently supports:\n" +"Null output (handy for testing without a sound device),\n" +"WAV files,\n" +"AU files,\n" +"RAW files,\n" +"OSS (Open Sound System, used on Linux and FreeBSD),\n" +"ALSA (Advanced Linux Sound Architecture),\n" +"aRts (Analog RealTime Synth, used by KDE),\n" +"PulseAudio (next generation GNOME sound server),\n" +"esd (EsounD or Enlightened Sound Daemon),\n" +"Mac OS X,\n" +"Windows (98 and later),\n" +"AIX,\n" +"Sun/NetBSD/OpenBSD,\n" +"IRIX,\n" +"NAS (Network Audio Server),\n" +"RoarAudio (Modern, multi-OS, networked Sound System),\n" +"OpenBSD's sndio." +msgstr "" + +#: gnu/packages/xiph.scm:215 +msgid "Free lossless audio codec" +msgstr "" + +#: gnu/packages/xiph.scm:217 +msgid "" +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" +"meaning that audio is compressed in FLAC without any loss in quality." +msgstr "" + +#: gnu/packages/xiph.scm:243 +msgid "Karaoke and text codec for embedding in ogg" msgstr "" -"Guile-Reader =C3=A9 uma infraestrutura simples de compila=C3=A7=C3=A3o = de leitores GNU Guile.\n" + +#: gnu/packages/xiph.scm:245 +msgid "" +"Kate is an overlay codec, originally designed for karaoke and text,\n" +"that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" +"stream, and animated. Most of the time, this would be multiplexed with= \n" +"audio/video to carry subtitles, song lyrics (with or without karaoke da= ta),\n" +"etc., but doesn't have to be.\n" "\n" -"A ideia =C3=A9 facilitar a compila=C3=A7=C3=A3o de procedimentos que es= tendam o procedimento\n" -"de leitura do Guile. Leitores que tenham suporte a diversas variantes d= e\n" -"sintaxe podem ser escritos facilmente, possivelmente reusando \"leitore= s de\n" -"token\" de Scheme padr=C3=A3o de leitores. Por exemplo, ele =C3=A9 usad= o para implementar\n" -"sintaxe de documentos derivados do R5RS do Skribilo.\n" +"Series of curves (splines, segments, etc.) may be attached to various\n= " +"properties (text position, font size, etc.) to create animated overlays= .\n" +"This allows scrolling or fading text to be defined. This can even be u= sed\n" +"to draw arbitrary shapes, so hand drawing can also be represented by a\= n" +"Kate stream." +msgstr "" + +#: gnu/packages/xiph.scm:279 +msgid "Ogg vorbis tools" +msgstr "" + +#: gnu/packages/xiph.scm:281 +msgid "" +"Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" +"general-purpose compressed audio format.\n" "\n" -"A abordagem do Guile-Readers =C3=A9 similar ao \"read table\" do Common= Lisps,\n" -"mas muito mais poderoso e flex=C3=ADvel (por exemplo, =C3=A9 poss=C3=AD= vel instanciar com\n" -"quantos leitores quiser)." +"The package vorbis-tools contains\n" +"ogg123, an ogg vorbis command line audio player;\n" +"oggenc, the ogg vorbis encoder;\n" +"oggdec, a simple, portable command line decoder (to wav and raw);\n" +"ogginfo, to obtain information (tags, bitrate, length, etc.) about\n" +" an ogg vorbis file." +msgstr "" =20 -#: gnu/packages/guile.scm:267 -msgid "Guile bindings to ncurses" -msgstr "Bindings de Guile para ncurses" +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 +msgid "Versatile audio codec" +msgstr "" =20 -#: gnu/packages/guile.scm:269 +#: gnu/packages/xiph.scm:308 msgid "" -"guile-ncurses provides Guile language bindings for the ncurses\n" -"library." +"Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" +"but is also intended for storage and streaming applications. It is\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" +"incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." msgstr "" =20 -#: gnu/packages/guile.scm:289 -msgid "Run jobs at scheduled times" -msgstr "Executa trabalhos no hor=C3=A1rio agendado" +#: gnu/packages/xiph.scm:342 +msgid "Command line utilities to encode, inspect, and decode .opus files= " +msgstr "" =20 -#: gnu/packages/guile.scm:291 +#: gnu/packages/xiph.scm:343 msgid "" -"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" -"Guile, so its configuration can be written in Scheme; the original cron= \n" -"format is also supported." +"Opus is a royalty-free, highly versatile audio codec.\n" +"Opus-tools provide command line utilities for creating, inspecting and\= n" +"decoding .opus files." msgstr "" =20 -#: gnu/packages/guile.scm:319 -msgid "Collection of useful Guile Scheme modules" -msgstr "Cole=C3=A7=C3=A3o de m=C3=B3dulos =C3=BAteis de Scheme de Guile" +#: gnu/packages/xiph.scm:371 +msgid "" +"The opusfile library provides seeking, decode, and playback of Opus\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" +"windows systems." +msgstr "" + +#: gnu/packages/xiph.scm:401 +#, fuzzy +msgid "Streaming media server" +msgstr "Editor de fluxo" =20 -#: gnu/packages/guile.scm:321 +#: gnu/packages/xiph.scm:402 msgid "" -"guile-lib is intended as an accumulation place for pure-scheme Guile\n" -"modules, allowing for people to cooperate integrating their generic Gui= le\n" -"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" -"for Guile\"." -msgstr "guile-lib tem a inten=C3=A7=C3=A3o de ser um lugar acumulado par= a m=C3=B3dulos Guile de pure-scheme, permitindo que pessoas cooperem com = integra=C3=A7=C3=A3o de seus m=C3=B3dulos gen=C3=A9ricos de Guile em uma = biblioteca coerente. Pense \"um CPAN de escopo limitado, objetivo para Gu= ile\"." +"Icecast is a streaming media server which currently supports\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" +"create an Internet radio station or a privately running jukebox and man= y\n" +"things in between." +msgstr "" =20 -#: gnu/packages/guile.scm:352 -msgid "JSON module for Guile" +#: gnu/packages/xiph.scm:430 +msgid "Audio streaming library for icecast encoders" msgstr "" =20 -#: gnu/packages/guile.scm:354 +#: gnu/packages/xiph.scm:432 msgid "" -"Guile-json supports parsing and building JSON documents according to th= e\n" -"http:://json.org specification. These are the main features:\n" -"- Strictly complies to http://json.org specification.\n" -"- Build JSON documents programmatically via macros.\n" -"- Unicode support for strings.\n" -"- Allows JSON pretty printing." +"Libshout is a library for communicating with and sending data to an\n" +"icecast server. It handles the socket connection, the timing of the da= ta,\n" +"and prevents bad data from getting to the icecast server." msgstr "" =20 -#: gnu/packages/lout.scm:109 -msgid "Lout, a document layout system similar in style to LaTeX" -msgstr "Lout, um sistema de layout de documentos similar em estilo ao La= TeX" +#: gnu/packages/zip.scm:57 +#, fuzzy +msgid "Compression and file packing utility" +msgstr "Comparando e mesclando arquivos" =20 -#: gnu/packages/lout.scm:111 +#: gnu/packages/zip.scm:59 msgid "" -"The Lout document formatting system is now reads a high-level descripti= on of\n" -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" -"output file.\n" +"Zip is a compression and file packaging/archive utility. Zip is useful= \n" +"for packaging a set of files for distribution, for archiving files, and= for\n" +"saving disk space by temporarily compressing unused files or directorie= s.\n" +"Zip puts one or more compressed files into a single ZIP archive, along = with\n" +"information about the files (name, path, date, time of last modificatio= n,\n" +"protection, and check information to verify file integrity). An entire= \n" +"directory structure can be packed into a ZIP archive with a single comm= and.\n" "\n" -"Lout offers an unprecedented range of advanced features, including opti= mal\n" -"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" -"scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" -"hyphenation (most European languages are supported), formatting of comp= uter\n" -"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" -"extended with definitions which are very much easier to write than trof= f of\n" -"TeX macros because Lout is a high-level, purely functional language, th= e\n" -"outcome of an eight-year research project that went back to the\n" -"beginning." +"Zip has one compression method (deflation) and can also store files wit= hout\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" +"Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -"O sistema de formata=C3=A7=C3=A3o de texto Lout agora l=C3=AA uma descr= i=C3=A7=C3=A3o de alto n=C3=ADvel de\n" -"documentos similar em estilo ao LaTeX e produz um arquivo de sa=C3=ADda= em texto\n" -"simples ou em PostScript.\n" + +#: gnu/packages/zip.scm:113 +msgid "Decompression and file extraction utility" +msgstr "" + +#: gnu/packages/zip.scm:115 +msgid "" +"UnZip is an extraction utility for archives compressed in .zip format,\= n" +"also called \"zipfiles\".\n" "\n" -"Lout oferece uma faixa sem precedente de recursos avan=C3=A7ados, inclu= indo uma\n" -"=C3=B3tima quebra de par=C3=A1grafo e p=C3=A1gina, hifeniza=C3=A7=C3=A3= o autom=C3=A1tica, inclus=C3=A3o e\n" -"cria=C3=A7=C3=A3o de arquivo EPS de PostScript, formata=C3=A7=C3=A3o de= equa=C3=A7=C3=A3o, tabelas,\n" -"diagramas, rota=C3=A7=C3=A3o e escalas, =C3=ADndices ordenados, banco d= e dados\n" -"bibliogr=C3=A1ficos, executar cabe=C3=A7alhos e p=C3=A1ginas =C3=ADmpar= -par, refer=C3=AAncia cruzada\n" -"autom=C3=A1tica, documentos multil=C3=ADngues incluindo hifeniza=C3=A7=C3= =A3o (h=C3=A1 suporte =C3=A0\n" -"maioria dos idiomas europeus), formata=C3=A7=C3=A3o de programas de com= putador, e muito\n" -"mais, tudo pronto para uso. Al=C3=A9m disso, Lout pode ser estendido fa= cilmente com\n" -"defini=C3=A7=C3=B5es que s=C3=A3o muito f=C3=A1cil de escrever do que t= roff das macros TeX porque\n" -"Lout =C3=A9 uma linguagem puramente funcional de alto n=C3=ADvel, sendo= o resultado de\n" -"oito anos de um projeto de pesquisa que voltou para o come=C3=A7o." +"UnZip lists, tests, or extracts files from a .zip archive. The default= \n" +"behaviour (with no options) is to extract into the current directory, a= nd\n" +"subdirectories below it, all files from the specified zipfile. UnZip\n= " +"recreates the stored directory structure by default." +msgstr "" =20 -#: gnu/packages/recutils.scm:58 -msgid "Manipulate plain text files as databases" -msgstr "Manipula arquivos texto simples como banco de dados" +#: gnu/packages/zip.scm:149 +msgid "Library for accessing zip files" +msgstr "" + +#: gnu/packages/zip.scm:151 +msgid "ZZipLib is a library based on zlib for accessing zip files." +msgstr "" + +#: gnu/packages/zip.scm:169 +msgid "Provides an interface to ZIP archive files" +msgstr "" + +#: gnu/packages/zsh.scm:71 +msgid "Powerful shell for interactive use and scripting" +msgstr "" =20 -#: gnu/packages/recutils.scm:60 +#: gnu/packages/zsh.scm:72 msgid "" -"GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" -"databases created with Recutils carry all of the expected features such= as\n" -"unique fields, primary keys, time stamps and more. Many different field= types\n" -"are supported, as is encryption." +"The Z shell (zsh) is a Unix shell that can be used\n" +"as an interactive login shell and as a powerful command interpreter\n" +"for shell scripting. Zsh can be thought of as an extended Bourne shell= \n" +"with a large number of improvements, including some features of bash,\n= " +"ksh, and tcsh." msgstr "" + +#~ msgid "Lout, a document layout system similar in style to LaTeX" +#~ msgstr "Lout, um sistema de layout de documentos similar em estilo ao= LaTeX" diff --git a/po/packages/sr.po b/po/packages/sr.po index 7b4fb62..44aae6c 100644 --- a/po/packages/sr.po +++ b/po/packages/sr.po @@ -2,11 +2,12 @@ # Copyright (C) 2014 Free Software Foundation, Inc. # This file is distributed under the same license as the guix package. # =D0=9C=D0=B8=D1=80=D0=BE=D1=81=D0=BB=D0=B0=D0=B2 =D0=9D=D0=B8=D0=BA=D0= =BE=D0=BB=D0=B8=D1=9B , 2013=E2=80=942014= . +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix-packages-0.7-pre1\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-06-25 22:55+0200\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2014-09-13 11:01+0200\n" "Last-Translator: =D0=9C=D0=B8=D1=80=D0=BE=D1=81=D0=BB=D0=B0=D0=B2 =D0=9D= =D0=B8=D0=BA=D0=BE=D0=BB=D0=B8=D1=9B \n" "Language-Team: Serbian <(nothing)>\n" @@ -14,402 +15,5520 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=3DUTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : = n%10>=3D2 && n%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : = n%10>=3D2 && n" +"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" =20 -#: gnu/packages/base.scm:65 -msgid "Hello, GNU world: An example GNU package" -msgstr "=D0=9F=D0=BE=D0=B7=D0=B4=D1=80=D0=B0=D0=B2, =D0=93=D0=BD=D1=83 =D0= =BD=D0=B0=D1=80=D0=BE=D0=B4=D0=B5: =D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D1=80 =D0= =93=D0=BD=D1=83 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D0=B0" +#: gnu/packages/abiword.scm:101 +msgid "Word processing program" +msgstr "" =20 -#: gnu/packages/base.scm:67 +#. TRANSLATORS: Dear translator, We would like to inform you that packag= e +#. descriptions may occasionally include Texinfo markup. Texinfo markup +#. looks like "@code{rm -rf}", "@emph{important}", etc. When translatin= g, +#. please leave markup as is. +#: gnu/packages/abiword.scm:110 msgid "" -"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" -"command-line arguments, multiple languages, and so on." +"AbiWord is a word processing program. It is rapidly\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" +"your daily work, personal needs, or for just some good old typing fun." msgstr "" -"=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=9F=D0=BE=D0=B7=D0=B4=D1=80=D0=B0=D0=B2= =D0=BD=D0=B8=D0=BA =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D0=BF= =D0=BE=D1=80=D1=83=D0=BA=D1=83 =E2=80=9E=D0=9F=D0=BE=D0=B7=D0=B4=D1=80=D0= =B0=D0=B2, =D0=BD=D0=B0=D1=80=D0=BE=D0=B4=D0=B5!=E2=80=9C =D0=B8 =D0=B8=D0= =B7=D0=BB=D0=B0=D0=B7=D0=B8. =D0=A1=D0=BB=D1=83=D0=B6=D0=B8\n" -"=D0=BA=D0=B0=D0=BE =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80 =D1=81=D1=82=D0= =B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D1=83=D0=B2=D0=B5=D0= =B6=D0=B1=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0= =BE=D0=B3 =D0=BA=D0=BE=D0=B4=D0=B8=D1=80=D0=B0=D1=9A=D0=B0. =D0=9A=D0=B0= =D0=BE =D1=82=D0=B0=D0=BA=D0=B0=D0=B2, =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0= =D0=B2=D0=B0\n" -"=D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82=D0=B5 =D0=BB=D0=B8=D0=BD= =D0=B8=D1=98=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B8, =D0=B2=D0=B8= =D1=88=D0=B5=D1=81=D1=82=D1=80=D1=83=D0=BA=D0=B5 =D1=98=D0=B5=D0=B7=D0=B8= =D0=BA=D0=B5, =D0=B8 =D1=82=D0=B0=D0=BA=D0=BE =D1=80=D0=B5=D0=B4=D0=BE=D0= =BC." =20 -#: gnu/packages/base.scm:85 -msgid "Print lines matching a pattern" -msgstr "=D0=98=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=80=D0=B5=D0= =B4=D0=BE=D0=B2=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BE=D0=B4=D0=B3=D0=BE=D0= =B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D1= =83" +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 +msgid "Spell checker" +msgstr "" =20 -#: gnu/packages/base.scm:87 +#: gnu/packages/aspell.scm:55 msgid "" -"grep is a tool for finding text inside files. Text is found by\n" -"matching a pattern provided by the user in one or many files. The patt= ern\n" -"may be provided as a basic or extended regular expression, or as fixed\= n" -"strings. By default, the matching text is simply printed to the screen= ,\n" -"however the output can be greatly customized to include, for example, l= ine\n" -"numbers. GNU grep offers many extensions over the standard utility,\n" -"including, for example, recursive directory searching." +"Aspell is a spell-checker which can be used either as a library or as\n= " +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" +"documents written in the UTF-8 encoding and its ability to use multiple= \n" +"dictionaries, including personal ones." msgstr "" -"=D0=B3=D1=80=D0=B5=D0=BF =D1=98=D0=B5 =D0=B0=D0=BB=D0=B0=D1=82 =D0=B7=D0= =B0 =D0=BF=D1=80=D0=BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B5 =D1= =82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D1=83=D0=BD=D1=83=D1=82=D0=B0=D1=80 =D0= =B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0. =D0=A2=D0=B5=D0=BA=D1=81=D1= =82 =D1=81=D0=B5 =D0=BF=D1=80=D0=BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=B7=D0=B8\n= " -"=D1=83=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5=D0=BC= =D1=81=D0=B0 =D0=BE=D0=B1=D1=80=D0=B0=D1=81=D1=86=D0=B5=D0=BC =D0=BA=D0=BE= =D1=98=D0=B8 =D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B8 =D0=BA=D0=BE=D1=80= =D0=B8=D1=81=D0=BD=D0=B8=D0=BA =D1=83 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1=98= =D0=B8=D0=BB=D0=B8 =D0=B2=D0=B8=D1=88=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82= =D0=B5=D0=BA=D0=B0.\n" -"=D0=9E=D0=B1=D1=80=D0=B0=D0=B7=D0=B0=D1=86 =D0=BC=D0=BE=D0=B6=D0=B5 =D0= =B1=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D1=99=D0=B5=D0= =BD =D0=BA=D0=B0=D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B8 =D0=B8=D0= =BB=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D0=BD=D0=B8 =D1=80=D0= =B5=D0=B3=D1=83=D0=BB=D0=B0=D1=80=D0=BD=D0=B8 =D0=B8=D0=B7=D1=80=D0=B0=D0= =B7, =D0=B8=D0=BB=D0=B8\n" -"=D0=BA=D0=B0=D0=BE =D1=81=D1=82=D0=B0=D0=BB=D0=BD=D0=B0 =D0=BD=D0=B8=D1= =81=D0=BA=D0=B0. =D0=9F=D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=B8, =D0=BE= =D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D0=B8 =D1=82= =D0=B5=D0=BA=D1=81=D1=82 =D1=81=D0=B5 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1=81= =D1=82=D0=B0=D0=B2=D0=BD=D0=BE =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98= =D0=B5\n" -"=D0=BD=D0=B0 =D0=B5=D0=BA=D1=80=D0=B0=D0=BD=D1=83, =D0=BC=D0=B5=D1=92=D1= =83=D1=82=D0=B8=D0=BC =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7 =D0=BC=D0=BE=D0=B6=D0= =B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B8=D0=BB=D0=B0=D0=B3=D0=BE=D1= =92=D0=B5=D0=BD =D0=B4=D0=B0 =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8, =D1=80= =D0=B5=D1=86=D0=B8=D0=BC=D0=BE =D0=B1=D1=80=D0=BE=D1=98=D0=B5=D0=B2=D0=B5= \n" -"=D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B0. =D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0= =B3=D1=80=D0=B5=D0=BF =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=BD=D0=BE=D0=B3=D0= =B0 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=BF=D1=80=D0= =B5=D0=BA=D0=BE =D1=83=D0=BE=D0=B1=D0=B8=D1=87=D0=B0=D1=98=D0=B5=D0=BD=D0= =BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0,\n" -"=D1=83=D0=BA=D1=99=D1=83=D1=87=D1=83=D1=98=D1=83=D1=9B=D0=B8, =D0=BD=D0= =B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80, =D0=B4=D1=83=D0=B1=D0=B8=D0=BD=D1= =81=D0=BA=D0=BE =D0=BF=D1=80=D0=B5=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0= =B0=D1=9A=D0=B5 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1= =98=D1=83=D0=BC=D0=B0." =20 -#: gnu/packages/base.scm:109 -msgid "Stream editor" -msgstr "=D0=A3=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=87 =D0=BF=D1=80=D0= =BE=D1=82=D0=BE=D0=BA=D0=B0" +#: gnu/packages/aspell.scm:95 +msgid "This package provides a dictionary for the GNU Aspell spell check= er." +msgstr "" =20 -#: gnu/packages/base.scm:124 +#: gnu/packages/audio.scm:95 +msgid "Realtime modular synthesizer and effect processor" +msgstr "" + +#: gnu/packages/audio.scm:97 msgid "" -"Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" -"is often used for substituting text patterns in a stream. The GNU\n" -"implementation offers several extensions over the standard utility." +"AlsaModularSynth is a digital implementation of a classical analog\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" +"e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" +"Filter) modules follow the convention of 1V / Octave." msgstr "" -"=D0=A1=D0=B5=D0=B4 =D1=98=D0=B5 =D0=BD=D0=B5-=D0=BC=D0=B5=D1=92=D1=83=D0= =B4=D0=B5=D1=98=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=B8, =D1=83=D1=80=D0=B5=D1= =92=D0=B8=D0=B2=D0=B0=D1=87 =D1=82=D0=BE=D0=BA=D0=B0 =D1=82=D0=B5=D0=BA=D1= =81=D1=82=D0=B0. =D0=9E=D0=BD =D0=BF=D1=80=D0=B8=D1=85=D0=B2=D0=B0=D1=82= =D0=B0 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=B8\n" -"=D1=83=D0=BB=D0=B0=D0=B7 =D0=B8=D0=B7 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0= =B5=D0=BA=D0=B5 =D0=B8=D0=BB=D0=B8 =D1=81=D0=B0 =D1=81=D1=82=D0=B0=D0=BD=D0= =B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D1=83=D0=BB=D0=B0=D0=B7=D0=B0 =D0= =B8 =D0=B7=D0=B0=D1=82=D0=B8=D0=BC =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A=D1= =83=D1=98=D0=B5 =D0=BD=D0=B8=D0=B7 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0= =B8\n" -"=D0=B7=D0=B0 =D1=83=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1= =82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D0=BD=D0=B0=D0=B4 =D1=82=D0=BE=D0=BA=D0= =B8=D0=BC =D0=B8 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=9A=D0= =B5=D0=B3=D0=BE=D0=B2 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7 =D0=BD=D0=B0 =D1=81=D1= =82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B8 =D0=B8=D0=B7=D0=BB=D0= =B0=D0=B7.\n" -"=D0=A7=D0=B5=D1=81=D1=82=D0=BE =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D1=82=D0=B8 =D0=B7=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D1=83 =D1=82=D0= =B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=B8=D1=85 =D0=BE=D0=B1=D1= =80=D0=B0=D0=B7=D0=B0=D1=86=D0=B0 =D1=83 =D1=82=D0=BE=D0=BA=D1=83. =D0=93= =D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0= \n" -"=D0=BD=D1=83=D0=B4=D0=B8 =D0=BD=D0=B5=D0=BA=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE= =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=BF=D0=BE=D1=80= =D0=B5=D0=B4 =D1=83=D0=BE=D0=B1=D0=B8=D1=87=D0=B0=D1=98=D0=B5=D0=BD=D0=BE= =D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0." =20 -#: gnu/packages/base.scm:144 -msgid "Managing tar archives" -msgstr "=D0=A3=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=9A=D0=B5 =D1=82=D0= =B0=D1=80 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D0=BC=D0=B0" +#: gnu/packages/audio.scm:134 +msgid "Library for audio labelling" +msgstr "" =20 -#: gnu/packages/base.scm:146 +#: gnu/packages/audio.scm:136 msgid "" -"Tar provides the ability to create tar archives, as well as the\n" -"ability to extract, update or list files in an existing archive. It is= \n" -"useful for combining many files into one larger file, while maintaining= \n" -"directory structure and file information such as permissions and\n" -"creation/modification dates. GNU tar offers many extensions over the\n= " -"standard utility." +"aubio is a tool designed for the extraction of annotations from audio\n= " +"signals. Its features include segmenting a sound file before each of i= ts\n" +"attacks, performing pitch detection, tapping the beat and producing MID= I\n" +"streams from live audio." msgstr "" -"=D0=A2=D0=B0=D1=80 =D0=BE=D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98= =D0=B5 =D1=81=D0=BF=D0=BE=D1=81=D0=BE=D0=B1=D0=BD=D0=BE=D1=81=D1=82 =D0=B7= =D0=B0 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5 =D1=82=D0=B0=D1=80= =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0, =D0=BA=D0=B0=D0=BE =D0=B8 =D1=81=D0= =BF=D0=BE=D1=81=D0=BE=D0=B1=D0=BD=D0=BE=D1=81=D1=82\n" -"=D0=B7=D0=B0 =D0=B8=D0=B7=D0=B2=D0=BB=D0=B0=D1=87=D0=B5=D1=9A=D0=B5, =D0= =BE=D1=81=D0=B2=D0=B5=D0=B6=D0=B0=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B8=D0=BB=D0= =B8 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B4=D0= =B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=83 =D0=BF=D0=BE=D1=81=D1=82=D0= =BE=D1=98=D0=B5=D1=9B=D0=BE=D1=98 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B8.\n= " -"=D0=9A=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B0=D0=BD =D1=98=D0=B5 =D0=B7=D0= =B0 =D0=BE=D0=B1=D1=98=D0=B5=D0=B4=D0=B8=D1=9A=D0=B0=D0=B2=D0=B0=D1=9A=D0= =B5 =D0=B2=D0=B8=D1=88=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0= =B0 =D1=83 =D1=98=D0=B5=D0=B4=D0=BD=D1=83 =D0=B2=D0=B5=D1=9B=D1=83 =D0=B4= =D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D1=83, =D0=B4=D0=BE=D0=BA\n" -"=D0=B7=D0=B0=D0=B4=D1=80=D0=B6=D0=B0=D0=B2=D0=B0 =D1=81=D1=82=D1=80=D1=83= =D0=BA=D1=82=D1=83=D1=80=D1=83 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE= =D1=80=D0=B8=D1=98=D1=83=D0=BC=D0=B0 =D0=B8 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82= =D0=BA=D0=B5 =D0=BE =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8 =D0=BA= =D0=B0=D0=BE =D1=88=D1=82=D0=BE =D1=81=D1=83\n" -"=D0=BE=D0=B2=D0=BB=D0=B0=D1=88=D1=9B=D0=B5=D1=9A=D0=B0 =D0=B8 =D0=B4=D0= =B0=D1=82=D1=83=D0=BC=D0=B8 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0= =B0/=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B0. =D0=93=D0=BD=D1=83=D0=BE=D0=B2= =D1=82=D0=B0=D1=80 =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=BD=D0=BE=D0=B3=D0=B0= =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0\n" -"=D0=BF=D0=BE=D1=80=D0=B5=D0=B4 =D1=81=D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80= =D0=B4=D0=BD=D0=BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0= ." =20 -#: gnu/packages/base.scm:173 -msgid "Apply differences to originals, with optional backups" -msgstr "=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D1=9A=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5= =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D0=BD=D0=B0 =D0=BE=D1=80=D0=B8= =D0=B3=D0=B8=D0=BD=D0=B0=D0=BB=D0=B5, =D1=81=D0=B0 =D0=BE=D0=BF=D1=86=D0=B8= =D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0=B8=D0=BC =D1=80=D0=B5=D0=B7=D0=B5=D1=80= =D0=B2=D0=B0=D0=BC=D0=B0" +#: gnu/packages/audio.scm:228 +msgid "Digital audio workstation" +msgstr "" =20 -#: gnu/packages/base.scm:175 +#: gnu/packages/audio.scm:230 msgid "" -"Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" -"files depending on the contents of the diff file. It accepts several\n= " -"different diff formats. It may also be used to revert previously appli= ed\n" -"differences." +"Ardour is a multi-channel digital audio workstation, allowing users to\= n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" +"engineers, musicians, soundtrack editors and composers." msgstr "" -"=D0=97=D0=B0=D0=BA=D1=80=D0=BF=D0=BA=D0=BE =D1=98=D0=B5 =D0=BF=D1=80=D0= =BE=D0=B3=D1=80=D0=B0=D0=BC =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D1=80=D0=B8=D0= =BC=D0=B5=D1=9A=D1=83=D1=98=D0=B5 =D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5 =D0= =BD=D0=B0=D0=B4 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0= =B0 =D0=BD=D0=B0 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D1=83 =D1=80=D0=B0=D0=B7=D0= =BB=D0=B8=D0=BA=D0=B0\n" -"=D0=B8=D0=B7=D0=BD=D0=B5=D1=81=D0=B5=D0=BD=D0=B8=D1=85 =D0=BF=D1=80=D0=BE= =D0=B3=D1=80=D0=B0=D0=BC=D0=BE=D0=BC =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87= =D0=BD=D0=B8=D0=BA. =D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BC=D0=BE=D0= =B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A=D0= =B5=D0=BD=D0=B5 =D0=BD=D0=B0=D0=B4 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D0=BC =D0= =B8=D0=BB=D0=B8\n" -"=D0=B2=D0=B8=D1=88=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0= =D1=83 =D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0=BE= =D0=B4 =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B0=D1=98=D0=B0 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0= . =D0=9F=D1=80=D0=B8=D1=85=D0=B2=D0=B0=D1=82=D0=B0 =D0=B2=D0=B8=D1=88=D0= =B5\n" -"=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87=D0=B8=D1=82=D0=B8=D1=85 =D0=B7=D0=B0= =D0=BF=D0=B8=D1=81=D0=B0 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87=D0=BD=D0=B8= =D0=BA=D0=B0. =D0=A2=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=BC=D0=BE=D0=B6=D0= =B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D0= =BD =D0=B7=D0=B0 =D0=B2=D1=80=D0=B0=D1=9B=D0=B0=D1=9A=D0=B5 =D0=BF=D1=80=D0= =B5=D1=82=D1=85=D0=BE=D0=B4=D0=BD=D0=BE =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1= =9A=D0=B5=D0=BD=D0=B8=D1=85 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0." =20 -#: gnu/packages/base.scm:195 -msgid "Comparing and merging files" -msgstr "=D0=A3=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5= =D0=B8 =D1=81=D1=82=D0=B0=D0=BF=D0=B0=D1=9A=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=B0" +#: gnu/packages/audio.scm:262 +msgid "Tonewheel organ synthesizer" +msgstr "" =20 -#: gnu/packages/base.scm:197 +#: gnu/packages/audio.scm:264 msgid "" -"GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" -"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer. \n" -"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" -"interactive means to merge two files." +"AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" +"with drawbars, distortion and rotating speakers. The organ has three\n= " +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" +"bass section with five drawbars. A standalone JACK application and LV2= \n" +"plugins are provided." msgstr "" -"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0= =D0=BB=D0=B0 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D1=98=D0=B5 =D0=BF= =D0=B0=D0=BA=D0=B5=D1=82 =D0=BA=D0=BE=D1=98=D0=B8 =D1=81=D0=B0=D0=B4=D1=80= =D0=B6=D0=B8 =D0=B0=D0=BB=D0=B0=D1=82=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0=BE= =D0=BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB= =D0=B8=D0=BA=D0=B0\n" -"=D0=B8=D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5= =D0=BA=D0=B0. =D0=9D=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B0 =E2=80=9Ediff=E2= =80=9C =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0=B7=D0=B0= =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1=80= =D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D0=B4=D0=B2=D0=B5=D1=98=D1=83\n" -"=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0, =D0=B4=D0=BE=D0=BA =E2= =80=9Ecmp=E2=80=9C =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D1=83=D1=98=D0=B5= =D0=BF=D0=BE=D0=BC=D0=B5=D1=80=D0=B0=D1=98=D0=B5 =D0=B8 =D0=B1=D1=80=D0=BE= =D1=98=D0=B5=D0=B2=D0=B5 =D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B0 =D0=BD=D0=B0= =D0=BA=D0=BE=D1=98=D0=B8=D0=BC=D0=B0 =D1=81=D0=B5\n" -"=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D1=83=D1=98=D1=83. =E2=80=9Ediff3= =E2=80=9C =D0=B2=D0=B0=D0=BC =D0=BE=D0=BC=D0=BE=D0=B3=D1=83=D1=9B=D0=B0=D0= =B2=D0=B0 =D1=83=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0= =B5 =D1=82=D1=80=D0=B8 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5. = =D0=9D=D0=B0 =D0=BA=D1=80=D0=B0=D1=98=D1=83,\n" -"=E2=80=9Esdiff=E2=80=9C =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=B5=D1=92=D1=83= =D0=B4=D0=B5=D1=98=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=B8 =D0=BD=D0=B0=D1=87= =D0=B8=D0=BD =D0=B7=D0=B0 =D1=81=D1=82=D0=B0=D0=BF=D0=B0=D1=9A=D0=B5 =D0=B4= =D0=B2=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5." =20 -#: gnu/packages/base.scm:224 -msgid "Operating on files matching given criteria" -msgstr "=D0=A0=D0=B0=D0=B4=D1=9A=D0=B5 =D0=BD=D0=B0=D0=B4 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0=B0 =D0=BF=D1=80=D0=B5=D0=BC=D0= =B0 =D0=B4=D0=B0=D1=82=D0=B8=D0=BC =D1=83=D1=81=D0=BB=D0=BE=D0=B2=D0=B8=D0= =BC=D0=B0" +#: gnu/packages/audio.scm:301 +msgid "Audio plug-in pack for LV2 and JACK environments" +msgstr "" =20 -#: gnu/packages/base.scm:226 +#: gnu/packages/audio.scm:303 msgid "" -"Findutils supplies the basic file directory searching utilities of the\= n" -"GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" -"used to apply commands with arbitrarily long arguments." +"Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" +"The suite contains lots of effects (delay, modulation, signal processin= g,\n" +"filters, equalizers, dynamics, distortion and mastering effects),\n" +"instruments (SF2 player, organ simulator and a monophonic synthesizer) = and\n" +"tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -"=D0=9F=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=BF=D1=80=D0=BE=D0=BD= =D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B0 =D0=B4=D0=BE=D1=81=D1=82=D0=B0= =D0=B2=D1=99=D0=B0=D1=98=D1=83 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B0= =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=B7=D0=B0 =D0=BF=D1=80= =D0=B5=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5\n" -"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0=B5= =D0=BC=D0=B0. =D0=A1=D0=B0=D1=81=D1=82=D0=BE=D1=98=D0=B8 =D1=81=D0=B5 =D0= =BE=D0=B4 =D0=B4=D0=B2=D0=B0 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B0 =D0= =BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=BF=D1=80=D0=B5=D1=82=D1= =80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0: =E2=80=9Efind=E2=80=9C\n" -"=D0=B4=D1=83=D0=B1=D0=B8=D0=BD=D1=81=D0=BA=D0=B8 =D1=82=D1=80=D0=B0=D0=B6= =D0=B8 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B4=D0=B8= =D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC=D1=83 =D0=BF= =D1=80=D0=B5=D0=BC=D0=B0 =D0=B7=D0=B0=D0=B4=D0=B0=D1=82=D0=BE=D0=BC =D0=BC= =D0=B5=D1=80=D0=B8=D0=BB=D1=83 =D0=B0 =E2=80=9Elocate=E2=80=9C\n" -"=D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B1=D0=B0=D0=B7=D0=B8 =D0=BF=D0=BE=D0=B4= =D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BA=D0=BE=D1=98=D0=B5 =D0=BE=D0=B4=D0=B3= =D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D1=83=D0=BF=D0=B8=D1=82=D1=83= . =D0=A3=D0=BA=D1=99=D1=83=D1=87=D0=B5=D0=BD=D0=B0 =D1=81=D1=83 =D0=B4=D0= =B2=D0=B0\n" -"=D0=BF=D0=BE=D0=BC=D0=BE=D1=9B=D0=BD=D0=B0 =D0=B0=D0=BB=D0=B0=D1=82=D0=B0= : =E2=80=9Eupdatedb=E2=80=9C =D0=BE=D1=81=D0=B2=D0=B5=D0=B6=D0=B0=D0=B2=D0= =B0 =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0= =BA=D0=B5 =D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0= =BA=D0=B0 =D0=B0 =E2=80=9Exargs=E2=80=9C\n" -"=D1=81=D0=B5 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1= =82=D0=B8=D1=82=D0=B8 =D0=B7=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A=D0= =B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B8 =D1= =81=D0=B0 =D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B2=D0=BE=D1=99=D0=BD=D0=BE =D0= =B4=D1=83=D0=B3=D0=B8=D0=BC =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1= =82=D0=B8=D0=BC=D0=B0." =20 -#: gnu/packages/base.scm:278 -msgid "Core GNU utilities (file, text, shell)" -msgstr "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BA=D1=99=D1=83=D1=87=D0= =BD=D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 (=D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0, =D1=82=D0=B5=D0=BA=D1=81=D1=82, =D1=88= =D0=BA=D0=BE=D1=99=D0=BA=D0=B0)" +#: gnu/packages/audio.scm:346 +msgid "Sound and music computing system" +msgstr "" =20 -#: gnu/packages/base.scm:280 +#: gnu/packages/audio.scm:348 msgid "" -"GNU Coreutils includes all of the basic command-line tools that are\n" -"expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" -"functionality beyond that which is outlined in the POSIX standard." +"Csound is a user-programmable and user-extensible sound processing\n" +"language and software synthesizer." msgstr "" -"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BA=D1=99=D1=83=D1=87=D0=BD=D0=B0= =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=83=D0=BA=D1=99=D1=83= =D1=87=D1=83=D1=98=D1=83 =D1=81=D0=B2=D0=B5 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2= =D0=BD=D0=B5 =D0=B0=D0=BB=D0=B0=D1=82=D0=B5 =D0=BB=D0=B8=D0=BD=D0=B8=D1=98= =D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B8 =D0=BA=D0=BE=D1=98=D0=B8= =D1=81=D0=B5\n" -"=D0=BE=D1=87=D0=B5=D0=BA=D1=83=D1=98=D1=83 =D1=83 =D0=9F=D0=9E=D0=A1=D0= =98=D0=9A=D0=A1 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83. =D0=9E=D0=B1= =D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D1=83 =D0=BE=D1=81=D0=BD=D0=BE= =D0=B2=D0=BD=D0=B5 =D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D1=83= =D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=9A=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=BE=D0=BC,\n" -"=D1=88=D0=BA=D0=BE=D1=99=D0=BA=D0=BE=D0=BC =D0=B8 =D1=82=D0=B5=D0=BA=D1= =81=D1=82=D0=BE=D0=BC =D0=BD=D0=B0 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE=D0= =BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83. =D0=92=D0=B5=D1=9B=D0=B8= =D0=BD=D0=B0 =D0=BE=D0=B2=D0=B8=D1=85 =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=BD= =D1=83=D0=B4=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D0=BD=D0=B5= \n" -"=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0=BE= =D1=81=D1=82=D0=B8 =D0=B8=D0=B7=D0=B2=D0=B0=D0=BD =D0=BE=D0=BD=D0=B8=D1=85= =D0=BA=D0=BE=D1=98=D0=B5 =D1=81=D1=83 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0=B5= =D0=BD=D0=B5 =D1=83 =D0=9F=D0=9E=D0=A1=D0=98=D0=9A=D0=A1 =D1=81=D1=82=D0=B0= =D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D1=83." =20 -#: gnu/packages/base.scm:314 -msgid "Remake files automatically" -msgstr "=D0=A1=D0=B0=D0=BC=D0=BE=D1=81=D1=82=D0=B0=D0=BB=D0=BD=D0=BE =D0= =BF=D0=BE=D0=BD=D0=BE=D0=B2=D0=BD=D0=BE =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0= =B0=D1=9A=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0" +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 +msgid "C++ wrapper around the ALSA API" +msgstr "" =20 -#: gnu/packages/base.scm:316 +#: gnu/packages/audio.scm:393 msgid "" -"Make is a program that is used to control the production of\n" -"executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" -"generated from its source. It has powerful dependency resolution and t= he\n" -"ability to determine when files have to be regenerated after their sour= ces\n" -"change. GNU make offers many powerful extensions over the standard uti= lity." +"clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" +"ALSA PCM devices." msgstr "" -"=D0=9C=D0=B5=D1=98=D0=BA =D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0= =B0=D0=BC =D0=BA=D0=BE=D1=98=D0=B8 =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D1=82=D0=B8 =D0=B7=D0=B0 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1= =9A=D0=B5 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5=D0=BC =D0=B8=D0= =B7=D0=B2=D1=80=D1=88=D0=BD=D0=B8=D1=85 =D0=B8=D0=BB=D0=B8 =D0=B4=D1=80=D1= =83=D0=B3=D0=B8=D1=85\n" -"=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B8=D0=B7 =D1=9A=D0= =B8=D1=85=D0=BE=D0=B2=D0=B8=D1=85 =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0= =B8=D1=85. =D0=9F=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BA=D0=BE=D0=BC =D1=81= =D0=B5 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0 =D0=B8=D0=B7 =E2=80=9EM= akefile=E2=80=9C-=D0=B0, =D1=83 =D0=BA=D0=BE=D0=BC=D0=B5\n" -"=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B5=D1=80=D0=B8 =D0=BD=D0=B0= =D0=B2=D0=BE=D0=B4=D0=B5 =D0=BA=D0=B0=D0=BA=D0=BE =D1=81=D0=B5 =D1=81=D0=B2= =D0=B0=D0=BA=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=81= =D1=82=D0=B2=D0=B0=D1=80=D0=B0 =D0=B8=D0=B7 =D1=81=D0=B2=D0=BE=D0=B3 =D0=B8= =D0=B7=D0=B2=D0=BE=D1=80=D0=B0. =D0=9F=D0=BE=D1=81=D0=B5=D0=B4=D1=83=D1=98= =D0=B5\n" -"=D0=BC=D0=BE=D1=9B=D0=BD=D0=BE =D1=80=D0=B5=D1=88=D0=B0=D0=B2=D0=B0=D1=9A= =D0=B5 =D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0=B8= =D1=81=D0=BF=D0=BE=D1=81=D0=BE=D0=B1=D0=BD=D0=BE=D1=81=D1=82 =D0=BE=D0=B4= =D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0 =D0=BA=D0=B0=D0=B4=D0=B0= =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=82=D1=80=D0=B5=D0=B1= =D0=B0 =D0=B4=D0=B0\n" -"=D0=B1=D1=83=D0=B4=D1=83 =D0=BF=D0=BE=D0=BD=D0=BE=D0=B2=D0=BE =D1=81=D1= =82=D0=B2=D0=BE=D1=80=D0=B5=D0=BD=D0=B5 =D0=BD=D0=B0=D0=BA=D0=BE=D0=BD =D0= =B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B0 =D1=9A=D0=B8=D1=85=D0=BE=D0=B2=D0=B8=D1= =85 =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=B0. =D0=93=D0=BD=D1=83=D0=BE=D0=B2= =D0=BC=D0=B5=D1=98=D0=BA =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=BD=D0=BE=D0=B3= =D0=BE\n" -"=D0=BC=D0=BE=D1=9B=D0=BD=D0=B8=D1=85 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80= =D0=B5=D1=9A=D0=B0 =D0=BF=D0=BE=D1=80=D0=B5=D0=B4 =D1=81=D1=82=D0=B0=D0=BD= =D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3= =D0=B0=D0=BB=D0=B0." =20 -#: gnu/packages/base.scm:361 -msgid "Binary utilities: bfd gas gprof ld" -msgstr "=D0=91=D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D0=B0 =D0=BF=D0=BE=D0=BC=D0= =B0=D0=B3=D0=B0=D0=BB=D0=B0: bfd gas gprof ld" +#: gnu/packages/audio.scm:428 +msgid "SoundFont synthesizer" +msgstr "" =20 -#: gnu/packages/base.scm:363 +#: gnu/packages/audio.scm:430 msgid "" -"GNU Binutils is a collection of tools for working with binary files.\n" -"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= . Other\n" -"tools include programs to display binary profiling information, list th= e\n" -"strings in a binary file, and utilities for working with archives. The= \"bfd\"\n" -"library for working with executable and object formats is also included= ." +"FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" +"device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" +"also play midifiles using a Soundfont." msgstr "" -"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=B1=D0=B8=D0=BD=D0=B0=D1=80=D0=BD= =D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=98=D0=B5=D1=81= =D1=82=D0=B5 =D0=B7=D0=B1=D0=B8=D1=80=D0=BA=D0=B0 =D0=B0=D0=BB=D0=B0=D1=82= =D0=B0 =D0=B7=D0=B0 =D1=80=D0=B0=D0=B4 =D1=81=D0=B0 =D0=B8=D0=B7=D0=B2=D1= =80=D1=88=D0=BD=D0=B8=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0= =B0=D0=BC=D0=B0.\n" -"=D0=9C=D0=BE=D0=B6=D0=B4=D0=B0 =D1=98=D0=B5 =D0=BD=D0=B0=D1=98=D0=BF=D0= =BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B8=D1=98=D0=B8 =E2=80=9Eld=E2=80=9C, =D0=BF= =D0=BE=D0=B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=87, =D0=B8 =E2=80=9Eas=E2=80= =9C, =D1=81=D0=B0=D1=81=D1=82=D0=B0=D0=B2=D0=BD=D0=B8=D0=BA. =D0=9E=D1=81= =D1=82=D0=B0=D0=BB=D0=B8 =D0=B0=D0=BB=D0=B0=D1=82=D0=B8\n" -"=D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0= =D0=BC=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D0=B8=D0=B2= =D0=B0=D1=9A=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=B1= =D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D0=BE=D0=B3 =D0=BF=D1=80=D0=BE=D1=84=D0=B8= =D0=BB=D0=B8=D1=81=D0=B0=D1=9A=D0=B0, =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D0=B8= =D0=B2=D0=B0=D1=9A=D0=B5\n" -"=D0=BD=D0=B8=D1=81=D0=BA=D0=B8 =D1=83 =D0=B8=D0=B7=D0=B2=D1=80=D1=88=D0= =BD=D0=BE=D1=98 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8, =D0=B8 = =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=B7=D0=B0 =D1=80=D0=B0= =D0=B4 =D1=81=D0=B0 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D0=BC=D0=B0. =D0= =A2=D1=83 =D1=98=D0=B5 =D1=82=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=B8 \n" -"=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =E2=80=9Eb= fd=E2=80=9C =D0=B7=D0=B0 =D1=80=D0=B0=D0=B4 =D1=81=D0=B0 =D0=B8=D0=B7=D0=B2= =D1=80=D1=88=D0=BD=D0=B8=D0=BC =D0=B8 =D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D0=B8= =D0=BC=D0=B0 =D0=BE=D0=B1=D1=98=D0=B5=D0=BA=D0=B0=D1=82=D0=B0." =20 -#: gnu/packages/base.scm:504 -msgid "The GNU C Library" -msgstr "=D0=93=D0=BD=D1=83 =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1= =82=D0=B5=D0=BA=D0=B0" +#: gnu/packages/audio.scm:462 +msgid "MPEG-4 and MPEG-2 AAC decoder" +msgstr "" =20 -#: gnu/packages/base.scm:506 +#: gnu/packages/audio.scm:464 msgid "" -"Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" -"printf, exit...\n" -"\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" -"with the Linux kernel." +"FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" +"PS, and DAB+." msgstr "" -"=D0=A1=D0=B2=D0=B0=D0=BA=D0=BE=D0=BC =D0=88=D1=83=D0=BD=D0=B8=D0=BA=D1=81= =D0=BE=D0=BB=D0=B8=D0=BA=D0=BE=D0=BC =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82= =D0=B8=D0=B2=D0=BD=D0=BE=D0=BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83= =D1=98=D0=B5 =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BD=D0=B0 =D0=A6 =D0= =B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0: =D0=B1=D0=B8=D0= =B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0\n" -"=D0=BA=D0=BE=D1=98=D0=B0 =D0=BE=D0=B4=D1=80=D0=B5=D1=92=D1=83=D1=98=D0=B5= =E2=80=9E=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=81=D0=BA=D0=B5 =D0=BF=D0= =BE=D0=B7=D0=B8=D0=B2=D0=B5=E2=80=9C =D0=B8 =D0=BE=D1=81=D1=82=D0=B0=D0=BB= =D0=B5 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B5 =D0=BE=D0=BB=D0=B0=D0=BA= =D1=88=D0=B8=D1=86=D0=B5 =D0=BA=D0=B0=D0=BE =D1=88=D1=82=D0=BE =D1=81=D1=83= \n" -"=E2=80=9Eopen, malloc, printf, exit...=E2=80=9C\n" -"\n" -"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0= =B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D1=82=D0=B8 =D0=BA=D0=B0=D0=BE =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0= =BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=83 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE=D0= =BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83 =D0=B8 =D0=B2=D0=B5=D1=9B=D0= =B8=D0=BD=D0=B8\n" -"=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D0=B0 =D1=81=D0=B0 =D0=9B=D0=B8=D0= =BD=D1=83=D0=BA=D1=81 =D1=98=D0=B5=D0=B7=D0=B3=D1=80=D0=BE=D0=BC." =20 -#: gnu/packages/base.scm:575 -msgid "Database of current and historical time zones" -msgstr "=D0=91=D0=B0=D0=B7=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0= =BA=D0=B0 =D0=BE =D1=82=D0=B5=D0=BA=D1=83=D1=9B=D0=B8=D0=BC =D0=B8 =D0=B7= =D0=B0=D1=81=D1=82=D0=B0=D1=80=D0=B5=D0=BB=D0=B8=D0=BC =D0=B2=D1=80=D0=B5= =D0=BC=D0=B5=D0=BD=D1=81=D0=BA=D0=B8=D0=BC =D0=B7=D0=BE=D0=BD=D0=B0=D0=BC= =D0=B0" +#: gnu/packages/audio.scm:493 +msgid "Signal processing language" +msgstr "" + +#: gnu/packages/audio.scm:495 +msgid "Faust is a programming language for realtime audio signal process= ing." +msgstr "" =20 -#: gnu/packages/base.scm:576 +#: gnu/packages/audio.scm:530 +msgid "GUS compatible patches for MIDI players" +msgstr "" + +#: gnu/packages/audio.scm:532 msgid "" -"The Time Zone Database (often called tz or zoneinfo)\n" -"contains code and data that represent the history of local time for man= y\n" -"representative locations around the globe. It is updated periodically t= o\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" -"and daylight-saving rules." +"FreePats is a project to create a free and open set of GUS compatible\n= " +"patches that can be used with softsynths such as Timidity and WildMidi.= " msgstr "" -"=D0=91=D0=B0=D0=B7=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0= =D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D1=81=D0=BA=D0=B5 =D0=B7=D0=BE=D0=BD= =D0=B5 (=D1=87=D0=B5=D1=81=D1=82=D0=BE =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0= =D0=BD=D0=B0 =E2=80=9Etz=E2=80=9C =D0=B8=D0=BB=D0=B8 =E2=80=9Ezoneinfo=E2= =80=9C)\n" -"=D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8 =D0=BA=D0=BE=D0=B4 =D0=B8 =D0=BF=D0= =BE=D0=B4=D0=B0=D1=82=D0=BA=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D1=80=D0= =B5=D0=B4=D1=81=D1=82=D0=B0=D0=B2=D1=99=D0=B0=D1=98=D1=83 =D0=B8=D1=81=D1= =82=D0=BE=D1=80=D0=B8=D1=98=D0=B0=D1=82 =D0=BC=D0=B5=D1=81=D0=BD=D0=BE=D0= =B3 =D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B0 =D0=B7=D0=B0\n" -"=D0=BC=D0=BD=D0=BE=D0=B3=D0=B0 =D0=BF=D1=80=D0=B5=D0=B4=D1=81=D1=82=D0=B0= =D0=B2=D1=99=D0=B0=D1=98=D1=83=D1=9B=D0=B0 =D0=BC=D0=B5=D1=81=D1=82=D0=B0= =D1=88=D0=B8=D1=80=D0=BE=D0=BC =D1=81=D0=B2=D0=B5=D1=82=D0=B0. =D0=9F=D0= =BE=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BE =D1=81=D0=B5 =D0=BE=D1=81=D0= =B2=D0=B5=D0=B6=D0=B0=D0=B2=D0=B0 =D0=BA=D0=B0=D0=BA=D0=BE\n" -"=D0=B1=D0=B8 =D0=BE=D1=81=D0=BB=D0=B8=D0=BA=D0=B0=D0=BB=D0=B0 =D0=BF=D1= =80=D0=BE=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BD=D0=B0 =D0=B3=D1=80=D0=B0=D0=BD=D0= =B8=D1=86=D0=B0=D0=BC=D0=B0 =D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D1=81=D0= =BA=D0=B8=D1=85 =D0=B7=D0=BE=D0=BD=D0=B0 =D0=BA=D0=BE=D1=98=D0=B5 =D0=B4=D0= =BE=D0=BD=D0=BE=D1=81=D0=B5 =D0=BF=D0=BE=D0=BB=D0=B8=D1=82=D0=B8=D1=87=D0= =BA=D0=B0\n" -"=D1=82=D0=B5=D0=BB=D0=B0, =D0=BF=D0=BE=D0=BC=D0=B5=D1=80=D0=B0=D1=98=D0= =B5 =D0=9A=D0=A3=D0=92-=D0=B0, =D0=B8 =D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB= =D0=B0 =D1=83=D1=88=D1=82=D0=B5=D0=B4=D0=B5 =D0=B4=D0=BD=D0=B5=D0=B2=D0=BD= =D0=BE=D0=B3 =D1=81=D0=B2=D0=B5=D1=82=D0=BB=D0=B0." =20 -#: gnu/packages/base.scm:1004 -msgid "GNU C++ standard library (intermediate)" -msgstr "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=A6++ =D1=81=D1=82=D0=B0= =D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B0 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0 (=D0=BF=D0=BE=D1=81=D1=80=D0=B5=D0=B4=D0=BD= =D0=B8=D1=87=D0=BA=D0=B0)" +#: gnu/packages/audio.scm:585 +msgid "Virtual guitar amplifier" +msgstr "" =20 -#: gnu/packages/base.scm:1098 -msgid "The linker wrapper" -msgstr "=D0=9E=D0=BC=D0=BE=D1=82=D0=B0=D1=87 =D0=BF=D0=BE=D0=B2=D0=B5=D0= =B7=D0=B8=D0=B2=D0=B0=D1=87=D0=B0" +#: gnu/packages/audio.scm:586 +msgid "" +"Guitarix is a virtual guitar amplifier running JACK.\n" +"Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" +"routed separately and deliver a processed stereo-signal via JACK. You = may\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" +"from a simple noise gate to modulation effects like flanger, phaser or\= n" +"auto-wah." +msgstr "" =20 -#: gnu/packages/base.scm:1100 +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" +msgstr "" + +#: gnu/packages/audio.scm:634 msgid "" -"The linker wrapper (or `ld-wrapper') wraps the linker to add any\n" -"missing `-rpath' flags, and to detect any misuse of libraries outside o= f the\n" -"store." +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." msgstr "" -"=D0=9E=D0=BC=D0=BE=D1=82=D0=B0=D1=87 =D0=BF=D0=BE=D0=B2=D0=B5=D0=B7=D0=B8= =D0=B2=D0=B0=D1=87=D0=B0 (=D0=B8=D0=BB=D0=B8 =E2=80=9Eld-wrapper=E2=80=9C= ) =D0=BE=D0=B1=D0=BC=D0=BE=D1=82=D0=B0=D0=B2=D0=B0 =D0=BF=D0=BE=D0=B2=D0=B5= =D0=B7=D0=B8=D0=B2=D0=B0=D1=87=D0=B0 =D0=B4=D0=B0 =D0=B1=D0=B8 =D0=B4=D0=BE= =D0=B4=D0=B0=D0=BE\n" -"=D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D1=83=D1=9B=D1=83 =D0=BE= =D0=BF=D1=86=D0=B8=D1=98=D1=83 =E2=80=9E-rpath=E2=80=9C, =D0=B8 =D0=B4=D0= =B0 =D0=B1=D0=B8 =D0=BE=D1=82=D0=BA=D1=80=D0=B8=D0=BE =D0=BB=D0=BE=D1=88=D0= =B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D1=9A=D0=B5 =D0=B1=D0=B8=D0= =B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0\n" -"=D0=B8=D0=B7=D0=B2=D0=B0=D0=BD =D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0=B8=D1=88= =D1=82=D0=B0." =20 -#: gnu/packages/base.scm:1264 -msgid "Complete GCC tool chain for C/C++ development" -msgstr "=D0=9F=D0=BE=D1=82=D0=BF=D1=83=D0=BD=D0=B8 =D0=93=D0=A6=D0=A6 =D1= =81=D0=BA=D1=83=D0=BF =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=B7=D0=B0 =D0=A6/= =D0=A6++ =D1=80=D0=B0=D0=B7=D0=B2=D0=BE=D1=98" +#: gnu/packages/audio.scm:678 +msgid "LV2 convolution reverb" +msgstr "" =20 -#: gnu/packages/base.scm:1266 +#: gnu/packages/audio.scm:680 msgid "" -"This package provides a complete GCC tool chain for C/C++ development t= o\n" -"be installed in user profiles. This includes GCC, as well as libc (hea= ders\n" -"and binaries, plus debugging symbols in the 'debug' output), and Binuti= ls." +"IR is a low-latency, real-time, high performance signal convolver\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" +"2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -"=D0=9E=D0=B2=D0=B0=D1=98 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =D1=81=D0=B0=D0= =B4=D1=80=D0=B6=D0=B8 =D0=BF=D0=BE=D1=82=D0=BF=D1=83=D0=BD=D0=B8 =D0=93=D0= =A6=D0=A6 =D1=81=D0=BA=D1=83=D0=BF =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=B7=D0= =B0 =D0=A6/=D0=A6++ =D1=80=D0=B0=D0=B7=D0=B2=D0=BE=D1=98\n" -"=D0=B7=D0=B0 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D1=9A= =D0=B5 =D1=83 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D0=BD=D0=B8=D1=87=D0=BA=D0=B8= =D0=BC =D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB=D0=B8=D0=BC=D0=B0. =D0=A3=D0= =BA=D1=99=D1=83=D1=87=D1=83=D1=98=D0=B5 =D0=93=D0=A6=D0=A6, =D0=BA=D0=B0=D0= =BE =D0=B8 =E2=80=9Elibc=E2=80=9C (=D0=B7=D0=B0=D0=B3=D0=BB=D0=B0=D0=B2=D1= =99=D0=B0\n" -"=D0=B8 =D0=B8=D0=B7=D0=B2=D1=80=D1=88=D0=BD=D0=B5, =D0=BF=D0=BB=D1=83=D1= =81 =D1=81=D0=B8=D0=BC=D0=B1=D0=BE=D0=BB=D0=B5 =D0=BF=D1=80=D0=BE=D1=87=D0= =B8=D1=88=D1=9B=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0 =D1=83 =E2=80=9Edebug=E2=80= =9C =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D1=83), =D0=B8 =E2=80=9EBinutils=E2=80= =9C." =20 -#: gnu/packages/guile.scm:99 gnu/packages/guile.scm:166 -msgid "Scheme implementation intended especially for extensions" -msgstr "=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0 =D1=88=D0=B5=D0=BC=D0= =B5 =D0=BD=D0=B0=D1=80=D0=BE=D1=87=D0=B8=D1=82=D0=BE =D0=BE=D1=81=D0=BC=D0= =B8=D1=88=D1=99=D0=B5=D0=BD=D0=B0 =D0=B7=D0=B0 =D0=BF=D1=80=D0=BE=D1=88=D0= =B8=D1=80=D0=B5=D1=9A=D0=B0" +#: gnu/packages/audio.scm:710 +msgid "JACK audio connection kit" +msgstr "" =20 -#: gnu/packages/guile.scm:101 gnu/packages/guile.scm:168 +#: gnu/packages/audio.scm:712 msgid "" -"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" -"official extension language of the GNU system. It is an implementation= of\n" -"the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" -"without requiring the source code to be rewritten." +"JACK is a low-latency audio server. It can connect a number of\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" +"in that it has been designed from the ground up to be suitable for\n" +"professional audio work. This means that it focuses on two key areas:\= n" +"synchronous execution of all clients, and low latency operation." msgstr "" -"=D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D1=98=D0=B5 =D0=93=D0=BD=D1=83=D0=BE=D0= =B2 =D1=81=D0=B2=D0=B5=D0=BF=D1=80=D0=B8=D1=81=D1=83=D1=82=D0=B0=D0=BD =D0= =BF=D0=B0=D0=BC=D0=B5=D1=82=D0=B0=D0=BD =D1=98=D0=B5=D0=B7=D0=B8=D0=BA =D0= =B7=D0=B0 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0, =D0=B7=D0= =B2=D0=B0=D0=BD=D0=B8=D1=87=D0=BD=D0=B8 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA\n" -"=D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=B7=D0=B0 =D0= =93=D0=BD=D1=83=D0=BE=D0=B2 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC. =D0=A2= =D0=BE =D1=98=D0=B5 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0 =D0=A8=D0=B5= =D0=BC=D0=B5 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA=D0=B0 =D0=BA=D0=BE=D1=98=D0=B8= =D0=BC=D0=BE=D0=B6=D0=B5 =D0=BB=D0=B0=D0=BA=D0=BE\n" -"=D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD =D1= =83 =D0=B4=D1=80=D1=83=D0=B3=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0= =BC=D0=B5 =D0=BA=D0=B0=D0=BA=D0=BE =D0=B1=D0=B8 =D0=BE=D0=B1=D0=B5=D0=B7=D0= =B1=D0=B5=D0=B4=D0=B8=D0=BE =D0=B8=D1=81=D0=BF=D0=BB=D0=B0=D1=82=D0=B8=D0= =B2 =D0=BD=D0=B0=D1=87=D0=B8=D0=BD =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0= =B8=D0=B2=D0=B0=D1=9A=D0=B0\n" -"=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0=BE= =D1=81=D1=82=D0=B8 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B0 =D0=B1= =D0=B5=D0=B7 =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B5 =D0=BF=D0=BE=D0=BD= =D0=BE=D0=B2=D0=BD=D0=BE=D0=B3 =D0=BF=D0=B8=D1=81=D0=B0=D1=9A=D0=B0 =D0=B8= =D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=BE=D0=B3 =D0=BA=D0=BE=D0=B4=D0=B0." =20 -#: gnu/packages/guile.scm:211 -msgid "Framework for building readers for GNU Guile" -msgstr "=D0=A0=D0=B0=D0=B4=D0=BD=D0=B8 =D1=81=D0=BA=D0=BB=D0=BE=D0=BF =D0= =B7=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D1=87=D0=B8=D1= =82=D0=B0=D1=87=D0=B0 =D0=B7=D0=B0 =D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0= =BB=D0=B0" +#: gnu/packages/audio.scm:810 +msgid "Simple LV2 host for JACK" +msgstr "" =20 -#: gnu/packages/guile.scm:213 +#: gnu/packages/audio.scm:812 msgid "" -"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" -"\n" -"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wri= tten,\n" -"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" -"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-d= erived\n" -"document syntax.\n" -"\n" -"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" -"hopefully more powerful and flexible (for instance, one may instantiate= as\n" -"many readers as needed)." +"Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" +"plugins and exposes their ports as JACK ports, essentially making any L= V2\n" +"plugin function as a JACK application." msgstr "" -"=D0=93=D1=83=D0=B8=D0=BB=D0=B5-=D1=87=D0=B8=D1=82=D0=B0=D1=87 =D1=98=D0= =B5 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B0=D0=BD =D1= =80=D0=B0=D0=B4=D0=BD=D0=B8 =D1=81=D0=BA=D0=BB=D0=BE=D0=BF =D0=B7=D0=B0 =D0= =B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D1=87=D0=B8=D1=82=D0=B0=D1= =87=D0=B0 =D0=B7=D0=B0 =D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0=BB=D0=B0.= \n" -"\n" -"=D0=97=D0=B0=D0=BC=D0=B8=D1=81=D0=B0=D0=BE =D1=98=D0=B5 =D0=BE=D0=BB=D0= =B0=D0=BA=D1=88=D0=B0=D1=82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1= =9A=D1=83 =D0=BF=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=B0=D0=BA=D0=B0 =D0=BA=D0= =BE=D1=98=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D1=83=D1=98=D1=83 =D0= =93=D1=83=D0=B8=D0=BB=D0=BE=D0=B2 =D0=BF=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0= =B0=D0=BA\n" -"=D1=87=D0=B8=D1=82=D0=B0=D1=9A=D0=B0. =D0=A7=D0=B8=D1=82=D0=B0=D1=87=D0= =B8 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=B2=D0= =B0=D1=98=D1=83 =D1=80=D0=B0=D0=B7=D0=BD=D0=B5 =D0=B2=D0=B0=D1=80=D0=B8=D1= =98=D0=B0=D0=BD=D1=82=D0=B5 =D1=81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81=D0= =B5 =D0=BC=D0=BE=D0=B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BB=D0=B0=D0=BA=D0= =BE\n" -"=D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=B8, =D0=BF=D0=BE =D0=BC=D0= =BE=D0=B3=D1=83=D1=9B=D1=81=D1=82=D0=B2=D1=83 =D0=BF=D0=BE=D0=BD=D0=BE=D0= =B2=D0=BD=D0=B8=D0=BC =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D1=9A=D0= =B5=D0=BC =D0=BF=D0=BE=D1=81=D1=82=D0=BE=D1=98=D0=B5=D1=9B=D0=B8=D1=85 =E2= =80=9E=D1=87=D0=B8=D1=82=D0=B0=D1=87=D0=B0 =E2=80=9C =D1=87=D0=B8=D1=82=D0= =B0=D1=87=D0=B0\n" -"=D1=81=D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B5 =D0=A8=D0=B5= =D0=BC=D0=B5. =D0=9D=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80, =D0=BA=D0= =BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D1=81=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0= =B8=D0=BC=D0=B5=D0=BD=D1=83 =D1=81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81=D0= =B5 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D1=82=D0=B0 =D0=BA=D0=BE=D1= =98=D0=B0 =D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B8=D0=BB=D0=B0=D0=B7=D0=B8 =D0= =B8=D0=B7 =D0=A05=D0=A0=D0=A1 =D0=A1=D0=BA=D1=80=D0=B8=D0=B1=D0=B8=D0=BB=D0= =BE=D0=B0.\n" -"\n" -"=D0=9F=D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF =D0=93=D1=83=D0=B8=D0=BB=D0=B5= -=D1=87=D0=B8=D1=82=D0=B0=D1=87=D0=B0 =D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D1=87= =D0=B0=D0=BD =D0=9E=D0=BF=D1=88=D1=82=D0=B5=D0=BC =D0=9B=D0=B8=D1=81=D0=BF= =D0=BE=D0=B2=D0=BE=D0=BC =E2=80=9E=D1=87=D0=B8=D1=82=D0=B0=D1=9A=D1=83 =D1= =82=D0=B0=D0=B1=D0=B5=D0=BB=D0=B5=E2=80=9C, =D0=B0=D0=BB=D0=B8 =D1=98=D0=B5= =D0=BD=D0=B0\n" -"=D1=81=D1=80=D0=B5=D1=9B=D1=83 =D0=BC=D0=BD=D0=BE=D0=B3=D0=BE =D0=BC=D0= =BE=D1=9B=D0=BD=D0=B8=D1=98=D0=B8 =D0=B8 =D0=BF=D1=80=D0=B8=D0=BB=D0=B0=D0= =B3=D0=BE=D0=B4=D1=99=D0=B8=D0=B2=D0=B8=D1=98=D0=B8 (=D0=BD=D0=B0 =D0=BF=D1= =80=D0=B8=D0=BC=D0=B5=D1=80, =D0=BD=D0=B5=D0=BA=D0=BE =D0=BC=D0=BE=D0=B6=D0= =B5 =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D0=BD=D0=B5\n" -"=D0=BE=D0=BD=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE =D1=87=D0=B8=D1=82=D0=B0=D1=87= =D0=B0 =D0=BA=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE =D0=BC=D1=83 =D1=98=D0=B5 =D0= =BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BD=D0=BE)." =20 -#: gnu/packages/guile.scm:267 -msgid "Guile bindings to ncurses" -msgstr "=D0=93=D1=83=D0=B8=D0=BB=D0=B5=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE=D0= =B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1=81=D0=B0 =D0=B5=D0=BD-=D0= =BA=D1=83=D1=80=D1=81=D0=BE=D0=BC" +#: gnu/packages/audio.scm:855 +msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" +msgstr "" =20 -#: gnu/packages/guile.scm:269 +#: gnu/packages/audio.scm:857 msgid "" -"guile-ncurses provides Guile language bindings for the ncurses\n" -"library." +"LADSPA is a standard that allows software audio processors and effects\= n" +"to be plugged into a wide range of audio synthesis and recording packag= es." msgstr "" -"=D0=B3=D1=83=D0=B8=D0=BB=D0=B5-=D0=BD=D0=BA=D1=83=D1=80=D1=81=D0=B8=D1=81= =D0=BE=D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D0=B5 =D0=BF=D0=BE= =D0=B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=93=D1=83=D0=B8=D0=BB= =D0=B5 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA=D0=B0 =D0=B7=D0=B0 =D0=BD=D0=BA=D1=83= =D1=80=D1=81=D0=B8=D1=81\n" -"=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D1=83." =20 -#: gnu/packages/guile.scm:289 -msgid "Run jobs at scheduled times" -msgstr "=D0=9F=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5 =D0=BF=D0= =BE=D1=81=D0=BB=D0=BE=D0=B2=D0=B0 =D1=83 =D0=B7=D0=B0=D0=BA=D0=B0=D0=B7=D0= =B0=D0=BD=D0=BE =D0=B2=D1=80=D0=B5=D0=BC=D0=B5" +#: gnu/packages/audio.scm:893 +msgid "Audio application session manager" +msgstr "" =20 -#: gnu/packages/guile.scm:291 +#: gnu/packages/audio.scm:895 msgid "" -"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" -"Guile, so its configuration can be written in Scheme; the original cron= \n" -"format is also supported." +"LASH is a session management system for audio applications. It allows\= n" +"you to save and restore audio sessions consisting of multiple interconn= eced\n" +"applications, restoring program state (i.e. loaded patches) and the\n" +"connections between them." msgstr "" -"=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=9C=D0=BA=D1=80=D0=BE=D0=BD =D1=98=D0= =B5 =D0=BF=D0=BE=D1=82=D0=BF=D1=83=D0=BD=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0= =BD=D0=B0 =D0=B7=D0=B0 =D0=92=D0=B8=D0=BA=D1=81=D0=B8 =D0=BA=D1=80=D0=BE=D0= =BD. =D0=9A=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D1=81=D0=B5 =D0=B7=D0=B0= =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5\n" -"=D0=B7=D0=B0=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BD=D0=B0 =D0=B7=D0= =B0=D0=BA=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5, =D1=80=D0=B5=D1=86=D0= =B8=D0=BC=D0=BE =D1=81=D0=B2=D0=B0=D0=BA=D0=BE=D0=B3 =D1=81=D0=B0=D1=82=D0= =B0 =D0=B8=D0=BB=D0=B8 =D1=81=D0=B2=D0=B0=D0=BA=D0=BE=D0=B3 =D0=BF=D0=BE=D0= =BD=D0=B5=D0=B4=D0=B5=D1=99=D0=BA=D0=B0. =D0=9C=D0=BA=D1=80=D0=BE=D0=BD\= n" -"=D1=98=D0=B5 =D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD =D1=83 =D0=93=D1= =83=D0=B8=D0=BB=D0=B5=D1=83, =D1=82=D0=B0=D0=BA=D0=BE =D0=B4=D0=B0 =D1=9A= =D0=B5=D0=B3=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE=D0=B4=D0=B5=D1=88=D0=B0=D0=B2= =D0=B0=D1=9A=D0=B5 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BD= =D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=BE =D1=83 =D0=A8=D0=B5=D0=BC=D0=B8= ;\n" -"=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=B8 =D0=BA=D1=80=D0=BE=D0=BD=D0=BE= =D0=B2 =D0=B7=D0=B0=D0=BF=D0=B8=D1=81 =D1=98=D0=B5 =D1=82=D0=B0=D0=BA=D0=BE= =D1=92=D0=B5 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD." =20 -#: gnu/packages/guile.scm:319 -msgid "Collection of useful Guile Scheme modules" -msgstr "=D0=97=D0=B1=D0=B8=D1=80=D0=BA=D0=B0 =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D0=BD=D0=B8=D1=85 =D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D0=B0 =D0=93=D1=83=D0= =B8=D0=BB=D0=B5 =D0=A8=D0=B5=D0=BC=D0=B5" +#: gnu/packages/audio.scm:916 +msgid "Bauer stereophonic-to-binaural DSP" +msgstr "" =20 -#: gnu/packages/guile.scm:321 +#: gnu/packages/audio.scm:918 msgid "" -"guile-lib is intended as an accumulation place for pure-scheme Guile\n" -"modules, allowing for people to cooperate integrating their generic Gui= le\n" -"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" -"for Guile\"." +"The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" +"for headphone prolonged listening to disable superstereo fatigue withou= t\n" +"essential distortions." msgstr "" -"=D0=B3=D1=83=D0=B8=D0=BB=D0=B5-=D0=B1=D0=B8=D0=B1=D0=BB =D1=98=D0=B5 =D0= =B7=D0=B0=D0=BC=D0=B8=D1=88=D1=99=D0=B5=D0=BD=D0=B0 =D0=BA=D0=B0=D0=BE =D0= =BC=D0=B5=D1=81=D1=82=D0=BE =D1=81=D0=BA=D1=83=D0=BF=D1=99=D0=B0=D1=9A=D0= =B0 =D0=B7=D0=B0 =D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D0=BC=D0=BE=D0=B4=D1=83=D0= =BB=D0=B5 =D1=87=D0=B8=D1=81=D1=82=D0=B5-=D1=88=D0=B5=D0=BC=D0=B5,\n" -"=D0=BE=D0=BC=D0=BE=D0=B3=D1=83=D1=9B=D0=B0=D0=B2=D0=B0=D1=98=D1=83=D1=9B= =D0=B8 =D1=99=D1=83=D0=B4=D0=B8=D0=BC=D0=B0 =D0=B4=D0=B0 =D1=81=D0=B0=D1=80= =D0=B0=D1=92=D1=83=D1=98=D1=83 =D1=81=D1=98=D0=B5=D0=B4=D0=B8=D1=9A=D0=B0= =D0=B2=D0=B0=D1=98=D1=83=D1=9B=D0=B8 =D1=9A=D0=B8=D1=85=D0=BE=D0=B2=D0=B5= =D0=BE=D0=BF=D1=88=D1=82=D0=B5 =D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D0=BC=D0=BE= =D0=B4=D1=83=D0=BB=D0=B5\n" -"=D1=83 =D0=BE=D0=B1=D1=98=D0=B5=D0=B4=D0=B8=D1=9A=D0=B5=D0=BD=D1=83 =D0= =B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D1=83. =D0=A1=D0=B5=D1= =82=D0=B8=D1=82=D0=B5 =D1=81=D0=B5 =D1=81=D0=B0=D0=BC=D0=BE =E2=80=9Edown= -scaled, limited-scope CPAN\n" -"for Guile=E2=80=9C." =20 -#: gnu/packages/guile.scm:352 -msgid "JSON module for Guile" -msgstr "=D0=88=D0=A1=D0=9E=D0=9D =D0=BC=D0=BE=D0=B4=D1=83=D0=BB =D0=B7=D0= =B0 =D0=93=D1=83=D0=B8=D0=BB=D0=B0" +#: gnu/packages/audio.scm:943 +msgid "Implementation of the Open Sound Control protocol" +msgstr "" =20 -#: gnu/packages/guile.scm:354 +#: gnu/packages/audio.scm:945 msgid "" -"Guile-json supports parsing and building JSON documents according to th= e\n" -"http:://json.org specification. These are the main features:\n" -"- Strictly complies to http://json.org specification.\n" -"- Build JSON documents programmatically via macros.\n" -"- Unicode support for strings.\n" -"- Allows JSON pretty printing." +"liblo is a lightweight library that provides an easy to use\n" +"implementation of the Open Sound Control (OSC) protocol." msgstr "" -"=D0=93=D1=83=D0=B8=D0=BB=D0=B5-=D1=98=D1=81=D0=BE=D0=BD =D0=BF=D0=BE=D0= =B4=D1=80=D1=88=D0=BA=D0=B0 =D0=BE=D0=B1=D1=80=D0=B0=D0=B4=D0=B5 =D0=B8 =D0= =B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5 =D0=88=D0=A1=D0=9E=D0=9D =D0= =B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0 =D0=BF=D1=80=D0= =B5=D0=BC=D0=B0\n" -"=D0=BE=D0=B4=D1=80=D0=B5=D0=B4=D0=B1=D0=B8 =E2=80=9Ehttp:://json.org=E2= =80=9C-=D0=B0. =D0=9E=D0=B2=D0=BE =D1=81=D1=83 =D0=B3=D0=BB=D0=B0=D0=B2=D0= =BD=D0=B5 =D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5:\n" -"=E2=80=94 =D0=98=D0=B7=D1=80=D0=B8=D1=87=D0=B8=D1=82=D0=B0 =D1=81=D0=BA= =D0=B0=D0=B4=D0=BD=D0=BE=D1=81=D1=82 =D1=81=D0=B0 =D0=BE=D0=B4=D1=80=D0=B5= =D0=B4=D0=B1=D0=BE=D0=BC =E2=80=9Ehttp://json.org=E2=80=9C-=D0=B0.\n" -"=E2=80=94 =D0=98=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B0 =D0=88=D0=A1= =D0=9E=D0=9D =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0= =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D1=99=D0=B8=D0=B2=D0=BE =D0=BF= =D1=83=D1=82=D0=B5=D0=BC =D0=BC=D0=B0=D0=BA=D1=80=D0=BE=D0=B0.\n" -"=E2=80=94 =D0=9F=D0=BE=D0=B4=D1=80=D1=88=D0=BA=D0=B0 =D1=98=D1=83=D0=BD= =D0=B8=D0=BA=D0=BE=D0=B4=D0=B0 =D0=B7=D0=B0 =D0=BD=D0=B8=D1=81=D0=BA=D0=B5= .\n" -"=E2=80=94 =D0=94=D0=BE=D0=BF=D1=83=D1=88=D1=82=D0=B0 =D1=84=D0=B8=D0=BD= =D0=BE =D0=88=D0=A1=D0=9E=D0=9D =D1=88=D1=82=D0=B0=D0=BC=D0=BF=D0=B0=D1=9A= =D0=B5." =20 -#: gnu/packages/lout.scm:109 -msgid "Lout, a document layout system similar in style to LaTeX" -msgstr "=D0=9B=D0=BE=D1=83=D1=82, =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC =D0= =B8=D0=B7=D0=B3=D0=BB=D0=B5=D0=B4=D0=B0 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0= =B5=D0=BD=D1=82=D0=B0 =D1=81=D0=BB=D0=B8=D1=87=D0=B0=D0=BD =D1=83 =D1=81=D1= =82=D0=B8=D0=BB=D1=83 =D0=9B=D0=B0=D0=A2=D0=B5=D0=A5-=D1=83" +#: gnu/packages/audio.scm:982 +msgid "Library to simplify use of LV2 plugins in applications" +msgstr "" =20 -#: gnu/packages/lout.scm:111 +#: gnu/packages/audio.scm:984 msgid "" -"The Lout document formatting system is now reads a high-level descripti= on of\n" -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" -"output file.\n" -"\n" -"Lout offers an unprecedented range of advanced features, including opti= mal\n" -"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" -"scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" -"hyphenation (most European languages are supported), formatting of comp= uter\n" -"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" -"extended with definitions which are very much easier to write than trof= f of\n" -"TeX macros because Lout is a high-level, purely functional language, th= e\n" -"outcome of an eight-year research project that went back to the\n" -"beginning." +"Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" +"for applications. Lilv is the successor to SLV2, rewritten to be\n" +"significantly faster and have minimal dependencies." msgstr "" -"=D0=9B=D0=BE=D1=83=D1=82 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC =D0=BE=D0= =B1=D0=BB=D0=B8=D0=BA=D0=BE=D0=B2=D0=B0=D1=9A=D0=B0 =D0=B4=D0=BE=D0=BA=D1= =83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0 =D1=81=D0=B0=D0=B4=D0=B0 =D1=87=D0= =B8=D1=82=D0=B0 =D0=BE=D0=BF=D0=B8=D1=81 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0= =B5=D0=BD=D1=82=D0=B0 =D0=B2=D0=B8=D0=BE=D0=BA=D0=BE=D0=B3 =D0=BD=D0=B8=D0= =B2=D0=BE=D0=B0\n" -"=D1=81=D0=BB=D0=B8=D1=87=D0=B0=D0=BD =D0=BF=D0=BE =D1=81=D1=82=D0=B8=D0= =BB=D1=83 =D0=9B=D0=B0=D0=A2=D0=B5=D0=A5-=D1=83 =D0=B8 =D0=B4=D0=B0=D1=98= =D0=B5 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=BD=D1=83 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D1=83 =D1=83 =D0=9F=D0=BE=D1=81=D1=82=D1=81=D0=BA=D1=80= =D0=B8=D0=BF=D1=82=D1=83 =D0=B8=D0=BB=D0=B8\n" -"=D0=BE=D0=B1=D0=B8=D1=87=D0=BD=D0=BE=D0=BC =D1=82=D0=B5=D0=BA=D1=81=D1=82= =D1=83. \n" -"\n" -"=D0=9B=D0=BE=D1=83=D1=82 =D0=BD=D1=83=D0=B4=D0=B8 =D0=BE=D0=BF=D1=81=D0= =B5=D0=B3 =D0=BD=D0=B0=D0=BF=D1=80=D0=B5=D0=B4=D0=BD=D0=B8=D1=85 =D1=84=D1= =83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B0 =D0=B1=D0=B5=D0=B7 =D0=BF=D1=80=D0= =B5=D0=BC=D1=86=D0=B0, =D1=83=D0=BA=D1=99=D1=83=D1=87=D1=83=D1=98=D1=83=D1= =9B=D0=B8 =D0=BE=D0=BF=D1=82=D0=B8=D0=BC=D0=B0=D0=BB=D0=B0=D0=BD\n" -"=D0=B7=D0=B0=D0=B2=D1=80=D1=88=D0=B5=D1=82=D0=B0=D0=BA =D0=BF=D0=B0=D1=81= =D1=83=D1=81=D0=B0 =D0=B8 =D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=86=D0=B5= , =D1=81=D0=B0=D0=BC=D0=BE=D1=81=D1=82=D0=B0=D0=BB=D0=B0=D0=BD =D0=BF=D1=80= =D0=B5=D0=BB=D0=BE=D0=BC =D1=80=D0=B5=D0=B4=D0=B0, =D1=83=D0=BA=D1=99=D1=83= =D1=87=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B8\n" -"=D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5 =D0=9F=D0=BE=D1=81=D1=82= =D1=81=D0=BA=D1=80=D0=B8=D0=BF=D1=82 =D0=95=D0=9F=D0=A1 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B5, =D0=BE=D0=B1=D0=BB=D0=B8=D0=BA=D0=BE=D0=B2= =D0=B0=D1=9A=D0=B5 =D1=98=D0=B5=D0=B4=D0=BD=D0=B0=D1=87=D0=B8=D0=BD=D0=B5= , =D1=82=D0=B0=D0=B1=D0=B5=D0=BB=D0=B5,\n" -"=D0=B4=D0=B8=D1=98=D0=B0=D0=B3=D1=80=D0=B0=D0=BC=D0=B5, =D0=BE=D0=BA=D1= =80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5 =D0=B8 =D0=BF=D1=80=D0=BE=D0=BC=D0=B5=D0= =BD=D1=83 =D0=B2=D0=B5=D0=BB=D0=B8=D1=87=D0=B8=D0=BD=D0=B5, =D0=BF=D0=BE=D1= =80=D0=B5=D1=92=D0=B0=D0=BD=D0=B5 =D0=BF=D0=BE=D0=BF=D0=B8=D1=81=D0=B5, =D0= =B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D0=B3=D1=80=D0=B0=D1=84=D1=81=D0=BA=D0=B5= \n" -"=D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0= , =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B0 =D0=B7=D0=B0=D0=B3= =D0=BB=D0=B0=D0=B2=D1=99=D0=B0 =D0=B8 =D0=BF=D0=B0=D1=80=D0=BD=D0=B8=D1=85= -=D0=BD=D0=B5=D0=BF=D0=B0=D1=80=D0=BD=D0=B8=D1=85 =D1=81=D1=82=D1=80=D0=B0= =D0=BD=D0=B8=D1=86=D0=B0, =D1=81=D0=B0=D0=BC=D0=BE=D1=81=D1=82=D0=B0=D0=BB= =D0=BD=D0=BE\n" + +#: gnu/packages/audio.scm:1011 +msgid "LV2 audio plugin specification" +msgstr "" + +#: gnu/packages/audio.scm:1013 +msgid "" +"LV2 is an open specification for audio plugins and host applications.\n= " +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" +"add functionality to support the needs of increasingly powerful audio\n= " +"software." +msgstr "" + +#: gnu/packages/audio.scm:1048 +msgid "LV2 port of the mda Piano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1049 +msgid "An LV2 port of the mda Piano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1062 +msgid "LV2 port of the mda EPiano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1063 +msgid "An LV2 port of the mda EPiano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1101 +msgid "C++ libraries for LV2 plugins" +msgstr "" + +#: gnu/packages/audio.scm:1103 +msgid "" +"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " +"extensions into easy to use C++ classes. It is the successor of\n" +"lv2-c++-tools." +msgstr "" + +#: gnu/packages/audio.scm:1144 +msgid "3D audio API" +msgstr "" + +#: gnu/packages/audio.scm:1146 +msgid "" +"OpenAL provides capabilities for playing audio in a virtual 3D\n" +"environment. Distance attenuation, doppler shift, and directional soun= d\n" +"emitters are among the features handled by the API. More advanced effe= cts,\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" +"buffers, and audio capture." +msgstr "" + +#: gnu/packages/audio.scm:1180 +msgid "Modular patch bay for audio and MIDI systems" +msgstr "" + +#: gnu/packages/audio.scm:1182 +msgid "" +"Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" +"and ALSA." +msgstr "" + +#: gnu/packages/audio.scm:1207 +msgid "Real-time audio utility library" +msgstr "" + +#: gnu/packages/audio.scm:1209 +msgid "" +"Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" +"aimed at audio/musical applications." +msgstr "" + +#: gnu/packages/audio.scm:1235 +msgid "Audio time-stretching and pitch-shifting library" +msgstr "" + +#: gnu/packages/audio.scm:1237 +msgid "" +"Rubber Band is a library and utility program that permits changing the\= n" +"tempo and pitch of an audio recording independently of one another." +msgstr "" + +#: gnu/packages/audio.scm:1285 +msgid "Cross-platform MIDI library for C++" +msgstr "" + +#: gnu/packages/audio.scm:1287 +msgid "" +"RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " +"classes) that provide a common cross-platform API for realtime MIDI\n" +"input/output." +msgstr "" + +#: gnu/packages/audio.scm:1313 +msgid "Library for serialising LV2 atoms to/from RDF" +msgstr "" + +#: gnu/packages/audio.scm:1315 +msgid "" +"Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" +"the Turtle syntax." +msgstr "" + +#: gnu/packages/audio.scm:1340 +msgid "Library for loading and wrapping LV2 plugin UIs" +msgstr "" + +#: gnu/packages/audio.scm:1342 +msgid "" +"Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" +"\n" +"Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" +"toolkit. The API is designed such that hosts do not need to explicitly= \n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" +"that toolkit will work in all hosts that use Suil automatically.\n" +"\n" +"Suil currently supports every combination of Gtk 2, Qt 4, and X11." +msgstr "" + +#: gnu/packages/audio.scm:1399 +msgid "Software synthesizer for playing MIDI files" +msgstr "" + +#: gnu/packages/audio.scm:1401 +msgid "" +"TiMidity++ is a software synthesizer. It can play MIDI files by\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" +"disks as various audio file formats." +msgstr "" + +#: gnu/packages/audio.scm:1440 +msgid "Modular and extensible audio processing system" +msgstr "" + +#: gnu/packages/audio.scm:1442 +msgid "" +"Vamp is an audio processing plugin system for plugins that extract\n" +"descriptive information from audio data =E2=80=94 typically referred to= as audio\n" +"analysis plugins or audio feature extraction plugins." +msgstr "" + +#: gnu/packages/audio.scm:1481 +msgid "Library for time stretching and pitch scaling of audio" +msgstr "" + +#: gnu/packages/audio.scm:1483 +msgid "" +"SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" +"stretching and pitch scaling of audio. This package contains the libra= ry." +msgstr "" + +#: gnu/packages/audio.scm:1506 +msgid "Hybrid lossless audio codec" +msgstr "" + +#: gnu/packages/audio.scm:1508 +msgid "" +"WavPack is an audio compression format with lossless, lossy and hybrid\= n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" +"encode and decode wavpack files." +msgstr "" + +#: gnu/packages/audio.scm:1527 +msgid "Mod file playing library" +msgstr "" + +#: gnu/packages/audio.scm:1529 +msgid "" +"Libmodplug renders mod music files as raw audio data, for playing or\n" +"conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" +"surround and reverb." +msgstr "" + +#: gnu/packages/audio.scm:1548 +msgid "Module player library" +msgstr "" + +#: gnu/packages/audio.scm:1550 +msgid "" +"Libxmp is a library that renders module files to PCM data. It supports= \n" +"over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" +"Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " +msgstr "" + +#: gnu/packages/audio.scm:1573 +msgid "Extended module player" +msgstr "" + +#: gnu/packages/audio.scm:1575 +msgid "" +"Xmp is a portable module player that plays over 90 mainstream and\n" +"obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" +"Tracker 3 S3M and Impulse Tracker IT files." +msgstr "" + +#: gnu/packages/audio.scm:1607 +msgid "Audio processing library for changing tempo, pitch and playback r= ate" +msgstr "" + +#: gnu/packages/audio.scm:1609 +msgid "" +"SoundTouch is an audio processing library for changing the tempo, pitch= \n" +"and playback rates of audio streams or audio files. It is intended for= \n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" +"control functionality, or just for playing around with the sound effect= s." +msgstr "" + +#: gnu/packages/audio.scm:1646 +msgid "Sound processing utility" +msgstr "" + +#: gnu/packages/audio.scm:1648 +msgid "" +"SoX (Sound eXchange) is a command line utility that can convert\n" +"various formats of computer audio files to other formats. It can also\= n" +"apply various effects to these sound files, and, as an added bonus, SoX= \n" +"can play and record audio files." +msgstr "" + +#: gnu/packages/audio.scm:1671 +msgid "One-dimensional sample-rate conversion library" +msgstr "" + +#: gnu/packages/audio.scm:1673 +msgid "" +"The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" +"conversion. It may be used, for example, to resample PCM-encoded audio= ." +msgstr "" + +#: gnu/packages/audio.scm:1695 +msgid "MPEG Audio Layer 2 (MP2) encoder" +msgstr "" + +#: gnu/packages/audio.scm:1697 +msgid "" +"TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" +"tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" +"portions of LAME." +msgstr "" + +#: gnu/packages/audio.scm:1737 +msgid "Audio I/O library" +msgstr "" + +#: gnu/packages/audio.scm:1739 +msgid "" +"PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" +"interface." +msgstr "" + +#: gnu/packages/audio.scm:1762 +msgid "Graphical user interface for FluidSynth" +msgstr "" + +#: gnu/packages/audio.scm:1764 +msgid "" +"Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" +"synthesizer written in C++." +msgstr "" + +#: gnu/packages/audio.scm:1802 +msgid "Networked audio system" +msgstr "" + +#: gnu/packages/audio.scm:1804 +msgid "" +"RSound allows you to send audio from an application and transfer it\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" +"with a much different focus than most other audio daemons." +msgstr "" + +#: gnu/packages/audio.scm:1835 +msgid "JACK audio frequency analyzer and display" +msgstr "" + +#: gnu/packages/audio.scm:1837 +msgid "" +"XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" +"result." +msgstr "" + +#: gnu/packages/audio.scm:1883 +msgid "Fast, partitioned convolution engine library" +msgstr "" + +#: gnu/packages/audio.scm:1885 +msgid "" +"Zita convolver is a C++ library providing a real-time convolution\n" +"engine." +msgstr "" + +#: gnu/packages/audio.scm:1930 +msgid "C++ library for resampling audio signals" +msgstr "" + +#: gnu/packages/audio.scm:1932 +msgid "" +"Libzita-resampler is a C++ library for resampling audio signals. It is= \n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" +"provide high-quality sample rate conversion." +msgstr "" + +#: gnu/packages/audio.scm:1978 +msgid "" +"Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" +"access to ALSA PCM devices, taking care of the many functions required = to\n" +"open, initialise and use a hw: device in mmap mode, and providing float= ing\n" +"point audio data." +msgstr "" + +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" + +#: gnu/packages/audio.scm:2010 +msgid "" +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." +msgstr "" + +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" + +#: gnu/packages/audio.scm:2030 +msgid "" +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 +msgid "Encrypted backup using rsync algorithm" +msgstr "" + +#: gnu/packages/backup.scm:94 +msgid "" +"Duplicity backs up directories by producing encrypted tar-format volume= s\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" +"librsync, the incremental archives are space efficient and only record = the\n" +"parts of files that have changed since the last backup. Because duplic= ity\n" +"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" +"spying and/or modification by the server." +msgstr "" + +#: gnu/packages/backup.scm:128 +msgid "Simple incremental backup tool" +msgstr "" + +#: gnu/packages/backup.scm:130 +msgid "" +"Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" +"backup scheduling is done by means of a cron job. It supports an\n" +"include/exclude mechanism, remote backups, encrypted backups and split\= n" +"backups (called chunks) to allow easy burning to CD/DVD." +msgstr "" + +#: gnu/packages/backup.scm:185 +msgid "Multi-format archive and compression library" +msgstr "" + +#: gnu/packages/backup.scm:187 +msgid "" +"Libarchive provides a flexible interface for reading and writing\n" +"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" +"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" +"serially iterate through the archive, writers serially add things to th= e\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" +"random access nor for in-place modification." +msgstr "" + +#: gnu/packages/backup.scm:250 +msgid "Provide a list of files to backup" +msgstr "" + +#: gnu/packages/backup.scm:252 +msgid "" +"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" +"Rdup itself does not backup anything, it only print a list of absolute\= n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" +"list and implement the backup strategy." +msgstr "" + +#: gnu/packages/backup.scm:282 +msgid "Tar-compatible archiver" +msgstr "" + +#: gnu/packages/backup.scm:284 +msgid "" +"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" +"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" +"errors." +msgstr "" + +#: gnu/packages/backup.scm:312 +msgid "Local/remote mirroring+incremental backup" +msgstr "" + +#: gnu/packages/backup.scm:314 +msgid "" +"Rdiff-backup backs up one directory to another, possibly over a network= .\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" +"diffs are stored in a special subdirectory of that target directory, so= you\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" +"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" +"modification times, extended attributes, acls, and resource forks. Als= o,\n" +"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" +"rdiff-backup is easy to use and settings have sensible defaults." +msgstr "" + +#: gnu/packages/backup.scm:353 +msgid "Deduplicating backup program" +msgstr "" + +#: gnu/packages/backup.scm:354 +msgid "" +"Attic is a deduplicating backup program. The main goal of\n" +"Attic is to provide an efficient and secure way to backup data. The da= ta\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" +"changes are stored." +msgstr "" + +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 +msgid "Hello, GNU world: An example GNU package" +msgstr "=D0=9F=D0=BE=D0=B7=D0=B4=D1=80=D0=B0=D0=B2, =D0=93=D0=BD=D1=83 =D0= =BD=D0=B0=D1=80=D0=BE=D0=B4=D0=B5: =D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D1=80 =D0= =93=D0=BD=D1=83 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D0=B0" + +#: gnu/packages/base.scm:68 +msgid "" +"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" +"command-line arguments, multiple languages, and so on." +msgstr "" +"=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=9F=D0=BE=D0=B7=D0=B4=D1=80=D0=B0=D0=B2= =D0=BD=D0=B8=D0=BA =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D0=BF= =D0=BE=D1=80=D1=83=D0=BA=D1=83 =E2=80=9E=D0=9F=D0=BE=D0=B7=D0=B4=D1=80=D0= =B0=D0=B2, =D0=BD=D0=B0=D1=80=D0=BE=D0=B4=D0=B5!=E2=80=9C =D0=B8 =D0=B8=D0= =B7=D0=BB=D0=B0=D0=B7=D0=B8. =D0=A1=D0=BB=D1=83=D0=B6=D0=B8\n" +"=D0=BA=D0=B0=D0=BE =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80 =D1=81=D1=82=D0= =B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D1=83=D0=B2=D0=B5=D0= =B6=D0=B1=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0= =BE=D0=B3 =D0=BA=D0=BE=D0=B4=D0=B8=D1=80=D0=B0=D1=9A=D0=B0. =D0=9A=D0=B0= =D0=BE =D1=82=D0=B0=D0=BA=D0=B0=D0=B2, =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0= =D0=B2=D0=B0\n" +"=D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82=D0=B5 =D0=BB=D0=B8=D0=BD= =D0=B8=D1=98=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B8, =D0=B2=D0=B8= =D1=88=D0=B5=D1=81=D1=82=D1=80=D1=83=D0=BA=D0=B5 =D1=98=D0=B5=D0=B7=D0=B8= =D0=BA=D0=B5, =D0=B8 =D1=82=D0=B0=D0=BA=D0=BE =D1=80=D0=B5=D0=B4=D0=BE=D0= =BC." + +#: gnu/packages/base.scm:89 +msgid "Print lines matching a pattern" +msgstr "=D0=98=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=80=D0=B5=D0= =B4=D0=BE=D0=B2=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BE=D0=B4=D0=B3=D0=BE=D0= =B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D1= =83" + +#: gnu/packages/base.scm:91 +msgid "" +"grep is a tool for finding text inside files. Text is found by\n" +"matching a pattern provided by the user in one or many files. The patt= ern\n" +"may be provided as a basic or extended regular expression, or as fixed\= n" +"strings. By default, the matching text is simply printed to the screen= ,\n" +"however the output can be greatly customized to include, for example, l= ine\n" +"numbers. GNU grep offers many extensions over the standard utility,\n" +"including, for example, recursive directory searching." +msgstr "" +"=D0=B3=D1=80=D0=B5=D0=BF =D1=98=D0=B5 =D0=B0=D0=BB=D0=B0=D1=82 =D0=B7=D0= =B0 =D0=BF=D1=80=D0=BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B5 =D1= =82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D1=83=D0=BD=D1=83=D1=82=D0=B0=D1=80 =D0= =B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0. =D0=A2=D0=B5=D0=BA=D1=81=D1= =82 =D1=81=D0=B5 =D0=BF=D1=80=D0=BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=B7=D0=B8\n= " +"=D1=83=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5=D0=BC= =D1=81=D0=B0 =D0=BE=D0=B1=D1=80=D0=B0=D1=81=D1=86=D0=B5=D0=BC =D0=BA=D0=BE= =D1=98=D0=B8 =D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B8 =D0=BA=D0=BE=D1=80= =D0=B8=D1=81=D0=BD=D0=B8=D0=BA =D1=83 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1=98= =D0=B8=D0=BB=D0=B8 =D0=B2=D0=B8=D1=88=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82= =D0=B5=D0=BA=D0=B0.\n" +"=D0=9E=D0=B1=D1=80=D0=B0=D0=B7=D0=B0=D1=86 =D0=BC=D0=BE=D0=B6=D0=B5 =D0= =B1=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D1=99=D0=B5=D0= =BD =D0=BA=D0=B0=D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B8 =D0=B8=D0= =BB=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D0=BD=D0=B8 =D1=80=D0= =B5=D0=B3=D1=83=D0=BB=D0=B0=D1=80=D0=BD=D0=B8 =D0=B8=D0=B7=D1=80=D0=B0=D0= =B7, =D0=B8=D0=BB=D0=B8\n" +"=D0=BA=D0=B0=D0=BE =D1=81=D1=82=D0=B0=D0=BB=D0=BD=D0=B0 =D0=BD=D0=B8=D1= =81=D0=BA=D0=B0. =D0=9F=D0=BE =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=B8, =D0=BE= =D0=B4=D0=B3=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83=D1=9B=D0=B8 =D1=82= =D0=B5=D0=BA=D1=81=D1=82 =D1=81=D0=B5 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1=81= =D1=82=D0=B0=D0=B2=D0=BD=D0=BE =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98= =D0=B5\n" +"=D0=BD=D0=B0 =D0=B5=D0=BA=D1=80=D0=B0=D0=BD=D1=83, =D0=BC=D0=B5=D1=92=D1= =83=D1=82=D0=B8=D0=BC =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7 =D0=BC=D0=BE=D0=B6=D0= =B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B8=D0=BB=D0=B0=D0=B3=D0=BE=D1= =92=D0=B5=D0=BD =D0=B4=D0=B0 =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8, =D1=80= =D0=B5=D1=86=D0=B8=D0=BC=D0=BE =D0=B1=D1=80=D0=BE=D1=98=D0=B5=D0=B2=D0=B5= \n" +"=D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B0. =D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0= =B3=D1=80=D0=B5=D0=BF =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=BD=D0=BE=D0=B3=D0= =B0 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=BF=D1=80=D0= =B5=D0=BA=D0=BE =D1=83=D0=BE=D0=B1=D0=B8=D1=87=D0=B0=D1=98=D0=B5=D0=BD=D0= =BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0,\n" +"=D1=83=D0=BA=D1=99=D1=83=D1=87=D1=83=D1=98=D1=83=D1=9B=D0=B8, =D0=BD=D0= =B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80, =D0=B4=D1=83=D0=B1=D0=B8=D0=BD=D1= =81=D0=BA=D0=BE =D0=BF=D1=80=D0=B5=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0= =B0=D1=9A=D0=B5 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1= =98=D1=83=D0=BC=D0=B0." + +#: gnu/packages/base.scm:114 +msgid "Stream editor" +msgstr "=D0=A3=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=87 =D0=BF=D1=80=D0= =BE=D1=82=D0=BE=D0=BA=D0=B0" + +#: gnu/packages/base.scm:129 +msgid "" +"Sed is a non-interactive, text stream editor. It receives a text\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" +"is often used for substituting text patterns in a stream. The GNU\n" +"implementation offers several extensions over the standard utility." +msgstr "" +"=D0=A1=D0=B5=D0=B4 =D1=98=D0=B5 =D0=BD=D0=B5-=D0=BC=D0=B5=D1=92=D1=83=D0= =B4=D0=B5=D1=98=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=B8, =D1=83=D1=80=D0=B5=D1= =92=D0=B8=D0=B2=D0=B0=D1=87 =D1=82=D0=BE=D0=BA=D0=B0 =D1=82=D0=B5=D0=BA=D1= =81=D1=82=D0=B0. =D0=9E=D0=BD =D0=BF=D1=80=D0=B8=D1=85=D0=B2=D0=B0=D1=82= =D0=B0 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=B8\n" +"=D1=83=D0=BB=D0=B0=D0=B7 =D0=B8=D0=B7 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0= =B5=D0=BA=D0=B5 =D0=B8=D0=BB=D0=B8 =D1=81=D0=B0 =D1=81=D1=82=D0=B0=D0=BD=D0= =B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D1=83=D0=BB=D0=B0=D0=B7=D0=B0 =D0= =B8 =D0=B7=D0=B0=D1=82=D0=B8=D0=BC =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A=D1= =83=D1=98=D0=B5 =D0=BD=D0=B8=D0=B7 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0= =B8\n" +"=D0=B7=D0=B0 =D1=83=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1= =82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D0=BD=D0=B0=D0=B4 =D1=82=D0=BE=D0=BA=D0= =B8=D0=BC =D0=B8 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D1=9A=D0= =B5=D0=B3=D0=BE=D0=B2 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7 =D0=BD=D0=B0 =D1=81=D1= =82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B8 =D0=B8=D0=B7=D0=BB=D0= =B0=D0=B7.\n" +"=D0=A7=D0=B5=D1=81=D1=82=D0=BE =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D1=82=D0=B8 =D0=B7=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D1=83 =D1=82=D0= =B5=D0=BA=D1=81=D1=82=D1=83=D0=B0=D0=BB=D0=BD=D0=B8=D1=85 =D0=BE=D0=B1=D1= =80=D0=B0=D0=B7=D0=B0=D1=86=D0=B0 =D1=83 =D1=82=D0=BE=D0=BA=D1=83. =D0=93= =D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0= \n" +"=D0=BD=D1=83=D0=B4=D0=B8 =D0=BD=D0=B5=D0=BA=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE= =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=BF=D0=BE=D1=80= =D0=B5=D0=B4 =D1=83=D0=BE=D0=B1=D0=B8=D1=87=D0=B0=D1=98=D0=B5=D0=BD=D0=BE= =D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0." + +#: gnu/packages/base.scm:152 +msgid "Managing tar archives" +msgstr "=D0=A3=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=9A=D0=B5 =D1=82=D0= =B0=D1=80 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D0=BC=D0=B0" + +#: gnu/packages/base.scm:154 +msgid "" +"Tar provides the ability to create tar archives, as well as the\n" +"ability to extract, update or list files in an existing archive. It is= \n" +"useful for combining many files into one larger file, while maintaining= \n" +"directory structure and file information such as permissions and\n" +"creation/modification dates. GNU tar offers many extensions over the\n= " +"standard utility." +msgstr "" +"=D0=A2=D0=B0=D1=80 =D0=BE=D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98= =D0=B5 =D1=81=D0=BF=D0=BE=D1=81=D0=BE=D0=B1=D0=BD=D0=BE=D1=81=D1=82 =D0=B7= =D0=B0 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5 =D1=82=D0=B0=D1=80= =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0, =D0=BA=D0=B0=D0=BE =D0=B8 =D1=81=D0= =BF=D0=BE=D1=81=D0=BE=D0=B1=D0=BD=D0=BE=D1=81=D1=82\n" +"=D0=B7=D0=B0 =D0=B8=D0=B7=D0=B2=D0=BB=D0=B0=D1=87=D0=B5=D1=9A=D0=B5, =D0= =BE=D1=81=D0=B2=D0=B5=D0=B6=D0=B0=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B8=D0=BB=D0= =B8 =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B4=D0= =B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=83 =D0=BF=D0=BE=D1=81=D1=82=D0= =BE=D1=98=D0=B5=D1=9B=D0=BE=D1=98 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B8.\n= " +"=D0=9A=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B0=D0=BD =D1=98=D0=B5 =D0=B7=D0= =B0 =D0=BE=D0=B1=D1=98=D0=B5=D0=B4=D0=B8=D1=9A=D0=B0=D0=B2=D0=B0=D1=9A=D0= =B5 =D0=B2=D0=B8=D1=88=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0= =B0 =D1=83 =D1=98=D0=B5=D0=B4=D0=BD=D1=83 =D0=B2=D0=B5=D1=9B=D1=83 =D0=B4= =D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D1=83, =D0=B4=D0=BE=D0=BA\n" +"=D0=B7=D0=B0=D0=B4=D1=80=D0=B6=D0=B0=D0=B2=D0=B0 =D1=81=D1=82=D1=80=D1=83= =D0=BA=D1=82=D1=83=D1=80=D1=83 =D0=B4=D0=B8=D1=80=D0=B5=D0=BA=D1=82=D0=BE= =D1=80=D0=B8=D1=98=D1=83=D0=BC=D0=B0 =D0=B8 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82= =D0=BA=D0=B5 =D0=BE =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8 =D0=BA= =D0=B0=D0=BE =D1=88=D1=82=D0=BE =D1=81=D1=83\n" +"=D0=BE=D0=B2=D0=BB=D0=B0=D1=88=D1=9B=D0=B5=D1=9A=D0=B0 =D0=B8 =D0=B4=D0= =B0=D1=82=D1=83=D0=BC=D0=B8 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0= =B0/=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B0. =D0=93=D0=BD=D1=83=D0=BE=D0=B2= =D1=82=D0=B0=D1=80 =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=BD=D0=BE=D0=B3=D0=B0= =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0\n" +"=D0=BF=D0=BE=D1=80=D0=B5=D0=B4 =D1=81=D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80= =D0=B4=D0=BD=D0=BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0= ." + +#: gnu/packages/base.scm:177 +msgid "Apply differences to originals, with optional backups" +msgstr "=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D1=9A=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5= =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D0=BD=D0=B0 =D0=BE=D1=80=D0=B8= =D0=B3=D0=B8=D0=BD=D0=B0=D0=BB=D0=B5, =D1=81=D0=B0 =D0=BE=D0=BF=D1=86=D0=B8= =D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0=B8=D0=BC =D1=80=D0=B5=D0=B7=D0=B5=D1=80= =D0=B2=D0=B0=D0=BC=D0=B0" + +#: gnu/packages/base.scm:179 +msgid "" +"Patch is a program that applies changes to files based on differences\n= " +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" +"files depending on the contents of the diff file. It accepts several\n= " +"different diff formats. It may also be used to revert previously appli= ed\n" +"differences." +msgstr "" +"=D0=97=D0=B0=D0=BA=D1=80=D0=BF=D0=BA=D0=BE =D1=98=D0=B5 =D0=BF=D1=80=D0= =BE=D0=B3=D1=80=D0=B0=D0=BC =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D1=80=D0=B8=D0= =BC=D0=B5=D1=9A=D1=83=D1=98=D0=B5 =D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5 =D0= =BD=D0=B0=D0=B4 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0= =B0 =D0=BD=D0=B0 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D1=83 =D1=80=D0=B0=D0=B7=D0= =BB=D0=B8=D0=BA=D0=B0\n" +"=D0=B8=D0=B7=D0=BD=D0=B5=D1=81=D0=B5=D0=BD=D0=B8=D1=85 =D0=BF=D1=80=D0=BE= =D0=B3=D1=80=D0=B0=D0=BC=D0=BE=D0=BC =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87= =D0=BD=D0=B8=D0=BA. =D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BC=D0=BE=D0= =B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A=D0= =B5=D0=BD=D0=B5 =D0=BD=D0=B0=D0=B4 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D0=BC =D0= =B8=D0=BB=D0=B8\n" +"=D0=B2=D0=B8=D1=88=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0= =D1=83 =D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0=BE= =D0=B4 =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B0=D1=98=D0=B0 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0= . =D0=9F=D1=80=D0=B8=D1=85=D0=B2=D0=B0=D1=82=D0=B0 =D0=B2=D0=B8=D1=88=D0= =B5\n" +"=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87=D0=B8=D1=82=D0=B8=D1=85 =D0=B7=D0=B0= =D0=BF=D0=B8=D1=81=D0=B0 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D1=87=D0=BD=D0=B8= =D0=BA=D0=B0. =D0=A2=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=BC=D0=BE=D0=B6=D0= =B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D0= =BD =D0=B7=D0=B0 =D0=B2=D1=80=D0=B0=D1=9B=D0=B0=D1=9A=D0=B5 " +"=D0=BF=D1=80=D0=B5=D1=82=D1=85=D0=BE=D0=B4=D0=BD=D0=BE =D0=BF=D1=80=D0=B8= =D0=BC=D0=B5=D1=9A=D0=B5=D0=BD=D0=B8=D1=85 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8= =D0=BA=D0=B0." + +#: gnu/packages/base.scm:199 +msgid "Comparing and merging files" +msgstr "=D0=A3=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5= =D0=B8 =D1=81=D1=82=D0=B0=D0=BF=D0=B0=D1=9A=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=B0" + +#: gnu/packages/base.scm:201 +#, fuzzy +msgid "" +"GNU Diffutils is a package containing tools for finding the\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" +"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" +"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" +"interactive means to merge two files." +msgstr "" +"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0= =D0=BB=D0=B0 =D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D1=98=D0=B5 =D0=BF= =D0=B0=D0=BA=D0=B5=D1=82 =D0=BA=D0=BE=D1=98=D0=B8 =D1=81=D0=B0=D0=B4=D1=80= =D0=B6=D0=B8 =D0=B0=D0=BB=D0=B0=D1=82=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0=BE= =D0=BD=D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B5 =D1=80=D0=B0=D0=B7=D0=BB= =D0=B8=D0=BA=D0=B0\n" +"=D0=B8=D0=B7=D0=BC=D0=B5=D1=92=D1=83 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5= =D0=BA=D0=B0. =D0=9D=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B0 =E2=80=9Ediff=E2= =80=9C =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D0=B7=D0=B0= =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1=80= =D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D0=B0 =D0=B4=D0=B2=D0=B5=D1=98=D1=83\n" +"=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0, =D0=B4=D0=BE=D0=BA =E2= =80=9Ecmp=E2=80=9C =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D1=83=D1=98=D0=B5= =D0=BF=D0=BE=D0=BC=D0=B5=D1=80=D0=B0=D1=98=D0=B5 =D0=B8 =D0=B1=D1=80=D0=BE= =D1=98=D0=B5=D0=B2=D0=B5 =D1=80=D0=B5=D0=B4=D0=BE=D0=B2=D0=B0 =D0=BD=D0=B0= =D0=BA=D0=BE=D1=98=D0=B8=D0=BC=D0=B0 =D1=81=D0=B5\n" +"=D1=80=D0=B0=D0=B7=D0=BB=D0=B8=D0=BA=D1=83=D1=98=D1=83. =E2=80=9Ediff3= =E2=80=9C =D0=B2=D0=B0=D0=BC =D0=BE=D0=BC=D0=BE=D0=B3=D1=83=D1=9B=D0=B0=D0= =B2=D0=B0 =D1=83=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0= =B5 =D1=82=D1=80=D0=B8 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5. = =D0=9D=D0=B0 =D0=BA=D1=80=D0=B0=D1=98=D1=83,\n" +"=E2=80=9Esdiff=E2=80=9C =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=B5=D1=92=D1=83= =D0=B4=D0=B5=D1=98=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=B8 =D0=BD=D0=B0=D1=87= =D0=B8=D0=BD =D0=B7=D0=B0 =D1=81=D1=82=D0=B0=D0=BF=D0=B0=D1=9A=D0=B5 =D0=B4= =D0=B2=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5." + +#: gnu/packages/base.scm:234 +msgid "Operating on files matching given criteria" +msgstr "=D0=A0=D0=B0=D0=B4=D1=9A=D0=B5 =D0=BD=D0=B0=D0=B4 =D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0=B0 =D0=BF=D1=80=D0=B5=D0=BC=D0= =B0 =D0=B4=D0=B0=D1=82=D0=B8=D0=BC =D1=83=D1=81=D0=BB=D0=BE=D0=B2=D0=B8=D0= =BC=D0=B0" + +#: gnu/packages/base.scm:236 +msgid "" +"Findutils supplies the basic file directory searching utilities of the\= n" +"GNU system. It consists of two primary searching utilities: \"find\"\n= " +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" +"used to apply commands with arbitrarily long arguments." +msgstr "" +"=D0=9F=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=BF=D1=80=D0=BE=D0=BD= =D0=B0=D0=BB=D0=B0=D0=B6=D0=B5=D1=9A=D0=B0 =D0=B4=D0=BE=D1=81=D1=82=D0=B0= =D0=B2=D1=99=D0=B0=D1=98=D1=83 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B0= =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=B7=D0=B0 =D0=BF=D1=80= =D0=B5=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B4=D0=B0= =D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5\n" +"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE=D0=B3 =D1=81=D0=B8=D1=81=D1=82=D0=B5= =D0=BC=D0=B0. =D0=A1=D0=B0=D1=81=D1=82=D0=BE=D1=98=D0=B8 =D1=81=D0=B5 =D0= =BE=D0=B4 =D0=B4=D0=B2=D0=B0 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B0 =D0= =BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=BF=D1=80=D0=B5=D1=82=D1= =80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0: =E2=80=9Efind=E2=80=9C\n" +"=D0=B4=D1=83=D0=B1=D0=B8=D0=BD=D1=81=D0=BA=D0=B8 =D1=82=D1=80=D0=B0=D0=B6= =D0=B8 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B4=D0=B8= =D1=80=D0=B5=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D1=98=D1=83=D0=BC=D1=83 =D0=BF= =D1=80=D0=B5=D0=BC=D0=B0 =D0=B7=D0=B0=D0=B4=D0=B0=D1=82=D0=BE=D0=BC =D0=BC= =D0=B5=D1=80=D0=B8=D0=BB=D1=83 =D0=B0 =E2=80=9Elocate=E2=80=9C\n" +"=D0=B8=D1=81=D0=BF=D0=B8=D1=81=D1=83=D1=98=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=B5 =D1=83 =D0=B1=D0=B0=D0=B7=D0=B8 =D0=BF=D0=BE=D0=B4= =D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BA=D0=BE=D1=98=D0=B5 =D0=BE=D0=B4=D0=B3= =D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=98=D1=83 =D1=83=D0=BF=D0=B8=D1=82=D1=83= . =D0=A3=D0=BA=D1=99=D1=83=D1=87=D0=B5=D0=BD=D0=B0 =D1=81=D1=83 =D0=B4=D0= =B2=D0=B0\n" +"=D0=BF=D0=BE=D0=BC=D0=BE=D1=9B=D0=BD=D0=B0 =D0=B0=D0=BB=D0=B0=D1=82=D0=B0= : =E2=80=9Eupdatedb=E2=80=9C =D0=BE=D1=81=D0=B2=D0=B5=D0=B6=D0=B0=D0=B2=D0= =B0 =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0= =BA=D0=B5 =D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0= =BA=D0=B0 =D0=B0 =E2=80=9Exargs=E2=80=9C\n" +"=D1=81=D0=B5 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D1= =82=D0=B8=D1=82=D0=B8 =D0=B7=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=9A=D0= =B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B8 =D1= =81=D0=B0 =D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B2=D0=BE=D1=99=D0=BD=D0=BE =D0= =B4=D1=83=D0=B3=D0=B8=D0=BC =D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1= =82=D0=B8=D0=BC=D0=B0." + +#: gnu/packages/base.scm:300 +msgid "Core GNU utilities (file, text, shell)" +msgstr "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BA=D1=99=D1=83=D1=87=D0= =BD=D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 (=D0=B4=D0=B0=D1= =82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0, =D1=82=D0=B5=D0=BA=D1=81=D1=82, =D1=88= =D0=BA=D0=BE=D1=99=D0=BA=D0=B0)" + +#: gnu/packages/base.scm:302 +msgid "" +"GNU Coreutils includes all of the basic command-line tools that are\n" +"expected in a POSIX system. These provide the basic file, shell and te= xt\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" +"functionality beyond that which is outlined in the POSIX standard." +msgstr "" +"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=BA=D1=99=D1=83=D1=87=D0=BD=D0=B0= =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=83=D0=BA=D1=99=D1=83= =D1=87=D1=83=D1=98=D1=83 =D1=81=D0=B2=D0=B5 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2= =D0=BD=D0=B5 =D0=B0=D0=BB=D0=B0=D1=82=D0=B5 =D0=BB=D0=B8=D0=BD=D0=B8=D1=98= =D0=B5 =D0=BD=D0=B0=D1=80=D0=B5=D0=B4=D0=B1=D0=B8 =D0=BA=D0=BE=D1=98=D0=B8= =D1=81=D0=B5\n" +"=D0=BE=D1=87=D0=B5=D0=BA=D1=83=D1=98=D1=83 =D1=83 =D0=9F=D0=9E=D0=A1=D0= =98=D0=9A=D0=A1 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83. =D0=9E=D0=B1= =D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D1=83 =D0=BE=D1=81=D0=BD=D0=BE= =D0=B2=D0=BD=D0=B5 =D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D1=83= =D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=9A=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=BE=D0=BC,\n" +"=D1=88=D0=BA=D0=BE=D1=99=D0=BA=D0=BE=D0=BC =D0=B8 =D1=82=D0=B5=D0=BA=D1= =81=D1=82=D0=BE=D0=BC =D0=BD=D0=B0 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE=D0= =BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83. =D0=92=D0=B5=D1=9B=D0=B8= =D0=BD=D0=B0 =D0=BE=D0=B2=D0=B8=D1=85 =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=BD= =D1=83=D0=B4=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D0=BD=D0=B5= \n" +"=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0=BE= =D1=81=D1=82=D0=B8 =D0=B8=D0=B7=D0=B2=D0=B0=D0=BD =D0=BE=D0=BD=D0=B8=D1=85= =D0=BA=D0=BE=D1=98=D0=B5 =D1=81=D1=83 =D0=BD=D0=B0=D0=B2=D0=B5=D0=B4=D0=B5= =D0=BD=D0=B5 =D1=83 =D0=9F=D0=9E=D0=A1=D0=98=D0=9A=D0=A1 =D1=81=D1=82=D0=B0= =D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D1=83." + +#: gnu/packages/base.scm:344 +msgid "Remake files automatically" +msgstr "=D0=A1=D0=B0=D0=BC=D0=BE=D1=81=D1=82=D0=B0=D0=BB=D0=BD=D0=BE =D0= =BF=D0=BE=D0=BD=D0=BE=D0=B2=D0=BD=D0=BE =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0= =B0=D1=9A=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0" + +#: gnu/packages/base.scm:346 +msgid "" +"Make is a program that is used to control the production of\n" +"executables or other files from their source files. The process is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" +"generated from its source. It has powerful dependency resolution and t= he\n" +"ability to determine when files have to be regenerated after their sour= ces\n" +"change. GNU make offers many powerful extensions over the standard uti= lity." +msgstr "" +"=D0=9C=D0=B5=D1=98=D0=BA =D1=98=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0= =B0=D0=BC =D0=BA=D0=BE=D1=98=D0=B8 =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D1=82=D0=B8 =D0=B7=D0=B0 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1= =9A=D0=B5 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5=D0=BC =D0=B8=D0= =B7=D0=B2=D1=80=D1=88=D0=BD=D0=B8=D1=85 =D0=B8=D0=BB=D0=B8 =D0=B4=D1=80=D1= =83=D0=B3=D0=B8=D1=85\n" +"=D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D0=B8=D0=B7 =D1=9A=D0= =B8=D1=85=D0=BE=D0=B2=D0=B8=D1=85 =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0= =B8=D1=85. =D0=9F=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BA=D0=BE=D0=BC =D1=81= =D0=B5 =D1=83=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0 =D0=B8=D0=B7 =E2=80=9EM= akefile=E2=80=9C-=D0=B0, =D1=83 =D0=BA=D0=BE=D0=BC=D0=B5\n" +"=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B5=D1=80=D0=B8 =D0=BD=D0=B0= =D0=B2=D0=BE=D0=B4=D0=B5 =D0=BA=D0=B0=D0=BA=D0=BE =D1=81=D0=B5 =D1=81=D0=B2= =D0=B0=D0=BA=D0=B0 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=81= =D1=82=D0=B2=D0=B0=D1=80=D0=B0 =D0=B8=D0=B7 =D1=81=D0=B2=D0=BE=D0=B3 =D0=B8= =D0=B7=D0=B2=D0=BE=D1=80=D0=B0. =D0=9F=D0=BE=D1=81=D0=B5=D0=B4=D1=83=D1=98= =D0=B5\n" +"=D0=BC=D0=BE=D1=9B=D0=BD=D0=BE =D1=80=D0=B5=D1=88=D0=B0=D0=B2=D0=B0=D1=9A= =D0=B5 =D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=BD=D0=BE=D1=81=D1=82=D0=B8 =D0=B8= =D1=81=D0=BF=D0=BE=D1=81=D0=BE=D0=B1=D0=BD=D0=BE=D1=81=D1=82 =D0=BE=D0=B4= =D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0 =D0=BA=D0=B0=D0=B4=D0=B0= =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B5 =D1=82=D1=80=D0=B5=D0=B1= =D0=B0 =D0=B4=D0=B0\n" +"=D0=B1=D1=83=D0=B4=D1=83 =D0=BF=D0=BE=D0=BD=D0=BE=D0=B2=D0=BE =D1=81=D1= =82=D0=B2=D0=BE=D1=80=D0=B5=D0=BD=D0=B5 =D0=BD=D0=B0=D0=BA=D0=BE=D0=BD =D0= =B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B0 =D1=9A=D0=B8=D1=85=D0=BE=D0=B2=D0=B8=D1= =85 =D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=B0. =D0=93=D0=BD=D1=83=D0=BE=D0=B2= =D0=BC=D0=B5=D1=98=D0=BA =D0=BD=D1=83=D0=B4=D0=B8 =D0=BC=D0=BD=D0=BE=D0=B3= =D0=BE\n" +"=D0=BC=D0=BE=D1=9B=D0=BD=D0=B8=D1=85 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80= =D0=B5=D1=9A=D0=B0 =D0=BF=D0=BE=D1=80=D0=B5=D0=B4 =D1=81=D1=82=D0=B0=D0=BD= =D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=BE=D0=B3 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3= =D0=B0=D0=BB=D0=B0." + +#: gnu/packages/base.scm:391 +msgid "Binary utilities: bfd gas gprof ld" +msgstr "=D0=91=D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D0=B0 =D0=BF=D0=BE=D0=BC=D0= =B0=D0=B3=D0=B0=D0=BB=D0=B0: bfd gas gprof ld" + +#: gnu/packages/base.scm:393 +#, fuzzy +msgid "" +"GNU Binutils is a collection of tools for working with binary files.\n" +"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" +"Other tools include programs to display binary profiling information, l= ist\n" +"the strings in a binary file, and utilities for working with archives. = The\n" +"\"bfd\" library for working with executable and object formats is also\= n" +"included." +msgstr "" +"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=B1=D0=B8=D0=BD=D0=B0=D1=80=D0=BD= =D0=B0 =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D1=98=D0=B5=D1=81= =D1=82=D0=B5 =D0=B7=D0=B1=D0=B8=D1=80=D0=BA=D0=B0 =D0=B0=D0=BB=D0=B0=D1=82= =D0=B0 =D0=B7=D0=B0 =D1=80=D0=B0=D0=B4 =D1=81=D0=B0 =D0=B8=D0=B7=D0=B2=D1= =80=D1=88=D0=BD=D0=B8=D0=BC =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0= =B0=D0=BC=D0=B0.\n" +"=D0=9C=D0=BE=D0=B6=D0=B4=D0=B0 =D1=98=D0=B5 =D0=BD=D0=B0=D1=98=D0=BF=D0= =BE=D0=B7=D0=BD=D0=B0=D1=82=D0=B8=D1=98=D0=B8 =E2=80=9Eld=E2=80=9C, =D0=BF= =D0=BE=D0=B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=87, =D0=B8 =E2=80=9Eas=E2=80= =9C, =D1=81=D0=B0=D1=81=D1=82=D0=B0=D0=B2=D0=BD=D0=B8=D0=BA. =D0=9E=D1=81= =D1=82=D0=B0=D0=BB=D0=B8 =D0=B0=D0=BB=D0=B0=D1=82=D0=B8\n" +"=D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0= =D0=BC=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0=B8=D0=BA=D0=B0=D0=B7=D0=B8=D0=B2= =D0=B0=D1=9A=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=B1= =D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D0=BE=D0=B3 =D0=BF=D1=80=D0=BE=D1=84=D0=B8= =D0=BB=D0=B8=D1=81=D0=B0=D1=9A=D0=B0, =D0=B8=D1=81=D0=BF=D0=B8=D1=81=D0=B8= =D0=B2=D0=B0=D1=9A=D0=B5\n" +"=D0=BD=D0=B8=D1=81=D0=BA=D0=B8 =D1=83 =D0=B8=D0=B7=D0=B2=D1=80=D1=88=D0= =BD=D0=BE=D1=98 =D0=B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D1=86=D0=B8, =D0=B8 = =D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0=B0 =D0=B7=D0=B0 =D1=80=D0=B0= =D0=B4 =D1=81=D0=B0 =D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D0=BC=D0=B0. =D0= =A2=D1=83 =D1=98=D0=B5 =D1=82=D0=B0=D0=BA=D0=BE=D1=92=D0=B5 =D0=B8 \n" +"=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =E2=80=9Eb= fd=E2=80=9C =D0=B7=D0=B0 =D1=80=D0=B0=D0=B4 =D1=81=D0=B0 =D0=B8=D0=B7=D0=B2= =D1=80=D1=88=D0=BD=D0=B8=D0=BC =D0=B8 =D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D0=B8= =D0=BC=D0=B0 =D0=BE=D0=B1=D1=98=D0=B5=D0=BA=D0=B0=D1=82=D0=B0." + +#: gnu/packages/base.scm:458 +msgid "The linker wrapper" +msgstr "=D0=9E=D0=BC=D0=BE=D1=82=D0=B0=D1=87 =D0=BF=D0=BE=D0=B2=D0=B5=D0= =B7=D0=B8=D0=B2=D0=B0=D1=87=D0=B0" + +#: gnu/packages/base.scm:460 +#, fuzzy +msgid "" +"The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" +"store." +msgstr "" +"=D0=9E=D0=BC=D0=BE=D1=82=D0=B0=D1=87 =D0=BF=D0=BE=D0=B2=D0=B5=D0=B7=D0=B8= =D0=B2=D0=B0=D1=87=D0=B0 (=D0=B8=D0=BB=D0=B8 =E2=80=9Eld-wrapper=E2=80=9C= ) =D0=BE=D0=B1=D0=BC=D0=BE=D1=82=D0=B0=D0=B2=D0=B0 =D0=BF=D0=BE=D0=B2=D0=B5= =D0=B7=D0=B8=D0=B2=D0=B0=D1=87=D0=B0 =D0=B4=D0=B0 =D0=B1=D0=B8 =D0=B4=D0=BE= =D0=B4=D0=B0=D0=BE\n" +"=D0=BD=D0=B5=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=98=D1=83=D1=9B=D1=83 =D0=BE= =D0=BF=D1=86=D0=B8=D1=98=D1=83 =E2=80=9E-rpath=E2=80=9C, =D0=B8 =D0=B4=D0= =B0 =D0=B1=D0=B8 =D0=BE=D1=82=D0=BA=D1=80=D0=B8=D0=BE =D0=BB=D0=BE=D1=88=D0= =B5 =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D1=9A=D0=B5 =D0=B1=D0=B8=D0= =B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0\n" +"=D0=B8=D0=B7=D0=B2=D0=B0=D0=BD =D1=81=D0=BA=D0=BB=D0=B0=D0=B4=D0=B8=D1=88= =D1=82=D0=B0." + +#: gnu/packages/base.scm:637 +msgid "The GNU C Library" +msgstr "=D0=93=D0=BD=D1=83 =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1= =82=D0=B5=D0=BA=D0=B0" + +#: gnu/packages/base.scm:639 +msgid "" +"Any Unix-like operating system needs a C library: the library which\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" +"printf, exit...\n" +"\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" +"with the Linux kernel." +msgstr "" +"=D0=A1=D0=B2=D0=B0=D0=BA=D0=BE=D0=BC =D0=88=D1=83=D0=BD=D0=B8=D0=BA=D1=81= =D0=BE=D0=BB=D0=B8=D0=BA=D0=BE=D0=BC =D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82= =D0=B8=D0=B2=D0=BD=D0=BE=D0=BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83= =D1=98=D0=B5 =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BD=D0=B0 =D0=A6 =D0= =B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0: " +"=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0\n" +"=D0=BA=D0=BE=D1=98=D0=B0 =D0=BE=D0=B4=D1=80=D0=B5=D1=92=D1=83=D1=98=D0=B5= =E2=80=9E=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=81=D0=BA=D0=B5 =D0=BF=D0= =BE=D0=B7=D0=B8=D0=B2=D0=B5=E2=80=9C =D0=B8 =D0=BE=D1=81=D1=82=D0=B0=D0=BB= =D0=B5 =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B5 =D0=BE=D0=BB=D0=B0=D0=BA= =D1=88=D0=B8=D1=86=D0=B5 =D0=BA=D0=B0=D0=BE =D1=88=D1=82=D0=BE =D1=81=D1=83= \n" +"=E2=80=9Eopen, malloc, printf, exit...=E2=80=9C\n" +"\n" +"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0= =B8=D0=BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=81=D0=B5 =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D1=82=D0=B8 =D0=BA=D0=B0=D0=BE =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0= =BE=D1=82=D0=B5=D0=BA=D0=B0 =D1=83 =D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE=D0= =BC =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=83 =D0=B8 =D0=B2=D0=B5=D1=9B=D0= =B8=D0=BD=D0=B8\n" +"=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D0=B0 =D1=81=D0=B0 =D0=9B=D0=B8=D0= =BD=D1=83=D0=BA=D1=81 =D1=98=D0=B5=D0=B7=D0=B3=D1=80=D0=BE=D0=BC." + +#: gnu/packages/base.scm:670 +msgid "All the locales supported by the GNU C Library" +msgstr "" + +#: gnu/packages/base.scm:672 +msgid "" +"This package provides all the locales supported by the GNU C Library,\n= " +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" +"the 'share/locale' sub-directory of this package." +msgstr "" + +#: gnu/packages/base.scm:740 +msgid "Small sample of UTF-8 locales" +msgstr "" + +#: gnu/packages/base.scm:742 +msgid "" +"This package provides a small sample of UTF-8 locales mostly useful in\= n" +"test environments." +msgstr "" + +#: gnu/packages/base.scm:760 +msgid "Find full path of shell commands" +msgstr "" + +#: gnu/packages/base.scm:762 +msgid "" +"The which program finds the location of executables in PATH, with a\n" +"variety of options. It is an alternative to the shell \"type\" built-i= n\n" +"command." +msgstr "" + +#: gnu/packages/base.scm:832 +#, fuzzy +msgid "The GNU C Library (GNU Hurd variant)" +msgstr "=D0=93=D0=BD=D1=83 =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1= =82=D0=B5=D0=BA=D0=B0" + +#: gnu/packages/base.scm:934 +msgid "Database of current and historical time zones" +msgstr "=D0=91=D0=B0=D0=B7=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0= =BA=D0=B0 =D0=BE =D1=82=D0=B5=D0=BA=D1=83=D1=9B=D0=B8=D0=BC =D0=B8 =D0=B7= =D0=B0=D1=81=D1=82=D0=B0=D1=80=D0=B5=D0=BB=D0=B8=D0=BC =D0=B2=D1=80=D0=B5= =D0=BC=D0=B5=D0=BD=D1=81=D0=BA=D0=B8=D0=BC =D0=B7=D0=BE=D0=BD=D0=B0=D0=BC= =D0=B0" + +#: gnu/packages/base.scm:935 +#, fuzzy +msgid "" +"The Time Zone Database (often called tz or zoneinfo)\n" +"contains code and data that represent the history of local time for man= y\n" +"representative locations around the globe. It is updated periodically = to\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" +"and daylight-saving rules." +msgstr "" +"=D0=91=D0=B0=D0=B7=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0= =D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D1=81=D0=BA=D0=B5 =D0=B7=D0=BE=D0=BD= =D0=B5 (=D1=87=D0=B5=D1=81=D1=82=D0=BE =D0=BD=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0= =D0=BD=D0=B0 =E2=80=9Etz=E2=80=9C =D0=B8=D0=BB=D0=B8 =E2=80=9Ezoneinfo=E2= =80=9C)\n" +"=D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B8 =D0=BA=D0=BE=D0=B4 =D0=B8 =D0=BF=D0= =BE=D0=B4=D0=B0=D1=82=D0=BA=D0=B5 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D1=80=D0= =B5=D0=B4=D1=81=D1=82=D0=B0=D0=B2=D1=99=D0=B0=D1=98=D1=83 =D0=B8=D1=81=D1= =82=D0=BE=D1=80=D0=B8=D1=98=D0=B0=D1=82 =D0=BC=D0=B5=D1=81=D0=BD=D0=BE=D0= =B3 =D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B0 =D0=B7=D0=B0\n" +"=D0=BC=D0=BD=D0=BE=D0=B3=D0=B0 =D0=BF=D1=80=D0=B5=D0=B4=D1=81=D1=82=D0=B0= =D0=B2=D1=99=D0=B0=D1=98=D1=83=D1=9B=D0=B0 =D0=BC=D0=B5=D1=81=D1=82=D0=B0= =D1=88=D0=B8=D1=80=D0=BE=D0=BC =D1=81=D0=B2=D0=B5=D1=82=D0=B0. =D0=9F=D0= =BE=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BE =D1=81=D0=B5 =D0=BE=D1=81=D0= =B2=D0=B5=D0=B6=D0=B0=D0=B2=D0=B0 =D0=BA=D0=B0=D0=BA=D0=BE\n" +"=D0=B1=D0=B8 =D0=BE=D1=81=D0=BB=D0=B8=D0=BA=D0=B0=D0=BB=D0=B0 =D0=BF=D1= =80=D0=BE=D0=BC=D0=B5=D0=BD=D0=B5 =D0=BD=D0=B0 =D0=B3=D1=80=D0=B0=D0=BD=D0= =B8=D1=86=D0=B0=D0=BC=D0=B0 =D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D1=81=D0= =BA=D0=B8=D1=85 =D0=B7=D0=BE=D0=BD=D0=B0 =D0=BA=D0=BE=D1=98=D0=B5 =D0=B4=D0= =BE=D0=BD=D0=BE=D1=81=D0=B5 =D0=BF=D0=BE=D0=BB=D0=B8=D1=82=D0=B8=D1=87=D0= =BA=D0=B0\n" +"=D1=82=D0=B5=D0=BB=D0=B0, =D0=BF=D0=BE=D0=BC=D0=B5=D1=80=D0=B0=D1=98=D0= =B5 =D0=9A=D0=A3=D0=92-=D0=B0, =D0=B8 =D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB= =D0=B0 =D1=83=D1=88=D1=82=D0=B5=D0=B4=D0=B5 =D0=B4=D0=BD=D0=B5=D0=B2=D0=BD= =D0=BE=D0=B3 =D1=81=D0=B2=D0=B5=D1=82=D0=BB=D0=B0." + +#: gnu/packages/bittorrent.scm:90 +msgid "Fast and easy BitTorrent client" +msgstr "" + +#: gnu/packages/bittorrent.scm:92 +msgid "" +"Transmission is a BitTorrent client that comes with graphical,\n" +"textual, and Web user interfaces. Transmission also has a daemon for\n= " +"unattended operations. It supports local peer discovery, full encrypti= on,\n" +"DHT, =C2=B5TP, PEX and Magnet Links." +msgstr "" + +#: gnu/packages/bittorrent.scm:124 +msgid "BitTorrent library of rtorrent" +msgstr "" + +#: gnu/packages/bittorrent.scm:126 +msgid "" +"LibTorrent is a BitTorrent library used by and developed in parallel\n" +"with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" +"speed and efficiency." +msgstr "" + +#: gnu/packages/bittorrent.scm:153 +msgid "BitTorrent client with ncurses interface" +msgstr "" + +#: gnu/packages/bittorrent.scm:155 +msgid "" +"rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" +"full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" +"XML-RPC over SCGI." +msgstr "" + +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + +#: gnu/packages/certs.scm:65 +msgid "Python script to extract .pem data from certificate collection" +msgstr "" + +#: gnu/packages/certs.scm:67 +msgid "" +"certdata2pem.py is a Python script to transform X.509 certificate\n" +"\"source code\" as contained, for example, in the Mozilla sources, into= \n" +".pem formatted certificates." +msgstr "" + +#: gnu/packages/certs.scm:124 +msgid "CA certificates from Mozilla" +msgstr "" + +#: gnu/packages/certs.scm:126 +msgid "" +"This package provides certificates for Certification Authorities (CA)\n= " +"taken from the NSS package and thus ultimately from the Mozilla project= ." +msgstr "" + +#: gnu/packages/compression.scm:75 +msgid "Compression library" +msgstr "" + +#: gnu/packages/compression.scm:77 +msgid "" +"zlib is designed to be a free, general-purpose, legally unencumbered --= \n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" +"use on virtually any computer hardware and operating system. The zlib = data\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" +"triple the file size in extreme cases.) zlib's memory footprint is als= o\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" +"in compression." +msgstr "" + +#: gnu/packages/compression.scm:102 +msgid "Replacement for Sun's 'jar' utility" +msgstr "" + +#: gnu/packages/compression.scm:104 +msgid "" +"FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" +"utility. Instead of being written in Java, FastJar is written in C." +msgstr "" + +#: gnu/packages/compression.scm:122 +msgid "C library for manipulating POSIX tar files" +msgstr "" + +#: gnu/packages/compression.scm:124 +msgid "" +"libtar is a C library for manipulating POSIX tar files. It handles\n" +"adding and extracting files to/from a tar archive." +msgstr "" + +#: gnu/packages/compression.scm:141 +msgid "General file (de)compression (using lzw)" +msgstr "" + +#: gnu/packages/compression.scm:146 +msgid "" +"GNU Gzip provides data compression and decompression utilities; the\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" +"\".tar.gz\" or \".tgz\", etc." +msgstr "" + +#: gnu/packages/compression.scm:222 +msgid "High-quality data compression program" +msgstr "" + +#: gnu/packages/compression.scm:224 +msgid "" +"bzip2 is a freely available, patent free (see below), high-quality data= \n" +"compressor. It typically compresses files to within 10% to 15% of the = best\n" +"available techniques (the PPM family of statistical compressors), whils= t\n" +"being around twice as fast at compression and six times faster at\n" +"decompression." +msgstr "" + +#: gnu/packages/compression.scm:254 +msgid "Parallel bzip2 implementation" +msgstr "" + +#: gnu/packages/compression.scm:256 +msgid "" +"Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" +"compressed with pbzip2 can be decompressed with bzip2)." +msgstr "" + +#: gnu/packages/compression.scm:277 +msgid "General-purpose data compression" +msgstr "" + +#: gnu/packages/compression.scm:279 +msgid "" +"XZ Utils is free general-purpose data compression software with high\n" +"compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" +"\n" +"The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" +"been modified quite a lot to be suitable for XZ Utils. The primary\n" +"compression algorithm is currently LZMA2, which is used inside the .xz\= n" +"container format. With typical files, XZ Utils create 30 % smaller out= put\n" +"than gzip and 15 % smaller output than bzip2." +msgstr "" + +#: gnu/packages/compression.scm:307 +msgid "Data compression library suitable for real-time data de-/compress= ion" +msgstr "" + +#: gnu/packages/compression.scm:309 +msgid "" +"LZO is a data compression library which is suitable for data\n" +"de-/compression in real-time. This means it favours speed over\n" +"compression ratio.\n" +"\n" +"LZO is written in ANSI C. Both the source code and the compressed data= \n" +"format are designed to be portable across platforms." +msgstr "" + +#: gnu/packages/compression.scm:332 +msgid "Compress or expand files" +msgstr "" + +#: gnu/packages/compression.scm:334 +msgid "" +"Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" +"some compression ratio)." +msgstr "" + +#: gnu/packages/compression.scm:353 +msgid "Lossless data compressor based on the LZMA algorithm" +msgstr "" + +#: gnu/packages/compression.scm:355 +msgid "" +"Lzip is a lossless data compressor with a user interface similar to the= \n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" +"archiving. Lzip is a clean implementation of the LZMA algorithm." +msgstr "" + +#: gnu/packages/compression.scm:387 +msgid "Archives in shell scripts, uuencode/uudecode" +msgstr "" + +#: gnu/packages/compression.scm:389 +msgid "" +"GNU sharutils is a package for creating and manipulating shell\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" +"This package is mostly for compatibility and historical interest." +msgstr "" + +#: gnu/packages/compression.scm:420 +msgid "Library for SoundFont decompression" +msgstr "" + +#: gnu/packages/compression.scm:422 +msgid "" +"SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" +"with the sfArk algorithm." +msgstr "" + +#: gnu/packages/compression.scm:454 +msgid "Basic sfArk decompressor" +msgstr "" + +#: gnu/packages/compression.scm:455 +msgid "" +"SfArk extractor converts SoundFonts in the compressed legacy\n" +"sfArk file format to the uncompressed sf2 format." +msgstr "" + +#: gnu/packages/compression.scm:472 +msgid "Compression tools for some formats used by Microsoft" +msgstr "" + +#: gnu/packages/compression.scm:474 +msgid "" +"The purpose of libmspack is to provide both compression and\n" +"decompression of some loosely related file formats used by Microsoft." +msgstr "" + +#: gnu/packages/compression.scm:493 +msgid "Low-level interface to bzip2 compression library" +msgstr "" + +#: gnu/packages/compression.scm:494 +msgid "" +"This module provides a Perl interface to the bzip2\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:528 +msgid "Low-level interface to zlib compression library" +msgstr "" + +#: gnu/packages/compression.scm:529 +msgid "" +"This module provides a Perl interface to the zlib\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:550 +msgid "IO Interface to compressed files/buffers" +msgstr "" + +#: gnu/packages/compression.scm:551 +msgid "" +"IO-Compress provides a Perl interface to allow reading and\n" +"writing of compressed data created with the zlib and bzip2 libraries." +msgstr "" + +#: gnu/packages/compression.scm:577 +msgid "Compression algorithm focused on speed" +msgstr "" + +#: gnu/packages/compression.scm:578 +msgid "" +"LZ4 is a lossless compression algorithm, providing\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" +"time for compression ratio." +msgstr "" + +#: gnu/packages/compression.scm:618 +msgid "Tools to create and extract squashfs filesystems" +msgstr "" + +#: gnu/packages/compression.scm:620 +msgid "" +"Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" +"zlib to compress files, inodes, and directories. All blocks are packed= to\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" +"It is intended to be used for archival use, for live CDs, and for embed= ded\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" +"extract such filesystems." +msgstr "" + +#: gnu/packages/compression.scm:657 +msgid "Parallel implementation of gzip" +msgstr "" + +#: gnu/packages/compression.scm:659 +msgid "" +"This package provides a parallel implementation of gzip that exploits\n= " +"multiple processors and multiple cores when compressing data." +msgstr "" + +#: gnu/packages/compression.scm:683 +msgid "Parallel indexing implementation of LZMA" +msgstr "" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 +msgid "Berkeley database" +msgstr "" + +#: gnu/packages/databases.scm:124 +msgid "" +"Berkeley DB is an embeddable database allowing developers the choice of= \n" +"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +msgstr "" + +#: gnu/packages/databases.scm:198 +msgid "Fast, easy to use, and popular database" +msgstr "" + +#: gnu/packages/databases.scm:200 +msgid "" +"MySQL is a fast, reliable, and easy to use relational database\n" +"management system that supports the standardized Structured Query\n" +"Language." +msgstr "" + +#: gnu/packages/databases.scm:267 +msgid "SQL database server" +msgstr "" + +#: gnu/packages/databases.scm:269 +msgid "" +"MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" +"as a drop-in replacement of MySQL." +msgstr "" + +#: gnu/packages/databases.scm:289 +msgid "Powerful object-relational database system" +msgstr "" + +#: gnu/packages/databases.scm:291 +msgid "" +"PostgreSQL is a powerful object-relational database system. It is full= y\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" +"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" +"TIMESTAMP. It also supports storage of binary large objects, including= \n" +"pictures, sounds, or video." +msgstr "" + +#: gnu/packages/databases.scm:329 +msgid "Manipulate plain text files as databases" +msgstr "=D0=A3=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=98=D1=82=D0=B5 =D0= =B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0=B0 =D0=BE=D0=B1=D0= =B8=D1=87=D0=BD=D0=BE=D0=B3 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D0=BA=D0= =B0=D0=BE =D0=B1=D0=B0=D0=B7=D0=B0=D0=BC=D0=B0 =D0=BF=D0=BE=D0=B4=D1=82=D0= =B0=D0=BA=D0=B0" + +#: gnu/packages/databases.scm:331 +#, fuzzy +msgid "" +"GNU Recutils is a set of tools and libraries for creating and\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" +"databases created with Recutils carry all of the expected features such= as\n" +"unique fields, primary keys, time stamps and more. Many different fiel= d\n" +"types are supported, as is encryption." +msgstr "" +"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE =D0=A0=D0=B5=D0=BA=D0=BF=D0=BE=D0=BC= =D0=B0=D0=B3=D0=B0=D0=BB=D0=BE =D1=98=D0=B5 =D1=81=D0=BA=D1=83=D0=BF =D0=B0= =D0=BB=D0=B0=D1=82=D0=B0 =D0=B8 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82= =D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A= =D0=B5 =D0=B8 =D1=80=D1=83=D0=BA=D0=BE=D0=B2=D0=B0=D1=9A=D0=B5\n" +"=D0=B1=D0=B0=D0=B7=D0=B0=D0=BC=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0= =D0=BA=D0=B0 =D0=B7=D0=B0=D1=81=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=BC= =D0=BD=D0=B0 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83 =D0=BA=D0=BE=D1=98=D0=B5= =D1=81=D0=B5 =D0=BC=D0=BE=D0=B3=D1=83 =D1=83=D1=80=D0=B5=D1=92=D0=B8=D0=B2= =D0=B0=D1=82=D0=B8. =D0=98=D0=B0=D0=BA=D0=BE =D1=81=D1=83\n" +"=D0=B7=D0=B0=D1=81=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B5 =D0=BD=D0=B0 =D1= =82=D0=B5=D0=BA=D1=81=D1=82=D1=83, =D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE=D0= =B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D1=81=D1=82=D0=B2=D0=BE=D1=80=D0=B5=D0= =BD=D0=B5 =D0=A0=D0=B5=D0=BA=D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0= =BE=D0=BC =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B5 =D1=81=D0=B2=D0=B5\n" +"=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0=B5 =D1=84=D1=83=D0=BD= =D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D0=BA=D0=B0=D0=BE =D1=88=D1=82=D0=BE =D1=81= =D1=83 =D1=98=D0=B5=D0=B4=D0=B8=D0=BD=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=B0= =D0=BF=D0=BE=D1=99=D0=B0, =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B8 =D0= =BA=D1=99=D1=83=D1=87=D0=B5=D0=B2=D0=B8, =D0=BE=D0=B7=D0=BD=D0=B0=D0=BA=D0= =B5\n" +"=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B0 =D0=B8 =D1=98=D0=BE=D1=88 =D0= =BD=D0=B5=D0=BA=D0=B5. =D0=9C=D0=BD=D0=BE=D0=B3=D0=B5 =D1=80=D0=B0=D0=B7=D0= =BB=D0=B8=D1=87=D0=B8=D1=82=D0=B5 =D0=B2=D1=80=D1=81=D1=82=D0=B5 =D0=BF=D0= =BE=D1=99=D0=B0 =D1=81=D1=83 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0= =B5, =D0=BA=D0=B0=D0=BE =D1=83 =D1=88=D0=B8=D1=84=D1=80=D0=BE=D0=B2=D0=B0= =D1=9A=D1=83." + +#: gnu/packages/databases.scm:383 +msgid "The SQLite database management system" +msgstr "" + +#: gnu/packages/databases.scm:385 +msgid "" +"SQLite is a software library that implements a self-contained, serverle= ss,\n" +"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" +"is in the public domain." +msgstr "" + +#: gnu/packages/databases.scm:420 +msgid "Trivial database" +msgstr "" + +#: gnu/packages/databases.scm:422 +msgid "" +"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" +"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" +"extremely small." +msgstr "" + +#: gnu/packages/databases.scm:441 +msgid "Database independent interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:442 +msgid "This package provides an database interface for Perl." +msgstr "" + +#: gnu/packages/databases.scm:489 +msgid "Extensible and flexible object <-> relational mapper" +msgstr "" + +#: gnu/packages/databases.scm:490 +msgid "" +"An SQL to OO mapper with an object API inspired by\n" +"Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" +"still providing access to as many of the capabilities of the database a= s\n" +"possible, including retrieving related records from multiple tables in = a\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" +"\"ORDER BY\" and \"HAVING\" support." +msgstr "" + +#: gnu/packages/databases.scm:520 +msgid "Cursor with built-in caching support" +msgstr "" + +#: gnu/packages/databases.scm:521 +msgid "" +"DBIx::Class::Cursor::Cached provides a cursor class with\n" +"built-in caching support." +msgstr "" + +#: gnu/packages/databases.scm:541 +msgid "Introspect many-to-many relationships" +msgstr "" + +#: gnu/packages/databases.scm:542 +msgid "" +"Because the many-to-many relationships are not real\n" +"relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" +"all relevant information about these non-relationships so they can late= r be\n" +"introspected and examined." +msgstr "" + +#: gnu/packages/databases.scm:599 +msgid "Create a DBIx::Class::Schema based on a database" +msgstr "" + +#: gnu/packages/databases.scm:600 +msgid "" +"DBIx::Class::Schema::Loader automates the definition of a\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" +"columns, primary keys, unique constraints and relationships." +msgstr "" + +#: gnu/packages/databases.scm:624 +msgid "DBI PostgreSQL interface" +msgstr "" + +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "" + +#: gnu/packages/databases.scm:667 +msgid "SQlite interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:668 +msgid "" +"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" +"capable RDBMS working for your Perl project you simply have to install = this\n" +"module, and nothing else." +msgstr "" + +#: gnu/packages/databases.scm:698 +msgid "Generate SQL from Perl data structures" +msgstr "" + +#: gnu/packages/databases.scm:699 +msgid "" +"This module was inspired by the excellent DBIx::Abstract.\n" +"While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" +"been modified to make the SQL easier to generate from Perl data structu= res.\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" +"structures you provide it, so that you don't have to modify your code e= very\n" +"time your data changes." +msgstr "" + +#: gnu/packages/databases.scm:728 +msgid "Split SQL code into atomic statements" +msgstr "" + +#: gnu/packages/databases.scm:729 +msgid "" +"This module tries to split any SQL code, even including\n" +"non-standard extensions, into the atomic statements it is composed of." +msgstr "" + +#: gnu/packages/databases.scm:747 +msgid "SQL tokenizer" +msgstr "" + +#: gnu/packages/databases.scm:748 +msgid "" +"SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" +"claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" +"valid SQL query." +msgstr "" + +#: gnu/packages/databases.scm:765 +msgid "Data source abstraction library" +msgstr "" + +#: gnu/packages/databases.scm:766 +msgid "" +"Unixodbc is a library providing an API with which to access\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" +"Driver." +msgstr "" + +#: gnu/packages/databases.scm:790 +msgid "In-memory key/value and document store" +msgstr "" + +#: gnu/packages/databases.scm:792 +msgid "" +"UnQLite is an in-process software library which implements a\n" +"self-contained, serverless, zero-configuration, transactional NoSQL\n" +"database engine. UnQLite is a document store database similar to\n" +"MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store\n" +"similar to BerkeleyDB, LevelDB, etc." +msgstr "" + +#: gnu/packages/databases.scm:819 +msgid "Key-value cache and store" +msgstr "" + +#: gnu/packages/databases.scm:820 +msgid "" +"Redis is an advanced key-value cache and store. Redis\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" +"sets, bitmaps and hyperloglogs." +msgstr "" + +#: gnu/packages/debug.scm:74 +msgid "Heuristical file minimizer" +msgstr "" + +#: gnu/packages/debug.scm:76 +msgid "" +"Delta assists you in minimizing \"interesting\" files subject to a test= \n" +"of their interestingness. A common such situation is when attempting t= o\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" +"program to exhibit a bug." +msgstr "" + +#: gnu/packages/debug.scm:135 +msgid "Reducer for interesting code" +msgstr "" + +#: gnu/packages/debug.scm:137 +msgid "" +"C-Reduce is a tool that takes a large C or C++ program that has a\n" +"property of interest (such as triggering a compiler bug) and automatica= lly\n" +"produces a much smaller C/C++ program that has the same property. It i= s\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" +"tools that process C/C++ code." +msgstr "" + +#: gnu/packages/debug.scm:249 +msgid "Security-oriented fuzzer" +msgstr "" + +#: gnu/packages/debug.scm:251 +msgid "" +"American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" +"fuzzed code. The compact synthesized corpora produced by the tool are = also\n" +"useful for seeding other, more labor- or resource-intensive testing reg= imes\n" +"down the road." +msgstr "" + +#: gnu/packages/dejagnu.scm:78 +msgid "GNU software testing framework" +msgstr "" + +#: gnu/packages/dejagnu.scm:80 +msgid "" +"DejaGnu is a framework for testing software. In effect, it serves as\n= " +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" +"multiple test suites, which are then all managed by a single harness." +msgstr "" + +#: gnu/packages/feh.scm:54 +msgid "Fast and light imlib2-based image viewer" +msgstr "" + +#: gnu/packages/feh.scm:56 +msgid "" +"feh is an X11 image viewer aimed mostly at console users.\n" +"Unlike most other viewers, it does not have a fancy GUI, but simply\n" +"displays images. It can also be used to set the desktop wallpaper.\n" +"It is controlled via commandline arguments and configurable key/mouse\n= " +"actions." +msgstr "" + +#: gnu/packages/games.scm:116 +msgid "Backgammon game" +msgstr "" + +#: gnu/packages/games.scm:117 +msgid "" +"The GNU backgammon application can be used for playing, analyzing and\n= " +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" +"neural networks suitable for both beginners and advanced players. In\n= " +"addition to a command-line interface, it also features an attractive, 3= D\n" +"representation of the playing board." +msgstr "" + +#: gnu/packages/games.scm:146 +msgid "3d Rubik's cube game" +msgstr "" + +#: gnu/packages/games.scm:148 +msgid "" +"GNUbik is a puzzle game in which you must manipulate a cube to make\n" +"each of its faces have a uniform color. The game is customizable, allo= wing\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" +"You may even apply photos to the faces instead of colors. The game is\= n" +"scriptable with Guile." +msgstr "" + +#: gnu/packages/games.scm:198 +msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" +msgstr "" + +#: gnu/packages/games.scm:199 +msgid "" +"L'Abbaye des Morts is a 2D platform game set in 13th century\n" +"France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" +"that beneath its ruins lay buried an ancient evil." +msgstr "" + +#: gnu/packages/games.scm:242 +msgid "Lemmings clone" +msgstr "" + +#: gnu/packages/games.scm:244 +msgid "" +"Pingus is a free Lemmings-like puzzle game in which the player takes\n" +"command of a bunch of small animals and has to guide them through level= s.\n" +"Since the animals walk on their own, the player can only influence them= by\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" +"in the other direction. Multiple such commands are necessary to reach = the\n" +"level's exit. The game is presented in a 2D side view." +msgstr "" + +#: gnu/packages/games.scm:266 +msgid "Convert English text to humorous dialects" +msgstr "" + +#: gnu/packages/games.scm:267 +msgid "" +"The GNU Talk Filters are programs that convert English text\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" +"a C library, so they can easily be integrated into other programs." +msgstr "" + +#: gnu/packages/games.scm:299 +msgid "Simulate the display from \"The Matrix\"" +msgstr "" + +#: gnu/packages/games.scm:300 +msgid "" +"CMatrix simulates the display from \"The Matrix\" and is\n" +"based on the screensaver from the movie's website. It works with termi= nal\n" +"settings up to 132x300 and can scroll lines all at the same rate or\n" +"asynchronously and at a user-defined speed." +msgstr "" + +#: gnu/packages/games.scm:320 +msgid "Full chess implementation" +msgstr "" + +#: gnu/packages/games.scm:321 +msgid "" +"GNU Chess is a chess engine. It allows you to compete\n" +"against the computer in a game of chess, either through the default " +"terminal\n" +"interface or via an external visual interface such as GNU XBoard." +msgstr "" + +#: gnu/packages/games.scm:349 +msgid "Twisted adventures of young pig farmer Dink Smallwood" +msgstr "" + +#: gnu/packages/games.scm:351 +msgid "" +"GNU FreeDink is a free and portable re-implementation of the engine\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" +"game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" +"To that extent, it also includes a front-end for managing all of your D= -Mods." +msgstr "" + +#: gnu/packages/games.scm:373 +msgid "Game data for GNU Freedink" +msgstr "" + +#: gnu/packages/games.scm:375 +msgid "This package contains the game data of GNU Freedink." +msgstr "" + +#: gnu/packages/games.scm:427 +msgid "Graphical user interface for chess programs" +msgstr "" + +#: gnu/packages/games.scm:428 +msgid "" +"GNU XBoard is a graphical board for all varieties of chess,\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" +"fully interactive graphical interface and it can load and save games in= the\n" +"Portable Game Notation." +msgstr "" + +#: gnu/packages/games.scm:481 +msgid "Ball and paddle game" +msgstr "" + +#: gnu/packages/games.scm:482 +msgid "" +"XBoing is a blockout type game where you have a paddle which\n" +"you control to bounce a ball around the game zone destroying blocks wit= h a\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" +"destroy, the better your score. The person with the highest score wins= ." +msgstr "" + +#: gnu/packages/games.scm:514 +msgid "Typing tutor" +msgstr "" + +#: gnu/packages/games.scm:516 +msgid "" +"GNU Typist is a universal typing tutor. It can be used to learn and\n" +"practice touch-typing. Several tutorials are included; in addition to\= n" +"tutorials for the standard QWERTY layout, there are also tutorials for = the\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" +"are primarily in English, however some in other languages are provided.= " +msgstr "" + +#: gnu/packages/games.scm:569 +msgid "3D game engine written in C++" +msgstr "" + +#: gnu/packages/games.scm:571 +msgid "" +"The Irrlicht Engine is a high performance realtime 3D engine written in= \n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" +"for common mesh file formats, and collision detection." +msgstr "" + +#: gnu/packages/games.scm:623 +msgid "2D space shooter" +msgstr "" + +#: gnu/packages/games.scm:625 +msgid "" +"M.A.R.S. is a 2D space shooter with pretty visual effects and\n" +"attractive physics. Players can battle each other or computer controll= ed\n" +"enemies in different game modes such as space ball, death match, team d= eath\n" +"match, cannon keep, and grave-itation pit." +msgstr "" + +#: gnu/packages/games.scm:666 +msgid "Main game data for the Minetest game engine" +msgstr "" + +#: gnu/packages/games.scm:668 +msgid "Game data for the Minetest infinite-world block sandox game." +msgstr "" + +#: gnu/packages/games.scm:720 +msgid "Infinite-world block sandbox game" +msgstr "" + +#: gnu/packages/games.scm:722 +msgid "" +"Minetest is a sandbox construction game. Players can create and destro= y\n" +"various types of blocks in a three-dimensional open world. This allows= \n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" +"in different ways." +msgstr "" + +#: gnu/packages/games.scm:761 +msgid "Curses Implementation of the Glk API" +msgstr "" + +#: gnu/packages/games.scm:763 +msgid "" +"Glk defines a portable API for applications with text UIs. It was\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" +"interactive text utilities, particularly those based on a command line.= \n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" +"using the curses.h library for screen control." +msgstr "" + +#: gnu/packages/games.scm:800 +msgid "Interpreter for Glulx VM" +msgstr "" + +#: gnu/packages/games.scm:802 +msgid "" +"Glulx is a 32-bit portable virtual machine intended for writing and\n" +"playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" +"some of the restrictions in the venerable Z-machine format. This is th= e\n" +"reference interpreter, using Glk API." +msgstr "" + +#: gnu/packages/games.scm:838 +msgid "Z-machine interpreter" +msgstr "" + +#: gnu/packages/games.scm:840 +msgid "" +"Fizmo is a console-based Z-machine interpreter. It is used to play\n" +"interactive fiction, also known as text adventures, which were implemen= ted\n" +"either by Infocom or created using the Inform compiler." +msgstr "" + +#: gnu/packages/games.scm:890 +msgid "Reference frontend for the libretro API" +msgstr "" + +#: gnu/packages/games.scm:892 +msgid "" +"Libretro is a simple but powerful development interface that allows for= \n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" +"straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" +"multi-system game/emulator system." +msgstr "" + +#: gnu/packages/games.scm:912 +msgid "Play the game of Go" +msgstr "" + +#: gnu/packages/games.scm:914 +msgid "" +"GNU Go is a program that plays the game of Go, in which players\n" +"place stones on a grid to form territory or capture other stones. Whil= e\n" +"it can be played directly from the terminal, rendered in ASCII characte= rs,\n" +"it is also possible to play GNU Go with 3rd party graphical interfaces = or\n" +"even in Emacs. It supports the standard game storage format (SGF, Smar= t\n" +"Game Format) and inter-process communication format (GMP, Go Modem\n" +"Protocol)." +msgstr "" + +#: gnu/packages/games.scm:964 +msgid "High speed arctic racing game based on Tux Racer" +msgstr "" + +#: gnu/packages/games.scm:966 +msgid "" +"Extreme Tux Racer, or etracer as it is called for short, is\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" +"avoiding the trees and rocks that will slow you down.\n" +"\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" +"bones.\n" +"\n" +"This game is based on the GPL version of the famous game TuxRacer." +msgstr "" + +#: gnu/packages/games.scm:1004 +msgid "Game of jumping to the next floor, trying not to fall" +msgstr "" + +#: gnu/packages/games.scm:1006 +msgid "" +"GNUjump is a simple, yet addictive game in which you must jump from\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" +"falling, themeable graphics and sounds, and replays." +msgstr "" + +#: gnu/packages/games.scm:1047 +msgid "Turn-based strategy game" +msgstr "" + +#: gnu/packages/games.scm:1049 +msgid "" +"The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" +"local).\n" +"\n" +"Battle for control on a range of maps, using variety of units which hav= e\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" +"next campaign." +msgstr "" + +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" +msgstr "" + +#: gnu/packages/games.scm:1094 +msgid "" +"DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" +"also emulates CPU:286/386 realmode/protected mode, Directory\n" +"FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a\n" +"SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility = with\n" +"older games." +msgstr "" + +#: gnu/packages/games.scm:1139 +msgid "Mouse and keyboard discovery for children" +msgstr "" + +#: gnu/packages/games.scm:1141 +msgid "" +"Gamine is a game designed for young children who are learning to use th= e\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" +"on the screen and keyboard to display letters." +msgstr "" + +#: gnu/packages/games.scm:1172 +msgid "Puzzle game with a cat in lead role" +msgstr "" + +#: gnu/packages/games.scm:1173 +msgid "" +"Project Raincat is a game developed by Carnegie Mellon\n" +"students through GCS during the Fall 2008 semester. Raincat features g= ame\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" +"is programmed in Haskell." +msgstr "" + +#: gnu/packages/games.scm:1208 +msgid "Client for 'The Mana World' and similar games" +msgstr "" + +#: gnu/packages/games.scm:1210 +msgid "" +"ManaPlus is a 2D MMORPG client for game servers. It is the only\n" +"fully supported client for @uref{http://www.themanaworld.org, The mana\= n" +"world}, @uref{http://evolonline.org, Evol Online} and\n" +"@uref{http://landoffire.org, Land of fire}." +msgstr "" + +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +msgid "Pinball simulator" +msgstr "" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 +msgid "GNU Compiler Collection" +msgstr "" + +#: gnu/packages/gcc.scm:315 +msgid "" +"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" +"Go. It also includes runtime support libraries for these languages." +msgstr "" + +#: gnu/packages/gcc.scm:380 +#, fuzzy +msgid "GNU C++ standard library" +msgstr "=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=B0 =D0=A6++ =D1=81=D1=82=D0=B0= =D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B0 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8= =D0=BE=D1=82=D0=B5=D0=BA=D0=B0 (=D0=BF=D0=BE=D1=81=D1=80=D0=B5=D0=B4=D0=BD= =D0=B8=D1=87=D0=BA=D0=B0)" + +#: gnu/packages/gcc.scm:415 +msgid "Collection of subroutines used by various GNU programs" +msgstr "" + +#: gnu/packages/gcc.scm:610 +msgid "GNU libstdc++ documentation" +msgstr "" + +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" +msgstr "" + +#: gnu/packages/gcc.scm:681 +msgid "" +"isl is a library for manipulating sets and relations of integer points\= n" +"bounded by linear constraints. Supported operations on sets include\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" +"affine hull, integer projection, computing the lexicographic minimum us= ing\n" +"parametric integer programming, coalescing and parametric vertex\n" +"enumeration. It also includes an ILP solver based on generalized basis= \n" +"reduction, transitive closures on maps (which may encode infinite graph= s),\n" +"dependence analysis and bounds on piecewise step-polynomials." +msgstr "" + +#: gnu/packages/gcc.scm:713 +msgid "Library to generate code for scanning Z-polyhedra" +msgstr "" + +#: gnu/packages/gcc.scm:715 +msgid "" +"CLooG is a free software library to generate code for scanning\n" +"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" +"reaches each integral point of one or more parameterized polyhedra.\n" +"CLooG has been originally written to solve the code generation problem\= n" +"for optimizing compilers based on the polytope model. Nevertheless it\= n" +"is used now in various area e.g., to build control automata for\n" +"high-level synthesis or to find the best polynomial approximation of a\= n" +"function. CLooG may help in any situation where scanning polyhedra\n" +"matters. While the user has full control on generated code quality,\n" +"CLooG is designed to avoid control overhead and to produce a very\n" +"effective code." +msgstr "" + +#: gnu/packages/gcc.scm:770 +msgid "Reference manual for the C programming language" +msgstr "" + +#: gnu/packages/gcc.scm:772 +msgid "" +"This is a reference manual for the C programming language, as\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" +"of the language. Library functions are not included." +msgstr "" + +#: gnu/packages/geeqie.scm:48 +msgid "Library and command-line utility to manage image metadata" +msgstr "" + +#: gnu/packages/geeqie.scm:50 +msgid "" +"Exiv2 is a C++ library and a command line utility to manage image\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" +"and XMP metadata of images in various formats." +msgstr "" + +#: gnu/packages/geeqie.scm:82 +msgid "Lightweight GTK+ based image viewer" +msgstr "" + +#: gnu/packages/geeqie.scm:84 +msgid "" +"Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" +"systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" +"image formats; tools for image comparison, sorting and managing photo\n= " +"collection. Geeqie was initially based on GQview." +msgstr "" + +#: gnu/packages/gettext.scm:93 +msgid "Tools and documentation for translation" +msgstr "" + +#: gnu/packages/gettext.scm:95 +msgid "" +"GNU Gettext is a package providing a framework for translating the\n" +"textual output of programs into multiple languages. It provides " +"translators\n" +"with the means to create message catalogs, as well as an Emacs mode to = work\n" +"with them, and a runtime library to load translated messages from the\n= " +"catalogs. Nearly all GNU packages use Gettext." +msgstr "" + +#: gnu/packages/gettext.scm:151 +msgid "Scripts to ease maintenance of translations" +msgstr "" + +#: gnu/packages/gettext.scm:153 +msgid "" +"The po4a (PO for anything) project goal is to ease translations (and\n" +"more interestingly, the maintenance of translations) using gettext tool= s on\n" +"areas where they were not expected like documentation." +msgstr "" + +#: gnu/packages/gimp.scm:53 +msgid "Image pixel format conversion library" +msgstr "" + +#: gnu/packages/gimp.scm:55 +msgid "" +"Babl is a dynamic, any to any, pixel format translation library.\n" +"It allows converting between different methods of storing pixels known = as\n" +"pixel formats that have with different bitdepths and other data\n" +"representations, color models and component permutations.\n" +"\n" +"A vocabulary to formulate new pixel formats from existing primitives is= \n" +"provided as well as the framework to add new color models and data type= s." +msgstr "" + +#: gnu/packages/gimp.scm:110 +msgid "Graph based image processing framework" +msgstr "" + +#: gnu/packages/gimp.scm:111 +msgid "" +"GEGL (Generic Graphics Library) provides infrastructure to\n" +"do demand based cached non destructive image editing on larger than RAM= \n" +"buffers." +msgstr "" + +#: gnu/packages/gimp.scm:153 +msgid "GNU Image Manipulation Program" +msgstr "" + +#: gnu/packages/gimp.scm:155 +msgid "" +"GIMP is an application for image manipulation tasks such as photo\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" +"as well as specialized ones. It features a highly customizable interfa= ce\n" +"that is extensible via a plugin system." +msgstr "" + +#: gnu/packages/gnome.scm:154 +msgid "CD/DVD burning tool for Gnome" +msgstr "" + +#: gnu/packages/gnome.scm:155 +msgid "" +"Brasero is an application to burn CD/DVD for the Gnome\n" +"Desktop. It is designed to be as simple as possible and has some uniqu= e\n" +"features to enable users to create their discs easily and quickly." +msgstr "" + +#: gnu/packages/gnome.scm:175 +msgid "Bootstrap GNOME modules built from Git" +msgstr "" + +#: gnu/packages/gnome.scm:176 +msgid "" +"gnome-common contains various files needed to bootstrap\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" +"can be used to configure a source directory checked out from Git and so= me\n" +"commonly used macros." +msgstr "" + +#: gnu/packages/gnome.scm:217 +msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" +msgstr "" + +#: gnu/packages/gnome.scm:219 +msgid "" +"The libgnome-desktop library provides API shared by several application= s\n" +"on the desktop, but that cannot live in the platform for various reason= s.\n" +"There is no API or ABI guarantee, although we are doing our best to pro= vide\n" +"stability. Documentation for the API is available with gtk-doc.\n" +"\n" +"The gnome-about program helps find which version of GNOME is installed.= " +msgstr "" + +#: gnu/packages/gnome.scm:252 +msgid "Documentation utilities for the Gnome project" +msgstr "" + +#: gnu/packages/gnome.scm:254 +msgid "" +"Gnome-doc-utils is a collection of documentation utilities for the\n" +"Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" +"and keep up to date translations of documentation." +msgstr "" + +#: gnu/packages/gnome.scm:298 +msgid "Libraries for displaying certificates and accessing key stores" +msgstr "" + +#: gnu/packages/gnome.scm:300 +msgid "" +"The GCR package contains libraries used for displaying certificates and= \n" +"accessing key stores. It also provides the viewer for crypto files on = the\n" +"GNOME Desktop." +msgstr "" + +#: gnu/packages/gnome.scm:329 +msgid "Accessing passwords from the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:331 +msgid "Client library to access passwords from the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:393 +msgid "Daemon to store passwords and encryption keys" +msgstr "" + +#: gnu/packages/gnome.scm:395 +msgid "" +"gnome-keyring is a program that keeps passwords and other secrets for\n= " +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" +"applications locate it via an environment variable or D-Bus.\n" +"\n" +"The program can manage several keyrings, each with its own master passw= ord,\n" +"and there is also a session keyring which is never stored to disk, but\= n" +"forgotten when the session ends." +msgstr "" + +#: gnu/packages/gnome.scm:460 +msgid "GNOME's document viewer" +msgstr "" + +#: gnu/packages/gnome.scm:462 +msgid "" +"Evince is a document viewer for multiple document formats. It\n" +"currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" +"of Evince is to replace the multiple document viewers that exist\n" +"on the GNOME Desktop with a single simple application." +msgstr "" + +#: gnu/packages/gnome.scm:491 +msgid "GNOME settings for various desktop components" +msgstr "" + +#: gnu/packages/gnome.scm:493 +msgid "" +"Gsettings-desktop-schemas contains a collection of GSettings schemas\n" +"for settings shared by various components of the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:527 +msgid "Utility to implement the Freedesktop Icon Naming Specification" +msgstr "" + +#: gnu/packages/gnome.scm:529 +msgid "" +"To help with the transition to the Freedesktop Icon Naming\n" +"Specification, the icon naming utility maps the icon names used by the\= n" +"GNOME and KDE desktops to the icon names proposed in the specification.= " +msgstr "" + +#: gnu/packages/gnome.scm:551 +msgid "Utilities for working with desktop entries" +msgstr "" + +#: gnu/packages/gnome.scm:553 +msgid "" +"This package contains a few command line utilities for working with\n" +"desktop entries:\n" +"\n" +"desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" +" about desktop entry specification violations.\n" +"\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" +" optionally munging it a bit in transit.\n" +"\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" +" handled by desktop files." +msgstr "" + +#: gnu/packages/gnome.scm:587 +msgid "GNOME icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:589 +msgid "Icons for the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:628 +msgid "Database of common MIME types" +msgstr "" + +#: gnu/packages/gnome.scm:630 +msgid "" +"The shared-mime-info package contains the core database of common types= \n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" +"database is translated at Transifex." +msgstr "" + +#: gnu/packages/gnome.scm:654 +msgid "Freedesktop icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:656 +msgid "Freedesktop icon theme." +msgstr "" + +#: gnu/packages/gnome.scm:683 +msgid "GNOME desktop notification library" +msgstr "" + +#: gnu/packages/gnome.scm:685 +msgid "" +"Libnotify is a library that sends desktop notifications to a\n" +"notification daemon, as defined in the Desktop Notifications spec. The= se\n" +"notifications can be used to inform the user about an event or display\= n" +"some form of information without getting in the user's way." +msgstr "" + +#: gnu/packages/gnome.scm:717 +msgid "GObject plugin system" +msgstr "" + +#: gnu/packages/gnome.scm:719 +msgid "" +"Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" +"the API." +msgstr "" + +#: gnu/packages/gnome.scm:748 +msgid "OpenGL extension to GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:749 +msgid "" +"GtkGLExt is an OpenGL extension to GTK+. It provides\n" +"additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" +"API add-ons to make GTK+ widgets OpenGL-capable." +msgstr "" + +#: gnu/packages/gnome.scm:792 +msgid "GTK+ rapid application development tool" +msgstr "" + +#: gnu/packages/gnome.scm:793 +msgid "" +"Glade is a rapid application development (RAD) tool to\n" +"enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" +"the GNOME desktop environment." +msgstr "" + +#: gnu/packages/gnome.scm:818 +msgid "CSS2 parsing and manipulation library" +msgstr "" + +#: gnu/packages/gnome.scm:820 +msgid "" +"Libcroco is a standalone CSS2 parsing and manipulation library.\n" +"The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" +"XML/CSS rendering engine." +msgstr "" + +#: gnu/packages/gnome.scm:853 +msgid "GNOME's Structured File Library" +msgstr "" + +#: gnu/packages/gnome.scm:855 +msgid "" +"Libgsf aims to provide an efficient extensible I/O abstraction for\n" +"dealing with different structured file formats." +msgstr "" + +#: gnu/packages/gnome.scm:920 +msgid "Render SVG files using Cairo" +msgstr "" + +#: gnu/packages/gnome.scm:922 +msgid "" +"Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:946 +msgid "Create trees of CORBA Interface Definition Language files" +msgstr "" + +#: gnu/packages/gnome.scm:947 +msgid "" +"Libidl is a library for creating trees of CORBA Interface\n" +"Definition Language (idl) files, which is a specification for defining\= n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" +"GNOME project, and the primary means of libidl distribution). However,= the\n" +"functionality was designed to be as reusable and portable as possible." +msgstr "" + +#: gnu/packages/gnome.scm:987 +msgid "CORBA 2.4-compliant Object Request Broker" +msgstr "" + +#: gnu/packages/gnome.scm:988 +msgid "" +"ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" +"featuring mature C, C++ and Python bindings." +msgstr "" + +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" +msgstr "" + +#: gnu/packages/gnome.scm:1035 +msgid "" +"Bonobo is a framework for creating reusable components for\n" +"use in GNOME applications, built on top of CORBA." +msgstr "" + +#: gnu/packages/gnome.scm:1066 +msgid "Store application preferences" +msgstr "" + +#: gnu/packages/gnome.scm:1067 +msgid "" +"Gconf is a system for storing application preferences. It\n" +"is intended for user preferences; not arbitrary data storage." +msgstr "" + +#: gnu/packages/gnome.scm:1089 +msgid "Base MIME and Application database for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1090 +msgid "" +"GNOME Mime Data is a module which contains the base MIME\n" +"and Application database for GNOME. The data stored by this module is\= n" +"designed to be accessed through the MIME functions in GnomeVFS." +msgstr "" + +#: gnu/packages/gnome.scm:1134 +msgid "Access files and folders in GNOME applications" +msgstr "" + +#: gnu/packages/gnome.scm:1136 +msgid "" +"GnomeVFS is the core library used to access files and folders in GNOME\= n" +"applications. It provides a file system abstraction which allows " +"applications\n" +"to access local and remote files with a single consistent API." +msgstr "" + +#: gnu/packages/gnome.scm:1180 +msgid "Useful routines for building applications" +msgstr "" + +#: gnu/packages/gnome.scm:1181 +msgid "" +"The libgnome library provides a number of useful routines\n" +"for building modern applications, including session management, activat= ion " +"of\n" +"files and URIs, and displaying help." +msgstr "" + +#: gnu/packages/gnome.scm:1204 +msgid "2D drawing library" +msgstr "" + +#: gnu/packages/gnome.scm:1205 +msgid "" +"Libart is a 2D drawing library intended as a\n" +"high-quality vector-based 2D library with antialiasing and alpha compos= ition." +msgstr "" + +#: gnu/packages/gnome.scm:1232 +msgid "Flexible widget for creating interactive structured graphics" +msgstr "" + +#: gnu/packages/gnome.scm:1233 +msgid "" +"The GnomeCanvas widget provides a flexible widget for\n" +"creating interactive structured graphics." +msgstr "" + +#: gnu/packages/gnome.scm:1257 +msgid "C++ bindings to the GNOME Canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:1258 +msgid "C++ bindings to the GNOME Canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:1289 +msgid "Additional widgets for applications" +msgstr "" + +#: gnu/packages/gnome.scm:1290 +msgid "" +"The libgnomeui library provides additional widgets for\n" +"applications. Many of the widgets from libgnomeui have already been\n" +"ported to GTK+." +msgstr "" + +#: gnu/packages/gnome.scm:1316 +msgid "Load glade interfaces and access the glade built widgets" +msgstr "" + +#: gnu/packages/gnome.scm:1317 +msgid "" +"Libglade is a library that provides interfaces for loading\n" +"graphical interfaces described in glade files and for accessing the\n" +"widgets built in the loading process." +msgstr "" + +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 +msgid "Printing framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1356 +msgid "" +"GNOME-print was a printing framework for GNOME. It has been deprecated= \n" +"since ca. 2006, when GTK+ itself incorporated printing support." +msgstr "" + +#: gnu/packages/gnome.scm:1431 +msgid "Some user interface controls using Bonobo" +msgstr "" + +#: gnu/packages/gnome.scm:1432 +msgid "" +"The Bonobo UI library provides a number of user interface\n" +"controls using the Bonobo component framework." +msgstr "" + +#: gnu/packages/gnome.scm:1456 +msgid "Window Navigator Construction Kit" +msgstr "" + +#: gnu/packages/gnome.scm:1458 +msgid "" +"Libwnck is the Window Navigator Construction Kit, a library for use in\= n" +"writing pagers, tasklists, and more generally applications that are dea= ling\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" +"Hints specification (EWMH)." +msgstr "" + +#: gnu/packages/gnome.scm:1511 +msgid "Document-centric objects and utilities" +msgstr "" + +#: gnu/packages/gnome.scm:1512 +msgid "A GLib/GTK+ set of document-centric objects and utilities." +msgstr "" + +#: gnu/packages/gnome.scm:1594 +msgid "Spreadsheet application" +msgstr "" + +#: gnu/packages/gnome.scm:1596 +msgid "" +"GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" +"interoperable with other spreadsheet applications. It has a vast array= of\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" +"and non-linear solvers, statistical analysis, and telecommunication\n" +"engineering." +msgstr "" + +#: gnu/packages/gnome.scm:1642 +msgid "Default GNOME 3 themes" +msgstr "" + +#: gnu/packages/gnome.scm:1644 +msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." +msgstr "" + +#: gnu/packages/gnome.scm:1677 +msgid "Manage encryption keys and passwords in the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:1679 +msgid "" +"Seahorse is a GNOME application for managing encryption keys and\n" +"passwords in the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 +msgid "Compiler for the GObject type system" +msgstr "" + +#: gnu/packages/gnome.scm:1717 +msgid "" +"Vala is a programming language that aims to bring modern programming\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" +"requirements and without using a different ABI compared to applications= and\n" +"libraries written in C." +msgstr "" + +#: gnu/packages/gnome.scm:1747 +msgid "Virtual Terminal Emulator" +msgstr "" + +#: gnu/packages/gnome.scm:1749 +msgid "" +"VTE is a library (libvte) implementing a terminal emulator widget for\n= " +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" +"gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" +"editors, IDEs, etc." +msgstr "" + +#: gnu/packages/gnome.scm:1847 +msgid "Low-level GNOME configuration system" +msgstr "" + +#: gnu/packages/gnome.scm:1848 +msgid "" +"Dconf is a low-level configuration system. Its main purpose\n" +"is to provide a backend to GSettings on platforms that don't already ha= ve\n" +"configuration storage systems." +msgstr "" + +#: gnu/packages/gnome.scm:1882 +msgid "" +"JSON-GLib is a C library based on GLib providing serialization and\n" +"deserialization support for the JavaScript Object Notation (JSON) forma= t\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" +"and objects." +msgstr "" + +#: gnu/packages/gnome.scm:1921 +msgid "High-level API for X Keyboard Extension" +msgstr "" + +#: gnu/packages/gnome.scm:1923 +msgid "" +"LibXklavier is a library providing high-level API for X Keyboard\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" +"indicators etc)." +msgstr "" + +#: gnu/packages/gnome.scm:1951 +msgid "Python bindings to librsvg" +msgstr "" + +#: gnu/packages/gnome.scm:1953 +msgid "" +"This packages provides Python bindings to librsvg, the SVG rendering\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2002 +msgid "Network-related GIO modules" +msgstr "" + +#: gnu/packages/gnome.scm:2004 +msgid "" +"This package contains various network related extensions for the GIO\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2035 +msgid "RESTful web api query library" +msgstr "" + +#: gnu/packages/gnome.scm:2037 +msgid "" +"This library was designed to make it easier to access web services that= \n" +"claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" +"libxml to ease remote use of the RESTful API." +msgstr "" + +#: gnu/packages/gnome.scm:2106 +msgid "GLib-based HTTP Library" +msgstr "" + +#: gnu/packages/gnome.scm:2108 +msgid "" +"LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " +"and the GLib main loop, to integrate well with GNOME applications." +msgstr "" + +#: gnu/packages/gnome.scm:2154 +msgid "GObject bindings for \"Secret Service\" API" +msgstr "" + +#: gnu/packages/gnome.scm:2156 +msgid "" +"Libsecret is a GObject based library for storing and retrieving passwor= ds\n" +"and other secrets. It communicates with the \"Secret Service\" using D= Bus." +msgstr "" + +#: gnu/packages/gnome.scm:2200 +msgid "Minesweeper game" +msgstr "" + +#: gnu/packages/gnome.scm:2202 +msgid "" +"Mines (previously gnomine) is a puzzle game where you locate mines\n" +"floating in an ocean using only your brain and a little bit of luck." +msgstr "" + +#: gnu/packages/gnome.scm:2246 +msgid "Terminal emulator" +msgstr "" + +#: gnu/packages/gnome.scm:2248 +msgid "" +"GNOME Terminal is a terminal emulator application for accessing a\n" +"UNIX shell environment which can be used to run programs available on\n= " +"your system.\n" +"\n" +"It supports several profiles, multiple tabs and implements several\n" +"keyboard shortcuts." +msgstr "" + +#: gnu/packages/gnome.scm:2314 +msgid "Color management service" +msgstr "" + +#: gnu/packages/gnome.scm:2315 +msgid "" +"Colord is a system service that makes it easy to manage,\n" +"install and generate color profiles to accurately color manage input an= d\n" +"output devices." +msgstr "" + +#: gnu/packages/gnome.scm:2357 +msgid "Geolocation service" +msgstr "" + +#: gnu/packages/gnome.scm:2358 +msgid "" +"Geoclue is a D-Bus service that provides location\n" +"information. The primary goal of the Geoclue project is to make creati= ng\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" +"permission from user." +msgstr "" + +#: gnu/packages/gnome.scm:2393 +msgid "Geocoding and reverse-geocoding library" +msgstr "" + +#: gnu/packages/gnome.scm:2395 +msgid "" +"geocode-glib is a convenience library for geocoding (finding longitude,= \n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" +"coordinates) using the Nominatim service. geocode-glib caches requests= for\n" +"faster results and to avoid unnecessary server load." +msgstr "" + +#: gnu/packages/gnome.scm:2448 +msgid "System daemon for managing power devices" +msgstr "" + +#: gnu/packages/gnome.scm:2450 +msgid "" +"UPower is an abstraction for enumerating power devices,\n" +"listening to device events and querying history and statistics. Any\n" +"application or service on the system can access the org.freedesktop.UPo= wer\n" +"service via the system message bus." +msgstr "" + +#: gnu/packages/gnome.scm:2500 +msgid "Location, time zone, and weather library for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2502 +msgid "" +"libgweather is a library to access weather information from online\n" +"services for numerous locations." +msgstr "" + +#: gnu/packages/gnome.scm:2554 +msgid "GNOME settings daemon" +msgstr "" + +#: gnu/packages/gnome.scm:2556 +msgid "" +"This package contains the daemon responsible for setting the various\n" +"parameters of a GNOME session and the applications that run under it. = It\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" +"settings, themes, mouse settings, and startup of other daemons." +msgstr "" + +#: gnu/packages/gnome.scm:2592 +msgid "Library to parse and save media playlists for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2593 +msgid "" +"Totem-pl-parser is a GObjects-based library to parse and save\n" +"playlists in a variety of formats." +msgstr "" + +#: gnu/packages/gnome.scm:2627 +msgid "Solitaire card games" +msgstr "" + +#: gnu/packages/gnome.scm:2629 +msgid "" +"Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" +"which are easy to play with the aid of a mouse." +msgstr "" + +#: gnu/packages/gnome.scm:2653 +msgid "API documentation browser for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2655 +msgid "" +"Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " +"natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" +"throughout GNOME for API documentation)." +msgstr "" + +#: gnu/packages/gnome.scm:2716 +msgid "Object oriented GL/GLES Abstraction/Utility Layer" +msgstr "" + +#: gnu/packages/gnome.scm:2718 +msgid "" +"Cogl is a small library for using 3D graphics hardware to draw pretty\n= " +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" +"designed to make it easy to write orthogonal components that can render= \n" +"without stepping on each others toes." +msgstr "" + +#: gnu/packages/gnome.scm:2773 +msgid "Open GL based interactive canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 +msgid "" +"Clutter is an Open GL based interactive canvas library, designed for\n" +"creating fast, mainly 2D single window applications such as media box U= Is,\n" +"presentations, kiosk style applications and so on." +msgstr "" + +#: gnu/packages/gnome.scm:2802 +msgid "Open GL based interactive canvas library GTK+ widget" +msgstr "" + +#: gnu/packages/gnome.scm:2832 +msgid "Integration library for using GStreamer with Clutter" +msgstr "" + +#: gnu/packages/gnome.scm:2834 +msgid "" +"Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" +"It provides a GStreamer sink to upload frames to GL and an actor that\n= " +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" +"GL based interactive canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:2864 +msgid "C library providing a ClutterActor to display maps" +msgstr "" + +#: gnu/packages/gnome.scm:2866 +msgid "" +"libchamplain is a C library providing a ClutterActor to display maps.\n= " +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" +"such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." +msgstr "" + +#: gnu/packages/gnome.scm:2897 +msgid "Object mapper from GObjects to SQLite" +msgstr "" + +#: gnu/packages/gnome.scm:2899 +msgid "" +"Gom provides an object mapper from GObjects to SQLite. It helps you\n" +"write applications that need to store structured data as well as make " +"complex\n" +"queries upon that data." +msgstr "" + +#: gnu/packages/gnome.scm:2927 +msgid "Sliding block puzzles" +msgstr "" + +#: gnu/packages/gnome.scm:2929 +msgid "" +"GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" +"as possible!" +msgstr "" + +#: gnu/packages/gnome.scm:2980 +msgid "Framework for discovering and browsing media" +msgstr "" + +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 +msgid "" +"Grilo is a framework focused on making media discovery and browsing eas= y\n" +"for application developers." +msgstr "" + +#: gnu/packages/gnome.scm:3032 +msgid "Plugins for the Grilo media discovery library" +msgstr "" + +#: gnu/packages/gnome.scm:3109 +msgid "Simple media player for GNOME based on GStreamer" +msgstr "" + +#: gnu/packages/gnome.scm:3110 +msgid "" +"Totem is a simple yet featureful media player for GNOME\n" +"which can read a large number of file formats." +msgstr "" + +#: gnu/packages/gnome.scm:3199 +msgid "Music player for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3200 +msgid "" +"Rhythmbox is a music playing application for GNOME. It\n" +"supports playlists, song ratings, and any codecs installed through gstr= eamer." +msgstr "" + +#: gnu/packages/gnome.scm:3250 +msgid "GNOME image viewer" +msgstr "" + +#: gnu/packages/gnome.scm:3251 +msgid "" +"Eye of GNOME is the GNOME image viewer. It\n" +"supports image conversion, rotation, and slideshows." +msgstr "" + +#: gnu/packages/gnome.scm:3276 +#, fuzzy +msgid "GObject bindings for libudev" +msgstr "=D0=93=D1=83=D0=B8=D0=BB=D0=B5=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE=D0= =B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1=81=D0=B0 =D0=B5=D0=BD-=D0= =BA=D1=83=D1=80=D1=81=D0=BE=D0=BC" + +#: gnu/packages/gnome.scm:3278 +msgid "" +"This library provides GObject bindings for libudev. It was originally\= n" +"part of udev-extras, then udev, then systemd. It's now a project on it= s own." +msgstr "" + +#: gnu/packages/gnome.scm:3324 +msgid "Userspace virtual filesystem for GIO" +msgstr "" + +#: gnu/packages/gnome.scm:3326 +msgid "" +"GVFS is a userspace virtual filesystem designed to work with the I/O\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" +"to all applications using the GIO API. It also supports exposing the G= VFS\n" +"mounts to non-GIO applications using FUSE.\n" +"\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" +"DAV, and others." +msgstr "" + +#: gnu/packages/gnome.scm:3372 +#, fuzzy +msgid "GLib binding for libusb1" +msgstr "=D0=93=D1=83=D0=B8=D0=BB=D0=B5=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE=D0= =B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1=81=D0=B0 =D0=B5=D0=BD-=D0= =BA=D1=83=D1=80=D1=81=D0=BE=D0=BC" + +#: gnu/packages/gnome.scm:3374 +msgid "" +"GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" +"asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" +"and integration into a mainloop. This makes it easy to integrate low l= evel\n" +"USB transfers with your high-level application or system daemon." +msgstr "" + +#: gnu/packages/gnome.scm:3411 +msgid "Document and image scanner" +msgstr "" + +#: gnu/packages/gnome.scm:3412 +msgid "" +"Simple Scan is an easy-to-use application, designed to let\n" +"users connect their scanner and quickly have the image/document in an\n= " +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" +"the same backend as XSANE uses. This means that all existing scanners w= ill\n" +"work and the interface is well tested." +msgstr "" + +#: gnu/packages/gnome.scm:3461 +msgid "GNOME web browser" +msgstr "" + +#: gnu/packages/gnome.scm:3463 +msgid "" +"Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " +"principles are simplicity and standards compliance." +msgstr "" + +#: gnu/packages/gnome.scm:3519 +msgid "D-Bus debugger" +msgstr "" + +#: gnu/packages/gnome.scm:3521 +msgid "" +"D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" +"of running programs and invoke methods on those interfaces." +msgstr "" + +#: gnu/packages/gnome.scm:3543 +msgid "XSL stylesheets for Yelp" +msgstr "" + +#: gnu/packages/gnome.scm:3545 +msgid "" +"Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" +"to format Docbook and Mallard documents." +msgstr "" + +#: gnu/packages/gnome.scm:3575 +msgid "GNOME help browser" +msgstr "" + +#: gnu/packages/gnome.scm:3577 +msgid "" +"Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" +"man, info, and HTML documents. It can locate documents according to th= e\n" +"freedesktop.org help system specification." +msgstr "" + +#: gnu/packages/gnome.scm:3605 +msgid "Yelp documentation tools" +msgstr "" + +#: gnu/packages/gnome.scm:3607 +msgid "" +"Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" +"manage, and publish documentation for Yelp and the web. Most of the he= avy\n" +"lifting is done by packages like yelp-xsl and itstool. This package ju= st\n" +"wraps things up in a developer-friendly way." +msgstr "" + +#: gnu/packages/gnome.scm:3644 +msgid "GObject collection library" +msgstr "" + +#: gnu/packages/gnome.scm:3646 +msgid "" +"Libgee is a utility library providing GObject-based interfaces and\n" +"classes for commonly used data structures." +msgstr "" + +#: gnu/packages/gnome.scm:3673 +msgid "GObject wrapper around the Exiv2 photo metadata library" +msgstr "" + +#: gnu/packages/gnome.scm:3675 +msgid "" +"Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" +"metadata in photo and video files of various formats." +msgstr "" + +#: gnu/packages/gnome.scm:3727 +msgid "Photo manager for GNOME 3" +msgstr "" + +#: gnu/packages/gnome.scm:3729 +msgid "" +"Shotwell is a digital photo manager designed for the GNOME desktop\n" +"environment. It allows you to import photos from disk or camera, organ= ize\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" +"share them with others via social networking and more." +msgstr "" + +#: gnu/packages/gnome.scm:3761 +msgid "Graphical archive manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3762 +msgid "" +"File Roller is an archive manager for the GNOME desktop\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" +"such as gzip tarballs." +msgstr "" + +#: gnu/packages/gnome.scm:3797 +msgid "Session manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +msgid "Javascript bindings for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "=D0=A3=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=87 =D0=BF=D1=80=D0= =BE=D1=82=D0=BE=D0=BA=D0=B0" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "" + +#: gnu/packages/gnome.scm:4356 +msgid "Display manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:4484 +msgid "Utilities to configure the GNOME desktop" +msgstr "" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +msgid "File manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +msgid "Disk usage analyzer for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 +msgid "Mozilla javascript engine" +msgstr "" + +#: gnu/packages/gnuzilla.scm:96 +msgid "" +"SpiderMonkey is Mozilla's JavaScript engine written\n" +"in C/C++." +msgstr "" + +#: gnu/packages/gnuzilla.scm:171 +msgid "Netscape API for system level and libc-like functions" +msgstr "" + +#: gnu/packages/gnuzilla.scm:172 +msgid "" +"Netscape Portable Runtime (NSPR) provides a\n" +"platform-neutral API for system level and libc-like functions. It is u= sed\n" +"in the Mozilla clients." +msgstr "" + +#: gnu/packages/gnuzilla.scm:268 +msgid "Network Security Services" +msgstr "" + +#: gnu/packages/gnuzilla.scm:270 +msgid "" +"Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" +"PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " +"standards." +msgstr "" + +#: gnu/packages/gnuzilla.scm:506 +msgid "Entirely free browser derived from Mozilla Firefox" +msgstr "" + +#: gnu/packages/gnuzilla.scm:508 +msgid "" +"IceCat is the GNU version of the Firefox browser. It is entirely free\= n" +"software, which does not recommend non-free plugins and addons. It als= o\n" +"features built-in privacy-protecting features." +msgstr "" + +#: gnu/packages/gtk.scm:87 +msgid "GNOME accessibility toolkit" +msgstr "" + +#: gnu/packages/gtk.scm:89 +msgid "" +"ATK provides the set of accessibility interfaces that are implemented\n= " +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" +"tools have full access to view and control running applications." +msgstr "" + +#: gnu/packages/gtk.scm:128 +msgid "2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:130 +msgid "" +"Cairo is a 2D graphics library with support for multiple output devices= .\n" +"Currently supported output targets include the X Window System (via bot= h\n" +"Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG f= ile\n" +"output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB= .\n" +"\n" +"Cairo is designed to produce consistent output on all output media whil= e\n" +"taking advantage of display hardware acceleration when available\n" +"eg. through the X Render Extension).\n" +"\n" +"The cairo API provides operations similar to the drawing operators of\n= " +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" +"B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" +"affine transformation (scale, rotation, shear, etc.)." +msgstr "" + +#: gnu/packages/gtk.scm:178 +msgid "OpenType text shaping engine" +msgstr "" + +#: gnu/packages/gtk.scm:180 +msgid "HarfBuzz is an OpenType text shaping engine." +msgstr "" + +#: gnu/packages/gtk.scm:211 +msgid "GNOME text and font handling library" +msgstr "" + +#: gnu/packages/gtk.scm:213 +msgid "" +"Pango is the core text and font handling library used in GNOME\n" +"applications. It has extensive support for the different writing syste= ms\n" +"used throughout the world." +msgstr "" + +#: gnu/packages/gtk.scm:239 +msgid "Obsolete pango functions" +msgstr "" + +#: gnu/packages/gtk.scm:240 +msgid "" +"Pangox was a X backend to pango. It is now obsolete and no\n" +"longer provided by recent pango releases. pangox-compat provides the\n= " +"functions which were removed." +msgstr "" + +#: gnu/packages/gtk.scm:276 +msgid "GTK+ widget for interactive graph-like environments" +msgstr "" + +#: gnu/packages/gtk.scm:278 +msgid "" +"Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" +"graph-like environments, e.g. modular synths or finite state machine\n" +"diagrams." +msgstr "" + +#: gnu/packages/gtk.scm:330 +msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" +msgstr "" + +#: gnu/packages/gtk.scm:332 +msgid "" +"GtkSourceView is a portable C library that extends the standard GTK+\n" +"framework for multiline text editing with support for configurable synt= ax\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" +"printing and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 +msgid "GNOME image loading and manipulation library" +msgstr "" + +#: gnu/packages/gtk.scm:431 +msgid "" +"GdkPixbuf is a library for image loading and manipulation developed\n" +"in the GNOME project." +msgstr "" + +#: gnu/packages/gtk.scm:474 +msgid "Assistive Technology Service Provider Interface, core components" +msgstr "" + +#: gnu/packages/gtk.scm:476 +msgid "" +"The Assistive Technology Service Provider Interface, core components,\n= " +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:509 +msgid "Assistive Technology Service Provider Interface, ATK bindings" +msgstr "" + +#: gnu/packages/gtk.scm:511 +msgid "" +"The Assistive Technology Service Provider Interface\n" +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:568 +msgid "Cross-platform toolkit for creating graphical user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:570 +msgid "" +"GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" +"graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" +"suitable for projects ranging from small one-off tools to complete\n" +"application suites." +msgstr "" + +#: gnu/packages/gtk.scm:705 +#, fuzzy +msgid "Cairo bindings for GNU Guile" +msgstr "=D0=A0=D0=B0=D0=B4=D0=BD=D0=B8 =D1=81=D0=BA=D0=BB=D0=BE=D0=BF =D0= =B7=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D1=87=D0=B8=D1= =82=D0=B0=D1=87=D0=B0 =D0=B7=D0=B0 =D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0= =BB=D0=B0" + +#: gnu/packages/gtk.scm:707 +msgid "" +"Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" +"Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" +"stable, providing a firm base on which to do graphics work. Finally, a= nd\n" +"importantly, it is pleasant to use. You get a powerful and well-mainta= ined\n" +"graphics library with all of the benefits of Scheme: memory management,= \n" +"exceptions, macros, and a dynamic programming environment." +msgstr "" + +#: gnu/packages/gtk.scm:747 +msgid "Render SVG images using Cairo from Guile" +msgstr "" + +#: gnu/packages/gtk.scm:749 +msgid "" +"Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" +"images onto Cairo surfaces." +msgstr "" + +#: gnu/packages/gtk.scm:793 +msgid "Create SVG or PDF presentations in Guile" +msgstr "" + +#: gnu/packages/gtk.scm:795 +msgid "" +"Guile-Present defines a declarative vocabulary for presentations,\n" +"together with tools to render presentation documents as SVG or PDF.\n" +"Guile-Present can be used to make presentations programmatically, but a= lso\n" +"includes a tools to generate PDF presentations out of Org mode and Texi= nfo\n" +"documents." +msgstr "" + +#: gnu/packages/gtk.scm:829 +msgid "C++ bindings to the Cairo 2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:831 +msgid "" +"Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " +"library." +msgstr "" + +#: gnu/packages/gtk.scm:855 +msgid "C++ interface to the Pango text rendering library" +msgstr "" + +#: gnu/packages/gtk.scm:857 +msgid "" +"Pangomm provides a C++ programming interface to the Pango text renderin= g\n" +"library." +msgstr "" + +#: gnu/packages/gtk.scm:878 +msgid "C++ interface to the ATK accessibility library" +msgstr "" + +#: gnu/packages/gtk.scm:880 +msgid "" +"ATKmm provides a C++ programming interface to the ATK accessibility\n" +"toolkit." +msgstr "" + +#: gnu/packages/gtk.scm:907 +msgid "C++ interface to the GTK+ graphical user interface library" +msgstr "" + +#: gnu/packages/gtk.scm:909 +msgid "" +"gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" +"extensive documentation, including API reference and a tutorial." +msgstr "" + +#: gnu/packages/gtk.scm:968 +msgid "Python bindings for cairo" +msgstr "" + +#: gnu/packages/gtk.scm:970 +msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." +msgstr "" + +#: gnu/packages/gtk.scm:1053 +msgid "Python bindings for GTK+" +msgstr "" + +#: gnu/packages/gtk.scm:1055 +msgid "" +"PyGTK allows you to write full featured GTK programs in Python. It is\= n" +"targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" +"write GNOME applications." +msgstr "" + +#: gnu/packages/gtk.scm:1086 +msgid "Library for minimalistic gtk+3 user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:1087 +msgid "" +"Girara is a library that implements a user interface that\n" +"focuses on simplicity and minimalism. Currently based on GTK+, a\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" +"main components: a so-called view widget that represents the actual\n" +"application, an input bar that is used to execute commands of the\n" +"application and the status bar which provides the user with current\n" +"information." +msgstr "" + +#: gnu/packages/gtk.scm:1130 +msgid "Documentation generator from C source code" +msgstr "" + +#: gnu/packages/gtk.scm:1132 +msgid "" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" +"can also be used to document application code." +msgstr "" + +#: gnu/packages/gtk.scm:1159 +msgid "Theming engines for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 +msgid "Scheme implementation intended especially for extensions" +msgstr "=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0 =D1=88=D0=B5=D0=BC=D0= =B5 =D0=BD=D0=B0=D1=80=D0=BE=D1=87=D0=B8=D1=82=D0=BE =D0=BE=D1=81=D0=BC=D0= =B8=D1=88=D1=99=D0=B5=D0=BD=D0=B0 =D0=B7=D0=B0 =D0=BF=D1=80=D0=BE=D1=88=D0= =B8=D1=80=D0=B5=D1=9A=D0=B0" + +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 +msgid "" +"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" +"official extension language of the GNU system. It is an implementation= of\n" +"the Scheme language which can be easily embedded in other applications = to\n" +"provide a convenient means of extending the functionality of the " +"application\n" +"without requiring the source code to be rewritten." +msgstr "" +"=D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D1=98=D0=B5 =D0=93=D0=BD=D1=83=D0=BE=D0= =B2 =D1=81=D0=B2=D0=B5=D0=BF=D1=80=D0=B8=D1=81=D1=83=D1=82=D0=B0=D0=BD =D0= =BF=D0=B0=D0=BC=D0=B5=D1=82=D0=B0=D0=BD =D1=98=D0=B5=D0=B7=D0=B8=D0=BA =D0= =B7=D0=B0 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0, =D0=B7=D0= =B2=D0=B0=D0=BD=D0=B8=D1=87=D0=BD=D0=B8 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA\n" +"=D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B5=D1=9A=D0=B0 =D0=B7=D0=B0 =D0= =93=D0=BD=D1=83=D0=BE=D0=B2 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC. =D0=A2= =D0=BE =D1=98=D0=B5 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0 =D0=A8=D0=B5= =D0=BC=D0=B5 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA=D0=B0 =D0=BA=D0=BE=D1=98=D0=B8= =D0=BC=D0=BE=D0=B6=D0=B5 =D0=BB=D0=B0=D0=BA=D0=BE\n" +"=D0=B1=D0=B8=D1=82=D0=B8 =D1=83=D0=B3=D1=80=D0=B0=D1=92=D0=B5=D0=BD =D1= =83 =D0=B4=D1=80=D1=83=D0=B3=D0=B5 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0= =BC=D0=B5 =D0=BA=D0=B0=D0=BA=D0=BE =D0=B1=D0=B8 =D0=BE=D0=B1=D0=B5=D0=B7=D0= =B1=D0=B5=D0=B4=D0=B8=D0=BE =D0=B8=D1=81=D0=BF=D0=BB=D0=B0=D1=82=D0=B8=D0= =B2 =D0=BD=D0=B0=D1=87=D0=B8=D0=BD =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0= =B8=D0=B2=D0=B0=D1=9A=D0=B0\n" +"=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=BD=D0=BE= =D1=81=D1=82=D0=B8 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=B0 =D0=B1= =D0=B5=D0=B7 =D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=B5 =D0=BF=D0=BE=D0=BD= =D0=BE=D0=B2=D0=BD=D0=BE=D0=B3 =D0=BF=D0=B8=D1=81=D0=B0=D1=9A=D0=B0 =D0=B8= =D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=BE=D0=B3 =D0=BA=D0=BE=D0=B4=D0=B0." + +#: gnu/packages/guile.scm:213 +msgid "Snapshot of what will become version 2.2 of GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 +msgid "Framework for building readers for GNU Guile" +msgstr "=D0=A0=D0=B0=D0=B4=D0=BD=D0=B8 =D1=81=D0=BA=D0=BB=D0=BE=D0=BF =D0= =B7=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D1=87=D0=B8=D1= =82=D0=B0=D1=87=D0=B0 =D0=B7=D0=B0 =D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0= =BB=D0=B0" + +#: gnu/packages/guile.scm:327 +#, fuzzy +msgid "" +"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"\n" +"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" +"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" +"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" +"document syntax.\n" +"\n" +"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" +"hopefully more powerful and flexible (for instance, one may instantiate= as\n" +"many readers as needed)." +msgstr "" +"=D0=93=D1=83=D0=B8=D0=BB=D0=B5-=D1=87=D0=B8=D1=82=D0=B0=D1=87 =D1=98=D0= =B5 =D1=98=D0=B5=D0=B4=D0=BD=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=B0=D0=BD =D1= =80=D0=B0=D0=B4=D0=BD=D0=B8 =D1=81=D0=BA=D0=BB=D0=BE=D0=BF =D0=B7=D0=B0 =D0= =B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D1=87=D0=B8=D1=82=D0=B0=D1= =87=D0=B0 =D0=B7=D0=B0 =D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0=BB=D0=B0.= \n" +"\n" +"=D0=97=D0=B0=D0=BC=D0=B8=D1=81=D0=B0=D0=BE =D1=98=D0=B5 =D0=BE=D0=BB=D0= =B0=D0=BA=D1=88=D0=B0=D1=82=D0=B8 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1= =9A=D1=83 =D0=BF=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=B0=D0=BA=D0=B0 =D0=BA=D0= =BE=D1=98=D0=B8 =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D1=83=D1=98=D1=83 =D0= =93=D1=83=D0=B8=D0=BB=D0=BE=D0=B2 =D0=BF=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0= =B0=D0=BA\n" +"=D1=87=D0=B8=D1=82=D0=B0=D1=9A=D0=B0. =D0=A7=D0=B8=D1=82=D0=B0=D1=87=D0= =B8 =D0=BA=D0=BE=D1=98=D0=B8 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=B2=D0= =B0=D1=98=D1=83 =D1=80=D0=B0=D0=B7=D0=BD=D0=B5 =D0=B2=D0=B0=D1=80=D0=B8=D1= =98=D0=B0=D0=BD=D1=82=D0=B5 =D1=81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81=D0= =B5 =D0=BC=D0=BE=D0=B3=D1=83 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BB=D0=B0=D0=BA=D0= =BE\n" +"=D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=B8, =D0=BF=D0=BE =D0=BC=D0= =BE=D0=B3=D1=83=D1=9B=D1=81=D1=82=D0=B2=D1=83 =D0=BF=D0=BE=D0=BD=D0=BE=D0= =B2=D0=BD=D0=B8=D0=BC =D0=BA=D0=BE=D1=80=D0=B8=D1=88=D1=9B=D0=B5=D1=9A=D0= =B5=D0=BC =D0=BF=D0=BE=D1=81=D1=82=D0=BE=D1=98=D0=B5=D1=9B=D0=B8=D1=85 =E2= =80=9E=D1=87=D0=B8=D1=82=D0=B0=D1=87=D0=B0 =E2=80=9C =D1=87=D0=B8=D1=82=D0= =B0=D1=87=D0=B0\n" +"=D1=81=D1=82=D0=B0=D0=BD=D0=B4=D0=B0=D1=80=D0=B4=D0=BD=D0=B5 =D0=A8=D0=B5= =D0=BC=D0=B5. =D0=9D=D0=B0 =D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80, =D0=BA=D0= =BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D1=81=D0=B5 =D0=B7=D0=B0 =D0=BF=D1=80=D0= =B8=D0=BC=D0=B5=D0=BD=D1=83 =D1=81=D0=B8=D0=BD=D1=82=D0=B0=D0=BA=D1=81=D0= =B5 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D1=82=D0=B0 =D0=BA=D0=BE=D1= =98=D0=B0 " +"=D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B8=D0=BB=D0=B0=D0=B7=D0=B8 =D0=B8=D0=B7= =D0=A05=D0=A0=D0=A1 =D0=A1=D0=BA=D1=80=D0=B8=D0=B1=D0=B8=D0=BB=D0=BE=D0=B0= .\n" +"\n" +"=D0=9F=D1=80=D0=B8=D1=81=D1=82=D1=83=D0=BF =D0=93=D1=83=D0=B8=D0=BB=D0=B5= -=D1=87=D0=B8=D1=82=D0=B0=D1=87=D0=B0 =D1=98=D0=B5 =D1=81=D0=BB=D0=B8=D1=87= =D0=B0=D0=BD =D0=9E=D0=BF=D1=88=D1=82=D0=B5=D0=BC =D0=9B=D0=B8=D1=81=D0=BF= =D0=BE=D0=B2=D0=BE=D0=BC =E2=80=9E=D1=87=D0=B8=D1=82=D0=B0=D1=9A=D1=83 =D1= =82=D0=B0=D0=B1=D0=B5=D0=BB=D0=B5=E2=80=9C, =D0=B0=D0=BB=D0=B8 =D1=98=D0=B5= =D0=BD=D0=B0\n" +"=D1=81=D1=80=D0=B5=D1=9B=D1=83 =D0=BC=D0=BD=D0=BE=D0=B3=D0=BE =D0=BC=D0= =BE=D1=9B=D0=BD=D0=B8=D1=98=D0=B8 =D0=B8 =D0=BF=D1=80=D0=B8=D0=BB=D0=B0=D0= =B3=D0=BE=D0=B4=D1=99=D0=B8=D0=B2=D0=B8=D1=98=D0=B8 (=D0=BD=D0=B0 =D0=BF=D1= =80=D0=B8=D0=BC=D0=B5=D1=80, =D0=BD=D0=B5=D0=BA=D0=BE =D0=BC=D0=BE=D0=B6=D0= =B5 =D0=B4=D0=B0 =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D0=BD=D0=B5\n" +"=D0=BE=D0=BD=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE =D1=87=D0=B8=D1=82=D0=B0=D1=87= =D0=B0 =D0=BA=D0=BE=D0=BB=D0=B8=D0=BA=D0=BE =D0=BC=D1=83 =D1=98=D0=B5 =D0= =BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D0=BD=D0=BE)." + +#: gnu/packages/guile.scm:376 +msgid "Guile bindings to ncurses" +msgstr "=D0=93=D1=83=D0=B8=D0=BB=D0=B5=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE=D0= =B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D1=81=D0=B0 =D0=B5=D0=BD-=D0= =BA=D1=83=D1=80=D1=81=D0=BE=D0=BC" + +#: gnu/packages/guile.scm:378 +msgid "" +"guile-ncurses provides Guile language bindings for the ncurses\n" +"library." +msgstr "" +"=D0=B3=D1=83=D0=B8=D0=BB=D0=B5-=D0=BD=D0=BA=D1=83=D1=80=D1=81=D0=B8=D1=81= =D0=BE=D0=B1=D0=B5=D0=B7=D0=B1=D0=B5=D1=92=D1=83=D1=98=D0=B5 =D0=BF=D0=BE= =D0=B2=D0=B5=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=93=D1=83=D0=B8=D0=BB= =D0=B5 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA=D0=B0 =D0=B7=D0=B0 =D0=BD=D0=BA=D1=83= =D1=80=D1=81=D0=B8=D1=81\n" +"=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D1=83." + +#: gnu/packages/guile.scm:398 +msgid "Run jobs at scheduled times" +msgstr "=D0=9F=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5 =D0=BF=D0= =BE=D1=81=D0=BB=D0=BE=D0=B2=D0=B0 =D1=83 =D0=B7=D0=B0=D0=BA=D0=B0=D0=B7=D0= =B0=D0=BD=D0=BE =D0=B2=D1=80=D0=B5=D0=BC=D0=B5" + +#: gnu/packages/guile.scm:400 +msgid "" +"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" +"Guile, so its configuration can be written in Scheme; the original cron= \n" +"format is also supported." +msgstr "" +"=D0=93=D0=BD=D1=83=D0=BE=D0=B2 =D0=9C=D0=BA=D1=80=D0=BE=D0=BD =D1=98=D0= =B5 =D0=BF=D0=BE=D1=82=D0=BF=D1=83=D0=BD=D0=B0 =D0=B7=D0=B0=D0=BC=D0=B5=D0= =BD=D0=B0 =D0=B7=D0=B0 =D0=92=D0=B8=D0=BA=D1=81=D0=B8 =D0=BA=D1=80=D0=BE=D0= =BD. =D0=9A=D0=BE=D1=80=D0=B8=D1=81=D1=82=D0=B8 =D1=81=D0=B5 =D0=B7=D0=B0= =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5\n" +"=D0=B7=D0=B0=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D0=BD=D0=B0 =D0=B7=D0= =B0=D0=BA=D0=B0=D0=B7=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5, =D1=80=D0=B5=D1=86=D0= =B8=D0=BC=D0=BE =D1=81=D0=B2=D0=B0=D0=BA=D0=BE=D0=B3 =D1=81=D0=B0=D1=82=D0= =B0 =D0=B8=D0=BB=D0=B8 =D1=81=D0=B2=D0=B0=D0=BA=D0=BE=D0=B3 =D0=BF=D0=BE=D0= =BD=D0=B5=D0=B4=D0=B5=D1=99=D0=BA=D0=B0. =D0=9C=D0=BA=D1=80=D0=BE=D0=BD\= n" +"=D1=98=D0=B5 =D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD =D1=83 =D0=93=D1= =83=D0=B8=D0=BB=D0=B5=D1=83, =D1=82=D0=B0=D0=BA=D0=BE =D0=B4=D0=B0 =D1=9A= =D0=B5=D0=B3=D0=BE=D0=B2=D0=BE =D0=BF=D0=BE=D0=B4=D0=B5=D1=88=D0=B0=D0=B2= =D0=B0=D1=9A=D0=B5 =D0=BC=D0=BE=D0=B6=D0=B5 =D0=B1=D0=B8=D1=82=D0=B8 =D0=BD= =D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=BE =D1=83 =D0=A8=D0=B5=D0=BC=D0=B8= ;\n" +"=D0=B8=D0=B7=D0=B2=D0=BE=D1=80=D0=BD=D0=B8 =D0=BA=D1=80=D0=BE=D0=BD=D0=BE= =D0=B2 =D0=B7=D0=B0=D0=BF=D0=B8=D1=81 =D1=98=D0=B5 =D1=82=D0=B0=D0=BA=D0=BE= =D1=92=D0=B5 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD." + +#: gnu/packages/guile.scm:428 +msgid "Collection of useful Guile Scheme modules" +msgstr "=D0=97=D0=B1=D0=B8=D1=80=D0=BA=D0=B0 =D0=BA=D0=BE=D1=80=D0=B8=D1= =81=D0=BD=D0=B8=D1=85 =D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D0=B0 =D0=93=D1=83=D0= =B8=D0=BB=D0=B5 =D0=A8=D0=B5=D0=BC=D0=B5" + +#: gnu/packages/guile.scm:430 +#, fuzzy +msgid "" +"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" +"modules, allowing for people to cooperate integrating their generic Gui= le\n" +"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" +"for Guile\"." +msgstr "" +"=D0=B3=D1=83=D0=B8=D0=BB=D0=B5-=D0=B1=D0=B8=D0=B1=D0=BB =D1=98=D0=B5 =D0= =B7=D0=B0=D0=BC=D0=B8=D1=88=D1=99=D0=B5=D0=BD=D0=B0 =D0=BA=D0=B0=D0=BE =D0= =BC=D0=B5=D1=81=D1=82=D0=BE =D1=81=D0=BA=D1=83=D0=BF=D1=99=D0=B0=D1=9A=D0= =B0 =D0=B7=D0=B0 =D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D0=BC=D0=BE=D0=B4=D1=83=D0= =BB=D0=B5 =D1=87=D0=B8=D1=81=D1=82=D0=B5-=D1=88=D0=B5=D0=BC=D0=B5,\n" +"=D0=BE=D0=BC=D0=BE=D0=B3=D1=83=D1=9B=D0=B0=D0=B2=D0=B0=D1=98=D1=83=D1=9B= =D0=B8 =D1=99=D1=83=D0=B4=D0=B8=D0=BC=D0=B0 =D0=B4=D0=B0 =D1=81=D0=B0=D1=80= =D0=B0=D1=92=D1=83=D1=98=D1=83 =D1=81=D1=98=D0=B5=D0=B4=D0=B8=D1=9A=D0=B0= =D0=B2=D0=B0=D1=98=D1=83=D1=9B=D0=B8 =D1=9A=D0=B8=D1=85=D0=BE=D0=B2=D0=B5= =D0=BE=D0=BF=D1=88=D1=82=D0=B5 =D0=93=D1=83=D0=B8=D0=BB=D0=B5 =D0=BC=D0=BE= =D0=B4=D1=83=D0=BB=D0=B5\n" +"=D1=83 =D0=BE=D0=B1=D1=98=D0=B5=D0=B4=D0=B8=D1=9A=D0=B5=D0=BD=D1=83 =D0= =B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=D1=83. =D0=A1=D0=B5=D1= =82=D0=B8=D1=82=D0=B5 =D1=81=D0=B5 =D1=81=D0=B0=D0=BC=D0=BE =E2=80=9Edown= -scaled, limited-scope CPAN\n" +"for Guile=E2=80=9C." + +#: gnu/packages/guile.scm:461 +msgid "JSON module for Guile" +msgstr "=D0=88=D0=A1=D0=9E=D0=9D =D0=BC=D0=BE=D0=B4=D1=83=D0=BB =D0=B7=D0= =B0 =D0=93=D1=83=D0=B8=D0=BB=D0=B0" + +#: gnu/packages/guile.scm:463 +#, fuzzy +msgid "" +"Guile-json supports parsing and building JSON documents according to th= e\n" +"http:://json.org specification. These are the main features:\n" +"- Strictly complies to http://json.org specification.\n" +"- Build JSON documents programmatically via macros.\n" +"- Unicode support for strings.\n" +"- Allows JSON pretty printing." +msgstr "" +"=D0=93=D1=83=D0=B8=D0=BB=D0=B5-=D1=98=D1=81=D0=BE=D0=BD =D0=BF=D0=BE=D0= =B4=D1=80=D1=88=D0=BA=D0=B0 =D0=BE=D0=B1=D1=80=D0=B0=D0=B4=D0=B5 =D0=B8 =D0= =B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B5 =D0=88=D0=A1=D0=9E=D0=9D =D0= =B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0 =D0=BF=D1=80=D0= =B5=D0=BC=D0=B0\n" +"=D0=BE=D0=B4=D1=80=D0=B5=D0=B4=D0=B1=D0=B8 =E2=80=9Ehttp:://json.org=E2= =80=9C-=D0=B0. =D0=9E=D0=B2=D0=BE =D1=81=D1=83 =D0=B3=D0=BB=D0=B0=D0=B2=D0= =BD=D0=B5 =D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B5:\n" +"=E2=80=94 =D0=98=D0=B7=D1=80=D0=B8=D1=87=D0=B8=D1=82=D0=B0 =D1=81=D0=BA= =D0=B0=D0=B4=D0=BD=D0=BE=D1=81=D1=82 =D1=81=D0=B0 =D0=BE=D0=B4=D1=80=D0=B5= =D0=B4=D0=B1=D0=BE=D0=BC =E2=80=9Ehttp://json.org=E2=80=9C-=D0=B0.\n" +"=E2=80=94 =D0=98=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D0=B0 =D0=88=D0=A1= =D0=9E=D0=9D =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0= =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D1=99=D0=B8=D0=B2=D0=BE =D0=BF= =D1=83=D1=82=D0=B5=D0=BC =D0=BC=D0=B0=D0=BA=D1=80=D0=BE=D0=B0.\n" +"=E2=80=94 =D0=9F=D0=BE=D0=B4=D1=80=D1=88=D0=BA=D0=B0 =D1=98=D1=83=D0=BD= =D0=B8=D0=BA=D0=BE=D0=B4=D0=B0 =D0=B7=D0=B0 =D0=BD=D0=B8=D1=81=D0=BA=D0=B5= .\n" +"=E2=80=94 =D0=94=D0=BE=D0=BF=D1=83=D1=88=D1=82=D0=B0 =D1=84=D0=B8=D0=BD= =D0=BE =D0=88=D0=A1=D0=9E=D0=9D =D1=88=D1=82=D0=B0=D0=BC=D0=BF=D0=B0=D1=9A= =D0=B5." + +#: gnu/packages/guile.scm:534 +msgid "MiniKanren declarative logic system, packaged for Guile" +msgstr "" + +#: gnu/packages/guile.scm:536 +msgid "" +"MiniKanren is a relational programming extension to the Scheme\n" +"programming Language, written as a smaller version of Kanren suitable f= or\n" +"pedagogical purposes. It is featured in the book, The Reasoned Schemer= ,\n" +"written by Dan Friedman, William Byrd, and Oleg Kiselyov.\n" +"\n" +"This is Ian Price's r6rs packaged version of miniKanren, which deviates= \n" +"slightly from miniKanren mainline.\n" +"\n" +"See http://minikanren.org/ for more on miniKanren generally." +msgstr "" + +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 +msgid "Guile bindings to the GDBM library via Guile's FFI" +msgstr "" + +#: gnu/packages/guile.scm:687 +msgid "" +"Guile bindings to the GDBM key-value storage system, using\n" +"Guile's foreign function interface." +msgstr "" + +#: gnu/packages/guile.scm:727 +msgid "Functional static site generator" +msgstr "" + +#: gnu/packages/guile.scm:728 +msgid "" +"Haunt is a static site generator written in Guile\n" +"Scheme. Haunt features a functional build system and an extensible\n" +"interface for reading articles in any format." +msgstr "" + +#: gnu/packages/guile.scm:758 +msgid "Redis client library for Guile" +msgstr "" + +#: gnu/packages/guile.scm:759 +msgid "" +"Guile-redis provides a Scheme interface to the Redis\n" +"key-value cache and store." +msgstr "" + +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" +msgstr "" + +#: gnu/packages/guile.scm:834 +msgid "" +"Wisp is a syntax for Guile which provides a Python-like\n" +"whitespace-significant language. It may be easier on the eyes for some= \n" +"users and in some situations." +msgstr "" + +#: gnu/packages/guile.scm:867 +msgid "2D/3D game engine for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +#, fuzzy +msgid "Generate C bindings for Guile" +msgstr "=D0=A0=D0=B0=D0=B4=D0=BD=D0=B8 =D1=81=D0=BA=D0=BB=D0=BE=D0=BF =D0= =B7=D0=B0 =D0=B8=D0=B7=D0=B3=D1=80=D0=B0=D0=B4=D1=9A=D1=83 =D1=87=D0=B8=D1= =82=D0=B0=D1=87=D0=B0 =D0=B7=D0=B0 =D0=93=D0=BD=D1=83 =D0=93=D1=83=D0=B8=D0= =BB=D0=B0" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 +msgid "Create, edit, compose, or convert bitmap images" +msgstr "" + +#: gnu/packages/imagemagick.scm:103 +msgid "" +"ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" +"text, lines, polygons, ellipses and B=C3=A9zier curves." +msgstr "" + +#: gnu/packages/imagemagick.scm:147 +msgid "Perl interface to ImageMagick" +msgstr "" + +#: gnu/packages/imagemagick.scm:148 +msgid "" +"This Perl extension allows the reading, manipulation and\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" +"script." +msgstr "" + +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." +msgstr "" + +#: gnu/packages/image.scm:71 +msgid "Library for handling PNG files" +msgstr "" + +#: gnu/packages/image.scm:73 +msgid "" +"Libpng is the official PNG (Portable Network Graphics) reference\n" +"library. It supports almost all PNG features and is extensible." +msgstr "" + +#: gnu/packages/image.scm:89 +msgid "Library for handling JPEG files" +msgstr "" + +#: gnu/packages/image.scm:91 +msgid "" +"Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" +"JPEG is a standardized compression method for full-color and gray-scale= \n" +"images.\n" +"The included programs provide conversion between the JPEG format and\n" +"image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." +msgstr "" + +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 +msgid "Library for handling TIFF files" +msgstr "" + +#: gnu/packages/image.scm:159 +msgid "" +"Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" +"used for storing image data.\n" +"Included are a library, libtiff, for reading and writing TIFF and a sma= ll\n" +"collection of tools for doing simple manipulations of TIFF images." +msgstr "" + +#: gnu/packages/image.scm:202 +msgid "Library for reading images in the Microsoft WMF format" +msgstr "" + +#: gnu/packages/image.scm:204 +msgid "" +"libwmf is a library for reading vector images in Microsoft's native\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" +"the W3C's XML-based Scaleable Vector Graphic (SVG) format." +msgstr "" + +#: gnu/packages/image.scm:271 +msgid "Library and tools for image processing and analysis" +msgstr "" + +#: gnu/packages/image.scm:273 +msgid "" +"Leptonica is a C library and set of command-line tools for efficient\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" +"scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" +"arithmetic ops." +msgstr "" + +#: gnu/packages/image.scm:296 +msgid "Decoder of the JBIG2 image compression format" +msgstr "" + +#: gnu/packages/image.scm:298 +msgid "" +"JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" +"monochrome) images at moderately high resolution, and in particular sca= nned\n" +"paper documents. In this domain it is very efficient, offering compres= sion\n" +"ratios on the order of 100:1.\n" +"\n" +"This is a decoder only implementation, and currently is in the alpha\n" +"stage, meaning it doesn't completely work yet. However, it is\n" +"maintaining parity with available encoders, so it is useful for real\n" +"work." +msgstr "" + +#: gnu/packages/image.scm:333 +msgid "JPEG 2000 codec" +msgstr "" + +#: gnu/packages/image.scm:335 +msgid "" +"The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" +"been developed in order to promote the use of JPEG 2000, the new\n" +"still-image compression standard from the Joint Photographic Experts\n" +"Group (JPEG).\n" +"\n" +"In addition to the basic codec, various other features are under\n" +"development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats= ,\n" +"an indexing tool useful for the JPIP protocol, JPWL-tools for\n" +"error-resilience, a Java-viewer for j2k-images, ..." +msgstr "" + +#: gnu/packages/image.scm:414 +msgid "Tools and library for working with GIF images" +msgstr "" + +#: gnu/packages/image.scm:416 +msgid "" +"GIFLIB is a library for reading and writing GIF images. It is API and\= n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" +"algorithm was patented. Tools are also included to convert, manipulate= ,\n" +"compose, and analyze GIF images." +msgstr "" + +#: gnu/packages/image.scm:437 +msgid "GIF decompression library" +msgstr "" + +#: gnu/packages/image.scm:439 +msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." +msgstr "" + +#: gnu/packages/image.scm:468 +msgid "Loading, saving, rendering and manipulating image files" +msgstr "" + +#: gnu/packages/image.scm:470 +msgid "" +"Imlib2 is a library that does image file loading and saving as well as\= n" +"rendering, manipulation, arbitrary polygon support, etc.\n" +"\n" +"It does ALL of these operations FAST. Imlib2 also tries to be highly\n= " +"intelligent about doing them, so writing naive programs can be done eas= ily,\n" +"without sacrificing speed.\n" +"\n" +"This is a complete rewrite over the Imlib 1.x series. The architecture= is\n" +"more modular, simple, and flexible." +msgstr "" + +#: gnu/packages/image.scm:498 +msgid "Wrapper library for imlib2" +msgstr "" + +#: gnu/packages/image.scm:500 +msgid "" +"Giblib is a simple library which wraps imlib2's context API, avoiding\n= " +"all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" +"supplies a generic doubly-linked list and some string functions." +msgstr "" + +#: gnu/packages/image.scm:540 +msgid "Library for handling popular graphics image formats" +msgstr "" + +#: gnu/packages/image.scm:542 +msgid "" +"FreeImage is a library for developers who would like to support popular= \n" +"graphics image formats like PNG, BMP, JPEG, TIFF and others." +msgstr "" + +#: gnu/packages/image.scm:592 +msgid "Computer vision library" +msgstr "" + +#: gnu/packages/image.scm:594 +msgid "" +"VIGRA stands for Vision with Generic Algorithms. It is an image\n" +"processing and analysis library that puts its main emphasis on customiz= able\n" +"algorithms and data structures. It is particularly strong for\n" +"multi-dimensional image processing." +msgstr "" + +#: gnu/packages/image.scm:625 +msgid "Lossless and lossy image compression" +msgstr "" + +#: gnu/packages/image.scm:627 +msgid "" +"WebP is a new image format that provides lossless and lossy compression= \n" +"for images. WebP lossless images are 26% smaller in size compared to\n= " +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" +"equivalent SSIM index. WebP supports lossless transparency (also known= as\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" +"to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" +"channels." +msgstr "" + +#: gnu/packages/image.scm:655 +msgid "Library for handling MNG files" +msgstr "" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +msgid "Library for manipulating many image formats" +msgstr "" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" +msgstr "" + +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." +msgstr "" + +#: gnu/packages/inkscape.scm:88 +msgid "Vector graphics editor" +msgstr "" + +#: gnu/packages/inkscape.scm:89 +msgid "" +"Inkscape is a vector graphics editor. What sets Inkscape\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" +"as the native format." +msgstr "" + +#: gnu/packages/jemalloc.scm:47 +msgid "General-purpose scalable concurrent malloc implementation" +msgstr "" + +#: gnu/packages/jemalloc.scm:49 +msgid "" +"This library providing a malloc(3) implementation that emphasizes\n" +"fragmentation avoidance and scalable concurrency support." +msgstr "" + +#: gnu/packages/key-mon.scm:65 +msgid "Show keyboard and mouse status" +msgstr "" + +#: gnu/packages/key-mon.scm:67 +msgid "" +"The key-mon utility displays the current keyboard and mouse status.\n" +"This is useful for teaching and screencasts." +msgstr "" + +#: gnu/packages/less.scm:41 +msgid "Paginator for terminals" +msgstr "" + +#: gnu/packages/less.scm:43 +msgid "" +"GNU less is a pager, a program that allows you to view large amounts\n" +"of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" +"text editors." +msgstr "" + +#: gnu/packages/lesstif.scm:47 +msgid "Clone of the Motif toolkit for the X window system" +msgstr "" + +#: gnu/packages/lesstif.scm:48 +msgid "Clone of the Motif toolkit for the X window system." +msgstr "" + +#: gnu/packages/libreoffice.scm:86 +msgid "General purpose formula parser and interpreter" +msgstr "" + +#: gnu/packages/libreoffice.scm:87 +msgid "" +"Ixion is a library for calculating the results of formula\n" +"expressions stored in multiple named targets, or \"cells\". The cells = can\n" +"be referenced from each other, and the library takes care of resolving\= n" +"their dependencies automatically upon calculation." +msgstr "" + +#: gnu/packages/libreoffice.scm:112 +msgid "File import filter library for spreadsheet documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:113 +msgid "" +"Orcus is a library that provides a collection of standalone\n" +"file processing filters. It is currently focused on providing filters = for\n" +"spreadsheet documents. The library includes import filters for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" +"CSV, CSS and XML." +msgstr "" + +#: gnu/packages/libreoffice.scm:147 +msgid "Document importer for office suites" +msgstr "" + +#: gnu/packages/libreoffice.scm:148 +msgid "" +"Librevenge is a base library for writing document import\n" +"filters. It has interfaces for text documents, vector graphics,\n" +"spreadsheets and presentations." +msgstr "" + +#: gnu/packages/libreoffice.scm:173 +msgid "Library for importing WordPerfect documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:174 +msgid "" +"Libwpd is a C++ library designed to help process\n" +"WordPerfect documents. It is most commonly used to import such documen= ts\n" +"into other word processors." +msgstr "" + +#: gnu/packages/libreoffice.scm:206 +msgid "Library for import of reflowable e-book formats" +msgstr "" + +#: gnu/packages/libreoffice.scm:207 +msgid "" +"Libe-book is a library and a set of tools for reading and\n" +"converting various reflowable e-book formats. Currently supported are:= \n" +"Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped file= s),\n" +"PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled\n" +"cellphones), TCR (simple compressed text format), TealDoc, zTXT,\n" +"ZVR (simple compressed text format)." +msgstr "" + +#: gnu/packages/libreoffice.scm:236 +msgid "Library and tools for the WordPerfect Graphics format" +msgstr "" + +#: gnu/packages/libreoffice.scm:237 +msgid "" +"The libwpg project provides a library and tools for\n" +"working with graphics in the WPG (WordPerfect Graphics) format." +msgstr "" + +#: gnu/packages/libreoffice.scm:278 +msgid "CMIS client library" +msgstr "" + +#: gnu/packages/libreoffice.scm:279 +msgid "" +"LibCMIS is a C++ client library for the CMIS interface. It\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" +"as Alfresco or Nuxeo." +msgstr "" + +#: gnu/packages/libreoffice.scm:310 +msgid "Library for parsing the AbiWord format" +msgstr "" + +#: gnu/packages/libreoffice.scm:311 +msgid "" +"Libabw is a library that parses the file format of\n" +"AbiWord documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:341 +msgid "Library for parsing the CorelDRAW format" +msgstr "" + +#: gnu/packages/libreoffice.scm:342 +msgid "" +"Libcdr is a library that parses the file format of\n" +"CorelDRAW documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:371 +msgid "Library for parsing the Apple Keynote format" +msgstr "" + +#: gnu/packages/libreoffice.scm:372 +msgid "" +"Libetonyek is a library that parses the file format of\n" +"Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." +msgstr "" + +#: gnu/packages/libreoffice.scm:389 +msgid "Text Categorization library" +msgstr "" + +#: gnu/packages/libreoffice.scm:390 +msgid "" +"Libexttextcat is an N-Gram-Based Text Categorization\n" +"library primarily intended for language guessing." +msgstr "" + +#: gnu/packages/libreoffice.scm:416 +msgid "Library for parsing the FreeHand format" +msgstr "" + +#: gnu/packages/libreoffice.scm:417 +msgid "" +"Libfreehand is a library that parses the file format of\n" +"Aldus/Macromedia/Adobe FreeHand documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:443 +msgid "Library for parsing the Microsoft Publisher format" +msgstr "" + +#: gnu/packages/libreoffice.scm:444 +msgid "" +"Libmspub is a library that parses the file format of\n" +"Microsoft Publisher documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:472 +msgid "Library for parsing the PageMaker format" +msgstr "" + +#: gnu/packages/libreoffice.scm:473 +msgid "" +"Libpagemaker is a library that parses the file format of\n" +"Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" +"created by PageMaker version 6.x and 7." +msgstr "" + +#: gnu/packages/libreoffice.scm:508 +msgid "Library for parsing the Microsoft Visio format" +msgstr "" + +#: gnu/packages/libreoffice.scm:509 +msgid "" +"Libvisio is a library that parses the file format of\n" +"Microsoft Visio documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:537 +msgid "ODF (Open Document Format) library" +msgstr "" + +#: gnu/packages/libreoffice.scm:538 +msgid "" +"Libodfgen is a library for generating documents in the\n" +"Open Document Format (ODF). It provides generator implementations for = all\n" +"document interfaces supported by librevenge:\n" +"text documents, vector drawings, presentations and spreadsheets." +msgstr "" + +#: gnu/packages/libreoffice.scm:568 +msgid "Import library for some old Macintosh text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:569 +msgid "" +"Libmwaw contains some import filters for old Macintosh\n" +"text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" +"spreadsheet documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:598 +msgid "Import library for Microsoft Works text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:599 +msgid "" +"Libwps is a library for importing files in the Microsoft\n" +"Works word processor file format." +msgstr "" + +#: gnu/packages/libreoffice.scm:617 +msgid "" +"Hunspell is a spell checker and morphological analyzer\n" +"library and program designed for languages with rich morphology and com= plex\n" +"word compounding or character encoding." +msgstr "" + +#: gnu/packages/libreoffice.scm:638 +msgid "Hyphenation library" +msgstr "" + +#: gnu/packages/libreoffice.scm:639 +msgid "" +"Hyphen is a hyphenation library using TeX hyphenation\n" +"patterns, which are pre-processed by a perl script." +msgstr "" + +#: gnu/packages/libreoffice.scm:662 +msgid "Thesaurus" +msgstr "" + +#: gnu/packages/libreoffice.scm:663 +msgid "" +"MyThes is a simple thesaurus that uses a structured text\n" +"data file and an index file with binary search to look up words and phr= ases\n" +"and to return information on pronunciations, meanings and synonyms." +msgstr "" + +#: gnu/packages/libreoffice.scm:829 +msgid "Office suite" +msgstr "" + +#: gnu/packages/libreoffice.scm:830 +msgid "" +"LibreOffice is a comprehensive office suite. It contains\n" +"a number of components: Writer, a word processor; Calc, a spreadsheet\n= " +"application; Impress, a presentation engine; Draw, a drawing and\n" +"flowcharting application; Base, a database and database frontend;\n" +"Math for editing mathematics." +msgstr "" + +#: gnu/packages/linux.scm:155 +msgid "GNU Linux-Libre kernel headers" +msgstr "" + +#: gnu/packages/linux.scm:156 +msgid "Headers of the Linux-Libre kernel." +msgstr "" + +#: gnu/packages/linux.scm:187 +msgid "Tools for loading and managing Linux kernel modules" +msgstr "" + +#: gnu/packages/linux.scm:189 +msgid "" +"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" +"`insmod', `lsmod', and more." +msgstr "" + +#: gnu/packages/linux.scm:322 +msgid "100% free redistribution of a cleaned Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:324 +msgid "" +"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" +"It has been modified to remove all non-free binary blobs." +msgstr "" + +#: gnu/packages/linux.scm:384 +msgid "Pluggable authentication modules for Linux" +msgstr "" + +#: gnu/packages/linux.scm:386 +msgid "" +"A *Free* project to implement OSF's RFC 86.0.\n" +"Pluggable authentication modules are small shared object files that can= \n" +"be used through the PAM API to perform tasks, like authenticating a use= r\n" +"at login. Local and dynamic reconfiguration are its key features." +msgstr "" + +#: gnu/packages/linux.scm:413 +msgid "Small utilities that use the proc filesystem" +msgstr "" + +#: gnu/packages/linux.scm:415 +msgid "" +"This PSmisc package is a set of some small useful utilities that\n" +"use the proc filesystem. We're not about changing the world, but\n" +"providing the system administrator with some help in common tasks." +msgstr "" + +#: gnu/packages/linux.scm:480 +msgid "Collection of utilities for the Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." +msgstr "" + +#: gnu/packages/linux.scm:522 +msgid "Utilities that give information about processes" +msgstr "" + +#: gnu/packages/linux.scm:524 +msgid "" +"Procps is the package that has a bunch of small useful utilities\n" +"that give information about processes using the Linux /proc file system= .\n" +"The package includes the programs ps, top, vmstat, w, kill, free,\n" +"slabtop, and skill." +msgstr "" + +#: gnu/packages/linux.scm:549 +msgid "Tools for working with USB devices, such as lsusb" +msgstr "" + +#: gnu/packages/linux.scm:551 +msgid "Tools for working with USB devices, such as lsusb." +msgstr "" + +#: gnu/packages/linux.scm:625 +msgid "Creating and checking ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." +msgstr "" + +#: gnu/packages/linux.scm:669 +msgid "Statically-linked fsck.* commands from e2fsprogs" +msgstr "" + +#: gnu/packages/linux.scm:671 +msgid "" +"This package provides statically-linked command of fsck.ext[234] taken\= n" +"from the e2fsprogs package. It is meant to be used in initrds." +msgstr "" + +#: gnu/packages/linux.scm:690 +msgid "Recover deleted files from ext2/3/4 partitions" +msgstr "" + +#: gnu/packages/linux.scm:692 +msgid "" +"Extundelete is a set of tools that can recover deleted files from an\n" +"ext3 or ext4 partition." +msgstr "" + +#: gnu/packages/linux.scm:724 +msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:726 +msgid "" +"The zerofree command scans the free blocks in an ext2 file system and\n= " +"fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" +"images more compressible." +msgstr "" + +#: gnu/packages/linux.scm:745 +msgid "System call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:747 +msgid "" +"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" +"trace of all the system calls made by a another process/program." +msgstr "" + +#: gnu/packages/linux.scm:768 +msgid "Library call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:770 +msgid "" +"ltrace intercepts and records dynamic library calls which are called by= \n" +"an executed process and the signals received by that process. It can a= lso\n" +"intercept and print the system calls executed by the program." +msgstr "" + +#: gnu/packages/linux.scm:790 +msgid "The Advanced Linux Sound Architecture libraries" +msgstr "" + +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 +msgid "" +"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" +"MIDI functionality to the Linux-based operating system." +msgstr "" + +#: gnu/packages/linux.scm:832 +msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" +msgstr "" + +#: gnu/packages/linux.scm:859 +msgid "Program to configure the Linux IP packet filtering rules" +msgstr "" + +#: gnu/packages/linux.scm:861 +msgid "" +"iptables is the userspace command line program used to configure the\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" +"packet filter." +msgstr "" + +#: gnu/packages/linux.scm:908 +msgid "Utilities for controlling TCP/IP networking and traffic in Linux" +msgstr "" + +#: gnu/packages/linux.scm:910 +msgid "" +"Iproute2 is a collection of utilities for controlling TCP/IP\n" +"networking and traffic with the Linux kernel.\n" +"\n" +"Most network configuration manuals still refer to ifconfig and route as= the\n" +"primary network configuration tools, but ifconfig is known to behave\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" +"to support most modern network technologies, as it doesn't use ifconfig= and\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" +"traffic control.\n" +"\n" +"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" +"consists of several tools, of which the most important are ip and tc. = ip\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" +"tools print detailed usage messages and are accompanied by a set of\n" +"manpages." +msgstr "" + +#: gnu/packages/linux.scm:1022 +msgid "Tools for controlling the network subsystem in Linux" +msgstr "" + +#: gnu/packages/linux.scm:1024 +msgid "" +"This package includes the important tools for controlling the network\n= " +"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" +"netstat, rarp and route. Additionally, this package contains utilities= \n" +"relating to particular network hardware types (plipconfig, slattach) an= d\n" +"advanced aspects of IP configuration (iptunnel, ipmaddr)." +msgstr "" + +#: gnu/packages/linux.scm:1061 +msgid "Library for working with POSIX capabilities" +msgstr "" + +#: gnu/packages/linux.scm:1063 +msgid "" +"Libcap2 provides a programming interface to POSIX capabilities on\n" +"Linux-based operating systems." +msgstr "" + +#: gnu/packages/linux.scm:1106 +msgid "Manipulate Ethernet bridges" +msgstr "" + +#: gnu/packages/linux.scm:1108 +msgid "" +"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" +"to connect two Ethernet segments together in a protocol independent way= .\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" +"a router). Since forwarding is done at Layer 2, all protocols can go\n= " +"transparently through a bridge." +msgstr "" + +#: gnu/packages/linux.scm:1130 +msgid "NetLink protocol library suite" +msgstr "" + +#: gnu/packages/linux.scm:1132 +msgid "" +"The libnl suite is a collection of libraries providing APIs to netlink\= n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" +"between the kernel and user space processes. It was designed to be a m= ore\n" +"flexible successor to ioctl to provide mainly networking related kernel= \n" +"configuration and monitoring interfaces." +msgstr "" + +#: gnu/packages/linux.scm:1162 +msgid "Tool for configuring wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:1164 +msgid "" +"iw is a new nl80211 based CLI configuration utility for wireless\n" +"devices. It replaces 'iwconfig', which is deprecated." +msgstr "" + +#: gnu/packages/linux.scm:1190 +msgid "Analyze power consumption on Intel-based laptops" +msgstr "" + +#: gnu/packages/linux.scm:1192 +msgid "" +"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" +"an interactive mode where the user can experiment various power managem= ent\n" +"settings for cases where the operating system has not enabled these\n" +"settings." +msgstr "" + +#: gnu/packages/linux.scm:1214 +msgid "Audio mixer for X and the console" +msgstr "" + +#: gnu/packages/linux.scm:1216 +msgid "" +"Aumix adjusts an audio mixer from X, the console, a terminal,\n" +"the command line or a script." +msgstr "" + +#: gnu/packages/linux.scm:1240 +msgid "Displays the IO activity of running processes" +msgstr "" + +#: gnu/packages/linux.scm:1242 +msgid "" +"Iotop is a Python program with a top like user interface to show the\n" +"processes currently causing I/O." +msgstr "" + +#: gnu/packages/linux.scm:1297 +msgid "Support file systems implemented in user space" +msgstr "" + +#: gnu/packages/linux.scm:1299 +msgid "" +"As a consequence of its monolithic design, file system code for Linux\n= " +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" +"user-space processes." +msgstr "" + +#: gnu/packages/linux.scm:1324 +msgid "User-space union file system" +msgstr "" + +#: gnu/packages/linux.scm:1326 +msgid "" +"UnionFS-FUSE is a flexible union file system implementation in user\n" +"space, using the FUSE library. Mounting a union file system allows you= to\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" +"UnionFS-FUSE additionally supports copy-on-write." +msgstr "" + +#: gnu/packages/linux.scm:1351 +msgid "User-space union file system (statically linked)" +msgstr "" + +#: gnu/packages/linux.scm:1396 +msgid "Mount remote file systems over SSH" +msgstr "" + +#: gnu/packages/linux.scm:1398 +msgid "" +"This is a file system client based on the SSH File Transfer Protocol.\n= " +"Since most SSH servers already support this protocol it is very easy to= set\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" +"file system is as easy as logging into the server with an SSH client." +msgstr "" + +#: gnu/packages/linux.scm:1427 +msgid "Tools for non-uniform memory access (NUMA) machines" +msgstr "" + +#: gnu/packages/linux.scm:1429 +msgid "" +"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" +"memory is not all in one place. The numactl program allows you to run = your\n" +"application program on specific CPU's and memory nodes. It does this b= y\n" +"supplying a NUMA memory policy to the operating system before running y= our\n" +"program.\n" +"\n" +"The package contains other commands, such as numademo, numastat and mem= hog.\n" +"The numademo command provides a quick overview of NUMA performance on y= our\n" +"system." +msgstr "" + +#: gnu/packages/linux.scm:1492 +msgid "Linux keyboard utilities and keyboard maps" +msgstr "" + +#: gnu/packages/linux.scm:1494 +msgid "" +"This package contains keytable files and keyboard utilities compatible\= n" +"for systems using the Linux kernel. This includes commands such as\n" +"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +msgstr "" + +#: gnu/packages/linux.scm:1513 +msgid "Monitor file accesses" +msgstr "" + +#: gnu/packages/linux.scm:1515 +msgid "" +"The inotify-tools packages provides a C library and command-line tools\= n" +"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +msgstr "" + +#: gnu/packages/linux.scm:1553 +msgid "Kernel module tools" +msgstr "" + +#: gnu/packages/linux.scm:1554 +msgid "" +"Kmod is a set of tools to handle common tasks with Linux\n" +"kernel modules like insert, remove, list, check properties, resolve\n" +"dependencies and aliases.\n" +"\n" +"These tools are designed on top of libkmod, a library that is shipped w= ith\n" +"kmod. The aim is to be compatible with tools, configurations and indic= es\n" +"from the module-init-tools project." +msgstr "" + +#: gnu/packages/linux.scm:1586 +msgid "Userspace device management" +msgstr "" + +#: gnu/packages/linux.scm:1587 +msgid "" +"Udev is a daemon which dynamically creates and removes\n" +"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" +"time." +msgstr "" + +#: gnu/packages/linux.scm:1659 +msgid "Logical volume management for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1661 +msgid "" +"LVM2 is the logical volume management tool set for Linux-based systems.= \n" +"This package includes the user-space libraries and tools, including the= " +"device\n" +"mapper. Kernel components are part of Linux-libre." +msgstr "" + +#: gnu/packages/linux.scm:1697 +msgid "Tools for manipulating Linux Wireless Extensions" +msgstr "" + +#: gnu/packages/linux.scm:1698 +msgid "" +"Wireless Tools are used to manipulate the now-deprecated\n" +"Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " +"Extension was an interface allowing you to set Wireless LAN specific\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" +"interface." +msgstr "" + +#: gnu/packages/linux.scm:1770 +msgid "Central regulatory domain agent (CRDA) for WiFi" +msgstr "" + +#: gnu/packages/linux.scm:1772 +msgid "" +"The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" +"communication between the kernel Linux and user space for regulatory\n" +"compliance." +msgstr "" + +#: gnu/packages/linux.scm:1818 +msgid "Wireless regulatory database" +msgstr "" + +#: gnu/packages/linux.scm:1820 +msgid "" +"This package contains the wireless regulatory database Central\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" +"country-specific regulations for the wireless spectrum." +msgstr "" + +#: gnu/packages/linux.scm:1891 +msgid "Utilities to read temperature/voltage/fan sensors" +msgstr "" + +#: gnu/packages/linux.scm:1893 +msgid "" +"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" +"you to access information from temperature, voltage, and fan speed sens= ors.\n" +"It works with most newer systems." +msgstr "" + +#: gnu/packages/linux.scm:1920 +msgid "I2C tools for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1922 +msgid "" +"The i2c-tools package contains a heterogeneous set of I2C tools for\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" +"EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" +"SMBus access." +msgstr "" + +#: gnu/packages/linux.scm:1958 +msgid "Hardware health information viewer" +msgstr "" + +#: gnu/packages/linux.scm:1960 +msgid "" +"Xsensors reads data from the libsensors library regarding hardware\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" +"in a digital read-out." +msgstr "" + +#: gnu/packages/linux.scm:2008 +msgid "Linux profiling with performance counters" +msgstr "" + +#: gnu/packages/linux.scm:2010 +msgid "" +"perf is a tool suite for profiling using hardware performance counters,= \n" +"with support in the Linux kernel. perf can instrument CPU performance\= n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" +"of lightweight profiling. This package contains the user-land tools an= d in\n" +"particular the 'perf' command." +msgstr "" + +#: gnu/packages/linux.scm:2033 +msgid "Simple tool for creating Linux namespace containers" +msgstr "" + +#: gnu/packages/linux.scm:2034 +msgid "" +"pflask is a simple tool for creating Linux namespace\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" +"an isolated container, created with the help of Linux namespaces. It i= s\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" +"thanks to the use of namespaces." +msgstr "" + +#: gnu/packages/linux.scm:2061 +msgid "Tune hard disk parameters for high performance" +msgstr "" + +#: gnu/packages/linux.scm:2063 +msgid "" +"Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" +"is for enabling irq-unmasking and IDE multiple-mode." +msgstr "" + +#: gnu/packages/linux.scm:2086 +msgid "Tool for enabling and disabling wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:2088 +msgid "" +"rfkill is a simple tool for accessing the rfkill device interface,\n" +"which is used to enable and disable wireless networking devices, typica= lly\n" +"WLAN, Bluetooth and mobile broadband." +msgstr "" + +#: gnu/packages/linux.scm:2107 +msgid "Daemon for delivering ACPI events to user-space programs" +msgstr "" + +#: gnu/packages/linux.scm:2109 +msgid "" +"acpid is designed to notify user-space programs of Advanced\n" +"Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" +"during the system boot, and will run as a background process. When an = ACPI\n" +"event is received from the kernel, acpid will examine the list of rules= \n" +"specified in /etc/acpi/events and execute the rules that match the even= t." +msgstr "" + +#: gnu/packages/linux.scm:2131 +msgid "System utilities based on Linux sysfs" +msgstr "" + +#: gnu/packages/linux.scm:2133 +msgid "" +"These are a set of utilities built upon sysfs, a virtual filesystem in\= n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" +"also contains the libsysfs library." +msgstr "" + +#: gnu/packages/linux.scm:2162 +msgid "System utilities based on Linux sysfs (version 1.x)" +msgstr "" + +#: gnu/packages/linux.scm:2185 +msgid "Utilities to get and set CPU frequency on Linux" +msgstr "" + +#: gnu/packages/linux.scm:2187 +msgid "" +"The cpufrequtils suite contains utilities to retrieve CPU frequency\n" +"information, and set the CPU frequency if supported, using the cpufreq\= n" +"capabilities of the Linux kernel." +msgstr "" + +#: gnu/packages/linux.scm:2206 +msgid "Interface library for the Linux IEEE1394 drivers" +msgstr "" + +#: gnu/packages/linux.scm:2208 +msgid "" +"Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" +"protocol in question." +msgstr "" + +#: gnu/packages/linux.scm:2232 +msgid "AV/C protocol library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2234 +msgid "" +"Libavc1394 is a programming interface to the AV/C specification from\n" +"the 1394 Trade Association. AV/C stands for Audio/Video Control." +msgstr "" + +#: gnu/packages/linux.scm:2256 +msgid "Isochronous streaming media library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2258 +msgid "" +"The libiec61883 library provides a higher level API for streaming DV,\n= " +"MPEG-2 and audio over Linux IEEE 1394." +msgstr "" + +#: gnu/packages/linux.scm:2298 +msgid "Tool for managing Linux Software RAID arrays" +msgstr "" + +#: gnu/packages/linux.scm:2300 +msgid "" +"mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" +"arrays when needed." +msgstr "" + +#: gnu/packages/linux.scm:2327 +msgid "Linux-native asynchronous I/O access library" +msgstr "" + +#: gnu/packages/linux.scm:2329 +msgid "" +"This library enables userspace to use Linux kernel asynchronous I/O\n" +"system calls, important for the performance of databases and other adva= nced\n" +"applications." +msgstr "" + +#: gnu/packages/linux.scm:2365 +msgid "Linux Bluetooth protocol stack" +msgstr "" + +#: gnu/packages/linux.scm:2367 +msgid "" +"BlueZ provides support for the core Bluetooth layers and protocols. It= \n" +"is flexible, efficient and uses a modular implementation." +msgstr "" + +#: gnu/packages/linux.scm:2423 +msgid "Mount exFAT file systems" +msgstr "" + +#: gnu/packages/linux.scm:2425 +msgid "" +"This package provides a FUSE-based file system that provides read and\n= " +"write access to exFAT devices." +msgstr "" + +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + +#: gnu/packages/lout.scm:109 +msgid "Document layout system" +msgstr "" + +#: gnu/packages/lout.scm:111 +#, fuzzy +msgid "" +"The Lout document formatting system reads a high-level description of\n= " +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" +"output file.\n" +"\n" +"Lout offers an unprecedented range of advanced features, including opti= mal\n" +"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" +"scaling, sorted indexes, bibliographic databases, running headers and\n= " +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" +"hyphenation (most European languages are supported), formatting of comp= uter\n" +"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" +"extended with definitions which are very much easier to write than trof= f of\n" +"TeX macros because Lout is a high-level, purely functional language, th= e\n" +"outcome of an eight-year research project that went back to the\n" +"beginning." +msgstr "" +"=D0=9B=D0=BE=D1=83=D1=82 =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC =D0=BE=D0= =B1=D0=BB=D0=B8=D0=BA=D0=BE=D0=B2=D0=B0=D1=9A=D0=B0 =D0=B4=D0=BE=D0=BA=D1= =83=D0=BC=D0=B5=D0=BD=D0=B0=D1=82=D0=B0 =D1=81=D0=B0=D0=B4=D0=B0 =D1=87=D0= =B8=D1=82=D0=B0 =D0=BE=D0=BF=D0=B8=D1=81 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0= =B5=D0=BD=D1=82=D0=B0 =D0=B2=D0=B8=D0=BE=D0=BA=D0=BE=D0=B3 =D0=BD=D0=B8=D0= =B2=D0=BE=D0=B0\n" +"=D1=81=D0=BB=D0=B8=D1=87=D0=B0=D0=BD =D0=BF=D0=BE =D1=81=D1=82=D0=B8=D0= =BB=D1=83 =D0=9B=D0=B0=D0=A2=D0=B5=D0=A5-=D1=83 =D0=B8 =D0=B4=D0=B0=D1=98= =D0=B5 =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D0=BD=D1=83 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D1=83 =D1=83 =D0=9F=D0=BE=D1=81=D1=82=D1=81=D0=BA=D1=80= =D0=B8=D0=BF=D1=82=D1=83 =D0=B8=D0=BB=D0=B8\n" +"=D0=BE=D0=B1=D0=B8=D1=87=D0=BD=D0=BE=D0=BC =D1=82=D0=B5=D0=BA=D1=81=D1=82= =D1=83. \n" +"\n" +"=D0=9B=D0=BE=D1=83=D1=82 =D0=BD=D1=83=D0=B4=D0=B8 =D0=BE=D0=BF=D1=81=D0= =B5=D0=B3 =D0=BD=D0=B0=D0=BF=D1=80=D0=B5=D0=B4=D0=BD=D0=B8=D1=85 =D1=84=D1= =83=D0=BD=D0=BA=D1=86=D0=B8=D1=98=D0=B0 =D0=B1=D0=B5=D0=B7 =D0=BF=D1=80=D0= =B5=D0=BC=D1=86=D0=B0, =D1=83=D0=BA=D1=99=D1=83=D1=87=D1=83=D1=98=D1=83=D1= =9B=D0=B8 =D0=BE=D0=BF=D1=82=D0=B8=D0=BC=D0=B0=D0=BB=D0=B0=D0=BD\n" +"=D0=B7=D0=B0=D0=B2=D1=80=D1=88=D0=B5=D1=82=D0=B0=D0=BA =D0=BF=D0=B0=D1=81= =D1=83=D1=81=D0=B0 =D0=B8 =D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=86=D0=B5= , =D1=81=D0=B0=D0=BC=D0=BE=D1=81=D1=82=D0=B0=D0=BB=D0=B0=D0=BD =D0=BF=D1=80= =D0=B5=D0=BB=D0=BE=D0=BC =D1=80=D0=B5=D0=B4=D0=B0, =D1=83=D0=BA=D1=99=D1=83= =D1=87=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5 =D0=B8\n" +"=D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A=D0=B5 =D0=9F=D0=BE=D1=81=D1=82= =D1=81=D0=BA=D1=80=D0=B8=D0=BF=D1=82 =D0=95=D0=9F=D0=A1 =D0=B4=D0=B0=D1=82= =D0=BE=D1=82=D0=B5=D0=BA=D0=B5, =D0=BE=D0=B1=D0=BB=D0=B8=D0=BA=D0=BE=D0=B2= =D0=B0=D1=9A=D0=B5 =D1=98=D0=B5=D0=B4=D0=BD=D0=B0=D1=87=D0=B8=D0=BD=D0=B5= , =D1=82=D0=B0=D0=B1=D0=B5=D0=BB=D0=B5,\n" +"=D0=B4=D0=B8=D1=98=D0=B0=D0=B3=D1=80=D0=B0=D0=BC=D0=B5, =D0=BE=D0=BA=D1= =80=D0=B5=D1=82=D0=B0=D1=9A=D0=B5 =D0=B8 =D0=BF=D1=80=D0=BE=D0=BC=D0=B5=D0= =BD=D1=83 =D0=B2=D0=B5=D0=BB=D0=B8=D1=87=D0=B8=D0=BD=D0=B5, =D0=BF=D0=BE=D1= =80=D0=B5=D1=92=D0=B0=D0=BD=D0=B5 =D0=BF=D0=BE=D0=BF=D0=B8=D1=81=D0=B5, =D0= =B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D0=B3=D1=80=D0=B0=D1=84=D1=81=D0=BA=D0=B5= \n" +"=D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0= , =D0=BF=D0=BE=D0=BA=D1=80=D0=B5=D1=82=D0=B0=D1=9A=D0=B0 =D0=B7=D0=B0=D0=B3= =D0=BB=D0=B0=D0=B2=D1=99=D0=B0 =D0=B8 =D0=BF=D0=B0=D1=80=D0=BD=D0=B8=D1=85= -=D0=BD=D0=B5=D0=BF=D0=B0=D1=80=D0=BD=D0=B8=D1=85 =D1=81=D1=82=D1=80=D0=B0= =D0=BD=D0=B8=D1=86=D0=B0, =D1=81=D0=B0=D0=BC=D0=BE=D1=81=D1=82=D0=B0=D0=BB= =D0=BD=D0=BE\n" "=D1=83=D0=BD=D0=B0=D0=BA=D1=80=D1=81=D0=BD=D0=BE =D1=83=D0=BF=D1=83=D1=9B= =D0=B8=D0=B2=D0=B0=D1=9A=D0=B5, =D0=B2=D0=B8=D1=88=D0=B5=D1=98=D0=B5=D0=B7= =D0=B8=D1=87=D0=BD=D0=B5 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D1=82= =D0=B5 =D1=83=D0=BA=D1=99=D1=83=D1=87=D1=83=D1=98=D1=83=D1=9B=D0=B8 =D0=B7= =D0=B0=D0=B2=D1=80=D1=88=D0=B5=D1=82=D0=B0=D0=BA =D1=80=D0=B5=D0=B4=D0=B0= \n" "(=D0=B2=D0=B5=D1=9B=D0=B8=D0=BD=D0=B0 =D0=B5=D0=B2=D1=80=D0=BE=D0=BF=D1= =81=D0=BA=D0=B8=D1=85 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA=D0=B0 =D1=98=D0=B5 =D0= =BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0=B0), =D0=BE=D0=B1=D0=BB=D0=B8=D0= =BA=D0=BE=D0=B2=D0=B0=D1=9A=D0=B5 =D1=80=D0=B0=D1=87=D1=83=D0=BD=D0=B0=D1= =80=D1=81=D0=BA=D0=B8=D1=85 =D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0= =B0,\n" "=D0=B8 =D1=98=D0=BE=D1=88 =D0=BC=D0=BD=D0=BE=D0=B3=D0=BE =D1=82=D0=BE=D0= =B3=D0=B0, =D1=81=D0=B2=D0=B5 =D1=81=D0=BF=D1=80=D0=B5=D0=BC=D0=BD=D0=BE = =D0=B7=D0=B0 =D1=83=D0=BF=D0=BE=D1=82=D1=80=D0=B5=D0=B1=D1=83. =D0=A2=D0=B0= =D0=BA=D0=BE=D1=92=D0=B5, =D0=9B=D0=BE=D1=83=D1=82 =D1=98=D0=B5 =D0=BB=D0= =B0=D0=BA=D0=BE =D0=BF=D1=80=D0=BE=D1=88=D0=B8=D1=80=D0=B8=D0=B2\n" @@ -417,20 +5536,6008 @@ msgstr "" "=D1=98=D0=B5 =D0=9B=D0=BE=D1=83=D1=82 =D1=98=D0=B5=D0=B7=D0=B8=D0=BA =D0= =B2=D0=B8=D1=81=D0=BE=D0=BA=D0=BE=D0=B3 =D0=BD=D0=B8=D0=B2=D0=BE=D0=B0, =D0= =BF=D0=BE=D1=82=D0=BF=D1=83=D0=BD=D0=BE =D1=84=D1=83=D0=BD=D0=BA=D1=86=D0= =B8=D0=BE=D0=BD=D0=B0=D0=BB=D0=B0=D0=BD, =D1=80=D0=B5=D0=B7=D1=83=D0=BB=D1= =82=D0=B0=D1=82 =D0=BF=D1=80=D0=BE=D1=98=D0=B5=D0=BA=D1=82=D0=B0\n" "=D0=BE=D1=81=D0=BC=D0=BE=D0=B3=D0=BE=D0=B4=D0=B8=D1=88=D1=9A=D0=B5=D0=B3= =D0=B8=D1=81=D1=82=D1=80=D0=B0=D0=B6=D0=B8=D0=B2=D0=B0=D1=9A=D0=B0 =D0=BA= =D0=BE=D1=98=D0=B8 =D1=81=D0=B5 =D0=B2=D1=80=D0=B0=D1=82=D0=B8=D0=BE =D0=BD= =D0=B0 =D0=BF=D0=BE=D1=87=D0=B5=D1=82=D0=B0=D0=BA." =20 -#: gnu/packages/recutils.scm:58 -msgid "Manipulate plain text files as databases" -msgstr "=D0=A3=D0=BF=D1=80=D0=B0=D0=B2=D1=99=D0=B0=D1=98=D1=82=D0=B5 =D0= =B4=D0=B0=D1=82=D0=BE=D1=82=D0=B5=D0=BA=D0=B0=D0=BC=D0=B0 =D0=BE=D0=B1=D0= =B8=D1=87=D0=BD=D0=BE=D0=B3 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D0=B0 =D0=BA=D0= =B0=D0=BE =D0=B1=D0=B0=D0=B7=D0=B0=D0=BC=D0=B0 =D0=BF=D0=BE=D0=B4=D1=82=D0= =B0=D0=BA=D0=B0" +#: gnu/packages/messaging.scm:77 +msgid "Off-the-Record (OTR) Messaging Library and Toolkit" +msgstr "" + +#: gnu/packages/messaging.scm:79 +msgid "" +"OTR allows you to have private conversations over instant messaging by\= n" +"providing: (1) Encryption: No one else can read your instant messages. = (2)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" +"Deniability: The messages you send do not have digital signatures that = are\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" +"correspondent is assured the messages he sees are authentic and\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" +"keys, no previous conversation is compromised." +msgstr "" + +#: gnu/packages/messaging.scm:135 +msgid "IRC to instant messaging gateway" +msgstr "" + +#: gnu/packages/messaging.scm:136 +msgid "" +"BitlBee brings IM (instant messaging) to IRC clients, for\n" +"people who have an IRC client running all the time and don't want to ru= n an\n" +"additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" +"microblogging network (plus all other Twitter API compatible services l= ike\n" +"identi.ca and status.net)." +msgstr "" + +#: gnu/packages/messaging.scm:169 +msgid "Graphical IRC Client" +msgstr "" + +#: gnu/packages/messaging.scm:171 +msgid "" +"HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" +"users and to highlight messages. It checks spelling using available\n" +"dictionaries. HexChat can be extended with multiple addons." +msgstr "" + +#: gnu/packages/messaging.scm:237 +msgid "Lightweight Internet Relay Chat server for small networks" +msgstr "" + +#: gnu/packages/messaging.scm:239 +msgid "" +"ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" +"networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" +"supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." +msgstr "" + +#: gnu/packages/messaging.scm:310 +msgid "Graphical multi-protocol instant messaging client" +msgstr "" + +#: gnu/packages/messaging.scm:312 +msgid "" +"Pidgin is a modular instant messaging client that supports many popular= \n" +"chat protocols." +msgstr "" + +#: gnu/packages/messaging.scm:350 +msgid "Off-the-Record Messaging plugin for Pidgin" +msgstr "" + +#: gnu/packages/messaging.scm:352 +msgid "" +"Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" +"can read your instant messages. (2) Authentication: You are assured th= e\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" +"do not have digital signatures that are checkable by a third party. An= yone\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" +"you. However, during a conversation, your correspondent is assured the= \n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" +"If you lose control of your private keys, no previous conversation is\n= " +"compromised." +msgstr "" + +#: gnu/packages/messaging.scm:392 +msgid "IRC network bouncer" +msgstr "" + +#: gnu/packages/messaging.scm:393 +msgid "" +"ZNC is an IRC network bouncer or BNC. It can detach the\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" +"clients from different locations can connect to a single ZNC account\n" +"simultaneously and therefore appear under the same nickname on IRC." +msgstr "" + +#: gnu/packages/messaging.scm:415 +msgid "Non-blocking Jabber/XMPP module" +msgstr "" + +#: gnu/packages/messaging.scm:417 +msgid "" +"The goal of this python library is to provide a way for Python\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" +"was initially a fork of xmpppy, but is using non-blocking sockets." +msgstr "" + +#: gnu/packages/messaging.scm:474 +msgid "Jabber (XMPP) client" +msgstr "" + +#: gnu/packages/messaging.scm:475 +msgid "" +"Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" +"transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" +"end-to-end encryption support; XML console." +msgstr "" + +#: gnu/packages/mpd.scm:63 +msgid "Music Player Daemon client library" +msgstr "" + +#: gnu/packages/mpd.scm:64 +msgid "" +"A stable, documented, asynchronous API library for\n" +"interfacing MPD in the C, C++ & Objective C languages." +msgstr "" + +#: gnu/packages/mpd.scm:124 +msgid "Music Player Daemon" +msgstr "" + +#: gnu/packages/mpd.scm:125 +msgid "" +"Music Player Daemon (MPD) is a flexible, powerful,\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" +"can play a variety of sound files while being controlled by its network= \n" +"protocol." +msgstr "" + +#: gnu/packages/mpd.scm:148 +msgid "Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:149 +msgid "" +"MPC is a minimalist command line interface to MPD, the music\n" +"player daemon." +msgstr "" + +#: gnu/packages/mpd.scm:172 +msgid "Curses Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:173 +msgid "" +"ncmpc is a fully featured MPD client, which runs in a\n" +"terminal using ncurses." +msgstr "" + +#: gnu/packages/mpd.scm:211 +msgid "Featureful ncurses based MPD client inspired by ncmpc" +msgstr "" + +#: gnu/packages/mpd.scm:212 +msgid "" +"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" +"but it provides new useful features such as support for regular express= ions\n" +"for library searches, extended song format, items filtering, the abilit= y to\n" +"sort playlists, and a local filesystem browser." +msgstr "" + +#: gnu/packages/mpd.scm:235 +msgid "MPD client for track scrobbling" +msgstr "" + +#: gnu/packages/mpd.scm:236 +msgid "" +"mpdscribble is a Music Player Daemon client which submits\n" +"information about tracks being played to a scrobbler, such as Libre.FM.= " +msgstr "" + +#: gnu/packages/netpbm.scm:146 +msgid "Toolkit for manipulation of images" +msgstr "" + +#: gnu/packages/netpbm.scm:148 +msgid "" +"Netpbm is a toolkit for the manipulation of graphic images, including\n= " +"the conversion of images between a variety of different formats.\n" +"There are over 300 separate tools in the package including converters f= or\n" +"about 100 graphics formats." +msgstr "" + +#: gnu/packages/nettle.scm:51 +msgid "C library for low-level cryptographic functionality" +msgstr "" + +#: gnu/packages/nettle.scm:53 +msgid "" +"GNU Nettle is a low-level cryptographic library. It is designed to\n" +"fit in easily in almost any context. It can be easily included in\n" +"cryptographic toolkits for object-oriented languages or in applications= \n" +"themselves." +msgstr "" + +#: gnu/packages/networking.scm:52 +msgid "Teredo IPv6 tunneling software" +msgstr "" + +#: gnu/packages/networking.scm:54 +msgid "" +"Miredo is an implementation (client, relay, server) of the Teredo\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" +"residing in IPv4-only networks, even when they are behind a NAT device.= " +msgstr "" + +#: gnu/packages/networking.scm:76 +msgid "Open bidirectional communication channels from the command line" +msgstr "" + +#: gnu/packages/networking.scm:78 +msgid "" +"socat is a relay for bidirectional data transfer between two independen= t\n" +"data channels---files, pipes, devices, sockets, etc. It can create\n" +"\"listening\" sockets, named pipes, and pseudo terminals.\n" +"\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" +"line, to logically connect serial lines on different computers, or to\n= " +"establish a relatively secure environment (su and chroot) for running " +"client\n" +"or server shell scripts with network connections." +msgstr "" + +#: gnu/packages/networking.scm:102 +msgid "Library for message-based applications" +msgstr "" + +#: gnu/packages/networking.scm:104 +msgid "" +"The 0MQ lightweight messaging kernel is a library which extends the\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" +"messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" +"asynchronous message queues, multiple messaging patterns, message\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" +"more." +msgstr "" + +#: gnu/packages/networking.scm:125 +msgid "Library for Neighbor Discovery Protocol" +msgstr "" + +#: gnu/packages/networking.scm:127 +msgid "" +"libndp contains a library which provides a wrapper for IPv6 Neighbor\n" +"Discovery Protocol. It also provides a tool named ndptool for sending = and\n" +"receiving NDP messages." +msgstr "" + +#: gnu/packages/networking.scm:145 +msgid "Display or change Ethernet device settings" +msgstr "" + +#: gnu/packages/networking.scm:147 +msgid "" +"ethtool can be used to query and change settings such as speed,\n" +"auto-negotiation and checksum offload on many network devices, especial= ly\n" +"Ethernet devices." +msgstr "" + +#: gnu/packages/networking.scm:183 +msgid "Text based network interface status monitor" +msgstr "" + +#: gnu/packages/networking.scm:185 +msgid "" +"IFStatus is a simple, easy-to-use program for displaying commonly\n" +"needed/wanted real-time traffic statistics of multiple network\n" +"interfaces, with a simple and efficient view on the command line. It i= s\n" +"intended as a substitute for the PPPStatus and EthStatus projects." +msgstr "" + +#: gnu/packages/pdf.scm:101 +msgid "PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:103 +msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +msgstr "" + +#: gnu/packages/pdf.scm:112 +msgid "Qt4 frontend for the Poppler PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:145 +msgid "Python bindings for Poppler-Qt4" +msgstr "" + +#: gnu/packages/pdf.scm:147 +msgid "" +"This package provides Python bindings for the Qt4 interface of the\n" +"Poppler PDF rendering library." +msgstr "" + +#: gnu/packages/pdf.scm:194 +msgid "Viewer for PDF files based on the Motif toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:196 +msgid "Xpdf is a viewer for Portable Document Format (PDF) files." +msgstr "" + +#: gnu/packages/pdf.scm:226 +msgid "Comic book support for zathura (libarchive backend)" +msgstr "" + +#: gnu/packages/pdf.scm:227 +msgid "" +"The zathura-cb plugin adds comic book support to zathura\n" +"using libarchive." +msgstr "" + +#: gnu/packages/pdf.scm:257 +msgid "PS support for zathura (libspectre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:258 +msgid "" +"The zathura-ps plugin adds PS support to zathura\n" +"using libspectre." +msgstr "" + +#: gnu/packages/pdf.scm:289 +msgid "DjVu support for zathura (DjVuLibre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:290 +msgid "" +"The zathura-djvu plugin adds DjVu support to zathura\n" +"using the DjVuLibre library." +msgstr "" + +#: gnu/packages/pdf.scm:322 +msgid "PDF support for zathura (poppler backend)" +msgstr "" + +#: gnu/packages/pdf.scm:323 +msgid "" +"The zathura-pdf-poppler plugin adds PDF support to zathura\n" +"by using the poppler rendering engine." +msgstr "" + +#: gnu/packages/pdf.scm:361 +msgid "Lightweight keyboard-driven PDF viewer" +msgstr "" + +#: gnu/packages/pdf.scm:362 +msgid "" +"Zathura is a customizable document viewer. It provides a\n" +"minimalistic interface and an interface that mainly focuses on keyboard= \n" +"interaction." +msgstr "" + +#: gnu/packages/pdf.scm:401 +msgid "Tools to work with the PDF file format" +msgstr "" + +#: gnu/packages/pdf.scm:403 +msgid "" +"PoDoFo is a C++ library and set of command-line tools to work with the\= n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" +"for applications that wish to do lower level manipulation of PDF, such = as\n" +"extracting content or merging files." +msgstr "" + +#: gnu/packages/pdf.scm:464 +msgid "Lightweight PDF viewer and toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:466 +msgid "" +"MuPDF is a C library that implements a PDF and XPS parsing and\n" +"rendering engine. It is used primarily to render pages into bitmaps,\n= " +"but also provides support for other operations such as searching and\n" +"listing the table of contents and hyperlinks.\n" +"\n" +"The library ships with a rudimentary X11 viewer, and a set of command\n= " +"line tools for batch rendering (pdfdraw), rewriting files (pdfclean),\n= " +"and examining the file structure (pdfshow)." +msgstr "" + +#: gnu/packages/pdf.scm:506 +msgid "Command-line tools and library for transforming PDF files" +msgstr "" + +#: gnu/packages/pdf.scm:508 +msgid "" +"QPDF is a command-line program that does structural, content-preserving= \n" +"transformations on PDF files. It could have been called something like= \n" +"pdf-to-pdf. It includes support for merging and splitting PDFs and to\= n" +"manipulate the list of pages in a PDF file. It is not a PDF viewer or = a\n" +"program capable of converting PDF into other formats." +msgstr "" + +#: gnu/packages/pdf.scm:538 +msgid "Notetaking using a stylus" +msgstr "" + +#: gnu/packages/pdf.scm:540 +msgid "" +"Xournal is an application for notetaking, sketching, keeping a journal\= n" +"using a stylus." +msgstr "" + +#: gnu/packages/pem.scm:41 +msgid "Personal expenses manager" +msgstr "" + +#: gnu/packages/pem.scm:43 +msgid "" +"GNU Pem is a simple tool for tracking personal income and\n" +"expenses. It operates from the command line and it stores its data\n" +"in a basic text format in your home directory. It can easily print\n" +"reports of your spending on different expenses via a basic search\n" +"feature." +msgstr "" + +#: gnu/packages/perl.scm:110 +msgid "Implementation of the Perl programming language" +msgstr "" + +#: gnu/packages/perl.scm:112 +msgid "" +"Perl 5 is a highly capable, feature-rich programming language with over= \n" +"24 years of development." +msgstr "" + +#: gnu/packages/perl.scm:131 +msgid "Module for merging hierarchies using the C3 algorithm" +msgstr "" + +#: gnu/packages/perl.scm:132 +msgid "" +"This module implements the C3 algorithm, which aims to\n" +"provide a sane method resolution order under multiple inheritance." +msgstr "" + +#: gnu/packages/perl.scm:150 +msgid "Compute differences between two files or lists" +msgstr "" + +#: gnu/packages/perl.scm:151 +msgid "" +"This is a module for computing the difference between two\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" +"algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" +"program. It is guaranteed to find the *smallest possible* set of\n" +"differences." +msgstr "" + +#: gnu/packages/perl.scm:173 +msgid "Use shorter versions of class names" +msgstr "" + +#: gnu/packages/perl.scm:174 +msgid "" +"The alias module loads the class you specify and exports\n" +"into your namespace a subroutine that returns the class name. You can\= n" +"explicitly alias the class to another name or, if you prefer, you can d= o so\n" +"implicitly." +msgstr "" + +#: gnu/packages/perl.scm:196 +msgid "Configuration files and command line parsing" +msgstr "" + +#: gnu/packages/perl.scm:197 +msgid "" +"AppConfig is a bundle of Perl5 modules for reading\n" +"configuration files and parsing command line arguments." +msgstr "" + +#: gnu/packages/perl.scm:215 +msgid "Perl API to zip files" +msgstr "" + +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 +msgid "" +"The Archive::Zip module allows a Perl program to create,\n" +"manipulate, read, and write Zip archive files." +msgstr "" + +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 +msgid "Establish an ISA relationship with base classes at compile time" +msgstr "" + +#: gnu/packages/perl.scm:236 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" +"parent." +msgstr "" + +#: gnu/packages/perl.scm:261 +msgid "Execute code after a scope finished compilation" +msgstr "" + +#: gnu/packages/perl.scm:262 +msgid "" +"This module allows you to execute code when perl finished\n" +"compiling the surrounding scope." +msgstr "" + +#: gnu/packages/perl.scm:280 +msgid "Benchmarking with statistical confidence" +msgstr "" + +#: gnu/packages/perl.scm:282 +msgid "" +"The Benchmark::Timer class allows you to time portions of code\n" +"conveniently, as well as benchmark code by allowing timings of repeated= \n" +"trials. It is perfect for when you need more precise information about= the\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" +"but don't want to go all out and profile your code." +msgstr "" + +#: gnu/packages/perl.scm:307 +msgid "Bit vector library" +msgstr "" + +#: gnu/packages/perl.scm:308 +msgid "" +"Bit::Vector is an efficient C library which allows you to\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" +"matrices, all of arbitrary sizes. The package also includes an\n" +"object-oriented Perl module for accessing the C library from Perl, and\= n" +"optionally features overloaded operators for maximum ease of use. The = C\n" +"library can nevertheless be used stand-alone, without Perl." +msgstr "" + +#: gnu/packages/perl.scm:330 +msgid "Boolean support for Perl" +msgstr "" + +#: gnu/packages/perl.scm:331 +msgid "" +"This module provides basic Boolean support, by defining two\n" +"special objects: true and false." +msgstr "" + +#: gnu/packages/perl.scm:352 +msgid "Cache interface for Perl" +msgstr "" + +#: gnu/packages/perl.scm:353 +msgid "" +"The Cache modules are designed to assist a developer in\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" +"in web applications to store data locally to save repeated and redundan= t\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" +"runs of an application or invocations of a CGI-style script or simply a= s an\n" +"easy to use abstraction of the filesystem or shared memory." +msgstr "" + +#: gnu/packages/perl.scm:376 +msgid "Shared memory interprocess cache via mmap" +msgstr "" + +#: gnu/packages/perl.scm:377 +msgid "" +"A shared memory cache through an mmap'ed file. It's core is\n" +"written in C for performance. It uses fcntl locking to ensure multiple= \n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" +"algorithm to keep the most used entries in the cache." +msgstr "" + +#: gnu/packages/perl.scm:398 +msgid "Capture STDOUT and STDERR from Perl, XS or external programs" +msgstr "" + +#: gnu/packages/perl.scm:400 +msgid "" +"Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" +"sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" +"is captured while being passed through to the original file handles." +msgstr "" + +#: gnu/packages/perl.scm:420 +msgid "Executable comments for Perl" +msgstr "" + +#: gnu/packages/perl.scm:421 +msgid "" +"Carp::Assert is intended for a purpose like the ANSI C\n" +"library assert.h." +msgstr "" + +#: gnu/packages/perl.scm:443 +msgid "Convenience wrappers around Carp::Assert" +msgstr "" + +#: gnu/packages/perl.scm:444 +msgid "" +"Carp::Assert::More is a set of handy assertion functions for\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:464 +msgid "Report errors from a \"clan\" of modules" +msgstr "" + +#: gnu/packages/perl.scm:465 +msgid "" +"This module allows errors from a clan (or family) of modules\n" +"to appear to originate from the caller of the clan. This is necessary = in\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" +"the Carp.pm module doesn't help." +msgstr "" + +#: gnu/packages/perl.scm:489 +msgid "Automated accessor generation" +msgstr "" + +#: gnu/packages/perl.scm:490 +msgid "" +"This module automagically generates accessors/mutators for\n" +"your class." +msgstr "" + +#: gnu/packages/perl.scm:512 +msgid "Faster, but less expandable, chained accessors" +msgstr "" + +#: gnu/packages/perl.scm:513 +msgid "" +"A chained accessor is one that always returns the object\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" +"the same mk_accessors interface." +msgstr "" + +#: gnu/packages/perl.scm:539 +msgid "Build groups of accessors" +msgstr "" + +#: gnu/packages/perl.scm:540 +msgid "" +"This class lets you build groups of accessors that will call\n" +"different getters and setters." +msgstr "" + +#: gnu/packages/perl.scm:560 +msgid "Pragma to use the C3 method resolution order algorithm" +msgstr "" + +#: gnu/packages/perl.scm:561 +msgid "" +"This is pragma to change Perl 5's standard method resolution\n" +"order from depth-first left-to-right (a.k.a - pre-order) to the more\n" +"sophisticated C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:585 +msgid "Drop-in replacement for NEXT" +msgstr "" + +#: gnu/packages/perl.scm:586 +msgid "" +"This module is intended as a drop-in replacement for NEXT,\n" +"supporting the same interface, but using Class::C3 to do the hard work.= " +msgstr "" + +#: gnu/packages/perl.scm:610 +msgid "Load mix-ins or components to your C3-based class" +msgstr "" + +#: gnu/packages/perl.scm:611 +msgid "" +"This module will inject base classes to your module using\n" +"the Class::C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:629 +msgid "Inheritable, overridable class data" +msgstr "" + +#: gnu/packages/perl.scm:630 +msgid "" +"Class::Data::Inheritable is for creating accessor/mutators\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" +"subclasses and can be overridden." +msgstr "" + +#: gnu/packages/perl.scm:651 +msgid "Class for easy date and time manipulation" +msgstr "" + +#: gnu/packages/perl.scm:652 +msgid "" +"This module provides a general-purpose date and datetime\n" +"type for perl." +msgstr "" + +#: gnu/packages/perl.scm:671 +msgid "Utility methods for factory classes" +msgstr "" + +#: gnu/packages/perl.scm:672 +msgid "This module exports methods useful for factory classes." +msgstr "" + +#: gnu/packages/perl.scm:689 +msgid "Get information about a class and its structure" +msgstr "" + +#: gnu/packages/perl.scm:690 +msgid "" +"Class::Inspector allows you to get information about a\n" +"loaded class." +msgstr "" + +#: gnu/packages/perl.scm:718 +msgid "Working (require \"Class::Name\") and more" +msgstr "" + +#: gnu/packages/perl.scm:719 +msgid "" +"\"require EXPR\" only accepts Class/Name.pm style module\n" +"names, not Class::Name. For that, this module provides \"load_class\n" +"'Class::Name'\"." +msgstr "" + +#: gnu/packages/perl.scm:742 +msgid "XS implementation of parts of Class::Load" +msgstr "" + +#: gnu/packages/perl.scm:743 +msgid "" +"This module provides an XS implementation for portions of\n" +"Class::Load." +msgstr "" + +#: gnu/packages/perl.scm:762 +msgid "Create generic methods for OO Perl" +msgstr "" + +#: gnu/packages/perl.scm:763 +msgid "" +"This module solves the problem of having to continually\n" +"write accessor methods for your objects that perform standard tasks." +msgstr "" + +#: gnu/packages/perl.scm:784 +msgid "Moose-like method modifiers" +msgstr "" + +#: gnu/packages/perl.scm:785 +msgid "" +"Class::Method::Modifiers provides three modifiers: 'before',\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" +"is run in place of the original method, with a hook to easily call that= \n" +"original method." +msgstr "" + +#: gnu/packages/perl.scm:806 +msgid "Implementation of a singleton class for Perl" +msgstr "" + +#: gnu/packages/perl.scm:807 +msgid "" +"This module implements a Singleton class from which other\n" +"classes can be derived. By itself, the Class::Singleton module does ve= ry\n" +"little other than manage the instantiation of a single object." +msgstr "" + +#: gnu/packages/perl.scm:826 +msgid "Minimalist class construction" +msgstr "" + +#: gnu/packages/perl.scm:827 +msgid "" +"This module offers a minimalist class construction kit. It\n" +"uses no non-core modules for any recent Perl." +msgstr "" + +#: gnu/packages/perl.scm:847 +msgid "Unload a class" +msgstr "" + +#: gnu/packages/perl.scm:848 +msgid "" +"Class:Unload unloads a given class by clearing out its\n" +"symbol table and removing it from %INC." +msgstr "" + +#: gnu/packages/perl.scm:866 +msgid "Generate fast XS accessors without runtime compilation" +msgstr "" + +#: gnu/packages/perl.scm:867 +msgid "" +"Class::XSAccessor implements fast read, write, and\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" +"\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" +"Class::XSAccessor::Array implements the same interface for objects that= use\n" +"arrays for their internal representation." +msgstr "" + +#: gnu/packages/perl.scm:887 +msgid "Recursively copy Perl datatypes" +msgstr "" + +#: gnu/packages/perl.scm:889 +msgid "" +"This module provides a clone() method which makes recursive copies of\n= " +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" +"objects." +msgstr "" + +#: gnu/packages/perl.scm:910 +msgid "Sane defaults for Perl programs" +msgstr "" + +#: gnu/packages/perl.scm:911 +msgid "" +"This module implements some sane defaults for Perl programs,\n" +"as defined by two typical specimens of Perl coders." +msgstr "" + +#: gnu/packages/perl.scm:931 +msgid "Load configuration from different file formats" +msgstr "" + +#: gnu/packages/perl.scm:932 +msgid "" +"Config::Any provides a facility for Perl applications and\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" +"supports XML, YAML, JSON, Apache-style configuration, and Perl code." +msgstr "" + +#: gnu/packages/perl.scm:953 +msgid "Module to implement some AutoConf macros in Perl" +msgstr "" + +#: gnu/packages/perl.scm:954 +msgid "" +"Config::AutoConf is intended to provide the same\n" +"opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." +msgstr "" + +#: gnu/packages/perl.scm:972 +msgid "Generic Config Module" +msgstr "" + +#: gnu/packages/perl.scm:973 +msgid "" +"This module opens a config file and parses its contents for\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" +"the well known Apache config format and is 100% compatible with Apache\= n" +"configs, but you can also just use simple name/value pairs in your conf= ig\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" +"some enhancements such as here-documents, C-style comments, and multili= ne\n" +"options." +msgstr "" + +#: gnu/packages/perl.scm:999 +msgid "Preserve context during subroutine call" +msgstr "" + +#: gnu/packages/perl.scm:1000 +msgid "" +"This module runs code after a subroutine call, preserving\n" +"the context the subroutine would have seen if it were the last statemen= t in\n" +"the caller." +msgstr "" + +#: gnu/packages/perl.scm:1021 +msgid "Verify requirements in a CPAN::Meta object" +msgstr "" + +#: gnu/packages/perl.scm:1022 +msgid "" +"This module verifies if requirements described in a\n" +"CPAN::Meta object are present." +msgstr "" + +#: gnu/packages/perl.scm:1042 +msgid "JSON::XS for Cpanel" +msgstr "" + +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa." +msgstr "" + +#: gnu/packages/perl.scm:1061 +msgid "Random password generator" +msgstr "" + +#: gnu/packages/perl.scm:1062 +msgid "" +"Crypt::RandPasswd provides three functions that can be used\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" +"This code is a Perl implementation of the Automated Password Generator\= n" +"standard, like the program described in \"A Random Word Generator For\n= " +"Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" +"contained in Appendix A of FIPS Publication 181, \"Standard for Automat= ed\n" +"Password Generator\"." +msgstr "" + +#: gnu/packages/perl.scm:1105 +msgid "Library for genomic analysis" +msgstr "" + +#: gnu/packages/perl.scm:1106 +msgid "" +"Chaolin Zhang's Perl Library (czplib) contains assorted\n" +"functions and data structures for processing and analysing genomic and\= n" +"bioinformatics data." +msgstr "" + +#: gnu/packages/perl.scm:1125 +msgid "Pretty printing of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1126 +msgid "" +"This module provide functions that takes a list of values as\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" +"code that, when \"eval\"ed, produces a deep copy of the original argume= nts." +msgstr "" + +#: gnu/packages/perl.scm:1145 +msgid "Concise data dumper" +msgstr "" + +#: gnu/packages/perl.scm:1146 +msgid "" +"Data::Dumper::Concise provides a dumper with Less\n" +"indentation and newlines plus sub deparsing." +msgstr "" + +#: gnu/packages/perl.scm:1168 +msgid "Parse and validate simple name/value option pairs" +msgstr "" + +#: gnu/packages/perl.scm:1170 +msgid "Data::OptList provides a simple syntax for name/value option pair= s." +msgstr "" + +#: gnu/packages/perl.scm:1192 +msgid "Help when paging through sets of results" +msgstr "" + +#: gnu/packages/perl.scm:1193 +msgid "" +"When searching through large amounts of data, it is often\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" +"The maths behind this is unfortunately fiddly, hence this module." +msgstr "" + +#: gnu/packages/perl.scm:1215 +msgid "Structured tags datastructures" +msgstr "" + +#: gnu/packages/perl.scm:1217 +msgid "" +"This module is for manipulating data as hierarchical tag/value\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:1244 +msgid "N at a time iteration API" +msgstr "" + +#: gnu/packages/perl.scm:1245 +msgid "" +"This module tries to find middle ground between one at a\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" +"to avoid the overhead of implementing an iterative api when this isn't\= n" +"necessary, without breaking forward compatibility in case that becomes\= n" +"necessary later on." +msgstr "" + +#: gnu/packages/perl.scm:1270 +msgid "Dynamic generation of nested combinations of variants" +msgstr "" + +#: gnu/packages/perl.scm:1271 +msgid "" +"Data::Tumbler - Dynamic generation of nested combinations of\n" +"variants." +msgstr "" + +#: gnu/packages/perl.scm:1297 +msgid "Visitor style traversal of Perl data structures" +msgstr "" + +#: gnu/packages/perl.scm:1298 +msgid "" +"This module is a simple visitor implementation for Perl\n" +"values. It has a main dispatcher method, visit, which takes a single p= erl\n" +"value and then calls the methods appropriate for that value. It can\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" +"support for per-object behavior, circular structures, visiting tied\n" +"structures, and all ref types (hashes, arrays, scalars, code, globs)." +msgstr "" + +#: gnu/packages/perl.scm:1323 +msgid "Gregorian calendar date calculations" +msgstr "" + +#: gnu/packages/perl.scm:1324 +msgid "" +"This package consists of a Perl module for date calculations\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" +"standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" +"applicable)." +msgstr "" + +#: gnu/packages/perl.scm:1348 +msgid "XS wrapper for Date::Calc" +msgstr "" + +#: gnu/packages/perl.scm:1349 +msgid "" +"Date::Calc::XS is an XS wrapper and C library plug-in for\n" +"Date::Calc." +msgstr "" + +#: gnu/packages/perl.scm:1373 +msgid "Date manipulation routines" +msgstr "" + +#: gnu/packages/perl.scm:1374 +msgid "" +"Date::Manip is a series of modules for common date/time\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" +"time from another, or parsing international times." +msgstr "" + +#: gnu/packages/perl.scm:1402 +msgid "Date and time object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1403 +msgid "" +"DateTime is a class for the representation of date/time\n" +"combinations. It represents the Gregorian calendar, extended backwards= in\n" +"time before its creation (in 1582)." +msgstr "" + +#: gnu/packages/perl.scm:1428 +msgid "DateTime set objects" +msgstr "" + +#: gnu/packages/perl.scm:1429 +msgid "" +"The DateTime::Set module provides a date/time sets\n" +"implementation. It allows, for example, the generation of groups of da= tes,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" +"within a time range." +msgstr "" + +#: gnu/packages/perl.scm:1452 +msgid "DateTime rfc2445 recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1453 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for RFC 2445 style recurrences." +msgstr "" + +#: gnu/packages/perl.scm:1474 +msgid "DateTime::Set extension for basic recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1475 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" +"\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." +msgstr "" + +#: gnu/packages/perl.scm:1500 +msgid "Create DateTime parser classes and objects" +msgstr "" + +#: gnu/packages/perl.scm:1501 +msgid "" +"DateTime::Format::Builder creates DateTime parsers. Many\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" +"to do this without writing reams of structural code." +msgstr "" + +#: gnu/packages/perl.scm:1528 +msgid "Parse data/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1529 +msgid "" +"DateTime::Format::Flexible attempts to take any string you\n" +"give it and parse it into a DateTime object." +msgstr "" + +#: gnu/packages/perl.scm:1555 +msgid "Parse and format iCal datetime and duration strings" +msgstr "" + +#: gnu/packages/perl.scm:1556 +msgid "" +"This module understands the ICal date/time and duration\n" +"formats, as defined in RFC 2445. It can be used to parse these formats= in\n" +"order to create the appropriate objects." +msgstr "" + +#: gnu/packages/perl.scm:1588 +msgid "Machine-readable date/time with natural parsing" +msgstr "" + +#: gnu/packages/perl.scm:1589 +msgid "" +"DateTime::Format::Natural takes a string with a human\n" +"readable date/time and creates a machine readable one by applying natur= al\n" +"parsing logic." +msgstr "" + +#: gnu/packages/perl.scm:1613 +msgid "Parse and format strp and strf time patterns" +msgstr "" + +#: gnu/packages/perl.scm:1614 +msgid "" +"This module implements most of `strptime(3)`, the POSIX\n" +"function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" +"takes a string and a pattern and returns the `DateTime` object associat= ed." +msgstr "" + +#: gnu/packages/perl.scm:1639 +msgid "Localization support for DateTime.pm" +msgstr "" + +#: gnu/packages/perl.scm:1640 +msgid "" +"The DateTime::Locale modules provide localization data for\n" +"the DateTime.pm class." +msgstr "" + +#: gnu/packages/perl.scm:1667 +msgid "Time zone object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1668 +msgid "" +"This class is the base class for all time zone objects. A\n" +"time zone is represented internally as a set of observances, each of wh= ich\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" +"DateTime module, this module does not do much. It's primary interface = is\n" +"through a DateTime object, and most users will not need to directly use= \n" +"DateTime::TimeZone methods." +msgstr "" + +#: gnu/packages/perl.scm:1698 +msgid "Parse date/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1699 +msgid "" +"DateTimeX::Easy uses a variety of DateTime::Format packages\n" +"to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" +"edges (mainly concerning timezone detection and selection)." +msgstr "" + +#: gnu/packages/perl.scm:1720 +msgid "Meatier version of caller" +msgstr "" + +#: gnu/packages/perl.scm:1721 +msgid "Devel::Caller provides meatier version of caller." +msgstr "" + +#: gnu/packages/perl.scm:1739 +msgid "Check that a command is available" +msgstr "" + +#: gnu/packages/perl.scm:1740 +msgid "" +"Devel::CheckBin is a perl module that checks whether a\n" +"particular command is available." +msgstr "" + +#: gnu/packages/perl.scm:1760 +msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" +msgstr "" + +#: gnu/packages/perl.scm:1761 +msgid "" +"Devel::GlobalDestruction provides a function returning the\n" +"equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." +msgstr "" + +#: gnu/packages/perl.scm:1781 +msgid "Alias lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:1782 +msgid "" +"Devel::LexAlias provides the ability to alias a lexical\n" +"variable in a subroutines scope to one of your choosing." +msgstr "" + +#: gnu/packages/perl.scm:1804 +msgid "Introspect overloaded operators" +msgstr "" + +#: gnu/packages/perl.scm:1805 +msgid "" +"Devel::OverloadInfo returns information about overloaded\n" +"operators for a given class (or object), including where in the inherit= ance\n" +"hierarchy the overloads are declared and where the code implementing it= is." +msgstr "" + +#: gnu/packages/perl.scm:1832 +msgid "Partial dumping of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1833 +msgid "" +"This module is a data dumper optimized for logging of\n" +"arbitrary parameters." +msgstr "" + +#: gnu/packages/perl.scm:1851 +msgid "Object representing a stack trace" +msgstr "" + +#: gnu/packages/perl.scm:1852 +msgid "" +"The Devel::StackTrace module contains two classes,\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" +"information that can be retrieved via Perl's caller() function, as well= as\n" +"providing a simple interface to this data." +msgstr "" + +#: gnu/packages/perl.scm:1874 +msgid "Displays stack trace in HTML" +msgstr "" + +#: gnu/packages/perl.scm:1875 +msgid "" +"Devel::StackTrace::AsHTML adds as_html method to\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" +"snippet context and function parameters. If you call it on an instance= of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" +"each stack frame." +msgstr "" + +#: gnu/packages/perl.scm:1896 +msgid "Dump symbol names or the symbol table" +msgstr "" + +#: gnu/packages/perl.scm:1897 +msgid "Devel::Symdump provides access to the perl symbol table." +msgstr "" + +#: gnu/packages/perl.scm:1914 +msgid "Keyed-Hashing for Message Authentication" +msgstr "" + +#: gnu/packages/perl.scm:1915 +msgid "" +"The Digest::HMAC module follows the common Digest::\n" +"interface for the RFC 2104 HMAC mechanism." +msgstr "" + +#: gnu/packages/perl.scm:1931 +msgid "Perl implementation of the SHA-1 message digest algorithm" +msgstr "" + +#: gnu/packages/perl.scm:1933 +msgid "" +"This package provides 'Digest::SHA1', an implementation of the NIST\n" +"SHA-1 message digest algorithm for use by Perl programs." +msgstr "" + +#: gnu/packages/perl.scm:1955 +msgid "Declare version conflicts for your dist" +msgstr "" + +#: gnu/packages/perl.scm:1956 +msgid "" +"This module allows you to specify conflicting versions of\n" +"modules separately and deal with them after the module is done installi= ng." +msgstr "" + +#: gnu/packages/perl.scm:1974 +msgid "OO-ish Error/Exception handling for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1975 +msgid "" +"The Error package provides two interfaces. Firstly Error\n" +"provides a procedural interface to exception handling. Secondly Error = is a\n" +"base class for errors/exceptions that can either be thrown, for subsequ= ent\n" +"catch, or can simply be recorded." +msgstr "" + +#: gnu/packages/perl.scm:2000 +msgid "Safely and cleanly create closures via string eval" +msgstr "" + +#: gnu/packages/perl.scm:2001 +msgid "" +"String eval is often used for dynamic code generation. For\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" +"them in $@@ instead. This module attempts to solve these problems. It= \n" +"provides an eval_closure function, which evals a string in a clean\n" +"environment, other than a fixed list of specified variables. Compilati= on\n" +"errors are rethrown automatically." +msgstr "" + +#: gnu/packages/perl.scm:2030 +msgid "Allows you to declare real exception classes in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2031 +msgid "" +"Exception::Class allows you to declare exception hierarchies\n" +"in your modules in a \"Java-esque\" manner." +msgstr "" + +#: gnu/packages/perl.scm:2047 +msgid "Lightweight exporting of functions and variables" +msgstr "" + +#: gnu/packages/perl.scm:2049 +msgid "" +"Exporter::Lite is an alternative to Exporter, intended to provide a\n" +"lightweight subset of the most commonly-used functionality. It support= s\n" +"import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." +msgstr "" + +#: gnu/packages/perl.scm:2070 +msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" +msgstr "" + +#: gnu/packages/perl.scm:2071 +msgid "" +"Exporter::Tiny supports many of Sub::Exporter's\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" +"only about 40% as many lines of code and with zero non-core dependencie= s." +msgstr "" + +#: gnu/packages/perl.scm:2094 +msgid "Build.PL install path logic made easy" +msgstr "" + +#: gnu/packages/perl.scm:2095 +msgid "" +"This module tries to make install path resolution as easy as\n" +"possible." +msgstr "" + +#: gnu/packages/perl.scm:2113 +msgid "Wrapper for perl's configuration" +msgstr "" + +#: gnu/packages/perl.scm:2114 +msgid "" +"ExtUtils::Config is an abstraction around the %Config hash.\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" +"it ties together a family of modern toolchain modules." +msgstr "" + +#: gnu/packages/perl.scm:2133 +msgid "Various portability utilities for module builders" +msgstr "" + +#: gnu/packages/perl.scm:2134 +msgid "" +"This module provides various portable helper functions for\n" +"module building modules." +msgstr "" + +#: gnu/packages/perl.scm:2164 +msgid "Watch for changes to files" +msgstr "" + +#: gnu/packages/perl.scm:2165 +msgid "" +"This module provides a class to monitor a directory for\n" +"changes made to any file." +msgstr "" + +#: gnu/packages/perl.scm:2183 +msgid "Recursively copy files and directories" +msgstr "" + +#: gnu/packages/perl.scm:2184 +msgid "" +"This module has 3 functions: one to copy files only, one to\n" +"copy directories only, and one to do either depending on the argument's= \n" +"type." +msgstr "" + +#: gnu/packages/perl.scm:2206 +msgid "Alternative interface to File::Find" +msgstr "" + +#: gnu/packages/perl.scm:2207 +msgid "" +"File::Find::Rule is a friendlier interface to File::Find.\n" +"It allows you to build rules which specify the desired files and\n" +"directories." +msgstr "" + +#: gnu/packages/perl.scm:2230 +msgid "Common rules for searching for Perl things" +msgstr "" + +#: gnu/packages/perl.scm:2231 +msgid "" +"File::Find::Rule::Perl provides methods for finding various\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" +"in various parts of the CPAN ecosystem." +msgstr "" + +#: gnu/packages/perl.scm:2254 +msgid "Find your home and other directories on any platform" +msgstr "" + +#: gnu/packages/perl.scm:2255 +msgid "" +"File::HomeDir is a module for locating the directories that\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" +"that arise trying to find them consistently across a wide variety of\n" +"platforms." +msgstr "" + +#: gnu/packages/perl.scm:2282 +msgid "" +"Perl extension for crawling directory trees and compiling\n" +"lists of files" +msgstr "" + +#: gnu/packages/perl.scm:2285 +msgid "" +"The File::List module crawls the directory tree starting at the\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" +"matching a regular expression." +msgstr "" + +#: gnu/packages/perl.scm:2304 +msgid "Remove files and directories in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2305 +msgid "" +"File::Remove::remove removes files and directories. It acts\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" +"files, it will not remove directories; this module remedies that. It a= lso\n" +"accepts wildcards, * and ?, as arguments for file names." +msgstr "" + +#: gnu/packages/perl.scm:2329 +msgid "Locate per-dist and per-module shared files" +msgstr "" + +#: gnu/packages/perl.scm:2330 +msgid "" +"The intent of File::ShareDir is to provide a companion to\n" +"Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" +"module to have access to a large amount of read-only data that is store= d on\n" +"the file-system at run-time. Once the files have been installed to the= \n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" +"the installation." +msgstr "" + +#: gnu/packages/perl.scm:2352 +msgid "Install shared files" +msgstr "" + +#: gnu/packages/perl.scm:2353 +msgid "" +"File::ShareDir::Install allows you to install read-only data\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" +"allows you to locate these files after installation." +msgstr "" + +#: gnu/packages/perl.scm:2372 +msgid "Reading/Writing/Modifying of complete files" +msgstr "" + +#: gnu/packages/perl.scm:2373 +msgid "" +"File::Slurp provides subroutines to read or write entire\n" +"files with a simple call. It also has a subroutine for reading the lis= t of\n" +"file names in a directory." +msgstr "" + +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 +msgid "Return name and handle of a temporary file safely" +msgstr "" + +#: gnu/packages/perl.scm:2413 +msgid "" +"File::Temp can be used to create and open temporary files in\n" +"a safe way." +msgstr "" + +#: gnu/packages/perl.scm:2430 +msgid "Portable implementation of the `which' utility" +msgstr "" + +#: gnu/packages/perl.scm:2432 +msgid "" +"File::Which was created to be able to get the paths to executable\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" +"shell." +msgstr "" + +#: gnu/packages/perl.scm:2459 +msgid "Getopt::Long, but simpler and more powerful" +msgstr "" + +#: gnu/packages/perl.scm:2460 +msgid "" +"Getopt::Long::Descriptive is yet another Getopt library.\n" +"It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" +"avoid making you think about its huge array of options. It also provid= es\n" +"usage (help) messages, data validation, and a few other useful features= ." +msgstr "" + +#: gnu/packages/perl.scm:2478 +msgid "Table-driven argument parsing for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2480 +msgid "" +"Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " +"vaguely inspired by John Ousterhout's Tk_ParseArgv." +msgstr "" + +#: gnu/packages/perl.scm:2500 +msgid "Merge arbitrarily deep hashes into a single hash" +msgstr "" + +#: gnu/packages/perl.scm:2501 +msgid "" +"Hash::Merge merges two arbitrarily deep hashes into a single\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" +"value conflicts. The hash is followed recursively, so that deeply nest= ed\n" +"hashes that are at the same level will be merged when the parent hashes= are\n" +"merged." +msgstr "" + +#: gnu/packages/perl.scm:2523 +msgid "Store multiple values per key" +msgstr "" + +#: gnu/packages/perl.scm:2524 +msgid "" +"Hash::MultiValue is an object (and a plain hash reference)\n" +"that may contain multiple values per key, inspired by MultiDict of WebO= b." +msgstr "" + +#: gnu/packages/perl.scm:2544 +msgid "Import packages into other packages" +msgstr "" + +#: gnu/packages/perl.scm:2545 +msgid "" +"Writing exporters is a pain. Some use Exporter, some use\n" +"Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" +"exporters don't provide a consistent API for this, and pragmas need to = have\n" +"their import method called directly, since they effect the current unit= of\n" +"compilation. Import::Into provides global methods to make this painles= s." +msgstr "" + +#: gnu/packages/perl.scm:2567 +msgid "Use modules in inc/ if newer than installed" +msgstr "" + +#: gnu/packages/perl.scm:2568 +msgid "" +"The inc::latest module helps bootstrap configure-time\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" +"inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." +msgstr "" + +#: gnu/packages/perl.scm:2587 +msgid "Utilities for interactive I/O" +msgstr "" + +#: gnu/packages/perl.scm:2588 +msgid "" +"This module provides three utility subroutines that make it\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" +"and busy()." +msgstr "" + +#: gnu/packages/perl.scm:2607 +msgid "Emulate file interface for in-core strings" +msgstr "" + +#: gnu/packages/perl.scm:2608 +msgid "" +"IO::String is an IO::File (and IO::Handle) compatible class\n" +"that reads or writes data from in-core strings." +msgstr "" + +#: gnu/packages/perl.scm:2626 +msgid "IO:: interface for reading/writing an array of lines" +msgstr "" + +#: gnu/packages/perl.scm:2627 +msgid "" +"This toolkit primarily provides modules for performing both\n" +"traditional and object-oriented i/o) on things *other* than normal\n" +"filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " +msgstr "" + +#: gnu/packages/perl.scm:2645 +msgid "Perl interface to pseudo ttys" +msgstr "" + +#: gnu/packages/perl.scm:2647 +msgid "" +"This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" +"pseudo ttys." +msgstr "" + +#: gnu/packages/perl.scm:2675 +msgid "Run system() and background procs w/ piping, redirs, ptys" +msgstr "" + +#: gnu/packages/perl.scm:2676 +msgid "" +"IPC::Run allows you run and interact with child processes\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" +"are supported and may be mixed. Likewise, functional and OO API styles= are\n" +"both supported and may be mixed." +msgstr "" + +#: gnu/packages/perl.scm:2694 +msgid "Run a subprocess with input/output redirection" +msgstr "" + +#: gnu/packages/perl.scm:2696 +msgid "" +"The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" +"99% of the need for using system, qx, and open3 with a simple, extremel= y\n" +"Perlish API and none of the bloat and rarely used features of IPC::Run.= " +msgstr "" + +#: gnu/packages/perl.scm:2720 +msgid "Lightweight interface to shared memory" +msgstr "" + +#: gnu/packages/perl.scm:2721 +msgid "" +"IPC::ShareLite provides a simple interface to shared memory,\n" +"allowing data to be efficiently communicated between processes." +msgstr "" + +#: gnu/packages/perl.scm:2741 +msgid "JSON encoder/decoder for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2742 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa using either JSON::XS or JSON::PP." +msgstr "" + +#: gnu/packages/perl.scm:2767 +msgid "Wrapper for Perl JSON classes" +msgstr "" + +#: gnu/packages/perl.scm:2769 +msgid "" +"This module tries to provide a coherent API to bring together the\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" +"any JSON API and have it work regardless of which JSON module is actual= ly\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:2793 +msgid "Cpanel::JSON::XS with fallback" +msgstr "" + +#: gnu/packages/perl.scm:2794 +msgid "" +"This module first checks to see if either Cpanel::JSON::XS\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" +"either uses the first module it finds or throws an error." +msgstr "" + +#: gnu/packages/perl.scm:2817 +msgid "JSON serialising/deserialising for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 +msgid "Combination of List::Util and List::MoreUtils" +msgstr "" + +#: gnu/packages/perl.scm:2890 +msgid "" +"This module exports all of the functions that either\n" +"List::Util or List::MoreUtils defines, with preference to List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2914 +msgid "Provide the stuff missing in List::Util" +msgstr "" + +#: gnu/packages/perl.scm:2915 +msgid "" +"List::MoreUtils provides some trivial but commonly needed\n" +"functionality on lists which is not going to go into List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2933 +msgid "Expiry plug-in for Memoize that adds LRU cache expiration" +msgstr "" + +#: gnu/packages/perl.scm:2934 +msgid "" +"This module implements an expiry policy for Memoize that\n" +"follows LRU semantics, that is, the last n results, where n is specifie= d as\n" +"the argument to the CACHESIZE parameter, will be cached." +msgstr "" + +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 +msgid "Definition of MIME types" +msgstr "" + +#: gnu/packages/perl.scm:2973 +msgid "" +"This module provides a list of known mime-types, combined\n" +"from various sources. For instance, it contains all IANA types and the= \n" +"knowledge of Apache." +msgstr "" + +#: gnu/packages/perl.scm:3002 +msgid "Tiny replacement for Module::Build" +msgstr "" + +#: gnu/packages/perl.scm:3003 +msgid "" +"Many Perl distributions use a Build.PL file instead of a\n" +"Makefile.PL file to drive distribution configuration, build, test and\n= " +"installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" +"build system. This module provides a simple, lightweight, drop-in\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" +"has less than 120, yet supports the features needed by most distributio= ns." +msgstr "" + +#: gnu/packages/perl.scm:3025 +msgid "Find and use installed modules in a (sub)category" +msgstr "" + +#: gnu/packages/perl.scm:3026 +msgid "" +"Module::Find lets you find and use modules in categories.\n" +"This can be useful for auto-detecting driver or plugin modules. You ca= n\n" +"differentiate between looking in the category itself or in all\n" +"subcategories." +msgstr "" + +#: gnu/packages/perl.scm:3052 +msgid "Loads alternate underlying implementations for a module" +msgstr "" + +#: gnu/packages/perl.scm:3053 +msgid "" +"This module abstracts out the process of choosing one of\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" +"implementations." +msgstr "" + +#: gnu/packages/perl.scm:3091 +msgid "Standalone, extensible Perl module installer" +msgstr "" + +#: gnu/packages/perl.scm:3092 +msgid "" +"Module::Install is a package for writing installers for\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" +"strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" +"installation version 5.005 or newer." +msgstr "" + +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 +msgid "Perl runtime module handling" +msgstr "" + +#: gnu/packages/perl.scm:3134 +msgid "" +"The functions exported by this module deal with runtime\n" +"handling of Perl modules, which are normally handled at compile time." +msgstr "" + +#: gnu/packages/perl.scm:3157 +msgid "Provide information on conflicts for Module::Runtime" +msgstr "" + +#: gnu/packages/perl.scm:3158 +msgid "" +"This module provides conflicts checking for Module::Runtime,\n" +"which had a recent release that broke some versions of Moose. It is ca= lled\n" +"from Moose::Conflicts and moose-outdated." +msgstr "" + +#: gnu/packages/perl.scm:3179 +msgid "Recursively scan Perl code for dependencies" +msgstr "" + +#: gnu/packages/perl.scm:3180 +msgid "" +"Module::ScanDeps is a module to recursively scan Perl\n" +"programs for dependencies." +msgstr "" + +#: gnu/packages/perl.scm:3200 +msgid "Module name tools and transformations" +msgstr "" + +#: gnu/packages/perl.scm:3201 +msgid "" +"This module provides a few useful functions for manipulating\n" +"module names. Its main aim is to centralise some of the functions comm= only\n" +"used by modules that manipulate other modules in some way, like convert= ing\n" +"module names to relative paths." +msgstr "" + +#: gnu/packages/perl.scm:3231 +msgid "Minimalist Object Orientation (with Moose compatibility)" +msgstr "" + +#: gnu/packages/perl.scm:3232 +msgid "" +"Moo is an extremely light-weight Object Orientation system.\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" +"that avoids the details of Perl's object system. Moo contains a subset= of\n" +"Moose and is optimised for rapid startup." +msgstr "" + +#: gnu/packages/perl.scm:3308 +msgid "Postmodern object system for Perl 5" +msgstr "" + +#: gnu/packages/perl.scm:3310 +msgid "" +"Moose is a complete object system for Perl 5. It provides keywords for= \n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" +"Moose, you define your class declaratively, without needing to know abo= ut\n" +"blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" +"A class definition with Moose reads like a list of very concise English= \n" +"sentences." +msgstr "" + +#: gnu/packages/perl.scm:3338 +msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" +msgstr "" + +#: gnu/packages/perl.scm:3339 +msgid "" +"This module attempts to emulate the behavior of\n" +"Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" +"private methods are not." +msgstr "" + +#: gnu/packages/perl.scm:3371 +msgid "Moose role for processing command line options" +msgstr "" + +#: gnu/packages/perl.scm:3372 +msgid "" +"This is a Moose role which provides an alternate constructor\n" +"for creating objects using parameters passed in from the command line." +msgstr "" + +#: gnu/packages/perl.scm:3393 +msgid "Mark overload code symbols as methods" +msgstr "" + +#: gnu/packages/perl.scm:3394 +msgid "" +"MooseX::MarkAsMethods allows one to easily mark certain\n" +"functions as Moose methods. This will allow other packages such as\n" +"namespace::autoclean to operate without blowing away your overloads. A= fter\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" +"being methods, and class extension as well as composition from roles wi= th\n" +"overloads will \"just work\"." +msgstr "" + +#: gnu/packages/perl.scm:3424 +msgid "Code attribute introspection" +msgstr "" + +#: gnu/packages/perl.scm:3425 +msgid "" +"This module allows code attributes of methods to be\n" +"introspected using Moose meta method objects." +msgstr "" + +#: gnu/packages/perl.scm:3451 +msgid "Subclassing of non-Moose classes" +msgstr "" + +#: gnu/packages/perl.scm:3452 +msgid "" +"MooseX::NonMoose allows for easily subclassing non-Moose\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" +"as setting up proper inheritance from Moose::Object and installing (and= \n" +"inlining, at make_immutable time) a constructor that makes sure things = like\n" +"BUILD methods are called. It tries to be as non-intrusive as possible.= " +msgstr "" + +#: gnu/packages/perl.scm:3481 +msgid "Extension of Params::Validate using Moose's types" +msgstr "" + +#: gnu/packages/perl.scm:3482 +msgid "" +"This module fills a gap in Moose by adding method parameter\n" +"validation to Moose." +msgstr "" + +#: gnu/packages/perl.scm:3503 +msgid "Apply roles to a related Perl class" +msgstr "" + +#: gnu/packages/perl.scm:3504 +msgid "" +"This module applies roles to make a subclass instead of\n" +"manually setting up a subclass." +msgstr "" + +#: gnu/packages/perl.scm:3531 +msgid "Moose roles with composition parameters" +msgstr "" + +#: gnu/packages/perl.scm:3532 +msgid "" +"Because Moose roles serve many different masters, they\n" +"usually provide only the least common denominator of functionality. To= \n" +"empower roles further, more configurability than -alias and -excludes i= s\n" +"required. Perhaps your role needs to know which method to call when it= is\n" +"done processing, or what default value to use for its url attribute.\n" +"Parameterized roles offer a solution to these (and other) kinds of prob= lems." +msgstr "" + +#: gnu/packages/perl.scm:3558 +msgid "Roles which support overloading" +msgstr "" + +#: gnu/packages/perl.scm:3559 +msgid "" +"MooseX::Role::WithOverloading allows you to write a\n" +"Moose::Role which defines overloaded operators and allows those overloa= d\n" +"methods to be composed into the classes/roles/instances it's compiled t= o,\n" +"where plain Moose::Roles would lose the overloading." +msgstr "" + +#: gnu/packages/perl.scm:3581 +msgid "Name your accessors foo() and set_foo()" +msgstr "" + +#: gnu/packages/perl.scm:3582 +msgid "" +"This module does not provide any methods. Simply loading it\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" +"accessor, while set methods are prefixed with \"_set_\"." +msgstr "" + +#: gnu/packages/perl.scm:3608 +msgid "Strict object constructors for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3609 +msgid "" +"Simply loading this module makes your constructors\n" +"\"strict\". If your constructor is called with an attribute init argum= ent\n" +"that your class does not declare, then it calls Moose->throw_error()." +msgstr "" + +#: gnu/packages/perl.scm:3637 +msgid "Trait loading and resolution for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3638 +msgid "" +"Adds support on top of MooseX::Traits for class precedence\n" +"search for traits and some extra attributes." +msgstr "" + +#: gnu/packages/perl.scm:3664 +msgid "Organise your Moose types in libraries" +msgstr "" + +#: gnu/packages/perl.scm:3665 +msgid "" +"This package lets you declare types using short names, but\n" +"behind the scenes it namespaces all your type declarations, effectively= \n" +"prevent name clashes between packages." +msgstr "" + +#: gnu/packages/perl.scm:3696 +msgid "DateTime related constraints and coercions for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3697 +msgid "" +"This module packages several Moose::Util::TypeConstraints\n" +"with coercions, designed to work with the DateTime suite of objects." +msgstr "" + +#: gnu/packages/perl.scm:3729 +msgid "Extensions to MooseX::Types::DateTime" +msgstr "" + +#: gnu/packages/perl.scm:3730 +msgid "" +"This module builds on MooseX::Types::DateTime to add\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" +"all coercions and constraints are inherited." +msgstr "" + +#: gnu/packages/perl.scm:3759 +msgid "ClassName type constraints for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3760 +msgid "" +"MooseX::Types::LoadableClass provides a ClassName type\n" +"constraint with coercion to load the class." +msgstr "" + +#: gnu/packages/perl.scm:3784 +msgid "Moosish types and type builder" +msgstr "" + +#: gnu/packages/perl.scm:3785 +msgid "" +"MooX::Types::MooseLike provides a possibility to build your\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" +"fields in Moo-based classes." +msgstr "" + +#: gnu/packages/perl.scm:3804 +msgid "MRO interface compatibility for Perls < 5.9.5" +msgstr "" + +#: gnu/packages/perl.scm:3805 +msgid "" +"The \"mro\" namespace provides several utilities for dealing\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" +"higher. This module provides those interfaces for earlier versions of\= n" +"Perl (back to 5.6.0)." +msgstr "" + +#: gnu/packages/perl.scm:3832 +msgid "Keep imports out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3833 +msgid "" +"The namespace::autoclean pragma will remove all imported\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" +"up as methods on your class or instances. It is very similar to\n" +"namespace::clean, except it will clean all imported functions, no matte= r if\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" +"anything that looks like a method." +msgstr "" + +#: gnu/packages/perl.scm:3859 +msgid "Keep imports and functions out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3860 +msgid "" +"The namespace::clean pragma will remove all previously\n" +"declared or imported symbols at the end of the current package's compil= e\n" +"cycle. Functions called in the package itself will still be bound by t= heir\n" +"name, but they won't show up as methods on your class or instances." +msgstr "" + +#: gnu/packages/perl.scm:3880 +msgid "Numeric comparisons" +msgstr "" + +#: gnu/packages/perl.scm:3881 +msgid "" +"Number::Compare compiles a simple comparison to an anonymous\n" +"subroutine, which you can call with a value to be tested against." +msgstr "" + +#: gnu/packages/perl.scm:3899 +msgid "Generate cryptographic signatures for objects" +msgstr "" + +#: gnu/packages/perl.scm:3900 +msgid "" +"Object::Signature is an abstract base class that you can\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" +"signatures." +msgstr "" + +#: gnu/packages/perl.scm:3922 +msgid "Anonymous packages" +msgstr "" + +#: gnu/packages/perl.scm:3923 +msgid "" +"This module allows for anonymous packages that are\n" +"independent of the main namespace and only available through an object\= n" +"instance, not by name." +msgstr "" + +#: gnu/packages/perl.scm:3951 +msgid "Manage deprecation warnings for your distribution" +msgstr "" + +#: gnu/packages/perl.scm:3952 +msgid "" +"This module allows you to manage a set of deprecations for\n" +"one or more modules." +msgstr "" + +#: gnu/packages/perl.scm:3979 +msgid "Routines for manipulating stashes" +msgstr "" + +#: gnu/packages/perl.scm:3980 +msgid "" +"Manipulating stashes (Perl's symbol tables) is occasionally\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" +"of that behind a simple API." +msgstr "" + +#: gnu/packages/perl.scm:4003 +msgid "Faster implementation of the Package::Stash API" +msgstr "" + +#: gnu/packages/perl.scm:4004 +msgid "" +"This is a backend for Package::Stash, which provides the\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" +"compiler." +msgstr "" + +#: gnu/packages/perl.scm:4024 +msgid "Play with other peoples' lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:4025 +msgid "" +"PadWalker is a module which allows you to inspect (and even\n" +"change) lexical variables in any subroutine which called you. It will = only\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" +"is particularly useful for debugging." +msgstr "" + +#: gnu/packages/perl.scm:4046 +msgid "Simple, compact and correct param-checking functions" +msgstr "" + +#: gnu/packages/perl.scm:4048 +msgid "" +"Params::Util provides a basic set of importable functions that makes\n" +"checking parameters easier." +msgstr "" + +#: gnu/packages/perl.scm:4072 +msgid "Validate method/function parameters" +msgstr "" + +#: gnu/packages/perl.scm:4073 +msgid "" +"The Params::Validate module allows you to validate method or\n" +"function call parameters to an arbitrary level of specificity." +msgstr "" + +#: gnu/packages/perl.scm:4091 +msgid "Create and manipulate PAR distributions" +msgstr "" + +#: gnu/packages/perl.scm:4092 +msgid "" +"PAR::Dist is a toolkit to create and manipulate PAR\n" +"distributions." +msgstr "" + +#: gnu/packages/perl.scm:4111 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time." +msgstr "" + +#: gnu/packages/perl.scm:4130 +msgid "Path specification manipulation" +msgstr "" + +#: gnu/packages/perl.scm:4131 +msgid "" +"Path::Class is a module for manipulation of file and\n" +"directory specifications in a cross-platform manner." +msgstr "" + +#: gnu/packages/perl.scm:4151 +msgid "Check for comprehensive documentation of a module" +msgstr "" + +#: gnu/packages/perl.scm:4152 +msgid "" +"This module provides a mechanism for determining if the pod\n" +"for a given module is comprehensive." +msgstr "" + +#: gnu/packages/perl.scm:4169 +msgid "Parsing library for text in Pod format" +msgstr "" + +#: gnu/packages/perl.scm:4170 +msgid "" +"Pod::Simple is a Perl library for parsing text in\n" +"the Pod (plain old documentation) markup language that is typically\n" +"used for writing documentation for Perl and for Perl modules." +msgstr "" + +#: gnu/packages/perl.scm:4191 +msgid "GNU C library compatible strftime for loggers and servers" +msgstr "" + +#: gnu/packages/perl.scm:4192 +msgid "" +"POSIX::strftime::Compiler provides GNU C library compatible\n" +"strftime(3). But this module is not affected by the system locale. Th= is\n" +"feature is useful when you want to write loggers, servers, and portable= \n" +"applications." +msgstr "" + +#: gnu/packages/perl.scm:4210 +msgid "Information about the currently running perl" +msgstr "" + +#: gnu/packages/perl.scm:4212 +msgid "" +"Probe::Perl provides methods for obtaining information about the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" +"Module::Build project, but has been externalized here for general use." +msgstr "" + +#: gnu/packages/perl.scm:4234 +msgid "Create read-only scalars, arrays, hashes" +msgstr "" + +#: gnu/packages/perl.scm:4235 +msgid "" +"This module provides a facility for creating non-modifiable\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" +"variables that should not be changed." +msgstr "" + +#: gnu/packages/perl.scm:4253 +msgid "Provide commonly requested regular expressions" +msgstr "" + +#: gnu/packages/perl.scm:4255 +msgid "" +"This module exports a single hash (`%RE') that stores or generates\n" +"commonly needed regular expressions. Patterns currently provided inclu= de:\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" +"floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" +"offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" +"codes." +msgstr "" + +#: gnu/packages/perl.scm:4285 +msgid "Roles, as a slice of Moose" +msgstr "" + +#: gnu/packages/perl.scm:4286 +msgid "Role::Tiny is a minimalist role composition tool." +msgstr "" + +#: gnu/packages/perl.scm:4303 +msgid "Call isa, can, does, and DOES safely" +msgstr "" + +#: gnu/packages/perl.scm:4304 +msgid "" +"This module allows you to call isa, can, does, and DOES\n" +"safely on things that may not be objects." +msgstr "" + +#: gnu/packages/perl.scm:4322 +msgid "Lexically-scoped resource management" +msgstr "" + +#: gnu/packages/perl.scm:4323 +msgid "" +"This module provides a convenient way to perform cleanup or\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" +"useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" +"\"promises\" to be made that are automatically honoured by perl's garba= ge\n" +"collector." +msgstr "" + +#: gnu/packages/perl.scm:4346 +msgid "Infinite sets" +msgstr "" + +#: gnu/packages/perl.scm:4347 +msgid "Set::Infinite is a set theory module for infinite sets." +msgstr "" + +#: gnu/packages/perl.scm:4367 +msgid "Unordered collections of Perl Objects" +msgstr "" + +#: gnu/packages/perl.scm:4368 +msgid "" +"Set::Object provides efficient sets, unordered collections\n" +"of Perl objects without duplicates for scalars and references." +msgstr "" + +#: gnu/packages/perl.scm:4386 +msgid "Set operations for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4387 +msgid "" +"The first priority of Set::Scalar is to be a convenient\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" +"designed to be slow or big, neither has it been designed to be fast or\= n" +"compact." +msgstr "" + +#: gnu/packages/perl.scm:4407 +msgid "Spiffy Perl Interface Framework For You" +msgstr "" + +#: gnu/packages/perl.scm:4408 +msgid "" +"Spiffy is a framework and methodology for doing object\n" +"oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" +"other OO languages like Python, Ruby, Java and Perl 6." +msgstr "" + +#: gnu/packages/perl.scm:4430 +msgid "Temporary buffer to save bytes" +msgstr "" + +#: gnu/packages/perl.scm:4431 +msgid "" +"Stream::Buffered is a buffer class to store arbitrary length\n" +"of byte strings and then get a seekable filehandle once everything is\n= " +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" +"on the length of the size." +msgstr "" + +#: gnu/packages/perl.scm:4451 +msgid "Turn on strict and make all warnings fatal" +msgstr "" + +#: gnu/packages/perl.scm:4452 +msgid "" +"Strictures turns on strict and make all warnings fatal when\n" +"run from within a source-controlled directory." +msgstr "" + +#: gnu/packages/perl.scm:4470 +msgid "Camelcase and de-camelcase" +msgstr "" + +#: gnu/packages/perl.scm:4471 +msgid "" +"This module may be used to convert from under_score text to\n" +"CamelCase and back again." +msgstr "" + +#: gnu/packages/perl.scm:4491 +msgid "Rewrite strings based on a set of known prefixes" +msgstr "" + +#: gnu/packages/perl.scm:4492 +msgid "" +"This module allows you to rewrite strings based on a set of\n" +"known prefixes." +msgstr "" + +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 +msgid "Sophisticated exporter for custom-built routines" +msgstr "" + +#: gnu/packages/perl.scm:4538 +msgid "" +"Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " +"custom-built routines." +msgstr "" + +#: gnu/packages/perl.scm:4557 +msgid "Only use Sub::Exporter if you need it" +msgstr "" + +#: gnu/packages/perl.scm:4558 +msgid "" +"Sub::Exporter is an incredibly powerful module, but with\n" +"that power comes great responsibility, as well as some runtime penaltie= s.\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" +"if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" +"renaming exports, if they try to use them." +msgstr "" + +#: gnu/packages/perl.scm:4580 +msgid "Retrieve names of code references" +msgstr "" + +#: gnu/packages/perl.scm:4581 +msgid "" +"Sub::Identify allows you to retrieve the real name of code\n" +"references." +msgstr "" + +#: gnu/packages/perl.scm:4600 +msgid "Install subroutines into packages easily" +msgstr "" + +#: gnu/packages/perl.scm:4602 +msgid "" +"Sub::Install makes it easy to install subroutines into packages without= \n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" +"can see them." +msgstr "" + +#: gnu/packages/perl.scm:4623 +msgid "(Re)name a sub" +msgstr "" + +#: gnu/packages/perl.scm:4624 +msgid "" +"Assigns a new name to referenced sub. If package\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" +"return value is the sub." +msgstr "" + +#: gnu/packages/perl.scm:4643 +msgid "Apparently run a function in a higher stack frame" +msgstr "" + +#: gnu/packages/perl.scm:4644 +msgid "" +"Like Tcl's uplevel() function, but not quite so dangerous.\n" +"The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" +"uplevel() are avoided." +msgstr "" + +#: gnu/packages/perl.scm:4663 +msgid "Perl extension for generating SVG documents" +msgstr "" + +#: gnu/packages/perl.scm:4664 +msgid "" +"SVG is a Perl module which generates a nested data structure\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" +"Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" +"access the DOM object, create and access Javascript, and generate SMIL\= n" +"animation content." +msgstr "" + +#: gnu/packages/perl.scm:4683 +msgid "Perl extension for getting CPU information" +msgstr "" + +#: gnu/packages/perl.scm:4685 +msgid "" +"In responce to a post on perlmonks.org, a module for counting the numbe= r\n" +"of CPU's on a system. Support has now also been added for type of CPU = and\n" +"clock speed." +msgstr "" + +#: gnu/packages/perl.scm:4707 +msgid "Get full hostname in Perl" +msgstr "" + +#: gnu/packages/perl.scm:4708 +msgid "" +"Sys::Hostname::Long tries very hard to get the full hostname\n" +"of a system." +msgstr "" + +#: gnu/packages/perl.scm:4726 +msgid "Ensure that a platform has weaken support" +msgstr "" + +#: gnu/packages/perl.scm:4727 +msgid "" +"One recurring problem in modules that use Scalar::Util's\n" +"weaken function is that it is not present in the pure-perl variant. If= \n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" +"error encouraging the user to seek support." +msgstr "" + +#: gnu/packages/perl.scm:4752 +msgid "Template processing system for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4753 +msgid "" +"The Template Toolkit is a collection of modules which\n" +"implement an extensible template processing system. It was originally\= n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" +"it can be used equally well for processing any other kind of text based= \n" +"documents: HTML, XML, POD, PostScript, LaTeX, and so on." +msgstr "" + +#: gnu/packages/perl.scm:4776 +msgid "Profiling for Template Toolkit" +msgstr "" + +#: gnu/packages/perl.scm:4777 +msgid "" +"Template::Timer provides inline profiling of the template\n" +"processing in Perl code." +msgstr "" + +#: gnu/packages/perl.scm:4795 +msgid "Detect encoding of the current terminal" +msgstr "" + +#: gnu/packages/perl.scm:4796 +msgid "" +"Term::Encoding is a simple module to detect the encoding of\n" +"the current terminal expects in various ways." +msgstr "" + +#: gnu/packages/perl.scm:4820 +msgid "Progress meter on a standard terminal" +msgstr "" + +#: gnu/packages/perl.scm:4821 +msgid "" +"Term::ProgressBar provides a simple progress bar on the\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" +"stuff has been done, and maybe an estimate at how long remains." +msgstr "" + +#: gnu/packages/perl.scm:4844 +msgid "Progress meter if run interactively" +msgstr "" + +#: gnu/packages/perl.scm:4845 +msgid "" +"Term::ProgressBar is a wonderful module for showing progress\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" +"a cron job) then it does not show the progress bar." +msgstr "" + +#: gnu/packages/perl.scm:4867 +msgid "Simple progress bars" +msgstr "" + +#: gnu/packages/perl.scm:4868 +msgid "" +"Term::ProgressBar::Simple tells you how much work has been\n" +"done, how much is left to do, and estimate how long it will take." +msgstr "" + +#: gnu/packages/perl.scm:4886 +msgid "Simple terminal control" +msgstr "" + +#: gnu/packages/perl.scm:4887 +msgid "" +"This module, ReadKey, provides ioctl control for terminals\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" +"other terminal related features, including retrieval/modification of th= e\n" +"screen size, and retrieval/modification of the control characters." +msgstr "" + +#: gnu/packages/perl.scm:4914 +msgid "Data-driven testing framework for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4915 +msgid "" +"Test::Base gives a way to trivially write your own test\n" +"framework base class. It concentrates on offering reusable data driven= \n" +"patterns, so that you can write tests with a minimum of code." +msgstr "" + +#: gnu/packages/perl.scm:4946 +msgid "Check for uncleaned imports" +msgstr "" + +#: gnu/packages/perl.scm:4947 +msgid "" +"This module lets you check your module's namespaces for\n" +"imported functions you might have forgotten to remove with\n" +"namespace::autoclean or namespace::clean and are therefore available to= be\n" +"called as methods, which usually isn't want you want." +msgstr "" + +#: gnu/packages/perl.scm:4967 +msgid "Flexible deep comparison for the Test::Builder framework" +msgstr "" + +#: gnu/packages/perl.scm:4969 +msgid "" +"Test::Deep compares two structures by going through each level, ensurin= g\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" +"structures without getting caught in an infinite loop." +msgstr "" + +#: gnu/packages/perl.scm:4996 +msgid "Test strings and data structures and show differences" +msgstr "" + +#: gnu/packages/perl.scm:4997 +msgid "" +"This module exports three test functions and four diff-style\n" +"functions." +msgstr "" + +#: gnu/packages/perl.scm:5018 +msgid "Perl extension for maintaining test directories" +msgstr "" + +#: gnu/packages/perl.scm:5019 +msgid "" +"Testing code can involve making sure that files are created\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" +"to forget a file, or miss that some unexpected file was added. This mo= dule\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" +"modified or tested with this API, making it simple to test both individ= ual\n" +"files, as well as to verify that there are no missing or unknown files.= " +msgstr "" + +#: gnu/packages/perl.scm:5045 +msgid "Test exception based code" +msgstr "" + +#: gnu/packages/perl.scm:5046 +msgid "" +"This module provides a few convenience methods for testing\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" +"Test::More and friends." +msgstr "" + +#: gnu/packages/perl.scm:5066 +msgid "Simple helpers for testing code with exceptions" +msgstr "" + +#: gnu/packages/perl.scm:5067 +msgid "" +"Test::Fatal is an alternative to the popular\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" +"testing exception-throwing code with about the same amount of typing." +msgstr "" + +#: gnu/packages/perl.scm:5097 +msgid "Run Perl standard test scripts with statistics" +msgstr "" + +#: gnu/packages/perl.scm:5098 +msgid "" +"Simple test harness which allows tests to be run and results\n" +"automatically aggregated and output to STDOUT." +msgstr "" + +#: gnu/packages/perl.scm:5116 +msgid "Traces memory leaks in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5117 +msgid "" +"Test::LeakTrace provides several functions that trace memory\n" +"leaks. This module scans arenas, the memory allocation system, so it c= an\n" +"detect any leaked SVs in given blocks." +msgstr "" + +#: gnu/packages/perl.scm:5136 +msgid "Tests strings for equality, with more helpful failures" +msgstr "" + +#: gnu/packages/perl.scm:5137 +msgid "" +"This module provides some drop-in replacements for the\n" +"string comparison functions of Test::More, but which are more suitable = when\n" +"you test against long strings." +msgstr "" + +#: gnu/packages/perl.scm:5165 +msgid "Emulate troublesome interfaces in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5166 +msgid "" +"Test::MockObject allows you to create objects that conform\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" +"the behavior, just the input and the output." +msgstr "" + +#: gnu/packages/perl.scm:5185 +msgid "Replaces actual time with simulated time" +msgstr "" + +#: gnu/packages/perl.scm:5186 +msgid "" +"This module was created to enable test suites to test code\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" +"time at compile time and then relies on the user supplying a mock time = via\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" +"to gmtime,time or localtime." +msgstr "" + +#: gnu/packages/perl.scm:5213 +msgid "Most commonly needed test functions and features" +msgstr "" + +#: gnu/packages/perl.scm:5214 +msgid "" +"This module provides the most commonly used testing\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" +"bit more fine-grained control over test suites." +msgstr "" + +#: gnu/packages/perl.scm:5232 +msgid "Ensure no warnings are produced while testing" +msgstr "" + +#: gnu/packages/perl.scm:5234 +msgid "" +"This modules causes any warnings during testing to be captured and\n" +"stored. It automatically adds an extra test that will run when your sc= ript\n" +"ends to check that there were no warnings. If there were any warnings,= the\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" +"including a stack trace of what was going on when it occurred." +msgstr "" + +#: gnu/packages/perl.scm:5259 +msgid "Utilities to test STDOUT and STDERR messages" +msgstr "" + +#: gnu/packages/perl.scm:5261 +msgid "" +"Test::Output provides a simple interface for testing output sent to\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" +"as flexible as possible to the tester." +msgstr "" + +#: gnu/packages/perl.scm:5283 +msgid "Check for POD errors in files" +msgstr "" + +#: gnu/packages/perl.scm:5284 +msgid "" +"Check POD files for errors or warnings in a test file, using\n" +"Pod::Simple to do the heavy lifting." +msgstr "" + +#: gnu/packages/perl.scm:5304 +msgid "Check for pod coverage" +msgstr "" + +#: gnu/packages/perl.scm:5305 +msgid "" +"This module adds a test to your Perl distribution which\n" +"checks for pod coverage of all appropriate files." +msgstr "" + +#: gnu/packages/perl.scm:5323 +msgid "Checks to see if the module can be loaded" +msgstr "" + +#: gnu/packages/perl.scm:5324 +msgid "" +"Test::Requires checks to see if the module can be loaded.\n" +"If this fails, then rather than failing tests this skips all tests." +msgstr "" + +#: gnu/packages/perl.scm:5343 +msgid "Basic cross-platform tests for scripts" +msgstr "" + +#: gnu/packages/perl.scm:5345 +msgid "" +"The intent of the Test::Script module is to provide a series of basic\n= " +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" +"bin as is also commonly used) paths of your Perl distribution." +msgstr "" + +#: gnu/packages/perl.scm:5368 +msgid "Fork test in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5369 +msgid "" +"Test::SharedFork is a utility module for Test::Builder. It\n" +"makes fork(2) safe to use in test cases." +msgstr "" + +#: gnu/packages/perl.scm:5385 +msgid "Basic utilities for writing tests" +msgstr "" + +#: gnu/packages/perl.scm:5387 +msgid "Test::Simple contains basic utilities for writing tests." +msgstr "" + +#: gnu/packages/perl.scm:5404 +msgid "Simplify running Test::Builder tests" +msgstr "" + +#: gnu/packages/perl.scm:5406 +msgid "" +"Test::Tester allows testing of test modules based on Test::Builder with= \n" +"a minimum of effort." +msgstr "" + +#: gnu/packages/perl.scm:5432 +msgid "Trap exit codes, exceptions, output, etc." +msgstr "" + +#: gnu/packages/perl.scm:5433 +msgid "" +"This module is primarily (but not exclusively) for use in\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" +"from boxed blocks of test code." +msgstr "" + +#: gnu/packages/perl.scm:5453 +msgid "UTF-8 testing in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5454 +msgid "" +"This module is a collection of tests useful for dealing with\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" +"will check that string has a given set of characteristics." +msgstr "" + +#: gnu/packages/perl.scm:5476 +msgid "Perl extension to test methods for warnings" +msgstr "" + +#: gnu/packages/perl.scm:5477 +msgid "" +"This module provides a few convenience methods for testing\n" +"warning based code." +msgstr "" + +#: gnu/packages/perl.scm:5495 +msgid "Test for warnings and the lack of them" +msgstr "" + +#: gnu/packages/perl.scm:5496 +msgid "" +"This module is intended to be used as a drop-in replacement\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" +"done_testing calculates the test count, rather than after. It does thi= s by\n" +"hooking into done_testing as well as via an END block. You can declare= a\n" +"plan, or not, and things will still Just Work." +msgstr "" + +#: gnu/packages/perl.scm:5517 +msgid "Test fallback behaviour in absence of modules" +msgstr "" + +#: gnu/packages/perl.scm:5518 +msgid "" +"This module allows you to deliberately hide modules from a\n" +"program even though they are installed. This is mostly useful for test= ing\n" +"modules that have a fallback when a certain dependency module is not\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:5545 +msgid "Dynamic generation of tests" +msgstr "" + +#: gnu/packages/perl.scm:5546 +msgid "" +"The Test::WriteVariants module provides for the dynamic\n" +"generation of tests in nested combinations of contexts." +msgstr "" + +#: gnu/packages/perl.scm:5566 +msgid "Testing module for YAML implementations" +msgstr "" + +#: gnu/packages/perl.scm:5567 +msgid "" +"Test::YAML is a subclass of Test::Base with YAML specific\n" +"support." +msgstr "" + +#: gnu/packages/perl.scm:5586 +msgid "Align text" +msgstr "" + +#: gnu/packages/perl.scm:5587 +msgid "" +"Text::Aligner exports a single function, align(), which is\n" +"used to justify strings to various alignment styles." +msgstr "" + +#: gnu/packages/perl.scm:5605 +msgid "Extract delimited text sequences from strings" +msgstr "" + +#: gnu/packages/perl.scm:5606 +msgid "" +"The Text::Balanced module can be used to extract delimited\n" +"text sequences from strings." +msgstr "" + +#: gnu/packages/perl.scm:5624 +msgid "Manipulate comma-separated values" +msgstr "" + +#: gnu/packages/perl.scm:5625 +msgid "" +"Text::CSV provides facilities for the composition and\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" +"can combine fields into a CSV string and parse a CSV string into fields= ." +msgstr "" + +#: gnu/packages/perl.scm:5646 +msgid "Perform diffs on files and record sets" +msgstr "" + +#: gnu/packages/perl.scm:5647 +msgid "" +"Text::Diff provides a basic set of services akin to the GNU\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" +"is better integrated with Perl and available on all platforms. It is o= ften\n" +"faster than shelling out to a system's diff executable for small files,= and\n" +"generally slower on larger files." +msgstr "" + +#: gnu/packages/perl.scm:5669 +msgid "Match globbing patterns against text" +msgstr "" + +#: gnu/packages/perl.scm:5670 +msgid "" +"Text::Glob implements glob(3) style matching that can be\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" +"you want to do full file globbing use the File::Glob module instead." +msgstr "" + +#: gnu/packages/perl.scm:5689 +msgid "Simple ASCII tables" +msgstr "" + +#: gnu/packages/perl.scm:5690 +msgid "Text::SimpleTable draws simple ASCII tables." +msgstr "" + +#: gnu/packages/perl.scm:5711 +msgid "Organize Data in Tables" +msgstr "" + +#: gnu/packages/perl.scm:5712 +msgid "Text::Table renders plaintext tables." +msgstr "" + +#: gnu/packages/perl.scm:5729 +msgid "Provide plain ASCII transliterations of Unicode text" +msgstr "" + +#: gnu/packages/perl.scm:5730 +msgid "" +"Text::Unidecode provides a function, unidecode(...) that\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" +"is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" +"letters, the pronunciation expressed by the text in some other writing\= n" +"system." +msgstr "" + +#: gnu/packages/perl.scm:5758 +msgid "Role for classes that can be thrown" +msgstr "" + +#: gnu/packages/perl.scm:5759 +msgid "" +"Throwable is a role for classes that are meant to be thrown\n" +"as exceptions to standard program flow." +msgstr "" + +#: gnu/packages/perl.scm:5778 +msgid "Ordered associative arrays for Perl" +msgstr "" + +#: gnu/packages/perl.scm:5779 +msgid "" +"This Perl module implements Perl hashes that preserve the\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" +"can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" +"operations can also be performed on the IxHash." +msgstr "" + +#: gnu/packages/perl.scm:5802 +msgid "Tie to an existing Perl object" +msgstr "" + +#: gnu/packages/perl.scm:5803 +msgid "" +"This class provides a tie constructor that returns the\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" +"$object->TIEHASH are avoided." +msgstr "" + +#: gnu/packages/perl.scm:5825 +msgid "English expression of durations" +msgstr "" + +#: gnu/packages/perl.scm:5826 +msgid "" +"This module provides functions for expressing durations in\n" +"rounded or exact terms." +msgstr "" + +#: gnu/packages/perl.scm:5848 +msgid "Parse time duration strings" +msgstr "" + +#: gnu/packages/perl.scm:5849 +msgid "" +"Time::Duration::Parse is a module to parse human readable\n" +"duration strings like \"2 minutes\" and \"3 seconds\" to seconds." +msgstr "" + +#: gnu/packages/perl.scm:5867 +msgid "Efficiently compute time from local and GMT time" +msgstr "" + +#: gnu/packages/perl.scm:5868 +msgid "" +"This module provides functions that are the inverse of\n" +"built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" +"the system epoch." +msgstr "" + +#: gnu/packages/perl.scm:5888 +msgid "Date parsing/formatting subroutines" +msgstr "" + +#: gnu/packages/perl.scm:5889 +msgid "" +"This module provides routines for parsing date string into\n" +"time values and formatting dates into ASCII strings." +msgstr "" + +#: gnu/packages/perl.scm:5911 +msgid "Shift and scale time" +msgstr "" + +#: gnu/packages/perl.scm:5912 +msgid "" +"This module allows you to speed up your sleep(), alarm(),\n" +"and time() calls." +msgstr "" + +#: gnu/packages/perl.scm:5935 +msgid "Simple tree object" +msgstr "" + +#: gnu/packages/perl.scm:5936 +msgid "" +"This module in a fully object-oriented implementation of a\n" +"simple n-ary tree." +msgstr "" + +#: gnu/packages/perl.scm:5960 +msgid "Factory object for dispensing Visitor objects" +msgstr "" + +#: gnu/packages/perl.scm:5961 +msgid "" +"This module is a factory for dispensing\n" +"Tree::Simple::Visitor::* objects." +msgstr "" + +#: gnu/packages/perl.scm:5979 +msgid "Minimal try/catch with proper preservation of $@" +msgstr "" + +#: gnu/packages/perl.scm:5980 +msgid "" +"This module provides bare bones try/catch/finally statements\n" +"that are designed to minimize common mistakes with eval blocks, and not= hing\n" +"else." +msgstr "" + +#: gnu/packages/perl.scm:6001 +msgid "Data types for common serialisation formats" +msgstr "" + +#: gnu/packages/perl.scm:6002 +msgid "" +"This module provides some extra datatypes that are used by\n" +"common serialisation formats such as JSON or CBOR." +msgstr "" + +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 +msgid "UNIVERSAL::can() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6043 +msgid "" +"This module attempts to work around people calling\n" +"UNIVERSAL::can() as a function, which it is not." +msgstr "" + +#: gnu/packages/perl.scm:6063 +msgid "UNIVERSAL::isa() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6064 +msgid "" +"This module attempts to recover from people calling\n" +"UNIVERSAL::isa as a function." +msgstr "" + +#: gnu/packages/perl.scm:6082 +msgid "Associate user-defined magic to variables from Perl" +msgstr "" + +#: gnu/packages/perl.scm:6083 +msgid "" +"Magic is Perl's way of enhancing variables. This mechanism\n" +"lets the user add extra data to any variable and hook syntactical\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" +"it. With this module, you can add your own magic to any variable witho= ut\n" +"having to write a single line of XS." +msgstr "" + +#: gnu/packages/perl.scm:6106 +msgid "YAML for Perl" +msgstr "" + +#: gnu/packages/perl.scm:6107 +msgid "" +"The YAML.pm module implements a YAML Loader and Dumper based\n" +"on the YAML 1.0 specification." +msgstr "" + +#: gnu/packages/perl.scm:6130 +msgid "Read/Write YAML files" +msgstr "" + +#: gnu/packages/perl.scm:6131 +msgid "" +"YAML::Tiny is a perl class for reading and writing\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" +"and memory overhead." +msgstr "" + +#: gnu/packages/perl.scm:6158 +msgid "Distribution metadata for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6159 +msgid "" +"Software distributions released to the CPAN include a\n" +"META.json or, for older distributions, META.yml, which describes the\n" +"distribution, its contents, and the requirements for building and " +"installing\n" +"the distribution. The data structure stored in the META.json file is\n= " +"described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " +"represent this distribution metadata (or distmeta), along with some hel= pful\n" +"methods for interrogating that data." +msgstr "" + +#: gnu/packages/perl.scm:6182 +msgid "Set of version requirements for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6183 +msgid "" +"A CPAN::Meta::Requirements object models a set of version\n" +"constraints like those specified in the META.yml or META.json files in = CPAN\n" +"distributions, and as defined by CPAN::Meta::Spec. It can be built up = by\n" +"adding more and more constraints, and will reduce them to the simplest\= n" +"representation." +msgstr "" + +#: gnu/packages/perl.scm:6206 +msgid "Read and write a subset of YAML for CPAN Meta files" +msgstr "" + +#: gnu/packages/perl.scm:6207 +msgid "" +"This module implements a subset of the YAML specification\n" +"for use in reading and writing CPAN metadata files like META.yml and\n" +"MYMETA.yml." +msgstr "" + +#: gnu/packages/perl.scm:6228 +msgid "Build and install Perl modules" +msgstr "" + +#: gnu/packages/perl.scm:6229 +msgid "" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" +"through subclassing in a much more straightforward way than with\n" +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." +msgstr "" + +#: gnu/packages/perl.scm:6254 +msgid "Parse META.yml and META.json CPAN metadata files" +msgstr "" + +#: gnu/packages/perl.scm:6255 +msgid "" +"Parse::CPAN::Meta is a parser for META.json and META.yml\n" +"files, using JSON::PP and/or CPAN::Meta::YAML." +msgstr "" + +#: gnu/packages/perl.scm:6273 +msgid "Common Scalar and List utility subroutines" +msgstr "" + +#: gnu/packages/perl.scm:6274 +msgid "" +"This package contains a selection of subroutines that people\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" +"such that being individual extensions would be wasteful." +msgstr "" + +#: gnu/packages/photo.scm:61 +msgid "Raw image decoder" +msgstr "" + +#: gnu/packages/photo.scm:63 +msgid "" +"LibRaw is a library for reading RAW files obtained from digital photo\n= " +"cameras (CRW/CR2, NEF, RAF, DNG, and others)." +msgstr "" + +#: gnu/packages/photo.scm:80 +msgid "Read and manipulate EXIF data in digital photographs" +msgstr "" + +#: gnu/packages/photo.scm:82 +msgid "" +"The libexif C library allows applications to read, edit, and save EXIF\= n" +"data as produced by digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:107 +msgid "Accessing digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:109 +msgid "" +"This is the library backend for gphoto2. It contains the code for PTP,= \n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" +"from digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:150 +msgid "Command-line tools to access digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:152 +msgid "" +"Gphoto2 is a set of command line utilities for manipulating a large\n" +"number of different digital cameras. Through libgphoto2, it supports P= TP,\n" +"MTP, and much more." +msgstr "" + +#: gnu/packages/photo.scm:186 +msgid "Program and Perl library to manipulate EXIF tags" +msgstr "" + +#: gnu/packages/photo.scm:188 +msgid "" +"This package provides the 'exiftool' command and the 'Image::ExifTool'\= n" +"Perl library to manipulate EXIF tags of digital images." +msgstr "" + +#: gnu/packages/photo.scm:211 +msgid "Library for panoramic images" +msgstr "" + +#: gnu/packages/photo.scm:213 +msgid "" +"The libpano13 package contains the backend library written by the\n" +"Panorama Tools project for building panoramic images from a set of\n" +"overlapping images, as well as some command line tools." +msgstr "" + +#: gnu/packages/photo.scm:255 +msgid "Tools for combining and blending images" +msgstr "" + +#: gnu/packages/photo.scm:257 +msgid "" +"Enblend blends away the seams in a panoramic image mosaic using a\n" +"multi-resolution spline. Enfuse merges different exposures of the same= \n" +"scene to produce an image that looks much like a tone-mapped image." +msgstr "" + +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" +msgstr "" + +#: gnu/packages/qemu.scm:153 +msgid "" +"QEMU is a generic machine emulator and virtualizer.\n" +"\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" +"machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" +"using dynamic translation, it achieves very good performance.\n" +"\n" +"When used as a virtualizer, QEMU achieves near native performances by\n= " +"executing the guest code directly on the host CPU. QEMU supports\n" +"virtualization when executing under the Xen hypervisor or using\n" +"the KVM kernel module in Linux. When using KVM, QEMU can virtualize x8= 6,\n" +"server and embedded PowerPC, and S390 guests." +msgstr "" + +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" +msgstr "" + +#: gnu/packages/ratpoison.scm:85 +msgid "Simple mouse-free tiling window manager" +msgstr "" + +#: gnu/packages/ratpoison.scm:87 +msgid "" +"Ratpoison is a simple window manager with no fat library\n" +"dependencies, no fancy graphics, no window decorations, and no\n" +"rodent dependence. It is largely modelled after GNU Screen which\n" +"has done wonders in the virtual terminal market.\n" +"\n" +"The screen can be split into non-overlapping frames. All windows\n" +"are kept maximized inside their frames to take full advantage of\n" +"your precious screen real estate.\n" +"\n" +"All interaction with the window manager is done through keystrokes.\n" +"Ratpoison has a prefix map to minimize the key clobbering that\n" +"cripples Emacs and other quality pieces of software." +msgstr "" + +#: gnu/packages/readline.scm:68 +msgid "Edit command lines while typing, with history support" +msgstr "" + +#: gnu/packages/readline.scm:70 +msgid "" +"The GNU readline library allows users to edit command lines as they\n" +"are typed in. It can maintain a searchable history of previously enter= ed\n" +"commands, letting you easily recall, edit and re-enter past commands. = It\n" +"features both Emacs-like and vi-like keybindings, making its usage\n" +"comfortable for anyone." +msgstr "" + +#: gnu/packages/scanner.scm:70 +msgid "Raster image scanner library and drivers" +msgstr "" + +#: gnu/packages/scanner.scm:71 +msgid "" +"SANE stands for \"Scanner Access Now Easy\" and is an API\n" +"proving access to any raster image scanner hardware (flatbed scanner,\n= " +"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" +"package contains the library and drivers." +msgstr "" + +#: gnu/packages/scheme.scm:169 +#, fuzzy +msgid "A Scheme implementation with integrated editor and debugger" +msgstr "=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0 =D1=88=D0=B5=D0=BC=D0= =B5 =D0=BD=D0=B0=D1=80=D0=BE=D1=87=D0=B8=D1=82=D0=BE =D0=BE=D1=81=D0=BC=D0= =B8=D1=88=D1=99=D0=B5=D0=BD=D0=B0 =D0=B7=D0=B0 =D0=BF=D1=80=D0=BE=D1=88=D0= =B8=D1=80=D0=B5=D1=9A=D0=B0" + +#: gnu/packages/scheme.scm:171 +msgid "" +"GNU/MIT Scheme is an implementation of the Scheme programming\n" +"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" +"features an integrated Emacs-like editor and a large runtime library." +msgstr "" + +#: gnu/packages/scheme.scm:254 +msgid "Efficient Scheme compiler" +msgstr "" + +#: gnu/packages/scheme.scm:256 +msgid "" +"Bigloo is a Scheme implementation devoted to one goal: enabling\n" +"Scheme based programming style where C(++) is usually\n" +"required. Bigloo attempts to make Scheme practical by offering\n" +"features usually presented by traditional programming languages\n" +"but not offered by Scheme and functional programming. Bigloo\n" +"compiles Scheme modules. It delivers small and fast stand alone\n" +"binary executables. Bigloo enables full connections between\n" +"Scheme and C programs and between Scheme and Java programs." +msgstr "" + +#: gnu/packages/scheme.scm:300 +msgid "Multi-tier programming language for the Web 2.0" +msgstr "" + +#: gnu/packages/scheme.scm:302 +msgid "" +"HOP is a multi-tier programming language for the Web 2.0 and the\n" +"so-called diffuse Web. It is designed for programming interactive web\= n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" +"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" +"mashups, office (web agendas, mail clients, ...), etc." +msgstr "" + +#: gnu/packages/scheme.scm:342 +msgid "R5RS Scheme implementation that compiles native code via C" +msgstr "" + +#: gnu/packages/scheme.scm:344 +msgid "" +"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" +"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" +"language standard, and includes many enhancements and extensions." +msgstr "" + +#: gnu/packages/scheme.scm:363 +#, fuzzy +msgid "Scheme implementation using a bytecode interpreter" +msgstr "=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B0 =D1=88=D0=B5=D0=BC=D0= =B5 =D0=BD=D0=B0=D1=80=D0=BE=D1=87=D0=B8=D1=82=D0=BE =D0=BE=D1=81=D0=BC=D0= =B8=D1=88=D1=99=D0=B5=D0=BD=D0=B0 =D0=B7=D0=B0 =D0=BF=D1=80=D0=BE=D1=88=D0= =B8=D1=80=D0=B5=D1=9A=D0=B0" + +#: gnu/packages/scheme.scm:365 +msgid "" +"Scheme 48 is an implementation of Scheme based on a byte-code\n" +"interpreter and is designed to be used as a testbed for experiments in\= n" +"implementation techniques and as an expository tool." +msgstr "" + +#: gnu/packages/scheme.scm:441 +msgid "Implementation of Scheme and related languages" +msgstr "" + +#: gnu/packages/scheme.scm:443 +msgid "" +"Racket is an implementation of the Scheme programming language (R5RS an= d\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" +"of libraries." +msgstr "" + +#: gnu/packages/scheme.scm:481 +msgid "Efficient Scheme interpreter and compiler" +msgstr "" + +#: gnu/packages/scheme.scm:483 +msgid "" +"Gambit consists of two main programs: gsi, the Gambit Scheme\n" +"interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" +"the complete execution and debugging environment. The compiler is the\= n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" +"loaded at run time. Interpreted code and compiled code can be freely\n= " +"mixed." +msgstr "" + +#: gnu/packages/scheme.scm:520 +msgid "Small embeddable Scheme implementation" +msgstr "" + +#: gnu/packages/scheme.scm:522 +msgid "" +"Chibi-Scheme is a very small library with no external dependencies\n" +"intended for use as an extension and scripting language in C programs. = In\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" +"threads." +msgstr "" + +#: gnu/packages/scheme.scm:699 +msgid "Scmutils library for MIT Scheme" +msgstr "" + +#: gnu/packages/scheme.scm:700 +msgid "" +"The Scmutils system is an integrated library of\n" +"procedures, embedded in the programming language Scheme, and intended t= o\n" +"support teaching and research in mathematical physics and electrical\n" +"engineering." +msgstr "" + +#: gnu/packages/search.scm:52 +msgid "Search Engine Library" +msgstr "" + +#: gnu/packages/search.scm:54 +msgid "" +"Xapian is a highly adaptable toolkit which allows developers to easily\= n" +"add advanced indexing and search facilities to their own applications. = It\n" +"supports the Probabilistic Information Retrieval model and also support= s a\n" +"rich set of boolean query operators." +msgstr "" + +#: gnu/packages/search.scm:97 +msgid "Tool for Obsessive Compulsive Classifiers" +msgstr "" + +#: gnu/packages/search.scm:99 +msgid "" +"libtocc is the engine of the Tocc project, a tag-based file management\= n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" +"that is more flexible than classic file systems that are based on a tre= e of\n" +"files and directories." +msgstr "" + +#: gnu/packages/search.scm:121 +msgid "Command-line interface to libtocc" +msgstr "" + +#: gnu/packages/search.scm:123 +msgid "" +"Tocc is a tag-based file management system. This package contains the\= n" +"command line tool for interacting with libtocc." +msgstr "" + +#: gnu/packages/search.scm:141 +msgid "Finding text and HTML files that match boolean expressions" +msgstr "" + +#: gnu/packages/search.scm:143 +msgid "" +"GNU Bool is a utility to perform text searches on files using Boolean\n= " +"expressions. For example, a search for \"hello AND world\" would retur= n a\n" +"file containing the phrase \"Hello, world!\". It supports both AND and= OR\n" +"statements, as well as the NEAR statement to search for the occurrence = of\n" +"words in close proximity to each other. It handles context gracefully,= \n" +"accounting for new lines and paragraph changes. It also has robust sup= port\n" +"for parsing HTML files." +msgstr "" + +#: gnu/packages/serveez.scm:51 +msgid "Framework for implementing IP-based servers" +msgstr "" + +#: gnu/packages/serveez.scm:53 +msgid "" +"GNU Serveez is a server framework providing the routines necessary to\n= " +"easily implement IP-based servers in your application. It\n" +"demonstrates aspects of network programming in a portable manner,\n" +"making it convenient for both simplifying the process of adding a\n" +"server to your application or for learning about how network services\n= " +"work. Several example servers are provided already, such as an HTTP\n" +"server and an IRC server." +msgstr "" + +#: gnu/packages/telephony.scm:52 +msgid "(u)Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:53 +msgid "" +"GNU Common C++ is an portable, optimized class framework for\n" +"threaded applications, supporting concurrent synchronization, inter-pro= cess\n" +"communications via sockets, and various methods for data handling, such= as\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" +"reimplementation." +msgstr "" + +#: gnu/packages/telephony.scm:73 +msgid "Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:74 +msgid "" +"GNU uCommon C++ is meant as a very light-weight C++ library\n" +"to facilitate using C++ design patterns even for very deeply embedded\n= " +"applications, such as for systems using uclibc along with posix threadi= ng\n" +"support." +msgstr "" + +#: gnu/packages/telephony.scm:95 +msgid "Implementation of RTP (real-time transport protocol)" +msgstr "" + +#: gnu/packages/telephony.scm:96 +msgid "" +"GNU ccRTP is an implementation of RTP, the real-time transport\n" +"protocol from the IETF. It is suitable both for high capacity servers = and\n" +"personal client applications. It is flexible in its design, allowing i= t to\n" +"function as a framework for the framework, rather than just being a\n" +"packet-manipulation library." +msgstr "" + +#: gnu/packages/telephony.scm:116 +msgid "Library implementing SIP (RFC-3261)" +msgstr "" + +#: gnu/packages/telephony.scm:117 +msgid "" +"GNU oSIP is an implementation of the SIP protocol. It is\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" +"to initiate and control SIP sessions." +msgstr "" + +#: gnu/packages/telephony.scm:137 +msgid "Sip abstraction library" +msgstr "" + +#: gnu/packages/telephony.scm:138 +msgid "" +"EXosip is a library that hides the complexity of using the\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" +"be used by VoIP telephony applications (endpoints or conference server)= but\n" +"might be also useful for any application that wish to establish session= s " +"like\n" +"multiplayer games." +msgstr "" + +#: gnu/packages/telephony.scm:181 +msgid "Secure peer-to-peer VoIP server for the SIP protocol" +msgstr "" + +#: gnu/packages/telephony.scm:182 +msgid "" +"GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" +"uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" +"there is no central point for media intercept or capture and thus it ca= n be\n" +"used to construct a secure telephone system that operates over the publ= ic\n" +"internet." +msgstr "" + +#: gnu/packages/telephony.scm:207 +msgid "Secure RTP (SRTP) Reference Implementation" +msgstr "" + +#: gnu/packages/telephony.scm:208 +msgid "" +"This package provides an implementation of the Secure\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" +"and a supporting cryptographic kernel." +msgstr "" + +#: gnu/packages/texinfo.scm:55 +msgid "The GNU documentation format" +msgstr "" + +#: gnu/packages/texinfo.scm:57 +msgid "" +"Texinfo is the official documentation format of the GNU project. It\n" +"uses a single source file using explicit commands to produce a final " +"document\n" +"in any of several supported output formats, such as HTML or PDF. This\= n" +"package includes both the tools necessary to produce Info documents fro= m\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" +"is on expressing the content semantically, avoiding physical markup com= mands." +msgstr "" + +#: gnu/packages/texinfo.scm:132 +msgid "Convert Texinfo to HTML" +msgstr "" + +#: gnu/packages/texinfo.scm:134 +msgid "" +"Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" +"output. It now supports many advanced features, such as " +"internationalization\n" +"and extremely configurable output formats.\n" +"\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" +"was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" +"Texi2HTML." +msgstr "" + +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 +msgid "TeX Live, a package of the TeX typesetting system" +msgstr "" + +#: gnu/packages/texlive.scm:157 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the binaries." +msgstr "" + +#: gnu/packages/texlive.scm:220 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete tree of texmf-dist data." +msgstr "" + +#: gnu/packages/texlive.scm:278 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete TeX Live distribution." +msgstr "" + +#: gnu/packages/texlive.scm:307 +msgid "Wrapper for LaTeX and friends" +msgstr "" + +#: gnu/packages/texlive.scm:309 +msgid "" +"Rubber is a program whose purpose is to handle all tasks related to the= \n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" +"PDF documents." +msgstr "" + +#: gnu/packages/textutils.scm:61 +msgid "Text encoding converter" +msgstr "" + +#: gnu/packages/textutils.scm:62 +msgid "" +"The Recode library converts files between character sets and\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" +"any pair. When exact transliteration are not possible, it gets rid of\= n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" +"handy front-end to the library." +msgstr "" + +#: gnu/packages/textutils.scm:90 +msgid "Text encoding detection tool" +msgstr "" + +#: gnu/packages/textutils.scm:91 +msgid "" +"Enca (Extremely Naive Charset Analyser) consists of libenca,\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" +"libenca and several charset conversion libraries and tools." +msgstr "" + +#: gnu/packages/textutils.scm:118 +msgid "C library for processing UTF-8 Unicode data" +msgstr "" + +#: gnu/packages/textutils.scm:119 +msgid "" +"utf8proc is a small C library that provides Unicode\n" +"normalization, case-folding, and other operations for data in the UTF-8= \n" +"encoding, supporting Unicode version 7.0." +msgstr "" + +#: gnu/packages/textutils.scm:148 +msgid "Gordon's text utils library" +msgstr "" + +#: gnu/packages/textutils.scm:150 +msgid "" +"libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" +"the Hannon Lab." +msgstr "" + +#: gnu/packages/textutils.scm:171 +msgid "C++ hash functions for strings" +msgstr "" + +#: gnu/packages/textutils.scm:173 +msgid "" +"CityHash provides hash functions for strings. The functions mix the\n" +"input bits thoroughly but are not suitable for cryptography." +msgstr "" + +#: gnu/packages/textutils.scm:190 +msgid "C/C++ configuration file library" +msgstr "" + +#: gnu/packages/textutils.scm:192 +msgid "" +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." +msgstr "" + +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" + +#: gnu/packages/textutils.scm:214 +msgid "" +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." +msgstr "" + +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" +msgstr "" + +#: gnu/packages/version-control.scm:105 +msgid "" +"GNU Bazaar is a version control system that allows you to record\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" +"as well as the classic centralized workflow." +msgstr "" + +#: gnu/packages/version-control.scm:264 +msgid "Distributed version control system" +msgstr "" + +#: gnu/packages/version-control.scm:266 +msgid "" +"Git is a free distributed version control system designed to handle\n" +"everything from small to very large projects with speed and efficiency.= " +msgstr "" + +#: gnu/packages/version-control.scm:311 +msgid "Man pages of the Git version control system" +msgstr "" + +#: gnu/packages/version-control.scm:313 +msgid "" +"This package provides the man pages of the Git version control system.\= n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" +"command." +msgstr "" + +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" + +#: gnu/packages/version-control.scm:354 +msgid "" +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." +msgstr "" + +#: gnu/packages/version-control.scm:393 +msgid "Command-line flags library for shell scripts" +msgstr "" + +#: gnu/packages/version-control.scm:395 +msgid "" +"Shell Flags (shFlags) is a library written to greatly simplify the\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" +"ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" +"different versions of getopt on various OSes make writing portable shel= l\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" +"shell and OS versions so the script writer can be confident that the sc= ript\n" +"will work." +msgstr "" + +#: gnu/packages/version-control.scm:438 +msgid "Git extensions for Vincent Driessen's branching model" +msgstr "" + +#: gnu/packages/version-control.scm:440 +msgid "" +"Vincent Driessen's branching model is a git branching and release\n" +"management strategy that helps developers keep track of features, hotfi= xes,\n" +"and releases in bigger software projects. The git-flow library of git\= n" +"subcommands helps automate some parts of the flow to make working with = it a\n" +"lot easier." +msgstr "" + +#: gnu/packages/version-control.scm:475 +msgid "Run a command over a sequence of commits" +msgstr "" + +#: gnu/packages/version-control.scm:477 +msgid "" +"git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" +"linear. It will test every change between two points in the DAG. It w= ill\n" +"also walk each side of a merge and test those changes individually." +msgstr "" + +#: gnu/packages/version-control.scm:535 +msgid "Git access control layer" +msgstr "" + +#: gnu/packages/version-control.scm:537 +msgid "" +"Gitolite is an access control layer on top of Git, providing fine acces= s\n" +"control to Git repositories." +msgstr "" + +#: gnu/packages/version-control.scm:561 +msgid "Decentralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:563 +msgid "" +"Mercurial is a free, distributed source control management tool.\n" +"It efficiently handles projects of any size\n" +"and offers an easy and intuitive interface." +msgstr "" + +#: gnu/packages/version-control.scm:597 +msgid "HTTP and WebDAV client library" +msgstr "" + +#: gnu/packages/version-control.scm:598 +msgid "" +"Neon is an HTTP and WebDAV client library, with a\n" +"C interface. Features:\n" +"High-level wrappers for common HTTP and WebDAV operations (GET, MOVE,\n= " +"DELETE, etc.);\n" +"low-level interface to the HTTP request/response engine, allowing the u= se\n" +"of arbitrary HTTP methods, headers, etc.;\n" +"authentication support including Basic and Digest support, along with\n= " +"GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32;= \n" +"SSL/TLS support using OpenSSL or GnuTLS, exposing an abstraction layer = for\n" +"verifying server certificates, handling client certificates, and examin= ing\n" +"certificate properties, smartcard-based client certificates are also\n" +"supported via a PKCS#11 wrapper interface;\n" +"abstract interface to parsing XML using libxml2 or expat, and wrappers = for\n" +"simplifying handling XML HTTP response bodies;\n" +"WebDAV metadata support, wrappers for PROPFIND and PROPPATCH to simplif= y\n" +"property manipulation." +msgstr "" + +#: gnu/packages/version-control.scm:677 +msgid "Revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:679 +msgid "" +"Subversion exists to be universally recognized and adopted as a\n" +"centralized version control system characterized by its\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" +"usage; and its ability to support the needs of a wide variety of users = and\n" +"projects, from individuals to large-scale enterprise operations." +msgstr "" + +#: gnu/packages/version-control.scm:700 +msgid "Per-file local revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:702 +msgid "" +"RCS is the original Revision Control System. It works on a\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" +"CVS, Subversion, and Git. This can make it suitable for system\n" +"administration files, for example, which are often inherently local to = one\n" +"machine." +msgstr "" + +#: gnu/packages/version-control.scm:729 +msgid "Historical centralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:731 +msgid "" +"CVS is a version control system, an important component of Source\n" +"Configuration Management (SCM). Using it, you can record the history o= f\n" +"sources files, and documents. It fills a similar role to the free soft= ware\n" +"RCS, PRCS, and Aegis packages." +msgstr "" + +#: gnu/packages/version-control.scm:764 +msgid "Export an RCS or CVS history as a fast-import stream" +msgstr "" + +#: gnu/packages/version-control.scm:765 +msgid "" +"This program analyzes a collection of RCS files in a CVS\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" +"in the form of a fast-import stream. Not all possible histories can be= \n" +"rendered this way; the program tries to emit useful warnings when it ca= n't.\n" +"\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" +"acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" +"masters from remote CVS hosts." +msgstr "" + +#: gnu/packages/version-control.scm:792 +msgid "Version-control-agnostic ChangeLog diff and commit tool" +msgstr "" + +#: gnu/packages/version-control.scm:794 +msgid "" +"The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " +"vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" +"using version control at the same time, for example by printing a remin= der\n" +"when a file change has been described in the ChangeLog but the file has= not\n" +"been added to the VC. vc-chlog scans changed files and generates\n" +"standards-compliant ChangeLog entries based on the changes that it dete= cts." +msgstr "" + +#: gnu/packages/version-control.scm:816 +msgid "Make histograms from the output of 'diff'" +msgstr "" + +#: gnu/packages/version-control.scm:818 +msgid "" +"Diffstat reads the output of 'diff' and displays a histogram of the\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" +"large, complex patch files." +msgstr "" + +#: gnu/packages/version-control.scm:859 +msgid "File-based version control like SCCS" +msgstr "" + +#: gnu/packages/version-control.scm:860 +msgid "" +"GNU CSSC provides a replacement for the legacy Unix source\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" +"accessed and migrated on modern systems." +msgstr "" + +#: gnu/packages/version-control.scm:941 +msgid "Project change supervisor" +msgstr "" + +#: gnu/packages/version-control.scm:942 +msgid "" +"Aegis is a project change supervisor, and performs some of\n" +"the Software Configuration Management needed in a CASE environment. Ae= gis\n" +"provides a framework within which a team of developers may work on many= \n" +"changes to a program independently, and Aegis coordinates integrating t= hese\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" +"any project with more than one developer, is one of Aegis's major funct= ions." +msgstr "" + +#: gnu/packages/version-control.scm:970 +msgid "Ncurses-based text user interface for Git" +msgstr "" + +#: gnu/packages/version-control.scm:972 +msgid "" +"Tig is an ncurses text user interface for Git, primarily intended as\n" +"a history browser. It can also stage hunks for commit, or colorize the= \n" +"output of the 'git' command." +msgstr "" + +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" + +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." +msgstr "" + +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" + +#: gnu/packages/version-control.scm:1027 +msgid "" +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." +msgstr "" + +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" + +#: gnu/packages/version-control.scm:1059 +msgid "" +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." +msgstr "" + +#: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" + +#: gnu/packages/webkit.scm:125 +msgid "" +"WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" +"suitable for projects requiring any kind of web integration, from hybri= d\n" +"HTML/CSS applications to full-fledged web browsers." +msgstr "" + +#: gnu/packages/web.scm:89 +msgid "Featureful HTTP server" +msgstr "" + +#: gnu/packages/web.scm:91 +msgid "" +"The Apache HTTP Server Project is a collaborative software development\= n" +"effort aimed at creating a robust, commercial-grade, featureful, and\n" +"freely-available source code implementation of an HTTP (Web) server. T= he\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" +"using the Internet and the Web to communicate, plan, and develop the se= rver\n" +"and its related documentation." +msgstr "" + +#: gnu/packages/web.scm:169 +msgid "HTTP and reverse proxy server" +msgstr "" + +#: gnu/packages/web.scm:171 +msgid "" +"Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" +"created by Igor Sysoev. It can be used both as a standalone web server= \n" +"and as a proxy to reduce the load on back-end HTTP or mail servers." +msgstr "" + +#: gnu/packages/web.scm:207 +msgid "PSGI/Plack web server" +msgstr "" + +#: gnu/packages/web.scm:208 +msgid "" +"Starman is a PSGI perl web server that has unique features\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" +"and UNIX socket support." +msgstr "" + +#: gnu/packages/web.scm:227 +#, fuzzy +msgid "JSON C library" +msgstr "=D0=93=D0=BD=D1=83 =D0=A6 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1= =82=D0=B5=D0=BA=D0=B0" + +#: gnu/packages/web.scm:229 +msgid "" +"Jansson is a C library for encoding, decoding and manipulating JSON\n" +"data." +msgstr "" + +#: gnu/packages/web.scm:261 +msgid "JSON implementation in C" +msgstr "" + +#: gnu/packages/web.scm:263 +msgid "" +"JSON-C implements a reference counting object model that allows you to\= n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" +"parse JSON formatted strings back into the C representation of JSON obj= ects." +msgstr "" + +#: gnu/packages/web.scm:289 +msgid "JSON parser/generator for C++ with both SAX/DOM style API" +msgstr "" + +#: gnu/packages/web.scm:291 +msgid "" +"RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" +"style API." +msgstr "" + +#: gnu/packages/web.scm:309 +msgid "C library for parsing JSON" +msgstr "" + +#: gnu/packages/web.scm:311 +msgid "" +"Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" +"parser written in ANSI C and a small validating JSON generator." +msgstr "" + +#: gnu/packages/web.scm:341 +msgid "WebSockets library written in C" +msgstr "" + +#: gnu/packages/web.scm:343 +msgid "" +"Libwebsockets is a library that allows C programs to establish client\n= " +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" +"for efficient socket-like bidirectional reliable communication channels= ." +msgstr "" + +#: gnu/packages/web.scm:378 +msgid "C library for the Publix Suffix List" +msgstr "" + +#: gnu/packages/web.scm:380 +msgid "" +"A \"public suffix\" is a domain name under which Internet users can\n" +"directly register own names.\n" +"\n" +"Browsers and other web clients can use it to avoid privacy-leaking\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" +"by site.\n" +"\n" +"Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" +"domain verification, finds the longest public part of a given domain, f= inds\n" +"the shortest private part of a given domain, works with international\n= " +"domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" +"UTS#46." +msgstr "" + +#: gnu/packages/web.scm:426 +msgid "HTML validator and tidier" +msgstr "" + +#: gnu/packages/web.scm:427 +msgid "" +"HTML Tidy is a command-line tool and C library that can be\n" +"used to validate and fix HTML data." +msgstr "" + +#: gnu/packages/web.scm:468 +msgid "Light-weight HTTP/HTTPS proxy daemon" +msgstr "" + +#: gnu/packages/web.scm:469 +msgid "" +"Tinyproxy is a light-weight HTTP/HTTPS proxy\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" +"proxy is required, but the system resources for a larger proxy are\n" +"unavailable." +msgstr "" + +#: gnu/packages/web.scm:502 +msgid "Small caching web proxy" +msgstr "" + +#: gnu/packages/web.scm:504 +msgid "" +"Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " +"server). It was primarily designed to be used by one person or a small= " +"group\n" +"of people." +msgstr "" + +#: gnu/packages/web.scm:524 +msgid "YAML 1.1 parser and emitter written in C" +msgstr "" + +#: gnu/packages/web.scm:526 +msgid "LibYAML is a YAML 1.1 parser and emitter written in C." +msgstr "" + +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 +msgid "Media stream URL parser" +msgstr "" + +#: gnu/packages/web.scm:543 +msgid "" +"This package contains support scripts called by libquvi to\n" +"parse media stream properties." +msgstr "" + +#: gnu/packages/web.scm:576 +msgid "" +"libquvi is a library with a C API for parsing media stream\n" +"URLs and extracting their actual media files." +msgstr "" + +#: gnu/packages/web.scm:598 +msgid "" +"quvi is a command-line-tool suite to extract media files\n" +"from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." +msgstr "" + +#: gnu/packages/web.scm:661 +msgid "High-performance asynchronous HTTP client library" +msgstr "" + +#: gnu/packages/web.scm:663 +msgid "" +"serf is a C-based HTTP client library built upon the Apache Portable\n" +"Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" +"minimum to provide high performance operation." +msgstr "" + +#: gnu/packages/web.scm:718 +msgid "CSS pre-processor" +msgstr "" + +#: gnu/packages/web.scm:719 +msgid "" +"SassC is a compiler written in C for the CSS pre-processor\n" +"language known as SASS." +msgstr "" + +#: gnu/packages/web.scm:748 +msgid "Compile a log format string to perl-code" +msgstr "" + +#: gnu/packages/web.scm:749 +msgid "" +"This module provides methods to compile a log format string\n" +"to perl-code, for faster generation of access_log lines." +msgstr "" + +#: gnu/packages/web.scm:770 +msgid "SASL authentication framework" +msgstr "" + +#: gnu/packages/web.scm:771 +msgid "Authen::SASL provides an SASL authentication framework." +msgstr "" + +#: gnu/packages/web.scm:795 +msgid "Sensible default Catalyst action" +msgstr "" + +#: gnu/packages/web.scm:796 +msgid "" +"This Catalyst action implements a sensible default end\n" +"action, which will forward to the first available view." +msgstr "" + +#: gnu/packages/web.scm:824 +msgid "Automated REST Method Dispatching" +msgstr "" + +#: gnu/packages/web.scm:825 +msgid "" +"This Action handles doing automatic method dispatching for\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" +"append an underscore and method name. First it will try dispatching to= an\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" +"regular method." +msgstr "" + +#: gnu/packages/web.scm:861 +msgid "Storage class for Catalyst authentication using DBIx::Class" +msgstr "" + +#: gnu/packages/web.scm:862 +msgid "" +"The Catalyst::Authentication::Store::DBIx::Class class\n" +"provides access to authentication information stored in a database via\= n" +"DBIx::Class." +msgstr "" + +#: gnu/packages/web.scm:886 +msgid "Create only one instance of Moose component per context" +msgstr "" + +#: gnu/packages/web.scm:887 +msgid "" +"Catalyst::Component::InstancePerContext returns a new\n" +"instance of a component on each request." +msgstr "" + +#: gnu/packages/web.scm:924 +msgid "Catalyst Development Tools" +msgstr "" + +#: gnu/packages/web.scm:925 +msgid "" +"The Catalyst-Devel distribution includes a variety of\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" +"to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" +"modules." +msgstr "" + +#: gnu/packages/web.scm:954 +msgid "Regex DispatchType for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:955 +msgid "" +"Dispatch type managing path-matching behaviour using\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" +"core. It is recommend that you use Chained methods or other techniques= \n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" +"when the dispatch type is first seen in your application." +msgstr "" + +#: gnu/packages/web.scm:1003 +msgid "DBIx::Class::Schema Model Class" +msgstr "" + +#: gnu/packages/web.scm:1004 +msgid "" +"This is a Catalyst Model for DBIx::Class::Schema-based\n" +"Models." +msgstr "" + +#: gnu/packages/web.scm:1028 +msgid "Request logging from within Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1029 +msgid "" +"This Catalyst plugin enables you to create \"access logs\"\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" +"for you. It will work even with Catalyst debug logging turned off." +msgstr "" + +#: gnu/packages/web.scm:1061 +msgid "Infrastructure plugin for the Catalyst authentication framework" +msgstr "" + +#: gnu/packages/web.scm:1062 +msgid "" +"The authentication plugin provides generic user support for\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" +"who they claim to be), and authorization (allowing the user to do what = the\n" +"system authorises them to do)." +msgstr "" + +#: gnu/packages/web.scm:1092 +msgid "Role-based authorization for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1093 +msgid "" +"Catalyst::Plugin::Authorization::Roles provides role-based\n" +"authorization for Catalyst based on Catalyst::Plugin::Authentication." +msgstr "" + +#: gnu/packages/web.scm:1116 +msgid "Captchas for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1117 +msgid "" +"This plugin creates and validates Captcha images for\n" +"Catalyst." +msgstr "" + +#: gnu/packages/web.scm:1143 +msgid "Load config files of various types" +msgstr "" + +#: gnu/packages/web.scm:1144 +msgid "" +"This module will attempt to load find and load configuration\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" +"formats." +msgstr "" + +#: gnu/packages/web.scm:1174 +msgid "Catalyst generic session plugin" +msgstr "" + +#: gnu/packages/web.scm:1175 +msgid "" +"This plugin links the two pieces required for session\n" +"management in web applications together: the state, and the store." +msgstr "" + +#: gnu/packages/web.scm:1201 +msgid "Maintain session IDs using cookies" +msgstr "" + +#: gnu/packages/web.scm:1202 +msgid "" +"In order for Catalyst::Plugin::Session to work, the session\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" +"on the server. This plugin stores the session ID on the client using t= he\n" +"cookie mechanism." +msgstr "" + +#: gnu/packages/web.scm:1232 +msgid "FastMmap session storage backend" +msgstr "" + +#: gnu/packages/web.scm:1233 +msgid "" +"Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" +"storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" +"memory interprocess cache. It is based on Cache::FastMmap." +msgstr "" + +#: gnu/packages/web.scm:1256 +msgid "Stack trace on the Catalyst debug screen" +msgstr "" + +#: gnu/packages/web.scm:1257 +msgid "" +"This plugin enhances the standard Catalyst debug screen by\n" +"including a stack trace of your application up to the point where the e= rror\n" +"occurred. Each stack frame is displayed along with the package name, l= ine\n" +"number, file name, and code context surrounding the line number." +msgstr "" + +#: gnu/packages/web.scm:1283 +msgid "Simple serving of static pages" +msgstr "" + +#: gnu/packages/web.scm:1284 +msgid "" +"The Static::Simple plugin is designed to make serving static\n" +"content in your application during development quick and easy, without\= n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" +"plugin uses the lightweight MIME::Types module to map file extensions t= o\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" +"MIME type directly to the browser, without being processed through Cata= lyst." +msgstr "" + +#: gnu/packages/web.scm:1351 +msgid "The Catalyst Framework Runtime" +msgstr "" + +#: gnu/packages/web.scm:1352 +msgid "" +"Catalyst is a modern framework for making web applications.\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" +"\"plug in\" existing Perl modules that do what you need." +msgstr "" + +#: gnu/packages/web.scm:1382 +msgid "Replace request base with value passed by HTTP proxy" +msgstr "" + +#: gnu/packages/web.scm:1383 +msgid "" +"This module is a Moose::Role which allows you more\n" +"flexibility in your application's deployment configurations when deploy= ed\n" +"behind a proxy. Using this module, the request base ($c->req->base) is= \n" +"replaced with the contents of the X-Request-Base header." +msgstr "" + +#: gnu/packages/web.scm:1409 +msgid "Download data in many formats" +msgstr "" + +#: gnu/packages/web.scm:1410 +msgid "" +"The purpose of this module is to provide a method for\n" +"downloading data into many supportable formats. For example, downloadi= ng a\n" +"table based report in a variety of formats (CSV, HTML, etc.)." +msgstr "" + +#: gnu/packages/web.scm:1435 +msgid "Catalyst JSON view" +msgstr "" + +#: gnu/packages/web.scm:1436 +msgid "" +"Catalyst::View::JSON is a Catalyst View handler that returns\n" +"stash data in JSON format." +msgstr "" + +#: gnu/packages/web.scm:1461 +msgid "Template View Class" +msgstr "" + +#: gnu/packages/web.scm:1462 +msgid "" +"This module is a Catalyst view class for the Template\n" +"Toolkit." +msgstr "" + +#: gnu/packages/web.scm:1491 +msgid "Trait Loading and Resolution for Catalyst Components" +msgstr "" + +#: gnu/packages/web.scm:1492 +msgid "" +"Adds a \"COMPONENT\" in Catalyst::Component method to your\n" +"Catalyst component base class that reads the optional \"traits\" parame= ter\n" +"from app and component config and instantiates the component subclass w= ith\n" +"those traits using \"new_with_traits\" in MooseX::Traits from\n" +"MooseX::Traits::Pluggable." +msgstr "" + +#: gnu/packages/web.scm:1517 +msgid "Apply roles to Catalyst classes" +msgstr "" + +#: gnu/packages/web.scm:1518 +msgid "" +"CatalystX::RoleApplicator applies roles to Catalyst\n" +"application classes." +msgstr "" + +#: gnu/packages/web.scm:1544 +msgid "Catalyst development server with Starman" +msgstr "" + +#: gnu/packages/web.scm:1545 +msgid "" +"This module provides a Catalyst extension to replace the\n" +"development server with Starman." +msgstr "" + +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" + +#: gnu/packages/web.scm:1570 +msgid "" +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." +msgstr "" + +#: gnu/packages/web.scm:1594 +msgid "CGI interface that is CGI.pm compliant" +msgstr "" + +#: gnu/packages/web.scm:1595 +msgid "" +"CGI::Simple provides a relatively lightweight drop in\n" +"replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" +"parameter parsing, file upload, cookie handling and header generation." +msgstr "" + +#: gnu/packages/web.scm:1616 +msgid "Build structures from CGI data" +msgstr "" + +#: gnu/packages/web.scm:1617 +msgid "" +"This is a module for building structured data from CGI\n" +"inputs, in a manner reminiscent of how PHP does." +msgstr "" + +#: gnu/packages/web.scm:1640 +msgid "Date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:1641 +msgid "" +"This module provides functions that deal with the date\n" +"formats used by the HTTP protocol." +msgstr "" + +#: gnu/packages/web.scm:1661 +msgid "MD5 sums for files and urls" +msgstr "" + +#: gnu/packages/web.scm:1662 +msgid "" +"Digest::MD5::File is a Perl extension for getting MD5 sums\n" +"for files and urls." +msgstr "" + +#: gnu/packages/web.scm:1680 +msgid "Perl locale encoding determination" +msgstr "" + +#: gnu/packages/web.scm:1682 +msgid "" +"The POSIX locale system is used to specify both the language\n" +"conventions requested by the user and the preferred character set to\n" +"consume and output. The Encode::Locale module looks up the charset and= \n" +"encoding (called a CODESET in the locale jargon) and arranges for the\n= " +"Encode module to know this encoding under the name \"locale\". It mean= s\n" +"bytes obtained from the environment can be converted to Unicode strings= \n" +"by calling Encode::encode(locale =3D> $bytes) and converted back again\= n" +"with Encode::decode(locale =3D> $string)." +msgstr "" + +#: gnu/packages/web.scm:1708 +msgid "Perl directory listing parser" +msgstr "" + +#: gnu/packages/web.scm:1710 +msgid "" +"The File::Listing module exports a single function called parse_dir(),\= n" +"which can be used to parse directory listings." +msgstr "" + +#: gnu/packages/web.scm:1742 +msgid "Stock and mutual fund quotes" +msgstr "" + +#: gnu/packages/web.scm:1744 +msgid "" +"Finance::Quote gets stock quotes from various internet sources, includi= ng\n" +"Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." +msgstr "" + +#: gnu/packages/web.scm:1766 +msgid "Perl extension providing access to the GSSAPIv2 library" +msgstr "" + +#: gnu/packages/web.scm:1767 +msgid "" +"This is a Perl extension for using GSSAPI C bindings as\n" +"described in RFC 2744." +msgstr "" + +#: gnu/packages/web.scm:1787 +msgid "Manipulate tables of HTML::Element" +msgstr "" + +#: gnu/packages/web.scm:1789 +msgid "" +"HTML::Element::Extended is a Perl extension for manipulating a table\n" +"composed of HTML::Element style components." +msgstr "" + +#: gnu/packages/web.scm:1813 +msgid "Perl class representing an HTML form element" +msgstr "" + +#: gnu/packages/web.scm:1814 +msgid "" +"Objects of the HTML::Form class represents a single HTML\n" +"
...
instance." +msgstr "" + +#: gnu/packages/web.scm:1836 +msgid "Check for HTML errors in a string or file" +msgstr "" + +#: gnu/packages/web.scm:1837 +msgid "" +"HTML::Lint is a pure-Perl HTML parser and checker for\n" +"syntactic legitmacy." +msgstr "" + +#: gnu/packages/web.scm:1858 +msgid "Extract contents from HTML tables" +msgstr "" + +#: gnu/packages/web.scm:1860 +msgid "" +"HTML::TableExtract is a Perl module for extracting the content containe= d\n" +"in tables within an HTML document, either as text or encoded element tr= ees." +msgstr "" + +#: gnu/packages/web.scm:1885 +msgid "Work with HTML in a DOM-like tree structure" +msgstr "" + +#: gnu/packages/web.scm:1886 +msgid "" +"This distribution contains a suite of modules for\n" +"representing, creating, and extracting information from HTML syntax tre= es." +msgstr "" + +#: gnu/packages/web.scm:1906 +msgid "Perl HTML parser class" +msgstr "" + +#: gnu/packages/web.scm:1908 +msgid "" +"Objects of the HTML::Parser class will recognize markup and separate\n" +"it from plain text (alias data content) in HTML documents. As differen= t\n" +"kinds of markup and text are recognized, the corresponding event handle= rs\n" +"are invoked." +msgstr "" + +#: gnu/packages/web.scm:1928 +msgid "Perl data tables useful in parsing HTML" +msgstr "" + +#: gnu/packages/web.scm:1930 +msgid "" +"The HTML::Tagset module contains several data tables useful in various\= n" +"kinds of HTML parsing operations." +msgstr "" + +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" + +#: gnu/packages/web.scm:1951 +msgid "" +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." +msgstr "" + +#: gnu/packages/web.scm:1979 +msgid "HTTP Body Parser" +msgstr "" + +#: gnu/packages/web.scm:1980 +msgid "" +"HTTP::Body parses chunks of HTTP POST data and supports\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" +"and multipart/form-data." +msgstr "" + +#: gnu/packages/web.scm:2006 +msgid "Minimalist HTTP user agent cookie jar" +msgstr "" + +#: gnu/packages/web.scm:2007 +msgid "" +"This module implements a minimalist HTTP user agent cookie\n" +"jar in conformance with RFC 6265 ." +msgstr "" + +#: gnu/packages/web.scm:2027 +msgid "Perl HTTP cookie jars" +msgstr "" + +#: gnu/packages/web.scm:2029 +msgid "" +"The HTTP::Cookies class is for objects that represent a cookie jar,\n" +"that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" +"object knows about." +msgstr "" + +#: gnu/packages/web.scm:2051 +msgid "Perl simple http server class" +msgstr "" + +#: gnu/packages/web.scm:2053 +msgid "" +"Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" +"on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " +"IO::Socket::INET, so you can perform socket operations directly on it t= oo." +msgstr "" + +#: gnu/packages/web.scm:2072 +msgid "Perl date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:2074 +msgid "" +"The HTTP::Date module provides functions that deal with date formats\n" +"used by the HTTP protocol (and then some more)." +msgstr "" + +#: gnu/packages/web.scm:2097 +msgid "Perl HTTP style message" +msgstr "" + +#: gnu/packages/web.scm:2099 +msgid "An HTTP::Message object contains some headers and a content body.= " +msgstr "" + +#: gnu/packages/web.scm:2118 +msgid "Perl http content negotiation" +msgstr "" + +#: gnu/packages/web.scm:2120 +msgid "" +"The HTTP::Negotiate module provides a complete implementation of the\n" +"HTTP content negotiation algorithm specified in\n" +"draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows = for\n" +"the selection of a preferred content representation based upon attribut= es\n" +"of the negotiable variants and the value of the various Accept* header\= n" +"fields in the request." +msgstr "" + +#: gnu/packages/web.scm:2145 +msgid "Parse HTTP/1.1 requests" +msgstr "" + +#: gnu/packages/web.scm:2146 +msgid "" +"This is an HTTP request parser. It takes chunks of text as\n" +"received and returns a 'hint' as to what is required, or returns the\n" +"HTTP::Request when a complete request has been read. HTTP/1.1 chunking= is\n" +"supported." +msgstr "" + +#: gnu/packages/web.scm:2166 +msgid "Fast HTTP request parser" +msgstr "" + +#: gnu/packages/web.scm:2167 +msgid "" +"HTTP::Parser::XS is a fast, primitive HTTP request/response\n" +"parser." +msgstr "" + +#: gnu/packages/web.scm:2188 +msgid "Set up a CGI environment from an HTTP::Request" +msgstr "" + +#: gnu/packages/web.scm:2189 +msgid "" +"This module provides a convenient way to set up a CGI\n" +"environment from an HTTP::Request." +msgstr "" + +#: gnu/packages/web.scm:2213 +msgid "Lightweight HTTP server" +msgstr "" + +#: gnu/packages/web.scm:2214 +msgid "" +"HTTP::Server::Simple is a simple standalone HTTP daemon with\n" +"no non-core module dependencies. It can be used for building a standal= one\n" +"http-based UI to your existing tools." +msgstr "" + +#: gnu/packages/web.scm:2238 +msgid "HTTP/1.1 client" +msgstr "" + +#: gnu/packages/web.scm:2239 +msgid "" +"This is a very simple HTTP/1.1 client, designed for doing\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" +"It supports proxies and redirection. It also correctly resumes after E= INTR." +msgstr "" + +#: gnu/packages/web.scm:2258 +msgid "Perl module to open an HTML file with automatic charset detection= " +msgstr "" + +#: gnu/packages/web.scm:2260 +msgid "" +"IO::HTML provides an easy way to open a file containing HTML while\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" +"algorithm specified in section 8.2.2.1 of the draft standard." +msgstr "" + +#: gnu/packages/web.scm:2280 +msgid "Family-neutral IP socket supporting both IPv4 and IPv6" +msgstr "" + +#: gnu/packages/web.scm:2281 +msgid "" +"This module provides a protocol-independent way to use IPv4\n" +"and IPv6 sockets, intended as a replacement for IO::Socket::INET." +msgstr "" + +#: gnu/packages/web.scm:2301 +msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" +msgstr "" + +#: gnu/packages/web.scm:2303 +msgid "" +"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" +"select or poll." +msgstr "" + +#: gnu/packages/web.scm:2334 +msgid "Perl modules for the WWW" +msgstr "" + +#: gnu/packages/web.scm:2336 +msgid "" +"The libwww-perl collection is a set of Perl modules which provides a\n" +"simple and consistent application programming interface to the\n" +"World-Wide Web. The main focus of the library is to provide classes\n" +"and functions that allow you to write WWW clients. The library also\n" +"contains modules that are of more general use and even classes that\n" +"help you implement simple HTTP servers." +msgstr "" =20 -#: gnu/packages/recutils.scm:60 +#: gnu/packages/web.scm:2358 +msgid "Perl module to guess the media type for a file or a URL" +msgstr "" + +#: gnu/packages/web.scm:2360 +#, scheme-format msgid "" -"GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" -"databases created with Recutils carry all of the expected features such= as\n" -"unique fields, primary keys, time stamps and more. Many different field= types\n" -"are supported, as is encryption." +"The LWP::MediaTypes module provides functions for handling media (also\= n" +"known as MIME) types and encodings. The mapping from file extensions t= o\n" +"media types is defined by the media.types file. If the ~/.media.types = file\n" +"exists it is used instead." msgstr "" -"=D0=93=D0=BD=D1=83=D0=BE=D0=B2=D0=BE =D0=A0=D0=B5=D0=BA=D0=BF=D0=BE=D0=BC= =D0=B0=D0=B3=D0=B0=D0=BB=D0=BE =D1=98=D0=B5 =D1=81=D0=BA=D1=83=D0=BF =D0=B0= =D0=BB=D0=B0=D1=82=D0=B0 =D0=B8 =D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82= =D0=B5=D0=BA=D0=B0 =D0=B7=D0=B0 =D1=81=D1=82=D0=B2=D0=B0=D1=80=D0=B0=D1=9A= =D0=B5 =D0=B8 =D1=80=D1=83=D0=BA=D0=BE=D0=B2=D0=B0=D1=9A=D0=B5\n" -"=D0=B1=D0=B0=D0=B7=D0=B0=D0=BC=D0=B0 =D0=BF=D0=BE=D0=B4=D0=B0=D1=82=D0=B0= =D0=BA=D0=B0 =D0=B7=D0=B0=D1=81=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=BC= =D0=BD=D0=B0 =D1=82=D0=B5=D0=BA=D1=81=D1=82=D1=83 =D0=BA=D0=BE=D1=98=D0=B5= =D1=81=D0=B5 =D0=BC=D0=BE=D0=B3=D1=83 =D1=83=D1=80=D0=B5=D1=92=D0=B8=D0=B2= =D0=B0=D1=82=D0=B8. =D0=98=D0=B0=D0=BA=D0=BE =D1=81=D1=83\n" -"=D0=B7=D0=B0=D1=81=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B5 =D0=BD=D0=B0 =D1= =82=D0=B5=D0=BA=D1=81=D1=82=D1=83, =D0=B1=D0=B0=D0=B7=D0=B5 =D0=BF=D0=BE=D0= =B4=D0=B0=D1=82=D0=B0=D0=BA=D0=B0 =D1=81=D1=82=D0=B2=D0=BE=D1=80=D0=B5=D0= =BD=D0=B5 =D0=A0=D0=B5=D0=BA=D0=BF=D0=BE=D0=BC=D0=B0=D0=B3=D0=B0=D0=BB=D0= =BE=D0=BC =D1=81=D0=B0=D0=B4=D1=80=D0=B6=D0=B5 =D1=81=D0=B2=D0=B5\n" -"=D0=BE=D1=87=D0=B5=D0=BA=D0=B8=D0=B2=D0=B0=D0=BD=D0=B5 =D1=84=D1=83=D0=BD= =D0=BA=D1=86=D0=B8=D1=98=D0=B5 =D0=BA=D0=B0=D0=BE =D1=88=D1=82=D0=BE =D1=81= =D1=83 =D1=98=D0=B5=D0=B4=D0=B8=D0=BD=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=B0= =D0=BF=D0=BE=D1=99=D0=B0, =D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D0=B8 =D0= =BA=D1=99=D1=83=D1=87=D0=B5=D0=B2=D0=B8, =D0=BE=D0=B7=D0=BD=D0=B0=D0=BA=D0= =B5\n" -"=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B0 =D0=B8 =D1=98=D0=BE=D1=88 =D0= =BD=D0=B5=D0=BA=D0=B5. =D0=9C=D0=BD=D0=BE=D0=B3=D0=B5 =D1=80=D0=B0=D0=B7=D0= =BB=D0=B8=D1=87=D0=B8=D1=82=D0=B5 =D0=B2=D1=80=D1=81=D1=82=D0=B5 =D0=BF=D0= =BE=D1=99=D0=B0 =D1=81=D1=83 =D0=BF=D0=BE=D0=B4=D1=80=D0=B6=D0=B0=D0=BD=D0= =B5, =D0=BA=D0=B0=D0=BE =D1=83 =D1=88=D0=B8=D1=84=D1=80=D0=BE=D0=B2=D0=B0= =D1=9A=D1=83." + +#: gnu/packages/web.scm:2386 +msgid "HTTPS support for LWP::UserAgent" +msgstr "" + +#: gnu/packages/web.scm:2387 +msgid "" +"The LWP::Protocol::https module provides support for using\n" +"https schemed URLs with LWP." +msgstr "" + +#: gnu/packages/web.scm:2407 +msgid "Virtual browser that retries errors" +msgstr "" + +#: gnu/packages/web.scm:2408 +msgid "" +"LWP::UserAgent::Determined works just like LWP::UserAgent,\n" +"except that when you use it to get a web page but run into a\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" +"and retry a few times." +msgstr "" + +#: gnu/packages/web.scm:2453 +msgid "Perl interface to Amazon S3" +msgstr "" + +#: gnu/packages/web.scm:2454 +msgid "This module provides a Perlish interface to Amazon S3." +msgstr "" + +#: gnu/packages/web.scm:2474 +msgid "Perl low-level HTTP connection (client)" +msgstr "" + +#: gnu/packages/web.scm:2476 +msgid "" +"The Net::HTTP class is a low-level HTTP client. An instance of the\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" +"is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" +"HTTP/1.1." +msgstr "" + +#: gnu/packages/web.scm:2496 +msgid "Extensible Perl server engine" +msgstr "" + +#: gnu/packages/web.scm:2497 +msgid "" +"Net::Server is an extensible, generic Perl server engine.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" +"It includes with it the ability to run as an inetd\n" +"process (Net::Server::INET), a single connection server (Net::Server or= \n" +"Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" +"server which maintains a constant number of preforked\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" +"or to multiple server ports." +msgstr "" + +#: gnu/packages/web.scm:2525 +msgid "SSL support for Net::SMTP" +msgstr "" + +#: gnu/packages/web.scm:2526 +msgid "SSL support for Net::SMTP." +msgstr "" + +#: gnu/packages/web.scm:2560 +msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" +msgstr "" + +#: gnu/packages/web.scm:2561 +msgid "" +"Plack is a set of tools for using the PSGI stack. It\n" +"contains middleware components, a reference server, and utilities for W= eb\n" +"application frameworks. Plack is like Ruby's Rack or Python's Paste fo= r\n" +"WSGI." +msgstr "" + +#: gnu/packages/web.scm:2587 +msgid "Plack::Middleware which sets body for redirect response" +msgstr "" + +#: gnu/packages/web.scm:2588 +msgid "" +"This module sets the body in redirect response, if it's not\n" +"already set." +msgstr "" + +#: gnu/packages/web.scm:2611 +msgid "Override REST methods to Plack apps via POST" +msgstr "" + +#: gnu/packages/web.scm:2612 +msgid "" +"This middleware allows for POST requests that pretend to be\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" +"can say what method it actually meant." +msgstr "" + +#: gnu/packages/web.scm:2636 +msgid "Plack::Middleware which removes body for HTTP response" +msgstr "" + +#: gnu/packages/web.scm:2637 +msgid "" +"This module removes the body in an HTTP response if it's not\n" +"required." +msgstr "" + +#: gnu/packages/web.scm:2658 +msgid "Supports app to run as a reverse proxy backend" +msgstr "" + +#: gnu/packages/web.scm:2659 +msgid "" +"Plack::Middleware::ReverseProxy resets some HTTP headers,\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" +"and stop fake requests using 'enable_if' directive in your app.psgi." +msgstr "" + +#: gnu/packages/web.scm:2680 +msgid "Run HTTP tests on external live servers" +msgstr "" + +#: gnu/packages/web.scm:2681 +msgid "" +"This module allows your to run your Plack::Test tests\n" +"against an external server instead of just against a local application = " +"through\n" +"either mocked HTTP or a locally spawned server." +msgstr "" + +#: gnu/packages/web.scm:2703 +msgid "Testing TCP programs" +msgstr "" + +#: gnu/packages/web.scm:2704 +msgid "Test::TCP is test utilities for TCP/IP programs." +msgstr "" + +#: gnu/packages/web.scm:2732 +msgid "Testing-specific WWW::Mechanize subclass" +msgstr "" + +#: gnu/packages/web.scm:2733 +msgid "" +"Test::WWW::Mechanize is a subclass of the Perl module\n" +"WWW::Mechanize that incorporates features for web application testing." +msgstr "" + +#: gnu/packages/web.scm:2766 +msgid "Test::WWW::Mechanize for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:2767 +msgid "" +"The Test::WWW::Mechanize::Catalyst module meshes the\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" +"testing of Catalyst applications without needing to start up a web serv= er." +msgstr "" + +#: gnu/packages/web.scm:2791 +msgid "Test PSGI programs using WWW::Mechanize" +msgstr "" + +#: gnu/packages/web.scm:2792 +msgid "" +"PSGI is a specification to decouple web server environments\n" +"from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" +"WWW::Mechanize that incorporates features for web application testing. = The\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" +"applications." +msgstr "" + +#: gnu/packages/web.scm:2812 +msgid "Perl Uniform Resource Identifiers (absolute and relative)" +msgstr "" + +#: gnu/packages/web.scm:2814 +msgid "" +"The URI module implements the URI class. Objects of this class\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" +"and updated by RFC 2732." +msgstr "" + +#: gnu/packages/web.scm:2837 +msgid "Find URIs in arbitrary text" +msgstr "" + +#: gnu/packages/web.scm:2838 +msgid "" +"This module finds URIs and URLs (according to what URI.pm\n" +"considers a URI) in plain text. It only finds URIs which include a\n" +"scheme (http:// or the like), for something a bit less strict, consider= \n" +"URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." +msgstr "" + +#: gnu/packages/web.scm:2860 +msgid "WebSocket support for URI package" +msgstr "" + +#: gnu/packages/web.scm:2861 +msgid "" +"With this module, the URI package provides the same set of\n" +"methods for WebSocket URIs as it does for HTTP URIs." +msgstr "" + +#: gnu/packages/web.scm:2881 +msgid "Perl extension interface for libcurl" +msgstr "" + +#: gnu/packages/web.scm:2883 +msgid "" +"This is a Perl extension interface for the libcurl file downloading\n" +"library." +msgstr "" + +#: gnu/packages/web.scm:2912 +msgid "Web browsing in a Perl object" +msgstr "" + +#: gnu/packages/web.scm:2913 +msgid "" +"WWW::Mechanize is a Perl module for stateful programmatic\n" +"web browsing, used for automating interaction with websites." +msgstr "" + +#: gnu/packages/web.scm:2933 +msgid "Perl database of robots.txt-derived permissions" +msgstr "" + +#: gnu/packages/web.scm:2935 +msgid "" +"The WWW::RobotRules module parses /robots.txt files as specified in\n" +"\"A Standard for Robot Exclusion\", at\n" +". Webmasters can use the\n" +"/robots.txt file to forbid conforming robots from accessing parts of\n" +"their web site." +msgstr "" + +#: gnu/packages/web.scm:2955 +msgid "HTTP and WebSocket server library for R" +msgstr "" + +#: gnu/packages/web.scm:2957 +msgid "" +"The httpuv package provides low-level socket and protocol support for\n= " +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" +"intended as a building block for other packages, rather than making it\= n" +"particularly easy to create complete web applications using httpuv alon= e." +msgstr "" + +#: gnu/packages/web.scm:2978 +msgid "Robust, high performance JSON parser and generator for R" +msgstr "" + +#: gnu/packages/web.scm:2980 +msgid "" +"The jsonlite package provides a fast JSON parser and generator optimize= d\n" +"for statistical data and the web. It offers flexible, robust, high\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" +"in systems and applications." +msgstr "" + +#: gnu/packages/web.scm:3008 +msgid "Simple HTTP server to serve static files or dynamic documents" +msgstr "" + +#: gnu/packages/web.scm:3010 +msgid "" +"Servr provides an HTTP server in R to serve static files, or dynamic\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" +"directory." +msgstr "" + +#: gnu/packages/web.scm:3029 +msgid "R tools for HTML" +msgstr "" + +#: gnu/packages/web.scm:3031 +msgid "This package provides tools for HTML generation and output in R." +msgstr "" + +#: gnu/packages/web.scm:3050 +msgid "HTML Widgets for R" +msgstr "" + +#: gnu/packages/web.scm:3052 +msgid "" +"HTML widgets is a framework for creating HTML widgets that render in\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" +"applications." +msgstr "" + +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" +msgstr "" + +#: gnu/packages/web.scm:3073 +msgid "" +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." +msgstr "" + +#: gnu/packages/web.scm:3107 +msgid "HTML5 parsing library" +msgstr "" + +#: gnu/packages/web.scm:3109 +msgid "" +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." +msgstr "" + +#: gnu/packages/weechat.scm:98 +msgid "Extensible chat client" +msgstr "" + +#: gnu/packages/weechat.scm:99 +msgid "" +"WeeChat (Wee Enhanced Environment for Chat) is an\n" +"Internet Relay Chat client, which is designed to be light and fast.\n" +"The client uses a curses frontend, and there are remote interfaces\n" +"for Web, Qt, Android and Emacs. In WeeChat everything can be done\n" +"with a keyboard, though it also supports mouse. It is customizable\n" +"and extensible with plugins and scripts." +msgstr "" + +#: gnu/packages/wordnet.scm:79 +msgid "Lexical database for the English language" +msgstr "" + +#: gnu/packages/wordnet.scm:81 +msgid "" +"WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" +"each expressing a distinct concept. Synsets are interlinked by means o= f\n" +"conceptual-semantic and lexical relations. The resulting network of\n" +"meaningfully related words and concepts can be navigated with the brows= er.\n" +"WordNet is also freely and publicly available for download. WordNet's\= n" +"structure makes it a useful tool for computational linguistics and natu= ral\n" +"language processing." +msgstr "" + +#: gnu/packages/xiph.scm:66 +msgid "Library for manipulating the ogg multimedia format" +msgstr "" + +#: gnu/packages/xiph.scm:68 +msgid "" +"The libogg library allows to manipulate the ogg multimedia container\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" +"audio and video data. In addition to encapsulation and interleaving of= \n" +"multiple data streams, ogg provides packet framing, error detection, an= d\n" +"periodic timestamps for seeking." +msgstr "" + +#: gnu/packages/xiph.scm:92 +msgid "Library implementing the vorbis audio format" +msgstr "" + +#: gnu/packages/xiph.scm:94 +msgid "" +"The libvorbis library implements the ogg vorbis audio format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit,= \n" +"polyphonic) audio and music at fixed and variable bitrates from 16 to\n= " +"128 kbps/channel." +msgstr "" + +#: gnu/packages/xiph.scm:119 +msgid "Library implementing the Theora video format" +msgstr "" + +#: gnu/packages/xiph.scm:121 +msgid "" +"The libtheora library implements the ogg theora video format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed video format." +msgstr "" + +#: gnu/packages/xiph.scm:142 +msgid "Library for patent-free audio compression format" +msgstr "" + +#: gnu/packages/xiph.scm:144 +msgid "" +"GNU Speex is a patent-free audio compression codec specially designed\n= " +"for speech. It is well-adapted to internet applications, such as VoIP.= It\n" +"features compression of different bands in the same bitstream, intensit= y\n" +"stereo encoding, and voice activity detection." +msgstr "" + +#: gnu/packages/xiph.scm:174 +msgid "Cross platform audio library" +msgstr "" + +#: gnu/packages/xiph.scm:176 +msgid "" +"Libao is a cross-platform audio library that allows programs to\n" +"output audio using a simple API on a wide variety of platforms.\n" +"It currently supports:\n" +"Null output (handy for testing without a sound device),\n" +"WAV files,\n" +"AU files,\n" +"RAW files,\n" +"OSS (Open Sound System, used on Linux and FreeBSD),\n" +"ALSA (Advanced Linux Sound Architecture),\n" +"aRts (Analog RealTime Synth, used by KDE),\n" +"PulseAudio (next generation GNOME sound server),\n" +"esd (EsounD or Enlightened Sound Daemon),\n" +"Mac OS X,\n" +"Windows (98 and later),\n" +"AIX,\n" +"Sun/NetBSD/OpenBSD,\n" +"IRIX,\n" +"NAS (Network Audio Server),\n" +"RoarAudio (Modern, multi-OS, networked Sound System),\n" +"OpenBSD's sndio." +msgstr "" + +#: gnu/packages/xiph.scm:215 +msgid "Free lossless audio codec" +msgstr "" + +#: gnu/packages/xiph.scm:217 +msgid "" +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" +"meaning that audio is compressed in FLAC without any loss in quality." +msgstr "" + +#: gnu/packages/xiph.scm:243 +msgid "Karaoke and text codec for embedding in ogg" +msgstr "" + +#: gnu/packages/xiph.scm:245 +msgid "" +"Kate is an overlay codec, originally designed for karaoke and text,\n" +"that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" +"stream, and animated. Most of the time, this would be multiplexed with= \n" +"audio/video to carry subtitles, song lyrics (with or without karaoke da= ta),\n" +"etc., but doesn't have to be.\n" +"\n" +"Series of curves (splines, segments, etc.) may be attached to various\n= " +"properties (text position, font size, etc.) to create animated overlays= .\n" +"This allows scrolling or fading text to be defined. This can even be u= sed\n" +"to draw arbitrary shapes, so hand drawing can also be represented by a\= n" +"Kate stream." +msgstr "" + +#: gnu/packages/xiph.scm:279 +msgid "Ogg vorbis tools" +msgstr "" + +#: gnu/packages/xiph.scm:281 +msgid "" +"Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" +"general-purpose compressed audio format.\n" +"\n" +"The package vorbis-tools contains\n" +"ogg123, an ogg vorbis command line audio player;\n" +"oggenc, the ogg vorbis encoder;\n" +"oggdec, a simple, portable command line decoder (to wav and raw);\n" +"ogginfo, to obtain information (tags, bitrate, length, etc.) about\n" +" an ogg vorbis file." +msgstr "" + +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 +msgid "Versatile audio codec" +msgstr "" + +#: gnu/packages/xiph.scm:308 +msgid "" +"Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" +"but is also intended for storage and streaming applications. It is\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" +"incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." +msgstr "" + +#: gnu/packages/xiph.scm:342 +msgid "Command line utilities to encode, inspect, and decode .opus files= " +msgstr "" + +#: gnu/packages/xiph.scm:343 +msgid "" +"Opus is a royalty-free, highly versatile audio codec.\n" +"Opus-tools provide command line utilities for creating, inspecting and\= n" +"decoding .opus files." +msgstr "" + +#: gnu/packages/xiph.scm:371 +msgid "" +"The opusfile library provides seeking, decode, and playback of Opus\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" +"windows systems." +msgstr "" + +#: gnu/packages/xiph.scm:401 +#, fuzzy +msgid "Streaming media server" +msgstr "=D0=A3=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=87 =D0=BF=D1=80=D0= =BE=D1=82=D0=BE=D0=BA=D0=B0" + +#: gnu/packages/xiph.scm:402 +msgid "" +"Icecast is a streaming media server which currently supports\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" +"create an Internet radio station or a privately running jukebox and man= y\n" +"things in between." +msgstr "" + +#: gnu/packages/xiph.scm:430 +msgid "Audio streaming library for icecast encoders" +msgstr "" + +#: gnu/packages/xiph.scm:432 +msgid "" +"Libshout is a library for communicating with and sending data to an\n" +"icecast server. It handles the socket connection, the timing of the da= ta,\n" +"and prevents bad data from getting to the icecast server." +msgstr "" + +#: gnu/packages/zip.scm:57 +#, fuzzy +msgid "Compression and file packing utility" +msgstr "=D0=A3=D0=BF=D0=BE=D1=80=D0=B5=D1=92=D0=B8=D0=B2=D0=B0=D1=9A=D0=B5= =D0=B8 =D1=81=D1=82=D0=B0=D0=BF=D0=B0=D1=9A=D0=B5 =D0=B4=D0=B0=D1=82=D0=BE= =D1=82=D0=B5=D0=BA=D0=B0" + +#: gnu/packages/zip.scm:59 +msgid "" +"Zip is a compression and file packaging/archive utility. Zip is useful= \n" +"for packaging a set of files for distribution, for archiving files, and= for\n" +"saving disk space by temporarily compressing unused files or directorie= s.\n" +"Zip puts one or more compressed files into a single ZIP archive, along = with\n" +"information about the files (name, path, date, time of last modificatio= n,\n" +"protection, and check information to verify file integrity). An entire= \n" +"directory structure can be packed into a ZIP archive with a single comm= and.\n" +"\n" +"Zip has one compression method (deflation) and can also store files wit= hout\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" +"Compression ratios of 2:1 to 3:1 are common for text files." +msgstr "" + +#: gnu/packages/zip.scm:113 +msgid "Decompression and file extraction utility" +msgstr "" + +#: gnu/packages/zip.scm:115 +msgid "" +"UnZip is an extraction utility for archives compressed in .zip format,\= n" +"also called \"zipfiles\".\n" +"\n" +"UnZip lists, tests, or extracts files from a .zip archive. The default= \n" +"behaviour (with no options) is to extract into the current directory, a= nd\n" +"subdirectories below it, all files from the specified zipfile. UnZip\n= " +"recreates the stored directory structure by default." +msgstr "" + +#: gnu/packages/zip.scm:149 +msgid "Library for accessing zip files" +msgstr "" + +#: gnu/packages/zip.scm:151 +msgid "ZZipLib is a library based on zlib for accessing zip files." +msgstr "" + +#: gnu/packages/zip.scm:169 +msgid "Provides an interface to ZIP archive files" +msgstr "" + +#: gnu/packages/zsh.scm:71 +msgid "Powerful shell for interactive use and scripting" +msgstr "" + +#: gnu/packages/zsh.scm:72 +msgid "" +"The Z shell (zsh) is a Unix shell that can be used\n" +"as an interactive login shell and as a powerful command interpreter\n" +"for shell scripting. Zsh can be thought of as an extended Bourne shell= \n" +"with a large number of improvements, including some features of bash,\n= " +"ksh, and tcsh." +msgstr "" + +#~ msgid "Complete GCC tool chain for C/C++ development" +#~ msgstr "=D0=9F=D0=BE=D1=82=D0=BF=D1=83=D0=BD=D0=B8 =D0=93=D0=A6=D0=A6= =D1=81=D0=BA=D1=83=D0=BF =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=B7=D0=B0 =D0= =A6/=D0=A6++ =D1=80=D0=B0=D0=B7=D0=B2=D0=BE=D1=98" + +#~ msgid "" +#~ "This package provides a complete GCC tool chain for C/C++ developmen= t to\n" +#~ "be installed in user profiles. This includes GCC, as well as libc " +#~ "(headers\n" +#~ "and binaries, plus debugging symbols in the 'debug' output), and Bin= utils." +#~ msgstr "" +#~ "=D0=9E=D0=B2=D0=B0=D1=98 =D0=BF=D0=B0=D0=BA=D0=B5=D1=82 =D1=81=D0=B0= =D0=B4=D1=80=D0=B6=D0=B8 =D0=BF=D0=BE=D1=82=D0=BF=D1=83=D0=BD=D0=B8 =D0=93= =D0=A6=D0=A6 =D1=81=D0=BA=D1=83=D0=BF =D0=B0=D0=BB=D0=B0=D1=82=D0=B0 =D0=B7= =D0=B0 =D0=A6/=D0=A6++ =D1=80=D0=B0=D0=B7=D0=B2=D0=BE=D1=98\n" +#~ "=D0=B7=D0=B0 =D0=B8=D0=BD=D1=81=D1=82=D0=B0=D0=BB=D0=B8=D1=80=D0=B0=D1= =9A=D0=B5 =D1=83 =D0=BA=D0=BE=D1=80=D0=B8=D1=81=D0=BD=D0=B8=D1=87=D0=BA=D0= =B8=D0=BC =D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB=D0=B8=D0=BC=D0=B0. =D0=A3= =D0=BA=D1=99=D1=83=D1=87=D1=83=D1=98=D0=B5 =D0=93=D0=A6=D0=A6, =D0=BA=D0=B0= =D0=BE =D0=B8 " +#~ "=E2=80=9Elibc=E2=80=9C (=D0=B7=D0=B0=D0=B3=D0=BB=D0=B0=D0=B2=D1=99=D0= =B0\n" +#~ "=D0=B8 =D0=B8=D0=B7=D0=B2=D1=80=D1=88=D0=BD=D0=B5, =D0=BF=D0=BB=D1=83= =D1=81 =D1=81=D0=B8=D0=BC=D0=B1=D0=BE=D0=BB=D0=B5 =D0=BF=D1=80=D0=BE=D1=87= =D0=B8=D1=88=D1=9B=D0=B0=D0=B2=D0=B0=D1=9A=D0=B0 =D1=83 =E2=80=9Edebug=E2= =80=9C =D0=B8=D0=B7=D0=BB=D0=B0=D0=B7=D1=83), =D0=B8 =E2=80=9EBinutils=E2= =80=9C." + +#~ msgid "Lout, a document layout system similar in style to LaTeX" +#~ msgstr "=D0=9B=D0=BE=D1=83=D1=82, =D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC= =D0=B8=D0=B7=D0=B3=D0=BB=D0=B5=D0=B4=D0=B0 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC= =D0=B5=D0=BD=D1=82=D0=B0 =D1=81=D0=BB=D0=B8=D1=87=D0=B0=D0=BD =D1=83 =D1=81= =D1=82=D0=B8=D0=BB=D1=83 =D0=9B=D0=B0=D0=A2=D0=B5=D0=A5-=D1=83" diff --git a/po/packages/vi.po b/po/packages/vi.po index cc55fd5..7d4c229 100644 --- a/po/packages/vi.po +++ b/po/packages/vi.po @@ -3,11 +3,12 @@ # This file is distributed under the same license as the guix package. # Tr=E1=BA=A7n Ng=E1=BB=8Dc Qu=C3=A2n , 2013. # +#: gnu/packages/databases.scm:625 msgid "" msgstr "" "Project-Id-Version: guix 0.5-pre2\n" "Report-Msgid-Bugs-To: ludo@gnu.org\n" -"POT-Creation-Date: 2014-07-14 11:59+0200\n" +"POT-Creation-Date: 2016-02-14 14:41+0100\n" "PO-Revision-Date: 2013-12-04 07:48+0700\n" "Last-Translator: Tr=E1=BA=A7n Ng=E1=BB=8Dc Qu=C3=A2n \n" "Language-Team: Vietnamese \n= " @@ -19,303 +20,11382 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Generator: Poedit 1.5.5\n" =20 -#: gnu/packages/base.scm:65 +#: gnu/packages/abiword.scm:101 +msgid "Word processing program" +msgstr "" + +#. TRANSLATORS: Dear translator, We would like to inform you that packag= e +#. descriptions may occasionally include Texinfo markup. Texinfo markup +#. looks like "@code{rm -rf}", "@emph{important}", etc. When translatin= g, +#. please leave markup as is. +#: gnu/packages/abiword.scm:110 +msgid "" +"AbiWord is a word processing program. It is rapidly\n" +"becoming a state of the art word processor, with lots of features usefu= l " +"for\n" +"your daily work, personal needs, or for just some good old typing fun." +msgstr "" + +#: gnu/packages/aspell.scm:53 gnu/packages/libreoffice.scm:616 +msgid "Spell checker" +msgstr "" + +#: gnu/packages/aspell.scm:55 +msgid "" +"Aspell is a spell-checker which can be used either as a library or as\n= " +"a standalone program. Notable features of Aspell include its full supp= ort " +"of\n" +"documents written in the UTF-8 encoding and its ability to use multiple= \n" +"dictionaries, including personal ones." +msgstr "" + +#: gnu/packages/aspell.scm:95 +msgid "This package provides a dictionary for the GNU Aspell spell check= er." +msgstr "" + +#: gnu/packages/audio.scm:95 +msgid "Realtime modular synthesizer and effect processor" +msgstr "" + +#: gnu/packages/audio.scm:97 +msgid "" +"AlsaModularSynth is a digital implementation of a classical analog\n" +"modular synthesizer system. It uses virtual control voltages to contro= l " +"the\n" +"parameters of the modules. The control voltages which control the " +"frequency\n" +"e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Contro= lled\n" +"Filter) modules follow the convention of 1V / Octave." +msgstr "" + +#: gnu/packages/audio.scm:134 +msgid "Library for audio labelling" +msgstr "" + +#: gnu/packages/audio.scm:136 +msgid "" +"aubio is a tool designed for the extraction of annotations from audio\n= " +"signals. Its features include segmenting a sound file before each of i= ts\n" +"attacks, performing pitch detection, tapping the beat and producing MID= I\n" +"streams from live audio." +msgstr "" + +#: gnu/packages/audio.scm:228 +msgid "Digital audio workstation" +msgstr "" + +#: gnu/packages/audio.scm:230 +msgid "" +"Ardour is a multi-channel digital audio workstation, allowing users to\= n" +"record, edit, mix and master audio and MIDI projects. It is targeted a= t " +"audio\n" +"engineers, musicians, soundtrack editors and composers." +msgstr "" + +#: gnu/packages/audio.scm:262 +msgid "Tonewheel organ synthesizer" +msgstr "" + +#: gnu/packages/audio.scm:264 +msgid "" +"AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\= n" +"with drawbars, distortion and rotating speakers. The organ has three\n= " +"sections, two polyphonic sections with nine drawbars each and one " +"monophonic\n" +"bass section with five drawbars. A standalone JACK application and LV2= \n" +"plugins are provided." +msgstr "" + +#: gnu/packages/audio.scm:301 +msgid "Audio plug-in pack for LV2 and JACK environments" +msgstr "" + +#: gnu/packages/audio.scm:303 +msgid "" +"Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments= .\n" +"The suite contains lots of effects (delay, modulation, signal processin= g,\n" +"filters, equalizers, dynamics, distortion and mastering effects),\n" +"instruments (SF2 player, organ simulator and a monophonic synthesizer) = and\n" +"tools (analyzer, mono/stereo tools, crossovers)." +msgstr "" + +#: gnu/packages/audio.scm:346 +msgid "Sound and music computing system" +msgstr "" + +#: gnu/packages/audio.scm:348 +msgid "" +"Csound is a user-programmable and user-extensible sound processing\n" +"language and software synthesizer." +msgstr "" + +#: gnu/packages/audio.scm:391 gnu/packages/audio.scm:1976 +msgid "C++ wrapper around the ALSA API" +msgstr "" + +#: gnu/packages/audio.scm:393 +msgid "" +"clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" +"ALSA PCM devices." +msgstr "" + +#: gnu/packages/audio.scm:428 +msgid "SoundFont synthesizer" +msgstr "" + +#: gnu/packages/audio.scm:430 +msgid "" +"FluidSynth is a real-time software synthesizer based on the SoundFont 2= \n" +"specifications. FluidSynth reads and handles MIDI events from the MIDI= " +"input\n" +"device. It is the software analogue of a MIDI synthesizer. FluidSynth= can\n" +"also play midifiles using a Soundfont." +msgstr "" + +#: gnu/packages/audio.scm:462 +msgid "MPEG-4 and MPEG-2 AAC decoder" +msgstr "" + +#: gnu/packages/audio.scm:464 +msgid "" +"FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR= ,\n" +"PS, and DAB+." +msgstr "" + +#: gnu/packages/audio.scm:493 +msgid "Signal processing language" +msgstr "" + +#: gnu/packages/audio.scm:495 +msgid "Faust is a programming language for realtime audio signal process= ing." +msgstr "" + +#: gnu/packages/audio.scm:530 +msgid "GUS compatible patches for MIDI players" +msgstr "" + +#: gnu/packages/audio.scm:532 +msgid "" +"FreePats is a project to create a free and open set of GUS compatible\n= " +"patches that can be used with softsynths such as Timidity and WildMidi.= " +msgstr "" + +#: gnu/packages/audio.scm:585 +msgid "Virtual guitar amplifier" +msgstr "" + +#: gnu/packages/audio.scm:586 +msgid "" +"Guitarix is a virtual guitar amplifier running JACK.\n" +"Guitarix takes the signal from your guitar as a mono-signal from your s= ound\n" +"card. The input is processed by a main amp and a rack-section. Both c= an " +"be\n" +"routed separately and deliver a processed stereo-signal via JACK. You = may\n" +"fill the rack with effects from more than 25 built-in modules including= " +"stuff\n" +"from a simple noise gate to modulation effects like flanger, phaser or\= n" +"auto-wah." +msgstr "" + +#: gnu/packages/audio.scm:632 +msgid "Audio effects processor" +msgstr "" + +#: gnu/packages/audio.scm:634 +msgid "" +"Rakarrack is a richly featured multi-effects processor emulating a\n" +"guitar effects pedalboard. Effects include compressor, expander, noise= " +"gate,\n" +"equalizers, exciter, flangers, chorus, various delay and reverb effects= ,\n" +"distortion modules and many more. Most of the effects engine is built = from\n" +"modules found in the excellent software synthesizer ZynAddSubFX. Prese= ts " +"and\n" +"user interface are optimized for guitar, but Rakarrack processes signal= s in\n" +"stereo while it does not apply internal band-limiting filtering, and th= us " +"is\n" +"well suited to all musical instruments and vocals." +msgstr "" + +#: gnu/packages/audio.scm:678 +msgid "LV2 convolution reverb" +msgstr "" + +#: gnu/packages/audio.scm:680 +msgid "" +"IR is a low-latency, real-time, high performance signal convolver\n" +"especially for creating reverb effects. It supports impulse responses = with " +"1,\n" +"2 or 4 channels, in any soundfile format supported by libsndfile." +msgstr "" + +#: gnu/packages/audio.scm:710 +msgid "JACK audio connection kit" +msgstr "" + +#: gnu/packages/audio.scm:712 +msgid "" +"JACK is a low-latency audio server. It can connect a number of\n" +"different applications to an audio device, as well as allowing them to = " +"share\n" +"audio between themselves. JACK is different from other audio server " +"efforts\n" +"in that it has been designed from the ground up to be suitable for\n" +"professional audio work. This means that it focuses on two key areas:\= n" +"synchronous execution of all clients, and low latency operation." +msgstr "" + +#: gnu/packages/audio.scm:810 +msgid "Simple LV2 host for JACK" +msgstr "" + +#: gnu/packages/audio.scm:812 +msgid "" +"Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" +"plugins and exposes their ports as JACK ports, essentially making any L= V2\n" +"plugin function as a JACK application." +msgstr "" + +#: gnu/packages/audio.scm:855 +msgid "Linux Audio Developer's Simple Plugin API (LADSPA)" +msgstr "" + +#: gnu/packages/audio.scm:857 +msgid "" +"LADSPA is a standard that allows software audio processors and effects\= n" +"to be plugged into a wide range of audio synthesis and recording packag= es." +msgstr "" + +#: gnu/packages/audio.scm:893 +msgid "Audio application session manager" +msgstr "" + +#: gnu/packages/audio.scm:895 +msgid "" +"LASH is a session management system for audio applications. It allows\= n" +"you to save and restore audio sessions consisting of multiple interconn= eced\n" +"applications, restoring program state (i.e. loaded patches) and the\n" +"connections between them." +msgstr "" + +#: gnu/packages/audio.scm:916 +msgid "Bauer stereophonic-to-binaural DSP" +msgstr "" + +#: gnu/packages/audio.scm:918 +msgid "" +"The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" +"designed to improve headphone listening of stereo audio records. " +"Recommended\n" +"for headphone prolonged listening to disable superstereo fatigue withou= t\n" +"essential distortions." +msgstr "" + +#: gnu/packages/audio.scm:943 +msgid "Implementation of the Open Sound Control protocol" +msgstr "" + +#: gnu/packages/audio.scm:945 +msgid "" +"liblo is a lightweight library that provides an easy to use\n" +"implementation of the Open Sound Control (OSC) protocol." +msgstr "" + +#: gnu/packages/audio.scm:982 +msgid "Library to simplify use of LV2 plugins in applications" +msgstr "" + +#: gnu/packages/audio.scm:984 +msgid "" +"Lilv is a C library to make the use of LV2 plugins as simple as possibl= e\n" +"for applications. Lilv is the successor to SLV2, rewritten to be\n" +"significantly faster and have minimal dependencies." +msgstr "" + +#: gnu/packages/audio.scm:1011 +msgid "LV2 audio plugin specification" +msgstr "" + +#: gnu/packages/audio.scm:1013 +msgid "" +"LV2 is an open specification for audio plugins and host applications.\n= " +"At its core, LV2 is a simple stable interface, accompanied by extension= s " +"which\n" +"add functionality to support the needs of increasingly powerful audio\n= " +"software." +msgstr "" + +#: gnu/packages/audio.scm:1048 +msgid "LV2 port of the mda Piano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1049 +msgid "An LV2 port of the mda Piano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1062 +msgid "LV2 port of the mda EPiano plugin" +msgstr "" + +#: gnu/packages/audio.scm:1063 +msgid "An LV2 port of the mda EPiano VSTi." +msgstr "" + +#: gnu/packages/audio.scm:1101 +msgid "C++ libraries for LV2 plugins" +msgstr "" + +#: gnu/packages/audio.scm:1103 +msgid "" +"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n= " +"extensions into easy to use C++ classes. It is the successor of\n" +"lv2-c++-tools." +msgstr "" + +#: gnu/packages/audio.scm:1144 +msgid "3D audio API" +msgstr "" + +#: gnu/packages/audio.scm:1146 +msgid "" +"OpenAL provides capabilities for playing audio in a virtual 3D\n" +"environment. Distance attenuation, doppler shift, and directional soun= d\n" +"emitters are among the features handled by the API. More advanced effe= cts,\n" +"including air absorption, occlusion, and environmental reverb, are " +"available\n" +"through the EFX extension. It also facilitates streaming audio, multi-= " +"channel\n" +"buffers, and audio capture." +msgstr "" + +#: gnu/packages/audio.scm:1180 +msgid "Modular patch bay for audio and MIDI systems" +msgstr "" + +#: gnu/packages/audio.scm:1182 +msgid "" +"Patchage is a modular patch bay for audio and MIDI systems based on JAC= K\n" +"and ALSA." +msgstr "" + +#: gnu/packages/audio.scm:1207 +msgid "Real-time audio utility library" +msgstr "" + +#: gnu/packages/audio.scm:1209 +msgid "" +"Raul (Real-time Audio Utility Library) is a C++ utility library primari= ly\n" +"aimed at audio/musical applications." +msgstr "" + +#: gnu/packages/audio.scm:1235 +msgid "Audio time-stretching and pitch-shifting library" +msgstr "" + +#: gnu/packages/audio.scm:1237 +msgid "" +"Rubber Band is a library and utility program that permits changing the\= n" +"tempo and pitch of an audio recording independently of one another." +msgstr "" + +#: gnu/packages/audio.scm:1285 +msgid "Cross-platform MIDI library for C++" +msgstr "" + +#: gnu/packages/audio.scm:1287 +msgid "" +"RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n= " +"classes) that provide a common cross-platform API for realtime MIDI\n" +"input/output." +msgstr "" + +#: gnu/packages/audio.scm:1313 +msgid "Library for serialising LV2 atoms to/from RDF" +msgstr "" + +#: gnu/packages/audio.scm:1315 +msgid "" +"Sratom is a library for serialising LV2 atoms to/from RDF, particularly= \n" +"the Turtle syntax." +msgstr "" + +#: gnu/packages/audio.scm:1340 +msgid "Library for loading and wrapping LV2 plugin UIs" +msgstr "" + +#: gnu/packages/audio.scm:1342 +msgid "" +"Suil is a lightweight C library for loading and wrapping LV2 plugin UIs= .\n" +"\n" +"Suil makes it possible to load a UI of a toolkit in a host using anothe= r\n" +"toolkit. The API is designed such that hosts do not need to explicitly= \n" +"support specific toolkits =E2=80=93 if Suil supports a particular toolk= it, then UIs " +"in\n" +"that toolkit will work in all hosts that use Suil automatically.\n" +"\n" +"Suil currently supports every combination of Gtk 2, Qt 4, and X11." +msgstr "" + +#: gnu/packages/audio.scm:1399 +msgid "Software synthesizer for playing MIDI files" +msgstr "" + +#: gnu/packages/audio.scm:1401 +msgid "" +"TiMidity++ is a software synthesizer. It can play MIDI files by\n" +"converting them into PCM waveform data; give it a MIDI data along with = " +"digital\n" +"instrument data files, then it synthesizes them in real-time, and plays= . " +"It\n" +"can not only play sounds, but also can save the generated waveforms int= o " +"hard\n" +"disks as various audio file formats." +msgstr "" + +#: gnu/packages/audio.scm:1440 +msgid "Modular and extensible audio processing system" +msgstr "" + +#: gnu/packages/audio.scm:1442 +msgid "" +"Vamp is an audio processing plugin system for plugins that extract\n" +"descriptive information from audio data =E2=80=94 typically referred to= as audio\n" +"analysis plugins or audio feature extraction plugins." +msgstr "" + +#: gnu/packages/audio.scm:1481 +msgid "Library for time stretching and pitch scaling of audio" +msgstr "" + +#: gnu/packages/audio.scm:1483 +msgid "" +"SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" +"stretching and pitch scaling of audio. This package contains the libra= ry." +msgstr "" + +#: gnu/packages/audio.scm:1506 +msgid "Hybrid lossless audio codec" +msgstr "" + +#: gnu/packages/audio.scm:1508 +msgid "" +"WavPack is an audio compression format with lossless, lossy and hybrid\= n" +"compression modes. This package contains command-line programs and lib= rary " +"to\n" +"encode and decode wavpack files." +msgstr "" + +#: gnu/packages/audio.scm:1527 +msgid "Mod file playing library" +msgstr "" + +#: gnu/packages/audio.scm:1529 +msgid "" +"Libmodplug renders mod music files as raw audio data, for playing or\n" +"conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats = are\n" +"supported. Optional features include high-quality resampling, bass " +"expansion,\n" +"surround and reverb." +msgstr "" + +#: gnu/packages/audio.scm:1548 +msgid "Module player library" +msgstr "" + +#: gnu/packages/audio.scm:1550 +msgid "" +"Libxmp is a library that renders module files to PCM data. It supports= \n" +"over 90 mainstream and obscure module formats including Protracker (MOD= ),\n" +"Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).= " +msgstr "" + +#: gnu/packages/audio.scm:1573 +msgid "Extended module player" +msgstr "" + +#: gnu/packages/audio.scm:1575 +msgid "" +"Xmp is a portable module player that plays over 90 mainstream and\n" +"obscure module formats, including Protracker MOD, Fasttracker II XM, Sc= ream\n" +"Tracker 3 S3M and Impulse Tracker IT files." +msgstr "" + +#: gnu/packages/audio.scm:1607 +msgid "Audio processing library for changing tempo, pitch and playback r= ate" +msgstr "" + +#: gnu/packages/audio.scm:1609 +msgid "" +"SoundTouch is an audio processing library for changing the tempo, pitch= \n" +"and playback rates of audio streams or audio files. It is intended for= \n" +"application developers writing sound processing tools that require temp= o/" +"pitch\n" +"control functionality, or just for playing around with the sound effect= s." +msgstr "" + +#: gnu/packages/audio.scm:1646 +msgid "Sound processing utility" +msgstr "" + +#: gnu/packages/audio.scm:1648 +msgid "" +"SoX (Sound eXchange) is a command line utility that can convert\n" +"various formats of computer audio files to other formats. It can also\= n" +"apply various effects to these sound files, and, as an added bonus, SoX= \n" +"can play and record audio files." +msgstr "" + +#: gnu/packages/audio.scm:1671 +msgid "One-dimensional sample-rate conversion library" +msgstr "" + +#: gnu/packages/audio.scm:1673 +msgid "" +"The SoX Resampler library (libsoxr) performs one-dimensional sample-rat= e\n" +"conversion. It may be used, for example, to resample PCM-encoded audio= ." +msgstr "" + +#: gnu/packages/audio.scm:1695 +msgid "MPEG Audio Layer 2 (MP2) encoder" +msgstr "" + +#: gnu/packages/audio.scm:1697 +msgid "" +"TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" +"tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code = and\n" +"portions of LAME." +msgstr "" + +#: gnu/packages/audio.scm:1737 +msgid "Audio I/O library" +msgstr "" + +#: gnu/packages/audio.scm:1739 +msgid "" +"PortAudio is a portable C/C++ audio I/O library providing a simple API\= n" +"to record and/or play sound using a callback function or a blocking rea= d/" +"write\n" +"interface." +msgstr "" + +#: gnu/packages/audio.scm:1762 +msgid "Graphical user interface for FluidSynth" +msgstr "" + +#: gnu/packages/audio.scm:1764 +msgid "" +"Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" +"synthesizer written in C++." +msgstr "" + +#: gnu/packages/audio.scm:1802 +msgid "Networked audio system" +msgstr "" + +#: gnu/packages/audio.scm:1804 +msgid "" +"RSound allows you to send audio from an application and transfer it\n" +"directly to a different computer on your LAN network. It is an audio " +"daemon\n" +"with a much different focus than most other audio daemons." +msgstr "" + +#: gnu/packages/audio.scm:1835 +msgid "JACK audio frequency analyzer and display" +msgstr "" + +#: gnu/packages/audio.scm:1837 +msgid "" +"XJackFreak is an audio analysis and equalizing tool for the Jack Audio\= n" +"Connection Kit. It can display the FFT of any input, modify it and out= put " +"the\n" +"result." +msgstr "" + +#: gnu/packages/audio.scm:1883 +msgid "Fast, partitioned convolution engine library" +msgstr "" + +#: gnu/packages/audio.scm:1885 +msgid "" +"Zita convolver is a C++ library providing a real-time convolution\n" +"engine." +msgstr "" + +#: gnu/packages/audio.scm:1930 +msgid "C++ library for resampling audio signals" +msgstr "" + +#: gnu/packages/audio.scm:1932 +msgid "" +"Libzita-resampler is a C++ library for resampling audio signals. It is= \n" +"designed to be used within a real-time processing context, to be fast, = and " +"to\n" +"provide high-quality sample rate conversion." +msgstr "" + +#: gnu/packages/audio.scm:1978 +msgid "" +"Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\= n" +"access to ALSA PCM devices, taking care of the many functions required = to\n" +"open, initialise and use a hw: device in mmap mode, and providing float= ing\n" +"point audio data." +msgstr "" + +#: gnu/packages/audio.scm:2009 +msgid "Cue and toc file parsers and utilities" +msgstr "" + +#: gnu/packages/audio.scm:2010 +msgid "" +"Cuetools is a set of programs that are useful for manipulating\n" +"and using CUE sheet (cue) files and Table of Contents (toc) files. CUE= and " +"TOC\n" +"files are a way to represent the layout of a data or audio CD in a\n" +"machine-readable ASCII format." +msgstr "" + +#: gnu/packages/audio.scm:2029 +msgid "WAVE audio data processing tool" +msgstr "" + +#: gnu/packages/audio.scm:2030 +msgid "" +"shntool is a multi-purpose WAVE data processing and reporting\n" +"utility. File formats are abstracted from its core, so it can process = any " +"file\n" +"that contains WAVE data, compressed or not---provided there exists a fo= rmat\n" +"module to handle that particular file type." +msgstr "" + +#: gnu/packages/backup.scm:92 +msgid "Encrypted backup using rsync algorithm" +msgstr "" + +#: gnu/packages/backup.scm:94 +msgid "" +"Duplicity backs up directories by producing encrypted tar-format volume= s\n" +"and uploading them to a remote or local file server. Because duplicity= " +"uses\n" +"librsync, the incremental archives are space efficient and only record = the\n" +"parts of files that have changed since the last backup. Because duplic= ity\n" +"uses GnuPG to encrypt and/or sign these archives, they will be safe fro= m\n" +"spying and/or modification by the server." +msgstr "" + +#: gnu/packages/backup.scm:128 +msgid "Simple incremental backup tool" +msgstr "" + +#: gnu/packages/backup.scm:130 +msgid "" +"Hdup2 is a backup utility, its aim is to make backup really simple. Th= e\n" +"backup scheduling is done by means of a cron job. It supports an\n" +"include/exclude mechanism, remote backups, encrypted backups and split\= n" +"backups (called chunks) to allow easy burning to CD/DVD." +msgstr "" + +#: gnu/packages/backup.scm:185 +msgid "Multi-format archive and compression library" +msgstr "" + +#: gnu/packages/backup.scm:187 +msgid "" +"Libarchive provides a flexible interface for reading and writing\n" +"archives in various formats such as tar and cpio. Libarchive also supp= orts\n" +"reading and writing archives compressed using various compression filte= rs " +"such\n" +"as gzip and bzip2. The library is inherently stream-oriented; readers\= n" +"serially iterate through the archive, writers serially add things to th= e\n" +"archive. In particular, note that there is currently no built-in suppo= rt " +"for\n" +"random access nor for in-place modification." +msgstr "" + +#: gnu/packages/backup.scm:250 +msgid "Provide a list of files to backup" +msgstr "" + +#: gnu/packages/backup.scm:252 +msgid "" +"Rdup is a utility inspired by rsync and the plan9 way of doing backups.= \n" +"Rdup itself does not backup anything, it only print a list of absolute\= n" +"file names to standard output. Auxiliary scripts are needed that act o= n " +"this\n" +"list and implement the backup strategy." +msgstr "" + +#: gnu/packages/backup.scm:282 +msgid "Tar-compatible archiver" +msgstr "" + +#: gnu/packages/backup.scm:284 +msgid "" +"Btar is a tar-compatible archiver which allows arbitrary compression an= d\n" +"ciphering, redundancy, differential backup, indexed extraction, multico= re\n" +"compression, input and output serialisation, and tolerance to partial " +"archive\n" +"errors." +msgstr "" + +#: gnu/packages/backup.scm:312 +msgid "Local/remote mirroring+incremental backup" +msgstr "" + +#: gnu/packages/backup.scm:314 +msgid "" +"Rdiff-backup backs up one directory to another, possibly over a network= .\n" +"The target directory ends up a copy of the source directory, but extra = " +"reverse\n" +"diffs are stored in a special subdirectory of that target directory, so= you\n" +"can still recover files lost some time ago. The idea is to combine the= " +"best\n" +"features of a mirror and an incremental backup. Rdiff-backup also " +"preserves\n" +"subdirectories, hard links, dev files, permissions, uid/gid ownership,\= n" +"modification times, extended attributes, acls, and resource forks. Als= o,\n" +"rdiff-backup can operate in a bandwidth efficient manner over a pipe, l= ike\n" +"rsync. Thus you can use rdiff-backup and ssh to securely back a hard d= rive " +"up\n" +"to a remote location, and only the differences will be transmitted. " +"Finally,\n" +"rdiff-backup is easy to use and settings have sensible defaults." +msgstr "" + +#: gnu/packages/backup.scm:353 +msgid "Deduplicating backup program" +msgstr "" + +#: gnu/packages/backup.scm:354 +msgid "" +"Attic is a deduplicating backup program. The main goal of\n" +"Attic is to provide an efficient and secure way to backup data. The da= ta\n" +"deduplication technique used makes Attic suitable for daily backups sin= ce " +"only\n" +"changes are stored." +msgstr "" + +#: gnu/packages/backup.scm:391 +msgid "Tools & library for data backup and distributed storage" +msgstr "" + +#: gnu/packages/backup.scm:393 +msgid "" +"Libchop is a set of utilities and library for data backup and\n" +"distributed storage. Its main application is @command{chop-backup}, an= \n" +"encrypted backup program that supports data integrity checks, versionin= g,\n" +"distribution among several sites, selective sharing of stored data, " +"adaptive\n" +"compression, and more. The library itself implements storage technique= s " +"such\n" +"as content-addressable storage, content hash keys, Merkle trees, simila= rity\n" +"detection, and lossless compression." +msgstr "" + +#: gnu/packages/base.scm:66 msgid "Hello, GNU world: An example GNU package" msgstr "Xin ch=C3=A0o, gia =C4=91=C3=ACnh GNU: M=E1=BB=99t g=C3=B3i GNU = v=C3=AD d=E1=BB=A5" =20 -#: gnu/packages/base.scm:67 +#: gnu/packages/base.scm:68 +msgid "" +"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it " +"supports\n" +"command-line arguments, multiple languages, and so on." +msgstr "" + +#: gnu/packages/base.scm:89 +msgid "Print lines matching a pattern" +msgstr "In ra nh=E1=BB=AFng d=C3=B2ng kh=E1=BB=9Bp v=E1=BB=9Bi m=E1=BB=99= t m=E1=BA=ABu" + +#: gnu/packages/base.scm:91 +msgid "" +"grep is a tool for finding text inside files. Text is found by\n" +"matching a pattern provided by the user in one or many files. The patt= ern\n" +"may be provided as a basic or extended regular expression, or as fixed\= n" +"strings. By default, the matching text is simply printed to the screen= ,\n" +"however the output can be greatly customized to include, for example, l= ine\n" +"numbers. GNU grep offers many extensions over the standard utility,\n" +"including, for example, recursive directory searching." +msgstr "" + +#: gnu/packages/base.scm:114 +msgid "Stream editor" +msgstr "Tr=C3=ACnh so=E1=BA=A1n th=E1=BA=A3o lu=E1=BB=93ng d=E1=BB=AF li= =E1=BB=87u" + +#: gnu/packages/base.scm:129 +msgid "" +"Sed is a non-interactive, text stream editor. It receives a text\n" +"input from a file or from standard input and it then applies a series o= f " +"text\n" +"editing commands to the stream and prints its output to standard output= . " +"It\n" +"is often used for substituting text patterns in a stream. The GNU\n" +"implementation offers several extensions over the standard utility." +msgstr "" + +#: gnu/packages/base.scm:152 +msgid "Managing tar archives" +msgstr "Qu=E1=BA=A3n l=C3=BD kho l=C6=B0u tar" + +#: gnu/packages/base.scm:154 +msgid "" +"Tar provides the ability to create tar archives, as well as the\n" +"ability to extract, update or list files in an existing archive. It is= \n" +"useful for combining many files into one larger file, while maintaining= \n" +"directory structure and file information such as permissions and\n" +"creation/modification dates. GNU tar offers many extensions over the\n= " +"standard utility." +msgstr "" + +#: gnu/packages/base.scm:177 +msgid "Apply differences to originals, with optional backups" +msgstr "=C3=81p d=E1=BB=A5ng nh=E1=BB=AFng kh=C3=A1c bi=E1=BB=87t n=C3=A0= y v=C3=A0o b=E1=BA=A3n g=E1=BB=91c, v=E1=BB=9Bi c=C3=A1c sao l=C6=B0u t=C3= =B9y ch=E1=BB=8Dn" + +#: gnu/packages/base.scm:179 +msgid "" +"Patch is a program that applies changes to files based on differences\n= " +"laid out as by the program \"diff\". The changes may be applied to one= or " +"more\n" +"files depending on the contents of the diff file. It accepts several\n= " +"different diff formats. It may also be used to revert previously appli= ed\n" +"differences." +msgstr "" + +#: gnu/packages/base.scm:199 +msgid "Comparing and merging files" +msgstr "So s=C3=A1nh v=C3=A0 h=C3=B2a tr=E1=BB=99n c=C3=A1c t=E1=BA=ADp = tin" + +#: gnu/packages/base.scm:201 +msgid "" +"GNU Diffutils is a package containing tools for finding the\n" +"differences between files. The \"diff\" command is used to show how tw= o " +"files\n" +"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer.\n" +"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" +"interactive means to merge two files." +msgstr "" + +#: gnu/packages/base.scm:234 +msgid "Operating on files matching given criteria" +msgstr "Th=E1=BB=B1c hi=E1=BB=87n tr=C3=AAn nh=E1=BB=AFng t=E1=BA=ADp ti= n kh=E1=BB=9Bp v=E1=BB=9Bi =C4=91i=E1=BB=81u ki=E1=BB=87n =C4=91=C3=A3 ch= o" + +#: gnu/packages/base.scm:236 +msgid "" +"Findutils supplies the basic file directory searching utilities of the\= n" +"GNU system. It consists of two primary searching utilities: \"find\"\n= " +"recursively searches for files in a directory according to given criter= ia " +"and\n" +"\"locate\" lists files in a database that match a query. Two auxiliary= " +"tools\n" +"are included: \"updatedb\" updates the file name database and \"xargs\"= may " +"be\n" +"used to apply commands with arbitrarily long arguments." +msgstr "" + +#: gnu/packages/base.scm:300 +msgid "Core GNU utilities (file, text, shell)" +msgstr "Ti=E1=BB=87n =C3=ADch l=C3=B5i GNU (file, text, shell)" + +#: gnu/packages/base.scm:302 +msgid "" +"GNU Coreutils includes all of the basic command-line tools that are\n" +"expected in a POSIX system. These provide the basic file, shell and te= xt\n" +"manipulation functions of the GNU system. Most of these tools offer " +"extended\n" +"functionality beyond that which is outlined in the POSIX standard." +msgstr "" + +#: gnu/packages/base.scm:344 +msgid "Remake files automatically" +msgstr "T=E1=BA=A1o l=E1=BA=A1i c=C3=A1c t=E1=BA=ADp tin m=E1=BB=99t c=C3= =A1ch t=E1=BB=B1 =C4=91=E1=BB=99ng" + +#: gnu/packages/base.scm:346 +msgid "" +"Make is a program that is used to control the production of\n" +"executables or other files from their source files. The process is\n" +"controlled from a Makefile, in which the developer specifies how each f= ile " +"is\n" +"generated from its source. It has powerful dependency resolution and t= he\n" +"ability to determine when files have to be regenerated after their sour= ces\n" +"change. GNU make offers many powerful extensions over the standard uti= lity." +msgstr "" + +#: gnu/packages/base.scm:391 +msgid "Binary utilities: bfd gas gprof ld" +msgstr "Ti=E1=BB=87n =C3=ADch nh=E1=BB=8B ph=C3=A2n: bfd gas gprof ld" + +#: gnu/packages/base.scm:393 +msgid "" +"GNU Binutils is a collection of tools for working with binary files.\n" +"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= .\n" +"Other tools include programs to display binary profiling information, l= ist\n" +"the strings in a binary file, and utilities for working with archives. = The\n" +"\"bfd\" library for working with executable and object formats is also\= n" +"included." +msgstr "" + +#: gnu/packages/base.scm:458 +msgid "The linker wrapper" +msgstr "B=E1=BB=99 bao li=C3=AAn k=E1=BA=BFt" + +#: gnu/packages/base.scm:460 +msgid "" +"The linker wrapper (or 'ld-wrapper') wraps the linker to add any\n" +"missing '-rpath' flags, and to detect any misuse of libraries outside o= f " +"the\n" +"store." +msgstr "" + +#: gnu/packages/base.scm:637 +msgid "The GNU C Library" +msgstr "Th=C6=B0 vi=E1=BB=87n C t=E1=BB=AB GNU" + +#: gnu/packages/base.scm:639 +msgid "" +"Any Unix-like operating system needs a C library: the library which\n" +"defines the \"system calls\" and other basic facilities such as open, " +"malloc,\n" +"printf, exit...\n" +"\n" +"The GNU C library is used as the C library in the GNU system and most " +"systems\n" +"with the Linux kernel." +msgstr "" + +#: gnu/packages/base.scm:670 +msgid "All the locales supported by the GNU C Library" +msgstr "" + +#: gnu/packages/base.scm:672 +msgid "" +"This package provides all the locales supported by the GNU C Library,\n= " +"more than 400 in total. To use them set the 'LOCPATH' environment vari= able " +"to\n" +"the 'share/locale' sub-directory of this package." +msgstr "" + +#: gnu/packages/base.scm:740 +msgid "Small sample of UTF-8 locales" +msgstr "" + +#: gnu/packages/base.scm:742 +msgid "" +"This package provides a small sample of UTF-8 locales mostly useful in\= n" +"test environments." +msgstr "" + +#: gnu/packages/base.scm:760 +msgid "Find full path of shell commands" +msgstr "" + +#: gnu/packages/base.scm:762 +msgid "" +"The which program finds the location of executables in PATH, with a\n" +"variety of options. It is an alternative to the shell \"type\" built-i= n\n" +"command." +msgstr "" + +#: gnu/packages/base.scm:832 +#, fuzzy +msgid "The GNU C Library (GNU Hurd variant)" +msgstr "Th=C6=B0 vi=E1=BB=87n C t=E1=BB=AB GNU" + +#: gnu/packages/base.scm:934 +msgid "Database of current and historical time zones" +msgstr "C=C6=A1 s=E1=BB=9F d=E1=BB=AF li=E1=BB=87u c=E1=BB=A7a hi=E1=BB=87= n t=E1=BA=A1i v=C3=A0 m=C3=BAi gi=E1=BB=9D l=E1=BB=8Bch s=E1=BB=AD" + +#: gnu/packages/base.scm:935 +msgid "" +"The Time Zone Database (often called tz or zoneinfo)\n" +"contains code and data that represent the history of local time for man= y\n" +"representative locations around the globe. It is updated periodically = to\n" +"reflect changes made by political bodies to time zone boundaries, UTC " +"offsets,\n" +"and daylight-saving rules." +msgstr "" + +#: gnu/packages/bittorrent.scm:90 +msgid "Fast and easy BitTorrent client" +msgstr "" + +#: gnu/packages/bittorrent.scm:92 +msgid "" +"Transmission is a BitTorrent client that comes with graphical,\n" +"textual, and Web user interfaces. Transmission also has a daemon for\n= " +"unattended operations. It supports local peer discovery, full encrypti= on,\n" +"DHT, =C2=B5TP, PEX and Magnet Links." +msgstr "" + +#: gnu/packages/bittorrent.scm:124 +msgid "BitTorrent library of rtorrent" +msgstr "" + +#: gnu/packages/bittorrent.scm:126 +msgid "" +"LibTorrent is a BitTorrent library used by and developed in parallel\n" +"with the BitTorrent client rtorrent. It is written in C++ with emphasi= s on\n" +"speed and efficiency." +msgstr "" + +#: gnu/packages/bittorrent.scm:153 +msgid "BitTorrent client with ncurses interface" +msgstr "" + +#: gnu/packages/bittorrent.scm:155 +msgid "" +"rTorrent is a BitTorrent client with an ncurses interface. It supports= \n" +"full encryption, DHT, PEX, and Magnet Links. It can also be controlled= via\n" +"XML-RPC over SCGI." +msgstr "" + +#: gnu/packages/bittorrent.scm:196 +msgid "Console client for the Transmission BitTorrent daemon" +msgstr "" + +#: gnu/packages/bittorrent.scm:197 +msgid "" +"Transmission-remote-cli is a console client, with a curses\n" +"interface, for the Transmission BitTorrent daemon." +msgstr "" + +#: gnu/packages/bittorrent.scm:240 +msgid "Utility for parallel downloading files" +msgstr "" + +#: gnu/packages/bittorrent.scm:242 +msgid "" +"Aria2 is a lightweight, multi-protocol & multi-source command-line\n" +"download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and " +"Metalink.\n" +"Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." +msgstr "" + +#: gnu/packages/certs.scm:65 +msgid "Python script to extract .pem data from certificate collection" +msgstr "" + +#: gnu/packages/certs.scm:67 +msgid "" +"certdata2pem.py is a Python script to transform X.509 certificate\n" +"\"source code\" as contained, for example, in the Mozilla sources, into= \n" +".pem formatted certificates." +msgstr "" + +#: gnu/packages/certs.scm:124 +msgid "CA certificates from Mozilla" +msgstr "" + +#: gnu/packages/certs.scm:126 +msgid "" +"This package provides certificates for Certification Authorities (CA)\n= " +"taken from the NSS package and thus ultimately from the Mozilla project= ." +msgstr "" + +#: gnu/packages/compression.scm:75 +msgid "Compression library" +msgstr "" + +#: gnu/packages/compression.scm:77 +msgid "" +"zlib is designed to be a free, general-purpose, legally unencumbered --= \n" +"that is, not covered by any patents -- lossless data-compression librar= y " +"for\n" +"use on virtually any computer hardware and operating system. The zlib = data\n" +"format is itself portable across platforms. Unlike the LZW compression= " +"method\n" +"used in Unix compress(1) and in the GIF image format, the compression " +"method\n" +"currently used in zlib essentially never expands the data. (LZW can dou= ble " +"or\n" +"triple the file size in extreme cases.) zlib's memory footprint is als= o\n" +"independent of the input data and can be reduced, if necessary, at some= " +"cost\n" +"in compression." +msgstr "" + +#: gnu/packages/compression.scm:102 +msgid "Replacement for Sun's 'jar' utility" +msgstr "" + +#: gnu/packages/compression.scm:104 +msgid "" +"FastJar is an attempt to create a much faster replacement for Sun's 'ja= r'\n" +"utility. Instead of being written in Java, FastJar is written in C." +msgstr "" + +#: gnu/packages/compression.scm:122 +msgid "C library for manipulating POSIX tar files" +msgstr "" + +#: gnu/packages/compression.scm:124 +msgid "" +"libtar is a C library for manipulating POSIX tar files. It handles\n" +"adding and extracting files to/from a tar archive." +msgstr "" + +#: gnu/packages/compression.scm:141 +msgid "General file (de)compression (using lzw)" +msgstr "" + +#: gnu/packages/compression.scm:146 +msgid "" +"GNU Gzip provides data compression and decompression utilities; the\n" +"typical extension is \".gz\". Unlike the \"zip\" format, it compresses= a " +"single\n" +"file; as a result, it is often used in conjunction with \"tar\", result= ing " +"in\n" +"\".tar.gz\" or \".tgz\", etc." +msgstr "" + +#: gnu/packages/compression.scm:222 +msgid "High-quality data compression program" +msgstr "" + +#: gnu/packages/compression.scm:224 +msgid "" +"bzip2 is a freely available, patent free (see below), high-quality data= \n" +"compressor. It typically compresses files to within 10% to 15% of the = best\n" +"available techniques (the PPM family of statistical compressors), whils= t\n" +"being around twice as fast at compression and six times faster at\n" +"decompression." +msgstr "" + +#: gnu/packages/compression.scm:254 +msgid "Parallel bzip2 implementation" +msgstr "" + +#: gnu/packages/compression.scm:256 +msgid "" +"Pbzip2 is a parallel implementation of the bzip2 block-sorting file\n" +"compressor that uses pthreads and achieves near-linear speedup on SMP " +"machines.\n" +"The output of this version is fully compatible with bzip2 v1.0.2 (i.e. = " +"anything\n" +"compressed with pbzip2 can be decompressed with bzip2)." +msgstr "" + +#: gnu/packages/compression.scm:277 +msgid "General-purpose data compression" +msgstr "" + +#: gnu/packages/compression.scm:279 +msgid "" +"XZ Utils is free general-purpose data compression software with high\n" +"compression ratio. XZ Utils were written for POSIX-like systems, but a= lso\n" +"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA = " +"Utils.\n" +"\n" +"The core of the XZ Utils compression code is based on LZMA SDK, but it = has\n" +"been modified quite a lot to be suitable for XZ Utils. The primary\n" +"compression algorithm is currently LZMA2, which is used inside the .xz\= n" +"container format. With typical files, XZ Utils create 30 % smaller out= put\n" +"than gzip and 15 % smaller output than bzip2." +msgstr "" + +#: gnu/packages/compression.scm:307 +msgid "Data compression library suitable for real-time data de-/compress= ion" +msgstr "" + +#: gnu/packages/compression.scm:309 +msgid "" +"LZO is a data compression library which is suitable for data\n" +"de-/compression in real-time. This means it favours speed over\n" +"compression ratio.\n" +"\n" +"LZO is written in ANSI C. Both the source code and the compressed data= \n" +"format are designed to be portable across platforms." +msgstr "" + +#: gnu/packages/compression.scm:332 +msgid "Compress or expand files" +msgstr "" + +#: gnu/packages/compression.scm:334 +msgid "" +"Lzop is a file compressor which is very similar to gzip. Lzop uses the= \n" +"LZO data compression library for compression services, and its main " +"advantages\n" +"over gzip are much higher compression and decompression speed (at the c= ost " +"of\n" +"some compression ratio)." +msgstr "" + +#: gnu/packages/compression.scm:353 +msgid "Lossless data compressor based on the LZMA algorithm" +msgstr "" + +#: gnu/packages/compression.scm:355 +msgid "" +"Lzip is a lossless data compressor with a user interface similar to the= \n" +"one of gzip or bzip2. Lzip decompresses almost as fast as gzip and " +"compresses\n" +"more than bzip2, which makes it well suited for software distribution a= nd " +"data\n" +"archiving. Lzip is a clean implementation of the LZMA algorithm." +msgstr "" + +#: gnu/packages/compression.scm:387 +msgid "Archives in shell scripts, uuencode/uudecode" +msgstr "" + +#: gnu/packages/compression.scm:389 +msgid "" +"GNU sharutils is a package for creating and manipulating shell\n" +"archives that can be readily emailed. A shell archive is a file that c= an " +"be\n" +"processed by a Bourne-type shell to unpack the original collection of " +"files.\n" +"This package is mostly for compatibility and historical interest." +msgstr "" + +#: gnu/packages/compression.scm:420 +msgid "Library for SoundFont decompression" +msgstr "" + +#: gnu/packages/compression.scm:422 +msgid "" +"SfArkLib is a C++ library for decompressing SoundFont files compressed\= n" +"with the sfArk algorithm." +msgstr "" + +#: gnu/packages/compression.scm:454 +msgid "Basic sfArk decompressor" +msgstr "" + +#: gnu/packages/compression.scm:455 +msgid "" +"SfArk extractor converts SoundFonts in the compressed legacy\n" +"sfArk file format to the uncompressed sf2 format." +msgstr "" + +#: gnu/packages/compression.scm:472 +msgid "Compression tools for some formats used by Microsoft" +msgstr "" + +#: gnu/packages/compression.scm:474 +msgid "" +"The purpose of libmspack is to provide both compression and\n" +"decompression of some loosely related file formats used by Microsoft." +msgstr "" + +#: gnu/packages/compression.scm:493 +msgid "Low-level interface to bzip2 compression library" +msgstr "" + +#: gnu/packages/compression.scm:494 +msgid "" +"This module provides a Perl interface to the bzip2\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:528 +msgid "Low-level interface to zlib compression library" +msgstr "" + +#: gnu/packages/compression.scm:529 +msgid "" +"This module provides a Perl interface to the zlib\n" +"compression library." +msgstr "" + +#: gnu/packages/compression.scm:550 +msgid "IO Interface to compressed files/buffers" +msgstr "" + +#: gnu/packages/compression.scm:551 +msgid "" +"IO-Compress provides a Perl interface to allow reading and\n" +"writing of compressed data created with the zlib and bzip2 libraries." +msgstr "" + +#: gnu/packages/compression.scm:577 +msgid "Compression algorithm focused on speed" +msgstr "" + +#: gnu/packages/compression.scm:578 +msgid "" +"LZ4 is a lossless compression algorithm, providing\n" +"compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also fea= tures " +"an\n" +"extremely fast decoder, with speed in multiple GB/s per core (0.71 Byte= s/" +"cycle).\n" +"A high compression derivative, called LZ4_HC, is also provided. It tra= des " +"CPU\n" +"time for compression ratio." +msgstr "" + +#: gnu/packages/compression.scm:618 +msgid "Tools to create and extract squashfs filesystems" +msgstr "" + +#: gnu/packages/compression.scm:620 +msgid "" +"Squashfs is a highly compressed read-only filesystem for Linux. It use= s\n" +"zlib to compress files, inodes, and directories. All blocks are packed= to\n" +"minimize the data overhead, and block sizes of between 4K and 1M are " +"supported.\n" +"It is intended to be used for archival use, for live CDs, and for embed= ded\n" +"systems where low overhead is needed. This package allows you to creat= e " +"and\n" +"extract such filesystems." +msgstr "" + +#: gnu/packages/compression.scm:657 +msgid "Parallel implementation of gzip" +msgstr "" + +#: gnu/packages/compression.scm:659 +msgid "" +"This package provides a parallel implementation of gzip that exploits\n= " +"multiple processors and multiple cores when compressing data." +msgstr "" + +#: gnu/packages/compression.scm:683 +msgid "Parallel indexing implementation of LZMA" +msgstr "" + +#: gnu/packages/compression.scm:685 +msgid "" +"The existing XZ Utils provide great compression in the .xz file format,= \n" +"but they produce just one big block of compressed data. Pixz instead " +"produces\n" +"a collection of smaller blocks which makes random access to the origina= l " +"data\n" +"possible and can compress in parallel. This is especially useful for l= arge\n" +"tarballs." +msgstr "" + +#: gnu/packages/databases.scm:74 +msgid "Hash library of database functions compatible with traditional db= m" +msgstr "" + +#: gnu/packages/databases.scm:76 +msgid "" +"GDBM is a library for manipulating hashed databases. It is used to\n" +"store key/value pairs in a file in a manner similar to the Unix dbm lib= rary\n" +"and provides interfaces to the traditional file format." +msgstr "" + +#: gnu/packages/databases.scm:122 +msgid "Berkeley database" +msgstr "" + +#: gnu/packages/databases.scm:124 +msgid "" +"Berkeley DB is an embeddable database allowing developers the choice of= \n" +"SQL, Key/Value, XML/XQuery or Java Object storage for their data model.= " +msgstr "" + +#: gnu/packages/databases.scm:198 +msgid "Fast, easy to use, and popular database" +msgstr "" + +#: gnu/packages/databases.scm:200 +msgid "" +"MySQL is a fast, reliable, and easy to use relational database\n" +"management system that supports the standardized Structured Query\n" +"Language." +msgstr "" + +#: gnu/packages/databases.scm:267 +msgid "SQL database server" +msgstr "" + +#: gnu/packages/databases.scm:269 +msgid "" +"MariaDB is a multi-user and multi-threaded SQL database server, designe= d\n" +"as a drop-in replacement of MySQL." +msgstr "" + +#: gnu/packages/databases.scm:289 +msgid "Powerful object-relational database system" +msgstr "" + +#: gnu/packages/databases.scm:291 +msgid "" +"PostgreSQL is a powerful object-relational database system. It is full= y\n" +"ACID compliant, has full support for foreign keys, joins, views, trigge= rs, " +"and\n" +"stored procedures (in multiple languages). It includes most SQL:2008 d= ata\n" +"types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERV= AL, " +"and\n" +"TIMESTAMP. It also supports storage of binary large objects, including= \n" +"pictures, sounds, or video." +msgstr "" + +#: gnu/packages/databases.scm:329 +msgid "Manipulate plain text files as databases" +msgstr "Thao t=C3=A1c c=C3=A1c t=E1=BA=ADp tin v=C4=83n b=E1=BA=A3n th=C6= =B0=E1=BB=9Dng nh=C6=B0 l=C3=A0 c=C6=A1 s=E1=BB=9F d=E1=BB=AF li=E1=BB=87= u" + +#: gnu/packages/databases.scm:331 +msgid "" +"GNU Recutils is a set of tools and libraries for creating and\n" +"manipulating text-based, human-editable databases. Despite being text-= " +"based,\n" +"databases created with Recutils carry all of the expected features such= as\n" +"unique fields, primary keys, time stamps and more. Many different fiel= d\n" +"types are supported, as is encryption." +msgstr "" + +#: gnu/packages/databases.scm:383 +msgid "The SQLite database management system" +msgstr "" + +#: gnu/packages/databases.scm:385 +msgid "" +"SQLite is a software library that implements a self-contained, serverle= ss,\n" +"zero-configuration, transactional SQL database engine. SQLite is the m= ost\n" +"widely deployed SQL database engine in the world. The source code for = " +"SQLite\n" +"is in the public domain." +msgstr "" + +#: gnu/packages/databases.scm:420 +msgid "Trivial database" +msgstr "" + +#: gnu/packages/databases.scm:422 +msgid "" +"TDB is a Trivial Database. In concept, it is very much like GDBM,\n" +"and BSD's DB except that it allows multiple simultaneous writers and us= es\n" +"locking internally to keep writers from trampling on each other. TDB i= s " +"also\n" +"extremely small." +msgstr "" + +#: gnu/packages/databases.scm:441 +msgid "Database independent interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:442 +msgid "This package provides an database interface for Perl." +msgstr "" + +#: gnu/packages/databases.scm:489 +msgid "Extensible and flexible object <-> relational mapper" +msgstr "" + +#: gnu/packages/databases.scm:490 +msgid "" +"An SQL to OO mapper with an object API inspired by\n" +"Class::DBI (with a compatibility layer as a springboard for porting) an= d a\n" +"resultset API that allows abstract encapsulation of database operations= . " +"It\n" +"aims to make representing queries in your code as perl-ish as possible = " +"while\n" +"still providing access to as many of the capabilities of the database a= s\n" +"possible, including retrieving related records from multiple tables in = a\n" +"single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP= BY" +"\",\n" +"\"ORDER BY\" and \"HAVING\" support." +msgstr "" + +#: gnu/packages/databases.scm:520 +msgid "Cursor with built-in caching support" +msgstr "" + +#: gnu/packages/databases.scm:521 +msgid "" +"DBIx::Class::Cursor::Cached provides a cursor class with\n" +"built-in caching support." +msgstr "" + +#: gnu/packages/databases.scm:541 +msgid "Introspect many-to-many relationships" +msgstr "" + +#: gnu/packages/databases.scm:542 +msgid "" +"Because the many-to-many relationships are not real\n" +"relationships, they can not be introspected with DBIx::Class. Many-to-= many\n" +"relationships are actually just a collection of convenience methods " +"installed\n" +"to bridge two relationships. This DBIx::Class component can be used to= " +"store\n" +"all relevant information about these non-relationships so they can late= r be\n" +"introspected and examined." +msgstr "" + +#: gnu/packages/databases.scm:599 +msgid "Create a DBIx::Class::Schema based on a database" +msgstr "" + +#: gnu/packages/databases.scm:600 +msgid "" +"DBIx::Class::Schema::Loader automates the definition of a\n" +"DBIx::Class::Schema by scanning database table definitions and setting = up " +"the\n" +"columns, primary keys, unique constraints and relationships." +msgstr "" + +#: gnu/packages/databases.scm:624 +msgid "DBI PostgreSQL interface" +msgstr "" + +#: gnu/packages/databases.scm:647 +msgid "DBI MySQL interface" +msgstr "" + +#: gnu/packages/databases.scm:648 +msgid "" +"This package provides a MySQL driver for the Perl5\n" +"@dfn{Database Interface} (DBI)." +msgstr "" + +#: gnu/packages/databases.scm:667 +msgid "SQlite interface for Perl" +msgstr "" + +#: gnu/packages/databases.scm:668 +msgid "" +"DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" +"the entire thing in the distribution. So in order to get a fast " +"transaction\n" +"capable RDBMS working for your Perl project you simply have to install = this\n" +"module, and nothing else." +msgstr "" + +#: gnu/packages/databases.scm:698 +msgid "Generate SQL from Perl data structures" +msgstr "" + +#: gnu/packages/databases.scm:699 +msgid "" +"This module was inspired by the excellent DBIx::Abstract.\n" +"While based on the concepts used by DBIx::Abstract, the concepts used h= ave\n" +"been modified to make the SQL easier to generate from Perl data structu= res.\n" +"The underlying idea is for this module to do what you mean, based on th= e " +"data\n" +"structures you provide it, so that you don't have to modify your code e= very\n" +"time your data changes." +msgstr "" + +#: gnu/packages/databases.scm:728 +msgid "Split SQL code into atomic statements" +msgstr "" + +#: gnu/packages/databases.scm:729 +msgid "" +"This module tries to split any SQL code, even including\n" +"non-standard extensions, into the atomic statements it is composed of." +msgstr "" + +#: gnu/packages/databases.scm:747 +msgid "SQL tokenizer" +msgstr "" + +#: gnu/packages/databases.scm:748 +msgid "" +"SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" +"claim to be a parser or query verifier. It just creates sane tokens fr= om a\n" +"valid SQL query." +msgstr "" + +#: gnu/packages/databases.scm:765 +msgid "Data source abstraction library" +msgstr "" + +#: gnu/packages/databases.scm:766 +msgid "" +"Unixodbc is a library providing an API with which to access\n" +"data sources. Data sources include SQL Servers and any software with a= n " +"ODBC\n" +"Driver." +msgstr "" + +#: gnu/packages/databases.scm:790 +msgid "In-memory key/value and document store" +msgstr "" + +#: gnu/packages/databases.scm:792 +msgid "" +"UnQLite is an in-process software library which implements a\n" +"self-contained, serverless, zero-configuration, transactional NoSQL\n" +"database engine. UnQLite is a document store database similar to\n" +"MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store\n" +"similar to BerkeleyDB, LevelDB, etc." +msgstr "" + +#: gnu/packages/databases.scm:819 +msgid "Key-value cache and store" +msgstr "" + +#: gnu/packages/databases.scm:820 +msgid "" +"Redis is an advanced key-value cache and store. Redis\n" +"supports many data structures including strings, hashes, lists, sets, " +"sorted\n" +"sets, bitmaps and hyperloglogs." +msgstr "" + +#: gnu/packages/debug.scm:74 +msgid "Heuristical file minimizer" +msgstr "" + +#: gnu/packages/debug.scm:76 +msgid "" +"Delta assists you in minimizing \"interesting\" files subject to a test= \n" +"of their interestingness. A common such situation is when attempting t= o\n" +"isolate a small failure-inducing substring of a large input that causes= " +"your\n" +"program to exhibit a bug." +msgstr "" + +#: gnu/packages/debug.scm:135 +msgid "Reducer for interesting code" +msgstr "" + +#: gnu/packages/debug.scm:137 +msgid "" +"C-Reduce is a tool that takes a large C or C++ program that has a\n" +"property of interest (such as triggering a compiler bug) and automatica= lly\n" +"produces a much smaller C/C++ program that has the same property. It i= s\n" +"intended for use by people who discover and report bugs in compilers an= d " +"other\n" +"tools that process C/C++ code." +msgstr "" + +#: gnu/packages/debug.scm:249 +msgid "Security-oriented fuzzer" +msgstr "" + +#: gnu/packages/debug.scm:251 +msgid "" +"American fuzzy lop is a security-oriented fuzzer that employs a novel\n= " +"type of compile-time instrumentation and genetic algorithms to " +"automatically\n" +"discover clean, interesting test cases that trigger new internal states= in " +"the\n" +"targeted binary. This substantially improves the functional coverage f= or " +"the\n" +"fuzzed code. The compact synthesized corpora produced by the tool are = also\n" +"useful for seeding other, more labor- or resource-intensive testing reg= imes\n" +"down the road." +msgstr "" + +#: gnu/packages/dejagnu.scm:78 +msgid "GNU software testing framework" +msgstr "" + +#: gnu/packages/dejagnu.scm:80 +msgid "" +"DejaGnu is a framework for testing software. In effect, it serves as\n= " +"a front-end for all tests written for a program. Thus, each program ca= n " +"have\n" +"multiple test suites, which are then all managed by a single harness." +msgstr "" + +#: gnu/packages/feh.scm:54 +msgid "Fast and light imlib2-based image viewer" +msgstr "" + +#: gnu/packages/feh.scm:56 +msgid "" +"feh is an X11 image viewer aimed mostly at console users.\n" +"Unlike most other viewers, it does not have a fancy GUI, but simply\n" +"displays images. It can also be used to set the desktop wallpaper.\n" +"It is controlled via commandline arguments and configurable key/mouse\n= " +"actions." +msgstr "" + +#: gnu/packages/games.scm:116 +msgid "Backgammon game" +msgstr "" + +#: gnu/packages/games.scm:117 +msgid "" +"The GNU backgammon application can be used for playing, analyzing and\n= " +"teaching the game. It has an advanced evaluation engine based on " +"artificial\n" +"neural networks suitable for both beginners and advanced players. In\n= " +"addition to a command-line interface, it also features an attractive, 3= D\n" +"representation of the playing board." +msgstr "" + +#: gnu/packages/games.scm:146 +msgid "3d Rubik's cube game" +msgstr "" + +#: gnu/packages/games.scm:148 +msgid "" +"GNUbik is a puzzle game in which you must manipulate a cube to make\n" +"each of its faces have a uniform color. The game is customizable, allo= wing\n" +"you to set the size of the cube (the default is 3x3) or to change the " +"colors.\n" +"You may even apply photos to the faces instead of colors. The game is\= n" +"scriptable with Guile." +msgstr "" + +#: gnu/packages/games.scm:198 +msgid "GNU/Linux port of the indie game \"l'Abbaye des Morts\"" +msgstr "" + +#: gnu/packages/games.scm:199 +msgid "" +"L'Abbaye des Morts is a 2D platform game set in 13th century\n" +"France. The Cathars, who preach about good Christian beliefs, were bei= ng\n" +"expelled by the Catholic Church out of the Languedoc region in France. = One " +"of\n" +"them, called Jean Raymond, found an old church in which to hide, not " +"knowing\n" +"that beneath its ruins lay buried an ancient evil." +msgstr "" + +#: gnu/packages/games.scm:242 +msgid "Lemmings clone" +msgstr "" + +#: gnu/packages/games.scm:244 +msgid "" +"Pingus is a free Lemmings-like puzzle game in which the player takes\n" +"command of a bunch of small animals and has to guide them through level= s.\n" +"Since the animals walk on their own, the player can only influence them= by\n" +"giving them commands, like build a bridge, dig a hole, or redirect all = " +"animals\n" +"in the other direction. Multiple such commands are necessary to reach = the\n" +"level's exit. The game is presented in a 2D side view." +msgstr "" + +#: gnu/packages/games.scm:266 +msgid "Convert English text to humorous dialects" +msgstr "" + +#: gnu/packages/games.scm:267 +msgid "" +"The GNU Talk Filters are programs that convert English text\n" +"into stereotyped or otherwise humorous dialects. The filters are provi= ded " +"as\n" +"a C library, so they can easily be integrated into other programs." +msgstr "" + +#: gnu/packages/games.scm:299 +msgid "Simulate the display from \"The Matrix\"" +msgstr "" + +#: gnu/packages/games.scm:300 +msgid "" +"CMatrix simulates the display from \"The Matrix\" and is\n" +"based on the screensaver from the movie's website. It works with termi= nal\n" +"settings up to 132x300 and can scroll lines all at the same rate or\n" +"asynchronously and at a user-defined speed." +msgstr "" + +#: gnu/packages/games.scm:320 +msgid "Full chess implementation" +msgstr "" + +#: gnu/packages/games.scm:321 +msgid "" +"GNU Chess is a chess engine. It allows you to compete\n" +"against the computer in a game of chess, either through the default " +"terminal\n" +"interface or via an external visual interface such as GNU XBoard." +msgstr "" + +#: gnu/packages/games.scm:349 +msgid "Twisted adventures of young pig farmer Dink Smallwood" +msgstr "" + +#: gnu/packages/games.scm:351 +msgid "" +"GNU FreeDink is a free and portable re-implementation of the engine\n" +"for the role-playing game Dink Smallwood. It supports not only the " +"original\n" +"game data files but it also supports user-produced game mods or \"D-Mod= s\".\n" +"To that extent, it also includes a front-end for managing all of your D= -Mods." +msgstr "" + +#: gnu/packages/games.scm:373 +msgid "Game data for GNU Freedink" +msgstr "" + +#: gnu/packages/games.scm:375 +msgid "This package contains the game data of GNU Freedink." +msgstr "" + +#: gnu/packages/games.scm:427 +msgid "Graphical user interface for chess programs" +msgstr "" + +#: gnu/packages/games.scm:428 +msgid "" +"GNU XBoard is a graphical board for all varieties of chess,\n" +"including international chess, xiangqi (Chinese chess), shogi (Japanese= " +"chess)\n" +"and Makruk. Several lesser-known variants are also supported. It pres= ents " +"a\n" +"fully interactive graphical interface and it can load and save games in= the\n" +"Portable Game Notation." +msgstr "" + +#: gnu/packages/games.scm:481 +msgid "Ball and paddle game" +msgstr "" + +#: gnu/packages/games.scm:482 +msgid "" +"XBoing is a blockout type game where you have a paddle which\n" +"you control to bounce a ball around the game zone destroying blocks wit= h a\n" +"proton ball. Each block carries a different point value. The more blo= cks " +"you\n" +"destroy, the better your score. The person with the highest score wins= ." +msgstr "" + +#: gnu/packages/games.scm:514 +msgid "Typing tutor" +msgstr "" + +#: gnu/packages/games.scm:516 +msgid "" +"GNU Typist is a universal typing tutor. It can be used to learn and\n" +"practice touch-typing. Several tutorials are included; in addition to\= n" +"tutorials for the standard QWERTY layout, there are also tutorials for = the\n" +"alternative layouts Dvorak and Colemak, as well as for the numpad. " +"Tutorials\n" +"are primarily in English, however some in other languages are provided.= " +msgstr "" + +#: gnu/packages/games.scm:569 +msgid "3D game engine written in C++" +msgstr "" + +#: gnu/packages/games.scm:571 +msgid "" +"The Irrlicht Engine is a high performance realtime 3D engine written in= \n" +"C++. Features include an OpenGL renderer, extensible materials, scene = " +"graph\n" +"management, character animation, particle and other special effects, " +"support\n" +"for common mesh file formats, and collision detection." +msgstr "" + +#: gnu/packages/games.scm:623 +msgid "2D space shooter" +msgstr "" + +#: gnu/packages/games.scm:625 +msgid "" +"M.A.R.S. is a 2D space shooter with pretty visual effects and\n" +"attractive physics. Players can battle each other or computer controll= ed\n" +"enemies in different game modes such as space ball, death match, team d= eath\n" +"match, cannon keep, and grave-itation pit." +msgstr "" + +#: gnu/packages/games.scm:666 +msgid "Main game data for the Minetest game engine" +msgstr "" + +#: gnu/packages/games.scm:668 +msgid "Game data for the Minetest infinite-world block sandox game." +msgstr "" + +#: gnu/packages/games.scm:720 +msgid "Infinite-world block sandbox game" +msgstr "" + +#: gnu/packages/games.scm:722 +msgid "" +"Minetest is a sandbox construction game. Players can create and destro= y\n" +"various types of blocks in a three-dimensional open world. This allows= \n" +"forming structures in every possible creation, on multiplayer servers o= r as " +"a\n" +"single player. Mods and texture packs allow players to personalize the= " +"game\n" +"in different ways." +msgstr "" + +#: gnu/packages/games.scm:761 +msgid "Curses Implementation of the Glk API" +msgstr "" + +#: gnu/packages/games.scm:763 +msgid "" +"Glk defines a portable API for applications with text UIs. It was\n" +"primarily designed for interactive fiction, but it should be suitable f= or " +"many\n" +"interactive text utilities, particularly those based on a command line.= \n" +"This is an implementation of the Glk library which runs in a terminal " +"window,\n" +"using the curses.h library for screen control." +msgstr "" + +#: gnu/packages/games.scm:800 +msgid "Interpreter for Glulx VM" +msgstr "" + +#: gnu/packages/games.scm:802 +msgid "" +"Glulx is a 32-bit portable virtual machine intended for writing and\n" +"playing interactive fiction. It was designed by Andrew Plotkin to reli= eve\n" +"some of the restrictions in the venerable Z-machine format. This is th= e\n" +"reference interpreter, using Glk API." +msgstr "" + +#: gnu/packages/games.scm:838 +msgid "Z-machine interpreter" +msgstr "" + +#: gnu/packages/games.scm:840 +msgid "" +"Fizmo is a console-based Z-machine interpreter. It is used to play\n" +"interactive fiction, also known as text adventures, which were implemen= ted\n" +"either by Infocom or created using the Inform compiler." +msgstr "" + +#: gnu/packages/games.scm:890 +msgid "Reference frontend for the libretro API" +msgstr "" + +#: gnu/packages/games.scm:892 +msgid "" +"Libretro is a simple but powerful development interface that allows for= \n" +"the easy creation of emulators, games and multimedia applications that = can " +"plug\n" +"straight into any libretro-compatible frontend. RetroArch is the offic= ial\n" +"reference frontend for the libretro API, currently used by most as a " +"modular\n" +"multi-system game/emulator system." +msgstr "" + +#: gnu/packages/games.scm:912 +msgid "Play the game of Go" +msgstr "" + +#: gnu/packages/games.scm:914 +msgid "" +"GNU Go is a program that plays the game of Go, in which players\n" +"place stones on a grid to form territory or capture other stones. Whil= e\n" +"it can be played directly from the terminal, rendered in ASCII characte= rs,\n" +"it is also possible to play GNU Go with 3rd party graphical interfaces = or\n" +"even in Emacs. It supports the standard game storage format (SGF, Smar= t\n" +"Game Format) and inter-process communication format (GMP, Go Modem\n" +"Protocol)." +msgstr "" + +#: gnu/packages/games.scm:964 +msgid "High speed arctic racing game based on Tux Racer" +msgstr "" + +#: gnu/packages/games.scm:966 +msgid "" +"Extreme Tux Racer, or etracer as it is called for short, is\n" +"a simple OpenGL racing game featuring Tux, the Linux mascot. The goal = of " +"the\n" +"game is to slide down a snow- and ice-covered mountain as quickly as " +"possible,\n" +"avoiding the trees and rocks that will slow you down.\n" +"\n" +"Collect herrings and other goodies while sliding down the hill, but avo= id " +"fish\n" +"bones.\n" +"\n" +"This game is based on the GPL version of the famous game TuxRacer." +msgstr "" + +#: gnu/packages/games.scm:1004 +msgid "Game of jumping to the next floor, trying not to fall" +msgstr "" + +#: gnu/packages/games.scm:1006 +msgid "" +"GNUjump is a simple, yet addictive game in which you must jump from\n" +"platform to platform to avoid falling, while the platforms drop at fast= er " +"rates\n" +"the higher you go. The game features multiplayer, unlimited FPS, smoot= h " +"floor\n" +"falling, themeable graphics and sounds, and replays." +msgstr "" + +#: gnu/packages/games.scm:1047 +msgid "Turn-based strategy game" +msgstr "" + +#: gnu/packages/games.scm:1049 +msgid "" +"The Battle for Wesnoth is a fantasy, turn based tactical strategy game,= \n" +"with several single player campaigns, and multiplayer games (both netwo= rked " +"and\n" +"local).\n" +"\n" +"Battle for control on a range of maps, using variety of units which hav= e\n" +"advantages and disadvantages against different types of attacks. Units= " +"gain\n" +"experience and advance levels, and are carried over from one scenario t= o " +"the\n" +"next campaign." +msgstr "" + +#: gnu/packages/games.scm:1093 +msgid "X86 emulator with CGA/EGA/VGA/etc. graphics and sound" +msgstr "" + +#: gnu/packages/games.scm:1094 +msgid "" +"DOSBox is a DOS-emulator that uses the SDL library. DOSBox\n" +"also emulates CPU:286/386 realmode/protected mode, Directory\n" +"FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a\n" +"SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility = with\n" +"older games." +msgstr "" + +#: gnu/packages/games.scm:1139 +msgid "Mouse and keyboard discovery for children" +msgstr "" + +#: gnu/packages/games.scm:1141 +msgid "" +"Gamine is a game designed for young children who are learning to use th= e\n" +"mouse and keyboard. The child uses the mouse to draw colored dots and = " +"lines\n" +"on the screen and keyboard to display letters." +msgstr "" + +#: gnu/packages/games.scm:1172 +msgid "Puzzle game with a cat in lead role" +msgstr "" + +#: gnu/packages/games.scm:1173 +msgid "" +"Project Raincat is a game developed by Carnegie Mellon\n" +"students through GCS during the Fall 2008 semester. Raincat features g= ame\n" +"play inspired from classics Lemmings and The Incredible Machine. The " +"project\n" +"proved to be an excellent learning experience for the programmers. " +"Everything\n" +"is programmed in Haskell." +msgstr "" + +#: gnu/packages/games.scm:1208 +msgid "Client for 'The Mana World' and similar games" +msgstr "" + +#: gnu/packages/games.scm:1210 +msgid "" +"ManaPlus is a 2D MMORPG client for game servers. It is the only\n" +"fully supported client for @uref{http://www.themanaworld.org, The mana\= n" +"world}, @uref{http://evolonline.org, Evol Online} and\n" +"@uref{http://landoffire.org, Land of fire}." +msgstr "" + +#: gnu/packages/games.scm:1260 +msgid "Nintendo 64 emulator core library" +msgstr "" + +#: gnu/packages/games.scm:1262 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"core library." +msgstr "" + +#: gnu/packages/games.scm:1306 gnu/packages/games.scm:1351 +#: gnu/packages/games.scm:1393 gnu/packages/games.scm:1435 +#: gnu/packages/games.scm:1752 +msgid "Mupen64Plus SDL input plugin" +msgstr "" + +#: gnu/packages/games.scm:1308 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL audio plugin." +msgstr "" + +#: gnu/packages/games.scm:1353 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"SDL input plugin." +msgstr "" + +#: gnu/packages/games.scm:1395 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"high-level emulation (HLE) RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1437 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 RSP processor plugin." +msgstr "" + +#: gnu/packages/games.scm:1481 gnu/packages/games.scm:1535 +#: gnu/packages/games.scm:1585 gnu/packages/games.scm:1633 +msgid "Mupen64Plus Rice Video plugin" +msgstr "" + +#: gnu/packages/games.scm:1483 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Arachnoid video plugin." +msgstr "" + +#: gnu/packages/games.scm:1537 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1587 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Glide64MK2 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1635 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Rice Video plugin." +msgstr "" + +#: gnu/packages/games.scm:1687 +msgid "Mupen64Plus Z64 video plugin" +msgstr "" + +#: gnu/packages/games.scm:1689 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"Z64 video plugin." +msgstr "" + +#: gnu/packages/games.scm:1754 +msgid "" +"Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator= \n" +"which is capable of accurately playing many games. This package contai= ns " +"the\n" +"command line user interface. Installing this package is the easiest wa= y\n" +"towards a working Mupen64Plus for casual users." +msgstr "" + +#: gnu/packages/games.scm:1818 +msgid "Nintendo Entertainment System (NES/Famicom) emulator" +msgstr "" + +#: gnu/packages/games.scm:1820 +msgid "" +"Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment\n" +"System (NES/Famicom) emulator Nestopia, with enhancements from members = of " +"the\n" +"emulation community. It provides highly accurate emulation." +msgstr "" + +#: gnu/packages/games.scm:1849 +msgid "Video game console emulator front-end" +msgstr "" + +#: gnu/packages/games.scm:1850 +msgid "" +"EmulationStation provides a graphical front-end to a large\n" +"number of video game console emulators. It features an interface that = is\n" +"usable with any game controller that has at least 4 buttons, theming " +"support,\n" +"and a game metadata scraper." +msgstr "" + +#: gnu/packages/games.scm:1890 +msgid "Pinball simulator" +msgstr "" + +#: gnu/packages/games.scm:1891 +msgid "" +"The Emilia Pinball Project is a pinball simulator. There\n" +"are only two levels to play with, but they are very addictive." +msgstr "" + +#: gnu/packages/gcc.scm:313 +msgid "GNU Compiler Collection" +msgstr "" + +#: gnu/packages/gcc.scm:315 +msgid "" +"GCC is the GNU Compiler Collection. It provides compiler front-ends\n" +"for several languages, including C, C++, Objective-C, Fortran, Java, Ad= a, " +"and\n" +"Go. It also includes runtime support libraries for these languages." +msgstr "" + +#: gnu/packages/gcc.scm:380 +#, fuzzy +msgid "GNU C++ standard library" +msgstr "Th=C6=B0 vi=E1=BB=87n GNU C++ chu=E1=BA=A9n (kh=C3=A2u trung gia= n)" + +#: gnu/packages/gcc.scm:415 +msgid "Collection of subroutines used by various GNU programs" +msgstr "" + +#: gnu/packages/gcc.scm:610 +msgid "GNU libstdc++ documentation" +msgstr "" + +#: gnu/packages/gcc.scm:678 +msgid "" +"Manipulating sets and relations of integer points bounded by linear " +"constraints" +msgstr "" + +#: gnu/packages/gcc.scm:681 +msgid "" +"isl is a library for manipulating sets and relations of integer points\= n" +"bounded by linear constraints. Supported operations on sets include\n" +"intersection, union, set difference, emptiness check, convex hull, " +"(integer)\n" +"affine hull, integer projection, computing the lexicographic minimum us= ing\n" +"parametric integer programming, coalescing and parametric vertex\n" +"enumeration. It also includes an ILP solver based on generalized basis= \n" +"reduction, transitive closures on maps (which may encode infinite graph= s),\n" +"dependence analysis and bounds on piecewise step-polynomials." +msgstr "" + +#: gnu/packages/gcc.scm:713 +msgid "Library to generate code for scanning Z-polyhedra" +msgstr "" + +#: gnu/packages/gcc.scm:715 +msgid "" +"CLooG is a free software library to generate code for scanning\n" +"Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that\n" +"reaches each integral point of one or more parameterized polyhedra.\n" +"CLooG has been originally written to solve the code generation problem\= n" +"for optimizing compilers based on the polytope model. Nevertheless it\= n" +"is used now in various area e.g., to build control automata for\n" +"high-level synthesis or to find the best polynomial approximation of a\= n" +"function. CLooG may help in any situation where scanning polyhedra\n" +"matters. While the user has full control on generated code quality,\n" +"CLooG is designed to avoid control overhead and to produce a very\n" +"effective code." +msgstr "" + +#: gnu/packages/gcc.scm:770 +msgid "Reference manual for the C programming language" +msgstr "" + +#: gnu/packages/gcc.scm:772 +msgid "" +"This is a reference manual for the C programming language, as\n" +"implemented by the GNU C Compiler (gcc). As a reference, it is not " +"intended\n" +"to be a tutorial of the language. Rather, it outlines all of the " +"constructs\n" +"of the language. Library functions are not included." +msgstr "" + +#: gnu/packages/geeqie.scm:48 +msgid "Library and command-line utility to manage image metadata" +msgstr "" + +#: gnu/packages/geeqie.scm:50 +msgid "" +"Exiv2 is a C++ library and a command line utility to manage image\n" +"metadata. It provides fast and easy read and write access to the Exif,= " +"IPTC\n" +"and XMP metadata of images in various formats." +msgstr "" + +#: gnu/packages/geeqie.scm:82 +msgid "Lightweight GTK+ based image viewer" +msgstr "" + +#: gnu/packages/geeqie.scm:84 +msgid "" +"Geeqie is a lightweight GTK+ based image viewer for Unix like operating= \n" +"systems. It features: EXIF, IPTC and XMP metadata browsing and editing= \n" +"interoperability; easy integration with other software; geeqie works on= " +"files\n" +"and directories, there is no need to import images; fast preview for ma= ny " +"raw\n" +"image formats; tools for image comparison, sorting and managing photo\n= " +"collection. Geeqie was initially based on GQview." +msgstr "" + +#: gnu/packages/gettext.scm:93 +msgid "Tools and documentation for translation" +msgstr "" + +#: gnu/packages/gettext.scm:95 +msgid "" +"GNU Gettext is a package providing a framework for translating the\n" +"textual output of programs into multiple languages. It provides " +"translators\n" +"with the means to create message catalogs, as well as an Emacs mode to = work\n" +"with them, and a runtime library to load translated messages from the\n= " +"catalogs. Nearly all GNU packages use Gettext." +msgstr "" + +#: gnu/packages/gettext.scm:151 +msgid "Scripts to ease maintenance of translations" +msgstr "" + +#: gnu/packages/gettext.scm:153 +msgid "" +"The po4a (PO for anything) project goal is to ease translations (and\n" +"more interestingly, the maintenance of translations) using gettext tool= s on\n" +"areas where they were not expected like documentation." +msgstr "" + +#: gnu/packages/gimp.scm:53 +msgid "Image pixel format conversion library" +msgstr "" + +#: gnu/packages/gimp.scm:55 +msgid "" +"Babl is a dynamic, any to any, pixel format translation library.\n" +"It allows converting between different methods of storing pixels known = as\n" +"pixel formats that have with different bitdepths and other data\n" +"representations, color models and component permutations.\n" +"\n" +"A vocabulary to formulate new pixel formats from existing primitives is= \n" +"provided as well as the framework to add new color models and data type= s." +msgstr "" + +#: gnu/packages/gimp.scm:110 +msgid "Graph based image processing framework" +msgstr "" + +#: gnu/packages/gimp.scm:111 +msgid "" +"GEGL (Generic Graphics Library) provides infrastructure to\n" +"do demand based cached non destructive image editing on larger than RAM= \n" +"buffers." +msgstr "" + +#: gnu/packages/gimp.scm:153 +msgid "GNU Image Manipulation Program" +msgstr "" + +#: gnu/packages/gimp.scm:155 +msgid "" +"GIMP is an application for image manipulation tasks such as photo\n" +"retouching, composition and authoring. It supports all common image " +"formats\n" +"as well as specialized ones. It features a highly customizable interfa= ce\n" +"that is extensible via a plugin system." +msgstr "" + +#: gnu/packages/gnome.scm:154 +msgid "CD/DVD burning tool for Gnome" +msgstr "" + +#: gnu/packages/gnome.scm:155 +msgid "" +"Brasero is an application to burn CD/DVD for the Gnome\n" +"Desktop. It is designed to be as simple as possible and has some uniqu= e\n" +"features to enable users to create their discs easily and quickly." +msgstr "" + +#: gnu/packages/gnome.scm:175 +msgid "Bootstrap GNOME modules built from Git" +msgstr "" + +#: gnu/packages/gnome.scm:176 +msgid "" +"gnome-common contains various files needed to bootstrap\n" +"GNOME modules built from Git. It contains a common \"autogen.sh\" scri= pt " +"that\n" +"can be used to configure a source directory checked out from Git and so= me\n" +"commonly used macros." +msgstr "" + +#: gnu/packages/gnome.scm:217 +msgid "Libgnome-desktop, gnome-about, and desktop-wide documents" +msgstr "" + +#: gnu/packages/gnome.scm:219 +msgid "" +"The libgnome-desktop library provides API shared by several application= s\n" +"on the desktop, but that cannot live in the platform for various reason= s.\n" +"There is no API or ABI guarantee, although we are doing our best to pro= vide\n" +"stability. Documentation for the API is available with gtk-doc.\n" +"\n" +"The gnome-about program helps find which version of GNOME is installed.= " +msgstr "" + +#: gnu/packages/gnome.scm:252 +msgid "Documentation utilities for the Gnome project" +msgstr "" + +#: gnu/packages/gnome.scm:254 +msgid "" +"Gnome-doc-utils is a collection of documentation utilities for the\n" +"Gnome project. It includes xml2po tool which makes it easier to transl= ate\n" +"and keep up to date translations of documentation." +msgstr "" + +#: gnu/packages/gnome.scm:298 +msgid "Libraries for displaying certificates and accessing key stores" +msgstr "" + +#: gnu/packages/gnome.scm:300 +msgid "" +"The GCR package contains libraries used for displaying certificates and= \n" +"accessing key stores. It also provides the viewer for crypto files on = the\n" +"GNOME Desktop." +msgstr "" + +#: gnu/packages/gnome.scm:329 +msgid "Accessing passwords from the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:331 +msgid "Client library to access passwords from the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:393 +msgid "Daemon to store passwords and encryption keys" +msgstr "" + +#: gnu/packages/gnome.scm:395 +msgid "" +"gnome-keyring is a program that keeps passwords and other secrets for\n= " +"users. It is run as a daemon in the session, similar to ssh-agent, and= " +"other\n" +"applications locate it via an environment variable or D-Bus.\n" +"\n" +"The program can manage several keyrings, each with its own master passw= ord,\n" +"and there is also a session keyring which is never stored to disk, but\= n" +"forgotten when the session ends." +msgstr "" + +#: gnu/packages/gnome.scm:460 +msgid "GNOME's document viewer" +msgstr "" + +#: gnu/packages/gnome.scm:462 +msgid "" +"Evince is a document viewer for multiple document formats. It\n" +"currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal\n" +"of Evince is to replace the multiple document viewers that exist\n" +"on the GNOME Desktop with a single simple application." +msgstr "" + +#: gnu/packages/gnome.scm:491 +msgid "GNOME settings for various desktop components" +msgstr "" + +#: gnu/packages/gnome.scm:493 +msgid "" +"Gsettings-desktop-schemas contains a collection of GSettings schemas\n" +"for settings shared by various components of the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:527 +msgid "Utility to implement the Freedesktop Icon Naming Specification" +msgstr "" + +#: gnu/packages/gnome.scm:529 +msgid "" +"To help with the transition to the Freedesktop Icon Naming\n" +"Specification, the icon naming utility maps the icon names used by the\= n" +"GNOME and KDE desktops to the icon names proposed in the specification.= " +msgstr "" + +#: gnu/packages/gnome.scm:551 +msgid "Utilities for working with desktop entries" +msgstr "" + +#: gnu/packages/gnome.scm:553 +msgid "" +"This package contains a few command line utilities for working with\n" +"desktop entries:\n" +"\n" +"desktop-file-validate: validates a desktop file and prints warnings/err= ors\n" +" about desktop entry specification violations.\n" +"\n" +"desktop-file-install: installs a desktop file to the applications " +"directory,\n" +" optionally munging it a bit in transit.\n" +"\n" +"update-desktop-database: updates the database containing a cache of MIM= E " +"types\n" +" handled by desktop files." +msgstr "" + +#: gnu/packages/gnome.scm:587 +msgid "GNOME icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:589 +msgid "Icons for the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:628 +msgid "Database of common MIME types" +msgstr "" + +#: gnu/packages/gnome.scm:630 +msgid "" +"The shared-mime-info package contains the core database of common types= \n" +"and the update-mime-database command used to extend it. It requires gl= ib2 " +"to\n" +"be installed for building the update command. Additionally, it uses " +"intltool\n" +"for translations, though this is only a dependency for the maintainers.= " +"This\n" +"database is translated at Transifex." +msgstr "" + +#: gnu/packages/gnome.scm:654 +msgid "Freedesktop icon theme" +msgstr "" + +#: gnu/packages/gnome.scm:656 +msgid "Freedesktop icon theme." +msgstr "" + +#: gnu/packages/gnome.scm:683 +msgid "GNOME desktop notification library" +msgstr "" + +#: gnu/packages/gnome.scm:685 +msgid "" +"Libnotify is a library that sends desktop notifications to a\n" +"notification daemon, as defined in the Desktop Notifications spec. The= se\n" +"notifications can be used to inform the user about an event or display\= n" +"some form of information without getting in the user's way." +msgstr "" + +#: gnu/packages/gnome.scm:717 +msgid "GObject plugin system" +msgstr "" + +#: gnu/packages/gnome.scm:719 +msgid "" +"Libpeas is a gobject-based plugins engine, and is targetted at giving\n= " +"every application the chance to assume its own extensibility. It also = has " +"a\n" +"set of features including, but not limited to: multiple extension point= s; " +"on\n" +"demand (lazy) programming language support for C, Python and JS; simpli= city " +"of\n" +"the API." +msgstr "" + +#: gnu/packages/gnome.scm:748 +msgid "OpenGL extension to GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:749 +msgid "" +"GtkGLExt is an OpenGL extension to GTK+. It provides\n" +"additional GDK objects which support OpenGL rendering in GTK+ and GtkWi= dget\n" +"API add-ons to make GTK+ widgets OpenGL-capable." +msgstr "" + +#: gnu/packages/gnome.scm:792 +msgid "GTK+ rapid application development tool" +msgstr "" + +#: gnu/packages/gnome.scm:793 +msgid "" +"Glade is a rapid application development (RAD) tool to\n" +"enable quick & easy development of user interfaces for the GTK+ toolkit= and\n" +"the GNOME desktop environment." +msgstr "" + +#: gnu/packages/gnome.scm:818 +msgid "CSS2 parsing and manipulation library" +msgstr "" + +#: gnu/packages/gnome.scm:820 +msgid "" +"Libcroco is a standalone CSS2 parsing and manipulation library.\n" +"The parser provides a low level event driven SAC-like API and a CSS obj= ect\n" +"model like API. Libcroco provides a CSS2 selection engine and an " +"experimental\n" +"XML/CSS rendering engine." +msgstr "" + +#: gnu/packages/gnome.scm:853 +msgid "GNOME's Structured File Library" +msgstr "" + +#: gnu/packages/gnome.scm:855 +msgid "" +"Libgsf aims to provide an efficient extensible I/O abstraction for\n" +"dealing with different structured file formats." +msgstr "" + +#: gnu/packages/gnome.scm:920 +msgid "Render SVG files using Cairo" +msgstr "" + +#: gnu/packages/gnome.scm:922 +msgid "" +"Librsvg is a C library to render SVG files using the Cairo 2D graphics\= n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:946 +msgid "Create trees of CORBA Interface Definition Language files" +msgstr "" + +#: gnu/packages/gnome.scm:947 +msgid "" +"Libidl is a library for creating trees of CORBA Interface\n" +"Definition Language (idl) files, which is a specification for defining\= n" +"portable interfaces. libidl was initially written for orbit (the orb fr= om " +"the\n" +"GNOME project, and the primary means of libidl distribution). However,= the\n" +"functionality was designed to be as reusable and portable as possible." +msgstr "" + +#: gnu/packages/gnome.scm:987 +msgid "CORBA 2.4-compliant Object Request Broker" +msgstr "" + +#: gnu/packages/gnome.scm:988 +msgid "" +"ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" +"featuring mature C, C++ and Python bindings." +msgstr "" + +#: gnu/packages/gnome.scm:1034 +msgid "" +"Framework for creating reusable components for use in GNOME application= s" +msgstr "" + +#: gnu/packages/gnome.scm:1035 +msgid "" +"Bonobo is a framework for creating reusable components for\n" +"use in GNOME applications, built on top of CORBA." +msgstr "" + +#: gnu/packages/gnome.scm:1066 +msgid "Store application preferences" +msgstr "" + +#: gnu/packages/gnome.scm:1067 +msgid "" +"Gconf is a system for storing application preferences. It\n" +"is intended for user preferences; not arbitrary data storage." +msgstr "" + +#: gnu/packages/gnome.scm:1089 +msgid "Base MIME and Application database for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1090 +msgid "" +"GNOME Mime Data is a module which contains the base MIME\n" +"and Application database for GNOME. The data stored by this module is\= n" +"designed to be accessed through the MIME functions in GnomeVFS." +msgstr "" + +#: gnu/packages/gnome.scm:1134 +msgid "Access files and folders in GNOME applications" +msgstr "" + +#: gnu/packages/gnome.scm:1136 +msgid "" +"GnomeVFS is the core library used to access files and folders in GNOME\= n" +"applications. It provides a file system abstraction which allows " +"applications\n" +"to access local and remote files with a single consistent API." +msgstr "" + +#: gnu/packages/gnome.scm:1180 +msgid "Useful routines for building applications" +msgstr "" + +#: gnu/packages/gnome.scm:1181 +msgid "" +"The libgnome library provides a number of useful routines\n" +"for building modern applications, including session management, activat= ion " +"of\n" +"files and URIs, and displaying help." +msgstr "" + +#: gnu/packages/gnome.scm:1204 +msgid "2D drawing library" +msgstr "" + +#: gnu/packages/gnome.scm:1205 +msgid "" +"Libart is a 2D drawing library intended as a\n" +"high-quality vector-based 2D library with antialiasing and alpha compos= ition." +msgstr "" + +#: gnu/packages/gnome.scm:1232 +msgid "Flexible widget for creating interactive structured graphics" +msgstr "" + +#: gnu/packages/gnome.scm:1233 +msgid "" +"The GnomeCanvas widget provides a flexible widget for\n" +"creating interactive structured graphics." +msgstr "" + +#: gnu/packages/gnome.scm:1257 +msgid "C++ bindings to the GNOME Canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:1258 +msgid "C++ bindings to the GNOME Canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:1289 +msgid "Additional widgets for applications" +msgstr "" + +#: gnu/packages/gnome.scm:1290 +msgid "" +"The libgnomeui library provides additional widgets for\n" +"applications. Many of the widgets from libgnomeui have already been\n" +"ported to GTK+." +msgstr "" + +#: gnu/packages/gnome.scm:1316 +msgid "Load glade interfaces and access the glade built widgets" +msgstr "" + +#: gnu/packages/gnome.scm:1317 +msgid "" +"Libglade is a library that provides interfaces for loading\n" +"graphical interfaces described in glade files and for accessing the\n" +"widgets built in the loading process." +msgstr "" + +#: gnu/packages/gnome.scm:1354 gnu/packages/gnome.scm:1386 +msgid "Printing framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:1356 +msgid "" +"GNOME-print was a printing framework for GNOME. It has been deprecated= \n" +"since ca. 2006, when GTK+ itself incorporated printing support." +msgstr "" + +#: gnu/packages/gnome.scm:1431 +msgid "Some user interface controls using Bonobo" +msgstr "" + +#: gnu/packages/gnome.scm:1432 +msgid "" +"The Bonobo UI library provides a number of user interface\n" +"controls using the Bonobo component framework." +msgstr "" + +#: gnu/packages/gnome.scm:1456 +msgid "Window Navigator Construction Kit" +msgstr "" + +#: gnu/packages/gnome.scm:1458 +msgid "" +"Libwnck is the Window Navigator Construction Kit, a library for use in\= n" +"writing pagers, tasklists, and more generally applications that are dea= ling\n" +"with window management. It tries hard to respect the Extended Window " +"Manager\n" +"Hints specification (EWMH)." +msgstr "" + +#: gnu/packages/gnome.scm:1511 +msgid "Document-centric objects and utilities" +msgstr "" + +#: gnu/packages/gnome.scm:1512 +msgid "A GLib/GTK+ set of document-centric objects and utilities." +msgstr "" + +#: gnu/packages/gnome.scm:1594 +msgid "Spreadsheet application" +msgstr "" + +#: gnu/packages/gnome.scm:1596 +msgid "" +"GNUmeric is a GNU spreadsheet application, running under GNOME. It is\= n" +"interoperable with other spreadsheet applications. It has a vast array= of\n" +"features beyond typical spreadsheet functionality, such as support for = " +"linear\n" +"and non-linear solvers, statistical analysis, and telecommunication\n" +"engineering." +msgstr "" + +#: gnu/packages/gnome.scm:1642 +msgid "Default GNOME 3 themes" +msgstr "" + +#: gnu/packages/gnome.scm:1644 +msgid "The default GNOME 3 themes (Adwaita and some accessibility themes= )." +msgstr "" + +#: gnu/packages/gnome.scm:1677 +msgid "Manage encryption keys and passwords in the GNOME keyring" +msgstr "" + +#: gnu/packages/gnome.scm:1679 +msgid "" +"Seahorse is a GNOME application for managing encryption keys and\n" +"passwords in the GNOME keyring." +msgstr "" + +#: gnu/packages/gnome.scm:1715 gnu/packages/gnome.scm:1880 +msgid "Compiler for the GObject type system" +msgstr "" + +#: gnu/packages/gnome.scm:1717 +msgid "" +"Vala is a programming language that aims to bring modern programming\n" +"language features to GNOME developers without imposing any additional " +"runtime\n" +"requirements and without using a different ABI compared to applications= and\n" +"libraries written in C." +msgstr "" + +#: gnu/packages/gnome.scm:1747 +msgid "Virtual Terminal Emulator" +msgstr "" + +#: gnu/packages/gnome.scm:1749 +msgid "" +"VTE is a library (libvte) implementing a terminal emulator widget for\n= " +"GTK+, and a minimal sample application (vte) using that. Vte is mainly= used " +"in\n" +"gnome-terminal, but can also be used to embed a console/terminal in gam= es,\n" +"editors, IDEs, etc." +msgstr "" + +#: gnu/packages/gnome.scm:1847 +msgid "Low-level GNOME configuration system" +msgstr "" + +#: gnu/packages/gnome.scm:1848 +msgid "" +"Dconf is a low-level configuration system. Its main purpose\n" +"is to provide a backend to GSettings on platforms that don't already ha= ve\n" +"configuration storage systems." +msgstr "" + +#: gnu/packages/gnome.scm:1882 +msgid "" +"JSON-GLib is a C library based on GLib providing serialization and\n" +"deserialization support for the JavaScript Object Notation (JSON) forma= t\n" +"described by RFC 4627. It provides parser and generator GObject classe= s " +"and\n" +"various wrappers for the complex data types employed by JSON, such as " +"arrays\n" +"and objects." +msgstr "" + +#: gnu/packages/gnome.scm:1921 +msgid "High-level API for X Keyboard Extension" +msgstr "" + +#: gnu/packages/gnome.scm:1923 +msgid "" +"LibXklavier is a library providing high-level API for X Keyboard\n" +"Extension known as XKB. This library is intended to support XFree86 an= d " +"other\n" +"commercial X servers. It is useful for creating XKB-related software " +"(layout\n" +"indicators etc)." +msgstr "" + +#: gnu/packages/gnome.scm:1951 +msgid "Python bindings to librsvg" +msgstr "" + +#: gnu/packages/gnome.scm:1953 +msgid "" +"This packages provides Python bindings to librsvg, the SVG rendering\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2002 +msgid "Network-related GIO modules" +msgstr "" + +#: gnu/packages/gnome.scm:2004 +msgid "" +"This package contains various network related extensions for the GIO\n" +"library." +msgstr "" + +#: gnu/packages/gnome.scm:2035 +msgid "RESTful web api query library" +msgstr "" + +#: gnu/packages/gnome.scm:2037 +msgid "" +"This library was designed to make it easier to access web services that= \n" +"claim to be \"RESTful\". It includes convenience wrappers for libsoup = and\n" +"libxml to ease remote use of the RESTful API." +msgstr "" + +#: gnu/packages/gnome.scm:2106 +msgid "GLib-based HTTP Library" +msgstr "" + +#: gnu/packages/gnome.scm:2108 +msgid "" +"LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n= " +"and the GLib main loop, to integrate well with GNOME applications." +msgstr "" + +#: gnu/packages/gnome.scm:2154 +msgid "GObject bindings for \"Secret Service\" API" +msgstr "" + +#: gnu/packages/gnome.scm:2156 +msgid "" +"Libsecret is a GObject based library for storing and retrieving passwor= ds\n" +"and other secrets. It communicates with the \"Secret Service\" using D= Bus." +msgstr "" + +#: gnu/packages/gnome.scm:2200 +msgid "Minesweeper game" +msgstr "" + +#: gnu/packages/gnome.scm:2202 +msgid "" +"Mines (previously gnomine) is a puzzle game where you locate mines\n" +"floating in an ocean using only your brain and a little bit of luck." +msgstr "" + +#: gnu/packages/gnome.scm:2246 +msgid "Terminal emulator" +msgstr "" + +#: gnu/packages/gnome.scm:2248 +msgid "" +"GNOME Terminal is a terminal emulator application for accessing a\n" +"UNIX shell environment which can be used to run programs available on\n= " +"your system.\n" +"\n" +"It supports several profiles, multiple tabs and implements several\n" +"keyboard shortcuts." +msgstr "" + +#: gnu/packages/gnome.scm:2314 +msgid "Color management service" +msgstr "" + +#: gnu/packages/gnome.scm:2315 +msgid "" +"Colord is a system service that makes it easy to manage,\n" +"install and generate color profiles to accurately color manage input an= d\n" +"output devices." +msgstr "" + +#: gnu/packages/gnome.scm:2357 +msgid "Geolocation service" +msgstr "" + +#: gnu/packages/gnome.scm:2358 +msgid "" +"Geoclue is a D-Bus service that provides location\n" +"information. The primary goal of the Geoclue project is to make creati= ng\n" +"location-aware applications as simple as possible, while the secondary = goal " +"is\n" +"to ensure that no application can access location information without " +"explicit\n" +"permission from user." +msgstr "" + +#: gnu/packages/gnome.scm:2393 +msgid "Geocoding and reverse-geocoding library" +msgstr "" + +#: gnu/packages/gnome.scm:2395 +msgid "" +"geocode-glib is a convenience library for geocoding (finding longitude,= \n" +"and latitude from an address) and reverse geocoding (finding an address= " +"from\n" +"coordinates) using the Nominatim service. geocode-glib caches requests= for\n" +"faster results and to avoid unnecessary server load." +msgstr "" + +#: gnu/packages/gnome.scm:2448 +msgid "System daemon for managing power devices" +msgstr "" + +#: gnu/packages/gnome.scm:2450 +msgid "" +"UPower is an abstraction for enumerating power devices,\n" +"listening to device events and querying history and statistics. Any\n" +"application or service on the system can access the org.freedesktop.UPo= wer\n" +"service via the system message bus." +msgstr "" + +#: gnu/packages/gnome.scm:2500 +msgid "Location, time zone, and weather library for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2502 +msgid "" +"libgweather is a library to access weather information from online\n" +"services for numerous locations." +msgstr "" + +#: gnu/packages/gnome.scm:2554 +msgid "GNOME settings daemon" +msgstr "" + +#: gnu/packages/gnome.scm:2556 +msgid "" +"This package contains the daemon responsible for setting the various\n" +"parameters of a GNOME session and the applications that run under it. = It\n" +"handles settings such keyboard layout, shortcuts, and accessibility, " +"clipboard\n" +"settings, themes, mouse settings, and startup of other daemons." +msgstr "" + +#: gnu/packages/gnome.scm:2592 +msgid "Library to parse and save media playlists for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2593 +msgid "" +"Totem-pl-parser is a GObjects-based library to parse and save\n" +"playlists in a variety of formats." +msgstr "" + +#: gnu/packages/gnome.scm:2627 +msgid "Solitaire card games" +msgstr "" + +#: gnu/packages/gnome.scm:2629 +msgid "" +"Aisleriot (also known as Solitaire or sol) is a collection of card game= s\n" +"which are easy to play with the aid of a mouse." +msgstr "" + +#: gnu/packages/gnome.scm:2653 +msgid "API documentation browser for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:2655 +msgid "" +"Devhelp is an API documentation browser for GTK+ and GNOME. It works\n= " +"natively with GTK-Doc (the API reference system developed for GTK+ and = used\n" +"throughout GNOME for API documentation)." +msgstr "" + +#: gnu/packages/gnome.scm:2716 +msgid "Object oriented GL/GLES Abstraction/Utility Layer" +msgstr "" + +#: gnu/packages/gnome.scm:2718 +msgid "" +"Cogl is a small library for using 3D graphics hardware to draw pretty\n= " +"pictures. The API departs from the flat state machine style of OpenGL = and " +"is\n" +"designed to make it easy to write orthogonal components that can render= \n" +"without stepping on each others toes." +msgstr "" + +#: gnu/packages/gnome.scm:2773 +msgid "Open GL based interactive canvas library" +msgstr "" + +#: gnu/packages/gnome.scm:2775 gnu/packages/gnome.scm:2804 +msgid "" +"Clutter is an Open GL based interactive canvas library, designed for\n" +"creating fast, mainly 2D single window applications such as media box U= Is,\n" +"presentations, kiosk style applications and so on." +msgstr "" + +#: gnu/packages/gnome.scm:2802 +msgid "Open GL based interactive canvas library GTK+ widget" +msgstr "" + +#: gnu/packages/gnome.scm:2832 +msgid "Integration library for using GStreamer with Clutter" +msgstr "" + +#: gnu/packages/gnome.scm:2834 +msgid "" +"Clutter-Gst is an integration library for using GStreamer with Clutter.= \n" +"It provides a GStreamer sink to upload frames to GL and an actor that\n= " +"implements the ClutterGstPlayer interface using playbin. Clutter is an= " +"Open\n" +"GL based interactive canvas library." +msgstr "" + +#: gnu/packages/gnome.scm:2864 +msgid "C library providing a ClutterActor to display maps" +msgstr "" + +#: gnu/packages/gnome.scm:2866 +msgid "" +"libchamplain is a C library providing a ClutterActor to display maps.\n= " +"It also provides a Gtk+ widget to display maps in Gtk+ applications. " +"Python\n" +"and Perl bindings are also available. It supports numerous free map " +"sources\n" +"such as OpenStreetMap, OpenCycleMap, OpenAerialMap, and Maps for free." +msgstr "" + +#: gnu/packages/gnome.scm:2897 +msgid "Object mapper from GObjects to SQLite" +msgstr "" + +#: gnu/packages/gnome.scm:2899 +msgid "" +"Gom provides an object mapper from GObjects to SQLite. It helps you\n" +"write applications that need to store structured data as well as make " +"complex\n" +"queries upon that data." +msgstr "" + +#: gnu/packages/gnome.scm:2927 +msgid "Sliding block puzzles" +msgstr "" + +#: gnu/packages/gnome.scm:2929 +msgid "" +"GNOME Klotski is a set of block sliding puzzles. The objective is to m= ove\n" +"the patterned block to the area bordered by green markers. To do so, y= ou " +"will\n" +"need to slide other blocks out of the way. Complete each puzzle in as = few " +"moves\n" +"as possible!" +msgstr "" + +#: gnu/packages/gnome.scm:2980 +msgid "Framework for discovering and browsing media" +msgstr "" + +#: gnu/packages/gnome.scm:2982 gnu/packages/gnome.scm:3034 +msgid "" +"Grilo is a framework focused on making media discovery and browsing eas= y\n" +"for application developers." +msgstr "" + +#: gnu/packages/gnome.scm:3032 +msgid "Plugins for the Grilo media discovery library" +msgstr "" + +#: gnu/packages/gnome.scm:3109 +msgid "Simple media player for GNOME based on GStreamer" +msgstr "" + +#: gnu/packages/gnome.scm:3110 +msgid "" +"Totem is a simple yet featureful media player for GNOME\n" +"which can read a large number of file formats." +msgstr "" + +#: gnu/packages/gnome.scm:3199 +msgid "Music player for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3200 +msgid "" +"Rhythmbox is a music playing application for GNOME. It\n" +"supports playlists, song ratings, and any codecs installed through gstr= eamer." +msgstr "" + +#: gnu/packages/gnome.scm:3250 +msgid "GNOME image viewer" +msgstr "" + +#: gnu/packages/gnome.scm:3251 +msgid "" +"Eye of GNOME is the GNOME image viewer. It\n" +"supports image conversion, rotation, and slideshows." +msgstr "" + +#: gnu/packages/gnome.scm:3276 +#, fuzzy +msgid "GObject bindings for libudev" +msgstr "Guile r=C3=A0ng bu=E1=BB=99c v=C3=A0o ncurses" + +#: gnu/packages/gnome.scm:3278 +msgid "" +"This library provides GObject bindings for libudev. It was originally\= n" +"part of udev-extras, then udev, then systemd. It's now a project on it= s own." +msgstr "" + +#: gnu/packages/gnome.scm:3324 +msgid "Userspace virtual filesystem for GIO" +msgstr "" + +#: gnu/packages/gnome.scm:3326 +msgid "" +"GVFS is a userspace virtual filesystem designed to work with the I/O\n" +"abstraction of GIO. It contains a GIO module that seamlessly adds GVFS= " +"support\n" +"to all applications using the GIO API. It also supports exposing the G= VFS\n" +"mounts to non-GIO applications using FUSE.\n" +"\n" +"GVFS comes with a set of backends, including trash support, SFTP, SMB, = " +"HTTP,\n" +"DAV, and others." +msgstr "" + +#: gnu/packages/gnome.scm:3372 +#, fuzzy +msgid "GLib binding for libusb1" +msgstr "Guile r=C3=A0ng bu=E1=BB=99c v=C3=A0o ncurses" + +#: gnu/packages/gnome.scm:3374 +msgid "" +"GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" +"asynchronous control, bulk and interrupt transfers with proper cancella= tion\n" +"and integration into a mainloop. This makes it easy to integrate low l= evel\n" +"USB transfers with your high-level application or system daemon." +msgstr "" + +#: gnu/packages/gnome.scm:3411 +msgid "Document and image scanner" +msgstr "" + +#: gnu/packages/gnome.scm:3412 +msgid "" +"Simple Scan is an easy-to-use application, designed to let\n" +"users connect their scanner and quickly have the image/document in an\n= " +"appropriate format. Simple Scan is basically a frontend for SANE - whi= ch " +"is\n" +"the same backend as XSANE uses. This means that all existing scanners w= ill\n" +"work and the interface is well tested." +msgstr "" + +#: gnu/packages/gnome.scm:3461 +msgid "GNOME web browser" +msgstr "" + +#: gnu/packages/gnome.scm:3463 +msgid "" +"Epiphany is a GNOME web browser targeted at non-technical users. Its\n= " +"principles are simplicity and standards compliance." +msgstr "" + +#: gnu/packages/gnome.scm:3519 +msgid "D-Bus debugger" +msgstr "" + +#: gnu/packages/gnome.scm:3521 +msgid "" +"D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfac= es\n" +"of running programs and invoke methods on those interfaces." +msgstr "" + +#: gnu/packages/gnome.scm:3543 +msgid "XSL stylesheets for Yelp" +msgstr "" + +#: gnu/packages/gnome.scm:3545 +msgid "" +"Yelp-xsl contains XSL stylesheets that are used by the yelp help browse= r\n" +"to format Docbook and Mallard documents." +msgstr "" + +#: gnu/packages/gnome.scm:3575 +msgid "GNOME help browser" +msgstr "" + +#: gnu/packages/gnome.scm:3577 +msgid "" +"Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\= n" +"man, info, and HTML documents. It can locate documents according to th= e\n" +"freedesktop.org help system specification." +msgstr "" + +#: gnu/packages/gnome.scm:3605 +msgid "Yelp documentation tools" +msgstr "" + +#: gnu/packages/gnome.scm:3607 +msgid "" +"Yelp-tools is a collection of scripts and build utilities to help creat= e,\n" +"manage, and publish documentation for Yelp and the web. Most of the he= avy\n" +"lifting is done by packages like yelp-xsl and itstool. This package ju= st\n" +"wraps things up in a developer-friendly way." +msgstr "" + +#: gnu/packages/gnome.scm:3644 +msgid "GObject collection library" +msgstr "" + +#: gnu/packages/gnome.scm:3646 +msgid "" +"Libgee is a utility library providing GObject-based interfaces and\n" +"classes for commonly used data structures." +msgstr "" + +#: gnu/packages/gnome.scm:3673 +msgid "GObject wrapper around the Exiv2 photo metadata library" +msgstr "" + +#: gnu/packages/gnome.scm:3675 +msgid "" +"Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. I= t\n" +"allows for GNOME applications to easily inspect and update EXIF, IPTC, = and " +"XMP\n" +"metadata in photo and video files of various formats." +msgstr "" + +#: gnu/packages/gnome.scm:3727 +msgid "Photo manager for GNOME 3" +msgstr "" + +#: gnu/packages/gnome.scm:3729 +msgid "" +"Shotwell is a digital photo manager designed for the GNOME desktop\n" +"environment. It allows you to import photos from disk or camera, organ= ize\n" +"them by keywords and events, view them in full-window or fullscreen mod= e, " +"and\n" +"share them with others via social networking and more." +msgstr "" + +#: gnu/packages/gnome.scm:3761 +msgid "Graphical archive manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3762 +msgid "" +"File Roller is an archive manager for the GNOME desktop\n" +"environment that allows users to view, unpack, and create compressed " +"archives\n" +"such as gzip tarballs." +msgstr "" + +#: gnu/packages/gnome.scm:3797 +msgid "Session manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3799 +msgid "" +"This package contains the GNOME session manager, as well as a\n" +"configuration program to choose applications starting on login." +msgstr "" + +#: gnu/packages/gnome.scm:3844 +msgid "Javascript bindings for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:3847 +msgid "" +"Gjs is a javascript binding for GNOME. It's mainly based on spidermonk= ey\n" +"javascript engine and the GObject introspection framework." +msgstr "" + +#: gnu/packages/gnome.scm:3903 +#, fuzzy +msgid "GNOME text editor" +msgstr "Tr=C3=ACnh so=E1=BA=A1n th=E1=BA=A3o lu=E1=BB=93ng d=E1=BB=AF li= =E1=BB=87u" + +#: gnu/packages/gnome.scm:3904 +msgid "" +"While aiming at simplicity and ease of use, gedit is a\n" +"powerful general purpose text editor." +msgstr "" + +#: gnu/packages/gnome.scm:3928 +msgid "Display graphical dialog boxes from shell scripts" +msgstr "" + +#: gnu/packages/gnome.scm:3931 +msgid "" +"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows y= ou\n" +"to display dialog boxes from the commandline and shell scripts." +msgstr "" + +#: gnu/packages/gnome.scm:3976 +msgid "Window and compositing manager" +msgstr "" + +#: gnu/packages/gnome.scm:3979 +msgid "" +"Mutter is a window and compositing manager that displays and manages yo= ur\n" +"desktop via OpenGL. Mutter combines a sophisticated display engine usi= ng " +"the\n" +"Clutter toolkit with solid window-management logic inherited from the " +"Metacity\n" +"window manager." +msgstr "" + +#: gnu/packages/gnome.scm:4014 +msgid "Single sign-on framework for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4017 +msgid "" +"GNOME Online Accounts provides interfaces so that applications and\n" +"libraries in GNOME can access the user's online accounts. It has provi= ders " +"for\n" +"Google, ownCloud, Facebook, Flickr, Windows Live, Pocket, Foursquare, " +"Microsoft\n" +"Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." +msgstr "" + +#: gnu/packages/gnome.scm:4076 +msgid "Store address books and calendars" +msgstr "" + +#: gnu/packages/gnome.scm:4079 +msgid "" +"This package provides a unified backend for programs that work with\n" +"contacts, tasks, and calendar information. It was originally developed= for\n" +"Evolution (hence the name), but is now used by other packages as well." +msgstr "" + +#: gnu/packages/gnome.scm:4142 +msgid "Text entry and UI navigation application" +msgstr "" + +#: gnu/packages/gnome.scm:4145 +msgid "" +"Caribou is an input assistive technology intended for switch and pointe= r\n" +"users." +msgstr "" + +#: gnu/packages/gnome.scm:4231 +msgid "Network connection manager" +msgstr "" + +#: gnu/packages/gnome.scm:4234 +msgid "" +"NetworkManager is a system network service that manages your network\n" +"devices and connections, attempting to keep active network connectivity= " +"when\n" +"available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPP= oE\n" +"devices, and provides VPN integration with a variety of different VPN\n= " +"services." +msgstr "" + +#: gnu/packages/gnome.scm:4269 +msgid "Applet for managing network connections" +msgstr "" + +#: gnu/packages/gnome.scm:4272 +msgid "" +"This package contains a systray applet for NetworkManager. It displays= \n" +"the available networks and allows users to easily switch between them." +msgstr "" + +#: gnu/packages/gnome.scm:4297 +msgid "C++ wrapper for XML parser library libxml2" +msgstr "" + +#: gnu/packages/gnome.scm:4299 +msgid "" +"This package provides a C++ wrapper for the XML parser library\n" +"libxml2." +msgstr "" + +#: gnu/packages/gnome.scm:4356 +msgid "Display manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4359 +msgid "" +"GNOME Display Manager is a system service that is responsible for\n" +"providing graphical log-ins and managing local and remote displays." +msgstr "" + +#: gnu/packages/gnome.scm:4383 +msgid "Portable system access library" +msgstr "" + +#: gnu/packages/gnome.scm:4386 +msgid "" +"LibGTop is a library to get system specific data such as CPU and memory= \n" +"usage and information about running processes." +msgstr "" + +#: gnu/packages/gnome.scm:4416 +msgid "GNOME Bluetooth subsystem" +msgstr "" + +#: gnu/packages/gnome.scm:4419 +msgid "" +"This package contains tools for managing and manipulating Bluetooth\n" +"devices using the GNOME desktop." +msgstr "" + +#: gnu/packages/gnome.scm:4484 +msgid "Utilities to configure the GNOME desktop" +msgstr "" + +#: gnu/packages/gnome.scm:4487 +msgid "" +"This package contains configuration applets for the GNOME desktop,\n" +"allowing to set accessibility configuration, desktop fonts, keyboard an= d " +"mouse\n" +"properties, sound setup, desktop theme and background, user interface\n= " +"properties, screen resolution, and other GNOME parameters." +msgstr "" + +#: gnu/packages/gnome.scm:4568 +msgid "Desktop shell for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4571 +msgid "" +"GNOME Shell provides core user interface functions for the GNOME deskto= p,\n" +"like switching to windows and launching applications." +msgstr "" + +#: gnu/packages/gnome.scm:4605 +msgid "VNC viewer widget for GTK+" +msgstr "" + +#: gnu/packages/gnome.scm:4607 +msgid "" +"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing= \n" +"applications, for instance the Vinagre client, GNOME Boxes and virt-vie= wer.\n" +"GTK-VNC implements client side RFB protocol and authentication extensio= ns " +"such\n" +"as SASL, TLS and VeNCrypt. Additionally it supports encoding extension= s." +msgstr "" + +#: gnu/packages/gnome.scm:4645 +msgid "File manager for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4648 +msgid "" +"Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" +"design and behaviour, giving the user a simple way to navigate and mana= ge " +"its\n" +"files." +msgstr "" + +#: gnu/packages/gnome.scm:4676 +msgid "Disk usage analyzer for GNOME" +msgstr "" + +#: gnu/packages/gnome.scm:4678 +msgid "" +"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk= \n" +"usage in the GNOME desktop environment. It can easily scan device volu= mes " +"or\n" +"a specific user-requested directory branch (local or remote). Once the= " +"scan\n" +"is complete it provides a graphical representation of each selected fol= der." +msgstr "" + +#: gnu/packages/gnuzilla.scm:95 +msgid "Mozilla javascript engine" +msgstr "" + +#: gnu/packages/gnuzilla.scm:96 +msgid "" +"SpiderMonkey is Mozilla's JavaScript engine written\n" +"in C/C++." +msgstr "" + +#: gnu/packages/gnuzilla.scm:171 +msgid "Netscape API for system level and libc-like functions" +msgstr "" + +#: gnu/packages/gnuzilla.scm:172 +msgid "" +"Netscape Portable Runtime (NSPR) provides a\n" +"platform-neutral API for system level and libc-like functions. It is u= sed\n" +"in the Mozilla clients." +msgstr "" + +#: gnu/packages/gnuzilla.scm:268 +msgid "Network Security Services" +msgstr "" + +#: gnu/packages/gnuzilla.scm:270 +msgid "" +"Network Security Services (NSS) is a set of libraries designed to suppo= rt\n" +"cross-platform development of security-enabled client and server " +"applications.\n" +"Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PK= CS " +"#7,\n" +"PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security\n= " +"standards." +msgstr "" + +#: gnu/packages/gnuzilla.scm:506 +msgid "Entirely free browser derived from Mozilla Firefox" +msgstr "" + +#: gnu/packages/gnuzilla.scm:508 +msgid "" +"IceCat is the GNU version of the Firefox browser. It is entirely free\= n" +"software, which does not recommend non-free plugins and addons. It als= o\n" +"features built-in privacy-protecting features." +msgstr "" + +#: gnu/packages/gtk.scm:87 +msgid "GNOME accessibility toolkit" +msgstr "" + +#: gnu/packages/gtk.scm:89 +msgid "" +"ATK provides the set of accessibility interfaces that are implemented\n= " +"by other toolkits and applications. Using the ATK interfaces, " +"accessibility\n" +"tools have full access to view and control running applications." +msgstr "" + +#: gnu/packages/gtk.scm:128 +msgid "2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:130 +msgid "" +"Cairo is a 2D graphics library with support for multiple output devices= .\n" +"Currently supported output targets include the X Window System (via bot= h\n" +"Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG f= ile\n" +"output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB= .\n" +"\n" +"Cairo is designed to produce consistent output on all output media whil= e\n" +"taking advantage of display hardware acceleration when available\n" +"eg. through the X Render Extension).\n" +"\n" +"The cairo API provides operations similar to the drawing operators of\n= " +"PostScript and PDF. Operations in cairo including stroking and filling= " +"cubic\n" +"B=C3=A9zier splines, transforming and compositing translucent images, a= nd\n" +"antialiased text rendering. All drawing operations can be transformed = by " +"any\n" +"affine transformation (scale, rotation, shear, etc.)." +msgstr "" + +#: gnu/packages/gtk.scm:178 +msgid "OpenType text shaping engine" +msgstr "" + +#: gnu/packages/gtk.scm:180 +msgid "HarfBuzz is an OpenType text shaping engine." +msgstr "" + +#: gnu/packages/gtk.scm:211 +msgid "GNOME text and font handling library" +msgstr "" + +#: gnu/packages/gtk.scm:213 +msgid "" +"Pango is the core text and font handling library used in GNOME\n" +"applications. It has extensive support for the different writing syste= ms\n" +"used throughout the world." +msgstr "" + +#: gnu/packages/gtk.scm:239 +msgid "Obsolete pango functions" +msgstr "" + +#: gnu/packages/gtk.scm:240 +msgid "" +"Pangox was a X backend to pango. It is now obsolete and no\n" +"longer provided by recent pango releases. pangox-compat provides the\n= " +"functions which were removed." +msgstr "" + +#: gnu/packages/gtk.scm:276 +msgid "GTK+ widget for interactive graph-like environments" +msgstr "" + +#: gnu/packages/gtk.scm:278 +msgid "" +"Ganv is an interactive GTK+ widget for interactive =E2=80=9Cboxes and l= ines=E2=80=9D or\n" +"graph-like environments, e.g. modular synths or finite state machine\n" +"diagrams." +msgstr "" + +#: gnu/packages/gtk.scm:330 +msgid "Widget that extends the standard GTK+ 2.x 'GtkTextView' widget" +msgstr "" + +#: gnu/packages/gtk.scm:332 +msgid "" +"GtkSourceView is a portable C library that extends the standard GTK+\n" +"framework for multiline text editing with support for configurable synt= ax\n" +"highlighting, unlimited undo/redo, search and replace, a completion " +"framework,\n" +"printing and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:381 +msgid "GNOME source code widget" +msgstr "" + +#: gnu/packages/gtk.scm:382 +msgid "" +"GtkSourceView is a text widget that extends the standard\n" +"GTK+ text widget GtkTextView. It improves GtkTextView by implementing = " +"syntax\n" +"highlighting and other features typical of a source code editor." +msgstr "" + +#: gnu/packages/gtk.scm:429 +msgid "GNOME image loading and manipulation library" +msgstr "" + +#: gnu/packages/gtk.scm:431 +msgid "" +"GdkPixbuf is a library for image loading and manipulation developed\n" +"in the GNOME project." +msgstr "" + +#: gnu/packages/gtk.scm:474 +msgid "Assistive Technology Service Provider Interface, core components" +msgstr "" + +#: gnu/packages/gtk.scm:476 +msgid "" +"The Assistive Technology Service Provider Interface, core components,\n= " +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:509 +msgid "Assistive Technology Service Provider Interface, ATK bindings" +msgstr "" + +#: gnu/packages/gtk.scm:511 +msgid "" +"The Assistive Technology Service Provider Interface\n" +"is part of the GNOME accessibility project." +msgstr "" + +#: gnu/packages/gtk.scm:568 +msgid "Cross-platform toolkit for creating graphical user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:570 +msgid "" +"GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" +"graphical user interfaces. Offering a complete set of widgets, GTK+ is= \n" +"suitable for projects ranging from small one-off tools to complete\n" +"application suites." +msgstr "" + +#: gnu/packages/gtk.scm:705 +#, fuzzy +msgid "Cairo bindings for GNU Guile" +msgstr "M=E1=BB=99t framework =C4=91=E1=BB=83 x=C3=A2y d=E1=BB=B1ng b=E1= =BB=99 =C4=91=E1=BB=8Dc d=C3=A0nh cho GNU Guile" + +#: gnu/packages/gtk.scm:707 +msgid "" +"Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" +"Guile-Cairo is complete, wrapping almost all of the Cairo API. It is A= PI\n" +"stable, providing a firm base on which to do graphics work. Finally, a= nd\n" +"importantly, it is pleasant to use. You get a powerful and well-mainta= ined\n" +"graphics library with all of the benefits of Scheme: memory management,= \n" +"exceptions, macros, and a dynamic programming environment." +msgstr "" + +#: gnu/packages/gtk.scm:747 +msgid "Render SVG images using Cairo from Guile" +msgstr "" + +#: gnu/packages/gtk.scm:749 +msgid "" +"Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG= \n" +"images onto Cairo surfaces." +msgstr "" + +#: gnu/packages/gtk.scm:793 +msgid "Create SVG or PDF presentations in Guile" +msgstr "" + +#: gnu/packages/gtk.scm:795 +msgid "" +"Guile-Present defines a declarative vocabulary for presentations,\n" +"together with tools to render presentation documents as SVG or PDF.\n" +"Guile-Present can be used to make presentations programmatically, but a= lso\n" +"includes a tools to generate PDF presentations out of Org mode and Texi= nfo\n" +"documents." +msgstr "" + +#: gnu/packages/gtk.scm:829 +msgid "C++ bindings to the Cairo 2D graphics library" +msgstr "" + +#: gnu/packages/gtk.scm:831 +msgid "" +"Cairomm provides a C++ programming interface to the Cairo 2D graphics\n= " +"library." +msgstr "" + +#: gnu/packages/gtk.scm:855 +msgid "C++ interface to the Pango text rendering library" +msgstr "" + +#: gnu/packages/gtk.scm:857 +msgid "" +"Pangomm provides a C++ programming interface to the Pango text renderin= g\n" +"library." +msgstr "" + +#: gnu/packages/gtk.scm:878 +msgid "C++ interface to the ATK accessibility library" +msgstr "" + +#: gnu/packages/gtk.scm:880 +msgid "" +"ATKmm provides a C++ programming interface to the ATK accessibility\n" +"toolkit." +msgstr "" + +#: gnu/packages/gtk.scm:907 +msgid "C++ interface to the GTK+ graphical user interface library" +msgstr "" + +#: gnu/packages/gtk.scm:909 +msgid "" +"gtkmm is the official C++ interface for the popular GUI library GTK+.\n= " +"Highlights include typesafe callbacks, and a comprehensive set of widge= ts " +"that\n" +"are easily extensible via inheritance. You can create user interfaces = " +"either\n" +"in code or with the Glade User Interface designer, using libglademm. " +"There's\n" +"extensive documentation, including API reference and a tutorial." +msgstr "" + +#: gnu/packages/gtk.scm:968 +msgid "Python bindings for cairo" +msgstr "" + +#: gnu/packages/gtk.scm:970 +msgid "Pycairo is a set of Python bindings for the Cairo graphics librar= y." +msgstr "" + +#: gnu/packages/gtk.scm:1053 +msgid "Python bindings for GTK+" +msgstr "" + +#: gnu/packages/gtk.scm:1055 +msgid "" +"PyGTK allows you to write full featured GTK programs in Python. It is\= n" +"targetted at GTK 2.x, and can be used in conjunction with gnome-python = to\n" +"write GNOME applications." +msgstr "" + +#: gnu/packages/gtk.scm:1086 +msgid "Library for minimalistic gtk+3 user interfaces" +msgstr "" + +#: gnu/packages/gtk.scm:1087 +msgid "" +"Girara is a library that implements a user interface that\n" +"focuses on simplicity and minimalism. Currently based on GTK+, a\n" +"cross-platform widget toolkit, it provides an interface that focuses on= " +"three\n" +"main components: a so-called view widget that represents the actual\n" +"application, an input bar that is used to execute commands of the\n" +"application and the status bar which provides the user with current\n" +"information." +msgstr "" + +#: gnu/packages/gtk.scm:1130 +msgid "Documentation generator from C source code" +msgstr "" + +#: gnu/packages/gtk.scm:1132 +msgid "" +"GTK-Doc generates API documentation from comments added to C code. It = is\n" +"typically used to document the public API of GTK+ and GNOME libraries, = but " +"it\n" +"can also be used to document application code." +msgstr "" + +#: gnu/packages/gtk.scm:1159 +msgid "Theming engines for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1161 +msgid "" +"This package contains the standard GTK+ 2.x theming engines including\n= " +"Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mis= t,\n" +"Redmond95 and ThinIce." +msgstr "" + +#: gnu/packages/gtk.scm:1189 +msgid "Cairo-based theming engine for GTK+ 2.x" +msgstr "" + +#: gnu/packages/gtk.scm:1191 +msgid "" +"Murrine is a cairo-based GTK+ theming engine. It is named after the\n" +"glass artworks done by Venicians glass blowers." +msgstr "" + +#: gnu/packages/guile.scm:112 gnu/packages/guile.scm:180 +msgid "Scheme implementation intended especially for extensions" +msgstr "L=C6=B0=E1=BB=A3c =C4=91=E1=BB=93 th=E1=BB=B1c thi c=C3=B3 d=E1=BB= =A5ng =C3=BD =C4=91=E1=BA=B7c bi=E1=BB=87t cho ph=E1=BA=A7n m=E1=BB=9F r=E1= =BB=99ng" + +#: gnu/packages/guile.scm:114 gnu/packages/guile.scm:182 +msgid "" +"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" +"official extension language of the GNU system. It is an implementation= of\n" +"the Scheme language which can be easily embedded in other applications = to\n" +"provide a convenient means of extending the functionality of the " +"application\n" +"without requiring the source code to be rewritten." +msgstr "" + +#: gnu/packages/guile.scm:213 +msgid "Snapshot of what will become version 2.2 of GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:294 +msgid "Web application framework written in Guile" +msgstr "" + +#: gnu/packages/guile.scm:295 +msgid "" +"GNU Artanis is a web application framework written in Guile\n" +"Scheme. A web application framework (WAF) is a software framework that= is\n" +"designed to support the development of dynamic websites, web applicatio= ns, " +"web\n" +"services and web resources. The framework aims to alleviate the overhe= ad\n" +"associated with common activities performed in web development. Artani= s\n" +"provides several tools for web development: database access, templating= \n" +"frameworks, session management, URL-remapping for RESTful, page caching= , " +"and\n" +"more." +msgstr "" + +#: gnu/packages/guile.scm:325 +msgid "Framework for building readers for GNU Guile" +msgstr "M=E1=BB=99t framework =C4=91=E1=BB=83 x=C3=A2y d=E1=BB=B1ng b=E1= =BB=99 =C4=91=E1=BB=8Dc d=C3=A0nh cho GNU Guile" + +#: gnu/packages/guile.scm:327 +msgid "" +"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"\n" +"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" +"procedure. Readers supporting various syntax variants can easily be " +"written,\n" +"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" +"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-= derived\n" +"document syntax.\n" +"\n" +"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" +"hopefully more powerful and flexible (for instance, one may instantiate= as\n" +"many readers as needed)." +msgstr "" + +#: gnu/packages/guile.scm:376 +msgid "Guile bindings to ncurses" +msgstr "Guile r=C3=A0ng bu=E1=BB=99c v=C3=A0o ncurses" + +#: gnu/packages/guile.scm:378 +msgid "" +"guile-ncurses provides Guile language bindings for the ncurses\n" +"library." +msgstr "" + +#: gnu/packages/guile.scm:398 +msgid "Run jobs at scheduled times" +msgstr "Ch=E1=BA=A1y c=C3=A1c c=C3=B4ng vi=E1=BB=87c theo l=E1=BB=8Bch b= i=E1=BB=83u" + +#: gnu/packages/guile.scm:400 +msgid "" +"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" +"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten " +"in\n" +"Guile, so its configuration can be written in Scheme; the original cron= \n" +"format is also supported." +msgstr "" + +#: gnu/packages/guile.scm:428 +msgid "Collection of useful Guile Scheme modules" +msgstr "B=E1=BB=99 s=C6=B0u t=E1=BA=ADp c=E1=BB=A7a c=C3=A1c m=C3=B4-=C4= =91un L=C6=B0=E1=BB=A3c =C4=91=E1=BB=93 Guile" + +#: gnu/packages/guile.scm:430 +msgid "" +"Guile-Lib is intended as an accumulation place for pure-scheme Guile\n" +"modules, allowing for people to cooperate integrating their generic Gui= le\n" +"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" +"for Guile\"." +msgstr "" + +#: gnu/packages/guile.scm:461 +msgid "JSON module for Guile" +msgstr "" + +#: gnu/packages/guile.scm:463 +msgid "" +"Guile-json supports parsing and building JSON documents according to th= e\n" +"http:://json.org specification. These are the main features:\n" +"- Strictly complies to http://json.org specification.\n" +"- Build JSON documents programmatically via macros.\n" +"- Unicode support for strings.\n" +"- Allows JSON pretty printing." +msgstr "" + +#: gnu/packages/guile.scm:534 +msgid "MiniKanren declarative logic system, packaged for Guile" +msgstr "" + +#: gnu/packages/guile.scm:536 +msgid "" +"MiniKanren is a relational programming extension to the Scheme\n" +"programming Language, written as a smaller version of Kanren suitable f= or\n" +"pedagogical purposes. It is featured in the book, The Reasoned Schemer= ,\n" +"written by Dan Friedman, William Byrd, and Oleg Kiselyov.\n" +"\n" +"This is Ian Price's r6rs packaged version of miniKanren, which deviates= \n" +"slightly from miniKanren mainline.\n" +"\n" +"See http://minikanren.org/ for more on miniKanren generally." +msgstr "" + +#: gnu/packages/guile.scm:619 +msgid "S-expression based regular expressions" +msgstr "" + +#: gnu/packages/guile.scm:621 +msgid "" +"Irregex is an s-expression based alternative to your classic\n" +"string-based regular expressions. It implements SRFI 115 and is deeply= \n" +"inspired by the SCSH regular expression system." +msgstr "" + +#: gnu/packages/guile.scm:685 +msgid "Guile bindings to the GDBM library via Guile's FFI" +msgstr "" + +#: gnu/packages/guile.scm:687 +msgid "" +"Guile bindings to the GDBM key-value storage system, using\n" +"Guile's foreign function interface." +msgstr "" + +#: gnu/packages/guile.scm:727 +msgid "Functional static site generator" +msgstr "" + +#: gnu/packages/guile.scm:728 +msgid "" +"Haunt is a static site generator written in Guile\n" +"Scheme. Haunt features a functional build system and an extensible\n" +"interface for reading articles in any format." +msgstr "" + +#: gnu/packages/guile.scm:758 +msgid "Redis client library for Guile" +msgstr "" + +#: gnu/packages/guile.scm:759 +msgid "" +"Guile-redis provides a Scheme interface to the Redis\n" +"key-value cache and store." +msgstr "" + +#: gnu/packages/guile.scm:833 +msgid "Whitespace to lisp syntax for Guile" +msgstr "" + +#: gnu/packages/guile.scm:834 +msgid "" +"Wisp is a syntax for Guile which provides a Python-like\n" +"whitespace-significant language. It may be easier on the eyes for some= \n" +"users and in some situations." +msgstr "" + +#: gnu/packages/guile.scm:867 +msgid "2D/3D game engine for GNU Guile" +msgstr "" + +#: gnu/packages/guile.scm:868 +msgid "" +"Sly is a 2D/3D game engine written in Guile Scheme. Sly\n" +"features a functional reactive programming interface and live coding\n" +"capabilities." +msgstr "" + +#: gnu/packages/guile.scm:893 +#, fuzzy +msgid "Generate C bindings for Guile" +msgstr "M=E1=BB=99t framework =C4=91=E1=BB=83 x=C3=A2y d=E1=BB=B1ng b=E1= =BB=99 =C4=91=E1=BB=8Dc d=C3=A0nh cho GNU Guile" + +#: gnu/packages/guile.scm:894 +msgid "" +"G-Wrap is a tool and Guile library for generating function\n" +"wrappers for inter-language calls. It currently only supports generati= ng " +"Guile\n" +"wrappers for C functions. Given a definition of the types and prototyp= es " +"for\n" +"a given C interface, G-Wrap will automatically generate the C code that= \n" +"provides access to that interface and its types from the Scheme level." +msgstr "" + +#: gnu/packages/imagemagick.scm:101 gnu/packages/imagemagick.scm:195 +msgid "Create, edit, compose, or convert bitmap images" +msgstr "" + +#: gnu/packages/imagemagick.scm:103 +msgid "" +"ImageMagick=C2=AE is a software suite to create, edit, compose, or conv= ert\n" +"bitmap images. It can read and write images in a variety of formats (o= ver " +"100)\n" +"including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript= , " +"SVG,\n" +"and TIFF. Use ImageMagick to resize, flip, mirror, rotate, distort, sh= ear " +"and\n" +"transform images, adjust image colors, apply various special effects, o= r " +"draw\n" +"text, lines, polygons, ellipses and B=C3=A9zier curves." +msgstr "" + +#: gnu/packages/imagemagick.scm:147 +msgid "Perl interface to ImageMagick" +msgstr "" + +#: gnu/packages/imagemagick.scm:148 +msgid "" +"This Perl extension allows the reading, manipulation and\n" +"writing of a large number of image file formats using the ImageMagick " +"library.\n" +"Use it to create, edit, compose, or convert bitmap images from within a= " +"Perl\n" +"script." +msgstr "" + +#: gnu/packages/imagemagick.scm:197 +msgid "" +"GraphicsMagick provides a comprehensive collection of utilities,\n" +"programming interfaces, and GUIs, to support file format conversion, im= age\n" +"processing, and 2D vector rendering." +msgstr "" + +#: gnu/packages/image.scm:71 +msgid "Library for handling PNG files" +msgstr "" + +#: gnu/packages/image.scm:73 +msgid "" +"Libpng is the official PNG (Portable Network Graphics) reference\n" +"library. It supports almost all PNG features and is extensible." +msgstr "" + +#: gnu/packages/image.scm:89 +msgid "Library for handling JPEG files" +msgstr "" + +#: gnu/packages/image.scm:91 +msgid "" +"Libjpeg implements JPEG image encoding, decoding, and transcoding.\n" +"JPEG is a standardized compression method for full-color and gray-scale= \n" +"images.\n" +"The included programs provide conversion between the JPEG format and\n" +"image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats." +msgstr "" + +#: gnu/packages/image.scm:124 +msgid "Optimize JPEG images" +msgstr "" + +#: gnu/packages/image.scm:126 +msgid "" +"jpegoptim provides lossless optimization (based on optimizing\n" +"the Huffman tables) and \"lossy\" optimization based on setting\n" +"maximum quality factor." +msgstr "" + +#: gnu/packages/image.scm:157 +msgid "Library for handling TIFF files" +msgstr "" + +#: gnu/packages/image.scm:159 +msgid "" +"Libtiff provides support for the Tag Image File Format (TIFF), a format= \n" +"used for storing image data.\n" +"Included are a library, libtiff, for reading and writing TIFF and a sma= ll\n" +"collection of tools for doing simple manipulations of TIFF images." +msgstr "" + +#: gnu/packages/image.scm:202 +msgid "Library for reading images in the Microsoft WMF format" +msgstr "" + +#: gnu/packages/image.scm:204 +msgid "" +"libwmf is a library for reading vector images in Microsoft's native\n" +"Windows Metafile Format (WMF) and for either (a) displaying them in, e.= g., " +"an X\n" +"window; or (b) converting them to more standard/free file formats such = as, e." +"g.,\n" +"the W3C's XML-based Scaleable Vector Graphic (SVG) format." +msgstr "" + +#: gnu/packages/image.scm:271 +msgid "Library and tools for image processing and analysis" +msgstr "" + +#: gnu/packages/image.scm:273 +msgid "" +"Leptonica is a C library and set of command-line tools for efficient\n" +"image processing and image analysis operations. It supports rasterop, = " +"affine\n" +"transformations, binary and grayscale morphology, rank order, and " +"convolution,\n" +"seedfill and connected components, image transformations combining chan= ges " +"in\n" +"scale and pixel depth, and pixelwise masking, blending, enhancement, an= d\n" +"arithmetic ops." +msgstr "" + +#: gnu/packages/image.scm:296 +msgid "Decoder of the JBIG2 image compression format" +msgstr "" + +#: gnu/packages/image.scm:298 +msgid "" +"JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit\n" +"monochrome) images at moderately high resolution, and in particular sca= nned\n" +"paper documents. In this domain it is very efficient, offering compres= sion\n" +"ratios on the order of 100:1.\n" +"\n" +"This is a decoder only implementation, and currently is in the alpha\n" +"stage, meaning it doesn't completely work yet. However, it is\n" +"maintaining parity with available encoders, so it is useful for real\n" +"work." +msgstr "" + +#: gnu/packages/image.scm:333 +msgid "JPEG 2000 codec" +msgstr "" + +#: gnu/packages/image.scm:335 +msgid "" +"The OpenJPEG library is a JPEG 2000 codec written in C. It has\n" +"been developed in order to promote the use of JPEG 2000, the new\n" +"still-image compression standard from the Joint Photographic Experts\n" +"Group (JPEG).\n" +"\n" +"In addition to the basic codec, various other features are under\n" +"development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats= ,\n" +"an indexing tool useful for the JPIP protocol, JPWL-tools for\n" +"error-resilience, a Java-viewer for j2k-images, ..." +msgstr "" + +#: gnu/packages/image.scm:414 +msgid "Tools and library for working with GIF images" +msgstr "" + +#: gnu/packages/image.scm:416 +msgid "" +"GIFLIB is a library for reading and writing GIF images. It is API and\= n" +"ABI compatible with libungif which was in wide use while the LZW " +"compression\n" +"algorithm was patented. Tools are also included to convert, manipulate= ,\n" +"compose, and analyze GIF images." +msgstr "" + +#: gnu/packages/image.scm:437 +msgid "GIF decompression library" +msgstr "" + +#: gnu/packages/image.scm:439 +msgid "libungif is the old GIF decompression library by the GIFLIB proje= ct." +msgstr "" + +#: gnu/packages/image.scm:468 +msgid "Loading, saving, rendering and manipulating image files" +msgstr "" + +#: gnu/packages/image.scm:470 +msgid "" +"Imlib2 is a library that does image file loading and saving as well as\= n" +"rendering, manipulation, arbitrary polygon support, etc.\n" +"\n" +"It does ALL of these operations FAST. Imlib2 also tries to be highly\n= " +"intelligent about doing them, so writing naive programs can be done eas= ily,\n" +"without sacrificing speed.\n" +"\n" +"This is a complete rewrite over the Imlib 1.x series. The architecture= is\n" +"more modular, simple, and flexible." +msgstr "" + +#: gnu/packages/image.scm:498 +msgid "Wrapper library for imlib2" +msgstr "" + +#: gnu/packages/image.scm:500 +msgid "" +"Giblib is a simple library which wraps imlib2's context API, avoiding\n= " +"all the context_get/set calls, adds fontstyles to the truetype renderer= and\n" +"supplies a generic doubly-linked list and some string functions." +msgstr "" + +#: gnu/packages/image.scm:540 +msgid "Library for handling popular graphics image formats" +msgstr "" + +#: gnu/packages/image.scm:542 +msgid "" +"FreeImage is a library for developers who would like to support popular= \n" +"graphics image formats like PNG, BMP, JPEG, TIFF and others." +msgstr "" + +#: gnu/packages/image.scm:592 +msgid "Computer vision library" +msgstr "" + +#: gnu/packages/image.scm:594 +msgid "" +"VIGRA stands for Vision with Generic Algorithms. It is an image\n" +"processing and analysis library that puts its main emphasis on customiz= able\n" +"algorithms and data structures. It is particularly strong for\n" +"multi-dimensional image processing." +msgstr "" + +#: gnu/packages/image.scm:625 +msgid "Lossless and lossy image compression" +msgstr "" + +#: gnu/packages/image.scm:627 +msgid "" +"WebP is a new image format that provides lossless and lossy compression= \n" +"for images. WebP lossless images are 26% smaller in size compared to\n= " +"PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG im= ages " +"at\n" +"equivalent SSIM index. WebP supports lossless transparency (also known= as\n" +"alpha channel) with just 22% additional bytes. Transparency is also " +"supported\n" +"with lossy compression and typically provides 3x smaller file sizes " +"compared\n" +"to PNG when lossy compression is acceptable for the red/green/blue colo= r\n" +"channels." +msgstr "" + +#: gnu/packages/image.scm:655 +msgid "Library for handling MNG files" +msgstr "" + +#: gnu/packages/image.scm:657 +msgid "Libmng is the MNG (Multiple-image Network Graphics) reference lib= rary." +msgstr "" + +#: gnu/packages/image.scm:705 +msgid "Library for manipulating many image formats" +msgstr "" + +#: gnu/packages/image.scm:706 +msgid "" +"Developer's Image Library (DevIL) is a library to develop\n" +"applications with support for many types of images. DevIL can load, sa= ve,\n" +"convert, manipulate, filter and display a wide variety of image formats= ." +msgstr "" + +#: gnu/packages/image.scm:738 +msgid "JPEG-2000 library" +msgstr "" + +#: gnu/packages/image.scm:739 +msgid "" +"The JasPer Project is an initiative to provide a reference\n" +"implementation of the codec specified in the JPEG-2000 Part-1 standard = (i." +"e.,\n" +"ISO/IEC 15444-1)." +msgstr "" + +#: gnu/packages/inkscape.scm:88 +msgid "Vector graphics editor" +msgstr "" + +#: gnu/packages/inkscape.scm:89 +msgid "" +"Inkscape is a vector graphics editor. What sets Inkscape\n" +"apart is its use of Scalable Vector Graphics (SVG), an XML-based W3C " +"standard,\n" +"as the native format." +msgstr "" + +#: gnu/packages/jemalloc.scm:47 +msgid "General-purpose scalable concurrent malloc implementation" +msgstr "" + +#: gnu/packages/jemalloc.scm:49 +msgid "" +"This library providing a malloc(3) implementation that emphasizes\n" +"fragmentation avoidance and scalable concurrency support." +msgstr "" + +#: gnu/packages/key-mon.scm:65 +msgid "Show keyboard and mouse status" +msgstr "" + +#: gnu/packages/key-mon.scm:67 +msgid "" +"The key-mon utility displays the current keyboard and mouse status.\n" +"This is useful for teaching and screencasts." +msgstr "" + +#: gnu/packages/less.scm:41 +msgid "Paginator for terminals" +msgstr "" + +#: gnu/packages/less.scm:43 +msgid "" +"GNU less is a pager, a program that allows you to view large amounts\n" +"of text in page-sized chunks. Unlike traditional pagers, it allows bot= h\n" +"backwards and forwards movement through the document. It also does not= " +"have\n" +"to read the entire input file before starting, so it starts faster than= " +"most\n" +"text editors." +msgstr "" + +#: gnu/packages/lesstif.scm:47 +msgid "Clone of the Motif toolkit for the X window system" +msgstr "" + +#: gnu/packages/lesstif.scm:48 +msgid "Clone of the Motif toolkit for the X window system." +msgstr "" + +#: gnu/packages/libreoffice.scm:86 +msgid "General purpose formula parser and interpreter" +msgstr "" + +#: gnu/packages/libreoffice.scm:87 +msgid "" +"Ixion is a library for calculating the results of formula\n" +"expressions stored in multiple named targets, or \"cells\". The cells = can\n" +"be referenced from each other, and the library takes care of resolving\= n" +"their dependencies automatically upon calculation." +msgstr "" + +#: gnu/packages/libreoffice.scm:112 +msgid "File import filter library for spreadsheet documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:113 +msgid "" +"Orcus is a library that provides a collection of standalone\n" +"file processing filters. It is currently focused on providing filters = for\n" +"spreadsheet documents. The library includes import filters for\n" +"Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document " +"Spreadsheet,\n" +"Plain Text, Gnumeric XML, Generic XML. It also includes low-level pars= ers " +"for\n" +"CSV, CSS and XML." +msgstr "" + +#: gnu/packages/libreoffice.scm:147 +msgid "Document importer for office suites" +msgstr "" + +#: gnu/packages/libreoffice.scm:148 +msgid "" +"Librevenge is a base library for writing document import\n" +"filters. It has interfaces for text documents, vector graphics,\n" +"spreadsheets and presentations." +msgstr "" + +#: gnu/packages/libreoffice.scm:173 +msgid "Library for importing WordPerfect documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:174 +msgid "" +"Libwpd is a C++ library designed to help process\n" +"WordPerfect documents. It is most commonly used to import such documen= ts\n" +"into other word processors." +msgstr "" + +#: gnu/packages/libreoffice.scm:206 +msgid "Library for import of reflowable e-book formats" +msgstr "" + +#: gnu/packages/libreoffice.scm:207 +msgid "" +"Libe-book is a library and a set of tools for reading and\n" +"converting various reflowable e-book formats. Currently supported are:= \n" +"Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped file= s),\n" +"PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled\n" +"cellphones), TCR (simple compressed text format), TealDoc, zTXT,\n" +"ZVR (simple compressed text format)." +msgstr "" + +#: gnu/packages/libreoffice.scm:236 +msgid "Library and tools for the WordPerfect Graphics format" +msgstr "" + +#: gnu/packages/libreoffice.scm:237 +msgid "" +"The libwpg project provides a library and tools for\n" +"working with graphics in the WPG (WordPerfect Graphics) format." +msgstr "" + +#: gnu/packages/libreoffice.scm:278 +msgid "CMIS client library" +msgstr "" + +#: gnu/packages/libreoffice.scm:279 +msgid "" +"LibCMIS is a C++ client library for the CMIS interface. It\n" +"allows C++ applications to connect to any ECM behaving as a CMIS server= " +"such\n" +"as Alfresco or Nuxeo." +msgstr "" + +#: gnu/packages/libreoffice.scm:310 +msgid "Library for parsing the AbiWord format" +msgstr "" + +#: gnu/packages/libreoffice.scm:311 +msgid "" +"Libabw is a library that parses the file format of\n" +"AbiWord documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:341 +msgid "Library for parsing the CorelDRAW format" +msgstr "" + +#: gnu/packages/libreoffice.scm:342 +msgid "" +"Libcdr is a library that parses the file format of\n" +"CorelDRAW documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:371 +msgid "Library for parsing the Apple Keynote format" +msgstr "" + +#: gnu/packages/libreoffice.scm:372 +msgid "" +"Libetonyek is a library that parses the file format of\n" +"Apple Keynote documents. It currently supports Keynote versions 2 to 5= ." +msgstr "" + +#: gnu/packages/libreoffice.scm:389 +msgid "Text Categorization library" +msgstr "" + +#: gnu/packages/libreoffice.scm:390 +msgid "" +"Libexttextcat is an N-Gram-Based Text Categorization\n" +"library primarily intended for language guessing." +msgstr "" + +#: gnu/packages/libreoffice.scm:416 +msgid "Library for parsing the FreeHand format" +msgstr "" + +#: gnu/packages/libreoffice.scm:417 +msgid "" +"Libfreehand is a library that parses the file format of\n" +"Aldus/Macromedia/Adobe FreeHand documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:443 +msgid "Library for parsing the Microsoft Publisher format" +msgstr "" + +#: gnu/packages/libreoffice.scm:444 +msgid "" +"Libmspub is a library that parses the file format of\n" +"Microsoft Publisher documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:472 +msgid "Library for parsing the PageMaker format" +msgstr "" + +#: gnu/packages/libreoffice.scm:473 +msgid "" +"Libpagemaker is a library that parses the file format of\n" +"Aldus/Adobe PageMaker documents. Currently it only understands documen= ts\n" +"created by PageMaker version 6.x and 7." +msgstr "" + +#: gnu/packages/libreoffice.scm:508 +msgid "Library for parsing the Microsoft Visio format" +msgstr "" + +#: gnu/packages/libreoffice.scm:509 +msgid "" +"Libvisio is a library that parses the file format of\n" +"Microsoft Visio documents of all versions." +msgstr "" + +#: gnu/packages/libreoffice.scm:537 +msgid "ODF (Open Document Format) library" +msgstr "" + +#: gnu/packages/libreoffice.scm:538 +msgid "" +"Libodfgen is a library for generating documents in the\n" +"Open Document Format (ODF). It provides generator implementations for = all\n" +"document interfaces supported by librevenge:\n" +"text documents, vector drawings, presentations and spreadsheets." +msgstr "" + +#: gnu/packages/libreoffice.scm:568 +msgid "Import library for some old Macintosh text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:569 +msgid "" +"Libmwaw contains some import filters for old Macintosh\n" +"text documents (MacWrite, ClarisWorks, ... ) and for some graphics and\= n" +"spreadsheet documents." +msgstr "" + +#: gnu/packages/libreoffice.scm:598 +msgid "Import library for Microsoft Works text documents" +msgstr "" + +#: gnu/packages/libreoffice.scm:599 +msgid "" +"Libwps is a library for importing files in the Microsoft\n" +"Works word processor file format." +msgstr "" + +#: gnu/packages/libreoffice.scm:617 +msgid "" +"Hunspell is a spell checker and morphological analyzer\n" +"library and program designed for languages with rich morphology and com= plex\n" +"word compounding or character encoding." +msgstr "" + +#: gnu/packages/libreoffice.scm:638 +msgid "Hyphenation library" +msgstr "" + +#: gnu/packages/libreoffice.scm:639 +msgid "" +"Hyphen is a hyphenation library using TeX hyphenation\n" +"patterns, which are pre-processed by a perl script." +msgstr "" + +#: gnu/packages/libreoffice.scm:662 +msgid "Thesaurus" +msgstr "" + +#: gnu/packages/libreoffice.scm:663 +msgid "" +"MyThes is a simple thesaurus that uses a structured text\n" +"data file and an index file with binary search to look up words and phr= ases\n" +"and to return information on pronunciations, meanings and synonyms." +msgstr "" + +#: gnu/packages/libreoffice.scm:829 +msgid "Office suite" +msgstr "" + +#: gnu/packages/libreoffice.scm:830 +msgid "" +"LibreOffice is a comprehensive office suite. It contains\n" +"a number of components: Writer, a word processor; Calc, a spreadsheet\n= " +"application; Impress, a presentation engine; Draw, a drawing and\n" +"flowcharting application; Base, a database and database frontend;\n" +"Math for editing mathematics." +msgstr "" + +#: gnu/packages/linux.scm:155 +msgid "GNU Linux-Libre kernel headers" +msgstr "" + +#: gnu/packages/linux.scm:156 +msgid "Headers of the Linux-Libre kernel." +msgstr "" + +#: gnu/packages/linux.scm:187 +msgid "Tools for loading and managing Linux kernel modules" +msgstr "" + +#: gnu/packages/linux.scm:189 +msgid "" +"Tools for loading and managing Linux kernel modules, such as `modprobe'= ,\n" +"`insmod', `lsmod', and more." +msgstr "" + +#: gnu/packages/linux.scm:322 +msgid "100% free redistribution of a cleaned Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:324 +msgid "" +"GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\= n" +"It has been modified to remove all non-free binary blobs." +msgstr "" + +#: gnu/packages/linux.scm:384 +msgid "Pluggable authentication modules for Linux" +msgstr "" + +#: gnu/packages/linux.scm:386 +msgid "" +"A *Free* project to implement OSF's RFC 86.0.\n" +"Pluggable authentication modules are small shared object files that can= \n" +"be used through the PAM API to perform tasks, like authenticating a use= r\n" +"at login. Local and dynamic reconfiguration are its key features." +msgstr "" + +#: gnu/packages/linux.scm:413 +msgid "Small utilities that use the proc filesystem" +msgstr "" + +#: gnu/packages/linux.scm:415 +msgid "" +"This PSmisc package is a set of some small useful utilities that\n" +"use the proc filesystem. We're not about changing the world, but\n" +"providing the system administrator with some help in common tasks." +msgstr "" + +#: gnu/packages/linux.scm:480 +msgid "Collection of utilities for the Linux kernel" +msgstr "" + +#: gnu/packages/linux.scm:481 +msgid "" +"Util-linux is a diverse collection of Linux kernel\n" +"utilities. It provides dmesg and includes tools for working with " +"filesystems,\n" +"block devices, UUIDs, TTYs, and many other tools." +msgstr "" + +#: gnu/packages/linux.scm:522 +msgid "Utilities that give information about processes" +msgstr "" + +#: gnu/packages/linux.scm:524 +msgid "" +"Procps is the package that has a bunch of small useful utilities\n" +"that give information about processes using the Linux /proc file system= .\n" +"The package includes the programs ps, top, vmstat, w, kill, free,\n" +"slabtop, and skill." +msgstr "" + +#: gnu/packages/linux.scm:549 +msgid "Tools for working with USB devices, such as lsusb" +msgstr "" + +#: gnu/packages/linux.scm:551 +msgid "Tools for working with USB devices, such as lsusb." +msgstr "" + +#: gnu/packages/linux.scm:625 +msgid "Creating and checking ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:627 +msgid "" +"This package provides tools for manipulating ext2/ext3/ext4 file system= s." +msgstr "" + +#: gnu/packages/linux.scm:669 +msgid "Statically-linked fsck.* commands from e2fsprogs" +msgstr "" + +#: gnu/packages/linux.scm:671 +msgid "" +"This package provides statically-linked command of fsck.ext[234] taken\= n" +"from the e2fsprogs package. It is meant to be used in initrds." +msgstr "" + +#: gnu/packages/linux.scm:690 +msgid "Recover deleted files from ext2/3/4 partitions" +msgstr "" + +#: gnu/packages/linux.scm:692 +msgid "" +"Extundelete is a set of tools that can recover deleted files from an\n" +"ext3 or ext4 partition." +msgstr "" + +#: gnu/packages/linux.scm:724 +msgid "Zero non-allocated regions in ext2/ext3/ext4 file systems" +msgstr "" + +#: gnu/packages/linux.scm:726 +msgid "" +"The zerofree command scans the free blocks in an ext2 file system and\n= " +"fills any non-zero blocks with zeroes. This is a useful way to make di= sk\n" +"images more compressible." +msgstr "" + +#: gnu/packages/linux.scm:745 +msgid "System call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:747 +msgid "" +"strace is a system call tracer, i.e. a debugging tool which prints out = a\n" +"trace of all the system calls made by a another process/program." +msgstr "" + +#: gnu/packages/linux.scm:768 +msgid "Library call tracer for Linux" +msgstr "" + +#: gnu/packages/linux.scm:770 +msgid "" +"ltrace intercepts and records dynamic library calls which are called by= \n" +"an executed process and the signals received by that process. It can a= lso\n" +"intercept and print the system calls executed by the program." +msgstr "" + +#: gnu/packages/linux.scm:790 +msgid "The Advanced Linux Sound Architecture libraries" +msgstr "" + +#: gnu/packages/linux.scm:792 gnu/packages/linux.scm:834 +msgid "" +"The Advanced Linux Sound Architecture (ALSA) provides audio and\n" +"MIDI functionality to the Linux-based operating system." +msgstr "" + +#: gnu/packages/linux.scm:832 +msgid "Utilities for the Advanced Linux Sound Architecture (ALSA)" +msgstr "" + +#: gnu/packages/linux.scm:859 +msgid "Program to configure the Linux IP packet filtering rules" +msgstr "" + +#: gnu/packages/linux.scm:861 +msgid "" +"iptables is the userspace command line program used to configure the\n" +"Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted " +"towards\n" +"system administrators. Since Network Address Translation is also " +"configured\n" +"from the packet filter ruleset, iptables is used for this, too. The " +"iptables\n" +"package also includes ip6tables. ip6tables is used for configuring the= " +"IPv6\n" +"packet filter." +msgstr "" + +#: gnu/packages/linux.scm:908 +msgid "Utilities for controlling TCP/IP networking and traffic in Linux" +msgstr "" + +#: gnu/packages/linux.scm:910 +msgid "" +"Iproute2 is a collection of utilities for controlling TCP/IP\n" +"networking and traffic with the Linux kernel.\n" +"\n" +"Most network configuration manuals still refer to ifconfig and route as= the\n" +"primary network configuration tools, but ifconfig is known to behave\n" +"inadequately in modern network environments. They should be deprecated= , " +"but\n" +"most distros still include them. Most network configuration systems ma= ke " +"use\n" +"of ifconfig and thus provide a limited feature set. The /etc/net proje= ct " +"aims\n" +"to support most modern network technologies, as it doesn't use ifconfig= and\n" +"allows a system administrator to make use of all iproute2 features, " +"including\n" +"traffic control.\n" +"\n" +"iproute2 is usually shipped in a package called iproute or iproute2 and= \n" +"consists of several tools, of which the most important are ip and tc. = ip\n" +"controls IPv4 and IPv6 configuration and tc stands for traffic control.= " +"Both\n" +"tools print detailed usage messages and are accompanied by a set of\n" +"manpages." +msgstr "" + +#: gnu/packages/linux.scm:1022 +msgid "Tools for controlling the network subsystem in Linux" +msgstr "" + +#: gnu/packages/linux.scm:1024 +msgid "" +"This package includes the important tools for controlling the network\n= " +"subsystem of the Linux kernel. This includes arp, hostname, ifconfig,\= n" +"netstat, rarp and route. Additionally, this package contains utilities= \n" +"relating to particular network hardware types (plipconfig, slattach) an= d\n" +"advanced aspects of IP configuration (iptunnel, ipmaddr)." +msgstr "" + +#: gnu/packages/linux.scm:1061 +msgid "Library for working with POSIX capabilities" +msgstr "" + +#: gnu/packages/linux.scm:1063 +msgid "" +"Libcap2 provides a programming interface to POSIX capabilities on\n" +"Linux-based operating systems." +msgstr "" + +#: gnu/packages/linux.scm:1106 +msgid "Manipulate Ethernet bridges" +msgstr "" + +#: gnu/packages/linux.scm:1108 +msgid "" +"Utilities for Linux's Ethernet bridging facilities. A bridge is a way\= n" +"to connect two Ethernet segments together in a protocol independent way= .\n" +"Packets are forwarded based on Ethernet address, rather than IP address= " +"(like\n" +"a router). Since forwarding is done at Layer 2, all protocols can go\n= " +"transparently through a bridge." +msgstr "" + +#: gnu/packages/linux.scm:1130 +msgid "NetLink protocol library suite" +msgstr "" + +#: gnu/packages/linux.scm:1132 +msgid "" +"The libnl suite is a collection of libraries providing APIs to netlink\= n" +"protocol based Linux kernel interfaces. Netlink is an IPC mechanism " +"primarily\n" +"between the kernel and user space processes. It was designed to be a m= ore\n" +"flexible successor to ioctl to provide mainly networking related kernel= \n" +"configuration and monitoring interfaces." +msgstr "" + +#: gnu/packages/linux.scm:1162 +msgid "Tool for configuring wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:1164 +msgid "" +"iw is a new nl80211 based CLI configuration utility for wireless\n" +"devices. It replaces 'iwconfig', which is deprecated." +msgstr "" + +#: gnu/packages/linux.scm:1190 +msgid "Analyze power consumption on Intel-based laptops" +msgstr "" + +#: gnu/packages/linux.scm:1192 +msgid "" +"PowerTOP is a Linux tool to diagnose issues with power consumption and\= n" +"power management. In addition to being a diagnostic tool, PowerTOP als= o " +"has\n" +"an interactive mode where the user can experiment various power managem= ent\n" +"settings for cases where the operating system has not enabled these\n" +"settings." +msgstr "" + +#: gnu/packages/linux.scm:1214 +msgid "Audio mixer for X and the console" +msgstr "" + +#: gnu/packages/linux.scm:1216 +msgid "" +"Aumix adjusts an audio mixer from X, the console, a terminal,\n" +"the command line or a script." +msgstr "" + +#: gnu/packages/linux.scm:1240 +msgid "Displays the IO activity of running processes" +msgstr "" + +#: gnu/packages/linux.scm:1242 +msgid "" +"Iotop is a Python program with a top like user interface to show the\n" +"processes currently causing I/O." +msgstr "" + +#: gnu/packages/linux.scm:1297 +msgid "Support file systems implemented in user space" +msgstr "" + +#: gnu/packages/linux.scm:1299 +msgid "" +"As a consequence of its monolithic design, file system code for Linux\n= " +"normally goes into the kernel itself---which is not only a robustness " +"issue,\n" +"but also an impediment to system extensibility. FUSE, for \"file syste= ms " +"in\n" +"user space\", is a kernel module and user-space library that tries to " +"address\n" +"part of this problem by allowing users to run file system implementatio= ns " +"as\n" +"user-space processes." +msgstr "" + +#: gnu/packages/linux.scm:1324 +msgid "User-space union file system" +msgstr "" + +#: gnu/packages/linux.scm:1326 +msgid "" +"UnionFS-FUSE is a flexible union file system implementation in user\n" +"space, using the FUSE library. Mounting a union file system allows you= to\n" +"\"aggregate\" the contents of several directories into a single mount " +"point.\n" +"UnionFS-FUSE additionally supports copy-on-write." +msgstr "" + +#: gnu/packages/linux.scm:1351 +msgid "User-space union file system (statically linked)" +msgstr "" + +#: gnu/packages/linux.scm:1396 +msgid "Mount remote file systems over SSH" +msgstr "" + +#: gnu/packages/linux.scm:1398 +msgid "" +"This is a file system client based on the SSH File Transfer Protocol.\n= " +"Since most SSH servers already support this protocol it is very easy to= set\n" +"up: on the server side there's nothing to do; on the client side mounti= ng " +"the\n" +"file system is as easy as logging into the server with an SSH client." +msgstr "" + +#: gnu/packages/linux.scm:1427 +msgid "Tools for non-uniform memory access (NUMA) machines" +msgstr "" + +#: gnu/packages/linux.scm:1429 +msgid "" +"NUMA stands for Non-Uniform Memory Access, in other words a system whos= e\n" +"memory is not all in one place. The numactl program allows you to run = your\n" +"application program on specific CPU's and memory nodes. It does this b= y\n" +"supplying a NUMA memory policy to the operating system before running y= our\n" +"program.\n" +"\n" +"The package contains other commands, such as numademo, numastat and mem= hog.\n" +"The numademo command provides a quick overview of NUMA performance on y= our\n" +"system." +msgstr "" + +#: gnu/packages/linux.scm:1492 +msgid "Linux keyboard utilities and keyboard maps" +msgstr "" + +#: gnu/packages/linux.scm:1494 +msgid "" +"This package contains keytable files and keyboard utilities compatible\= n" +"for systems using the Linux kernel. This includes commands such as\n" +"'loadkeys', 'setfont', 'kbdinfo', and 'chvt'." +msgstr "" + +#: gnu/packages/linux.scm:1513 +msgid "Monitor file accesses" +msgstr "" + +#: gnu/packages/linux.scm:1515 +msgid "" +"The inotify-tools packages provides a C library and command-line tools\= n" +"to use Linux' inotify mechanism, which allows file accesses to be monit= ored." +msgstr "" + +#: gnu/packages/linux.scm:1553 +msgid "Kernel module tools" +msgstr "" + +#: gnu/packages/linux.scm:1554 +msgid "" +"Kmod is a set of tools to handle common tasks with Linux\n" +"kernel modules like insert, remove, list, check properties, resolve\n" +"dependencies and aliases.\n" +"\n" +"These tools are designed on top of libkmod, a library that is shipped w= ith\n" +"kmod. The aim is to be compatible with tools, configurations and indic= es\n" +"from the module-init-tools project." +msgstr "" + +#: gnu/packages/linux.scm:1586 +msgid "Userspace device management" +msgstr "" + +#: gnu/packages/linux.scm:1587 +msgid "" +"Udev is a daemon which dynamically creates and removes\n" +"device nodes from /dev/, handles hotplug events and loads drivers at bo= ot\n" +"time." +msgstr "" + +#: gnu/packages/linux.scm:1659 +msgid "Logical volume management for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1661 +msgid "" +"LVM2 is the logical volume management tool set for Linux-based systems.= \n" +"This package includes the user-space libraries and tools, including the= " +"device\n" +"mapper. Kernel components are part of Linux-libre." +msgstr "" + +#: gnu/packages/linux.scm:1697 +msgid "Tools for manipulating Linux Wireless Extensions" +msgstr "" + +#: gnu/packages/linux.scm:1698 +msgid "" +"Wireless Tools are used to manipulate the now-deprecated\n" +"Linux Wireless Extensions; consider using 'iw' instead. The Wireless\n= " +"Extension was an interface allowing you to set Wireless LAN specific\n" +"parameters and get the specific stats. It is deprecated in favor the " +"nl80211\n" +"interface." +msgstr "" + +#: gnu/packages/linux.scm:1770 +msgid "Central regulatory domain agent (CRDA) for WiFi" +msgstr "" + +#: gnu/packages/linux.scm:1772 +msgid "" +"The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\= n" +"communication between the kernel Linux and user space for regulatory\n" +"compliance." +msgstr "" + +#: gnu/packages/linux.scm:1818 +msgid "Wireless regulatory database" +msgstr "" + +#: gnu/packages/linux.scm:1820 +msgid "" +"This package contains the wireless regulatory database Central\n" +"Regulatory Database Agent (CRDA) daemon. The database contains informa= tion " +"on\n" +"country-specific regulations for the wireless spectrum." +msgstr "" + +#: gnu/packages/linux.scm:1891 +msgid "Utilities to read temperature/voltage/fan sensors" +msgstr "" + +#: gnu/packages/linux.scm:1893 +msgid "" +"Lm-sensors is a hardware health monitoring package for Linux. It allow= s\n" +"you to access information from temperature, voltage, and fan speed sens= ors.\n" +"It works with most newer systems." +msgstr "" + +#: gnu/packages/linux.scm:1920 +msgid "I2C tools for Linux" +msgstr "" + +#: gnu/packages/linux.scm:1922 +msgid "" +"The i2c-tools package contains a heterogeneous set of I2C tools for\n" +"Linux: a bus probing tool, a chip dumper, register-level SMBus access " +"helpers,\n" +"EEPROM decoding scripts, EEPROM programming tools, and a python module = for\n" +"SMBus access." +msgstr "" + +#: gnu/packages/linux.scm:1958 +msgid "Hardware health information viewer" +msgstr "" + +#: gnu/packages/linux.scm:1960 +msgid "" +"Xsensors reads data from the libsensors library regarding hardware\n" +"health such as temperature, voltage and fan speed and displays the " +"information\n" +"in a digital read-out." +msgstr "" + +#: gnu/packages/linux.scm:2008 +msgid "Linux profiling with performance counters" +msgstr "" + +#: gnu/packages/linux.scm:2010 +msgid "" +"perf is a tool suite for profiling using hardware performance counters,= \n" +"with support in the Linux kernel. perf can instrument CPU performance\= n" +"counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is " +"capable\n" +"of lightweight profiling. This package contains the user-land tools an= d in\n" +"particular the 'perf' command." +msgstr "" + +#: gnu/packages/linux.scm:2033 +msgid "Simple tool for creating Linux namespace containers" +msgstr "" + +#: gnu/packages/linux.scm:2034 +msgid "" +"pflask is a simple tool for creating Linux namespace\n" +"containers. It can be used for running a command or even booting an OS= " +"inside\n" +"an isolated container, created with the help of Linux namespaces. It i= s\n" +"similar in functionality to chroot, although pflask provides better " +"isolation\n" +"thanks to the use of namespaces." +msgstr "" + +#: gnu/packages/linux.scm:2061 +msgid "Tune hard disk parameters for high performance" +msgstr "" + +#: gnu/packages/linux.scm:2063 +msgid "" +"Get/set device parameters for Linux SATA/IDE drives. It's primary use\= n" +"is for enabling irq-unmasking and IDE multiple-mode." +msgstr "" + +#: gnu/packages/linux.scm:2086 +msgid "Tool for enabling and disabling wireless devices" +msgstr "" + +#: gnu/packages/linux.scm:2088 +msgid "" +"rfkill is a simple tool for accessing the rfkill device interface,\n" +"which is used to enable and disable wireless networking devices, typica= lly\n" +"WLAN, Bluetooth and mobile broadband." +msgstr "" + +#: gnu/packages/linux.scm:2107 +msgid "Daemon for delivering ACPI events to user-space programs" +msgstr "" + +#: gnu/packages/linux.scm:2109 +msgid "" +"acpid is designed to notify user-space programs of Advanced\n" +"Configuration and Power Interface (ACPI) events. acpid should be start= ed\n" +"during the system boot, and will run as a background process. When an = ACPI\n" +"event is received from the kernel, acpid will examine the list of rules= \n" +"specified in /etc/acpi/events and execute the rules that match the even= t." +msgstr "" + +#: gnu/packages/linux.scm:2131 +msgid "System utilities based on Linux sysfs" +msgstr "" + +#: gnu/packages/linux.scm:2133 +msgid "" +"These are a set of utilities built upon sysfs, a virtual filesystem in\= n" +"Linux kernel versions 2.5+ that exposes a system's device tree. The " +"package\n" +"also contains the libsysfs library." +msgstr "" + +#: gnu/packages/linux.scm:2162 +msgid "System utilities based on Linux sysfs (version 1.x)" +msgstr "" + +#: gnu/packages/linux.scm:2185 +msgid "Utilities to get and set CPU frequency on Linux" +msgstr "" + +#: gnu/packages/linux.scm:2187 +msgid "" +"The cpufrequtils suite contains utilities to retrieve CPU frequency\n" +"information, and set the CPU frequency if supported, using the cpufreq\= n" +"capabilities of the Linux kernel." +msgstr "" + +#: gnu/packages/linux.scm:2206 +msgid "Interface library for the Linux IEEE1394 drivers" +msgstr "" + +#: gnu/packages/linux.scm:2208 +msgid "" +"Libraw1394 is the only supported interface to the kernel side raw1394 o= f\n" +"the Linux IEEE-1394 subsystem, which provides direct access to the " +"connected\n" +"1394 buses to user space. Through libraw1394/raw1394, applications can= " +"directly\n" +"send to and receive from other nodes without requiring a kernel driver = for " +"the\n" +"protocol in question." +msgstr "" + +#: gnu/packages/linux.scm:2232 +msgid "AV/C protocol library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2234 +msgid "" +"Libavc1394 is a programming interface to the AV/C specification from\n" +"the 1394 Trade Association. AV/C stands for Audio/Video Control." +msgstr "" + +#: gnu/packages/linux.scm:2256 +msgid "Isochronous streaming media library for IEEE 1394" +msgstr "" + +#: gnu/packages/linux.scm:2258 +msgid "" +"The libiec61883 library provides a higher level API for streaming DV,\n= " +"MPEG-2 and audio over Linux IEEE 1394." +msgstr "" + +#: gnu/packages/linux.scm:2298 +msgid "Tool for managing Linux Software RAID arrays" +msgstr "" + +#: gnu/packages/linux.scm:2300 +msgid "" +"mdadm is a tool for managing Linux Software RAID arrays. It can create= ,\n" +"assemble, report on, and monitor arrays. It can also move spares betwe= en " +"raid\n" +"arrays when needed." +msgstr "" + +#: gnu/packages/linux.scm:2327 +msgid "Linux-native asynchronous I/O access library" +msgstr "" + +#: gnu/packages/linux.scm:2329 +msgid "" +"This library enables userspace to use Linux kernel asynchronous I/O\n" +"system calls, important for the performance of databases and other adva= nced\n" +"applications." +msgstr "" + +#: gnu/packages/linux.scm:2365 +msgid "Linux Bluetooth protocol stack" +msgstr "" + +#: gnu/packages/linux.scm:2367 +msgid "" +"BlueZ provides support for the core Bluetooth layers and protocols. It= \n" +"is flexible, efficient and uses a modular implementation." +msgstr "" + +#: gnu/packages/linux.scm:2423 +msgid "Mount exFAT file systems" +msgstr "" + +#: gnu/packages/linux.scm:2425 +msgid "" +"This package provides a FUSE-based file system that provides read and\n= " +"write access to exFAT devices." +msgstr "" + +#: gnu/packages/linux.scm:2465 +msgid "Mouse support for the Linux console" +msgstr "" + +#: gnu/packages/linux.scm:2467 +msgid "" +"The GPM (general-purpose mouse) daemon is a mouse server for\n" +"applications running on the Linux console. It allows users to select i= tems\n" +"and copy/paste text in the console and in xterm." +msgstr "" + +#: gnu/packages/linux.scm:2501 +msgid "Create and manage btrfs copy-on-write file systems" +msgstr "" + +#: gnu/packages/linux.scm:2502 +msgid "" +"Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at\n" +"implementing advanced features while focusing on fault tolerance, repai= r " +"and\n" +"easy administration." +msgstr "" + +#: gnu/packages/lout.scm:109 +msgid "Document layout system" +msgstr "" + +#: gnu/packages/lout.scm:111 +msgid "" +"The Lout document formatting system reads a high-level description of\n= " +"a document similar in style to LaTeX and produces a PostScript or plain= " +"text\n" +"output file.\n" +"\n" +"Lout offers an unprecedented range of advanced features, including opti= mal\n" +"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" +"inclusion and generation, equation formatting, tables, diagrams, rotati= on " +"and\n" +"scaling, sorted indexes, bibliographic databases, running headers and\n= " +"odd-even pages, automatic cross referencing, multilingual documents " +"including\n" +"hyphenation (most European languages are supported), formatting of comp= uter\n" +"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" +"extended with definitions which are very much easier to write than trof= f of\n" +"TeX macros because Lout is a high-level, purely functional language, th= e\n" +"outcome of an eight-year research project that went back to the\n" +"beginning." +msgstr "" + +#: gnu/packages/messaging.scm:77 +msgid "Off-the-Record (OTR) Messaging Library and Toolkit" +msgstr "" + +#: gnu/packages/messaging.scm:79 +msgid "" +"OTR allows you to have private conversations over instant messaging by\= n" +"providing: (1) Encryption: No one else can read your instant messages. = (2)\n" +"Authentication: You are assured the correspondent is who you think it i= s. " +"(3)\n" +"Deniability: The messages you send do not have digital signatures that = are\n" +"checkable by a third party. Anyone can forge messages after a conversa= tion " +"to\n" +"make them look like they came from you. However, during a conversation= , " +"your\n" +"correspondent is assured the messages he sees are authentic and\n" +"unmodified. (4) Perfect forward secrecy: If you lose control of your " +"private\n" +"keys, no previous conversation is compromised." +msgstr "" + +#: gnu/packages/messaging.scm:135 +msgid "IRC to instant messaging gateway" +msgstr "" + +#: gnu/packages/messaging.scm:136 +msgid "" +"BitlBee brings IM (instant messaging) to IRC clients, for\n" +"people who have an IRC client running all the time and don't want to ru= n an\n" +"additional IM client. BitlBee currently supports XMPP/Jabber (includin= g\n" +"Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the " +"Twitter\n" +"microblogging network (plus all other Twitter API compatible services l= ike\n" +"identi.ca and status.net)." +msgstr "" + +#: gnu/packages/messaging.scm:169 +msgid "Graphical IRC Client" +msgstr "" + +#: gnu/packages/messaging.scm:171 +msgid "" +"HexChat lets you connect to multiple IRC networks at once. The main wi= ndow\n" +"shows the list of currently connected networks and their channels, the = " +"current\n" +"conversation and the list of users. It uses colors to differentiate " +"between\n" +"users and to highlight messages. It checks spelling using available\n" +"dictionaries. HexChat can be extended with multiple addons." +msgstr "" + +#: gnu/packages/messaging.scm:237 +msgid "Lightweight Internet Relay Chat server for small networks" +msgstr "" + +#: gnu/packages/messaging.scm:239 +msgid "" +"ngIRCd is a lightweight Internet Relay Chat server for small or private= \n" +"networks. It is easy to configure, can cope with dynamic IP addresses,= and\n" +"supports IPv6, SSL-protected connections as well as PAM for authenticat= ion." +msgstr "" + +#: gnu/packages/messaging.scm:310 +msgid "Graphical multi-protocol instant messaging client" +msgstr "" + +#: gnu/packages/messaging.scm:312 +msgid "" +"Pidgin is a modular instant messaging client that supports many popular= \n" +"chat protocols." +msgstr "" + +#: gnu/packages/messaging.scm:350 +msgid "Off-the-Record Messaging plugin for Pidgin" +msgstr "" + +#: gnu/packages/messaging.scm:352 +msgid "" +"Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant\= n" +"messaging client. OTR (Off-the-Record) Messaging allows you to have " +"private\n" +"conversations over instant messaging by providing: (1) Encryption: No o= ne " +"else\n" +"can read your instant messages. (2) Authentication: You are assured th= e\n" +"correspondent is who you think it is. (3) Deniability: The messages yo= u " +"send\n" +"do not have digital signatures that are checkable by a third party. An= yone\n" +"can forge messages after a conversation to make them look like they cam= e " +"from\n" +"you. However, during a conversation, your correspondent is assured the= \n" +"messages he sees are authentic and unmodified. (4) Perfect forward " +"secrecy:\n" +"If you lose control of your private keys, no previous conversation is\n= " +"compromised." +msgstr "" + +#: gnu/packages/messaging.scm:392 +msgid "IRC network bouncer" +msgstr "" + +#: gnu/packages/messaging.scm:393 +msgid "" +"ZNC is an IRC network bouncer or BNC. It can detach the\n" +"client from the actual IRC server, and also from selected channels. " +"Multiple\n" +"clients from different locations can connect to a single ZNC account\n" +"simultaneously and therefore appear under the same nickname on IRC." +msgstr "" + +#: gnu/packages/messaging.scm:415 +msgid "Non-blocking Jabber/XMPP module" +msgstr "" + +#: gnu/packages/messaging.scm:417 +msgid "" +"The goal of this python library is to provide a way for Python\n" +"applications to use Jabber/XMPP networks in a non-blocking way. This " +"library\n" +"was initially a fork of xmpppy, but is using non-blocking sockets." +msgstr "" + +#: gnu/packages/messaging.scm:474 +msgid "Jabber (XMPP) client" +msgstr "" + +#: gnu/packages/messaging.scm:475 +msgid "" +"Gajim is a feature-rich and easy to use Jabber/XMPP client.\n" +"Among its features are: a tabbed chat window and single window modes; " +"support\n" +"for group chat (with Multi-User Chat protocol), invitation, chat to gro= up " +"chat\n" +"transformation; audio and video conferences; file transfer; TLS, GPG an= d\n" +"end-to-end encryption support; XML console." +msgstr "" + +#: gnu/packages/mpd.scm:63 +msgid "Music Player Daemon client library" +msgstr "" + +#: gnu/packages/mpd.scm:64 +msgid "" +"A stable, documented, asynchronous API library for\n" +"interfacing MPD in the C, C++ & Objective C languages." +msgstr "" + +#: gnu/packages/mpd.scm:124 +msgid "Music Player Daemon" +msgstr "" + +#: gnu/packages/mpd.scm:125 +msgid "" +"Music Player Daemon (MPD) is a flexible, powerful,\n" +"server-side application for playing music. Through plugins and librari= es " +"it\n" +"can play a variety of sound files while being controlled by its network= \n" +"protocol." +msgstr "" + +#: gnu/packages/mpd.scm:148 +msgid "Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:149 +msgid "" +"MPC is a minimalist command line interface to MPD, the music\n" +"player daemon." +msgstr "" + +#: gnu/packages/mpd.scm:172 +msgid "Curses Music Player Daemon client" +msgstr "" + +#: gnu/packages/mpd.scm:173 +msgid "" +"ncmpc is a fully featured MPD client, which runs in a\n" +"terminal using ncurses." +msgstr "" + +#: gnu/packages/mpd.scm:211 +msgid "Featureful ncurses based MPD client inspired by ncmpc" +msgstr "" + +#: gnu/packages/mpd.scm:212 +msgid "" +"Ncmpcpp is an mpd client with a UI very similar to ncmpc,\n" +"but it provides new useful features such as support for regular express= ions\n" +"for library searches, extended song format, items filtering, the abilit= y to\n" +"sort playlists, and a local filesystem browser." +msgstr "" + +#: gnu/packages/mpd.scm:235 +msgid "MPD client for track scrobbling" +msgstr "" + +#: gnu/packages/mpd.scm:236 +msgid "" +"mpdscribble is a Music Player Daemon client which submits\n" +"information about tracks being played to a scrobbler, such as Libre.FM.= " +msgstr "" + +#: gnu/packages/netpbm.scm:146 +msgid "Toolkit for manipulation of images" +msgstr "" + +#: gnu/packages/netpbm.scm:148 +msgid "" +"Netpbm is a toolkit for the manipulation of graphic images, including\n= " +"the conversion of images between a variety of different formats.\n" +"There are over 300 separate tools in the package including converters f= or\n" +"about 100 graphics formats." +msgstr "" + +#: gnu/packages/nettle.scm:51 +msgid "C library for low-level cryptographic functionality" +msgstr "" + +#: gnu/packages/nettle.scm:53 +msgid "" +"GNU Nettle is a low-level cryptographic library. It is designed to\n" +"fit in easily in almost any context. It can be easily included in\n" +"cryptographic toolkits for object-oriented languages or in applications= \n" +"themselves." +msgstr "" + +#: gnu/packages/networking.scm:52 +msgid "Teredo IPv6 tunneling software" +msgstr "" + +#: gnu/packages/networking.scm:54 +msgid "" +"Miredo is an implementation (client, relay, server) of the Teredo\n" +"specification, which provides IPv6 Internet connectivity to IPv6 enable= d " +"hosts\n" +"residing in IPv4-only networks, even when they are behind a NAT device.= " +msgstr "" + +#: gnu/packages/networking.scm:76 +msgid "Open bidirectional communication channels from the command line" +msgstr "" + +#: gnu/packages/networking.scm:78 +msgid "" +"socat is a relay for bidirectional data transfer between two independen= t\n" +"data channels---files, pipes, devices, sockets, etc. It can create\n" +"\"listening\" sockets, named pipes, and pseudo terminals.\n" +"\n" +"socat can be used, for instance, as TCP port forwarder, as a shell " +"interface\n" +"to UNIX sockets, IPv6 relay, for redirecting TCP oriented programs to a= " +"serial\n" +"line, to logically connect serial lines on different computers, or to\n= " +"establish a relatively secure environment (su and chroot) for running " +"client\n" +"or server shell scripts with network connections." +msgstr "" + +#: gnu/packages/networking.scm:102 +msgid "Library for message-based applications" +msgstr "" + +#: gnu/packages/networking.scm:104 +msgid "" +"The 0MQ lightweight messaging kernel is a library which extends the\n" +"standard socket interfaces with features traditionally provided by " +"specialized\n" +"messaging middle-ware products. 0MQ sockets provide an abstraction of\= n" +"asynchronous message queues, multiple messaging patterns, message\n" +"filtering (subscriptions), seamless access to multiple transport protoc= ols " +"and\n" +"more." +msgstr "" + +#: gnu/packages/networking.scm:125 +msgid "Library for Neighbor Discovery Protocol" +msgstr "" + +#: gnu/packages/networking.scm:127 +msgid "" +"libndp contains a library which provides a wrapper for IPv6 Neighbor\n" +"Discovery Protocol. It also provides a tool named ndptool for sending = and\n" +"receiving NDP messages." +msgstr "" + +#: gnu/packages/networking.scm:145 +msgid "Display or change Ethernet device settings" +msgstr "" + +#: gnu/packages/networking.scm:147 +msgid "" +"ethtool can be used to query and change settings such as speed,\n" +"auto-negotiation and checksum offload on many network devices, especial= ly\n" +"Ethernet devices." +msgstr "" + +#: gnu/packages/networking.scm:183 +msgid "Text based network interface status monitor" +msgstr "" + +#: gnu/packages/networking.scm:185 +msgid "" +"IFStatus is a simple, easy-to-use program for displaying commonly\n" +"needed/wanted real-time traffic statistics of multiple network\n" +"interfaces, with a simple and efficient view on the command line. It i= s\n" +"intended as a substitute for the PPPStatus and EthStatus projects." +msgstr "" + +#: gnu/packages/pdf.scm:101 +msgid "PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:103 +msgid "Poppler is a PDF rendering library based on the xpdf-3.0 code bas= e." +msgstr "" + +#: gnu/packages/pdf.scm:112 +msgid "Qt4 frontend for the Poppler PDF rendering library" +msgstr "" + +#: gnu/packages/pdf.scm:145 +msgid "Python bindings for Poppler-Qt4" +msgstr "" + +#: gnu/packages/pdf.scm:147 +msgid "" +"This package provides Python bindings for the Qt4 interface of the\n" +"Poppler PDF rendering library." +msgstr "" + +#: gnu/packages/pdf.scm:194 +msgid "Viewer for PDF files based on the Motif toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:196 +msgid "Xpdf is a viewer for Portable Document Format (PDF) files." +msgstr "" + +#: gnu/packages/pdf.scm:226 +msgid "Comic book support for zathura (libarchive backend)" +msgstr "" + +#: gnu/packages/pdf.scm:227 +msgid "" +"The zathura-cb plugin adds comic book support to zathura\n" +"using libarchive." +msgstr "" + +#: gnu/packages/pdf.scm:257 +msgid "PS support for zathura (libspectre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:258 +msgid "" +"The zathura-ps plugin adds PS support to zathura\n" +"using libspectre." +msgstr "" + +#: gnu/packages/pdf.scm:289 +msgid "DjVu support for zathura (DjVuLibre backend)" +msgstr "" + +#: gnu/packages/pdf.scm:290 +msgid "" +"The zathura-djvu plugin adds DjVu support to zathura\n" +"using the DjVuLibre library." +msgstr "" + +#: gnu/packages/pdf.scm:322 +msgid "PDF support for zathura (poppler backend)" +msgstr "" + +#: gnu/packages/pdf.scm:323 +msgid "" +"The zathura-pdf-poppler plugin adds PDF support to zathura\n" +"by using the poppler rendering engine." +msgstr "" + +#: gnu/packages/pdf.scm:361 +msgid "Lightweight keyboard-driven PDF viewer" +msgstr "" + +#: gnu/packages/pdf.scm:362 +msgid "" +"Zathura is a customizable document viewer. It provides a\n" +"minimalistic interface and an interface that mainly focuses on keyboard= \n" +"interaction." +msgstr "" + +#: gnu/packages/pdf.scm:401 +msgid "Tools to work with the PDF file format" +msgstr "" + +#: gnu/packages/pdf.scm:403 +msgid "" +"PoDoFo is a C++ library and set of command-line tools to work with the\= n" +"PDF file format. It can parse PDF files and load them into memory, and= " +"makes\n" +"it easy to modify them and write the changes to disk. It is primarily = " +"useful\n" +"for applications that wish to do lower level manipulation of PDF, such = as\n" +"extracting content or merging files." +msgstr "" + +#: gnu/packages/pdf.scm:464 +msgid "Lightweight PDF viewer and toolkit" +msgstr "" + +#: gnu/packages/pdf.scm:466 +msgid "" +"MuPDF is a C library that implements a PDF and XPS parsing and\n" +"rendering engine. It is used primarily to render pages into bitmaps,\n= " +"but also provides support for other operations such as searching and\n" +"listing the table of contents and hyperlinks.\n" +"\n" +"The library ships with a rudimentary X11 viewer, and a set of command\n= " +"line tools for batch rendering (pdfdraw), rewriting files (pdfclean),\n= " +"and examining the file structure (pdfshow)." +msgstr "" + +#: gnu/packages/pdf.scm:506 +msgid "Command-line tools and library for transforming PDF files" +msgstr "" + +#: gnu/packages/pdf.scm:508 +msgid "" +"QPDF is a command-line program that does structural, content-preserving= \n" +"transformations on PDF files. It could have been called something like= \n" +"pdf-to-pdf. It includes support for merging and splitting PDFs and to\= n" +"manipulate the list of pages in a PDF file. It is not a PDF viewer or = a\n" +"program capable of converting PDF into other formats." +msgstr "" + +#: gnu/packages/pdf.scm:538 +msgid "Notetaking using a stylus" +msgstr "" + +#: gnu/packages/pdf.scm:540 +msgid "" +"Xournal is an application for notetaking, sketching, keeping a journal\= n" +"using a stylus." +msgstr "" + +#: gnu/packages/pem.scm:41 +msgid "Personal expenses manager" +msgstr "" + +#: gnu/packages/pem.scm:43 +msgid "" +"GNU Pem is a simple tool for tracking personal income and\n" +"expenses. It operates from the command line and it stores its data\n" +"in a basic text format in your home directory. It can easily print\n" +"reports of your spending on different expenses via a basic search\n" +"feature." +msgstr "" + +#: gnu/packages/perl.scm:110 +msgid "Implementation of the Perl programming language" +msgstr "" + +#: gnu/packages/perl.scm:112 +msgid "" +"Perl 5 is a highly capable, feature-rich programming language with over= \n" +"24 years of development." +msgstr "" + +#: gnu/packages/perl.scm:131 +msgid "Module for merging hierarchies using the C3 algorithm" +msgstr "" + +#: gnu/packages/perl.scm:132 +msgid "" +"This module implements the C3 algorithm, which aims to\n" +"provide a sane method resolution order under multiple inheritance." +msgstr "" + +#: gnu/packages/perl.scm:150 +msgid "Compute differences between two files or lists" +msgstr "" + +#: gnu/packages/perl.scm:151 +msgid "" +"This is a module for computing the difference between two\n" +"files, two strings, or any other two lists of things. It uses an " +"intelligent\n" +"algorithm similar to (or identical to) the one used by the Unix \"diff\= "\n" +"program. It is guaranteed to find the *smallest possible* set of\n" +"differences." +msgstr "" + +#: gnu/packages/perl.scm:173 +msgid "Use shorter versions of class names" +msgstr "" + +#: gnu/packages/perl.scm:174 +msgid "" +"The alias module loads the class you specify and exports\n" +"into your namespace a subroutine that returns the class name. You can\= n" +"explicitly alias the class to another name or, if you prefer, you can d= o so\n" +"implicitly." +msgstr "" + +#: gnu/packages/perl.scm:196 +msgid "Configuration files and command line parsing" +msgstr "" + +#: gnu/packages/perl.scm:197 +msgid "" +"AppConfig is a bundle of Perl5 modules for reading\n" +"configuration files and parsing command line arguments." +msgstr "" + +#: gnu/packages/perl.scm:215 +msgid "Perl API to zip files" +msgstr "" + +#: gnu/packages/perl.scm:216 gnu/packages/zip.scm:170 +msgid "" +"The Archive::Zip module allows a Perl program to create,\n" +"manipulate, read, and write Zip archive files." +msgstr "" + +#: gnu/packages/perl.scm:235 gnu/packages/perl.scm:4110 +msgid "Establish an ISA relationship with base classes at compile time" +msgstr "" + +#: gnu/packages/perl.scm:236 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time. Unless you are usi= ng " +"the\n" +"fields pragma, consider this module discouraged in favor of the lighter= -" +"weight\n" +"parent." +msgstr "" + +#: gnu/packages/perl.scm:261 +msgid "Execute code after a scope finished compilation" +msgstr "" + +#: gnu/packages/perl.scm:262 +msgid "" +"This module allows you to execute code when perl finished\n" +"compiling the surrounding scope." +msgstr "" + +#: gnu/packages/perl.scm:280 +msgid "Benchmarking with statistical confidence" +msgstr "" + +#: gnu/packages/perl.scm:282 +msgid "" +"The Benchmark::Timer class allows you to time portions of code\n" +"conveniently, as well as benchmark code by allowing timings of repeated= \n" +"trials. It is perfect for when you need more precise information about= the\n" +"running time of portions of your code than the Benchmark module will gi= ve " +"you,\n" +"but don't want to go all out and profile your code." +msgstr "" + +#: gnu/packages/perl.scm:307 +msgid "Bit vector library" +msgstr "" + +#: gnu/packages/perl.scm:308 +msgid "" +"Bit::Vector is an efficient C library which allows you to\n" +"handle bit vectors, sets (of integers), \"big integer arithmetic\" and = " +"boolean\n" +"matrices, all of arbitrary sizes. The package also includes an\n" +"object-oriented Perl module for accessing the C library from Perl, and\= n" +"optionally features overloaded operators for maximum ease of use. The = C\n" +"library can nevertheless be used stand-alone, without Perl." +msgstr "" + +#: gnu/packages/perl.scm:330 +msgid "Boolean support for Perl" +msgstr "" + +#: gnu/packages/perl.scm:331 +msgid "" +"This module provides basic Boolean support, by defining two\n" +"special objects: true and false." +msgstr "" + +#: gnu/packages/perl.scm:352 +msgid "Cache interface for Perl" +msgstr "" + +#: gnu/packages/perl.scm:353 +msgid "" +"The Cache modules are designed to assist a developer in\n" +"persisting data for a specified period of time. Often these modules ar= e " +"used\n" +"in web applications to store data locally to save repeated and redundan= t\n" +"expensive calls to remote machines or databases. People have also been= " +"known\n" +"to use Cache::Cache for its straightforward interface in sharing data " +"between\n" +"runs of an application or invocations of a CGI-style script or simply a= s an\n" +"easy to use abstraction of the filesystem or shared memory." +msgstr "" + +#: gnu/packages/perl.scm:376 +msgid "Shared memory interprocess cache via mmap" +msgstr "" + +#: gnu/packages/perl.scm:377 +msgid "" +"A shared memory cache through an mmap'ed file. It's core is\n" +"written in C for performance. It uses fcntl locking to ensure multiple= \n" +"processes can safely access the cache at the same time. It uses a basi= c " +"LRU\n" +"algorithm to keep the most used entries in the cache." +msgstr "" + +#: gnu/packages/perl.scm:398 +msgid "Capture STDOUT and STDERR from Perl, XS or external programs" +msgstr "" + +#: gnu/packages/perl.scm:400 +msgid "" +"Capture::Tiny provides a simple, portable way to capture almost anythin= g\n" +"sent to STDOUT or STDERR, regardless of whether it comes from Perl, fro= m XS\n" +"code or from an external program. Optionally, output can be teed so th= at " +"it\n" +"is captured while being passed through to the original file handles." +msgstr "" + +#: gnu/packages/perl.scm:420 +msgid "Executable comments for Perl" +msgstr "" + +#: gnu/packages/perl.scm:421 +msgid "" +"Carp::Assert is intended for a purpose like the ANSI C\n" +"library assert.h." +msgstr "" + +#: gnu/packages/perl.scm:443 +msgid "Convenience wrappers around Carp::Assert" +msgstr "" + +#: gnu/packages/perl.scm:444 +msgid "" +"Carp::Assert::More is a set of handy assertion functions for\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:464 +msgid "Report errors from a \"clan\" of modules" +msgstr "" + +#: gnu/packages/perl.scm:465 +msgid "" +"This module allows errors from a clan (or family) of modules\n" +"to appear to originate from the caller of the clan. This is necessary = in\n" +"cases where the clan modules are not classes derived from each other, a= nd " +"thus\n" +"the Carp.pm module doesn't help." +msgstr "" + +#: gnu/packages/perl.scm:489 +msgid "Automated accessor generation" +msgstr "" + +#: gnu/packages/perl.scm:490 +msgid "" +"This module automagically generates accessors/mutators for\n" +"your class." +msgstr "" + +#: gnu/packages/perl.scm:512 +msgid "Faster, but less expandable, chained accessors" +msgstr "" + +#: gnu/packages/perl.scm:513 +msgid "" +"A chained accessor is one that always returns the object\n" +"when called with parameters (to set), and the value of the field when " +"called\n" +"with no arguments. This module subclasses Class::Accessor in order to = " +"provide\n" +"the same mk_accessors interface." +msgstr "" + +#: gnu/packages/perl.scm:539 +msgid "Build groups of accessors" +msgstr "" + +#: gnu/packages/perl.scm:540 +msgid "" +"This class lets you build groups of accessors that will call\n" +"different getters and setters." +msgstr "" + +#: gnu/packages/perl.scm:560 +msgid "Pragma to use the C3 method resolution order algorithm" +msgstr "" + +#: gnu/packages/perl.scm:561 +msgid "" +"This is pragma to change Perl 5's standard method resolution\n" +"order from depth-first left-to-right (a.k.a - pre-order) to the more\n" +"sophisticated C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:585 +msgid "Drop-in replacement for NEXT" +msgstr "" + +#: gnu/packages/perl.scm:586 +msgid "" +"This module is intended as a drop-in replacement for NEXT,\n" +"supporting the same interface, but using Class::C3 to do the hard work.= " +msgstr "" + +#: gnu/packages/perl.scm:610 +msgid "Load mix-ins or components to your C3-based class" +msgstr "" + +#: gnu/packages/perl.scm:611 +msgid "" +"This module will inject base classes to your module using\n" +"the Class::C3 method resolution order." +msgstr "" + +#: gnu/packages/perl.scm:629 +msgid "Inheritable, overridable class data" +msgstr "" + +#: gnu/packages/perl.scm:630 +msgid "" +"Class::Data::Inheritable is for creating accessor/mutators\n" +"to class data. That is, if you want to store something about your clas= s as " +"a\n" +"whole (instead of about a single object). This data is then inherited = by " +"your\n" +"subclasses and can be overridden." +msgstr "" + +#: gnu/packages/perl.scm:651 +msgid "Class for easy date and time manipulation" +msgstr "" + +#: gnu/packages/perl.scm:652 +msgid "" +"This module provides a general-purpose date and datetime\n" +"type for perl." +msgstr "" + +#: gnu/packages/perl.scm:671 +msgid "Utility methods for factory classes" +msgstr "" + +#: gnu/packages/perl.scm:672 +msgid "This module exports methods useful for factory classes." +msgstr "" + +#: gnu/packages/perl.scm:689 +msgid "Get information about a class and its structure" +msgstr "" + +#: gnu/packages/perl.scm:690 +msgid "" +"Class::Inspector allows you to get information about a\n" +"loaded class." +msgstr "" + +#: gnu/packages/perl.scm:718 +msgid "Working (require \"Class::Name\") and more" +msgstr "" + +#: gnu/packages/perl.scm:719 +msgid "" +"\"require EXPR\" only accepts Class/Name.pm style module\n" +"names, not Class::Name. For that, this module provides \"load_class\n" +"'Class::Name'\"." +msgstr "" + +#: gnu/packages/perl.scm:742 +msgid "XS implementation of parts of Class::Load" +msgstr "" + +#: gnu/packages/perl.scm:743 +msgid "" +"This module provides an XS implementation for portions of\n" +"Class::Load." +msgstr "" + +#: gnu/packages/perl.scm:762 +msgid "Create generic methods for OO Perl" +msgstr "" + +#: gnu/packages/perl.scm:763 +msgid "" +"This module solves the problem of having to continually\n" +"write accessor methods for your objects that perform standard tasks." +msgstr "" + +#: gnu/packages/perl.scm:784 +msgid "Moose-like method modifiers" +msgstr "" + +#: gnu/packages/perl.scm:785 +msgid "" +"Class::Method::Modifiers provides three modifiers: 'before',\n" +"'around', and 'after'. 'before' and 'after' are run just before and af= ter " +"the\n" +"method they modify, but can not really affect that original method. " +"'around'\n" +"is run in place of the original method, with a hook to easily call that= \n" +"original method." +msgstr "" + +#: gnu/packages/perl.scm:806 +msgid "Implementation of a singleton class for Perl" +msgstr "" + +#: gnu/packages/perl.scm:807 +msgid "" +"This module implements a Singleton class from which other\n" +"classes can be derived. By itself, the Class::Singleton module does ve= ry\n" +"little other than manage the instantiation of a single object." +msgstr "" + +#: gnu/packages/perl.scm:826 +msgid "Minimalist class construction" +msgstr "" + +#: gnu/packages/perl.scm:827 +msgid "" +"This module offers a minimalist class construction kit. It\n" +"uses no non-core modules for any recent Perl." +msgstr "" + +#: gnu/packages/perl.scm:847 +msgid "Unload a class" +msgstr "" + +#: gnu/packages/perl.scm:848 +msgid "" +"Class:Unload unloads a given class by clearing out its\n" +"symbol table and removing it from %INC." +msgstr "" + +#: gnu/packages/perl.scm:866 +msgid "Generate fast XS accessors without runtime compilation" +msgstr "" + +#: gnu/packages/perl.scm:867 +msgid "" +"Class::XSAccessor implements fast read, write, and\n" +"read/write accessors in XS. Additionally, it can provide predicates su= ch " +"as\n" +"\"has_foo()\" for testing whether the attribute \"foo\" is defined in t= he\n" +"object. It only works with objects that are implemented as ordinary " +"hashes.\n" +"Class::XSAccessor::Array implements the same interface for objects that= use\n" +"arrays for their internal representation." +msgstr "" + +#: gnu/packages/perl.scm:887 +msgid "Recursively copy Perl datatypes" +msgstr "" + +#: gnu/packages/perl.scm:889 +msgid "" +"This module provides a clone() method which makes recursive copies of\n= " +"nested hash, array, scalar and reference types, including tied variable= s " +"and\n" +"objects." +msgstr "" + +#: gnu/packages/perl.scm:910 +msgid "Sane defaults for Perl programs" +msgstr "" + +#: gnu/packages/perl.scm:911 +msgid "" +"This module implements some sane defaults for Perl programs,\n" +"as defined by two typical specimens of Perl coders." +msgstr "" + +#: gnu/packages/perl.scm:931 +msgid "Load configuration from different file formats" +msgstr "" + +#: gnu/packages/perl.scm:932 +msgid "" +"Config::Any provides a facility for Perl applications and\n" +"libraries to load configuration data from multiple different file forma= ts. " +"It\n" +"supports XML, YAML, JSON, Apache-style configuration, and Perl code." +msgstr "" + +#: gnu/packages/perl.scm:953 +msgid "Module to implement some AutoConf macros in Perl" +msgstr "" + +#: gnu/packages/perl.scm:954 +msgid "" +"Config::AutoConf is intended to provide the same\n" +"opportunities to Perl developers as GNU Autoconf does for Shell develop= ers." +msgstr "" + +#: gnu/packages/perl.scm:972 +msgid "Generic Config Module" +msgstr "" + +#: gnu/packages/perl.scm:973 +msgid "" +"This module opens a config file and parses its contents for\n" +"you. The format of config files supported by Config::General is inspir= ed " +"by\n" +"the well known Apache config format and is 100% compatible with Apache\= n" +"configs, but you can also just use simple name/value pairs in your conf= ig\n" +"files. In addition to the capabilities of an Apache config file it " +"supports\n" +"some enhancements such as here-documents, C-style comments, and multili= ne\n" +"options." +msgstr "" + +#: gnu/packages/perl.scm:999 +msgid "Preserve context during subroutine call" +msgstr "" + +#: gnu/packages/perl.scm:1000 +msgid "" +"This module runs code after a subroutine call, preserving\n" +"the context the subroutine would have seen if it were the last statemen= t in\n" +"the caller." +msgstr "" + +#: gnu/packages/perl.scm:1021 +msgid "Verify requirements in a CPAN::Meta object" +msgstr "" + +#: gnu/packages/perl.scm:1022 +msgid "" +"This module verifies if requirements described in a\n" +"CPAN::Meta object are present." +msgstr "" + +#: gnu/packages/perl.scm:1042 +msgid "JSON::XS for Cpanel" +msgstr "" + +#: gnu/packages/perl.scm:1043 gnu/packages/perl.scm:2818 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa." +msgstr "" + +#: gnu/packages/perl.scm:1061 +msgid "Random password generator" +msgstr "" + +#: gnu/packages/perl.scm:1062 +msgid "" +"Crypt::RandPasswd provides three functions that can be used\n" +"to generate random passwords, constructed from words, letters, or " +"characters.\n" +"This code is a Perl implementation of the Automated Password Generator\= n" +"standard, like the program described in \"A Random Word Generator For\n= " +"Pronounceable Passwords\". This code is a re-engineering of the progra= m\n" +"contained in Appendix A of FIPS Publication 181, \"Standard for Automat= ed\n" +"Password Generator\"." +msgstr "" + +#: gnu/packages/perl.scm:1105 +msgid "Library for genomic analysis" +msgstr "" + +#: gnu/packages/perl.scm:1106 +msgid "" +"Chaolin Zhang's Perl Library (czplib) contains assorted\n" +"functions and data structures for processing and analysing genomic and\= n" +"bioinformatics data." +msgstr "" + +#: gnu/packages/perl.scm:1125 +msgid "Pretty printing of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1126 +msgid "" +"This module provide functions that takes a list of values as\n" +"their argument and produces a string as its result. The string contain= s " +"Perl\n" +"code that, when \"eval\"ed, produces a deep copy of the original argume= nts." +msgstr "" + +#: gnu/packages/perl.scm:1145 +msgid "Concise data dumper" +msgstr "" + +#: gnu/packages/perl.scm:1146 +msgid "" +"Data::Dumper::Concise provides a dumper with Less\n" +"indentation and newlines plus sub deparsing." +msgstr "" + +#: gnu/packages/perl.scm:1168 +msgid "Parse and validate simple name/value option pairs" +msgstr "" + +#: gnu/packages/perl.scm:1170 +msgid "Data::OptList provides a simple syntax for name/value option pair= s." +msgstr "" + +#: gnu/packages/perl.scm:1192 +msgid "Help when paging through sets of results" +msgstr "" + +#: gnu/packages/perl.scm:1193 +msgid "" +"When searching through large amounts of data, it is often\n" +"the case that a result set is returned that is larger than we want to " +"display\n" +"on one page. This results in wanting to page through various pages of = " +"data.\n" +"The maths behind this is unfortunately fiddly, hence this module." +msgstr "" + +#: gnu/packages/perl.scm:1215 +msgid "Structured tags datastructures" +msgstr "" + +#: gnu/packages/perl.scm:1217 +msgid "" +"This module is for manipulating data as hierarchical tag/value\n" +"pairs (Structured TAGs or Simple Tree AGgregates). These datastructure= s " +"can\n" +"be represented as nested arrays, which have the advantage of being nati= ve " +"to\n" +"Perl." +msgstr "" + +#: gnu/packages/perl.scm:1244 +msgid "N at a time iteration API" +msgstr "" + +#: gnu/packages/perl.scm:1245 +msgid "" +"This module tries to find middle ground between one at a\n" +"time and all at once processing of data sets. The purpose of this modu= le " +"is\n" +"to avoid the overhead of implementing an iterative api when this isn't\= n" +"necessary, without breaking forward compatibility in case that becomes\= n" +"necessary later on." +msgstr "" + +#: gnu/packages/perl.scm:1270 +msgid "Dynamic generation of nested combinations of variants" +msgstr "" + +#: gnu/packages/perl.scm:1271 +msgid "" +"Data::Tumbler - Dynamic generation of nested combinations of\n" +"variants." +msgstr "" + +#: gnu/packages/perl.scm:1297 +msgid "Visitor style traversal of Perl data structures" +msgstr "" + +#: gnu/packages/perl.scm:1298 +msgid "" +"This module is a simple visitor implementation for Perl\n" +"values. It has a main dispatcher method, visit, which takes a single p= erl\n" +"value and then calls the methods appropriate for that value. It can\n" +"recursively map (cloning as necessary) or just traverse most structures= , " +"with\n" +"support for per-object behavior, circular structures, visiting tied\n" +"structures, and all ref types (hashes, arrays, scalars, code, globs)." +msgstr "" + +#: gnu/packages/perl.scm:1323 +msgid "Gregorian calendar date calculations" +msgstr "" + +#: gnu/packages/perl.scm:1324 +msgid "" +"This package consists of a Perl module for date calculations\n" +"based on the Gregorian calendar, thereby complying with all relevant no= rms " +"and\n" +"standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (whe= re\n" +"applicable)." +msgstr "" + +#: gnu/packages/perl.scm:1348 +msgid "XS wrapper for Date::Calc" +msgstr "" + +#: gnu/packages/perl.scm:1349 +msgid "" +"Date::Calc::XS is an XS wrapper and C library plug-in for\n" +"Date::Calc." +msgstr "" + +#: gnu/packages/perl.scm:1373 +msgid "Date manipulation routines" +msgstr "" + +#: gnu/packages/perl.scm:1374 +msgid "" +"Date::Manip is a series of modules for common date/time\n" +"operations, such as comparing two times, determining a date a given amo= unt " +"of\n" +"time from another, or parsing international times." +msgstr "" + +#: gnu/packages/perl.scm:1402 +msgid "Date and time object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1403 +msgid "" +"DateTime is a class for the representation of date/time\n" +"combinations. It represents the Gregorian calendar, extended backwards= in\n" +"time before its creation (in 1582)." +msgstr "" + +#: gnu/packages/perl.scm:1428 +msgid "DateTime set objects" +msgstr "" + +#: gnu/packages/perl.scm:1429 +msgid "" +"The DateTime::Set module provides a date/time sets\n" +"implementation. It allows, for example, the generation of groups of da= tes,\n" +"like \"every wednesday\", and then find all the dates matching that " +"pattern,\n" +"within a time range." +msgstr "" + +#: gnu/packages/perl.scm:1452 +msgid "DateTime rfc2445 recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1453 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for RFC 2445 style recurrences." +msgstr "" + +#: gnu/packages/perl.scm:1474 +msgid "DateTime::Set extension for basic recurrences" +msgstr "" + +#: gnu/packages/perl.scm:1475 +msgid "" +"This module provides convenience methods that let you easily\n" +"create DateTime::Set objects for various recurrences, such as \"once a = month" +"\"\n" +"or \"every day\". You can also create more complicated recurrences, su= ch " +"as\n" +"\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\"." +msgstr "" + +#: gnu/packages/perl.scm:1500 +msgid "Create DateTime parser classes and objects" +msgstr "" + +#: gnu/packages/perl.scm:1501 +msgid "" +"DateTime::Format::Builder creates DateTime parsers. Many\n" +"string formats of dates and times are simple and just require a basic " +"regular\n" +"expression to extract the relevant information. Builder provides a sim= ple " +"way\n" +"to do this without writing reams of structural code." +msgstr "" + +#: gnu/packages/perl.scm:1528 +msgid "Parse data/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1529 +msgid "" +"DateTime::Format::Flexible attempts to take any string you\n" +"give it and parse it into a DateTime object." +msgstr "" + +#: gnu/packages/perl.scm:1555 +msgid "Parse and format iCal datetime and duration strings" +msgstr "" + +#: gnu/packages/perl.scm:1556 +msgid "" +"This module understands the ICal date/time and duration\n" +"formats, as defined in RFC 2445. It can be used to parse these formats= in\n" +"order to create the appropriate objects." +msgstr "" + +#: gnu/packages/perl.scm:1588 +msgid "Machine-readable date/time with natural parsing" +msgstr "" + +#: gnu/packages/perl.scm:1589 +msgid "" +"DateTime::Format::Natural takes a string with a human\n" +"readable date/time and creates a machine readable one by applying natur= al\n" +"parsing logic." +msgstr "" + +#: gnu/packages/perl.scm:1613 +msgid "Parse and format strp and strf time patterns" +msgstr "" + +#: gnu/packages/perl.scm:1614 +msgid "" +"This module implements most of `strptime(3)`, the POSIX\n" +"function that is the reverse of `strftime(3)`, for `DateTime`. While\n= " +"`strftime` takes a `DateTime` and a pattern and returns a string, " +"`strptime`\n" +"takes a string and a pattern and returns the `DateTime` object associat= ed." +msgstr "" + +#: gnu/packages/perl.scm:1639 +msgid "Localization support for DateTime.pm" +msgstr "" + +#: gnu/packages/perl.scm:1640 +msgid "" +"The DateTime::Locale modules provide localization data for\n" +"the DateTime.pm class." +msgstr "" + +#: gnu/packages/perl.scm:1667 +msgid "Time zone object for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1668 +msgid "" +"This class is the base class for all time zone objects. A\n" +"time zone is represented internally as a set of observances, each of wh= ich\n" +"describes the offset from GMT for a given time period. Note that witho= ut " +"the\n" +"DateTime module, this module does not do much. It's primary interface = is\n" +"through a DateTime object, and most users will not need to directly use= \n" +"DateTime::TimeZone methods." +msgstr "" + +#: gnu/packages/perl.scm:1698 +msgid "Parse date/time strings" +msgstr "" + +#: gnu/packages/perl.scm:1699 +msgid "" +"DateTimeX::Easy uses a variety of DateTime::Format packages\n" +"to create DateTime objects, with some custom tweaks to smooth out the r= ough\n" +"edges (mainly concerning timezone detection and selection)." +msgstr "" + +#: gnu/packages/perl.scm:1720 +msgid "Meatier version of caller" +msgstr "" + +#: gnu/packages/perl.scm:1721 +msgid "Devel::Caller provides meatier version of caller." +msgstr "" + +#: gnu/packages/perl.scm:1739 +msgid "Check that a command is available" +msgstr "" + +#: gnu/packages/perl.scm:1740 +msgid "" +"Devel::CheckBin is a perl module that checks whether a\n" +"particular command is available." +msgstr "" + +#: gnu/packages/perl.scm:1760 +msgid "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older p= erls" +msgstr "" + +#: gnu/packages/perl.scm:1761 +msgid "" +"Devel::GlobalDestruction provides a function returning the\n" +"equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls." +msgstr "" + +#: gnu/packages/perl.scm:1781 +msgid "Alias lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:1782 +msgid "" +"Devel::LexAlias provides the ability to alias a lexical\n" +"variable in a subroutines scope to one of your choosing." +msgstr "" + +#: gnu/packages/perl.scm:1804 +msgid "Introspect overloaded operators" +msgstr "" + +#: gnu/packages/perl.scm:1805 +msgid "" +"Devel::OverloadInfo returns information about overloaded\n" +"operators for a given class (or object), including where in the inherit= ance\n" +"hierarchy the overloads are declared and where the code implementing it= is." +msgstr "" + +#: gnu/packages/perl.scm:1832 +msgid "Partial dumping of data structures" +msgstr "" + +#: gnu/packages/perl.scm:1833 +msgid "" +"This module is a data dumper optimized for logging of\n" +"arbitrary parameters." +msgstr "" + +#: gnu/packages/perl.scm:1851 +msgid "Object representing a stack trace" +msgstr "" + +#: gnu/packages/perl.scm:1852 +msgid "" +"The Devel::StackTrace module contains two classes,\n" +"Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsul= ate " +"the\n" +"information that can be retrieved via Perl's caller() function, as well= as\n" +"providing a simple interface to this data." +msgstr "" + +#: gnu/packages/perl.scm:1874 +msgid "Displays stack trace in HTML" +msgstr "" + +#: gnu/packages/perl.scm:1875 +msgid "" +"Devel::StackTrace::AsHTML adds as_html method to\n" +"Devel::StackTrace which displays the stack trace in beautiful HTML, wit= h " +"code\n" +"snippet context and function parameters. If you call it on an instance= of\n" +"Devel::StackTrace::WithLexicals, you even get to see the lexical variab= les " +"of\n" +"each stack frame." +msgstr "" + +#: gnu/packages/perl.scm:1896 +msgid "Dump symbol names or the symbol table" +msgstr "" + +#: gnu/packages/perl.scm:1897 +msgid "Devel::Symdump provides access to the perl symbol table." +msgstr "" + +#: gnu/packages/perl.scm:1914 +msgid "Keyed-Hashing for Message Authentication" +msgstr "" + +#: gnu/packages/perl.scm:1915 +msgid "" +"The Digest::HMAC module follows the common Digest::\n" +"interface for the RFC 2104 HMAC mechanism." +msgstr "" + +#: gnu/packages/perl.scm:1931 +msgid "Perl implementation of the SHA-1 message digest algorithm" +msgstr "" + +#: gnu/packages/perl.scm:1933 +msgid "" +"This package provides 'Digest::SHA1', an implementation of the NIST\n" +"SHA-1 message digest algorithm for use by Perl programs." +msgstr "" + +#: gnu/packages/perl.scm:1955 +msgid "Declare version conflicts for your dist" +msgstr "" + +#: gnu/packages/perl.scm:1956 +msgid "" +"This module allows you to specify conflicting versions of\n" +"modules separately and deal with them after the module is done installi= ng." +msgstr "" + +#: gnu/packages/perl.scm:1974 +msgid "OO-ish Error/Exception handling for Perl" +msgstr "" + +#: gnu/packages/perl.scm:1975 +msgid "" +"The Error package provides two interfaces. Firstly Error\n" +"provides a procedural interface to exception handling. Secondly Error = is a\n" +"base class for errors/exceptions that can either be thrown, for subsequ= ent\n" +"catch, or can simply be recorded." +msgstr "" + +#: gnu/packages/perl.scm:2000 +msgid "Safely and cleanly create closures via string eval" +msgstr "" + +#: gnu/packages/perl.scm:2001 +msgid "" +"String eval is often used for dynamic code generation. For\n" +"instance, Moose uses it heavily, to generate inlined versions of access= ors " +"and\n" +"constructors, which speeds code up at runtime by a significant amount. = " +"String\n" +"eval is not without its issues however - it's difficult to control the = " +"scope\n" +"it's used in (which determines which variables are in scope inside the = " +"eval),\n" +"and it's easy to miss compilation errors, since eval catches them and " +"sticks\n" +"them in $@@ instead. This module attempts to solve these problems. It= \n" +"provides an eval_closure function, which evals a string in a clean\n" +"environment, other than a fixed list of specified variables. Compilati= on\n" +"errors are rethrown automatically." +msgstr "" + +#: gnu/packages/perl.scm:2030 +msgid "Allows you to declare real exception classes in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2031 +msgid "" +"Exception::Class allows you to declare exception hierarchies\n" +"in your modules in a \"Java-esque\" manner." +msgstr "" + +#: gnu/packages/perl.scm:2047 +msgid "Lightweight exporting of functions and variables" +msgstr "" + +#: gnu/packages/perl.scm:2049 +msgid "" +"Exporter::Lite is an alternative to Exporter, intended to provide a\n" +"lightweight subset of the most commonly-used functionality. It support= s\n" +"import(), @@EXPORT and @@EXPORT_OK and not a whole lot else." +msgstr "" + +#: gnu/packages/perl.scm:2070 +msgid "Exporter with the features of Sub::Exporter but only core depende= ncies" +msgstr "" + +#: gnu/packages/perl.scm:2071 +msgid "" +"Exporter::Tiny supports many of Sub::Exporter's\n" +"external-facing features including renaming imported functions with the= `-" +"as`,\n" +"`-prefix` and `-suffix` options; explicit destinations with the `into` = " +"option;\n" +"and alternative installers with the `installler` option. But it's writ= ten " +"in\n" +"only about 40% as many lines of code and with zero non-core dependencie= s." +msgstr "" + +#: gnu/packages/perl.scm:2094 +msgid "Build.PL install path logic made easy" +msgstr "" + +#: gnu/packages/perl.scm:2095 +msgid "" +"This module tries to make install path resolution as easy as\n" +"possible." +msgstr "" + +#: gnu/packages/perl.scm:2113 +msgid "Wrapper for perl's configuration" +msgstr "" + +#: gnu/packages/perl.scm:2114 +msgid "" +"ExtUtils::Config is an abstraction around the %Config hash.\n" +"By itself it is not a particularly interesting module by any measure, " +"however\n" +"it ties together a family of modern toolchain modules." +msgstr "" + +#: gnu/packages/perl.scm:2133 +msgid "Various portability utilities for module builders" +msgstr "" + +#: gnu/packages/perl.scm:2134 +msgid "" +"This module provides various portable helper functions for\n" +"module building modules." +msgstr "" + +#: gnu/packages/perl.scm:2164 +msgid "Watch for changes to files" +msgstr "" + +#: gnu/packages/perl.scm:2165 +msgid "" +"This module provides a class to monitor a directory for\n" +"changes made to any file." +msgstr "" + +#: gnu/packages/perl.scm:2183 +msgid "Recursively copy files and directories" +msgstr "" + +#: gnu/packages/perl.scm:2184 +msgid "" +"This module has 3 functions: one to copy files only, one to\n" +"copy directories only, and one to do either depending on the argument's= \n" +"type." +msgstr "" + +#: gnu/packages/perl.scm:2206 +msgid "Alternative interface to File::Find" +msgstr "" + +#: gnu/packages/perl.scm:2207 +msgid "" +"File::Find::Rule is a friendlier interface to File::Find.\n" +"It allows you to build rules which specify the desired files and\n" +"directories." +msgstr "" + +#: gnu/packages/perl.scm:2230 +msgid "Common rules for searching for Perl things" +msgstr "" + +#: gnu/packages/perl.scm:2231 +msgid "" +"File::Find::Rule::Perl provides methods for finding various\n" +"types Perl-related files, or replicating search queries run on a " +"distribution\n" +"in various parts of the CPAN ecosystem." +msgstr "" + +#: gnu/packages/perl.scm:2254 +msgid "Find your home and other directories on any platform" +msgstr "" + +#: gnu/packages/perl.scm:2255 +msgid "" +"File::HomeDir is a module for locating the directories that\n" +"are \"owned\" by a user (typically your user) and to solve the various = " +"issues\n" +"that arise trying to find them consistently across a wide variety of\n" +"platforms." +msgstr "" + +#: gnu/packages/perl.scm:2282 +msgid "" +"Perl extension for crawling directory trees and compiling\n" +"lists of files" +msgstr "" + +#: gnu/packages/perl.scm:2285 +msgid "" +"The File::List module crawls the directory tree starting at the\n" +"provided base directory and can return files (and/or directories if " +"desired)\n" +"matching a regular expression." +msgstr "" + +#: gnu/packages/perl.scm:2304 +msgid "Remove files and directories in Perl" +msgstr "" + +#: gnu/packages/perl.scm:2305 +msgid "" +"File::Remove::remove removes files and directories. It acts\n" +"like /bin/rm, for the most part. Although \"unlink\" can be given a li= st " +"of\n" +"files, it will not remove directories; this module remedies that. It a= lso\n" +"accepts wildcards, * and ?, as arguments for file names." +msgstr "" + +#: gnu/packages/perl.scm:2329 +msgid "Locate per-dist and per-module shared files" +msgstr "" + +#: gnu/packages/perl.scm:2330 +msgid "" +"The intent of File::ShareDir is to provide a companion to\n" +"Class::Inspector and File::HomeDir. Quite often you want or need your = Perl\n" +"module to have access to a large amount of read-only data that is store= d on\n" +"the file-system at run-time. Once the files have been installed to the= \n" +"correct directory, you can use File::ShareDir to find your files again = " +"after\n" +"the installation." +msgstr "" + +#: gnu/packages/perl.scm:2352 +msgid "Install shared files" +msgstr "" + +#: gnu/packages/perl.scm:2353 +msgid "" +"File::ShareDir::Install allows you to install read-only data\n" +"files from a distribution. It is a companion module to File::ShareDir,= " +"which\n" +"allows you to locate these files after installation." +msgstr "" + +#: gnu/packages/perl.scm:2372 +msgid "Reading/Writing/Modifying of complete files" +msgstr "" + +#: gnu/packages/perl.scm:2373 +msgid "" +"File::Slurp provides subroutines to read or write entire\n" +"files with a simple call. It also has a subroutine for reading the lis= t of\n" +"file names in a directory." +msgstr "" + +#: gnu/packages/perl.scm:2391 +msgid "Simple file reader and writer" +msgstr "" + +#: gnu/packages/perl.scm:2393 +msgid "This module provides functions for fast reading and writing of fi= les." +msgstr "" + +#: gnu/packages/perl.scm:2412 +msgid "Return name and handle of a temporary file safely" +msgstr "" + +#: gnu/packages/perl.scm:2413 +msgid "" +"File::Temp can be used to create and open temporary files in\n" +"a safe way." +msgstr "" + +#: gnu/packages/perl.scm:2430 +msgid "Portable implementation of the `which' utility" +msgstr "" + +#: gnu/packages/perl.scm:2432 +msgid "" +"File::Which was created to be able to get the paths to executable\n" +"programs on systems under which the `which' program wasn't implemented = in " +"the\n" +"shell." +msgstr "" + +#: gnu/packages/perl.scm:2459 +msgid "Getopt::Long, but simpler and more powerful" +msgstr "" + +#: gnu/packages/perl.scm:2460 +msgid "" +"Getopt::Long::Descriptive is yet another Getopt library.\n" +"It's built atop Getopt::Long, and gets a lot of its features, but tries= to\n" +"avoid making you think about its huge array of options. It also provid= es\n" +"usage (help) messages, data validation, and a few other useful features= ." +msgstr "" + +#: gnu/packages/perl.scm:2478 +msgid "Table-driven argument parsing for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2480 +msgid "" +"Getopt::Tabular is a Perl 5 module for table-driven argument parsing,\n= " +"vaguely inspired by John Ousterhout's Tk_ParseArgv." +msgstr "" + +#: gnu/packages/perl.scm:2500 +msgid "Merge arbitrarily deep hashes into a single hash" +msgstr "" + +#: gnu/packages/perl.scm:2501 +msgid "" +"Hash::Merge merges two arbitrarily deep hashes into a single\n" +"hash. That is, at any level, it will add non-conflicting key-value pai= rs " +"from\n" +"one hash to the other, and follows a set of specific rules when there a= re " +"key\n" +"value conflicts. The hash is followed recursively, so that deeply nest= ed\n" +"hashes that are at the same level will be merged when the parent hashes= are\n" +"merged." +msgstr "" + +#: gnu/packages/perl.scm:2523 +msgid "Store multiple values per key" +msgstr "" + +#: gnu/packages/perl.scm:2524 +msgid "" +"Hash::MultiValue is an object (and a plain hash reference)\n" +"that may contain multiple values per key, inspired by MultiDict of WebO= b." +msgstr "" + +#: gnu/packages/perl.scm:2544 +msgid "Import packages into other packages" +msgstr "" + +#: gnu/packages/perl.scm:2545 +msgid "" +"Writing exporters is a pain. Some use Exporter, some use\n" +"Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ...= and\n" +"some things are pragmas. Exporting on someone else's behalf is harder.= " +"The\n" +"exporters don't provide a consistent API for this, and pragmas need to = have\n" +"their import method called directly, since they effect the current unit= of\n" +"compilation. Import::Into provides global methods to make this painles= s." +msgstr "" + +#: gnu/packages/perl.scm:2567 +msgid "Use modules in inc/ if newer than installed" +msgstr "" + +#: gnu/packages/perl.scm:2568 +msgid "" +"The inc::latest module helps bootstrap configure-time\n" +"dependencies for CPAN distributions. These dependencies get bundled in= to " +"the\n" +"inc directory within a distribution and are used by Makefile.PL or Buil= d.PL." +msgstr "" + +#: gnu/packages/perl.scm:2587 +msgid "Utilities for interactive I/O" +msgstr "" + +#: gnu/packages/perl.scm:2588 +msgid "" +"This module provides three utility subroutines that make it\n" +"easier to develop interactive applications: is_interactive(), " +"interactive(),\n" +"and busy()." +msgstr "" + +#: gnu/packages/perl.scm:2607 +msgid "Emulate file interface for in-core strings" +msgstr "" + +#: gnu/packages/perl.scm:2608 +msgid "" +"IO::String is an IO::File (and IO::Handle) compatible class\n" +"that reads or writes data from in-core strings." +msgstr "" + +#: gnu/packages/perl.scm:2626 +msgid "IO:: interface for reading/writing an array of lines" +msgstr "" + +#: gnu/packages/perl.scm:2627 +msgid "" +"This toolkit primarily provides modules for performing both\n" +"traditional and object-oriented i/o) on things *other* than normal\n" +"filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.= " +msgstr "" + +#: gnu/packages/perl.scm:2645 +msgid "Perl interface to pseudo ttys" +msgstr "" + +#: gnu/packages/perl.scm:2647 +msgid "" +"This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to\n" +"pseudo ttys." +msgstr "" + +#: gnu/packages/perl.scm:2675 +msgid "Run system() and background procs w/ piping, redirs, ptys" +msgstr "" + +#: gnu/packages/perl.scm:2676 +msgid "" +"IPC::Run allows you run and interact with child processes\n" +"using files, pipes, and pseudo-ttys. Both system()-style and scripted = " +"usages\n" +"are supported and may be mixed. Likewise, functional and OO API styles= are\n" +"both supported and may be mixed." +msgstr "" + +#: gnu/packages/perl.scm:2694 +msgid "Run a subprocess with input/output redirection" +msgstr "" + +#: gnu/packages/perl.scm:2696 +msgid "" +"The IPC::Run3 module allows you to run a subprocess and redirect stdin,= \n" +"stdout, and/or stderr to files and perl data structures. It aims to " +"satisfy\n" +"99% of the need for using system, qx, and open3 with a simple, extremel= y\n" +"Perlish API and none of the bloat and rarely used features of IPC::Run.= " +msgstr "" + +#: gnu/packages/perl.scm:2720 +msgid "Lightweight interface to shared memory" +msgstr "" + +#: gnu/packages/perl.scm:2721 +msgid "" +"IPC::ShareLite provides a simple interface to shared memory,\n" +"allowing data to be efficiently communicated between processes." +msgstr "" + +#: gnu/packages/perl.scm:2741 +msgid "JSON encoder/decoder for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2742 +msgid "" +"This module converts Perl data structures to JSON and vice\n" +"versa using either JSON::XS or JSON::PP." +msgstr "" + +#: gnu/packages/perl.scm:2767 +msgid "Wrapper for Perl JSON classes" +msgstr "" + +#: gnu/packages/perl.scm:2769 +msgid "" +"This module tries to provide a coherent API to bring together the\n" +"various JSON modules currently on CPAN. This module will allow you to = code " +"to\n" +"any JSON API and have it work regardless of which JSON module is actual= ly\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:2793 +msgid "Cpanel::JSON::XS with fallback" +msgstr "" + +#: gnu/packages/perl.scm:2794 +msgid "" +"This module first checks to see if either Cpanel::JSON::XS\n" +"or JSON::XS is already loaded, in which case it uses that module. " +"Otherwise\n" +"it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in orde= r, " +"and\n" +"either uses the first module it finds or throws an error." +msgstr "" + +#: gnu/packages/perl.scm:2817 +msgid "JSON serialising/deserialising for Perl" +msgstr "" + +#: gnu/packages/perl.scm:2837 +msgid "Log::Report in the lightest form" +msgstr "" + +#: gnu/packages/perl.scm:2839 +msgid "" +"This module allows libraries to have a dependency to a small module\n" +"instead of the full Log-Report distribution. The full power of\n" +"@code{Log::Report} is only released when the main program uses that mod= ule.\n" +"In that case, the module using the 'Optional' will also use the full\n" +"@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minim= al}\n" +"version." +msgstr "" + +#: gnu/packages/perl.scm:2864 +msgid "Get messages to users and logs" +msgstr "" + +#: gnu/packages/perl.scm:2866 +msgid "" +"@code{Log::Report} combines three tasks which are closely related in\n" +"one: logging, exceptions, and translations." +msgstr "" + +#: gnu/packages/perl.scm:2889 +msgid "Combination of List::Util and List::MoreUtils" +msgstr "" + +#: gnu/packages/perl.scm:2890 +msgid "" +"This module exports all of the functions that either\n" +"List::Util or List::MoreUtils defines, with preference to List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2914 +msgid "Provide the stuff missing in List::Util" +msgstr "" + +#: gnu/packages/perl.scm:2915 +msgid "" +"List::MoreUtils provides some trivial but commonly needed\n" +"functionality on lists which is not going to go into List::Util." +msgstr "" + +#: gnu/packages/perl.scm:2933 +msgid "Expiry plug-in for Memoize that adds LRU cache expiration" +msgstr "" + +#: gnu/packages/perl.scm:2934 +msgid "" +"This module implements an expiry policy for Memoize that\n" +"follows LRU semantics, that is, the last n results, where n is specifie= d as\n" +"the argument to the CACHESIZE parameter, will be cached." +msgstr "" + +#: gnu/packages/perl.scm:2952 +msgid "Charset information for MIME messages" +msgstr "" + +#: gnu/packages/perl.scm:2954 +msgid "" +"@code{MIME::Charset} provides information about character sets used for= \n" +"MIME messages on Internet." +msgstr "" + +#: gnu/packages/perl.scm:2972 +msgid "Definition of MIME types" +msgstr "" + +#: gnu/packages/perl.scm:2973 +msgid "" +"This module provides a list of known mime-types, combined\n" +"from various sources. For instance, it contains all IANA types and the= \n" +"knowledge of Apache." +msgstr "" + +#: gnu/packages/perl.scm:3002 +msgid "Tiny replacement for Module::Build" +msgstr "" + +#: gnu/packages/perl.scm:3003 +msgid "" +"Many Perl distributions use a Build.PL file instead of a\n" +"Makefile.PL file to drive distribution configuration, build, test and\n= " +"installation. Traditionally, Build.PL uses Module::Build as the underl= ying\n" +"build system. This module provides a simple, lightweight, drop-in\n" +"replacement. Whereas Module::Build has over 6,700 lines of code; this = " +"module\n" +"has less than 120, yet supports the features needed by most distributio= ns." +msgstr "" + +#: gnu/packages/perl.scm:3025 +msgid "Find and use installed modules in a (sub)category" +msgstr "" + +#: gnu/packages/perl.scm:3026 +msgid "" +"Module::Find lets you find and use modules in categories.\n" +"This can be useful for auto-detecting driver or plugin modules. You ca= n\n" +"differentiate between looking in the category itself or in all\n" +"subcategories." +msgstr "" + +#: gnu/packages/perl.scm:3052 +msgid "Loads alternate underlying implementations for a module" +msgstr "" + +#: gnu/packages/perl.scm:3053 +msgid "" +"This module abstracts out the process of choosing one of\n" +"several underlying implementations for a module. This can be used to " +"provide\n" +"XS and pure Perl implementations of a module, or it could be used to lo= ad " +"an\n" +"implementation for a given OS or any other case of needing to provide " +"multiple\n" +"implementations." +msgstr "" + +#: gnu/packages/perl.scm:3091 +msgid "Standalone, extensible Perl module installer" +msgstr "" + +#: gnu/packages/perl.scm:3092 +msgid "" +"Module::Install is a package for writing installers for\n" +"CPAN (or CPAN-like) distributions that are clean, simple, minimalist, a= ct in " +"a\n" +"strictly correct manner with ExtUtils::MakeMaker, and will run on any P= erl\n" +"installation version 5.005 or newer." +msgstr "" + +#: gnu/packages/perl.scm:3113 +msgid "Give your Perl module the ability to have plugins" +msgstr "" + +#: gnu/packages/perl.scm:3114 +msgid "" +"This module provides a simple but extensible way of having\n" +"'plugins' for your Perl module." +msgstr "" + +#: gnu/packages/perl.scm:3133 +msgid "Perl runtime module handling" +msgstr "" + +#: gnu/packages/perl.scm:3134 +msgid "" +"The functions exported by this module deal with runtime\n" +"handling of Perl modules, which are normally handled at compile time." +msgstr "" + +#: gnu/packages/perl.scm:3157 +msgid "Provide information on conflicts for Module::Runtime" +msgstr "" + +#: gnu/packages/perl.scm:3158 +msgid "" +"This module provides conflicts checking for Module::Runtime,\n" +"which had a recent release that broke some versions of Moose. It is ca= lled\n" +"from Moose::Conflicts and moose-outdated." +msgstr "" + +#: gnu/packages/perl.scm:3179 +msgid "Recursively scan Perl code for dependencies" +msgstr "" + +#: gnu/packages/perl.scm:3180 +msgid "" +"Module::ScanDeps is a module to recursively scan Perl\n" +"programs for dependencies." +msgstr "" + +#: gnu/packages/perl.scm:3200 +msgid "Module name tools and transformations" +msgstr "" + +#: gnu/packages/perl.scm:3201 +msgid "" +"This module provides a few useful functions for manipulating\n" +"module names. Its main aim is to centralise some of the functions comm= only\n" +"used by modules that manipulate other modules in some way, like convert= ing\n" +"module names to relative paths." +msgstr "" + +#: gnu/packages/perl.scm:3231 +msgid "Minimalist Object Orientation (with Moose compatibility)" +msgstr "" + +#: gnu/packages/perl.scm:3232 +msgid "" +"Moo is an extremely light-weight Object Orientation system.\n" +"It allows one to concisely define objects and roles with a convenient " +"syntax\n" +"that avoids the details of Perl's object system. Moo contains a subset= of\n" +"Moose and is optimised for rapid startup." +msgstr "" + +#: gnu/packages/perl.scm:3308 +msgid "Postmodern object system for Perl 5" +msgstr "" + +#: gnu/packages/perl.scm:3310 +msgid "" +"Moose is a complete object system for Perl 5. It provides keywords for= \n" +"attribute declaration, object construction, inheritance, and maybe more= . " +"With\n" +"Moose, you define your class declaratively, without needing to know abo= ut\n" +"blessed hashrefs, accessor methods, and so on. You can concentrate on = the\n" +"logical structure of your classes, focusing on \"what\" rather than \"h= ow" +"\".\n" +"A class definition with Moose reads like a list of very concise English= \n" +"sentences." +msgstr "" + +#: gnu/packages/perl.scm:3338 +msgid "Emulate Class::Accessor::Fast behavior using Moose attributes" +msgstr "" + +#: gnu/packages/perl.scm:3339 +msgid "" +"This module attempts to emulate the behavior of\n" +"Class::Accessor::Fast as accurately as possible using the Moose attribu= te\n" +"system. The public API of Class::Accessor::Fast is wholly supported, b= ut " +"the\n" +"private methods are not." +msgstr "" + +#: gnu/packages/perl.scm:3371 +msgid "Moose role for processing command line options" +msgstr "" + +#: gnu/packages/perl.scm:3372 +msgid "" +"This is a Moose role which provides an alternate constructor\n" +"for creating objects using parameters passed in from the command line." +msgstr "" + +#: gnu/packages/perl.scm:3393 +msgid "Mark overload code symbols as methods" +msgstr "" + +#: gnu/packages/perl.scm:3394 +msgid "" +"MooseX::MarkAsMethods allows one to easily mark certain\n" +"functions as Moose methods. This will allow other packages such as\n" +"namespace::autoclean to operate without blowing away your overloads. A= fter\n" +"using MooseX::MarkAsMethods your overloads will be recognized by Class:= :MOP " +"as\n" +"being methods, and class extension as well as composition from roles wi= th\n" +"overloads will \"just work\"." +msgstr "" + +#: gnu/packages/perl.scm:3424 +msgid "Code attribute introspection" +msgstr "" + +#: gnu/packages/perl.scm:3425 +msgid "" +"This module allows code attributes of methods to be\n" +"introspected using Moose meta method objects." +msgstr "" + +#: gnu/packages/perl.scm:3451 +msgid "Subclassing of non-Moose classes" +msgstr "" + +#: gnu/packages/perl.scm:3452 +msgid "" +"MooseX::NonMoose allows for easily subclassing non-Moose\n" +"classes with Moose, taking care of the details connected with doing thi= s, " +"such\n" +"as setting up proper inheritance from Moose::Object and installing (and= \n" +"inlining, at make_immutable time) a constructor that makes sure things = like\n" +"BUILD methods are called. It tries to be as non-intrusive as possible.= " +msgstr "" + +#: gnu/packages/perl.scm:3481 +msgid "Extension of Params::Validate using Moose's types" +msgstr "" + +#: gnu/packages/perl.scm:3482 +msgid "" +"This module fills a gap in Moose by adding method parameter\n" +"validation to Moose." +msgstr "" + +#: gnu/packages/perl.scm:3503 +msgid "Apply roles to a related Perl class" +msgstr "" + +#: gnu/packages/perl.scm:3504 +msgid "" +"This module applies roles to make a subclass instead of\n" +"manually setting up a subclass." +msgstr "" + +#: gnu/packages/perl.scm:3531 +msgid "Moose roles with composition parameters" +msgstr "" + +#: gnu/packages/perl.scm:3532 +msgid "" +"Because Moose roles serve many different masters, they\n" +"usually provide only the least common denominator of functionality. To= \n" +"empower roles further, more configurability than -alias and -excludes i= s\n" +"required. Perhaps your role needs to know which method to call when it= is\n" +"done processing, or what default value to use for its url attribute.\n" +"Parameterized roles offer a solution to these (and other) kinds of prob= lems." +msgstr "" + +#: gnu/packages/perl.scm:3558 +msgid "Roles which support overloading" +msgstr "" + +#: gnu/packages/perl.scm:3559 +msgid "" +"MooseX::Role::WithOverloading allows you to write a\n" +"Moose::Role which defines overloaded operators and allows those overloa= d\n" +"methods to be composed into the classes/roles/instances it's compiled t= o,\n" +"where plain Moose::Roles would lose the overloading." +msgstr "" + +#: gnu/packages/perl.scm:3581 +msgid "Name your accessors foo() and set_foo()" +msgstr "" + +#: gnu/packages/perl.scm:3582 +msgid "" +"This module does not provide any methods. Simply loading it\n" +"changes the default naming policy for the loading class so that accesso= rs " +"are\n" +"separated into get and set methods. The get methods have the same name= as " +"the\n" +"accessor, while set methods are prefixed with \"_set_\"." +msgstr "" + +#: gnu/packages/perl.scm:3608 +msgid "Strict object constructors for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3609 +msgid "" +"Simply loading this module makes your constructors\n" +"\"strict\". If your constructor is called with an attribute init argum= ent\n" +"that your class does not declare, then it calls Moose->throw_error()." +msgstr "" + +#: gnu/packages/perl.scm:3637 +msgid "Trait loading and resolution for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3638 +msgid "" +"Adds support on top of MooseX::Traits for class precedence\n" +"search for traits and some extra attributes." +msgstr "" + +#: gnu/packages/perl.scm:3664 +msgid "Organise your Moose types in libraries" +msgstr "" + +#: gnu/packages/perl.scm:3665 +msgid "" +"This package lets you declare types using short names, but\n" +"behind the scenes it namespaces all your type declarations, effectively= \n" +"prevent name clashes between packages." +msgstr "" + +#: gnu/packages/perl.scm:3696 +msgid "DateTime related constraints and coercions for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3697 +msgid "" +"This module packages several Moose::Util::TypeConstraints\n" +"with coercions, designed to work with the DateTime suite of objects." +msgstr "" + +#: gnu/packages/perl.scm:3729 +msgid "Extensions to MooseX::Types::DateTime" +msgstr "" + +#: gnu/packages/perl.scm:3730 +msgid "" +"This module builds on MooseX::Types::DateTime to add\n" +"additional custom types and coercions. Since it builds on an existing = " +"type,\n" +"all coercions and constraints are inherited." +msgstr "" + +#: gnu/packages/perl.scm:3759 +msgid "ClassName type constraints for Moose" +msgstr "" + +#: gnu/packages/perl.scm:3760 +msgid "" +"MooseX::Types::LoadableClass provides a ClassName type\n" +"constraint with coercion to load the class." +msgstr "" + +#: gnu/packages/perl.scm:3784 +msgid "Moosish types and type builder" +msgstr "" + +#: gnu/packages/perl.scm:3785 +msgid "" +"MooX::Types::MooseLike provides a possibility to build your\n" +"own set of Moose-like types. These custom types can then be used to " +"describe\n" +"fields in Moo-based classes." +msgstr "" + +#: gnu/packages/perl.scm:3804 +msgid "MRO interface compatibility for Perls < 5.9.5" +msgstr "" + +#: gnu/packages/perl.scm:3805 +msgid "" +"The \"mro\" namespace provides several utilities for dealing\n" +"with method resolution order and method caching in general in Perl 5.9.= 5 " +"and\n" +"higher. This module provides those interfaces for earlier versions of\= n" +"Perl (back to 5.6.0)." +msgstr "" + +#: gnu/packages/perl.scm:3832 +msgid "Keep imports out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3833 +msgid "" +"The namespace::autoclean pragma will remove all imported\n" +"symbols at the end of the current package's compile cycle. Functions " +"called\n" +"in the package itself will still be bound by their name, but they won't= " +"show\n" +"up as methods on your class or instances. It is very similar to\n" +"namespace::clean, except it will clean all imported functions, no matte= r if\n" +"you imported them before or after you used the pragma. It will also no= t " +"touch\n" +"anything that looks like a method." +msgstr "" + +#: gnu/packages/perl.scm:3859 +msgid "Keep imports and functions out of your namespace" +msgstr "" + +#: gnu/packages/perl.scm:3860 +msgid "" +"The namespace::clean pragma will remove all previously\n" +"declared or imported symbols at the end of the current package's compil= e\n" +"cycle. Functions called in the package itself will still be bound by t= heir\n" +"name, but they won't show up as methods on your class or instances." +msgstr "" + +#: gnu/packages/perl.scm:3880 +msgid "Numeric comparisons" +msgstr "" + +#: gnu/packages/perl.scm:3881 +msgid "" +"Number::Compare compiles a simple comparison to an anonymous\n" +"subroutine, which you can call with a value to be tested against." +msgstr "" + +#: gnu/packages/perl.scm:3899 +msgid "Generate cryptographic signatures for objects" +msgstr "" + +#: gnu/packages/perl.scm:3900 +msgid "" +"Object::Signature is an abstract base class that you can\n" +"inherit from in order to allow your objects to generate unique " +"cryptographic\n" +"signatures." +msgstr "" + +#: gnu/packages/perl.scm:3922 +msgid "Anonymous packages" +msgstr "" + +#: gnu/packages/perl.scm:3923 +msgid "" +"This module allows for anonymous packages that are\n" +"independent of the main namespace and only available through an object\= n" +"instance, not by name." +msgstr "" + +#: gnu/packages/perl.scm:3951 +msgid "Manage deprecation warnings for your distribution" +msgstr "" + +#: gnu/packages/perl.scm:3952 +msgid "" +"This module allows you to manage a set of deprecations for\n" +"one or more modules." +msgstr "" + +#: gnu/packages/perl.scm:3979 +msgid "Routines for manipulating stashes" +msgstr "" + +#: gnu/packages/perl.scm:3980 +msgid "" +"Manipulating stashes (Perl's symbol tables) is occasionally\n" +"necessary, but incredibly messy, and easy to get wrong. This module hi= des " +"all\n" +"of that behind a simple API." +msgstr "" + +#: gnu/packages/perl.scm:4003 +msgid "Faster implementation of the Package::Stash API" +msgstr "" + +#: gnu/packages/perl.scm:4004 +msgid "" +"This is a backend for Package::Stash, which provides the\n" +"functionality in a way that's less buggy and much faster. It will be u= sed " +"by\n" +"default if it's installed, and should be preferred in all environments = with " +"a\n" +"compiler." +msgstr "" + +#: gnu/packages/perl.scm:4024 +msgid "Play with other peoples' lexical variables" +msgstr "" + +#: gnu/packages/perl.scm:4025 +msgid "" +"PadWalker is a module which allows you to inspect (and even\n" +"change) lexical variables in any subroutine which called you. It will = only\n" +"show those variables which are in scope at the point of the call. " +"PadWalker\n" +"is particularly useful for debugging." +msgstr "" + +#: gnu/packages/perl.scm:4046 +msgid "Simple, compact and correct param-checking functions" +msgstr "" + +#: gnu/packages/perl.scm:4048 +msgid "" +"Params::Util provides a basic set of importable functions that makes\n" +"checking parameters easier." +msgstr "" + +#: gnu/packages/perl.scm:4072 +msgid "Validate method/function parameters" +msgstr "" + +#: gnu/packages/perl.scm:4073 +msgid "" +"The Params::Validate module allows you to validate method or\n" +"function call parameters to an arbitrary level of specificity." +msgstr "" + +#: gnu/packages/perl.scm:4091 +msgid "Create and manipulate PAR distributions" +msgstr "" + +#: gnu/packages/perl.scm:4092 +msgid "" +"PAR::Dist is a toolkit to create and manipulate PAR\n" +"distributions." +msgstr "" + +#: gnu/packages/perl.scm:4111 +msgid "" +"Allows you to both load one or more modules, while setting\n" +"up inheritance from those modules at the same time." +msgstr "" + +#: gnu/packages/perl.scm:4130 +msgid "Path specification manipulation" +msgstr "" + +#: gnu/packages/perl.scm:4131 +msgid "" +"Path::Class is a module for manipulation of file and\n" +"directory specifications in a cross-platform manner." +msgstr "" + +#: gnu/packages/perl.scm:4151 +msgid "Check for comprehensive documentation of a module" +msgstr "" + +#: gnu/packages/perl.scm:4152 +msgid "" +"This module provides a mechanism for determining if the pod\n" +"for a given module is comprehensive." +msgstr "" + +#: gnu/packages/perl.scm:4169 +msgid "Parsing library for text in Pod format" +msgstr "" + +#: gnu/packages/perl.scm:4170 +msgid "" +"Pod::Simple is a Perl library for parsing text in\n" +"the Pod (plain old documentation) markup language that is typically\n" +"used for writing documentation for Perl and for Perl modules." +msgstr "" + +#: gnu/packages/perl.scm:4191 +msgid "GNU C library compatible strftime for loggers and servers" +msgstr "" + +#: gnu/packages/perl.scm:4192 +msgid "" +"POSIX::strftime::Compiler provides GNU C library compatible\n" +"strftime(3). But this module is not affected by the system locale. Th= is\n" +"feature is useful when you want to write loggers, servers, and portable= \n" +"applications." +msgstr "" + +#: gnu/packages/perl.scm:4210 +msgid "Information about the currently running perl" +msgstr "" + +#: gnu/packages/perl.scm:4212 +msgid "" +"Probe::Perl provides methods for obtaining information about the\n" +"currently running perl interpreter. It originally began life as code i= n " +"the\n" +"Module::Build project, but has been externalized here for general use." +msgstr "" + +#: gnu/packages/perl.scm:4234 +msgid "Create read-only scalars, arrays, hashes" +msgstr "" + +#: gnu/packages/perl.scm:4235 +msgid "" +"This module provides a facility for creating non-modifiable\n" +"variables in Perl. This is useful for configuration files, headers, et= c. " +"It\n" +"can also be useful as a development and debugging tool for catching upd= ates " +"to\n" +"variables that should not be changed." +msgstr "" + +#: gnu/packages/perl.scm:4253 +msgid "Provide commonly requested regular expressions" +msgstr "" + +#: gnu/packages/perl.scm:4255 +msgid "" +"This module exports a single hash (`%RE') that stores or generates\n" +"commonly needed regular expressions. Patterns currently provided inclu= de:\n" +"balanced parentheses and brackets, delimited text (with escapes), integ= ers " +"and\n" +"floating-point numbers in any base (up to 36), comments in 44 languages= ,\n" +"offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip= \n" +"codes." +msgstr "" + +#: gnu/packages/perl.scm:4285 +msgid "Roles, as a slice of Moose" +msgstr "" + +#: gnu/packages/perl.scm:4286 +msgid "Role::Tiny is a minimalist role composition tool." +msgstr "" + +#: gnu/packages/perl.scm:4303 +msgid "Call isa, can, does, and DOES safely" +msgstr "" + +#: gnu/packages/perl.scm:4304 +msgid "" +"This module allows you to call isa, can, does, and DOES\n" +"safely on things that may not be objects." +msgstr "" + +#: gnu/packages/perl.scm:4322 +msgid "Lexically-scoped resource management" +msgstr "" + +#: gnu/packages/perl.scm:4323 +msgid "" +"This module provides a convenient way to perform cleanup or\n" +"other forms of resource management at the end of a scope. It is " +"particularly\n" +"useful when dealing with exceptions: the Scope::Guard constructor takes= a\n" +"reference to a subroutine that is guaranteed to be called even if the " +"thread\n" +"of execution is aborted prematurely. This effectively allows lexically= -" +"scoped\n" +"\"promises\" to be made that are automatically honoured by perl's garba= ge\n" +"collector." +msgstr "" + +#: gnu/packages/perl.scm:4346 +msgid "Infinite sets" +msgstr "" + +#: gnu/packages/perl.scm:4347 +msgid "Set::Infinite is a set theory module for infinite sets." +msgstr "" + +#: gnu/packages/perl.scm:4367 +msgid "Unordered collections of Perl Objects" +msgstr "" + +#: gnu/packages/perl.scm:4368 +msgid "" +"Set::Object provides efficient sets, unordered collections\n" +"of Perl objects without duplicates for scalars and references." +msgstr "" + +#: gnu/packages/perl.scm:4386 +msgid "Set operations for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4387 +msgid "" +"The first priority of Set::Scalar is to be a convenient\n" +"interface to sets (as in: unordered collections of Perl scalars). Whil= e " +"not\n" +"designed to be slow or big, neither has it been designed to be fast or\= n" +"compact." +msgstr "" + +#: gnu/packages/perl.scm:4407 +msgid "Spiffy Perl Interface Framework For You" +msgstr "" + +#: gnu/packages/perl.scm:4408 +msgid "" +"Spiffy is a framework and methodology for doing object\n" +"oriented (OO) programming in Perl. Spiffy combines the best parts of\n= " +"Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation " +"class.\n" +"It attempts to fix all the nits and warts of traditional Perl OO, in a = " +"clean,\n" +"straightforward and (perhaps someday) standard way. Spiffy borrows ide= as " +"from\n" +"other OO languages like Python, Ruby, Java and Perl 6." +msgstr "" + +#: gnu/packages/perl.scm:4430 +msgid "Temporary buffer to save bytes" +msgstr "" + +#: gnu/packages/perl.scm:4431 +msgid "" +"Stream::Buffered is a buffer class to store arbitrary length\n" +"of byte strings and then get a seekable filehandle once everything is\n= " +"buffered. It uses PerlIO and/or temporary file to save the buffer " +"depending\n" +"on the length of the size." +msgstr "" + +#: gnu/packages/perl.scm:4451 +msgid "Turn on strict and make all warnings fatal" +msgstr "" + +#: gnu/packages/perl.scm:4452 +msgid "" +"Strictures turns on strict and make all warnings fatal when\n" +"run from within a source-controlled directory." +msgstr "" + +#: gnu/packages/perl.scm:4470 +msgid "Camelcase and de-camelcase" +msgstr "" + +#: gnu/packages/perl.scm:4471 +msgid "" +"This module may be used to convert from under_score text to\n" +"CamelCase and back again." +msgstr "" + +#: gnu/packages/perl.scm:4491 +msgid "Rewrite strings based on a set of known prefixes" +msgstr "" + +#: gnu/packages/perl.scm:4492 +msgid "" +"This module allows you to rewrite strings based on a set of\n" +"known prefixes." +msgstr "" + +#: gnu/packages/perl.scm:4511 +msgid "String printing alternatives to printf" +msgstr "" + +#: gnu/packages/perl.scm:4513 +msgid "" +"This module inserts values into (translated) strings. It provides\n" +"@code{printf} and @code{sprintf} alternatives via both an object-orient= ed " +"and\n" +"a functional interface." +msgstr "" + +#: gnu/packages/perl.scm:4536 +msgid "Sophisticated exporter for custom-built routines" +msgstr "" + +#: gnu/packages/perl.scm:4538 +msgid "" +"Sub::Exporter provides a sophisticated alternative to Exporter.pm for\n= " +"custom-built routines." +msgstr "" + +#: gnu/packages/perl.scm:4557 +msgid "Only use Sub::Exporter if you need it" +msgstr "" + +#: gnu/packages/perl.scm:4558 +msgid "" +"Sub::Exporter is an incredibly powerful module, but with\n" +"that power comes great responsibility, as well as some runtime penaltie= s.\n" +"This module is a \"Sub::Exporter\" wrapper that will let your users jus= t " +"use\n" +"Exporter if all they are doing is picking exports, but use \"Sub::Expor= ter" +"\"\n" +"if your users try to use \"Sub::Exporter\"'s more advanced features, li= ke\n" +"renaming exports, if they try to use them." +msgstr "" + +#: gnu/packages/perl.scm:4580 +msgid "Retrieve names of code references" +msgstr "" + +#: gnu/packages/perl.scm:4581 +msgid "" +"Sub::Identify allows you to retrieve the real name of code\n" +"references." +msgstr "" + +#: gnu/packages/perl.scm:4600 +msgid "Install subroutines into packages easily" +msgstr "" + +#: gnu/packages/perl.scm:4602 +msgid "" +"Sub::Install makes it easy to install subroutines into packages without= \n" +"the unsightly mess of C or typeglobs lying about where just = " +"anyone\n" +"can see them." +msgstr "" + +#: gnu/packages/perl.scm:4623 +msgid "(Re)name a sub" +msgstr "" + +#: gnu/packages/perl.scm:4624 +msgid "" +"Assigns a new name to referenced sub. If package\n" +"specification is omitted in the name, then the current package is used.= " +"The\n" +"return value is the sub." +msgstr "" + +#: gnu/packages/perl.scm:4643 +msgid "Apparently run a function in a higher stack frame" +msgstr "" + +#: gnu/packages/perl.scm:4644 +msgid "" +"Like Tcl's uplevel() function, but not quite so dangerous.\n" +"The idea is just to fool caller(). All the really naughty bits of Tcl'= s\n" +"uplevel() are avoided." +msgstr "" + +#: gnu/packages/perl.scm:4663 +msgid "Perl extension for generating SVG documents" +msgstr "" + +#: gnu/packages/perl.scm:4664 +msgid "" +"SVG is a Perl module which generates a nested data structure\n" +"containing the DOM representation of an SVG (Scalable Vector Graphics) = " +"image.\n" +"Using SVG, you can generate SVG objects, embed other SVG instances into= it,\n" +"access the DOM object, create and access Javascript, and generate SMIL\= n" +"animation content." +msgstr "" + +#: gnu/packages/perl.scm:4683 +msgid "Perl extension for getting CPU information" +msgstr "" + +#: gnu/packages/perl.scm:4685 +msgid "" +"In responce to a post on perlmonks.org, a module for counting the numbe= r\n" +"of CPU's on a system. Support has now also been added for type of CPU = and\n" +"clock speed." +msgstr "" + +#: gnu/packages/perl.scm:4707 +msgid "Get full hostname in Perl" +msgstr "" + +#: gnu/packages/perl.scm:4708 +msgid "" +"Sys::Hostname::Long tries very hard to get the full hostname\n" +"of a system." +msgstr "" + +#: gnu/packages/perl.scm:4726 +msgid "Ensure that a platform has weaken support" +msgstr "" + +#: gnu/packages/perl.scm:4727 +msgid "" +"One recurring problem in modules that use Scalar::Util's\n" +"weaken function is that it is not present in the pure-perl variant. If= \n" +"Scalar::Util is not available at all, it will issue a normal dependency= on " +"the\n" +"module. However, if Scalar::Util is relatively new ( it is >=3D 1.19 )= and " +"the\n" +"module does not have weaken, the install will bail out altogether with = a " +"long\n" +"error encouraging the user to seek support." +msgstr "" + +#: gnu/packages/perl.scm:4752 +msgid "Template processing system for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4753 +msgid "" +"The Template Toolkit is a collection of modules which\n" +"implement an extensible template processing system. It was originally\= n" +"designed and remains primarily useful for generating dynamic web conten= t, " +"but\n" +"it can be used equally well for processing any other kind of text based= \n" +"documents: HTML, XML, POD, PostScript, LaTeX, and so on." +msgstr "" + +#: gnu/packages/perl.scm:4776 +msgid "Profiling for Template Toolkit" +msgstr "" + +#: gnu/packages/perl.scm:4777 +msgid "" +"Template::Timer provides inline profiling of the template\n" +"processing in Perl code." +msgstr "" + +#: gnu/packages/perl.scm:4795 +msgid "Detect encoding of the current terminal" +msgstr "" + +#: gnu/packages/perl.scm:4796 +msgid "" +"Term::Encoding is a simple module to detect the encoding of\n" +"the current terminal expects in various ways." +msgstr "" + +#: gnu/packages/perl.scm:4820 +msgid "Progress meter on a standard terminal" +msgstr "" + +#: gnu/packages/perl.scm:4821 +msgid "" +"Term::ProgressBar provides a simple progress bar on the\n" +"terminal, to let the user know that something is happening, roughly how= " +"much\n" +"stuff has been done, and maybe an estimate at how long remains." +msgstr "" + +#: gnu/packages/perl.scm:4844 +msgid "Progress meter if run interactively" +msgstr "" + +#: gnu/packages/perl.scm:4845 +msgid "" +"Term::ProgressBar is a wonderful module for showing progress\n" +"bars on the terminal. This module acts very much like that module when= it " +"is\n" +"run interactively. However, when it is not run interactively (for exam= ple, " +"as\n" +"a cron job) then it does not show the progress bar." +msgstr "" + +#: gnu/packages/perl.scm:4867 +msgid "Simple progress bars" +msgstr "" + +#: gnu/packages/perl.scm:4868 +msgid "" +"Term::ProgressBar::Simple tells you how much work has been\n" +"done, how much is left to do, and estimate how long it will take." +msgstr "" + +#: gnu/packages/perl.scm:4886 +msgid "Simple terminal control" +msgstr "" + +#: gnu/packages/perl.scm:4887 +msgid "" +"This module, ReadKey, provides ioctl control for terminals\n" +"so the input modes can be changed (thus allowing reads of a single " +"character\n" +"at a time), and also provides non-blocking reads of stdin, as well as " +"several\n" +"other terminal related features, including retrieval/modification of th= e\n" +"screen size, and retrieval/modification of the control characters." +msgstr "" + +#: gnu/packages/perl.scm:4914 +msgid "Data-driven testing framework for Perl" +msgstr "" + +#: gnu/packages/perl.scm:4915 +msgid "" +"Test::Base gives a way to trivially write your own test\n" +"framework base class. It concentrates on offering reusable data driven= \n" +"patterns, so that you can write tests with a minimum of code." +msgstr "" + +#: gnu/packages/perl.scm:4946 +msgid "Check for uncleaned imports" +msgstr "" + +#: gnu/packages/perl.scm:4947 +msgid "" +"This module lets you check your module's namespaces for\n" +"imported functions you might have forgotten to remove with\n" +"namespace::autoclean or namespace::clean and are therefore available to= be\n" +"called as methods, which usually isn't want you want." +msgstr "" + +#: gnu/packages/perl.scm:4967 +msgid "Flexible deep comparison for the Test::Builder framework" +msgstr "" + +#: gnu/packages/perl.scm:4969 +msgid "" +"Test::Deep compares two structures by going through each level, ensurin= g\n" +"that the values match, that arrays and hashes have the same elements an= d " +"that\n" +"references are blessed into the correct class. It also handles circula= r " +"data\n" +"structures without getting caught in an infinite loop." +msgstr "" + +#: gnu/packages/perl.scm:4996 +msgid "Test strings and data structures and show differences" +msgstr "" + +#: gnu/packages/perl.scm:4997 +msgid "" +"This module exports three test functions and four diff-style\n" +"functions." +msgstr "" + +#: gnu/packages/perl.scm:5018 +msgid "Perl extension for maintaining test directories" +msgstr "" + +#: gnu/packages/perl.scm:5019 +msgid "" +"Testing code can involve making sure that files are created\n" +"and deleted as expected. Doing this manually can be error prone, as it= 's " +"easy\n" +"to forget a file, or miss that some unexpected file was added. This mo= dule\n" +"simplifies maintaining test directories by tracking their status as the= y " +"are\n" +"modified or tested with this API, making it simple to test both individ= ual\n" +"files, as well as to verify that there are no missing or unknown files.= " +msgstr "" + +#: gnu/packages/perl.scm:5045 +msgid "Test exception based code" +msgstr "" + +#: gnu/packages/perl.scm:5046 +msgid "" +"This module provides a few convenience methods for testing\n" +"exception based code. It is built with Test::Builder and plays happily= " +"with\n" +"Test::More and friends." +msgstr "" + +#: gnu/packages/perl.scm:5066 +msgid "Simple helpers for testing code with exceptions" +msgstr "" + +#: gnu/packages/perl.scm:5067 +msgid "" +"Test::Fatal is an alternative to the popular\n" +"Test::Exception. It does much less, but should allow greater flexibili= ty " +"in\n" +"testing exception-throwing code with about the same amount of typing." +msgstr "" + +#: gnu/packages/perl.scm:5097 +msgid "Run Perl standard test scripts with statistics" +msgstr "" + +#: gnu/packages/perl.scm:5098 +msgid "" +"Simple test harness which allows tests to be run and results\n" +"automatically aggregated and output to STDOUT." +msgstr "" + +#: gnu/packages/perl.scm:5116 +msgid "Traces memory leaks in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5117 +msgid "" +"Test::LeakTrace provides several functions that trace memory\n" +"leaks. This module scans arenas, the memory allocation system, so it c= an\n" +"detect any leaked SVs in given blocks." +msgstr "" + +#: gnu/packages/perl.scm:5136 +msgid "Tests strings for equality, with more helpful failures" +msgstr "" + +#: gnu/packages/perl.scm:5137 +msgid "" +"This module provides some drop-in replacements for the\n" +"string comparison functions of Test::More, but which are more suitable = when\n" +"you test against long strings." +msgstr "" + +#: gnu/packages/perl.scm:5165 +msgid "Emulate troublesome interfaces in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5166 +msgid "" +"Test::MockObject allows you to create objects that conform\n" +"to particular interfaces with very little code. You don't have to " +"reimplement\n" +"the behavior, just the input and the output." +msgstr "" + +#: gnu/packages/perl.scm:5185 +msgid "Replaces actual time with simulated time" +msgstr "" + +#: gnu/packages/perl.scm:5186 +msgid "" +"This module was created to enable test suites to test code\n" +"at specific points in time. Specifically it overrides localtime, gmtim= e " +"and\n" +"time at compile time and then relies on the user supplying a mock time = via\n" +"set_relative_time, set_absolute_time or set_fixed_time to alter future = " +"calls\n" +"to gmtime,time or localtime." +msgstr "" + +#: gnu/packages/perl.scm:5213 +msgid "Most commonly needed test functions and features" +msgstr "" + +#: gnu/packages/perl.scm:5214 +msgid "" +"This module provides the most commonly used testing\n" +"functions, along with automatically turning on strict and warning and g= ives " +"a\n" +"bit more fine-grained control over test suites." +msgstr "" + +#: gnu/packages/perl.scm:5232 +msgid "Ensure no warnings are produced while testing" +msgstr "" + +#: gnu/packages/perl.scm:5234 +msgid "" +"This modules causes any warnings during testing to be captured and\n" +"stored. It automatically adds an extra test that will run when your sc= ript\n" +"ends to check that there were no warnings. If there were any warnings,= the\n" +"test will fail and output diagnostics of where, when and what the warni= ng " +"was,\n" +"including a stack trace of what was going on when it occurred." +msgstr "" + +#: gnu/packages/perl.scm:5259 +msgid "Utilities to test STDOUT and STDERR messages" +msgstr "" + +#: gnu/packages/perl.scm:5261 +msgid "" +"Test::Output provides a simple interface for testing output sent to\n" +"STDOUT or STDERR. A number of different utilities are included to try = and " +"be\n" +"as flexible as possible to the tester." +msgstr "" + +#: gnu/packages/perl.scm:5283 +msgid "Check for POD errors in files" +msgstr "" + +#: gnu/packages/perl.scm:5284 +msgid "" +"Check POD files for errors or warnings in a test file, using\n" +"Pod::Simple to do the heavy lifting." +msgstr "" + +#: gnu/packages/perl.scm:5304 +msgid "Check for pod coverage" +msgstr "" + +#: gnu/packages/perl.scm:5305 +msgid "" +"This module adds a test to your Perl distribution which\n" +"checks for pod coverage of all appropriate files." +msgstr "" + +#: gnu/packages/perl.scm:5323 +msgid "Checks to see if the module can be loaded" +msgstr "" + +#: gnu/packages/perl.scm:5324 +msgid "" +"Test::Requires checks to see if the module can be loaded.\n" +"If this fails, then rather than failing tests this skips all tests." +msgstr "" + +#: gnu/packages/perl.scm:5343 +msgid "Basic cross-platform tests for scripts" +msgstr "" + +#: gnu/packages/perl.scm:5345 +msgid "" +"The intent of the Test::Script module is to provide a series of basic\n= " +"tests for 80% of the testing you will need to do for scripts in the scr= ipt " +"(or\n" +"bin as is also commonly used) paths of your Perl distribution." +msgstr "" + +#: gnu/packages/perl.scm:5368 +msgid "Fork test in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5369 +msgid "" +"Test::SharedFork is a utility module for Test::Builder. It\n" +"makes fork(2) safe to use in test cases." +msgstr "" + +#: gnu/packages/perl.scm:5385 +msgid "Basic utilities for writing tests" +msgstr "" + +#: gnu/packages/perl.scm:5387 +msgid "Test::Simple contains basic utilities for writing tests." +msgstr "" + +#: gnu/packages/perl.scm:5404 +msgid "Simplify running Test::Builder tests" +msgstr "" + +#: gnu/packages/perl.scm:5406 +msgid "" +"Test::Tester allows testing of test modules based on Test::Builder with= \n" +"a minimum of effort." +msgstr "" + +#: gnu/packages/perl.scm:5432 +msgid "Trap exit codes, exceptions, output, etc." +msgstr "" + +#: gnu/packages/perl.scm:5433 +msgid "" +"This module is primarily (but not exclusively) for use in\n" +"test scripts: A block eval configurable and extensible but by default " +"trapping\n" +"STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return " +"values\n" +"from boxed blocks of test code." +msgstr "" + +#: gnu/packages/perl.scm:5453 +msgid "UTF-8 testing in Perl" +msgstr "" + +#: gnu/packages/perl.scm:5454 +msgid "" +"This module is a collection of tests useful for dealing with\n" +"UTF-8 strings in Perl. This module has two types of tests: The validit= y " +"tests\n" +"check if a string is valid and not corrupt, whereas the characteristics= " +"tests\n" +"will check that string has a given set of characteristics." +msgstr "" + +#: gnu/packages/perl.scm:5476 +msgid "Perl extension to test methods for warnings" +msgstr "" + +#: gnu/packages/perl.scm:5477 +msgid "" +"This module provides a few convenience methods for testing\n" +"warning based code." +msgstr "" + +#: gnu/packages/perl.scm:5495 +msgid "Test for warnings and the lack of them" +msgstr "" + +#: gnu/packages/perl.scm:5496 +msgid "" +"This module is intended to be used as a drop-in replacement\n" +"for Test::NoWarnings. It also adds an extra test, but runs this test " +"before\n" +"done_testing calculates the test count, rather than after. It does thi= s by\n" +"hooking into done_testing as well as via an END block. You can declare= a\n" +"plan, or not, and things will still Just Work." +msgstr "" + +#: gnu/packages/perl.scm:5517 +msgid "Test fallback behaviour in absence of modules" +msgstr "" + +#: gnu/packages/perl.scm:5518 +msgid "" +"This module allows you to deliberately hide modules from a\n" +"program even though they are installed. This is mostly useful for test= ing\n" +"modules that have a fallback when a certain dependency module is not\n" +"installed." +msgstr "" + +#: gnu/packages/perl.scm:5545 +msgid "Dynamic generation of tests" +msgstr "" + +#: gnu/packages/perl.scm:5546 +msgid "" +"The Test::WriteVariants module provides for the dynamic\n" +"generation of tests in nested combinations of contexts." +msgstr "" + +#: gnu/packages/perl.scm:5566 +msgid "Testing module for YAML implementations" +msgstr "" + +#: gnu/packages/perl.scm:5567 +msgid "" +"Test::YAML is a subclass of Test::Base with YAML specific\n" +"support." +msgstr "" + +#: gnu/packages/perl.scm:5586 +msgid "Align text" +msgstr "" + +#: gnu/packages/perl.scm:5587 +msgid "" +"Text::Aligner exports a single function, align(), which is\n" +"used to justify strings to various alignment styles." +msgstr "" + +#: gnu/packages/perl.scm:5605 +msgid "Extract delimited text sequences from strings" +msgstr "" + +#: gnu/packages/perl.scm:5606 +msgid "" +"The Text::Balanced module can be used to extract delimited\n" +"text sequences from strings." +msgstr "" + +#: gnu/packages/perl.scm:5624 +msgid "Manipulate comma-separated values" +msgstr "" + +#: gnu/packages/perl.scm:5625 +msgid "" +"Text::CSV provides facilities for the composition and\n" +"decomposition of comma-separated values. An instance of the Text::CSV = " +"class\n" +"can combine fields into a CSV string and parse a CSV string into fields= ." +msgstr "" + +#: gnu/packages/perl.scm:5646 +msgid "Perform diffs on files and record sets" +msgstr "" + +#: gnu/packages/perl.scm:5647 +msgid "" +"Text::Diff provides a basic set of services akin to the GNU\n" +"diff utility. It is not anywhere near as feature complete as GNU diff,= but " +"it\n" +"is better integrated with Perl and available on all platforms. It is o= ften\n" +"faster than shelling out to a system's diff executable for small files,= and\n" +"generally slower on larger files." +msgstr "" + +#: gnu/packages/perl.scm:5669 +msgid "Match globbing patterns against text" +msgstr "" + +#: gnu/packages/perl.scm:5670 +msgid "" +"Text::Glob implements glob(3) style matching that can be\n" +"used to match against text, rather than fetching names from a filesyste= m. " +"If\n" +"you want to do full file globbing use the File::Glob module instead." +msgstr "" + +#: gnu/packages/perl.scm:5689 +msgid "Simple ASCII tables" +msgstr "" + +#: gnu/packages/perl.scm:5690 +msgid "Text::SimpleTable draws simple ASCII tables." +msgstr "" + +#: gnu/packages/perl.scm:5711 +msgid "Organize Data in Tables" +msgstr "" + +#: gnu/packages/perl.scm:5712 +msgid "Text::Table renders plaintext tables." +msgstr "" + +#: gnu/packages/perl.scm:5729 +msgid "Provide plain ASCII transliterations of Unicode text" +msgstr "" + +#: gnu/packages/perl.scm:5730 +msgid "" +"Text::Unidecode provides a function, unidecode(...) that\n" +"takes Unicode data and tries to represent it in US-ASCII characters (i.= e., " +"the\n" +"universally displayable characters between 0x00 and 0x7F). The " +"representation\n" +"is almost always an attempt at transliteration-- i.e., conveying, in Ro= man\n" +"letters, the pronunciation expressed by the text in some other writing\= n" +"system." +msgstr "" + +#: gnu/packages/perl.scm:5758 +msgid "Role for classes that can be thrown" +msgstr "" + +#: gnu/packages/perl.scm:5759 +msgid "" +"Throwable is a role for classes that are meant to be thrown\n" +"as exceptions to standard program flow." +msgstr "" + +#: gnu/packages/perl.scm:5778 +msgid "Ordered associative arrays for Perl" +msgstr "" + +#: gnu/packages/perl.scm:5779 +msgid "" +"This Perl module implements Perl hashes that preserve the\n" +"order in which the hash elements were added. The order is not affected= " +"when\n" +"values corresponding to existing keys in the IxHash are changed. The " +"elements\n" +"can also be set to any arbitrary supplied order. The familiar perl arr= ay\n" +"operations can also be performed on the IxHash." +msgstr "" + +#: gnu/packages/perl.scm:5802 +msgid "Tie to an existing Perl object" +msgstr "" + +#: gnu/packages/perl.scm:5803 +msgid "" +"This class provides a tie constructor that returns the\n" +"object it was given as it's first argument. This way side effects of " +"calling\n" +"$object->TIEHASH are avoided." +msgstr "" + +#: gnu/packages/perl.scm:5825 +msgid "English expression of durations" +msgstr "" + +#: gnu/packages/perl.scm:5826 +msgid "" +"This module provides functions for expressing durations in\n" +"rounded or exact terms." +msgstr "" + +#: gnu/packages/perl.scm:5848 +msgid "Parse time duration strings" +msgstr "" + +#: gnu/packages/perl.scm:5849 +msgid "" +"Time::Duration::Parse is a module to parse human readable\n" +"duration strings like \"2 minutes\" and \"3 seconds\" to seconds." +msgstr "" + +#: gnu/packages/perl.scm:5867 +msgid "Efficiently compute time from local and GMT time" +msgstr "" + +#: gnu/packages/perl.scm:5868 +msgid "" +"This module provides functions that are the inverse of\n" +"built-in perl functions localtime() and gmtime(). They accept a date a= s a\n" +"six-element array, and return the corresponding time(2) value in second= s " +"since\n" +"the system epoch." +msgstr "" + +#: gnu/packages/perl.scm:5888 +msgid "Date parsing/formatting subroutines" +msgstr "" + +#: gnu/packages/perl.scm:5889 +msgid "" +"This module provides routines for parsing date string into\n" +"time values and formatting dates into ASCII strings." +msgstr "" + +#: gnu/packages/perl.scm:5911 +msgid "Shift and scale time" +msgstr "" + +#: gnu/packages/perl.scm:5912 +msgid "" +"This module allows you to speed up your sleep(), alarm(),\n" +"and time() calls." +msgstr "" + +#: gnu/packages/perl.scm:5935 +msgid "Simple tree object" +msgstr "" + +#: gnu/packages/perl.scm:5936 +msgid "" +"This module in a fully object-oriented implementation of a\n" +"simple n-ary tree." +msgstr "" + +#: gnu/packages/perl.scm:5960 +msgid "Factory object for dispensing Visitor objects" +msgstr "" + +#: gnu/packages/perl.scm:5961 +msgid "" +"This module is a factory for dispensing\n" +"Tree::Simple::Visitor::* objects." +msgstr "" + +#: gnu/packages/perl.scm:5979 +msgid "Minimal try/catch with proper preservation of $@" +msgstr "" + +#: gnu/packages/perl.scm:5980 +msgid "" +"This module provides bare bones try/catch/finally statements\n" +"that are designed to minimize common mistakes with eval blocks, and not= hing\n" +"else." +msgstr "" + +#: gnu/packages/perl.scm:6001 +msgid "Data types for common serialisation formats" +msgstr "" + +#: gnu/packages/perl.scm:6002 +msgid "" +"This module provides some extra datatypes that are used by\n" +"common serialisation formats such as JSON or CBOR." +msgstr "" + +#: gnu/packages/perl.scm:6021 +msgid "Unicode line breaking algorithm" +msgstr "" + +#: gnu/packages/perl.scm:6023 +msgid "" +"@code{Unicode::LineBreak} implements the line breaking algorithm\n" +"described in Unicode Standard Annex #14. The @code{East_Asian_Width} " +"property\n" +"defined by Annex #11 is used to determine breaking positions." +msgstr "" + +#: gnu/packages/perl.scm:6042 +msgid "UNIVERSAL::can() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6043 +msgid "" +"This module attempts to work around people calling\n" +"UNIVERSAL::can() as a function, which it is not." +msgstr "" + +#: gnu/packages/perl.scm:6063 +msgid "UNIVERSAL::isa() reimplementation" +msgstr "" + +#: gnu/packages/perl.scm:6064 +msgid "" +"This module attempts to recover from people calling\n" +"UNIVERSAL::isa as a function." +msgstr "" + +#: gnu/packages/perl.scm:6082 +msgid "Associate user-defined magic to variables from Perl" +msgstr "" + +#: gnu/packages/perl.scm:6083 +msgid "" +"Magic is Perl's way of enhancing variables. This mechanism\n" +"lets the user add extra data to any variable and hook syntactical\n" +"operations (such as access, assignment or destruction) that can be appl= ied " +"to\n" +"it. With this module, you can add your own magic to any variable witho= ut\n" +"having to write a single line of XS." +msgstr "" + +#: gnu/packages/perl.scm:6106 +msgid "YAML for Perl" +msgstr "" + +#: gnu/packages/perl.scm:6107 +msgid "" +"The YAML.pm module implements a YAML Loader and Dumper based\n" +"on the YAML 1.0 specification." +msgstr "" + +#: gnu/packages/perl.scm:6130 +msgid "Read/Write YAML files" +msgstr "" + +#: gnu/packages/perl.scm:6131 +msgid "" +"YAML::Tiny is a perl class for reading and writing\n" +"YAML-style files, written with as little code as possible, reducing loa= d " +"time\n" +"and memory overhead." +msgstr "" + +#: gnu/packages/perl.scm:6158 +msgid "Distribution metadata for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6159 +msgid "" +"Software distributions released to the CPAN include a\n" +"META.json or, for older distributions, META.yml, which describes the\n" +"distribution, its contents, and the requirements for building and " +"installing\n" +"the distribution. The data structure stored in the META.json file is\n= " +"described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to\n= " +"represent this distribution metadata (or distmeta), along with some hel= pful\n" +"methods for interrogating that data." +msgstr "" + +#: gnu/packages/perl.scm:6182 +msgid "Set of version requirements for a CPAN dist" +msgstr "" + +#: gnu/packages/perl.scm:6183 +msgid "" +"A CPAN::Meta::Requirements object models a set of version\n" +"constraints like those specified in the META.yml or META.json files in = CPAN\n" +"distributions, and as defined by CPAN::Meta::Spec. It can be built up = by\n" +"adding more and more constraints, and will reduce them to the simplest\= n" +"representation." +msgstr "" + +#: gnu/packages/perl.scm:6206 +msgid "Read and write a subset of YAML for CPAN Meta files" +msgstr "" + +#: gnu/packages/perl.scm:6207 +msgid "" +"This module implements a subset of the YAML specification\n" +"for use in reading and writing CPAN metadata files like META.yml and\n" +"MYMETA.yml." +msgstr "" + +#: gnu/packages/perl.scm:6228 +msgid "Build and install Perl modules" +msgstr "" + +#: gnu/packages/perl.scm:6229 +msgid "" +"@code{Module::Build} is a system for building, testing, and\n" +"installing Perl modules; it used to be part of Perl itself until versio= n " +"5.22,\n" +"which dropped it. It is meant to be an alternative to\n" +"@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the " +"module\n" +"through subclassing in a much more straightforward way than with\n" +"@code{MakeMaker}. It also does not require a @command{make} on your\n" +"system---most of the @code{Module::Build} code is pure-Perl." +msgstr "" + +#: gnu/packages/perl.scm:6254 +msgid "Parse META.yml and META.json CPAN metadata files" +msgstr "" + +#: gnu/packages/perl.scm:6255 +msgid "" +"Parse::CPAN::Meta is a parser for META.json and META.yml\n" +"files, using JSON::PP and/or CPAN::Meta::YAML." +msgstr "" + +#: gnu/packages/perl.scm:6273 +msgid "Common Scalar and List utility subroutines" +msgstr "" + +#: gnu/packages/perl.scm:6274 +msgid "" +"This package contains a selection of subroutines that people\n" +"have expressed would be nice to have in the perl core, but the usage wo= uld " +"not\n" +"really be high enough to warrant the use of a keyword, and the size so = " +"small\n" +"such that being individual extensions would be wasteful." +msgstr "" + +#: gnu/packages/photo.scm:61 +msgid "Raw image decoder" +msgstr "" + +#: gnu/packages/photo.scm:63 +msgid "" +"LibRaw is a library for reading RAW files obtained from digital photo\n= " +"cameras (CRW/CR2, NEF, RAF, DNG, and others)." +msgstr "" + +#: gnu/packages/photo.scm:80 +msgid "Read and manipulate EXIF data in digital photographs" +msgstr "" + +#: gnu/packages/photo.scm:82 +msgid "" +"The libexif C library allows applications to read, edit, and save EXIF\= n" +"data as produced by digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:107 +msgid "Accessing digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:109 +msgid "" +"This is the library backend for gphoto2. It contains the code for PTP,= \n" +"MTP, and other vendor specific protocols for controlling and transferri= ng " +"data\n" +"from digital cameras." +msgstr "" + +#: gnu/packages/photo.scm:150 +msgid "Command-line tools to access digital cameras" +msgstr "" + +#: gnu/packages/photo.scm:152 +msgid "" +"Gphoto2 is a set of command line utilities for manipulating a large\n" +"number of different digital cameras. Through libgphoto2, it supports P= TP,\n" +"MTP, and much more." +msgstr "" + +#: gnu/packages/photo.scm:186 +msgid "Program and Perl library to manipulate EXIF tags" +msgstr "" + +#: gnu/packages/photo.scm:188 +msgid "" +"This package provides the 'exiftool' command and the 'Image::ExifTool'\= n" +"Perl library to manipulate EXIF tags of digital images." +msgstr "" + +#: gnu/packages/photo.scm:211 +msgid "Library for panoramic images" +msgstr "" + +#: gnu/packages/photo.scm:213 +msgid "" +"The libpano13 package contains the backend library written by the\n" +"Panorama Tools project for building panoramic images from a set of\n" +"overlapping images, as well as some command line tools." +msgstr "" + +#: gnu/packages/photo.scm:255 +msgid "Tools for combining and blending images" +msgstr "" + +#: gnu/packages/photo.scm:257 +msgid "" +"Enblend blends away the seams in a panoramic image mosaic using a\n" +"multi-resolution spline. Enfuse merges different exposures of the same= \n" +"scene to produce an image that looks much like a tone-mapped image." +msgstr "" + +#: gnu/packages/qemu.scm:151 +msgid "Machine emulator and virtualizer" +msgstr "" + +#: gnu/packages/qemu.scm:153 +msgid "" +"QEMU is a generic machine emulator and virtualizer.\n" +"\n" +"When used as a machine emulator, QEMU can run OSes and programs made fo= r " +"one\n" +"machine (e.g. an ARM board) on a different machine---e.g., your own PC.= By\n" +"using dynamic translation, it achieves very good performance.\n" +"\n" +"When used as a virtualizer, QEMU achieves near native performances by\n= " +"executing the guest code directly on the host CPU. QEMU supports\n" +"virtualization when executing under the Xen hypervisor or using\n" +"the KVM kernel module in Linux. When using KVM, QEMU can virtualize x8= 6,\n" +"server and embedded PowerPC, and S390 guests." +msgstr "" + +#: gnu/packages/qemu.scm:175 +msgid "Machine emulator and virtualizer (without GUI)" +msgstr "" + +#: gnu/packages/ratpoison.scm:85 +msgid "Simple mouse-free tiling window manager" +msgstr "" + +#: gnu/packages/ratpoison.scm:87 +msgid "" +"Ratpoison is a simple window manager with no fat library\n" +"dependencies, no fancy graphics, no window decorations, and no\n" +"rodent dependence. It is largely modelled after GNU Screen which\n" +"has done wonders in the virtual terminal market.\n" +"\n" +"The screen can be split into non-overlapping frames. All windows\n" +"are kept maximized inside their frames to take full advantage of\n" +"your precious screen real estate.\n" +"\n" +"All interaction with the window manager is done through keystrokes.\n" +"Ratpoison has a prefix map to minimize the key clobbering that\n" +"cripples Emacs and other quality pieces of software." +msgstr "" + +#: gnu/packages/readline.scm:68 +msgid "Edit command lines while typing, with history support" +msgstr "" + +#: gnu/packages/readline.scm:70 +msgid "" +"The GNU readline library allows users to edit command lines as they\n" +"are typed in. It can maintain a searchable history of previously enter= ed\n" +"commands, letting you easily recall, edit and re-enter past commands. = It\n" +"features both Emacs-like and vi-like keybindings, making its usage\n" +"comfortable for anyone." +msgstr "" + +#: gnu/packages/scanner.scm:70 +msgid "Raster image scanner library and drivers" +msgstr "" + +#: gnu/packages/scanner.scm:71 +msgid "" +"SANE stands for \"Scanner Access Now Easy\" and is an API\n" +"proving access to any raster image scanner hardware (flatbed scanner,\n= " +"hand-held scanner, video- and still-cameras, frame-grabbers, etc.). Th= e\n" +"package contains the library and drivers." +msgstr "" + +#: gnu/packages/scheme.scm:169 +#, fuzzy +msgid "A Scheme implementation with integrated editor and debugger" +msgstr "L=C6=B0=E1=BB=A3c =C4=91=E1=BB=93 th=E1=BB=B1c thi c=C3=B3 d=E1=BB= =A5ng =C3=BD =C4=91=E1=BA=B7c bi=E1=BB=87t cho ph=E1=BA=A7n m=E1=BB=9F r=E1= =BB=99ng" + +#: gnu/packages/scheme.scm:171 +msgid "" +"GNU/MIT Scheme is an implementation of the Scheme programming\n" +"language. It provides an interpreter, a compiler and a debugger. It a= lso\n" +"features an integrated Emacs-like editor and a large runtime library." +msgstr "" + +#: gnu/packages/scheme.scm:254 +msgid "Efficient Scheme compiler" +msgstr "" + +#: gnu/packages/scheme.scm:256 +msgid "" +"Bigloo is a Scheme implementation devoted to one goal: enabling\n" +"Scheme based programming style where C(++) is usually\n" +"required. Bigloo attempts to make Scheme practical by offering\n" +"features usually presented by traditional programming languages\n" +"but not offered by Scheme and functional programming. Bigloo\n" +"compiles Scheme modules. It delivers small and fast stand alone\n" +"binary executables. Bigloo enables full connections between\n" +"Scheme and C programs and between Scheme and Java programs." +msgstr "" + +#: gnu/packages/scheme.scm:300 +msgid "Multi-tier programming language for the Web 2.0" +msgstr "" + +#: gnu/packages/scheme.scm:302 +msgid "" +"HOP is a multi-tier programming language for the Web 2.0 and the\n" +"so-called diffuse Web. It is designed for programming interactive web\= n" +"applications in many fields such as multimedia (web galleries, music " +"players,\n" +"...), ubiquitous and house automation (SmartPhones, personal appliance)= ,\n" +"mashups, office (web agendas, mail clients, ...), etc." +msgstr "" + +#: gnu/packages/scheme.scm:342 +msgid "R5RS Scheme implementation that compiles native code via C" +msgstr "" + +#: gnu/packages/scheme.scm:344 +msgid "" +"CHICKEN is a compiler for the Scheme programming language. CHICKEN\n" +"produces portable and efficient C, supports almost all of the R5RS Sche= me\n" +"language standard, and includes many enhancements and extensions." +msgstr "" + +#: gnu/packages/scheme.scm:363 +#, fuzzy +msgid "Scheme implementation using a bytecode interpreter" +msgstr "L=C6=B0=E1=BB=A3c =C4=91=E1=BB=93 th=E1=BB=B1c thi c=C3=B3 d=E1=BB= =A5ng =C3=BD =C4=91=E1=BA=B7c bi=E1=BB=87t cho ph=E1=BA=A7n m=E1=BB=9F r=E1= =BB=99ng" + +#: gnu/packages/scheme.scm:365 +msgid "" +"Scheme 48 is an implementation of Scheme based on a byte-code\n" +"interpreter and is designed to be used as a testbed for experiments in\= n" +"implementation techniques and as an expository tool." +msgstr "" + +#: gnu/packages/scheme.scm:441 +msgid "Implementation of Scheme and related languages" +msgstr "" + +#: gnu/packages/scheme.scm:443 +msgid "" +"Racket is an implementation of the Scheme programming language (R5RS an= d\n" +"R6RS) and related languages, such as Typed Racket. It features a compi= ler " +"and\n" +"a virtual machine with just-in-time native compilation, as well as a la= rge " +"set\n" +"of libraries." +msgstr "" + +#: gnu/packages/scheme.scm:481 +msgid "Efficient Scheme interpreter and compiler" +msgstr "" + +#: gnu/packages/scheme.scm:483 +msgid "" +"Gambit consists of two main programs: gsi, the Gambit Scheme\n" +"interpreter, and gsc, the Gambit Scheme compiler. The interpreter cont= ains\n" +"the complete execution and debugging environment. The compiler is the\= n" +"interpreter extended with the capability of generating executable files= . " +"The\n" +"compiler can produce standalone executables or compiled modules which c= an " +"be\n" +"loaded at run time. Interpreted code and compiled code can be freely\n= " +"mixed." +msgstr "" + +#: gnu/packages/scheme.scm:520 +msgid "Small embeddable Scheme implementation" +msgstr "" + +#: gnu/packages/scheme.scm:522 +msgid "" +"Chibi-Scheme is a very small library with no external dependencies\n" +"intended for use as an extension and scripting language in C programs. = In\n" +"addition to support for lightweight VM-based threads, each VM itself ru= ns " +"in\n" +"an isolated heap allowing multiple VMs to run simultaneously in differe= nt " +"OS\n" +"threads." +msgstr "" + +#: gnu/packages/scheme.scm:699 +msgid "Scmutils library for MIT Scheme" +msgstr "" + +#: gnu/packages/scheme.scm:700 +msgid "" +"The Scmutils system is an integrated library of\n" +"procedures, embedded in the programming language Scheme, and intended t= o\n" +"support teaching and research in mathematical physics and electrical\n" +"engineering." +msgstr "" + +#: gnu/packages/search.scm:52 +msgid "Search Engine Library" +msgstr "" + +#: gnu/packages/search.scm:54 +msgid "" +"Xapian is a highly adaptable toolkit which allows developers to easily\= n" +"add advanced indexing and search facilities to their own applications. = It\n" +"supports the Probabilistic Information Retrieval model and also support= s a\n" +"rich set of boolean query operators." +msgstr "" + +#: gnu/packages/search.scm:97 +msgid "Tool for Obsessive Compulsive Classifiers" +msgstr "" + +#: gnu/packages/search.scm:99 +msgid "" +"libtocc is the engine of the Tocc project, a tag-based file management\= n" +"system. The goal of Tocc is to provide a better system for classifying= " +"files\n" +"that is more flexible than classic file systems that are based on a tre= e of\n" +"files and directories." +msgstr "" + +#: gnu/packages/search.scm:121 +msgid "Command-line interface to libtocc" +msgstr "" + +#: gnu/packages/search.scm:123 +msgid "" +"Tocc is a tag-based file management system. This package contains the\= n" +"command line tool for interacting with libtocc." +msgstr "" + +#: gnu/packages/search.scm:141 +msgid "Finding text and HTML files that match boolean expressions" +msgstr "" + +#: gnu/packages/search.scm:143 +msgid "" +"GNU Bool is a utility to perform text searches on files using Boolean\n= " +"expressions. For example, a search for \"hello AND world\" would retur= n a\n" +"file containing the phrase \"Hello, world!\". It supports both AND and= OR\n" +"statements, as well as the NEAR statement to search for the occurrence = of\n" +"words in close proximity to each other. It handles context gracefully,= \n" +"accounting for new lines and paragraph changes. It also has robust sup= port\n" +"for parsing HTML files." +msgstr "" + +#: gnu/packages/serveez.scm:51 +msgid "Framework for implementing IP-based servers" +msgstr "" + +#: gnu/packages/serveez.scm:53 +msgid "" +"GNU Serveez is a server framework providing the routines necessary to\n= " +"easily implement IP-based servers in your application. It\n" +"demonstrates aspects of network programming in a portable manner,\n" +"making it convenient for both simplifying the process of adding a\n" +"server to your application or for learning about how network services\n= " +"work. Several example servers are provided already, such as an HTTP\n" +"server and an IRC server." +msgstr "" + +#: gnu/packages/telephony.scm:52 +msgid "(u)Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:53 +msgid "" +"GNU Common C++ is an portable, optimized class framework for\n" +"threaded applications, supporting concurrent synchronization, inter-pro= cess\n" +"communications via sockets, and various methods for data handling, such= as\n" +"serialization and XML parsing. It includes the uCommon C++ library, a = " +"smaller\n" +"reimplementation." +msgstr "" + +#: gnu/packages/telephony.scm:73 +msgid "Common C++ framework for threaded applications" +msgstr "" + +#: gnu/packages/telephony.scm:74 +msgid "" +"GNU uCommon C++ is meant as a very light-weight C++ library\n" +"to facilitate using C++ design patterns even for very deeply embedded\n= " +"applications, such as for systems using uclibc along with posix threadi= ng\n" +"support." +msgstr "" + +#: gnu/packages/telephony.scm:95 +msgid "Implementation of RTP (real-time transport protocol)" +msgstr "" + +#: gnu/packages/telephony.scm:96 +msgid "" +"GNU ccRTP is an implementation of RTP, the real-time transport\n" +"protocol from the IETF. It is suitable both for high capacity servers = and\n" +"personal client applications. It is flexible in its design, allowing i= t to\n" +"function as a framework for the framework, rather than just being a\n" +"packet-manipulation library." +msgstr "" + +#: gnu/packages/telephony.scm:116 +msgid "Library implementing SIP (RFC-3261)" +msgstr "" + +#: gnu/packages/telephony.scm:117 +msgid "" +"GNU oSIP is an implementation of the SIP protocol. It is\n" +"used to provide multimedia and telecom software developers with an " +"interface\n" +"to initiate and control SIP sessions." +msgstr "" + +#: gnu/packages/telephony.scm:137 +msgid "Sip abstraction library" +msgstr "" + +#: gnu/packages/telephony.scm:138 +msgid "" +"EXosip is a library that hides the complexity of using the\n" +"SIP protocol for multimedia session establishment. This protocol is ma= inly " +"to\n" +"be used by VoIP telephony applications (endpoints or conference server)= but\n" +"might be also useful for any application that wish to establish session= s " +"like\n" +"multiplayer games." +msgstr "" + +#: gnu/packages/telephony.scm:181 +msgid "Secure peer-to-peer VoIP server for the SIP protocol" +msgstr "" + +#: gnu/packages/telephony.scm:182 +msgid "" +"GNU SIP Witch is a peer-to-peer Voice-over-IP server that\n" +"uses the SIP protocol. Calls can be made from behind NAT firewalls and= \n" +"without the need for a service provider. Its peer-to-peer design ensur= es " +"that\n" +"there is no central point for media intercept or capture and thus it ca= n be\n" +"used to construct a secure telephone system that operates over the publ= ic\n" +"internet." +msgstr "" + +#: gnu/packages/telephony.scm:207 +msgid "Secure RTP (SRTP) Reference Implementation" +msgstr "" + +#: gnu/packages/telephony.scm:208 +msgid "" +"This package provides an implementation of the Secure\n" +"Real-time Transport Protocol (SRTP), the Universal Security Transform " +"(UST),\n" +"and a supporting cryptographic kernel." +msgstr "" + +#: gnu/packages/texinfo.scm:55 +msgid "The GNU documentation format" +msgstr "" + +#: gnu/packages/texinfo.scm:57 +msgid "" +"Texinfo is the official documentation format of the GNU project. It\n" +"uses a single source file using explicit commands to produce a final " +"document\n" +"in any of several supported output formats, such as HTML or PDF. This\= n" +"package includes both the tools necessary to produce Info documents fro= m\n" +"their source and the command-line Info reader. The emphasis of the " +"language\n" +"is on expressing the content semantically, avoiding physical markup com= mands." +msgstr "" + +#: gnu/packages/texinfo.scm:132 +msgid "Convert Texinfo to HTML" +msgstr "" + +#: gnu/packages/texinfo.scm:134 +msgid "" +"Texi2HTML is a Perl script which converts Texinfo source files to HTML\= n" +"output. It now supports many advanced features, such as " +"internationalization\n" +"and extremely configurable output formats.\n" +"\n" +"Development of Texi2HTML moved to the GNU Texinfo repository in 2010, s= ince " +"it\n" +"was meant to replace the makeinfo implementation in GNU Texinfo. The r= oute\n" +"forward for authors is, in most cases, to alter manuals and build proce= sses " +"as\n" +"necessary to use the new features of the makeinfo/texi2any implementati= on " +"of\n" +"GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal " +"author\n" +"of the GNU Texinfo implementation) do not intend to make further releas= es " +"of\n" +"Texi2HTML." +msgstr "" + +#: gnu/packages/texlive.scm:155 gnu/packages/texlive.scm:218 +#: gnu/packages/texlive.scm:276 +msgid "TeX Live, a package of the TeX typesetting system" +msgstr "" + +#: gnu/packages/texlive.scm:157 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the binaries." +msgstr "" + +#: gnu/packages/texlive.scm:220 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete tree of texmf-dist data." +msgstr "" + +#: gnu/packages/texlive.scm:278 +msgid "" +"TeX Live provides a comprehensive TeX document production system.\n" +"It includes all the major TeX-related programs, macro packages, and fon= ts\n" +"that are free software, including support for many languages around the= \n" +"world.\n" +"\n" +"This package contains the complete TeX Live distribution." +msgstr "" + +#: gnu/packages/texlive.scm:307 +msgid "Wrapper for LaTeX and friends" +msgstr "" + +#: gnu/packages/texlive.scm:309 +msgid "" +"Rubber is a program whose purpose is to handle all tasks related to the= \n" +"compilation of LaTeX documents. This includes compiling the document " +"itself,\n" +"of course, enough times so that all references are defined, and running= " +"BibTeX\n" +"to manage bibliographic references. Automatic execution of dvips to " +"produce\n" +"PostScript documents is also included, as well as usage of pdfLaTeX to = " +"produce\n" +"PDF documents." +msgstr "" + +#: gnu/packages/textutils.scm:61 +msgid "Text encoding converter" +msgstr "" + +#: gnu/packages/textutils.scm:62 +msgid "" +"The Recode library converts files between character sets and\n" +"usages. It recognises or produces over 200 different character sets (o= r " +"about\n" +"300 if combined with an iconv library) and transliterates files between= " +"almost\n" +"any pair. When exact transliteration are not possible, it gets rid of\= n" +"offending characters or falls back on approximations. The recode progr= am is " +"a\n" +"handy front-end to the library." +msgstr "" + +#: gnu/packages/textutils.scm:90 +msgid "Text encoding detection tool" +msgstr "" + +#: gnu/packages/textutils.scm:91 +msgid "" +"Enca (Extremely Naive Charset Analyser) consists of libenca,\n" +"an encoding detection library, and enca, a command line frontend, " +"integrating\n" +"libenca and several charset conversion libraries and tools." +msgstr "" + +#: gnu/packages/textutils.scm:118 +msgid "C library for processing UTF-8 Unicode data" +msgstr "" + +#: gnu/packages/textutils.scm:119 +msgid "" +"utf8proc is a small C library that provides Unicode\n" +"normalization, case-folding, and other operations for data in the UTF-8= \n" +"encoding, supporting Unicode version 7.0." +msgstr "" + +#: gnu/packages/textutils.scm:148 +msgid "Gordon's text utils library" +msgstr "" + +#: gnu/packages/textutils.scm:150 +msgid "" +"libgtextutils is a text utilities library used by the fastx toolkit fro= m\n" +"the Hannon Lab." +msgstr "" + +#: gnu/packages/textutils.scm:171 +msgid "C++ hash functions for strings" +msgstr "" + +#: gnu/packages/textutils.scm:173 +msgid "" +"CityHash provides hash functions for strings. The functions mix the\n" +"input bits thoroughly but are not suitable for cryptography." +msgstr "" + +#: gnu/packages/textutils.scm:190 +msgid "C/C++ configuration file library" +msgstr "" + +#: gnu/packages/textutils.scm:192 +msgid "" +"Libconfig is a simple library for manipulating structured configuration= \n" +"files. This file format is more compact and more readable than XML. A= nd\n" +"unlike XML, it is type-aware, so it is not necessary to do string parsi= ng " +"in\n" +"application code." +msgstr "" + +#: gnu/packages/textutils.scm:212 +msgid "Probabilistic fast file fingerprinting tool" +msgstr "" + +#: gnu/packages/textutils.scm:214 +msgid "" +"pfff is a tool for calculating a compact digital fingerprint of a file\= n" +"by sampling randomly from the file instead of reading it in full.\n" +"Consequently, the computation has a flat performance characteristic,\n" +"correlated with data variation rather than file size. pfff can be as " +"reliable\n" +"as existing hashing techniques, with provably negligible risk of collis= ions." +msgstr "" + +#: gnu/packages/version-control.scm:103 +msgid "" +"Version control system supporting both distributed and centralized work= flows" +msgstr "" + +#: gnu/packages/version-control.scm:105 +msgid "" +"GNU Bazaar is a version control system that allows you to record\n" +"changes to project files over time. It supports both a distributed " +"workflow\n" +"as well as the classic centralized workflow." +msgstr "" + +#: gnu/packages/version-control.scm:264 +msgid "Distributed version control system" +msgstr "" + +#: gnu/packages/version-control.scm:266 +msgid "" +"Git is a free distributed version control system designed to handle\n" +"everything from small to very large projects with speed and efficiency.= " +msgstr "" + +#: gnu/packages/version-control.scm:311 +msgid "Man pages of the Git version control system" +msgstr "" + +#: gnu/packages/version-control.scm:313 +msgid "" +"This package provides the man pages of the Git version control system.\= n" +"This is the documentation displayed when using the '--help' option of a= " +"'git'\n" +"command." +msgstr "" + +#: gnu/packages/version-control.scm:352 +msgid "Library providing Git core methods" +msgstr "" + +#: gnu/packages/version-control.scm:354 +msgid "" +"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing yo= u to\n" +"write native speed custom Git applications in any language with binding= s." +msgstr "" + +#: gnu/packages/version-control.scm:393 +msgid "Command-line flags library for shell scripts" +msgstr "" + +#: gnu/packages/version-control.scm:395 +msgid "" +"Shell Flags (shFlags) is a library written to greatly simplify the\n" +"handling of command-line flags in Bourne based Unix shell scripts (bash= , " +"dash,\n" +"ksh, sh, zsh). Most shell scripts use getopt for flags processing, but= the\n" +"different versions of getopt on various OSes make writing portable shel= l\n" +"scripts difficult. shFlags instead provides an API that doesn't change= " +"across\n" +"shell and OS versions so the script writer can be confident that the sc= ript\n" +"will work." +msgstr "" + +#: gnu/packages/version-control.scm:438 +msgid "Git extensions for Vincent Driessen's branching model" +msgstr "" + +#: gnu/packages/version-control.scm:440 +msgid "" +"Vincent Driessen's branching model is a git branching and release\n" +"management strategy that helps developers keep track of features, hotfi= xes,\n" +"and releases in bigger software projects. The git-flow library of git\= n" +"subcommands helps automate some parts of the flow to make working with = it a\n" +"lot easier." +msgstr "" + +#: gnu/packages/version-control.scm:475 +msgid "Run a command over a sequence of commits" +msgstr "" + +#: gnu/packages/version-control.scm:477 +msgid "" +"git-test-sequence is similar to an automated git bisect except it=E2=80= =99s\n" +"linear. It will test every change between two points in the DAG. It w= ill\n" +"also walk each side of a merge and test those changes individually." +msgstr "" + +#: gnu/packages/version-control.scm:535 +msgid "Git access control layer" +msgstr "" + +#: gnu/packages/version-control.scm:537 +msgid "" +"Gitolite is an access control layer on top of Git, providing fine acces= s\n" +"control to Git repositories." +msgstr "" + +#: gnu/packages/version-control.scm:561 +msgid "Decentralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:563 +msgid "" +"Mercurial is a free, distributed source control management tool.\n" +"It efficiently handles projects of any size\n" +"and offers an easy and intuitive interface." +msgstr "" + +#: gnu/packages/version-control.scm:597 +msgid "HTTP and WebDAV client library" +msgstr "" + +#: gnu/packages/version-control.scm:598 +msgid "" +"Neon is an HTTP and WebDAV client library, with a\n" +"C interface. Features:\n" +"High-level wrappers for common HTTP and WebDAV operations (GET, MOVE,\n= " +"DELETE, etc.);\n" +"low-level interface to the HTTP request/response engine, allowing the u= se\n" +"of arbitrary HTTP methods, headers, etc.;\n" +"authentication support including Basic and Digest support, along with\n= " +"GSSAPI-based Negotiate on Unix, and SSPI-based Negotiate/NTLM on Win32;= \n" +"SSL/TLS support using OpenSSL or GnuTLS, exposing an abstraction layer = for\n" +"verifying server certificates, handling client certificates, and examin= ing\n" +"certificate properties, smartcard-based client certificates are also\n" +"supported via a PKCS#11 wrapper interface;\n" +"abstract interface to parsing XML using libxml2 or expat, and wrappers = for\n" +"simplifying handling XML HTTP response bodies;\n" +"WebDAV metadata support, wrappers for PROPFIND and PROPPATCH to simplif= y\n" +"property manipulation." +msgstr "" + +#: gnu/packages/version-control.scm:677 +msgid "Revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:679 +msgid "" +"Subversion exists to be universally recognized and adopted as a\n" +"centralized version control system characterized by its\n" +"reliability as a safe haven for valuable data; the simplicity of its mo= del " +"and\n" +"usage; and its ability to support the needs of a wide variety of users = and\n" +"projects, from individuals to large-scale enterprise operations." +msgstr "" + +#: gnu/packages/version-control.scm:700 +msgid "Per-file local revision control system" +msgstr "" + +#: gnu/packages/version-control.scm:702 +msgid "" +"RCS is the original Revision Control System. It works on a\n" +"file-by-file basis, in contrast to subsequent version control systems s= uch " +"as\n" +"CVS, Subversion, and Git. This can make it suitable for system\n" +"administration files, for example, which are often inherently local to = one\n" +"machine." +msgstr "" + +#: gnu/packages/version-control.scm:729 +msgid "Historical centralized version control system" +msgstr "" + +#: gnu/packages/version-control.scm:731 +msgid "" +"CVS is a version control system, an important component of Source\n" +"Configuration Management (SCM). Using it, you can record the history o= f\n" +"sources files, and documents. It fills a similar role to the free soft= ware\n" +"RCS, PRCS, and Aegis packages." +msgstr "" + +#: gnu/packages/version-control.scm:764 +msgid "Export an RCS or CVS history as a fast-import stream" +msgstr "" + +#: gnu/packages/version-control.scm:765 +msgid "" +"This program analyzes a collection of RCS files in a CVS\n" +"repository (or outside of one) and, when possible, emits an equivalent = " +"history\n" +"in the form of a fast-import stream. Not all possible histories can be= \n" +"rendered this way; the program tries to emit useful warnings when it ca= n't.\n" +"\n" +"The program can also produce a visualization of the resulting commit " +"directed\n" +"acyclic graph (DAG) in the input format of @uref{http://www.graphviz.or= g,\n" +"Graphviz}. The package also includes @command{cvssync}, a tool for " +"mirroring\n" +"masters from remote CVS hosts." +msgstr "" + +#: gnu/packages/version-control.scm:792 +msgid "Version-control-agnostic ChangeLog diff and commit tool" +msgstr "" + +#: gnu/packages/version-control.scm:794 +msgid "" +"The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n= " +"vc-dwim is a tool that simplifies the task of maintaining a ChangeLog a= nd\n" +"using version control at the same time, for example by printing a remin= der\n" +"when a file change has been described in the ChangeLog but the file has= not\n" +"been added to the VC. vc-chlog scans changed files and generates\n" +"standards-compliant ChangeLog entries based on the changes that it dete= cts." +msgstr "" + +#: gnu/packages/version-control.scm:816 +msgid "Make histograms from the output of 'diff'" +msgstr "" + +#: gnu/packages/version-control.scm:818 +msgid "" +"Diffstat reads the output of 'diff' and displays a histogram of the\n" +"insertions, deletions, and modifications per-file. It is useful for " +"reviewing\n" +"large, complex patch files." +msgstr "" + +#: gnu/packages/version-control.scm:859 +msgid "File-based version control like SCCS" +msgstr "" + +#: gnu/packages/version-control.scm:860 +msgid "" +"GNU CSSC provides a replacement for the legacy Unix source\n" +"code control system SCCS. This allows old code still under that system= to " +"be\n" +"accessed and migrated on modern systems." +msgstr "" + +#: gnu/packages/version-control.scm:941 +msgid "Project change supervisor" +msgstr "" + +#: gnu/packages/version-control.scm:942 +msgid "" +"Aegis is a project change supervisor, and performs some of\n" +"the Software Configuration Management needed in a CASE environment. Ae= gis\n" +"provides a framework within which a team of developers may work on many= \n" +"changes to a program independently, and Aegis coordinates integrating t= hese\n" +"changes back into the master source of the program, with as little " +"disruption\n" +"as possible. Resolution of contention for source files, a major headac= he " +"for\n" +"any project with more than one developer, is one of Aegis's major funct= ions." +msgstr "" + +#: gnu/packages/version-control.scm:970 +msgid "Ncurses-based text user interface for Git" +msgstr "" + +#: gnu/packages/version-control.scm:972 +msgid "" +"Tig is an ncurses text user interface for Git, primarily intended as\n" +"a history browser. It can also stage hunks for commit, or colorize the= \n" +"output of the 'git' command." +msgstr "" + +#: gnu/packages/version-control.scm:998 +msgid "Print the modification time of the latest file" +msgstr "" + +#: gnu/packages/version-control.scm:1000 +msgid "" +"Recursively find the newest file in a file tree and print its\n" +"modification time." +msgstr "" + +#: gnu/packages/version-control.scm:1025 +msgid "Multiple repository management tool" +msgstr "" + +#: gnu/packages/version-control.scm:1027 +msgid "" +"Myrepos provides the @code{mr} command, which maps an operation (e.g.,\= n" +"fetching updates) over a collection of version control repositories. I= t\n" +"supports a large number of version control systems: Git, Subversion,\n" +"Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." +msgstr "" + +#: gnu/packages/version-control.scm:1057 +msgid "Use hubic as a git-annex remote" +msgstr "" + +#: gnu/packages/version-control.scm:1059 +msgid "" +"This package allows you to use your hubic account as a \"special\n" +"repository\" with git-annex." +msgstr "" + +#: gnu/packages/webkit.scm:123 +msgid "Web content engine for GTK+" +msgstr "" + +#: gnu/packages/webkit.scm:125 +msgid "" +"WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" +"suitable for projects requiring any kind of web integration, from hybri= d\n" +"HTML/CSS applications to full-fledged web browsers." +msgstr "" + +#: gnu/packages/web.scm:89 +msgid "Featureful HTTP server" +msgstr "" + +#: gnu/packages/web.scm:91 +msgid "" +"The Apache HTTP Server Project is a collaborative software development\= n" +"effort aimed at creating a robust, commercial-grade, featureful, and\n" +"freely-available source code implementation of an HTTP (Web) server. T= he\n" +"project is jointly managed by a group of volunteers located around the = " +"world,\n" +"using the Internet and the Web to communicate, plan, and develop the se= rver\n" +"and its related documentation." +msgstr "" + +#: gnu/packages/web.scm:169 +msgid "HTTP and reverse proxy server" +msgstr "" + +#: gnu/packages/web.scm:171 +msgid "" +"Nginx (\"engine X\") is a high-performance web and reverse proxy server= \n" +"created by Igor Sysoev. It can be used both as a standalone web server= \n" +"and as a proxy to reduce the load on back-end HTTP or mail servers." +msgstr "" + +#: gnu/packages/web.scm:207 +msgid "PSGI/Plack web server" +msgstr "" + +#: gnu/packages/web.scm:208 +msgid "" +"Starman is a PSGI perl web server that has unique features\n" +"such as high performance, preforking, signal support, superdaemon " +"awareness,\n" +"and UNIX socket support." +msgstr "" + +#: gnu/packages/web.scm:227 +#, fuzzy +msgid "JSON C library" +msgstr "Th=C6=B0 vi=E1=BB=87n C t=E1=BB=AB GNU" + +#: gnu/packages/web.scm:229 +msgid "" +"Jansson is a C library for encoding, decoding and manipulating JSON\n" +"data." +msgstr "" + +#: gnu/packages/web.scm:261 +msgid "JSON implementation in C" +msgstr "" + +#: gnu/packages/web.scm:263 +msgid "" +"JSON-C implements a reference counting object model that allows you to\= n" +"easily construct JSON objects in C, output them as JSON formatted strin= gs " +"and\n" +"parse JSON formatted strings back into the C representation of JSON obj= ects." +msgstr "" + +#: gnu/packages/web.scm:289 +msgid "JSON parser/generator for C++ with both SAX/DOM style API" +msgstr "" + +#: gnu/packages/web.scm:291 +msgid "" +"RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" +"style API." +msgstr "" + +#: gnu/packages/web.scm:309 +msgid "C library for parsing JSON" +msgstr "" + +#: gnu/packages/web.scm:311 +msgid "" +"Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSO= N\n" +"parser written in ANSI C and a small validating JSON generator." +msgstr "" + +#: gnu/packages/web.scm:341 +msgid "WebSockets library written in C" +msgstr "" + +#: gnu/packages/web.scm:343 +msgid "" +"Libwebsockets is a library that allows C programs to establish client\n= " +"and server WebSockets connections---a protocol layered above HTTP that = " +"allows\n" +"for efficient socket-like bidirectional reliable communication channels= ." +msgstr "" + +#: gnu/packages/web.scm:378 +msgid "C library for the Publix Suffix List" +msgstr "" + +#: gnu/packages/web.scm:380 +msgid "" +"A \"public suffix\" is a domain name under which Internet users can\n" +"directly register own names.\n" +"\n" +"Browsers and other web clients can use it to avoid privacy-leaking\n" +"\"supercookies\", avoid privacy-leaking \"super domain\" certificates, = " +"domain\n" +"highlighting parts of the domain in a user interface, and sorting domai= n " +"lists\n" +"by site.\n" +"\n" +"Libpsl has built-in PSL data for fast access, allows to load PSL data f= rom\n" +"files, checks if a given domain is a public suffix, provides immediate = " +"cookie\n" +"domain verification, finds the longest public part of a given domain, f= inds\n" +"the shortest private part of a given domain, works with international\n= " +"domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA= 2008\n" +"UTS#46." +msgstr "" + +#: gnu/packages/web.scm:426 +msgid "HTML validator and tidier" +msgstr "" + +#: gnu/packages/web.scm:427 +msgid "" +"HTML Tidy is a command-line tool and C library that can be\n" +"used to validate and fix HTML data." +msgstr "" + +#: gnu/packages/web.scm:468 +msgid "Light-weight HTTP/HTTPS proxy daemon" +msgstr "" + +#: gnu/packages/web.scm:469 +msgid "" +"Tinyproxy is a light-weight HTTP/HTTPS proxy\n" +"daemon. Designed from the ground up to be fast and yet small, it is an= " +"ideal\n" +"solution for use cases such as embedded deployments where a full featur= ed " +"HTTP\n" +"proxy is required, but the system resources for a larger proxy are\n" +"unavailable." +msgstr "" + +#: gnu/packages/web.scm:502 +msgid "Small caching web proxy" +msgstr "" + +#: gnu/packages/web.scm:504 +msgid "" +"Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n= " +"server). It was primarily designed to be used by one person or a small= " +"group\n" +"of people." +msgstr "" + +#: gnu/packages/web.scm:524 +msgid "YAML 1.1 parser and emitter written in C" +msgstr "" + +#: gnu/packages/web.scm:526 +msgid "LibYAML is a YAML 1.1 parser and emitter written in C." +msgstr "" + +#: gnu/packages/web.scm:542 gnu/packages/web.scm:575 gnu/packages/web.sc= m:597 +msgid "Media stream URL parser" +msgstr "" + +#: gnu/packages/web.scm:543 +msgid "" +"This package contains support scripts called by libquvi to\n" +"parse media stream properties." +msgstr "" + +#: gnu/packages/web.scm:576 +msgid "" +"libquvi is a library with a C API for parsing media stream\n" +"URLs and extracting their actual media files." +msgstr "" + +#: gnu/packages/web.scm:598 +msgid "" +"quvi is a command-line-tool suite to extract media files\n" +"from streaming URLs. It is a command-line wrapper for the libquvi libr= ary." +msgstr "" + +#: gnu/packages/web.scm:661 +msgid "High-performance asynchronous HTTP client library" +msgstr "" + +#: gnu/packages/web.scm:663 +msgid "" +"serf is a C-based HTTP client library built upon the Apache Portable\n" +"Runtime (APR) library. It multiplexes connections, running the read/wr= ite\n" +"communication asynchronously. Memory copies and transformations are ke= pt to " +"a\n" +"minimum to provide high performance operation." +msgstr "" + +#: gnu/packages/web.scm:718 +msgid "CSS pre-processor" +msgstr "" + +#: gnu/packages/web.scm:719 +msgid "" +"SassC is a compiler written in C for the CSS pre-processor\n" +"language known as SASS." +msgstr "" + +#: gnu/packages/web.scm:748 +msgid "Compile a log format string to perl-code" +msgstr "" + +#: gnu/packages/web.scm:749 +msgid "" +"This module provides methods to compile a log format string\n" +"to perl-code, for faster generation of access_log lines." +msgstr "" + +#: gnu/packages/web.scm:770 +msgid "SASL authentication framework" +msgstr "" + +#: gnu/packages/web.scm:771 +msgid "Authen::SASL provides an SASL authentication framework." +msgstr "" + +#: gnu/packages/web.scm:795 +msgid "Sensible default Catalyst action" +msgstr "" + +#: gnu/packages/web.scm:796 +msgid "" +"This Catalyst action implements a sensible default end\n" +"action, which will forward to the first available view." +msgstr "" + +#: gnu/packages/web.scm:824 +msgid "Automated REST Method Dispatching" +msgstr "" + +#: gnu/packages/web.scm:825 +msgid "" +"This Action handles doing automatic method dispatching for\n" +"REST requests. It takes a normal Catalyst action, and changes the disp= atch " +"to\n" +"append an underscore and method name. First it will try dispatching to= an\n" +"action with the generated name, and failing that it will try to dispatc= h to " +"a\n" +"regular method." +msgstr "" + +#: gnu/packages/web.scm:861 +msgid "Storage class for Catalyst authentication using DBIx::Class" +msgstr "" + +#: gnu/packages/web.scm:862 +msgid "" +"The Catalyst::Authentication::Store::DBIx::Class class\n" +"provides access to authentication information stored in a database via\= n" +"DBIx::Class." +msgstr "" + +#: gnu/packages/web.scm:886 +msgid "Create only one instance of Moose component per context" +msgstr "" + +#: gnu/packages/web.scm:887 +msgid "" +"Catalyst::Component::InstancePerContext returns a new\n" +"instance of a component on each request." +msgstr "" + +#: gnu/packages/web.scm:924 +msgid "Catalyst Development Tools" +msgstr "" + +#: gnu/packages/web.scm:925 +msgid "" +"The Catalyst-Devel distribution includes a variety of\n" +"modules useful for the development of Catalyst applications, but not " +"required\n" +"to run them. Catalyst-Devel includes the Catalyst::Helper system, whic= h\n" +"autogenerates scripts and tests; Module::Install::Catalyst, a Module::" +"Install\n" +"extension for Catalyst; and requirements for a variety of development-" +"related\n" +"modules." +msgstr "" + +#: gnu/packages/web.scm:954 +msgid "Regex DispatchType for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:955 +msgid "" +"Dispatch type managing path-matching behaviour using\n" +"regexes. Regex dispatch types have been deprecated and removed from " +"Catalyst\n" +"core. It is recommend that you use Chained methods or other techniques= \n" +"instead. As part of the refactoring, the dispatch priority of Regex vs= " +"Regexp\n" +"vs LocalRegex vs LocalRegexp may have changed. Priority is now influen= ced " +"by\n" +"when the dispatch type is first seen in your application." +msgstr "" + +#: gnu/packages/web.scm:1003 +msgid "DBIx::Class::Schema Model Class" +msgstr "" + +#: gnu/packages/web.scm:1004 +msgid "" +"This is a Catalyst Model for DBIx::Class::Schema-based\n" +"Models." +msgstr "" + +#: gnu/packages/web.scm:1028 +msgid "Request logging from within Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1029 +msgid "" +"This Catalyst plugin enables you to create \"access logs\"\n" +"from within a Catalyst application instead of requiring a webserver to = do " +"it\n" +"for you. It will work even with Catalyst debug logging turned off." +msgstr "" + +#: gnu/packages/web.scm:1061 +msgid "Infrastructure plugin for the Catalyst authentication framework" +msgstr "" + +#: gnu/packages/web.scm:1062 +msgid "" +"The authentication plugin provides generic user support for\n" +"Catalyst apps. It is the basis for both authentication (checking the u= ser " +"is\n" +"who they claim to be), and authorization (allowing the user to do what = the\n" +"system authorises them to do)." +msgstr "" + +#: gnu/packages/web.scm:1092 +msgid "Role-based authorization for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1093 +msgid "" +"Catalyst::Plugin::Authorization::Roles provides role-based\n" +"authorization for Catalyst based on Catalyst::Plugin::Authentication." +msgstr "" + +#: gnu/packages/web.scm:1116 +msgid "Captchas for Catalyst" +msgstr "" + +#: gnu/packages/web.scm:1117 +msgid "" +"This plugin creates and validates Captcha images for\n" +"Catalyst." +msgstr "" + +#: gnu/packages/web.scm:1143 +msgid "Load config files of various types" +msgstr "" + +#: gnu/packages/web.scm:1144 +msgid "" +"This module will attempt to load find and load configuration\n" +"files of various types. Currently it supports YAML, JSON, XML, INI and= " +"Perl\n" +"formats." +msgstr "" + +#: gnu/packages/web.scm:1174 +msgid "Catalyst generic session plugin" +msgstr "" + +#: gnu/packages/web.scm:1175 +msgid "" +"This plugin links the two pieces required for session\n" +"management in web applications together: the state, and the store." +msgstr "" + +#: gnu/packages/web.scm:1201 +msgid "Maintain session IDs using cookies" +msgstr "" + +#: gnu/packages/web.scm:1202 +msgid "" +"In order for Catalyst::Plugin::Session to work, the session\n" +"ID needs to be stored on the client, and the session data needs to be " +"stored\n" +"on the server. This plugin stores the session ID on the client using t= he\n" +"cookie mechanism." +msgstr "" + +#: gnu/packages/web.scm:1232 +msgid "FastMmap session storage backend" +msgstr "" + +#: gnu/packages/web.scm:1233 +msgid "" +"Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" +"storage plugin for Catalyst that uses an mmap'ed file to act as a share= d\n" +"memory interprocess cache. It is based on Cache::FastMmap." +msgstr "" + +#: gnu/packages/web.scm:1256 +msgid "Stack trace on the Catalyst debug screen" +msgstr "" + +#: gnu/packages/web.scm:1257 +msgid "" +"This plugin enhances the standard Catalyst debug screen by\n" +"including a stack trace of your application up to the point where the e= rror\n" +"occurred. Each stack frame is displayed along with the package name, l= ine\n" +"number, file name, and code context surrounding the line number." +msgstr "" + +#: gnu/packages/web.scm:1283 +msgid "Simple serving of static pages" +msgstr "" + +#: gnu/packages/web.scm:1284 +msgid "" +"The Static::Simple plugin is designed to make serving static\n" +"content in your application during development quick and easy, without\= n" +"requiring a single line of code from you. This plugin detects static f= iles " +"by\n" +"looking at the file extension in the URL (such as .css or .png or .js).= " +"The\n" +"plugin uses the lightweight MIME::Types module to map file extensions t= o\n" +"IANA-registered MIME types, and will serve your static files with the " +"correct\n" +"MIME type directly to the browser, without being processed through Cata= lyst." +msgstr "" + +#: gnu/packages/web.scm:1351 +msgid "The Catalyst Framework Runtime" +msgstr "" + +#: gnu/packages/web.scm:1352 +msgid "" +"Catalyst is a modern framework for making web applications.\n" +"It is designed to make it easy to manage the various tasks you need to = do " +"to\n" +"run an application on the web, either by doing them itself, or by letti= ng " +"you\n" +"\"plug in\" existing Perl modules that do what you need." +msgstr "" + +#: gnu/packages/web.scm:1382 +msgid "Replace request base with value passed by HTTP proxy" +msgstr "" + +#: gnu/packages/web.scm:1383 +msgid "" +"This module is a Moose::Role which allows you more\n" +"flexibility in your application's deployment configurations when deploy= ed\n" +"behind a proxy. Using this module, the request base ($c->req->base) is= \n" +"replaced with the contents of the X-Request-Base header." +msgstr "" + +#: gnu/packages/web.scm:1409 +msgid "Download data in many formats" +msgstr "" + +#: gnu/packages/web.scm:1410 +msgid "" +"The purpose of this module is to provide a method for\n" +"downloading data into many supportable formats. For example, downloadi= ng a\n" +"table based report in a variety of formats (CSV, HTML, etc.)." +msgstr "" + +#: gnu/packages/web.scm:1435 +msgid "Catalyst JSON view" +msgstr "" + +#: gnu/packages/web.scm:1436 +msgid "" +"Catalyst::View::JSON is a Catalyst View handler that returns\n" +"stash data in JSON format." +msgstr "" + +#: gnu/packages/web.scm:1461 +msgid "Template View Class" +msgstr "" + +#: gnu/packages/web.scm:1462 +msgid "" +"This module is a Catalyst view class for the Template\n" +"Toolkit." +msgstr "" + +#: gnu/packages/web.scm:1491 +msgid "Trait Loading and Resolution for Catalyst Components" +msgstr "" + +#: gnu/packages/web.scm:1492 +msgid "" +"Adds a \"COMPONENT\" in Catalyst::Component method to your\n" +"Catalyst component base class that reads the optional \"traits\" parame= ter\n" +"from app and component config and instantiates the component subclass w= ith\n" +"those traits using \"new_with_traits\" in MooseX::Traits from\n" +"MooseX::Traits::Pluggable." +msgstr "" + +#: gnu/packages/web.scm:1517 +msgid "Apply roles to Catalyst classes" +msgstr "" + +#: gnu/packages/web.scm:1518 +msgid "" +"CatalystX::RoleApplicator applies roles to Catalyst\n" +"application classes." +msgstr "" + +#: gnu/packages/web.scm:1544 +msgid "Catalyst development server with Starman" +msgstr "" + +#: gnu/packages/web.scm:1545 +msgid "" +"This module provides a Catalyst extension to replace the\n" +"development server with Starman." +msgstr "" + +#: gnu/packages/web.scm:1569 +msgid "Handle Common Gateway Interface requests and responses" +msgstr "" + +#: gnu/packages/web.scm:1570 +msgid "" +"CGI.pm is a stable, complete and mature solution for\n" +"processing and preparing HTTP requests and responses. Major features " +"include\n" +"processing form submissions, file uploads, reading and writing cookies,= " +"query\n" +"string generation and manipulation, and processing and preparing HTTP\n= " +"headers." +msgstr "" + +#: gnu/packages/web.scm:1594 +msgid "CGI interface that is CGI.pm compliant" +msgstr "" + +#: gnu/packages/web.scm:1595 +msgid "" +"CGI::Simple provides a relatively lightweight drop in\n" +"replacement for CGI.pm. It shares an identical OO interface to CGI.pm = for\n" +"parameter parsing, file upload, cookie handling and header generation." +msgstr "" + +#: gnu/packages/web.scm:1616 +msgid "Build structures from CGI data" +msgstr "" + +#: gnu/packages/web.scm:1617 +msgid "" +"This is a module for building structured data from CGI\n" +"inputs, in a manner reminiscent of how PHP does." +msgstr "" + +#: gnu/packages/web.scm:1640 +msgid "Date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:1641 +msgid "" +"This module provides functions that deal with the date\n" +"formats used by the HTTP protocol." +msgstr "" + +#: gnu/packages/web.scm:1661 +msgid "MD5 sums for files and urls" +msgstr "" + +#: gnu/packages/web.scm:1662 +msgid "" +"Digest::MD5::File is a Perl extension for getting MD5 sums\n" +"for files and urls." +msgstr "" + +#: gnu/packages/web.scm:1680 +msgid "Perl locale encoding determination" +msgstr "" + +#: gnu/packages/web.scm:1682 +msgid "" +"The POSIX locale system is used to specify both the language\n" +"conventions requested by the user and the preferred character set to\n" +"consume and output. The Encode::Locale module looks up the charset and= \n" +"encoding (called a CODESET in the locale jargon) and arranges for the\n= " +"Encode module to know this encoding under the name \"locale\". It mean= s\n" +"bytes obtained from the environment can be converted to Unicode strings= \n" +"by calling Encode::encode(locale =3D> $bytes) and converted back again\= n" +"with Encode::decode(locale =3D> $string)." +msgstr "" + +#: gnu/packages/web.scm:1708 +msgid "Perl directory listing parser" +msgstr "" + +#: gnu/packages/web.scm:1710 +msgid "" +"The File::Listing module exports a single function called parse_dir(),\= n" +"which can be used to parse directory listings." +msgstr "" + +#: gnu/packages/web.scm:1742 +msgid "Stock and mutual fund quotes" +msgstr "" + +#: gnu/packages/web.scm:1744 +msgid "" +"Finance::Quote gets stock quotes from various internet sources, includi= ng\n" +"Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange= ." +msgstr "" + +#: gnu/packages/web.scm:1766 +msgid "Perl extension providing access to the GSSAPIv2 library" +msgstr "" + +#: gnu/packages/web.scm:1767 +msgid "" +"This is a Perl extension for using GSSAPI C bindings as\n" +"described in RFC 2744." +msgstr "" + +#: gnu/packages/web.scm:1787 +msgid "Manipulate tables of HTML::Element" +msgstr "" + +#: gnu/packages/web.scm:1789 +msgid "" +"HTML::Element::Extended is a Perl extension for manipulating a table\n" +"composed of HTML::Element style components." +msgstr "" + +#: gnu/packages/web.scm:1813 +msgid "Perl class representing an HTML form element" +msgstr "" + +#: gnu/packages/web.scm:1814 +msgid "" +"Objects of the HTML::Form class represents a single HTML\n" +"
...
instance." +msgstr "" + +#: gnu/packages/web.scm:1836 +msgid "Check for HTML errors in a string or file" +msgstr "" + +#: gnu/packages/web.scm:1837 +msgid "" +"HTML::Lint is a pure-Perl HTML parser and checker for\n" +"syntactic legitmacy." +msgstr "" + +#: gnu/packages/web.scm:1858 +msgid "Extract contents from HTML tables" +msgstr "" + +#: gnu/packages/web.scm:1860 +msgid "" +"HTML::TableExtract is a Perl module for extracting the content containe= d\n" +"in tables within an HTML document, either as text or encoded element tr= ees." +msgstr "" + +#: gnu/packages/web.scm:1885 +msgid "Work with HTML in a DOM-like tree structure" +msgstr "" + +#: gnu/packages/web.scm:1886 +msgid "" +"This distribution contains a suite of modules for\n" +"representing, creating, and extracting information from HTML syntax tre= es." +msgstr "" + +#: gnu/packages/web.scm:1906 +msgid "Perl HTML parser class" +msgstr "" + +#: gnu/packages/web.scm:1908 +msgid "" +"Objects of the HTML::Parser class will recognize markup and separate\n" +"it from plain text (alias data content) in HTML documents. As differen= t\n" +"kinds of markup and text are recognized, the corresponding event handle= rs\n" +"are invoked." +msgstr "" + +#: gnu/packages/web.scm:1928 +msgid "Perl data tables useful in parsing HTML" +msgstr "" + +#: gnu/packages/web.scm:1930 +msgid "" +"The HTML::Tagset module contains several data tables useful in various\= n" +"kinds of HTML parsing operations." +msgstr "" + +#: gnu/packages/web.scm:1949 +msgid "HTML-like templates" +msgstr "" + +#: gnu/packages/web.scm:1951 +msgid "" +"This module attempts to make using HTML templates simple and natural.\n= " +"It extends standard HTML with a few new HTML-esque tags: @code{},\n" +"@code{}, @code{}, @code{},\n" +"@code{} and @code{}. The file written with HTM= L " +"and\n" +"these new tags is called a template. Using this module you fill in the= " +"values\n" +"for the variables, loops and branches declared in the template. This " +"allows\n" +"you to separate design from the data." +msgstr "" + +#: gnu/packages/web.scm:1979 +msgid "HTTP Body Parser" +msgstr "" + +#: gnu/packages/web.scm:1980 +msgid "" +"HTTP::Body parses chunks of HTTP POST data and supports\n" +"application/octet-stream, application/json, application/x-www-form-" +"urlencoded,\n" +"and multipart/form-data." +msgstr "" + +#: gnu/packages/web.scm:2006 +msgid "Minimalist HTTP user agent cookie jar" +msgstr "" + +#: gnu/packages/web.scm:2007 +msgid "" +"This module implements a minimalist HTTP user agent cookie\n" +"jar in conformance with RFC 6265 ." +msgstr "" + +#: gnu/packages/web.scm:2027 +msgid "Perl HTTP cookie jars" +msgstr "" + +#: gnu/packages/web.scm:2029 +msgid "" +"The HTTP::Cookies class is for objects that represent a cookie jar,\n" +"that is, a database of all the HTTP cookies that a given LWP::UserAgent= \n" +"object knows about." +msgstr "" + +#: gnu/packages/web.scm:2051 +msgid "Perl simple http server class" +msgstr "" + +#: gnu/packages/web.scm:2053 +msgid "" +"Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" +"on a socket for incoming requests. The HTTP::Daemon is a subclass of\n= " +"IO::Socket::INET, so you can perform socket operations directly on it t= oo." +msgstr "" + +#: gnu/packages/web.scm:2072 +msgid "Perl date conversion routines" +msgstr "" + +#: gnu/packages/web.scm:2074 +msgid "" +"The HTTP::Date module provides functions that deal with date formats\n" +"used by the HTTP protocol (and then some more)." +msgstr "" + +#: gnu/packages/web.scm:2097 +msgid "Perl HTTP style message" +msgstr "" + +#: gnu/packages/web.scm:2099 +msgid "An HTTP::Message object contains some headers and a content body.= " +msgstr "" + +#: gnu/packages/web.scm:2118 +msgid "Perl http content negotiation" +msgstr "" + +#: gnu/packages/web.scm:2120 +msgid "" +"The HTTP::Negotiate module provides a complete implementation of the\n" +"HTTP content negotiation algorithm specified in\n" +"draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows = for\n" +"the selection of a preferred content representation based upon attribut= es\n" +"of the negotiable variants and the value of the various Accept* header\= n" +"fields in the request." +msgstr "" + +#: gnu/packages/web.scm:2145 +msgid "Parse HTTP/1.1 requests" +msgstr "" + +#: gnu/packages/web.scm:2146 +msgid "" +"This is an HTTP request parser. It takes chunks of text as\n" +"received and returns a 'hint' as to what is required, or returns the\n" +"HTTP::Request when a complete request has been read. HTTP/1.1 chunking= is\n" +"supported." +msgstr "" + +#: gnu/packages/web.scm:2166 +msgid "Fast HTTP request parser" +msgstr "" + +#: gnu/packages/web.scm:2167 +msgid "" +"HTTP::Parser::XS is a fast, primitive HTTP request/response\n" +"parser." +msgstr "" + +#: gnu/packages/web.scm:2188 +msgid "Set up a CGI environment from an HTTP::Request" +msgstr "" + +#: gnu/packages/web.scm:2189 +msgid "" +"This module provides a convenient way to set up a CGI\n" +"environment from an HTTP::Request." +msgstr "" + +#: gnu/packages/web.scm:2213 +msgid "Lightweight HTTP server" +msgstr "" + +#: gnu/packages/web.scm:2214 +msgid "" +"HTTP::Server::Simple is a simple standalone HTTP daemon with\n" +"no non-core module dependencies. It can be used for building a standal= one\n" +"http-based UI to your existing tools." +msgstr "" + +#: gnu/packages/web.scm:2238 +msgid "HTTP/1.1 client" +msgstr "" + +#: gnu/packages/web.scm:2239 +msgid "" +"This is a very simple HTTP/1.1 client, designed for doing\n" +"simple requests without the overhead of a large framework like LWP::" +"UserAgent.\n" +"It supports proxies and redirection. It also correctly resumes after E= INTR." +msgstr "" + +#: gnu/packages/web.scm:2258 +msgid "Perl module to open an HTML file with automatic charset detection= " +msgstr "" + +#: gnu/packages/web.scm:2260 +msgid "" +"IO::HTML provides an easy way to open a file containing HTML while\n" +"automatically determining its encoding. It uses the HTML5 encoding " +"sniffing\n" +"algorithm specified in section 8.2.2.1 of the draft standard." +msgstr "" + +#: gnu/packages/web.scm:2280 +msgid "Family-neutral IP socket supporting both IPv4 and IPv6" +msgstr "" + +#: gnu/packages/web.scm:2281 +msgid "" +"This module provides a protocol-independent way to use IPv4\n" +"and IPv6 sockets, intended as a replacement for IO::Socket::INET." +msgstr "" + +#: gnu/packages/web.scm:2301 +msgid "Nearly transparent SSL encapsulation for IO::Socket::INET" +msgstr "" + +#: gnu/packages/web.scm:2303 +msgid "" +"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" +"necessary functionality into the familiar IO::Socket interface and " +"providing\n" +"secure defaults whenever possible. This way existing applications can = be " +"made\n" +"SSL-aware without much effort, at least if you do blocking I/O and don'= t " +"use\n" +"select or poll." +msgstr "" + +#: gnu/packages/web.scm:2334 +msgid "Perl modules for the WWW" +msgstr "" + +#: gnu/packages/web.scm:2336 +msgid "" +"The libwww-perl collection is a set of Perl modules which provides a\n" +"simple and consistent application programming interface to the\n" +"World-Wide Web. The main focus of the library is to provide classes\n" +"and functions that allow you to write WWW clients. The library also\n" +"contains modules that are of more general use and even classes that\n" +"help you implement simple HTTP servers." +msgstr "" + +#: gnu/packages/web.scm:2358 +msgid "Perl module to guess the media type for a file or a URL" +msgstr "" + +#: gnu/packages/web.scm:2360 +#, scheme-format +msgid "" +"The LWP::MediaTypes module provides functions for handling media (also\= n" +"known as MIME) types and encodings. The mapping from file extensions t= o\n" +"media types is defined by the media.types file. If the ~/.media.types = file\n" +"exists it is used instead." +msgstr "" + +#: gnu/packages/web.scm:2386 +msgid "HTTPS support for LWP::UserAgent" +msgstr "" + +#: gnu/packages/web.scm:2387 +msgid "" +"The LWP::Protocol::https module provides support for using\n" +"https schemed URLs with LWP." +msgstr "" + +#: gnu/packages/web.scm:2407 +msgid "Virtual browser that retries errors" +msgstr "" + +#: gnu/packages/web.scm:2408 +msgid "" +"LWP::UserAgent::Determined works just like LWP::UserAgent,\n" +"except that when you use it to get a web page but run into a\n" +"possibly-temporary error (like a DNS lookup timeout), it'll wait a few = " +"seconds\n" +"and retry a few times." +msgstr "" + +#: gnu/packages/web.scm:2453 +msgid "Perl interface to Amazon S3" +msgstr "" + +#: gnu/packages/web.scm:2454 +msgid "This module provides a Perlish interface to Amazon S3." +msgstr "" + +#: gnu/packages/web.scm:2474 +msgid "Perl low-level HTTP connection (client)" +msgstr "" + +#: gnu/packages/web.scm:2476 msgid "" -"GNU Hello prints the message \"Hello, world!\" and then exits. It\n" -"serves as an example of standard GNU coding practices. As such, it sup= ports\n" -"command-line arguments, multiple languages, and so on." +"The Net::HTTP class is a low-level HTTP client. An instance of the\n" +"Net::HTTP class represents a connection to an HTTP server. The HTTP " +"protocol\n" +"is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and\n" +"HTTP/1.1." msgstr "" =20 -#: gnu/packages/base.scm:85 -msgid "Print lines matching a pattern" -msgstr "In ra nh=E1=BB=AFng d=C3=B2ng kh=E1=BB=9Bp v=E1=BB=9Bi m=E1=BB=99= t m=E1=BA=ABu" +#: gnu/packages/web.scm:2496 +msgid "Extensible Perl server engine" +msgstr "" =20 -#: gnu/packages/base.scm:87 +#: gnu/packages/web.scm:2497 msgid "" -"grep is a tool for finding text inside files. Text is found by\n" -"matching a pattern provided by the user in one or many files. The patt= ern\n" -"may be provided as a basic or extended regular expression, or as fixed\= n" -"strings. By default, the matching text is simply printed to the screen= ,\n" -"however the output can be greatly customized to include, for example, l= ine\n" -"numbers. GNU grep offers many extensions over the standard utility,\n" -"including, for example, recursive directory searching." +"Net::Server is an extensible, generic Perl server engine.\n" +"It attempts to be a generic server as in Net::Daemon and NetServer::" +"Generic.\n" +"It includes with it the ability to run as an inetd\n" +"process (Net::Server::INET), a single connection server (Net::Server or= \n" +"Net::Server::Single), a forking server (Net::Server::Fork), a preforkin= g\n" +"server which maintains a constant number of preforked\n" +"children (Net::Server::PreForkSimple), or as a managed preforking serve= r " +"which\n" +"maintains the number of children based on server load (Net::Server::" +"PreFork).\n" +"In all but the inetd type, the server provides the ability to connect t= o " +"one\n" +"or to multiple server ports." msgstr "" =20 -#: gnu/packages/base.scm:109 -msgid "Stream editor" -msgstr "Tr=C3=ACnh so=E1=BA=A1n th=E1=BA=A3o lu=E1=BB=93ng d=E1=BB=AF li= =E1=BB=87u" +#: gnu/packages/web.scm:2525 +msgid "SSL support for Net::SMTP" +msgstr "" + +#: gnu/packages/web.scm:2526 +msgid "SSL support for Net::SMTP." +msgstr "" + +#: gnu/packages/web.scm:2560 +msgid "Perl Superglue for Web frameworks and servers (PSGI toolkit)" +msgstr "" =20 -#: gnu/packages/base.scm:124 +#: gnu/packages/web.scm:2561 msgid "" -"Sed is a non-interactive, text stream editor. It receives a text\n" -"input from a file or from standard input and it then applies a series o= f text\n" -"editing commands to the stream and prints its output to standard output= . It\n" -"is often used for substituting text patterns in a stream. The GNU\n" -"implementation offers several extensions over the standard utility." +"Plack is a set of tools for using the PSGI stack. It\n" +"contains middleware components, a reference server, and utilities for W= eb\n" +"application frameworks. Plack is like Ruby's Rack or Python's Paste fo= r\n" +"WSGI." msgstr "" =20 -#: gnu/packages/base.scm:144 -msgid "Managing tar archives" -msgstr "Qu=E1=BA=A3n l=C3=BD kho l=C6=B0u tar" +#: gnu/packages/web.scm:2587 +msgid "Plack::Middleware which sets body for redirect response" +msgstr "" =20 -#: gnu/packages/base.scm:146 +#: gnu/packages/web.scm:2588 msgid "" -"Tar provides the ability to create tar archives, as well as the\n" -"ability to extract, update or list files in an existing archive. It is= \n" -"useful for combining many files into one larger file, while maintaining= \n" -"directory structure and file information such as permissions and\n" -"creation/modification dates. GNU tar offers many extensions over the\n= " -"standard utility." +"This module sets the body in redirect response, if it's not\n" +"already set." msgstr "" =20 -#: gnu/packages/base.scm:173 -msgid "Apply differences to originals, with optional backups" -msgstr "=C3=81p d=E1=BB=A5ng nh=E1=BB=AFng kh=C3=A1c bi=E1=BB=87t n=C3=A0= y v=C3=A0o b=E1=BA=A3n g=E1=BB=91c, v=E1=BB=9Bi c=C3=A1c sao l=C6=B0u t=C3= =B9y ch=E1=BB=8Dn" +#: gnu/packages/web.scm:2611 +msgid "Override REST methods to Plack apps via POST" +msgstr "" =20 -#: gnu/packages/base.scm:175 +#: gnu/packages/web.scm:2612 msgid "" -"Patch is a program that applies changes to files based on differences\n= " -"laid out as by the program \"diff\". The changes may be applied to one= or more\n" -"files depending on the contents of the diff file. It accepts several\n= " -"different diff formats. It may also be used to revert previously appli= ed\n" -"differences." +"This middleware allows for POST requests that pretend to be\n" +"something else: by adding either a header named X-HTTP-Method-Override = to " +"the\n" +"request, or a query parameter named x-tunneled-method to the URI, the " +"client\n" +"can say what method it actually meant." msgstr "" =20 -#: gnu/packages/base.scm:195 -msgid "Comparing and merging files" -msgstr "So s=C3=A1nh v=C3=A0 h=C3=B2a tr=E1=BB=99n c=C3=A1c t=E1=BA=ADp = tin" +#: gnu/packages/web.scm:2636 +msgid "Plack::Middleware which removes body for HTTP response" +msgstr "" =20 -#: gnu/packages/base.scm:197 +#: gnu/packages/web.scm:2637 msgid "" -"GNU Diffutils is a package containing tools for finding the\n" -"differences between files. The \"diff\" command is used to show how tw= o files\n" -"differ, while \"cmp\" shows the offsets and line numbers where they dif= fer. \n" -"\"diff3\" allows you to compare three files. Finally, \"sdiff\" offers= an\n" -"interactive means to merge two files." +"This module removes the body in an HTTP response if it's not\n" +"required." msgstr "" =20 -#: gnu/packages/base.scm:224 -msgid "Operating on files matching given criteria" -msgstr "Th=E1=BB=B1c hi=E1=BB=87n tr=C3=AAn nh=E1=BB=AFng t=E1=BA=ADp ti= n kh=E1=BB=9Bp v=E1=BB=9Bi =C4=91i=E1=BB=81u ki=E1=BB=87n =C4=91=C3=A3 ch= o" +#: gnu/packages/web.scm:2658 +msgid "Supports app to run as a reverse proxy backend" +msgstr "" =20 -#: gnu/packages/base.scm:226 +#: gnu/packages/web.scm:2659 msgid "" -"Findutils supplies the basic file directory searching utilities of the\= n" -"GNU system. It consists of two primary searching utilities: \"find\"\n= " -"recursively searches for files in a directory according to given criter= ia and\n" -"\"locate\" lists files in a database that match a query. Two auxiliary= tools\n" -"are included: \"updatedb\" updates the file name database and \"xargs\"= may be\n" -"used to apply commands with arbitrarily long arguments." +"Plack::Middleware::ReverseProxy resets some HTTP headers,\n" +"which are changed by reverse-proxy. You can specify the reverse proxy = " +"address\n" +"and stop fake requests using 'enable_if' directive in your app.psgi." msgstr "" =20 -#: gnu/packages/base.scm:278 -msgid "Core GNU utilities (file, text, shell)" -msgstr "Ti=E1=BB=87n =C3=ADch l=C3=B5i GNU (file, text, shell)" +#: gnu/packages/web.scm:2680 +msgid "Run HTTP tests on external live servers" +msgstr "" =20 -#: gnu/packages/base.scm:280 +#: gnu/packages/web.scm:2681 msgid "" -"GNU Coreutils includes all of the basic command-line tools that are\n" -"expected in a POSIX system. These provide the basic file, shell and te= xt\n" -"manipulation functions of the GNU system. Most of these tools offer ex= tended\n" -"functionality beyond that which is outlined in the POSIX standard." +"This module allows your to run your Plack::Test tests\n" +"against an external server instead of just against a local application = " +"through\n" +"either mocked HTTP or a locally spawned server." msgstr "" =20 -#: gnu/packages/base.scm:314 -msgid "Remake files automatically" -msgstr "T=E1=BA=A1o l=E1=BA=A1i c=C3=A1c t=E1=BA=ADp tin m=E1=BB=99t c=C3= =A1ch t=E1=BB=B1 =C4=91=E1=BB=99ng" +#: gnu/packages/web.scm:2703 +msgid "Testing TCP programs" +msgstr "" + +#: gnu/packages/web.scm:2704 +msgid "Test::TCP is test utilities for TCP/IP programs." +msgstr "" + +#: gnu/packages/web.scm:2732 +msgid "Testing-specific WWW::Mechanize subclass" +msgstr "" =20 -#: gnu/packages/base.scm:316 +#: gnu/packages/web.scm:2733 msgid "" -"Make is a program that is used to control the production of\n" -"executables or other files from their source files. The process is\n" -"controlled from a Makefile, in which the developer specifies how each f= ile is\n" -"generated from its source. It has powerful dependency resolution and t= he\n" -"ability to determine when files have to be regenerated after their sour= ces\n" -"change. GNU make offers many powerful extensions over the standard uti= lity." +"Test::WWW::Mechanize is a subclass of the Perl module\n" +"WWW::Mechanize that incorporates features for web application testing." msgstr "" =20 -#: gnu/packages/base.scm:361 -msgid "Binary utilities: bfd gas gprof ld" -msgstr "Ti=E1=BB=87n =C3=ADch nh=E1=BB=8B ph=C3=A2n: bfd gas gprof ld" +#: gnu/packages/web.scm:2766 +msgid "Test::WWW::Mechanize for Catalyst" +msgstr "" =20 -#: gnu/packages/base.scm:363 +#: gnu/packages/web.scm:2767 msgid "" -"GNU Binutils is a collection of tools for working with binary files.\n" -"Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler= . Other\n" -"tools include programs to display binary profiling information, list th= e\n" -"strings in a binary file, and utilities for working with archives. The= \"bfd\"\n" -"library for working with executable and object formats is also included= ." +"The Test::WWW::Mechanize::Catalyst module meshes the\n" +"Test::WWW:Mechanize module and the Catalyst web application framework t= o " +"allow\n" +"testing of Catalyst applications without needing to start up a web serv= er." msgstr "" =20 -#: gnu/packages/base.scm:504 -msgid "The GNU C Library" -msgstr "Th=C6=B0 vi=E1=BB=87n C t=E1=BB=AB GNU" +#: gnu/packages/web.scm:2791 +msgid "Test PSGI programs using WWW::Mechanize" +msgstr "" =20 -#: gnu/packages/base.scm:506 +#: gnu/packages/web.scm:2792 msgid "" -"Any Unix-like operating system needs a C library: the library which\n" -"defines the \"system calls\" and other basic facilities such as open, m= alloc,\n" -"printf, exit...\n" -"\n" -"The GNU C library is used as the C library in the GNU system and most s= ystems\n" -"with the Linux kernel." +"PSGI is a specification to decouple web server environments\n" +"from web application framework code. Test::WWW::Mechanize is a subclas= s of\n" +"WWW::Mechanize that incorporates features for web application testing. = The\n" +"Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing = of " +"PSGI\n" +"applications." msgstr "" =20 -#: gnu/packages/base.scm:575 -msgid "Database of current and historical time zones" -msgstr "C=C6=A1 s=E1=BB=9F d=E1=BB=AF li=E1=BB=87u c=E1=BB=A7a hi=E1=BB=87= n t=E1=BA=A1i v=C3=A0 m=C3=BAi gi=E1=BB=9D l=E1=BB=8Bch s=E1=BB=AD" +#: gnu/packages/web.scm:2812 +msgid "Perl Uniform Resource Identifiers (absolute and relative)" +msgstr "" =20 -#: gnu/packages/base.scm:576 +#: gnu/packages/web.scm:2814 msgid "" -"The Time Zone Database (often called tz or zoneinfo)\n" -"contains code and data that represent the history of local time for man= y\n" -"representative locations around the globe. It is updated periodically t= o\n" -"reflect changes made by political bodies to time zone boundaries, UTC o= ffsets,\n" -"and daylight-saving rules." +"The URI module implements the URI class. Objects of this class\n" +"represent \"Uniform Resource Identifier references\" as specified in RF= C " +"2396\n" +"and updated by RFC 2732." msgstr "" =20 -#: gnu/packages/base.scm:1004 -msgid "GNU C++ standard library (intermediate)" -msgstr "Th=C6=B0 vi=E1=BB=87n GNU C++ chu=E1=BA=A9n (kh=C3=A2u trung gia= n)" +#: gnu/packages/web.scm:2837 +msgid "Find URIs in arbitrary text" +msgstr "" =20 -#: gnu/packages/base.scm:1098 -msgid "The linker wrapper" -msgstr "B=E1=BB=99 bao li=C3=AAn k=E1=BA=BFt" +#: gnu/packages/web.scm:2838 +msgid "" +"This module finds URIs and URLs (according to what URI.pm\n" +"considers a URI) in plain text. It only finds URIs which include a\n" +"scheme (http:// or the like), for something a bit less strict, consider= \n" +"URI::Find::Schemeless. For a command-line interface, urifind is provid= ed." +msgstr "" + +#: gnu/packages/web.scm:2860 +msgid "WebSocket support for URI package" +msgstr "" =20 -#: gnu/packages/base.scm:1100 +#: gnu/packages/web.scm:2861 msgid "" -"The linker wrapper (or `ld-wrapper') wraps the linker to add any\n" -"missing `-rpath' flags, and to detect any misuse of libraries outside o= f the\n" -"store." +"With this module, the URI package provides the same set of\n" +"methods for WebSocket URIs as it does for HTTP URIs." msgstr "" =20 -#: gnu/packages/base.scm:1264 -msgid "Complete GCC tool chain for C/C++ development" +#: gnu/packages/web.scm:2881 +msgid "Perl extension interface for libcurl" msgstr "" =20 -#: gnu/packages/base.scm:1266 +#: gnu/packages/web.scm:2883 msgid "" -"This package provides a complete GCC tool chain for C/C++ development t= o\n" -"be installed in user profiles. This includes GCC, as well as libc (hea= ders\n" -"and binaries, plus debugging symbols in the 'debug' output), and Binuti= ls." +"This is a Perl extension interface for the libcurl file downloading\n" +"library." msgstr "" =20 -#: gnu/packages/guile.scm:99 gnu/packages/guile.scm:166 -msgid "Scheme implementation intended especially for extensions" -msgstr "L=C6=B0=E1=BB=A3c =C4=91=E1=BB=93 th=E1=BB=B1c thi c=C3=B3 d=E1=BB= =A5ng =C3=BD =C4=91=E1=BA=B7c bi=E1=BB=87t cho ph=E1=BA=A7n m=E1=BB=9F r=E1= =BB=99ng" +#: gnu/packages/web.scm:2912 +msgid "Web browsing in a Perl object" +msgstr "" =20 -#: gnu/packages/guile.scm:101 gnu/packages/guile.scm:168 +#: gnu/packages/web.scm:2913 msgid "" -"Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" -"official extension language of the GNU system. It is an implementation= of\n" -"the Scheme language which can be easily embedded in other applications = to\n" -"provide a convenient means of extending the functionality of the applic= ation\n" -"without requiring the source code to be rewritten." +"WWW::Mechanize is a Perl module for stateful programmatic\n" +"web browsing, used for automating interaction with websites." msgstr "" =20 -#: gnu/packages/guile.scm:211 -msgid "Framework for building readers for GNU Guile" -msgstr "M=E1=BB=99t framework =C4=91=E1=BB=83 x=C3=A2y d=E1=BB=B1ng b=E1= =BB=99 =C4=91=E1=BB=8Dc d=C3=A0nh cho GNU Guile" +#: gnu/packages/web.scm:2933 +msgid "Perl database of robots.txt-derived permissions" +msgstr "" =20 -#: gnu/packages/guile.scm:213 +#: gnu/packages/web.scm:2935 msgid "" -"Guile-Reader is a simple framework for building readers for GNU Guile.\= n" +"The WWW::RobotRules module parses /robots.txt files as specified in\n" +"\"A Standard for Robot Exclusion\", at\n" +". Webmasters can use the\n" +"/robots.txt file to forbid conforming robots from accessing parts of\n" +"their web site." +msgstr "" + +#: gnu/packages/web.scm:2955 +msgid "HTTP and WebSocket server library for R" +msgstr "" + +#: gnu/packages/web.scm:2957 +msgid "" +"The httpuv package provides low-level socket and protocol support for\n= " +"handling HTTP and WebSocket requests directly from within R. It is " +"primarily\n" +"intended as a building block for other packages, rather than making it\= n" +"particularly easy to create complete web applications using httpuv alon= e." +msgstr "" + +#: gnu/packages/web.scm:2978 +msgid "Robust, high performance JSON parser and generator for R" +msgstr "" + +#: gnu/packages/web.scm:2980 +msgid "" +"The jsonlite package provides a fast JSON parser and generator optimize= d\n" +"for statistical data and the web. It offers flexible, robust, high\n" +"performance tools for working with JSON in R and is particularly powerf= ul " +"for\n" +"building pipelines and interacting with a web API. In addition to " +"converting\n" +"JSON data from/to R objects, jsonlite contains functions to stream, " +"validate,\n" +"and prettify JSON data. The unit tests included with the package verif= y " +"that\n" +"all edge cases are encoded and decoded consistently for use with dynami= c " +"data\n" +"in systems and applications." +msgstr "" + +#: gnu/packages/web.scm:3008 +msgid "Simple HTTP server to serve static files or dynamic documents" +msgstr "" + +#: gnu/packages/web.scm:3010 +msgid "" +"Servr provides an HTTP server in R to serve static files, or dynamic\n" +"documents that can be converted to HTML files (e.g., R Markdown) under = a " +"given\n" +"directory." +msgstr "" + +#: gnu/packages/web.scm:3029 +msgid "R tools for HTML" +msgstr "" + +#: gnu/packages/web.scm:3031 +msgid "This package provides tools for HTML generation and output in R." +msgstr "" + +#: gnu/packages/web.scm:3050 +msgid "HTML Widgets for R" +msgstr "" + +#: gnu/packages/web.scm:3052 +msgid "" +"HTML widgets is a framework for creating HTML widgets that render in\n" +"various contexts including the R console, R Markdown documents, and Shi= ny " +"web\n" +"applications." +msgstr "" + +#: gnu/packages/web.scm:3071 +msgid "HTTP client for R" +msgstr "" + +#: gnu/packages/web.scm:3073 +msgid "" +"The @code{curl()} and @code{curl_download()} functions provide highly\n= " +"configurable drop-in replacements for base @code{url()} and\n" +"@code{download.file()} with better performance, support for encryption,= " +"gzip\n" +"compression, authentication, and other @code{libcurl} goodies. The cor= e of\n" +"the package implements a framework for performing fully customized requ= ests\n" +"where data can be processed either in memory, on disk, or streaming via= the\n" +"callback or connection interfaces." +msgstr "" + +#: gnu/packages/web.scm:3107 +msgid "HTML5 parsing library" +msgstr "" + +#: gnu/packages/web.scm:3109 +msgid "" +"Gumbo is an implementation of the HTML5 parsing algorithm implemented a= s\n" +"a pure C99 library." +msgstr "" + +#: gnu/packages/weechat.scm:98 +msgid "Extensible chat client" +msgstr "" + +#: gnu/packages/weechat.scm:99 +msgid "" +"WeeChat (Wee Enhanced Environment for Chat) is an\n" +"Internet Relay Chat client, which is designed to be light and fast.\n" +"The client uses a curses frontend, and there are remote interfaces\n" +"for Web, Qt, Android and Emacs. In WeeChat everything can be done\n" +"with a keyboard, though it also supports mouse. It is customizable\n" +"and extensible with plugins and scripts." +msgstr "" + +#: gnu/packages/wordnet.scm:79 +msgid "Lexical database for the English language" +msgstr "" + +#: gnu/packages/wordnet.scm:81 +msgid "" +"WordNet=C2=AE is a large lexical database of English. Nouns, verbs,\n" +"adjectives and adverbs are grouped into sets of cognitive synonyms " +"(synsets),\n" +"each expressing a distinct concept. Synsets are interlinked by means o= f\n" +"conceptual-semantic and lexical relations. The resulting network of\n" +"meaningfully related words and concepts can be navigated with the brows= er.\n" +"WordNet is also freely and publicly available for download. WordNet's\= n" +"structure makes it a useful tool for computational linguistics and natu= ral\n" +"language processing." +msgstr "" + +#: gnu/packages/xiph.scm:66 +msgid "Library for manipulating the ogg multimedia format" +msgstr "" + +#: gnu/packages/xiph.scm:68 +msgid "" +"The libogg library allows to manipulate the ogg multimedia container\n" +"format, which encapsulates raw compressed data and allows the interleav= ing " +"of\n" +"audio and video data. In addition to encapsulation and interleaving of= \n" +"multiple data streams, ogg provides packet framing, error detection, an= d\n" +"periodic timestamps for seeking." +msgstr "" + +#: gnu/packages/xiph.scm:92 +msgid "Library implementing the vorbis audio format" +msgstr "" + +#: gnu/packages/xiph.scm:94 +msgid "" +"The libvorbis library implements the ogg vorbis audio format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit,= \n" +"polyphonic) audio and music at fixed and variable bitrates from 16 to\n= " +"128 kbps/channel." +msgstr "" + +#: gnu/packages/xiph.scm:119 +msgid "Library implementing the Theora video format" +msgstr "" + +#: gnu/packages/xiph.scm:121 +msgid "" +"The libtheora library implements the ogg theora video format,\n" +"a fully open, non-proprietary, patent-and-royalty-free, general-purpose= \n" +"compressed video format." +msgstr "" + +#: gnu/packages/xiph.scm:142 +msgid "Library for patent-free audio compression format" +msgstr "" + +#: gnu/packages/xiph.scm:144 +msgid "" +"GNU Speex is a patent-free audio compression codec specially designed\n= " +"for speech. It is well-adapted to internet applications, such as VoIP.= It\n" +"features compression of different bands in the same bitstream, intensit= y\n" +"stereo encoding, and voice activity detection." +msgstr "" + +#: gnu/packages/xiph.scm:174 +msgid "Cross platform audio library" +msgstr "" + +#: gnu/packages/xiph.scm:176 +msgid "" +"Libao is a cross-platform audio library that allows programs to\n" +"output audio using a simple API on a wide variety of platforms.\n" +"It currently supports:\n" +"Null output (handy for testing without a sound device),\n" +"WAV files,\n" +"AU files,\n" +"RAW files,\n" +"OSS (Open Sound System, used on Linux and FreeBSD),\n" +"ALSA (Advanced Linux Sound Architecture),\n" +"aRts (Analog RealTime Synth, used by KDE),\n" +"PulseAudio (next generation GNOME sound server),\n" +"esd (EsounD or Enlightened Sound Daemon),\n" +"Mac OS X,\n" +"Windows (98 and later),\n" +"AIX,\n" +"Sun/NetBSD/OpenBSD,\n" +"IRIX,\n" +"NAS (Network Audio Server),\n" +"RoarAudio (Modern, multi-OS, networked Sound System),\n" +"OpenBSD's sndio." +msgstr "" + +#: gnu/packages/xiph.scm:215 +msgid "Free lossless audio codec" +msgstr "" + +#: gnu/packages/xiph.scm:217 +msgid "" +"FLAC stands for Free Lossless Audio Codec, an audio format that is " +"lossless,\n" +"meaning that audio is compressed in FLAC without any loss in quality." +msgstr "" + +#: gnu/packages/xiph.scm:243 +msgid "Karaoke and text codec for embedding in ogg" +msgstr "" + +#: gnu/packages/xiph.scm:245 +msgid "" +"Kate is an overlay codec, originally designed for karaoke and text,\n" +"that can be multiplixed in Ogg. Text and images can be carried by a Ka= te\n" +"stream, and animated. Most of the time, this would be multiplexed with= \n" +"audio/video to carry subtitles, song lyrics (with or without karaoke da= ta),\n" +"etc., but doesn't have to be.\n" "\n" -"The idea is to make it easy to build procedures that extend Guile=E2=80= =99s read\n" -"procedure. Readers supporting various syntax variants can easily be wri= tten,\n" -"possibly by re-using existing =E2=80=9Ctoken readers=E2=80=9D of a stan= dard Scheme\n" -"readers. For example, it is used to implement Skribilo=E2=80=99s R5RS-d= erived\n" -"document syntax.\n" +"Series of curves (splines, segments, etc.) may be attached to various\n= " +"properties (text position, font size, etc.) to create animated overlays= .\n" +"This allows scrolling or fading text to be defined. This can even be u= sed\n" +"to draw arbitrary shapes, so hand drawing can also be represented by a\= n" +"Kate stream." +msgstr "" + +#: gnu/packages/xiph.scm:279 +msgid "Ogg vorbis tools" +msgstr "" + +#: gnu/packages/xiph.scm:281 +msgid "" +"Ogg vorbis is a non-proprietary, patent-and-royalty-free,\n" +"general-purpose compressed audio format.\n" "\n" -"Guile-Reader=E2=80=99s approach is similar to Common Lisp=E2=80=99s =E2= =80=9Cread table=E2=80=9D, but\n" -"hopefully more powerful and flexible (for instance, one may instantiate= as\n" -"many readers as needed)." +"The package vorbis-tools contains\n" +"ogg123, an ogg vorbis command line audio player;\n" +"oggenc, the ogg vorbis encoder;\n" +"oggdec, a simple, portable command line decoder (to wav and raw);\n" +"ogginfo, to obtain information (tags, bitrate, length, etc.) about\n" +" an ogg vorbis file." msgstr "" =20 -#: gnu/packages/guile.scm:267 -msgid "Guile bindings to ncurses" -msgstr "Guile r=C3=A0ng bu=E1=BB=99c v=C3=A0o ncurses" +#: gnu/packages/xiph.scm:306 gnu/packages/xiph.scm:369 +msgid "Versatile audio codec" +msgstr "" =20 -#: gnu/packages/guile.scm:269 +#: gnu/packages/xiph.scm:308 msgid "" -"guile-ncurses provides Guile language bindings for the ncurses\n" -"library." +"Opus is a totally open, royalty-free, highly versatile audio codec. Op= us\n" +"is unmatched for interactive speech and music transmission over the " +"Internet,\n" +"but is also intended for storage and streaming applications. It is\n" +"standardized by the Internet Engineering Task Force (IETF) as RFC 6716 = " +"which\n" +"incorporated technology from Skype's SILK codec and Xiph.Org's CELT cod= ec." msgstr "" =20 -#: gnu/packages/guile.scm:289 -msgid "Run jobs at scheduled times" -msgstr "Ch=E1=BA=A1y c=C3=A1c c=C3=B4ng vi=E1=BB=87c theo l=E1=BB=8Bch b= i=E1=BB=83u" +#: gnu/packages/xiph.scm:342 +msgid "Command line utilities to encode, inspect, and decode .opus files= " +msgstr "" =20 -#: gnu/packages/guile.scm:291 +#: gnu/packages/xiph.scm:343 msgid "" -"GNU Mcron is a complete replacement for Vixie cron. It is used to run\= n" -"tasks on a schedule, such as every hour or every Monday. Mcron is writ= ten in\n" -"Guile, so its configuration can be written in Scheme; the original cron= \n" -"format is also supported." +"Opus is a royalty-free, highly versatile audio codec.\n" +"Opus-tools provide command line utilities for creating, inspecting and\= n" +"decoding .opus files." msgstr "" =20 -#: gnu/packages/guile.scm:319 -msgid "Collection of useful Guile Scheme modules" -msgstr "B=E1=BB=99 s=C6=B0u t=E1=BA=ADp c=E1=BB=A7a c=C3=A1c m=C3=B4-=C4= =91un L=C6=B0=E1=BB=A3c =C4=91=E1=BB=93 Guile" +#: gnu/packages/xiph.scm:371 +msgid "" +"The opusfile library provides seeking, decode, and playback of Opus\n" +"streams in the Ogg container (.opus files) including over http(s) on po= six " +"and\n" +"windows systems." +msgstr "" =20 -#: gnu/packages/guile.scm:321 +#: gnu/packages/xiph.scm:401 +#, fuzzy +msgid "Streaming media server" +msgstr "Tr=C3=ACnh so=E1=BA=A1n th=E1=BA=A3o lu=E1=BB=93ng d=E1=BB=AF li= =E1=BB=87u" + +#: gnu/packages/xiph.scm:402 msgid "" -"guile-lib is intended as an accumulation place for pure-scheme Guile\n" -"modules, allowing for people to cooperate integrating their generic Gui= le\n" -"modules into a coherent library. Think \"a down-scaled, limited-scope = CPAN\n" -"for Guile\"." +"Icecast is a streaming media server which currently supports\n" +"Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams. It can be u= sed " +"to\n" +"create an Internet radio station or a privately running jukebox and man= y\n" +"things in between." msgstr "" =20 -#: gnu/packages/guile.scm:352 -msgid "JSON module for Guile" +#: gnu/packages/xiph.scm:430 +msgid "Audio streaming library for icecast encoders" msgstr "" =20 -#: gnu/packages/guile.scm:354 +#: gnu/packages/xiph.scm:432 msgid "" -"Guile-json supports parsing and building JSON documents according to th= e\n" -"http:://json.org specification. These are the main features:\n" -"- Strictly complies to http://json.org specification.\n" -"- Build JSON documents programmatically via macros.\n" -"- Unicode support for strings.\n" -"- Allows JSON pretty printing." +"Libshout is a library for communicating with and sending data to an\n" +"icecast server. It handles the socket connection, the timing of the da= ta,\n" +"and prevents bad data from getting to the icecast server." msgstr "" =20 -#: gnu/packages/lout.scm:109 -msgid "Lout, a document layout system similar in style to LaTeX" +#: gnu/packages/zip.scm:57 +#, fuzzy +msgid "Compression and file packing utility" +msgstr "So s=C3=A1nh v=C3=A0 h=C3=B2a tr=E1=BB=99n c=C3=A1c t=E1=BA=ADp = tin" + +#: gnu/packages/zip.scm:59 +msgid "" +"Zip is a compression and file packaging/archive utility. Zip is useful= \n" +"for packaging a set of files for distribution, for archiving files, and= for\n" +"saving disk space by temporarily compressing unused files or directorie= s.\n" +"Zip puts one or more compressed files into a single ZIP archive, along = with\n" +"information about the files (name, path, date, time of last modificatio= n,\n" +"protection, and check information to verify file integrity). An entire= \n" +"directory structure can be packed into a ZIP archive with a single comm= and.\n" +"\n" +"Zip has one compression method (deflation) and can also store files wit= hout\n" +"compression. Zip automatically chooses the better of the two for each = " +"file.\n" +"Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" =20 -#: gnu/packages/lout.scm:111 +#: gnu/packages/zip.scm:113 +msgid "Decompression and file extraction utility" +msgstr "" + +#: gnu/packages/zip.scm:115 msgid "" -"The Lout document formatting system is now reads a high-level descripti= on of\n" -"a document similar in style to LaTeX and produces a PostScript or plain= text\n" -"output file.\n" +"UnZip is an extraction utility for archives compressed in .zip format,\= n" +"also called \"zipfiles\".\n" "\n" -"Lout offers an unprecedented range of advanced features, including opti= mal\n" -"paragraph and page breaking, automatic hyphenation, PostScript EPS file= \n" -"inclusion and generation, equation formatting, tables, diagrams, rotati= on and\n" -"scaling, sorted indexes, bibliographic databases, running headers and\n= " -"odd-even pages, automatic cross referencing, multilingual documents inc= luding\n" -"hyphenation (most European languages are supported), formatting of comp= uter\n" -"programs, and much more, all ready to use. Furthermore, Lout is easily= \n" -"extended with definitions which are very much easier to write than trof= f of\n" -"TeX macros because Lout is a high-level, purely functional language, th= e\n" -"outcome of an eight-year research project that went back to the\n" -"beginning." +"UnZip lists, tests, or extracts files from a .zip archive. The default= \n" +"behaviour (with no options) is to extract into the current directory, a= nd\n" +"subdirectories below it, all files from the specified zipfile. UnZip\n= " +"recreates the stored directory structure by default." msgstr "" =20 -#: gnu/packages/recutils.scm:58 -msgid "Manipulate plain text files as databases" -msgstr "Thao t=C3=A1c c=C3=A1c t=E1=BA=ADp tin v=C4=83n b=E1=BA=A3n th=C6= =B0=E1=BB=9Dng nh=C6=B0 l=C3=A0 c=C6=A1 s=E1=BB=9F d=E1=BB=AF li=E1=BB=87= u" +#: gnu/packages/zip.scm:149 +msgid "Library for accessing zip files" +msgstr "" =20 -#: gnu/packages/recutils.scm:60 +#: gnu/packages/zip.scm:151 +msgid "ZZipLib is a library based on zlib for accessing zip files." +msgstr "" + +#: gnu/packages/zip.scm:169 +msgid "Provides an interface to ZIP archive files" +msgstr "" + +#: gnu/packages/zsh.scm:71 +msgid "Powerful shell for interactive use and scripting" +msgstr "" + +#: gnu/packages/zsh.scm:72 msgid "" -"GNU Recutils is a set of tools and libraries for creating and\n" -"manipulating text-based, human-editable databases. Despite being text-= based,\n" -"databases created with Recutils carry all of the expected features such= as\n" -"unique fields, primary keys, time stamps and more. Many different field= types\n" -"are supported, as is encryption." +"The Z shell (zsh) is a Unix shell that can be used\n" +"as an interactive login shell and as a powerful command interpreter\n" +"for shell scripting. Zsh can be thought of as an extended Bourne shell= \n" +"with a large number of improvements, including some features of bash,\n= " +"ksh, and tcsh." msgstr "" --=20 2.1.4