diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | doc/Makefile.am | 2 | ||||
-rw-r--r-- | doc/es/Makefile.am | 73 | ||||
-rw-r--r-- | doc/po4a/Makefile.am | 2 | ||||
-rw-r--r-- | doc/po4a/add_es/Makefile.am | 1 | ||||
-rw-r--r-- | doc/po4a/add_es/addendum.1.es | 8 | ||||
-rw-r--r-- | doc/po4a/po/Makefile.am | 2 | ||||
-rw-r--r-- | doc/po4a/po/es.po | 18455 | ||||
-rw-r--r-- | doc/po4a/po4a.cfg | 5 |
9 files changed, 18545 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index a4f43970..8191aa80 100644 --- a/configure.ac +++ b/configure.ac @@ -358,6 +358,7 @@ AC_CONFIG_FILES([ doc/de/Makefile doc/en/Makefile doc/en/images/Makefile + doc/es/Makefile doc/fi/Makefile doc/fi/images/Makefile doc/fr/Makefile @@ -367,6 +368,7 @@ AC_CONFIG_FILES([ doc/po4a/Makefile doc/po4a/po/Makefile doc/po4a/add_de/Makefile + doc/po4a/add_es/Makefile doc/po4a/add_fr/Makefile m4/Makefile po/Makefile.in diff --git a/doc/Makefile.am b/doc/Makefile.am index 55451cd7..91654b31 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS=cs de en fi fr ja po4a +SUBDIRS=cs de en es fi fr ja po4a EXTRA_DIST=aptitude-common.xsl aptitude-html.xsl aptitude-man.xsl aptitude-txt.style aptitude-txt.xsl aptitude.css fixup-text diff --git a/doc/es/Makefile.am b/doc/es/Makefile.am new file mode 100644 index 00000000..8b420872 --- /dev/null +++ b/doc/es/Makefile.am @@ -0,0 +1,73 @@ +# automake doesn't play nicely with DocBook :( + +# no full manual yet +SUBDIRS= +#SUBDIRS=images + +LANGCODE=es +MANPAGE=aptitude.$(LANGCODE).8 +# How much of the manual should actually at least be translated. +PERCENT_TRANSLATED=0 # status: 0.75% +MANPAGE_PERCENT_TRANSLATED=0 # status: 31% +README=README.$(LANGCODE) +XMLSOURCES=aptitude.xml manpage.xml $(srcdir)/../aptitude-common.xsl + +# Put documentation in /usr/share/doc/aptitude (by default) +docdir=$(datadir)/doc/$(PACKAGE) +localemandir=$(mandir)/$(LANGCODE) +htmldir=$(docdir)/html/$(LANGCODE) + +IMAGES = $(wildcard images/*.png) + +all-local: doc-stamp + +clean-local: + -rm -fr output-html/ output-txt/ output-man/ + -rm -f doc-stamp doc-css-stamp doc-html-stamp doc-txt-stamp doc-man-stamp + -rm -fr $(MANPAGE) $(README) *.tmp + -rm -fr aptitude.xml manpage.xml + +install-data-hook: + $(mkinstalldirs) $(DESTDIR)$(localemandir)/man8 + $(INSTALL_DATA) $(MANPAGE) $(DESTDIR)$(localemandir)/man8/aptitude.8 + $(mkinstalldirs) $(htmldir)/images + $(INSTALL_DATA) output-html/*.html output-html/*.css $(htmldir) +# $(INSTALL_DATA) output-html/images/* $(htmldir)/images + + $(INSTALL_DATA) README.$(LANGCODE) $(DESTDIR)$(pkgdatadir)/README.$(LANGCODE) + +doc-stamp: doc-html-stamp doc-css-stamp $(README) $(MANPAGE) + touch doc-stamp + +aptitude.xml: $(srcdir)/../en/aptitude.xml $(srcdir)/../po4a/po/$(LANGCODE).po $(srcdir)/../po4a/add_$(LANGCODE)/addendum.1.$(LANGCODE) + po4a-translate -k $(PERCENT_TRANSLATED) -M utf-8 -f docbook -m $(srcdir)/../en/aptitude.xml -p $(srcdir)/../po4a/po/$(LANGCODE).po -l aptitude.xml + +manpage.xml: $(srcdir)/../en/manpage.xml $(srcdir)/../po4a/po/$(LANGCODE).po $(srcdir)/../po4a/add_$(LANGCODE)/addendum.1.$(LANGCODE) + po4a-translate -k $(MANPAGE_PERCENT_TRANSLATED) -M utf-8 -f docbook -m $(srcdir)/../en/manpage.xml -p $(srcdir)/../po4a/po/$(LANGCODE).po -l manpage.xml + +$(MANPAGE): $(XMLSOURCES) $(srcdir)/../aptitude-man.xsl + -rm -fr output-man $(MANPAGE) + xsltproc -o output-man/aptitude.8 $(srcdir)/../aptitude-man.xsl aptitude.xml + mv output-man/aptitude.8 $(MANPAGE) + +$(README): $(XMLSOURCES) $(srcdir)/../aptitude-txt.xsl $(srcdir)/../aptitude-txt.style + -rm -fr output-txt + xsltproc -o output-txt/index.html $(srcdir)/../aptitude-txt.xsl aptitude.xml + html2text -width 80 -ascii -nobs -rcfile $(srcdir)/../aptitude-txt.style output-txt/index.html | $(srcdir)/../fixup-text > $(README) + +doc-css-stamp: doc-html-stamp $(srcdir)/../aptitude.css + rm -f output-html/aptitude.css + cp $(srcdir)/../aptitude.css output-html/ + touch doc-css-stamp + +doc-html-stamp: $(XMLSOURCES) $(srcdir)/../aptitude-html.xsl $(IMAGES) + -rm -fr output-html/ + + xsltproc -o output-html/ $(srcdir)/../aptitude-html.xsl aptitude.xml + +# mkdir output-html/images/ +# ln -f $(srcdir)/images/*.png output-html/images/ +# for x in caution important note tip warning; do ln -s /usr/share/xml/docbook/stylesheet/nwalsh/images/$$x.png output-html/images/; done +# for x in home next prev up; do ln -s /usr/share/xml/docbook/stylesheet/nwalsh/images/$$x.gif output-html/images/; done + + touch doc-html-stamp diff --git a/doc/po4a/Makefile.am b/doc/po4a/Makefile.am index e9d5d559..b9239b27 100644 --- a/doc/po4a/Makefile.am +++ b/doc/po4a/Makefile.am @@ -1,3 +1,3 @@ EXTRA_DIST=po4a.cfg -SUBDIRS=po add_de add_fr +SUBDIRS=po add_de add_es add_fr diff --git a/doc/po4a/add_es/Makefile.am b/doc/po4a/add_es/Makefile.am new file mode 100644 index 00000000..8fa1ea5b --- /dev/null +++ b/doc/po4a/add_es/Makefile.am @@ -0,0 +1 @@ +EXTRA_DIST=addendum.1.es diff --git a/doc/po4a/add_es/addendum.1.es b/doc/po4a/add_es/addendum.1.es new file mode 100644 index 00000000..9d555ac4 --- /dev/null +++ b/doc/po4a/add_es/addendum.1.es @@ -0,0 +1,8 @@ +PO4A-HEADER:mode=after;position=</author>;beginboundary=<legalnotice> + <othercredit> + <personname> + <firstname>Omar</firstname> <surname>Campagne</surname> + </personname> + <email>ocampagne@gmail.com</email> + <contrib>Translation</contrib> + </othercredit> diff --git a/doc/po4a/po/Makefile.am b/doc/po4a/po/Makefile.am index 6c0d7006..a3257400 100644 --- a/doc/po4a/po/Makefile.am +++ b/doc/po4a/po/Makefile.am @@ -1,4 +1,4 @@ -EXTRA_DIST=de.po fr.po ja.po +EXTRA_DIST=de.po es.po fr.po ja.po clean-generic: rm -f *~ diff --git a/doc/po4a/po/es.po b/doc/po4a/po/es.po new file mode 100644 index 00000000..0dc53d7f --- /dev/null +++ b/doc/po4a/po/es.po @@ -0,0 +1,18455 @@ +# aptitude doc es 0.5.2.1 +# +# Copyright (C) 2009 Omar Campagne ocampagne@gmail.com +# Originally created by Daniel Burrows +# +msgid "" +msgstr "" +"Project-Id-Version: aptitude doc es 0.5.2.1\n" +"POT-Creation-Date: 2009-04-26 20:35-0600\n" +"PO-Revision-Date: 2009-06-08 23:39+0200\n" +"Last-Translator: Omar Campagne <ocampagne@gmail.com>\n" +"Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +# type: Content of the aptitude entity +#: en/aptitude.xml:5 +msgid "<command>aptitude</command>" +msgstr "<command>aptitude</command>" + +# type: Content of the apt entity +#: en/aptitude.xml:6 +msgid "<systemitem class=\"library\">apt</systemitem>" +msgstr "<systemitem class=\"library\">apt</systemitem>" + +# type: Content of the dselect entity +#: en/aptitude.xml:7 +msgid "<command>dselect</command>" +msgstr "<command>dselect</command>" + +# type: Content of the apt-get entity +#: en/aptitude.xml:8 +msgid "<command>apt-get</command>" +msgstr "<command>apt-get</command>" + +# type: Content of the root entity +#: en/aptitude.xml:9 +msgid "<systemitem class=\"username\">root</systemitem>" +msgstr "<systemitem class=\"username\">root</systemitem>" + +# type: Content of the VERSION entity +#: en/aptitude.xml:10 +msgid "0.5.2.1" +msgstr "0.5.2.1" + +# type: Content of the actions-install entity +#: en/aptitude.xml:14 +msgid "" +"<menuchoice><shortcut><keycap>g</keycap></shortcut><guimenu>Actions</" +"guimenu><guimenuitem>Install/remove packages</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>g</keycap></shortcut><guimenu>Acciones</" +"guimenu><guimenuitem>Instalar/eliminar paquetes</guimenuitem></menuchoice>" + +# type: Content of the actions-update entity +#: en/aptitude.xml:15 +msgid "" +"<menuchoice><shortcut><keycap>u</keycap></shortcut><guimenu>Actions</" +"guimenu><guimenuitem>Update package list</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>u</keycap></shortcut><guimenu>Acciones</" +"guimenu><guimenuitem>Actualizar la lista de paquetes</guimenuitem></" +"menuchoice>" + +# type: Content of the actions-cancel entity +#: en/aptitude.xml:16 +msgid "" +"<menuchoice><guimenu>Actions</guimenu><guimenuitem>Cancel pending actions</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Acciones</guimenu><guimenuitem>Cancelar acciones " +"pendientes</guimenuitem></menuchoice>" + +# type: Content of the actions-forget entity +#: en/aptitude.xml:17 +msgid "" +"<menuchoice><shortcut><keycap>f</keycap></shortcut><guimenu>Actions</" +"guimenu><guimenuitem>Forget new packages</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>f</keycap></shortcut><guimenu>Acciones</" +"guimenu><guimenuitem>Olvidar paquetes nuevos</guimenuitem></menuchoice>" + +# type: Content of the actions-clean entity +#: en/aptitude.xml:18 +msgid "" +"<menuchoice><guimenu>Actions</guimenu><guimenuitem>Clean package cache</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Actions</guimenu><guimenuitem>Limpiar el almacén de " +"paquetes</guimenuitem></menuchoice>" + +# type: Content of the actions-clean-obs entity +#: en/aptitude.xml:19 +msgid "" +"<menuchoice><guimenu>Actions</guimenu><guimenuitem>Clean obsolete files</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Acciones</guimenu><guimenuitem>Limpiar ficheros " +"obsoletos</guimenuitem></menuchoice>" + +# type: Content of the actions-upgrade entity +#: en/aptitude.xml:20 +msgid "" +"<menuchoice><shortcut><keycap>U</keycap></shortcut><guimenu>Actions</" +"guimenu><guimenuitem>Mark Upgradable</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>U</keycap></shortcut><guimenu>Acciones</" +"guimenu><guimenuitem>Marcar actualizable</guimenuitem></menuchoice>" + +# type: Content of the actions-mine entity +#: en/aptitude.xml:21 +msgid "" +"<menuchoice><guimenu>Actions</guimenu><guimenuitem>Play Minesweeper</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Acciones</guimenu><guimenuitem>Jugar al buscaminas</" +"guimenuitem></menuchoice>" + +# type: Content of the actions-su entity +#: en/aptitude.xml:22 +msgid "" +"<menuchoice><guimenu>Actions</guimenu><guimenuitem>Become root</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Acciones</guimenu><guimenuitem>Convertirse en " +"administrador</guimenuitem></menuchoice>" + +# type: Content of the actions-quit entity +#: en/aptitude.xml:23 +msgid "" +"<menuchoice><shortcut><keycap>Q</keycap></shortcut><guimenu>Actions</" +"guimenu><guimenuitem>Quit</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>Q</keycap></shortcut><guimenu>Acciones</" +"guimenu><guimenuitem>Salir</guimenuitem></menuchoice>" + +# type: Content of the undo-undo entity +#: en/aptitude.xml:25 +msgid "" +"<menuchoice><shortcut><keycombo action='simul'><keycap>Control</" +"keycap><keycap>u</keycap></keycombo></shortcut><guimenu>Undo</" +"guimenu><guimenuitem>Undo</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycombo action='simul'><keycap>Control</" +"keycap><keycap>u</keycap></keycombo></shortcut><guimenu>Deshacer</" +"guimenu><guimenuitem>Deshacer</guimenuitem></menuchoice>" + +# type: Content of the package-install entity +#: en/aptitude.xml:27 +msgid "" +"<menuchoice><shortcut><keycap>+</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Install</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>+</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Instalar</guimenuitem></menuchoice>" + +# type: Content of the package-remove entity +#: en/aptitude.xml:28 +msgid "" +"<menuchoice><shortcut><keycap>-</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Remove</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>-</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Eliminar</guimenuitem></menuchoice>" + +# type: Content of the package-purge entity +#: en/aptitude.xml:29 +msgid "" +"<menuchoice><shortcut><keycap>_</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Purge</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>_</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Purgar</guimenuitem></menuchoice>" + +# type: Content of the package-keep entity +#: en/aptitude.xml:30 +msgid "" +"<menuchoice><shortcut><keycap>:</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Keep</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>:</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Mantener</guimenuitem></menuchoice>" + +# type: Content of the package-hold entity +#: en/aptitude.xml:31 +msgid "" +"<menuchoice><shortcut><keycap>=</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Hold</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>=</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Retener</guimenuitem></menuchoice>" + +# type: Content of the package-markauto entity +#: en/aptitude.xml:32 +msgid "" +"<menuchoice><shortcut><keycap>M</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Mark Auto</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>M</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Marcar automático</guimenuitem></menuchoice>" + +# type: Content of the package-markmanual entity +#: en/aptitude.xml:33 +msgid "" +"<menuchoice><shortcut><keycap>m</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Mark Manual</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>m</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Marcar manual</guimenuitem></menuchoice>" + +# type: Content of the package-forbid entity +#: en/aptitude.xml:34 +msgid "" +"<menuchoice><shortcut><keycap>F</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Forbid Version</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>F</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Prohibir versiones</guimenuitem></menuchoice>" + +# type: Content of the package-information entity +#: en/aptitude.xml:35 +msgid "" +"<menuchoice><shortcut><keycap>enter</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Information</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>enter</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Información</guimenuitem></menuchoice>" + +# type: Content of the package-cycle-information entity +#: en/aptitude.xml:36 +msgid "" +"<menuchoice><shortcut><keycap>i</keycap></shortcut><guimenu>Package</" +"guimenu><guimenuitem>Cycle Information</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>i</keycap></shortcut><guimenu>Paquete</" +"guimenu><guimenuitem>Recorrer Información</guimenuitem></menuchoice>" + +# type: Content of the package-changelog entity +#: en/aptitude.xml:37 +msgid "" +"<menuchoice><shortcut><keycap>C</keycap></shortcut><guimenu>package</" +"guimenu><guimenuitem>Changelog</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>C</keycap></shortcut><guimenu>paquete</" +"guimenu><guimenuitem>Registro de cambios</guimenuitem></menuchoice>" + +# type: Content of the resolver-examine entity +#: en/aptitude.xml:39 +msgid "" +"<menuchoice><shortcut><keycap>e</keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>Examine Solution</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>e</keycap></shortcut><guimenu>Solucionador</" +"guimenu><guimenuitem>Examinar solución</guimenuitem></menuchoice>" + +# type: Content of the resolver-apply entity +#: en/aptitude.xml:40 +msgid "" +"<menuchoice><shortcut><keycap>!</keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>Apply Solution</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>!</keycap></shortcut><guimenu>Solucionador</" +"guimenu><guimenuitem>Aplicar Solución</guimenuitem></menuchoice>" + +# type: Content of the resolver-next entity +#: en/aptitude.xml:41 +msgid "" +"<menuchoice><shortcut><keycap>.</keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>Next Solution</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>.</keycap></shortcut><guimenu>Solucionador</" +"guimenu><guimenuitem>Solución siguiente</guimenuitem></menuchoice>" + +# type: Content of the resolver-previous entity +#: en/aptitude.xml:42 +msgid "" +"<menuchoice><shortcut><keycap>,</keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>Previous Solution</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>,</keycap></shortcut><guimenu>Solucionador</" +"guimenu><guimenuitem>Solución anterior</guimenuitem></menuchoice>" + +# type: Content of the resolver-first entity +#: en/aptitude.xml:43 +msgid "" +"<menuchoice><shortcut><keycap><</keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>First Solution</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap><</keycap></shortcut><guimenu>Solucionador</" +"guimenu><guimenuitem>Primera solución</guimenuitem></menuchoice>" + +# type: Content of the resolver-last entity +#: en/aptitude.xml:44 +msgid "" +"<menuchoice><shortcut><keycap>></keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>Last Solution</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>></keycap></shortcut><guimenu>Solucionador</" +"guimenu><guimenuitem>Ultima solución</guimenuitem></menuchoice>" + +# type: Content of the resolver-reject entity +#: en/aptitude.xml:45 +msgid "" +"<menuchoice><shortcut><keycap>r</keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>Toggle Rejected</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>r</keycap></shortcut><guimenu>Solucionador</" +"guimenu><guimenuitem>Conmutar Rechazados</guimenuitem></menuchoice>" + +# type: Content of the resolver-approve entity +#: en/aptitude.xml:46 +msgid "" +"<menuchoice><shortcut><keycap>a</keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>Toggle Approved</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>a</keycap></shortcut><guimenu>Solucionador</" +"guimenu><guimenuitem>Conmutar Aceptada</guimenuitem></menuchoice>" + +# type: Content of the resolver-view-target entity +#: en/aptitude.xml:47 +msgid "" +"<menuchoice><shortcut><keycap>Enter</keycap></shortcut><guimenu>Resolver</" +"guimenu><guimenuitem>View Target</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>Enter</keycap></" +"shortcut><guimenu>Solucionador</guimenu><guimenuitem>Ver objetivo</" +"guimenuitem></menuchoice>" + +# type: Content of the resolver-reject-break-holds entity +#: en/aptitude.xml:48 +msgid "" +"<menuchoice><guimenu>Resolver</guimenu><guimenuitem>Reject Breaking Holds</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Solucionador</guimenu><guimenuitem>Rechazar romper " +"bloqueos</guimenuitem></menuchoice>" + +# type: Content of the search-find entity +#: en/aptitude.xml:50 +msgid "" +"<menuchoice><shortcut><keycap>/</keycap></shortcut><guimenu>Search</" +"guimenu><guimenuitem>Find</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>/</keycap></shortcut><guimenu>Buscar</" +"guimenu><guimenuitem>Buscar</guimenuitem></menuchoice>" + +# type: Content of the search-find-back entity +#: en/aptitude.xml:51 +msgid "" +"<menuchoice><shortcut><keycap>\\</keycap></shortcut><guimenu>Search</" +"guimenu><guimenuitem>Find Backwards</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>\\</keycap></shortcut><guimenu>Buscar</" +"guimenu><guimenuitem>Buscar hacia atrás</guimenuitem></menuchoice>" + +# type: Content of the search-refind entity +#: en/aptitude.xml:52 +msgid "" +"<menuchoice><shortcut><keycap>n</keycap></shortcut><guimenu>Search</" +"guimenu><guimenuitem>Find Again</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>n</keycap></shortcut><guimenu>Buscar</" +"guimenu><guimenuitem>Buscar otra Vez</guimenuitem></menuchoice>" + +# type: Content of the search-repeat-find-back entity +#: en/aptitude.xml:53 +#, fuzzy +msgid "" +"<menuchoice><shortcut><keycap>N</keycap></shortcut><guimenu>Search</" +"guimenu><guimenuitem>Find Again Backwards</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>N</keycap><de nuevo hacia atrás</guimenuitem></" +"menuchoice>" + +# type: Content of the search-limit entity +#: en/aptitude.xml:54 +msgid "" +"<menuchoice><shortcut><keycap>l</keycap></shortcut><guimenu>Search</" +"guimenu><guimenuitem>Limit Display</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>l</keycap></shortcut><guimenu>Buscar</" +"guimenu><guimenuitem>Limitar vista</guimenuitem></menuchoice>" + +# type: Content of the search-unlimit entity +#: en/aptitude.xml:55 +msgid "" +"<menuchoice><guimenu>Search</guimenu><guimenuitem>Un-Limit Display</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Buscar</guimenu><guimenuitem>No limitar vista</" +"guimenuitem></menuchoice>" + +# type: Content of the search-find-broken entity +#: en/aptitude.xml:56 +msgid "" +"<menuchoice><shortcut><keycap>b</keycap></shortcut><guimenu>Search</" +"guimenu><guimenuitem>Find Broken</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>b</keycap></shortcut><guimenu>Buscar</" +"guimenu><guimenuitem>Buscar Roto</guimenuitem></menuchoice>" + +# type: Content of the options-preferences entity +#: en/aptitude.xml:58 +msgid "" +"<menuchoice><guimenu>Options</guimenu><guimenuitem>Preferences</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Opciones</guimenu><guimenuitem>Preferencias</" +"guimenuitem></menuchoice>" + +# type: Content of the options-revert entity +#: en/aptitude.xml:59 +msgid "" +"<menuchoice><guimenu>Options</guimenu><guimenuitem>Revert options</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Opciones</guimenu><guimenuitem>Deshacer opciones</" +"guimenuitem></menuchoice>" + +# type: Content of the views-next entity +#: en/aptitude.xml:61 +msgid "" +"<menuchoice><shortcut><keycap>F6</keycap></shortcut><guimenu>Views</" +"guimenu><guimenuitem>Next</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>F6</keycap></shortcut><guimenu>Vistas</" +"guimenu><guimenuitem>Siguiente</guimenuitem></menuchoice>" + +# type: Content of the views-prev entity +#: en/aptitude.xml:62 +msgid "" +"<menuchoice><shortcut><keycap>F7</keycap></shortcut><guimenu>Views</" +"guimenu><guimenuitem>Prev</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>F7</keycap></shortcut><guimenu>Vistas</" +"guimenu><guimenuitem>Prev</guimenuitem></menuchoice>" + +# type: Content of the views-close entity +#: en/aptitude.xml:63 +msgid "" +"<menuchoice><shortcut><keycap>q</keycap></shortcut><guimenu>Views</" +"guimenu><guimenuitem>Close</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>q</keycap></shortcut><guimenu>Vistas</" +"guimenu><guimenuitem>Cierra</guimenuitem></menuchoice>" + +# type: Content of the views-new entity +#: en/aptitude.xml:65 +msgid "" +"<menuchoice><guimenu>Views</guimenu><guimenuitem>New Package View</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Vista</guimenu><guimenuitem>Nueva vista de paquetes</" +"guimenuitem></menuchoice>" + +# type: Content of the views-audit entity +#: en/aptitude.xml:66 +msgid "" +"<menuchoice><guimenu>Views</guimenu><guimenuitem>Audit Recommendations</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Vistas</guimenu><guimenuitem>Auditar Recomendaciones</" +"guimenuitem></menuchoice>" + +# type: Content of the views-flat entity +#: en/aptitude.xml:67 +msgid "" +"<menuchoice><guimenu>Views</guimenu><guimenuitem>New Flat Package List</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Vistas</guimenu><guimenuitem>Nueva vista de paquetes " +"planas</guimenuitem></menuchoice>" + +# type: Content of the views-debtags entity +#: en/aptitude.xml:68 +msgid "" +"<menuchoice><guimenu>Views</guimenu><guimenuitem>New Debtags Browser</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Vistas</guimenu><guimenuitem>Nuevo navegador debtags</" +"guimenuitem></menuchoice>" + +# type: Content of the views-browse entity +#: en/aptitude.xml:69 +msgid "" +"<menuchoice><guimenu>Views</guimenu><guimenuitem>New Categorical Browser</" +"guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><guimenu>Vistas</guimenu><guimenuitem>Nuevo navegador de " +"categorías</guimenuitem></menuchoice>" + +# type: Content of the help-about entity +#: en/aptitude.xml:71 +msgid "" +"<menuchoice><guimenu>Help</guimenu><guimenuitem>About</guimenuitem></" +"menuchoice>" +msgstr "" +"<menuchoice><guimenu>Ayuda</guimenu><guimenuitem>Acerca de</guimenuitem></" +"menuchoice>" + +# type: Content of the help-help entity +#: en/aptitude.xml:72 +msgid "" +"<menuchoice><shortcut><keycap>?</keycap></shortcut><guimenu>Help</" +"guimenu><guimenuitem>Help</guimenuitem></menuchoice>" +msgstr "" +"<menuchoice><shortcut><keycap>?</keycap></shortcut><guimenu>Ayuda</" +"guimenu><guimenuitem>Ayuda</guimenuitem></menuchoice>" + +# type: Content of the help-manual entity +#: en/aptitude.xml:73 +msgid "" +"<menuchoice><guimenu>Help</guimenu><guimenuitem>User's Manual</guimenuitem></" +"menuchoice>" +msgstr "" +"<menuchoice><guimenu>Ayuda</guimenu><guimenuitem>Manual de usuario</" +"guimenuitem></menuchoice>" + +# type: Content of the help-faq entity +#: en/aptitude.xml:74 +msgid "" +"<menuchoice><guimenu>Help</guimenu><guimenuitem>FAQ</guimenuitem></" +"menuchoice>" +msgstr "" +"<menuchoice><guimenu>Ayuda</guimenu><guimenuitem>PUF</guimenuitem></" +"menuchoice>" + +# type: Content of the help-changelog entity +#: en/aptitude.xml:75 +msgid "" +"<menuchoice><guimenu>Help</guimenu><guimenuitem>ChangeLog</guimenuitem></" +"menuchoice>" +msgstr "" +"<menuchoice><guimenu>Ayuda</guimenu><guimenuitem>Registro de Cambios</" +"guimenuitem></menuchoice>" + +# type: Content of the help-license entity +#: en/aptitude.xml:76 +msgid "" +"<menuchoice><guimenu>Help</guimenu><guimenuitem>License</guimenuitem></" +"menuchoice>" +msgstr "" +"<menuchoice><guimenu>Ayuda</guimenu><guimenuitem>Licencia</guimenuitem></" +"menuchoice>" + +# type: Content of the Sequal entity +#: en/aptitude.xml:81 +msgid "<literal><link linkend='searchEqual'>?=</link></literal>" +msgstr "<literal><link linkend='searchEqual'>?=</link></literal>" + +# type: Content of the Snot entity +#: en/aptitude.xml:82 +msgid "<literal><link linkend='searchNot'>?not</link></literal>" +msgstr "<literal><link linkend='searchNot'>?not</link></literal>" + +# type: Content of the Sand entity +#: en/aptitude.xml:83 +msgid "<literal><link linkend='searchAnd'>?and</link></literal>" +msgstr "<literal><link linkend='searchAnd'>?and</link></literal>" + +# type: Content of the Sor entity +#: en/aptitude.xml:84 +msgid "<literal><link linkend='searchOr'>?or</link></literal>" +msgstr "<literal><link linkend='searchOr'>?or</link></literal>" + +# type: Content of the Saction entity +#: en/aptitude.xml:85 +msgid "<literal><link linkend='searchAction'>?action</link></literal>" +msgstr "<literal><link linkend='searchAction'>?action</link></literal>" + +# type: Content of the Sall-versions entity +#: en/aptitude.xml:86 +msgid "" +"<literal><link linkend='searchAllVersions'>?all-versions</link></literal>" +msgstr "" +"<literal><link linkend='searchAllVersions'>?all-versions</link></literal>" + +# type: Content of the Sany-version entity +#: en/aptitude.xml:87 +msgid "<literal><link linkend='searchAnyVersion'>?any-version</link></literal>" +msgstr "" +"<literal><link linkend='searchAnyVersion'>?any-version</link></literal>" + +# type: Content of the Sarchive entity +#: en/aptitude.xml:88 +msgid "<literal><link linkend='searchArchive'>?archive</link></literal>" +msgstr "<literal><link linkend='searchArchive'>?archive</link></literal>" + +# type: Content of the Sautomatic entity +#: en/aptitude.xml:89 +msgid "<literal><link linkend='searchAutomatic'>?automatic</link></literal>" +msgstr "<literal><link linkend='searchAutomatic'>?automatic</link></literal>" + +# type: Content of the Sbind entity +#: en/aptitude.xml:90 +msgid "<literal><link linkend='searchBind'>?bind</link></literal>" +msgstr "<literal><link linkend='searchBind'>?bind</link></literal>" + +# type: Content of the Sbroken entity +#: en/aptitude.xml:91 +msgid "<literal><link linkend='searchBroken'>?broken</link></literal>" +msgstr "<literal><link linkend='searchBroken'>?broken</link></literal>" + +# type: Content of the Sbroken-type entity +#: en/aptitude.xml:92 +msgid "" +"<literal><link linkend='searchBrokenType'>?broken-<replaceable>depType</" +"replaceable></link></literal>" +msgstr "" +"<literal><link linkend='searchBrokenType'>?broken-<replaceable>depType</" +"replaceable></link></literal>" + +# type: Content of the Sbroken-type-term entity +#: en/aptitude.xml:93 +msgid "" +"<literal><link linkend='searchBrokenTypeTerm'>?broken-<replaceable>depType</" +"replaceable></link></literal>" +msgstr "" +"<literal><link linkend='searchBrokenTypeTerm'>?broken-<replaceable>depType</" +"replaceable></link></literal>" + +# type: Content of the Sbroken-reverse-dep entity +#: en/aptitude.xml:94 +msgid "" +"<literal><link linkend='searchReverseBrokenDep'>?broken-reverse-" +"<replaceable>depType</replaceable></link></literal>" +msgstr "" +"<literal><link linkend='searchReverseBrokenDep'>?broken-reverse-" +"<replaceable>depType</replaceable></link></literal>" + +# type: Content of the Sconflicts entity +#: en/aptitude.xml:95 +msgid "<literal><link linkend='searchConflicts'>?conflicts</link></literal>" +msgstr "<literal><link linkend='searchConflicts'>?conflicts</link></literal>" + +# type: Content of the Sconfig-files entity +#: en/aptitude.xml:96 +msgid "" +"<literal><link linkend='searchConfigFiles'>?config-files</link></literal>" +msgstr "" +"<literal><link linkend='searchConfigFiles'>?config-files</link></literal>" + +# type: Content of the Sdep entity +#: en/aptitude.xml:97 +msgid "" +"<literal><link linkend='searchDep'>?<replaceable>depType</replaceable></" +"link></literal>" +msgstr "" +"<literal><link linkend='searchDep'>?<replaceable>depType</replaceable></" +"link></literal>" + +# type: Content of the Sdepends entity +#: en/aptitude.xml:99 +msgid "<literal><link linkend='searchDep'>?depends</link></literal>" +msgstr "<literal><link linkend='searchDep'>?depends</link></literal>" + +# type: Content of the Srecommends entity +#: en/aptitude.xml:100 +msgid "<literal><link linkend='searchDep'>?recommends</link></literal>" +msgstr "<literal><link linkend='searchDep'>?recommends</link></literal>" + +# type: Content of the Ssuggests entity +#: en/aptitude.xml:101 +msgid "<literal><link linkend='searchDep'>?suggests</link></literal>" +msgstr "<literal><link linkend='searchDep'>?suggests</link></literal>" + +# type: Content of the Sdescription entity +#: en/aptitude.xml:103 +msgid "" +"<literal><link linkend='searchDescription'>?description</link></literal>" +msgstr "" +"<literal><link linkend='searchDescription'>?description</link></literal>" + +# type: Content of the Sessential entity +#: en/aptitude.xml:104 +msgid "<literal><link linkend='searchEssential'>?essential</link></literal>" +msgstr "<literal><link linkend='searchEssential'>?essential</link></literal>" + +# type: Content of the Sexact-name entity +#: en/aptitude.xml:105 +msgid "<literal><link linkend='searchExactName'>?exact-name</link></literal>" +msgstr "<literal><link linkend='searchExactName'>?exact-name</link></literal>" + +# type: Content of the Sfalse entity +#: en/aptitude.xml:106 +msgid "<literal><link linkend='searchFalse'>?false</link></literal>" +msgstr "<literal><link linkend='searchFalse'>?false</link></literal>" + +# type: Content of the Sfor entity +#: en/aptitude.xml:107 +msgid "<literal><link linkend='searchFor'>?for</link></literal>" +msgstr "<literal><link linkend='searchFor'>?for</link></literal>" + +# type: Content of the Sgarbage entity +#: en/aptitude.xml:108 +msgid "<literal><link linkend='searchGarbage'>?garbage</link></literal>" +msgstr "<literal><link linkend='searchGarbage'>?garbage</link></literal>" + +# type: Content of the Sinstalled entity +#: en/aptitude.xml:109 +msgid "<literal><link linkend='searchInstalled'>?installed</link></literal>" +msgstr "<literal><link linkend='searchInstalled'>?installed</link></literal>" + +# type: Content of the Smaintainer entity +#: en/aptitude.xml:110 +msgid "<literal><link linkend='searchMaintainer'>?maintainer</link></literal>" +msgstr "<literal><link linkend='searchMaintainer'>?maintainer</link></literal>" + +# type: Content of the Snarrow entity +#: en/aptitude.xml:111 +msgid "<literal><link linkend='searchNarrow'>?narrow</link></literal>" +msgstr "<literal><link linkend='searchNarrow'>?narrow</link></literal>" + +# type: Content of the Sname entity +#: en/aptitude.xml:112 +msgid "<literal><link linkend='searchTermName'>?name</link></literal>" +msgstr "<literal><link linkend='searchTermName'>?name</link></literal>" + +# type: Content of the Snew entity +#: en/aptitude.xml:113 +msgid "<literal><link linkend='searchNew'>?new</link></literal>" +msgstr "<literal><link linkend='searchNew'>?new</link></literal>" + +# type: Content of the Sobsolete entity +#: en/aptitude.xml:114 +msgid "<literal><link linkend='searchObsolete'>?obsolete</link></literal>" +msgstr "<literal><link linkend='searchObsolete'>?obsolete</link></literal>" + +# type: Content of the Sorigin entity +#: en/aptitude.xml:115 +msgid "<literal><link linkend='searchOrigin'>?origin</link></literal>" +msgstr "<literal><link linkend='searchOrigin'>?origin</link></literal>" + +# type: Content of the Sprovides entity +#: en/aptitude.xml:116 +msgid "<literal><link linkend='searchProvides'>?provides</link></literal>" +msgstr "<literal><link linkend='searchProvides'>?provides</link></literal>" + +# type: Content of the Spriority entity +#: en/aptitude.xml:117 +msgid "<literal><link linkend='searchPriority'>?priority</link></literal>" +msgstr "<literal><link linkend='searchPriority'>?priority</link></literal>" + +# type: Content of the Sreverse-dep entity +#: en/aptitude.xml:118 +msgid "" +"<literal><link linkend='searchReverseDep'>?reverse-<replaceable>depType</" +"replaceable></link></literal>" +msgstr "" +"<literal><link linkend='searchReverseDep'>?reverse-<replaceable>depType</" +"replaceable></link></literal>" + +# type: Content of the Sreverse-depends entity +#: en/aptitude.xml:120 +msgid "" +"<literal><link linkend='searchReverseDep'>?reverse-depends</link></literal>" +msgstr "" +"<literal><link linkend='searchReverseDep'>?reverse-depends</link></literal>" + +# type: Content of the Sreverse-recommends entity +#: en/aptitude.xml:121 +msgid "" +"<literal><link linkend='searchReverseDep'>?reverse-recommends</link></" +"literal>" +msgstr "" +"<literal><link linkend='searchReverseDep'>?reverse-recommends</link></" +"literal>" + +# type: Content of the Sreverse-suggests entity +#: en/aptitude.xml:122 +msgid "" +"<literal><link linkend='searchReverseDep'>?reverse-suggests</link></literal>" +msgstr "" +"<literal><link linkend='searchReverseDep'>?reverse-suggests</link></literal>" + +# type: Content of the Sreverse-broken-dep entity +#: en/aptitude.xml:124 +msgid "" +"<literal><link linkend='searchReverseBrokenDep'>?reverse-broken-" +"<replaceable>depType</replaceable></link></literal>" +msgstr "" +"<literal><link linkend='searchReverseBrokenDep'>?reverse-broken-" +"<replaceable>depType</replaceable></link></literal>" + +# type: Content of the Ssection entity +#: en/aptitude.xml:125 +msgid "<literal><link linkend='searchSection'>?section</link></literal>" +msgstr "<literal><link linkend='searchSection'>?section</link></literal>" + +# type: Content of the Ssource-package entity +#: en/aptitude.xml:126 +msgid "" +"<literal><link linkend='searchSourcePackage'>?source-package</link></literal>" +msgstr "" +"<literal><link linkend='searchSourcePackage'>?source-package</link></literal>" + +# type: Content of the Ssource-version entity +#: en/aptitude.xml:127 +msgid "" +"<literal><link linkend='searchSourceVersion'>?source-version</link></literal>" +msgstr "" +"<literal><link linkend='searchSourceVersion'>?source-version</link></literal>" + +# type: Content of the Stag entity +#: en/aptitude.xml:128 +msgid "<literal><link linkend='searchTag'>?tag</link></literal>" +msgstr "<literal><link linkend='searchTag'>?tag</link></literal>" + +# type: Content of the Sterm entity +#: en/aptitude.xml:129 +msgid "<literal><link linkend='searchTerm'>?term</link></literal>" +msgstr "<literal><link linkend='searchTerm'>?term</link></literal>" + +# type: Content of the Sterm-prefix entity +#: en/aptitude.xml:130 +msgid "<literal><link linkend='searchTermPrefix'>?term-prefix</link></literal>" +msgstr "" +"<literal><link linkend='searchTermPrefix'>?term-prefix</link></literal>" + +# type: Content of the Strue entity +#: en/aptitude.xml:131 +msgid "<literal><link linkend='searchTrue'>?true</link></literal>" +msgstr "<literal><link linkend='searchTrue'>?true</link></literal>" + +# type: Content of the Stask entity +#: en/aptitude.xml:132 +msgid "<literal><link linkend='searchTask'>?task</link></literal>" +msgstr "<literal><link linkend='searchTask'>?task</link></literal>" + +# type: Content of the Supgradable entity +#: en/aptitude.xml:133 +msgid "<literal><link linkend='searchUpgradable'>?upgradable</link></literal>" +msgstr "<literal><link linkend='searchUpgradable'>?upgradable</link></literal>" + +# type: Content of the Suser-tag entity +#: en/aptitude.xml:134 +msgid "<literal><link linkend='searchUserTag'>?user-tag</link></literal>" +msgstr "<literal><link linkend='searchUserTag'>?user-tag</link></literal>" + +# type: Content of the Sversion entity +#: en/aptitude.xml:135 +msgid "<literal><link linkend='searchTermVersion'>?version</link></literal>" +msgstr "<literal><link linkend='searchTermVersion'>?version</link></literal>" + +# type: Content of the Svirtual entity +#: en/aptitude.xml:136 +msgid "<literal><link linkend='searchVirtual'>?virtual</link></literal>" +msgstr "<literal><link linkend='searchVirtual'>?virtual</link></literal>" + +# type: Content of the Swiden entity +#: en/aptitude.xml:137 +msgid "<literal><link linkend='searchWiden'>?widen</link></literal>" +msgstr "<literal><link linkend='searchWiden'>?widen</link></literal>" + +# type: Attribute 'lang' of: <book> +#: en/aptitude.xml:143 +msgid "en" +msgstr "es" + +# type: Content of: <book><bookinfo><title> +#: en/aptitude.xml:143 +msgid "&aptitude; user's manual" +msgstr "Manual de uso de Aptitude" + +# type: Content of: <book><bookinfo><subtitle> +#: en/aptitude.xml:144 +msgid "Version &VERSION;" +msgstr "Version &VERSION;" + +# type: Content of: <book><bookinfo> +#: en/aptitude.xml:146 +msgid "" +"<author><personname><firstname>Daniel</firstname><surname>Burrows</surname></" +"personname><email>dburrows@debian.org</email></author>" +msgstr "" +"<author><personname><firstname>Daniel</firstname><surname>Burrows</surname></" +"personname><email>dburrows@debian.org</email></author>" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:150 en/aptitude.xml:12754 en/aptitude.xml:12768 +msgid "Daniel Burrows" +msgstr "Daniel Burrows" + +# type: Content of: <book><bookinfo><legalnotice><para> +#: en/aptitude.xml:155 +msgid "" +"This manual is free software; you can redistribute it and/or modify it under " +"the terms of the GNU General Public License as published by the Free " +"Software Foundation; either version 2 of the License, or (at your option) " +"any later version." +msgstr "" +"This manual is free software; you can redistribute it and/or modify it under " +"the terms of the GNU General Public License as published by the Free " +"Software Foundation; either version 2 of the License, or (at your option) " +"any later version." + +# type: Content of: <book><bookinfo><legalnotice><para> +#: en/aptitude.xml:162 +msgid "" +"This manual is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " +"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " +"more details." +msgstr "" +"This manual is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " +"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " +"more details." + +# type: Content of: <book><bookinfo><legalnotice><para> +#: en/aptitude.xml:169 +msgid "" +"You should have received a copy of the GNU General Public License along with " +"this manual; if not, write to the Free Software Foundation, Inc., 59 Temple " +"Place, Suite 330, Boston, MA 02111-1307 USA" +msgstr "" +"You should have received a copy of the GNU General Public License along with " +"this manual; if not, write to the Free Software Foundation, Inc., 59 Temple " +"Place, Suite 330, Boston, MA 02111-1307 USA" + +# type: Content of: <book><preface><title> +#: en/aptitude.xml:182 +msgid "Introduction" +msgstr "Introducción" + +# type: Content of: <book><preface><blockquote><attribution> +#: en/aptitude.xml:186 +msgid "" +"<personname> <firstname>John</firstname> <surname>Fouhy</surname> </" +"personname>" +msgstr "" +"<personname> <firstname>John</firstname> <surname>Fouhy</surname> </" +"personname>" + +# type: Content of: <book><preface><blockquote><para> +#: en/aptitude.xml:193 +msgid "" +"<quote>Master, does Emacs possess the Buddha nature?</quote> the novice " +"asked." +msgstr "" +"<quote>Maestro, ¿posee Emacs la naturaleza del Buda?</quote> preguntó el " +"novicio." + +# type: Content of: <book><preface><blockquote><para> +#: en/aptitude.xml:198 +msgid "" +"<quote>I don't see why not,</quote> replied the master. <quote>It's got " +"bloody well everything else.</quote> Several years later, the novice " +"suddenly achieved enlightenment." +msgstr "" +"<quote>No veo porqué no,</quote>respondió el maestro. <quote>Va sobrado en " +"todo lo demás.</quote> Varios años después, de repente, el novicio alcanzó " +"la iluminación." + +# type: Content of: <book><preface><para> +#: en/aptitude.xml:205 +msgid "" +"Hello, and welcome to the &aptitude; user's manual! This introductory " +"section explains what &aptitude; is and how to get your hands on it; for " +"information on actually using it, please proceed to <xref " +"linkend='chapGettingStarted'/>." +msgstr "" +"Hola y bienvenido al manual de usuario de &aptitude;! Esta sección " +"introductoria explica que es &aptitude; y como meter las manos en ello; en " +"lo referente a la información para usarlo de verdad, , por favor, dirigete a " +"<xref linkend='chapGettingStarted'/>." + +# type: Content of: <book><preface><section><title> +#: en/aptitude.xml:213 +msgid "What is this aptitude thing, anyway?" +msgstr "Bueno, pero que esta cosa de aptitude?" + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:216 +msgid "" +"&aptitude; is a featureful package manager for Debian GNU/Linux systems, " +"based on the renowned &apt; package management infrastructure. &aptitude; " +"provides the functionality of &dselect; and &apt-get;, as well as many " +"additional features not found in either program." +msgstr "" +"&aptitude; es un gestor de paquetes con múltiples características diseñado " +"para sistemas Debian GNU/Linux, basado en la infraestructura del conocido " +"gestor de paquetes &apt; &aptitude; provee la funcionalidad de &dselect; y " +"&apt-get; asi como otras funcionalidades adicionales que no se encuentran en " +"ningunos de los programas anteriormente mencionados." + +# type: Content of: <book><preface><section><title> +#: en/aptitude.xml:227 +msgid "What is a package manager?" +msgstr "¿Qué es un gestor de paquetes?" + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:230 +msgid "" +"A <firstterm>package manager</firstterm> keeps track of what software is " +"installed on your computer, and allows you to easily install new software, " +"upgrade software to newer versions, or remove software that you previously " +"installed. As the name suggests, package managers deal with " +"<firstterm>packages</firstterm>: collections of files that are bundled " +"together and can be installed and removed as a group." +msgstr "" +"Un <firstterm> gestor de paquetes </firstterm> mantiene un registro de qué " +"software se instala en tu ordenador, y te permite instalar software nuevo, " +"actualizarlo o eliminar software de una manera sencilla. Como su propio " +"nombre sugiere, los gestores de paquetes manejan <firstterm>paquetes</" +"firstterm>:conjuntos de ficheros que son agrupados y que se pueden instalar " +"y eliminar en grupo." + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:240 +msgid "" +"Often, a package is just a particular program. For instance, the instant " +"messaging client <command>gaim</command> is contained in the Debian package " +"of the same name. On the other hand, it is common for programs to consist " +"of several interrelated packages. For instance, the <command>gimp</command> " +"image editor consists not only of the <systemitem>gimp</systemitem> package, " +"but also of the <systemitem>gimp-data</systemitem> package; in addition, " +"several optional add-on packages (containing esoteric data, documentation, " +"and so on) are also available. It is also possible for several small, " +"related programs to be contained in a single package: for instance, the " +"<systemitem>fileutils</systemitem> package contains several common Unix " +"commands, such as <command>ls</command>, <command>cp</command>, etc." +msgstr "" +"A menudo, un paquete es un solo programa. Por ejemplo, el cliente de " +"mensajería instantánea <command>gaim</command> esta contenido en un paquete " +"Debían del mismo nombre. Por otro lado, es común que un programa consista " +"de varios paquetes relacionados entre ellos. Por, ejemplo, el editor de " +"imágenes <command>gimp</command> no solo consiste del paquete " +"<systemitem>gimp</systemitem>, sino también del paquete <systemitem>gimp-" +"data</systemitem>; además, hay otros paquetes opcionales (los cuales " +"contienen datos esotéricos, documentación y así en adelante) también están " +"disponibles. También es posible que varios programas pequeños y " +"relacionados entre sí puedan estar contenidos en el mismo paquete: por " +"ejemplo, el paquete<systemitem>fileutils</systemitem> contiene varios " +"comandos Unix, tales como <command>ls</command>, <command>cp</command>, etc." + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:258 +msgid "" +"Some packages require other packages in order to function. In Debian, " +"packages can <firstterm>depend</firstterm> upon, <firstterm>recommend</" +"firstterm>, <firstterm>suggest</firstterm>, <firstterm>break</firstterm>, or " +"<firstterm>conflict</firstterm> with other packages." +msgstr "" +"Algunos paquete requieren otros para funcionar. En Debían, algunos paquetes " +"pueden <firstterm>depender</firstterm>, <firstterm>recomendar</firstterm>, " +"<firstterm>sugerir</firstterm>, <firstterm>romper</firstterm>, o entrar en " +"<firstterm>conflicto</firstterm> con otros paquetes." + +# type: Content of: <book><preface><section><itemizedlist><listitem><para> +#: en/aptitude.xml:270 +msgid "" +"If a package A depends upon another package B, then B is required for A to " +"operate properly. For instance, the <systemitem>gimp</systemitem> package " +"depends upon the <systemitem>gimp-data</systemitem> package in order to " +"ensure that the <ulink url='http://www.gimp.org'>GIMP</ulink> graphics " +"editor can access its critical data files." +msgstr "" +"Si el paquete A depende de otro paquete B, entonces B es requerido para que " +"A funcione correctamente. Por ejemplo, el paquete <systemitem>gimp</" +"systemitem> depende del paquete <systemitem>gimp-data</systemitem> para " +"asegurarse de que el editor gráfico <ulink url='http://www.gimp.org'>GIMP</" +"ulink> pueda acceder a sus ficheros críticos de datos." + +# type: Content of: <book><preface><section><itemizedlist><listitem><para> +#: en/aptitude.xml:282 +msgid "" +"If a package A recommends another package B, then B provides important " +"additional functionality to A that will be desired in most circumstances. " +"For instance, the <systemitem>mozilla-browser</systemitem> package " +"recommends the <systemitem>mozilla-psm</systemitem> package, which adds " +"support for secure data transfers to the <ulink url='http://www.mozilla." +"org'>Mozilla</ulink> Web browser. While <systemitem>mozilla-psm</" +"systemitem> is not strictly required for Mozilla to function, most users " +"will want Mozilla to support the secure transmission of confidential data " +"(such as credit card numbers)." +msgstr "" +"Si el paquete A recomienda otro paquete B, entonces B provee una importante " +"funcionalidad adicional a A que sería deseable en la mayoría de las " +"circunstancias. Por ejemplo, el paquete <systemitem>mozilla-browser</" +"systemitem> recomienda el paquete <systemitem>mozilla-psm</systemitem>, el " +"cual añade la capacidad para la transferencia segura de datos al navegador " +"web <ulink url='http://www.mozilla.org'>Mozilla</ulink>. Aunque " +"<systemitem>mozilla-psm</systemitem> no es estrictamente requerido para que " +"Mozilla funcione, la mayoría de usuarios desearían que Mozilla diese soporte " +"a la transmisión de datos confidenciales (tales como los números de una " +"tarjeta de crédito)." + +# type: Content of: <book><preface><section><itemizedlist><listitem><para> +#: en/aptitude.xml:298 +msgid "" +"If a package A suggests another package B, then package B provides " +"functionality that may enhance A, but is not needed in most cases. For " +"instance, the <systemitem>kmail</systemitem> package suggests the " +"<systemitem>gnupg</systemitem> package, which contains encryption software " +"that can be used by <ulink url='http://kmail.kde.org/'>KMail</ulink>." +msgstr "" +"Si el paquete A sugiere otro paquete B, entonces el paquete B proporciona " +"una funcionalidad que puede que mejore A, pero que no es necesario en la " +"mayoría de los casos. Por ejemplo, el paquete <systemitem>kmail</" +"systemitem> sugiere el paquete <systemitem>gnupg</systemitem>, el cual " +"contiene software de encriptación que puede ser usado por <ulink url='http://" +"kmail.kde.org/'>KMail</ulink>." + +# type: Content of: <book><preface><section><itemizedlist><listitem><para> +#: en/aptitude.xml:310 +msgid "" +"If a package A conflicts with another package B, then the two packages " +"cannot be installed at the same time. For instance, <systemitem>fb-music-" +"hi</systemitem> conflicts with <systemitem>fb-music-low</systemitem> because " +"they provide alternate sets of music for the game <ulink url='http://www." +"frozen-bubble.org'>Frozen Bubble</ulink>." +msgstr "" +"Si el paquete A entra en conflicto con otro paquete B, entonces los dos " +"paquetes no pueden estar instalados a la vez. Por ejemplo, <systemitem>fb-" +"music-hi</systemitem>entra en concflicto con <systemitem>fb-music-low</" +"systemitem> porque proveen conjuntos alternativos de sonidos para el juego " +"<ulink url='http://www.frozen-bubble.org'>Frozen Bubble</ulink>." + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:321 +msgid "" +"The job of a package manager is to present an interface which assists the " +"user in managing the collection of packages installed on his or her system. " +"&aptitude; provides such an interface by building on the &apt; package " +"management system." +msgstr "" +"La labor de un gestor de paquetes es la de presentar una interfaz que asista " +"al usuario en la tarea de gestionar el conjunto de paquetes que están " +"instalados en su sistema \n" +"&aptitude; proporciona una interfaz basandose en el sistema de gestión de " +"paquetes &apt;." + +# type: Content of: <book><preface><section><title> +#: en/aptitude.xml:330 +msgid "What is the &apt; system?" +msgstr "Qué es el sistema &apt;?" + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:333 +msgid "" +"Being able to install and remove packages is great, but the basic software " +"for doing this (known as <systemitem>dpkg</systemitem>) does exactly that " +"and nothing more. This is fine if you download one or two packages by hand, " +"but quickly becomes cumbersome when you are trying to manage a large number " +"of packages. Furthermore, if your shiny new package requires software you " +"haven't yet installed, you have to download the newly required software by " +"hand. And if you later decide to remove the no-longer-shiny package, these " +"extra packages will linger on your system, consuming hard drive space, " +"unless you manually remove them." +msgstr "" +"Ser capaz de instalar y eliminar paquetes esta muy bien, pero el software " +"básico que realiza esta función (conocido como <systemitem>dpkg</" +"systemitem>) hace exactamente esto y nada más. Esto esta bien si te " +"descargas uno o dos paquetes a mano, pero enseguida se convierte en una " +"ardua tarea cuando intentas gestionar un número grande de paquetes. Mas aún, " +"si tu flamante paquete nuevo requiere software que no esta instalado " +"previamente, vas a tener que bajarte los paquetes recién requeridos a mano. " +"Y si después decides remover el ya-no-tan-flamante software, estos paquetes " +"extra se quedarán en tu sistema, consumiendo espacio, a menos que los " +"elimines manualmente." + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:347 +msgid "" +"Obviously, all of this manual labor is a tedious chore, and so most package " +"management systems come with software which takes care of some or all of it " +"for you. &apt; is a common base on which to build these programs: in " +"addition to &aptitude;, programs such as <command>synaptic</command> and " +"<command>apt-watch</command> make use of &apt;." +msgstr "" +"Obviamente, todo este labor manual es tedioso, y por lo tanto la mayoría de " +"sistemas de gestión de paquetes vienen con software que se ocupa de algo o " +"de toda esta labor por ti. &apt; proporciona una base común sobre la que " +"construir estos programas: además de &aptitude;, programas tales como " +"<command>synaptic</command> y <command>apt-watch</command> hacen uso de " +"&apt;." + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:356 +msgid "" +"&apt; works by keeping a list of the packages that can be downloaded from " +"Debian on your computer. This list is used to find packages that need to be " +"upgraded and to install new packages. &apt; can also solve many dependency " +"problems automatically: for instance, when you choose to install a package, " +"it will find any additional required packages and install those as well." +msgstr "" +"&apt; funciona mediante el registro de una lista de los paquetes que pueden " +"ser descargados desde Debían en tu ordenador. Esta lista es útil a la hora " +"de encontrar los paquetes que necesitan ser actualizados y para instalar " +"paquetes nuevos. &apt; puede también resolver problemas de dependencias " +"automáticamente: por ejemplo, cuando escoges instalar un paquete, encontrará " +"cualquier paquete adicional requerido e instalar esos también." + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:366 +msgid "" +"When working with a package manager based on &apt;, such as &aptitude;, you " +"will typically perform three basic tasks: you will <firstterm>update</" +"firstterm> the list of packages that are available by downloading new lists " +"from the Debian servers, you will <firstterm>select</firstterm> which " +"packages should be installed, upgraded, or removed, and finally, you will " +"<firstterm>commit</firstterm> your selections by actually performing the " +"installations, removals, etc." +msgstr "" +"Cuando usas un gestor de paquetes basado en &apt;, tales como &aptitude;, " +"por general realizaras tres tareas básicas: <firstterm>actualizar</" +"firstterm> la lista de paquetes que están disponibles mediante la descarga " +"de nuevas listas de los servidores de Debian, <firstterm>seleccionar</" +"firstterm> qué paquetes deben ser instalados, actualizados o eliminados, y " +"finalmente, <firstterm>confirmar</firstterm> tus selecciones realizando de " +"verdad las instalaciones, eliminaciones, etc." + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:377 +msgid "" +"&apt;-based package managers read the list of <quote>sources</quote> -- " +"repositories of Debian packages -- from the file <filename>/etc/apt/sources." +"list</filename>. The format and contents of this file are beyond the scope " +"of this document, but are described in the manual page <systemitem>sources." +"list(5)</systemitem>." +msgstr "" +"Los sistemas de gestión de paquetes basados en &apt; leen la lista de " +"<quote>sources</quote> -- repositorios de paquetes Debían -- del " +"fichero<filename>/etc/apt/sources.list</filename>. El formato y contenidos " +"de este fichero están más allá del alcance de este documento, pero son " +"descritos en la página de manual <systemitem>sources.list(5)</systemitem>." + +# type: Content of: <book><preface><section><title> +#: en/aptitude.xml:388 +msgid "How can I get &aptitude;?" +msgstr "¿Como puedo instalar &aptitude;?" + +# type: Content of: <book><preface><section><para> +#: en/aptitude.xml:392 +msgid "" +"In case you are reading this manual but &aptitude; is not yet installed on " +"your system, this section explains how to correct this unfortunate " +"situation. Most people should head straight for the section on <link " +"linkend='secBinaryPackages'>binary packages</link>." +msgstr "" +"En el caso de que estés leyendo este manual sin que &aptitude; esté ya " +"instalado en tu sistema, esta sección te ayudará a corregir esta " +"desafortunada situación. La mayoría de la gente debería ir directamente a " +"la sección en <link linkend='secBinaryPackages'>binary packages</link>." + +# type: Content of: <book><preface><section><section><title> +#: en/aptitude.xml:400 +msgid "" +"Pre-built &aptitude; packages, or, <quote>what 99% of users should do</quote>" +msgstr "" +"Paquetes precompilados en &aptitude;, o <quote>lo que el 99% de los usuarios " +"deberían hacer</quote>" + +# type: Content of: <book><preface><section><section><para> +#: en/aptitude.xml:403 +msgid "" +"Pre-built, or <quote>binary</quote> packages are the easiest and most common " +"way to install &aptitude;. You should only attempt a <link " +"linkend='secSourceInstall'>source install</link> if binary packages are not " +"available for some reason, or if you have unusual needs that are not met by " +"binary packages." +msgstr "" +"Paquetes precompilados, o paquetes <quote>binarios</quote> proporcionan la " +"manera mas sencilla y común de instalar &aptitude;. Solo se debe intentar " +"una <link linkend='secSourceInstall'>instalación desde las fuentes</link> si " +"los paquetes binarios no están disponibles por alguna razón, y si tienes " +"necesidades especiales que no son disponibles con los paquetes binarios." + +# type: Content of: <book><preface><section><section><para> +#: en/aptitude.xml:411 +msgid "" +"If you are using a Debian system, execute the following command as &root;: " +"<userinput>apt-get install aptitude</userinput>. If you are not using a " +"Debian system, your system provider might have created a pre-built package " +"of &aptitude;; if you are not sure, you can contact them for further " +"suggestions." +msgstr "" +"Si estas usando un sistema Debían, ejecuta el siguiente comando como &root;: " +"<userinput>apt-get install aptitude</userinput>. Si no estas usando un " +"sistema Debían, puede que tu proveedor de software haya creado un paquete " +"precompilado de &aptitude;; puedes contactar con ellos para preguntas " +"posteriores si no estas seguro. " + +# type: Content of: <book><preface><section><section><title> +#: en/aptitude.xml:421 +msgid "Building &aptitude; from source code" +msgstr "Compilando &aptitude; desde el código fuente. " + +# type: Content of: <book><preface><section><section><para> +#: en/aptitude.xml:424 +msgid "" +"You also can build &aptitude; from source; however, this is probably not a " +"useful exercise unless &apt; is already available on your system. If it is, " +"you can install &aptitude; from source with the following steps:" +msgstr "" +"También puedes construir &aptitude; desde las fuentes; por otro lado, este " +"no es un ejercicio útil a menos que tengas &apt; ya instalado en tu sistema. " +"Si lo está, puedes instalar &aptitude; desde las fuentes mediante los " +"siguientes pasos:" + +# type: Content of: <book><preface><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:433 +msgid "Install the following pieces of software:" +msgstr "Instala los siguientes programas:" + +# type: Content of: <book><preface><section><section><orderedlist><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:439 +msgid "A C++ compiler, such as <ulink url='http://gcc.gnu.org'>g++</ulink>." +msgstr "" +"Un compilador C++, tales como <ulink url='http://gcc.gnu.org'>g++</ulink>." + +# type: Content of: <book><preface><section><section><orderedlist><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:446 +msgid "" +"The development files for &apt;, typically available in a package with a " +"name like <systemitem>libapt-pkg-dev</systemitem>." +msgstr "" +"Los ficheros de desarrollo de &apt; los cuales se encuentran por lo general " +"en un paquete con un nombre como <systemitem>libapt-pkg-dev</systemitem>." + +# type: Content of: <book><preface><section><section><orderedlist><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:455 +msgid "" +"The <systemitem>libsigc++-2.0</systemitem> library, available in the package " +"<systemitem>libsigc++-2.0-dev</systemitem> or from <ulink url='http://" +"libsigc.sourceforge.net'></ulink>." +msgstr "" +"La librería <systemitem>libsigc++-2.0</systemitem>, disponible en el paquete " +"<systemitem>libsigc++-2.0-dev</systemitem> o desde <ulink url='http://" +"libsigc.sourceforge.net'></ulink>." + +# type: Content of: <book><preface><section><section><orderedlist><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:465 +msgid "" +"The <systemitem>cwidget</systemitem> library, available in the package " +"<systemitem>libcwidget-dev</systemitem> or from <ulink url='http://cwidget." +"alioth.debian.org'></ulink>." +msgstr "" +"La librería <systemitem>cwidget</systemitem>, disponible en el paquete " +"<systemitem>libcwidget-dev</systemitem> o en <ulink url='http://cwidget." +"alioth.debian.org'></ulink>." + +# type: Content of: <book><preface><section><section><orderedlist><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:475 +msgid "" +"The <systemitem>gettext</systemitem> program, which should be included with " +"your Linux distribution." +msgstr "" +"El programa <systemitem>gettext</systemitem>, que debería estar ya incluido " +"en tu distribución Linux." + +# type: Content of: <book><preface><section><section><orderedlist><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:482 +msgid "" +"A <systemitem>make</systemitem> tool, such as <ulink url='http://www.gnu.org/" +"software/make'>GNU make</ulink>." +msgstr "" +"Una herramienta <systemitem>make</systemitem>, tal como <ulink url='http://" +"www.gnu.org/software/make'>GNU make</ulink>." + +# type: Content of: <book><preface><section><section><orderedlist><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:490 +msgid "" +"Last but not least, download the most recent &aptitude; source code, " +"available from <ulink url='http://packages.debian.org/unstable/admin/" +"aptitude'></ulink>. (scroll to the bottom of the page and download the " +"<quote>.orig.tar.gz</quote> file)" +msgstr "" +"Por ultimo pero no por ello menos importante, descarga la versión más " +"reciente del código fuente, disponible en <ulink url='http://packages.debian." +"org/unstable/admin/aptitude'></ulink>. (deslizate hasta la base de la " +"página y descarga el fichero <quote>.orig.tar.gz</quote>)" + +# type: Content of: <book><preface><section><section><para> +#: en/aptitude.xml:502 +msgid "" +"Once all the required components are available, open a terminal and execute " +"the command <command>tar zxf aptitude-&VERSION;.tar.gz</command> to unpack " +"the source code. Once the source code is unpacked, type <command>cd " +"aptitude-&VERSION; && ./configure && make</command> to " +"compile &aptitude;. If this succeeds, make sure you are the &root; user (by " +"using <command>su</command>, for instance), then type <command>make install</" +"command> to install &aptitude; on your computer. Once &aptitude; is " +"successfully installed, typing <command>aptitude</command> at a command " +"prompt should start the program." +msgstr "" +"Una vez que todos los componentes requeridos estén disponibles, abre una " +"terminal y ejecuta el siguiente comando <command>tar zxf aptitude-&VERSION;." +"tar.gz</command> para desempaquetar el codigo fuente. Una vez que el código " +"fuente se ha desempaquetado, teclea <command>cd aptitude-&VERSION; &" +"& ./configure && make</command> para compilar &aptitude;. Si " +"tienes éxito, asegurate de que eres el usuario &root;. (usando <command>su</" +"command>, por ejemplo), y despues teclea <command>make install</command> " +"para instalar &aptitude; en tu equipo. Una vez que hayas instalado " +"&aptitude; con éxito, teclear <command>aptitude</command> en una terminal " +"debería cargar el programa. " + +# type: Content of: <book><preface><section><section><title> +#: en/aptitude.xml:518 +msgid "Tracking and participating in &aptitude; development" +msgstr "Siguiendo y participando en el desarrollo de &aptitude;" + +# type: Content of: <book><preface><section><section><section><title> +#: en/aptitude.xml:521 +msgid "Getting the &aptitude; development source tree" +msgstr "Consiguiendo el arból de desarrollo de &aptitude;" + +# type: Content of: <book><preface><section><section><section><para> +#: en/aptitude.xml:523 +msgid "" +"If you want to test the latest bleeding-edge source code for &aptitude;, you " +"can download unreleased &aptitude; source code using Mercurial. Install " +"Mercurial (available from <ulink url='http://www.selenic.com/mercurial/'></" +"ulink>) and execute the command <command>hg clone http://hg.debian.org/hg/" +"aptitude/head aptitude</command> to retrieve the most recent source code." +msgstr "" +"Si quieres probar el más reciente código fuente de &aptitude;, puedes " +"descargarte el código fuente sin publicar de &aptitude; usando Mercurial. " +"Instala Mercurial (disponible en <ulink url='http://www.selenic.com/" +"mercurial/'></ulink>) y ejecuta el comando <command>hg clone http://hg." +"debian.org/hg/aptitude/head aptitude</command> para descargarte el código " +"fuente mas reciente." + +# type: Content of: <book><preface><section><section><section><warning><para><footnote> +#: en/aptitude.xml:536 +msgid "" +"The &aptitude; Mercurial repository is an active development tree; it will " +"change as bugs are fixed and features are added, and there is absolutely no " +"guarantee that it will even compile, let alone run properly! Bug reports are " +"welcome, but be aware that you use development code entirely at your own " +"risk!<footnote>" +msgstr "" +"El repositorio de &aptitude; en Mercurial es un árbol de desarrollo activo; " +"varía a medida que los bugs son corregidos y nuevas características son " +"añadidas, y no hay ninguna garantía de que puedas compilarlo, ¡no digamos " +"arrancarlo! ¡Los informes de bugs son bienvenidos, pero se consciente de que " +"estas usando el código de desarrollo a tu cuenta y riesgo!<footnote>" + +# type: Content of: <book><preface><section><section><section><warning><para><footnote><para> +#: en/aptitude.xml:542 +msgid "" +"Of course, all free software is used at your own risk, but the risk involved " +"in using an active development tree is much higher." +msgstr "" +"Por supuesto, todo el software libre se emplea a tu cuenta y riesgo, pero el " +"riesgo relacionado con usar un árbol de desarrollo activo es mucho mayor." + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:545 en/aptitude.xml:2024 en/aptitude.xml:3598 +#: en/aptitude.xml:4985 en/aptitude.xml:5144 en/aptitude.xml:6139 +#: en/aptitude.xml:7055 en/aptitude.xml:8488 +msgid "</footnote>" +msgstr "</footnote>" + +# type: Content of: <book><preface><section><section><section><title> +#: en/aptitude.xml:551 +msgid "Mailing list" +msgstr "Lista de correo" + +# type: Content of: <book><preface><section><section><section><para> +#: en/aptitude.xml:554 +msgid "" +"The primary mailing list for &aptitude; development is <email>aptitude-" +"devel@lists.alioth.debian.org</email>. Archives of the list are located at " +"<ulink url='http://lists.alioth.debian.org/pipermail/aptitude-devel/'/>. To " +"subscribe, visit the Web page <ulink url='http://lists.alioth.debian.org/" +"mailman/listinfo/aptitude-devel'/>." +msgstr "" +"La lista de correo primaria para &aptitude; es <email>aptitude-devel@lists." +"alioth.debian.org</email>. Los archivos de esta lista se encuentran en " +"<ulink url='http://lists.alioth.debian.org/pipermail/aptitude-devel/'/>. " +"Para suscribirte, visita la pagina web <ulink url='http://lists.alioth." +"debian.org/mailman/listinfo/aptitude-devel'/>." + +# type: Content of: <book><preface><section><section><section><title> +#: en/aptitude.xml:564 +msgid "Submitting patches" +msgstr "Mandando parches" + +# type: Content of: <book><preface><section><section><section><para> +#: en/aptitude.xml:567 +msgid "" +"Ideally, patches should be submitted to the &aptitude; mailing list, " +"<email>aptitude-devel@lists.alioth.debian.org</email>. But if you prefer " +"sending them by private email, you may email them to " +"<email>aptitude@packages.debian.org</email> or <email>dburrows@debian.org</" +"email>. A brief description of the motivation behind your patch, and an " +"explanation of how it works, are greatly appreciated." +msgstr "" +"Preferentemente, los parches deben ser mandados a lista de correo de " +"&aptitude; <email>aptitude-devel@lists.alioth.debian.org</email>. Pero si " +"prefieres mandarlos a través de un email privado, debes hacerlo a " +"<email>aptitude@packages.debian.org</email> o <email>dburrows@debian.org</" +"email>. Apreciaríamos de manera especial una breve descripción de la " +"motivación que hay detrás de tu parche, y una explicación de su " +"funcionamiento." + +# type: Content of: <book><preface><section><section><section><title> +#: en/aptitude.xml:579 +msgid "Tracking changes to the &aptitude; source tree" +msgstr "Siguiendo los cambios en el árbol de fuentes de &aptitude;" + +# type: Content of: <book><preface><section><section><section><para> +#: en/aptitude.xml:582 +msgid "" +"The &aptitude; source tree is regularly updated with new features, bugfixes, " +"and new bugs. Once the source code is available on your computer (see the " +"previous section), you can <command>cd</command> into it and type " +"<command>hg pull && hg update</command> to update it with any " +"changes made to the main repository." +msgstr "" +"El árbol de fuentes de &aptitude; es actualizado regularmente con nuevas " +"características, arreglos de bugs, y bugs nuevos. Una vez que el código " +"fuente esté disponible en tu ordenador (vea la sección anterior), puedes " +"<command>cd</command> para acceder a la carpeta y teclear <command>hg pull " +"&& hg update</command> para actualizarlo con cualquier cambio que se " +"haya podido introducir en el repositorio central." + +# type: Content of: <book><preface><section><section><section><para> +#: en/aptitude.xml:591 +msgid "" +"To automatically receive notifications when changes are made to the " +"&aptitude; codebase, subscribe to the RSS feed available at <ulink " +"url='http://hg.debian.org/hg/aptitude/head?cl=tip;style=rss'/>." +msgstr "" +"Para recibir automáticamente notificaciones cuando se realicen cambios en el " +"código base de &aptitude;, suscribete al RSS feed disponible en <ulink " +"url='http://hg.debian.org/hg/aptitude/head?cl=tip;style=rss'/>." + +# type: Content of: <book><preface><section><section><section><title> +#: en/aptitude.xml:599 +msgid "Building &aptitude; from the development tree" +msgstr "Compilando &aptitude; desde el árbol de desarrollo" + +# type: Content of: <book><preface><section><section><section><para> +#: en/aptitude.xml:602 +msgid "" +"To build aptitude from the Mercurial repository, you must have the programs " +"<systemitem>autoconf</systemitem> and <systemitem>automake</systemitem> " +"installed. Type <command>sh ./autogen.sh && ./configure</command> " +"to generate the files needed to compile &aptitude;, then execute " +"<command>make</command> and <command>make install</command>." +msgstr "" +"Para compilar &aptitude; desde el repositorio Mercurial, debes tener los " +"programas <systemitem>autoconf</systemitem> y <systemitem>automake</" +"systemitem> instalados. Introduce <command>sh ./autogen.sh && ./" +"configure</command> para generar los ficheros necesarios para compilar " +"&aptitude; y ejecuta <command>make</command> y <command>make install</" +"command>." + +# type: Content of: <book><chapter><title> +#: en/aptitude.xml:616 +msgid "Getting started" +msgstr "Empezando" + +# type: Content of: <book><chapter><blockquote><attribution> +#: en/aptitude.xml:620 +msgid "" +"<personname> <firstname>Lao</firstname> <surname>Tsu</surname> </personname>" +msgstr "" +"<personname> <firstname>Lao</firstname> <surname>Tsu</surname> </personname>" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:627 +msgid "A journey of a thousand miles must begin with a single step." +msgstr "Una travesía de mil millas debe empezar con un solo paso." + +# type: Content of: <book><chapter><para> +#: en/aptitude.xml:633 +msgid "" +"&aptitude; is a sizeable program with many features, and it can be a bit " +"overwhelming for new users to get acquainted with it. This chapter does not " +"exhaustively describe the features of &aptitude; (see <xref " +"linkend='chapRefGuide'/> for that), but it does provide a walk-through of " +"the basic and most commonly used features of the program." +msgstr "" +"&aptitude; es un programa relativamente grande con muchas características y " +"que puede presentar ciertas dificultades al usuario a la hora de " +"familiarizarse con él. Este capítulo no describe de manera exhaustiva las " +"características de &aptitude; (vea <xref linkend='chapRefGuide'/> para " +"ello), pero proporciona una presentación de las funciones mas básicas y " +"empleadas." + +# type: Content of: <book><chapter><section><title> +#: en/aptitude.xml:642 +msgid "Using &aptitude;" +msgstr "Usando &aptitude;" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:645 +msgid "" +"This section describes how to use the visual interface of &aptitude;. For " +"information on using &aptitude;'s command-line interface, see <xref " +"linkend='secUsingCmdline'/>." +msgstr "" +"Esta sección describe como usar la interfaz gráfica de &aptitude;. Para " +"información relacionada con el uso de la interfaz de comandos de &aptitude;, " +"veasé <xref linkend='secUsingCmdline'/>." + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:651 +msgid "&aptitude; basics" +msgstr "Nociones básicas de &aptitude;" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:653 +msgid "" +"To run &aptitude;, open your favorite text terminal, and at the command " +"line, type:" +msgstr "" +"Para arrancar &aptitude;, abre tu terminal de texto favorito y, en la linea " +"de comandos, teclea:" + +# type: Content of: <book><chapter><section><section><screen> +#: en/aptitude.xml:657 +#, no-wrap +msgid "<prompt>foobar$</prompt> <userinput>aptitude</userinput>" +msgstr "<prompt>foobar$</prompt> <userinput>aptitude</userinput>" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:660 +msgid "" +"Once the cache is loaded (this may take some time on slower machines), the " +"main aptitude screen should appear:" +msgstr "" +"Una vez que el almacén se cargue (esto puede llevar algún tiempo en maquinas " +"mas lentas), la pantalla central de aptitude debería aparecer:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:671 en/aptitude.xml:788 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1\n" +"--- Installed Packages\n" +"--- Not Installed Packages\n" +"--- Obsolete and Locally Created Packages\n" +"--- Virtual Packages\n" +"--- Tasks\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"These packages are currently installed on your computer.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" +" Acciones Deshacer Paquete Encontrar Opciones Vistas Ayuda\n" +"f10: Menú ?: Ayuda q: Salir u: Actualizar g: Descarga/Instala/Elimina Paqs\n" +"aptitude 0.2.14.1\n" +"--- Paquetes instalados\n" +"--- Paquetes no instalados\n" +"--- Paquetes obsoletos y creados localmente\n" +"--- Paquetes virtuales\n" +"--- Tareas\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"Estos paquetes están instalados en su ordenador.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:701 +msgid "" +"As you can see, the main screen of &aptitude; is divided into several " +"regions. The blue line at the top of the terminal is the menu bar, and the " +"blue lines below it are informational messages describing some important " +"commands. The black space that follows is the list of all available " +"packages, in which some groups of packages are listed. The currently " +"selected group (<quote>Installed Packages</quote>) is highlighted, and its " +"description is shown in the lower black space." +msgstr "" +"Como puedes ver, la pantalla principal de &aptitude; esta dividida en varias " +"áreas. La línea azul en la parte superior de la terminal es la barra de " +"menú, y las líneas inferiores son mensajes informativos describiendo algunos " +"comandos importantes. El espacio negro que sigue es la lista de todos los " +"paquetes disponibles, en la cual algunos grupos de paquetes estan listados. " +"El grupo seleccionado (<quote>Paquetes instalados</quote>) esta resaltado, y " +"su descripción se muestra en el espacio inferior negro." + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:713 +msgid "" +"As the top line of the screen suggests, you can access aptitude's menus by " +"pressing <keycombo action='simul'><keycap>Control</keycap><keycap>t</" +"keycap></keycombo>; you can also click the mouse on a menu title if your " +"system supports it. Pressing <keycombo action='simul'><keycap>Control</" +"keycap><keycap>t</keycap></keycombo> will open the Actions menu:" +msgstr "" +"Como sugiere la línea superior de la pantalla, puedes acceder al menú de " +"aptitude presionando <keycombo action='simul'><keycap>Control</" +"keycap><keycap>t</keycap></keycombo>; también puedes hacer click sobre el " +"titulo de menú si tu sistema lo permite. Presionar <keycombo " +"action='simul'><keycap>Control</keycap><keycap>t</keycap></keycombo> abriría " +"el menu de Acciones:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:726 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"+-------------------------+ u: Update g: Download/Install/Remove Pkgs\n" +"|Install/remove packages g|\n" +"|Update package list u|\n" +"|Forget new packages f|\n" +"|Clean package cache |eated Packages\n" +"|Clean obsolete files |\n" +"|Mark Upgradable U|\n" +"|Play Minesweeper |\n" +"|Become root |\n" +"+-------------------------+\n" +"|Quit Q|\n" +"+-------------------------+\n" +"These packages are currently installed on your computer.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"Perform all pending installs and removals" +msgstr "" +" Acciones Deshacer Paquete Encontrar Opciones Vistas Ayuda\n" +"+-------------------------+ u: Actualizar g: Descarga/Instala/Elimina Paqs\n" +"|Instalar/eliminar paquetes g |\n" +"|Actualizar la lista de paquetes u|\n" +"|Olvidar paquetes nuevos f|\n" +"|Limpiar el almacén de paquetes |\n" +"|Limpiar ficheros obsoletos |\n" +"|Marcar actualizable U|\n" +"|Jugar al buscaminas |\n" +"|Convertirse en administrador |\n" +"+-------------------------+\n" +"|Salir Q|\n" +"+-------------------------+\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"Realizar todas las instalaciones y eliminaciones pendientes" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:755 +msgid "" +"Use the arrow keys and <keycap>Enter</keycap> to select menu items (or, if " +"your system supports it, click on them with a mouse); to close the menu " +"without selecting anything, press <keycombo><keycap>Control</" +"keycap><keycap>t</keycap></keycombo> again. The currently highlighted menu " +"item is explained at the bottom of the screen. If a menu item can be " +"activated using a keyboard shortcut, the shortcut is displayed in the menu: " +"for instance, the command <quote>Update package list</quote> can be " +"activated by pressing <keycap>u</keycap>." +msgstr "" +"Usa las teclas de dirección y <keycap>Enter</keycap> para seleccionar los " +"elementos del menú (o si tu sistema lo soporta, haz click sobre ellos con el " +"ratón; para cerrar el menú sin seleccionar nada, aprieta " +"<keycombo><keycap>Control</keycap><keycap>t</keycap></keycombo> otra vez. " +"Una descripción del elemento seleccionado aparecerá en la base de la " +"pantalla. Si un elemento del menú puede ser activado mediante un atajo de " +"teclado, el atajo aparecerá en el menú: por ejemplo, el comando " +"<quote>Actualizar la lista de paquetes</quote> puede ser activado " +"presionando <keycap>u</keycap>." + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:767 +msgid "" +"At any time, you can press <keycap>?</keycap> to display an on-line " +"reference to the available keyboard shortcuts." +msgstr "" +"En cualquier momento, puedes presionar <keycap>?</keycap> para mostrar una " +"tabla de referencia online con los atajos de teclado disponibles." + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:773 +msgid "Navigating the &aptitude; package list" +msgstr "Navegando la lista de paquetes de &aptitude;" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:776 +msgid "" +"The list of packages is the primary interface to &aptitude;. When " +"&aptitude; starts, the list is organized into a number of groups, as can be " +"seen in the following screen shot:" +msgstr "" +"La lista de paquetes es la interfaz primaria en &aptitude;. Cuando se " +"inicia &aptitude;, la lista se organiza en grupos, como se puede ver en la " +"siguiente imagen:" + +# type: Content of: <book><chapter><section><section><note><para> +#: en/aptitude.xml:819 +msgid "" +"Empty groups of packages are automatically hidden by &aptitude;, so you may " +"see more or less groups than appear in this screen shot." +msgstr "" +"&aptitude; ocultará automáticamente los grupos de paquetes que estén vacíos, " +"así que puede que veas más o menos grupos de los que aparecen en esta imagen." + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:826 +msgid "" +"In the screen shot above, the first group (<quote>Installed Packages</" +"quote>) is highlighted to indicate that it is currently selected. You can " +"move the selection up and down with the arrow keys; note that the " +"description below the package list changes as you do so. To <quote>expand</" +"quote> a group, press <keycap>Enter</keycap> while the group is selected:" +msgstr "" +"En la captura de pantalla superior, el primer grupo (<quote>Paquetes " +"instalados</quote>) esta resaltado, indicando que está seleccionado en ese " +"momento. Puedes navegar a través de la lista con las flechas de dirección; " +"observa que la descripción en el campo inferior a la lista de paquetes varía " +"a medida que navegas. Para <quote>expandir</quote> un grupo, presiona " +"<keycap>Enter</keycap> a la vez que seleccionas el grupo:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:842 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1\n" +"--\\ Installed Packages \n" +" --- admin - Administrative utilities (install software, manage users, etc)\n" +" --- base - The Debian base system\n" +" --- devel - Utilities and programs for software development\n" +" --- doc - Documentation and specialized programs for viewing documentation\n" +" --- editors - Text editors and word processors\n" +" --- electronics - Programs for working with circuits and electronics\n" +" --- games - Games, toys, and fun programs\n" +" --- gnome - The GNOME Desktop System\n" +" --- graphics - Utilities to create, view, and edit graphics files\n" +"\n" +"These packages are currently installed on your computer.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" +" Acciones Deshacer Paquetes Buscar Opciones Vistas Ayuda\n" +"f10: Menu ?: Ayuda q: Salir u: Actualizar g: Descarga/Instala/Elimina Paqs\n" +"aptitude 0.2.14.1\n" +"--\\ Paquetes instalados \n" +" --- admin - Utilidades de administración (instalación de programas, gestión de usuarios, etc)\n" +" --- devel - Utilidades y programas para desarollo de programas\n" +" --- doc - Documentación y programas especializados para ver documentación\n" +" --- editors - Editores y procesadores de texto\n" +" --- electronics - Programas para trabajar con circuitos y electrónica\n" +" --- games - Juegos, jugetes y programas divertidos\n" +" --- gnome - El sistema de escritorio GNOME\n" +" --- graphics - Utilidades para crear ver y editar ficheros de gráficos\n" +"\n" +"Estos paquetes están instalados en su ordenador.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:872 +msgid "" +"As you can see, the <quote>Installed Packages</quote> group has been " +"expanded to reveal its contents: it contains a number of subgroups, loosely " +"defined by what types of software they contain. Expanding the <quote>admin</" +"quote> section by selecting it and pressing <keycap>Enter</keycap>, we see:" +msgstr "" +"Como puede ver, el grupo <quote>Paquetes instalados</quote> se ha expandido " +"para mostrar su contenido: contiene un número de sub-grupos, definidos de " +"manera abierta dependiendo del tipo de software que contienen. Si expandimos " +"la sección <quote>admin</quote> seleccionandoló y presionando <keycap>Enter</" +"keycap>, podemos ver:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:886 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1\n" +"--\\ Installed Packages\n" +" --\\ admin - Administrative utilities (install software, manage users, etc) \n" +" --- main - The main Debian archive\n" +" --- base - The Debian base system\n" +" --- devel - Utilities and programs for software development\n" +" --- doc - Documentation and specialized programs for viewing documentation\n" +" --- editors - Text editors and word processors\n" +" --- electronics - Programs for working with circuits and electronics\n" +" --- games - Games, toys, and fun programs\n" +" --- gnome - The GNOME Desktop System\n" +"\n" +"Packages in the 'admin' section allow you to perform administrative tasks such\n" +"as installing software, managing users, configuring and monitoring your system,\n" +"examining network traffic, and so on.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" +" Acciones Deshacer Paquetes Buscar Opciones Vistas Ayuda\n" +"f10: Menu ?: Ayuda q: Salir u: Actualizar g: Descarga/Instala/Elimina Paqs\n" +"aptitude 0.2.14.1\n" +"--\\ Paquetes instalados \n" +" --- admin - Utilidades de administración (instalación de programas, gestión de usuarios, etc)\n" +" ---principal\n" +" --- devel - Utilidades y programas para desarollo de programas\n" +" --- doc - Documentación y programas especializados para ver documentación\n" +" --- editors - Editores y procesadores de texto\n" +" --- electronics - Programas para trabajar con circuitos y electrónica\n" +" --- games - Juegos, jugetes y programas divertidos\n" +" --- gnome - El sistema de escritorio GNOME\n" +"\n" +"Los paquetes en la sección 'admin' permiten realizar tareas de administración\n" +"como instalar programas, gestionar los usuarios, configurar y monotorizar tu sistema,\n" +"examinar el tráfico de red, y así sucesivamente.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:915 +msgid "" +"The <quote>admin</quote> group contains a single subgroup, the <quote>main</" +"quote> Debian archive. Expanding this group reveals some packages!" +msgstr "" +"El grupo <quote>admin</quote> contiene un solo subgrupo, el archivo " +"<quote>principal</quote> de Debían. Expandir este grupo revela más paquetes!" + +# type: Content of: <book><chapter><section><section><tip><para> +#: en/aptitude.xml:921 +msgid "" +"To save time, you can use the <keycap>[</keycap> key to expand all the " +"subgroups of a group at once. Selecting <quote>Installed Packages</quote> " +"and pressing <keycap>[</keycap> would have immediately revealed the packages " +"in the screenshot below." +msgstr "" +"Para ahorrar tiempo, puedes usar la tecla <keycap>[</keycap> para expandir " +"todos los subgrupos de un grupo a la vez. Seleccionar <quote>Paquetes " +"instalados</quote> y presionar <keycap>[</keycap> revelaría inmediatamente " +"los paquetes de la imagen inferior." + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:936 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1 \n" +"--\\ Installed Packages\n" +" --\\ admin - Administrative utilities (install software, manage users, etc)\n" +" --\\ main - The main Debian archive \n" +"i acpid 1.0.3-19 1.0.3-19\n" +"i alien 8.44 8.44\n" +"i anacron 2.3-9 2.3-9\n" +"i apt-show-versions 0.07 0.07\n" +"i A apt-utils 0.5.25 0.5.25\n" +"i apt-watch 0.3.2-2 0.3.2-2\n" +"i aptitude 0.2.14.1-2 0.2.14.1-2\n" +"\n" +"The Debian distribution consists of packages from the 'main' section. Every\n" +"package in 'main' is Free Software.\n" +"\n" +"For more information about what Debian considers to be Free Software, see\n" +"http://www.debian.org/social_contract#guidelines\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" +" Acciones Deshacer Paquetes Buscar Opciones Vistas Ayuda\n" +"f10: Menu ?: Ayuda q: Salir u: Actualizar g: Descarga/Instala/Elimina Paqs\n" +"aptitude 0.2.14.1 \n" +"--\\ Paquetes instalados\n" +" --\\ admin - Utilidades de administración (instalación de programas, gestión de usuarios, etc)\n" +" --\\ principal \n" +"i acpid 1.0.3-19 1.0.3-19\n" +"i alien 8.44 8.44\n" +"i anacron 2.3-9 2.3-9\n" +"i apt-show-versions 0.07 0.07\n" +"i A apt-utils 0.5.25 0.5.25\n" +"i apt-watch 0.3.2-2 0.3.2-2\n" +"i aptitude 0.2.14.1-2 0.2.14.1-2\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:965 +msgid "" +"In addition to the arrow keys, you can move the selection through the " +"package list a page of information at a time using the <keycap>Page Up</" +"keycap> and <keycap>Page Down</keycap> keys." +msgstr "" +"Además de las flechas de dirección, puedes mover la selección a través de la " +"lista de paquetes mostrando una página de información cada vez usando las " +"teclas <keycap>Page Up</keycap> y <keycap>Page Down</keycap>." + +# type: Content of: <book><chapter><section><section><tip><para> +#: en/aptitude.xml:976 +msgid "" +"When there is more information in the lower half of the display than fits " +"into the available space, the <keycap>a</keycap> and <keycap>z</keycap> keys " +"can be used to scroll through it." +msgstr "" +"Cuando hay mas información en la zona inferior de la pantalla de la que cabe " +"en el espacio disponibles, las teclas <keycap>a</keycap> y <keycap>z</" +"keycap> pueden ser usadas para deslizarse a través de la información." + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:985 +msgid "Finding packages by name" +msgstr "Encontrando paquetes por nombre" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:988 +msgid "" +"To quickly find a package whose name you know, press <keycap>/</keycap> to " +"open a search dialog:" +msgstr "" +"Para encontrar un paquete cuyo nombre conozcas rápidamente, presiona " +"<keycap>/</keycap> para abrir un cuadro de diálogo de búsqueda:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:999 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1 \n" +"i frozen-bubble 1.0.0-5 1.0.0-5\n" +"i A frozen-bubble-data 1.0.0-5 1.0.0-5\n" +"i geekcode 1.7.3-1 1.7.3-1\n" +"i gfpoken 0.25-3 0.25-3\n" +"i ggz-gnome-client 0.0.7-2 0.0.7-2\n" +"i ggz-gtk-client 0.0.7-1 0.0.7-1\n" +"i ggz-gtk-game-data 0.0.7-2 0.0.7-2\n" +"i +--------------------------------------------------------------------------+\n" +"i |Search for: |\n" +"i |froz |\n" +"Po| [ Ok ] [ Cancel ]|\n" +"Fr+--------------------------------------------------------------------------+\n" +"attempt to shoot bubbles into groups of the same color to cause them to pop. It\n" +"features 100 single-player levels, a two-player mode, music and striking\n" +"graphics.\n" +"\n" +"This game is widely rumored to be responsible for delaying the Woody release.\n" +"\n" +"URL: http://www.frozen-bubble.org/\n" +"\n" +msgstr "" +" Acciones Deshacer Paquetes Buscar Opciones Vistas Ayuda\n" +"f10: Menu ?: Ayuda q: Salir u: Actualizar g: Descarga/Instala/Elimina Paqs\n" +"aptitude 0.2.14.1 \n" +"i frozen-bubble 1.0.0-5 1.0.0-5\n" +"i A frozen-bubble-data 1.0.0-5 1.0.0-5\n" +"i geekcode 1.7.3-1 1.7.3-1\n" +"i gfpoken 0.25-3 0.25-3\n" +"i ggz-gnome-client 0.0.7-2 0.0.7-2\n" +"i ggz-gtk-client 0.0.7-1 0.0.7-1\n" +"i ggz-gtk-game-data 0.0.7-2 0.0.7-2\n" +"i +--------------------------------------------------------------------------+\n" +"i |Buscar: |\n" +"i |froz |\n" +"Po| [ Aceptar] [ Cancelar ]|\n" +"Fr+--------------------------------------------------------------------------+\n" +"attempt to shoot bubbles into groups of the same color to cause them to pop. It\n" +"features 100 single-player levels, a two-player mode, music and striking\n" +"graphics.\n" +"\n" +"This game is widely rumored to be responsible for delaying the Woody release.\n" +"\n" +"URL: http://www.frozen-bubble.org/\n" +"\n" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1028 +msgid "" +"As you can see in the above screen shot, a search for <userinput>froz</" +"userinput> finds the <systemitem>frozen-bubble</systemitem> package. Using " +"&aptitude;'s powerful search language, described in <xref " +"linkend='secSearchPatterns'/>, it is possible to find packages based on many " +"complex criteria." +msgstr "" +"Como puedes ver en la imagen superior, una búsqueda de <userinput>froz</" +"userinput> encuentra el paquete <systemitem>frozen-bubble</systemitem>. Es " +"posible encontrar paquetes con criterios complejos usando el poderoso " +"lenguaje de búsqueda de &aptitude;." + +# type: Content of: <book><chapter><section><section><tip><para> +#: en/aptitude.xml:1038 +msgid "" +"You can search backwards in the package list by pressing <keycap>\\</" +"keycap>, and you can repeat the last search by pressing <keycap>n</keycap> " +"after closing the search window." +msgstr "" +"Puedes buscar hacia atrás en la lista de paquetes presionando <keycap>\\</" +"keycap>, y puedes repetir la ultima búsqueda presionando <keycap>n</keycap> " +"tras cerrar el cuadro de búsqueda." + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1046 +msgid "" +"Sometimes it is useful to hide all packages except those which meet some " +"particular criterion. To do this, press <keycap>l</keycap>:" +msgstr "" +"Algunas veces es practico ocultar todos los paquetes exceptuando aquellos " +"que se corresponden con un criterio en particular. Para ello, presiona " +"<keycap>l</keycap>:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1058 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1\n" +"--- Installed Packages\n" +"--- Not Installed Packages\n" +"--- Obsolete and Locally Created Packages\n" +"--- Virtual Packages\n" +"--- Tasks\n" +"\n" +"\n" +" +--------------------------------------------------------------------------+\n" +" |Enter the new package tree limit: |\n" +" |apti |\n" +" | [ Ok ] [ Cancel ]|\n" +"Th+--------------------------------------------------------------------------+ a\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" +" Acciones Deshacer Paquete Encontrar Opciones Vistas Ayuda\n" +"f10: Menú ?: Ayuda q: Salir u: Actualizar g: Descarga/Instala/Elimina Paqs\n" +"aptitude 0.2.14.1\n" +"--- Paquetes instalados\n" +"--- Paquetes no instalados\n" +"--- Paquetes obsoletos y creados localmente\n" +"--- Paquetes virtuales\n" +"--- Tareas\n" +"\n" +"\n" +" +--------------------------------------------------------------------------+\n" +" |Introduzca el nuevo límite de árbol de paquetes |\n" +" |apti |\n" +" | [ Aceptar ] [ Cancelar ]|\n" +"Es+--------------------------------------------------------------------------+\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1087 +msgid "" +"This dialog works exactly like the search dialog, except that instead of " +"highlighting the next package that matches what you typed into the dialog " +"box, it hides all packages which don't match. For instance, typing " +"<userinput>apti</userinput> into this dialog box and pressing <keycap>Enter</" +"keycap> will hide all packages except those whose names contain <quote>apti</" +"quote>:" +msgstr "" +"Este dialogo funciona exactamente igual que el dialogo de búsqueda, solo que " +"en vez de realzar el siguiente paquete que encaje con lo que hallas tecleado " +"en el cuadro de dialogo, oculta todos los paquetes que no lo hacen. Por " +"ejemplo, tecleando <userinput>apti</userinput> y presionando <keycap>Enter</" +"keycap> ocultaría todos los paquetes excepto aquellos cuyos nombres contengan " +"<quote>apti</quote>:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1103 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1\n" +"--\\ Installed Packages \n" +" --\\ admin - Administrative utilities (install software, manage users, etc)\n" +" --\\ main - The main Debian archive\n" +"i aptitude 0.2.14.1-2 0.2.14.1-2\n" +"i A synaptic 0.51-1 0.51-1\n" +" --\\ x11 - The X window system and related software\n" +" --\\ main - The main Debian archive\n" +"i xfree86-driver-synaptics 0.13.3-1 0.13.3-1\n" +"--- Not Installed Packages\n" +"--- Virtual Packages\n" +"\n" +"These packages are currently installed on your computer.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><title> +#: en/aptitude.xml:1133 en/aptitude.xml:2957 +msgid "Managing packages" +msgstr "Gestionando paquetes" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1136 +msgid "" +"Now that you can move about the list of packages, it's time to start using " +"&aptitude; to install and remove packages. In this section you will learn " +"how to flag packages for installation, deletion, and upgrade." +msgstr "" +"Ahora que sabes navegar a través de la lista de paquetes, es hora de que " +"empieces a usar &aptitude; para instalar y eliminar paquetes. En esta " +"sección, aprenderás como marcar los paquetes para su instalación, " +"eliminación o actualización." + +# type: Content of: <book><chapter><section><section><tip><para> +#: en/aptitude.xml:1144 +msgid "" +"You can only change your system's setup as the &root; user. If you want to " +"experiment with &aptitude;, you can safely run it as any user other than " +"&root; without damaging your system in any way. &aptitude; will tell you " +"when you try to do something that only &root; can do, and if you want to " +"continue, you must type &root;'s password." +msgstr "" +"Solo se puede cambiar la configuración del sistema como &root;. Si quieres " +"experimentar con &aptitude;, puedes arrancarlo de manera segura como " +"cualquier otro usuario aparte de como &root; sin dañar el sistema de ninguna " +"manera. &aptitude; te avisará cuando estés intentando hacer algo que solo " +"el &root; puede hacer, y si quieres continuar, tendrás que insertar la " +"contraseña de &root;." + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:1154 +msgid "" +"All changes to a package are performed by first highlighting it in the " +"package list, then pressing a key corresponding to the action which should " +"be performed. The basic action keys <footnote>" +msgstr "" +"Todos los cambios a un paquete se realizan primero, seleccionandoló en la " +"lista de paquetes, y después, apretando la tecla correspondiente a la acción " +"deseada. Las teclas básicas de acción <footnote>" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:1159 +msgid "" +"You can also change packages using the <guimenu>Package</guimenu> menu; see " +"<xref linkend='secPackageMenu'/> for details." +msgstr "" +"También puedes cambiar el estado de los paquetes usando el menú " +"<guimenu>Paquete</guimenu>; vea <xref linkend='secPackageMenu'/> para mas " +"detalles." + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1163 +msgid "" +"</footnote> are <keycap>+</keycap> to install or upgrade a package, <keycap>-" +"</keycap> to remove a package, and <keycap>=</keycap> to prevent a package " +"from being automatically upgraded (this is known as <firstterm>holding</" +"firstterm> the package). These actions are not performed immediately; " +"&aptitude; will simply update the package list to show the change that has " +"been requested." +msgstr "" +"</footnote> son <keycap>+</keycap> para instalar o actualizar un paquete, " +"<keycap>-</keycap> para eliminarlo, y <keycap>=</keycap> para evitar que un " +"paquete sea automáticamente actualizado (esto es conocido como " +"<firstterm>retener</firstterm> el paquete). Estas acciones no son " +"ejecutadas inmediatamente; &aptitude; simplemente actualizara la lista de " +"paquetes para mostrar el cambio que ha sido solicitado." + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1175 +msgid "" +"For instance, in the screen shot below, the <systemitem>kaffeine</" +"systemitem> package was selected and <keycap>+</keycap> was pushed. The " +"package is now highlighted in green and the letter <quote>i</quote> has " +"appeared to the left of its name, to indicate that it will be installed; in " +"addition, an estimate of the amount of space that the package will use is " +"displayed." +msgstr "" +"Por ejemplo, en la imagen inferior, el paquete <systemitem>kaffeine</" +"systemitem> ha sido seleccionado y la tecla <keycap>+</keycap>, pulsada. El " +"paquete esta ahora resaltado en verde, y la letra <quote>i</quote> ha " +"aparecido a la izquierda de su nombre para indicar que será instalado; " +"además, se muestra una estimación del espacio que el paquete usará en el " +"disco duro." + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1191 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1 Will use 2925kB of disk space DL Size: 1375kB\n" +" --\\ kde - The KDE Desktop System\n" +" --\\ main - The main Debian archive\n" +"p bibletime-i18n <none> 1.4.1-1\n" +"p education-desktop-kde <none> 0.771\n" +"p junior-kde <none> 1.4\n" +"piA kaffeine +2843kB <none> 0.4.3-1\n" +"pi kaffeine-mozilla +81.9kB <none> 0.4.3-1\n" +"p karamba <none> 0.17-5\n" +"p kde-devel <none> 4:3.1.2 \n" +"p kde-devel-extras <none> 4:3.1.2\n" +"The K Desktop Environment (development files)\n" +"A metapackage containing dependencies for the core development suite of KDE\n" +"including kdesdk, qt3-designer, and all core KDE -dev packages.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><section><tip><para> +#: en/aptitude.xml:1221 +msgid "" +"At any time, you can use &undo-undo; to <quote>undo</quote> any change to " +"one or more packages. This is very useful if an action has unforeseen " +"consequences and you want to <quote>take it back</quote>." +msgstr "" +"En cualquier momento, puedes usar &undo-undo; para <quote>deshacer</quote> " +"cualquier cambio realizado a uno o más paquetes. Esto es de bastante " +"utilidad en caso de que una acción tenga consecuencias inesperadas y desees " +"<quote>revertir</quote> los paquetes a su estado anterior." + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1229 +msgid "" +"In addition to actions that affect individual packages, another important " +"action is available: typing <keycap>U</keycap> will attempt to upgrade any " +"packages that can be upgraded. You should use this command on a regular " +"basis to keep your system up-to-date." +msgstr "" +"En adición a las acciones que afectan a paquetes de manera individual, hay " +"disponible otra acción importante: presionando <keycap>U</keycap> se " +"actualizara cualquier paquete susceptible de serlo. Deberías utilizar este " +"comando de manera regular para mantener tu sistema a la ultima." + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:1237 +msgid "Managing broken packages" +msgstr "Gestionando paquetes rotos" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1240 +msgid "" +"Sometimes, changing a package's state will cause dependency relationships to " +"become unfulfilled; packages with unfulfilled dependencies are said to be " +"<firstterm>broken</firstterm>. &aptitude; will warn you when this happens, " +"and explain why it occured. For instance, here is what happens if I attempt " +"to remove <systemitem>sound-juicer</systemitem>:" +msgstr "" +"A veces, cambiar el estado de un paquete puede causar que requisitos entre " +"dependencias no se puedan cumplir; paquetes con dependencias no resueltas " +"se denominan <firstterm>rotos</firstterm>. &aptitude; te avisará cuando " +"esto ocurra y describirá lo ocurrido. Por ejemplo, esto es lo que pasa si " +"intento eliminar <systemitem>sound-juicer</systemitem>:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1256 en/aptitude.xml:4089 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.3.3 #Broken: 1 Will free 48.6MB of disk space\n" +"i A nautilus 2.10.1-4 2.10.1-4\n" +"i nautilus-cd-burner 2.10.2-1.1 2.10.2-1.1\n" +"i A nautilus-data 2.10.1-4 2.10.1-4\n" +"i netspeed 0.12.1-1 0.12.1-1\n" +"i A oaf 0.6.10-3 0.6.10-3\n" +"i pybliographer 1.2.6.2-1 1.2.6.2-1\n" +"i rhythmbox 0.8.8-13 0.8.8-13\n" +"i shermans-aquarium 3.0.1-1 3.0.1-1\n" +"idA sound-juicer -1733kB 2.10.1-3 2.10.1-3\n" +"GNOME 2 CD Ripper\n" +"sound-juicer will be removed.\n" +"\n" +"\n" +"The following packages depend on sound-juicer and will be broken by its\n" +"removal:\n" +"\n" +"\n" +" * gnome-desktop-environment depends on sound-juicer\n" +"\n" +"[1(1)/...] Suggest 2 keeps\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1285 +msgid "" +"As you can see, &aptitude; displays three indicators that something has gone " +"wrong: first, the number of broken packages is displayed in the upper blue " +"area; second, the lower half of the display changes to describe broken " +"packages that are related to the currently highlighted package; third, a bar " +"appears at the bottom of the screen with a suggestion on how to solve the " +"problem. To quickly find broken packages in the package list, you can press " +"<keycap>b</keycap> or search for &Sbroken;." +msgstr "" +"Como puedes ver, &aptitude; muestra tres indicadores de que algo ha ido mal: " +"primero, el numero de paquetes rotos se muestra en el área azul superior; " +"segundo, la mitad inferior de la pantalla cambia para mostrar los paquetes " +"rotos relacionados con el paquete seleccionado en ese momento; tercero, en " +"el fondo de la pantalla aparece una barra con una sugerencia de como " +"solucionar el problema. Para encontrar con rapidez paquetes rotos en la " +"lista de paquetes, puedes presionar <keycap>b</keycap> o realizar una " +"búsqueda de &Sbroken;." + +# type: Content of: <book><chapter><section><section><section><note><para> +#: en/aptitude.xml:1298 +msgid "" +"The text <literal>[1(1)/...]</literal> indicates the progress of " +"&aptitude;'s dependency resolver. The first number is the solution that you " +"have currently selected, and the second one is the number of solutions that " +"&aptitude; has already generated. The presence of the text " +"<quote><literal>...</literal></quote> indicates that there may be additional " +"solutions beyond the ones generated; if &aptitude; knew for certain that it " +"had generated the only possible solution, this indicator would read <literal>" +"[1/1]</literal>." +msgstr "" +"El texto <literal>[1(1)/...]</literal> indica el progreso del solucionador " +"de dependencias de &aptitude;. El primer número es la solución que has " +"seleccionado en ese momento, y el segundo es el numero de soluciones que " +"&aptitude; ha generado. La presencia del texto <quote><literal>...</" +"literal></quote> indica que pueden existir algunas soluciones adicionales más " +"allá de las generadas; si &aptitude; estuviese seguro de haber generado la " +"única solución posible, este indicador mostraría <literal>[1/1]</literal>." + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1312 +msgid "" +"To see more information about how &aptitude; thinks you can solve this " +"problem, press <keycap>e</keycap>. A screen similar to the following will " +"appear:" +msgstr "" +"Para ver más información de como &aptitude; piensa que puedes solucionar " +"este problema, presiona <keycap>e</keycap>. Aparecería una pantalla similar " +"a la siguiente:" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1324 en/aptitude.xml:4134 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages Resolve Dependencies\n" +" --\\ Keep the following packages at their current version:\n" +" gstreamer0.8-cdparanoia [0.8.10-1 (unstable, now)]\n" +" sound-juicer [2.10.1-2 (now)]\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"[1(1)/...] Suggest 2 keeps\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1353 +msgid "" +"From here, you can see more solutions by pressing <keycap>.</keycap> or " +"return to solutions that you previously examined by pressing <keycap>,</" +"keycap>. To apply the current solution and return to the package list, " +"press <keycap>!</keycap>. For instance, pressing <keycap>.</keycap> while " +"the above screen is displayed results in the following solution being " +"presented:" +msgstr "" +"A partir de aquí, puedes ver más soluciones presionando <keycap>.</keycap>, " +"o volver a las soluciones previamente examinadas presionando <keycap>,</" +"keycap>. Para aplicar la solución seleccionada en ese momento y volver a la " +"lista de paquetes, presiona <keycap>!</keycap>. Por ejemplo, si presionases " +"<keycap>.</keycap> mostrandose la pantalla superior,se presentaría la " +"siguiente solución:" + +# type: Content of: <book><chapter><section><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1369 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages Resolve Dependencies\n" +" --\\ Keep the following packages at their current version:\n" +" sound-juicer [2.10.1-3 (unstable, now)]\n" +" --\\ Downgrade the following packages:\n" +" gstreamer0.8-cdparanoia [0.8.11-1 unstable, now -> 0.8.8-3 testing]\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"[2(2)/...] Suggest 1 keep,1 downgrade\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1399 +msgid "" +"In addition to the basic solution navigation commands, you can press " +"<keycap>r</keycap> to <quote>reject</quote> actions of which you " +"disapprove. For instance, the first solution will cancel the removal of " +"<systemitem>sound-juicer</systemitem> -- the very action we were trying to " +"perform! By pressing <keycap>r</keycap> on the item corresponding to this " +"action, we can tell &aptitude; that it should not cancel the removal of " +"<systemitem>sound-juicer</systemitem> in this way." +msgstr "" +"Además de los comandos básicos en la navegación de soluciones, puedes " +"presionar <keycap>r</keycap> para <quote>rechazar</quote> las acciones que " +"desapruebes. Por ejemplo, la primera solución cancelaría la eliminación de " +"<systemitem>sound-juicer</systemitem> --¡precisamente la acción que " +"intentabamos ejecutar! Si presionas <keycap>r</keycap> sobre el espacio " +"correspondiente a esta acción, podemos asi decirle a &aptitude; que no debería " +"cancelar la eliminación de <systemitem>sound-juicer</systemitem> de esta " +"manera." + +# type: Content of: <book><chapter><section><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1417 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages Resolve Dependencies\n" +" --\\ Keep the following packages at their current version:\n" +" gstreamer0.8-cdparanoia [0.8.11-1 (unstable, now)]\n" +"R sound-juicer [2.10.1-3 (unstable, now)]\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"GNOME 2 CD Ripper\n" +"gnome-desktop-environment depends upon sound-juicer\n" +"--\\ The following actions will resolve this dependency:\n" +" -> Remove gnome-desktop-environment [1:2.10.2.3 (unstable, testing, now)]\n" +"R -> Cancel the removal of sound-juicer\n" +" -> Downgrade sound-juicer [2.10.1-3 (unstable, now) -> 0.6.1-2 (testing)]\n" +"\n" +"\n" +"\n" +"\n" +"[1(1)/...] Suggest 2 keeps\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1446 +msgid "" +"As you can see, the list item corresponding to keeping <systemitem>sound-" +"juicer</systemitem> at its current version has turned red and been marked " +"with an <quote>R</quote>, indicating that it has been rejected. Solutions " +"that you generate in the future (that is, any solution that you have not yet " +"viewed) will not include this action, although solutions that were already " +"generated and contain this action will be available." +msgstr "" +"Como puedes ver, el objeto de la lista correspondiente a la acción de " +"mantener la misma versión de <systemitem>sound-juicer</systemitem> se ha " +"tornado roja y ha sido marcada con una <quote>R</quote>, indicando que ha sido " +"rechazada. Las soluciones que pudieses generar en el futuro (esto es, " +"cualquier solución que no hayas examinado aún) no incluirían esta acción, " +"aunque soluciones previamente generadas y que contengan esta solución " +"seguirán disponibles." + +# type: Content of: <book><chapter><section><section><section><note><para> +#: en/aptitude.xml:1458 +msgid "" +"In the above screen image, a description of <systemitem>sound-juicer</" +"systemitem> is displayed in the middle of the screen; below it, you can see " +"the dependency that caused <systemitem>sound-juicer</systemitem> to be kept " +"at its current version, along with all the ways to resolve this dependency " +"that &aptitude; knows about." +msgstr "" +"En la imagen de pantalla superior, se puede ver una descripción de " +"<systemitem>sound-juicer</systemitem>, el cual se muestra en el centro de la " +"pantalla; bajo esta descripción se puede ver la dependencia que causó que " +"<systemitem>sound-juicer</systemitem> se haya mantenido en su versión " +"actual, además de todas las maneras que &aptitude; conoce para resolver esta " +"dependencia." + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1468 +msgid "" +"For instance, if this rejection is imposed immediately after attempting to " +"remove <systemitem>sound-juicer</systemitem>, pressing <keycap>.</keycap> " +"retrieves the following solution, skipping the <link " +"linkend='solutionScreenSnapshot2'>solution</link> that cancels the " +"installation of <systemitem>sound-juicer</systemitem> and downgrades " +"<systemitem>gstreamer0.8-cdparanoia</systemitem>." +msgstr "" +"Por ejemplo, si este rechazo (a una solución) es impuesta inmediatamente " +"después de intentar eliminar <systemitem>sound-juicer</systemitem>, " +"presionar <keycap>.</keycap> nos llevaría a la siguiente solución, omitiendo " +"la solución <link linkend='solutionScreenSnapshot2'>solution</link> que " +"cancela la instalación de <systemitem>sound-juicer</systemitem> y que " +"desactualiza <systemitem>gstreamer0.8-cdparanoia</systemitem>." + +# type: Content of: <book><chapter><section><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1484 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages Resolve Dependencies\n" +" --\\ Remove the following packages:\n" +" gnome-desktop-environment [1:2.10.2.3 (unstable, testing, now)]\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"[2(2)/...] Suggest 1 removal\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1513 +msgid "" +"Rejections are only applied to newly generated solutions: that is, solutions " +"that are generated when you press <keycap>.</keycap> while viewing the last " +"generated solution. Previously generated solutions can still contain " +"rejections. You can cancel a rejection at any time by once again selecting " +"the rejected action and pressing <keycap>r</keycap>; this will permit " +"solutions containing the action to be generated again, including any " +"solutions that were previously <quote>skipped</quote>." +msgstr "" +"Los rechazos solo se aplican a soluciones generadas en ese momento: esto es, " +"las soluciones generadas al presionar <keycap>.</keycap> mientras visionas " +"la última solución generada. Soluciones generadas anteriormente pueden aún " +"contener rechazos a ciertas a acciones. Puedes cancelar un rechazo en " +"cualquier momento si se selecciona una vez más la acción rechazada y " +"presionando <keycap>r</keycap>; esto permitiría que las soluciones " +"conteniendo la acción rechazada sean generadas otra vez, incluyendo " +"cualquier solución que hubiese sido <quote>omitida</quote> con anterioridad." + +# type: Content of: <book><chapter><section><section><section><para><footnote> +#: en/aptitude.xml:1525 +msgid "" +"The opposite of rejecting an action is approving it. To approve an action, " +"just select it and press <keycap>a</keycap>; this forces the problem " +"resolver to choose the action whenever possible<footnote>" +msgstr "" +"La contrario a rechazar una acción es aprobarla. Para aprobar una acción, " +"simplemente selecciona la acción y presiona <keycap>a</keycap>; lo cual forzaría al " +"solucionador de problemas a escoger esta acción cuando sea posible<footnote>" + +# type: Content of: <book><chapter><section><section><section><para><footnote><para> +#: en/aptitude.xml:1530 +msgid "" +"Approving an action is slightly different from requiring all solutions to " +"contain the action; what it means is that given a choice between an approved " +"action and a non-approved action, the resolver will always pick the approved " +"action. If there are several possible approved actions, all of them will be " +"candidates to be placed into the solution." +msgstr "" +"Aprobar un acción es ligeramente distinto a requerir que todas las " +"soluciones contengan esa acción; lo que significa es que si se da una " +"elección entre una acción aprobada y una no-aprobada, el solucionador " +"siempre escogerá la acción aprobada. Si son aplicables varias acciones " +"aprobadas, todas ellas serán candidatas a ser presentadas en la solución." + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:1538 +msgid "" +"</footnote>. Approved actions will turn green and will be marked with " +"<quote>A</quote>, as in the following screenshot:" +msgstr "" +"</footnote>. Las acciones aprobadas se tornarán verdes y serán marcadas con " +"<quote>A</quote>, como se puede ver en la siguiente captura de pantalla:" + +# type: Content of: <book><chapter><section><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1550 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages Resolve Dependencies\n" +" --\\ Remove the following packages:\n" +"A gnome-desktop-environment [1:2.10.2.3 (unstable, testing, now)]\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"[2(2)/...] Suggest 1 removal\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><important><para> +#: en/aptitude.xml:1580 +msgid "" +"If you do not resolve any broken dependencies, &aptitude; will automatically " +"implement its current suggestion when you commit your selections by pressing " +"<keycap>g</keycap>. However, it is hard to automatically solve dependency " +"problems, and you may not be happy with the results, so it is generally " +"better to look at what &aptitude; plans to do <emphasis>before</emphasis> " +"committing your selections." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:1594 +msgid "Updating the package list and installing packages" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1597 +msgid "" +"At this point, you know enough about &aptitude; to actually make " +"modifications to your system." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1602 +msgid "" +"You should periodically update your list of available packages from the " +"Debian servers, to keep track of new packages and new versions of packages. " +"To do this, press <keycap>u</keycap>. At any time during the download, you " +"can press <keycap>q</keycap> to abort it." +msgstr "r" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1610 +msgid "" +"Once you have fresh lists of packages, you can choose the packages to " +"upgrade, install, or remove as described in the previous section. To review " +"the actions you have requested, press <keycap>g</keycap> once. When " +"installing the <systemitem>kaffeine-mozilla</systemitem> package (from the " +"previous example), the following screen appears:" +msgstr "" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:1625 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1 Will use 2925kB of disk space DL Size: 1375kB\n" +"--\\ Packages being automatically installed to satisfy dependencies \n" +"piA kaffeine +2843kB <none> 0.4.3-1\n" +"--\\ Packages to be installed\n" +"pi kaffeine-mozilla +81.9kB <none> 0.4.3-1\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"These packages are being installed because they are required by another package\n" +"you have chosen for installation.\n" +"\n" +"If you select a package, an explanation of its current state will appear in this\n" +"space.\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:1654 +msgid "" +"As you can see, &aptitude; automatically decided to install " +"<systemitem>kaffeine</systemitem> for me because <systemitem>kaffeine-" +"mozilla</systemitem> requires it. At this point, I have the choice of " +"either continuing with the installation by pressing <keycap>g</keycap>, or " +"aborting it by pressing <keycap>q</keycap>." +msgstr "" + +# type: Content of: <book><chapter><section><title> +#: en/aptitude.xml:1665 +msgid "Using &aptitude; from the command line" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1668 +msgid "" +"In addition to its <quote>visual</quote> interface described in the previous " +"section, &aptitude; can be used to manage packages directly from the command-" +"line in the same way that you would use &apt-get;. This section covers the " +"most common &aptitude; command-line actions; for more information, see <link " +"linkend='secReference'>the &aptitude; command-line reference</link>." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1677 +msgid "" +"In general, a command-line invocation of &aptitude; will look like this:" +msgstr "" + +# type: Content of: <book><chapter><section><cmdsynopsis> +#: en/aptitude.xml:1682 +msgid "" +"<command>aptitude</command> <arg choice='plain'><replaceable>action</" +"replaceable></arg> <arg rep='repeat'><replaceable>arguments</replaceable></" +"arg>" +msgstr "" + +# type: Content of: <book><chapter><section><para><footnote> +#: en/aptitude.xml:1688 +msgid "" +"<replaceable>action</replaceable> tells &aptitude; what action it is to " +"take; the remaining arguments are used in an option-specific fashion. " +"Typically they will consist of package names and command-line " +"switches<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><para><footnote><para> +#: en/aptitude.xml:1691 +msgid "" +"A <quote>switch</quote> is a letter preceded by a hyphen: for instance, " +"<quote>-a</quote>, <quote>-v</quote>, etc." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:1693 en/aptitude.xml:2165 +msgid "</footnote>." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1697 +msgid "The most important actions are:" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><term><cmdsynopsis> +#: en/aptitude.xml:1704 +msgid "<command>aptitude</command> <arg choice='plain'>update</arg>" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:1711 +msgid "" +"This command updates the package lists, as if you had entered the visual " +"interface and pressed <keycap>u</keycap>." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><term><cmdsynopsis> +#: en/aptitude.xml:1721 +msgid "<command>aptitude</command> <arg choice='plain'>safe-upgrade</arg>" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:1728 +msgid "" +"This command will upgrade as many packages as it can upgrade without " +"removing existing packages." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:1733 +msgid "" +"It is sometimes necessary to remove one package in order to upgrade another; " +"this command is not able to upgrade packages in such situations. Use the " +"<link linkend='fullUpgrade'><literal>full-upgrade</literal></link> command " +"to upgrade those packages as well." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><term><cmdsynopsis> +#: en/aptitude.xml:1745 +msgid "<command>aptitude</command> <arg choice='plain'>full-upgrade</arg>" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:1752 +msgid "" +"Like <link linkend='safeUpgrade'><literal>safe-upgrade</literal></link>, " +"this command will attempt to upgrade packages, but it is more aggressive " +"about solving dependency problems: it will install and remove packages until " +"all dependencies are satisfied. Because of the nature of this command, it " +"is possible that it will do undesirable things, and so you should be careful " +"when using it." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><note><para> +#: en/aptitude.xml:1764 +msgid "" +"For historical reasons, this command was originally named <literal>dist-" +"upgrade</literal>, and that name is still recognized by &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><term><cmdsynopsis> +#: en/aptitude.xml:1775 +msgid "" +"<command>aptitude</command> <group> <arg choice='plain'>install</arg> <arg " +"choice='plain'>remove</arg> <arg choice='plain'>purge</arg> </group> <arg " +"choice='plain'><replaceable>pkg1</replaceable></arg> <arg " +"rep='repeat'><replaceable>pkg2</replaceable></arg>" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para><footnote> +#: en/aptitude.xml:1789 +msgid "These commands install, remove, or purge<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para><footnote><para> +#: en/aptitude.xml:1790 +msgid "" +"Purging a package removes the package, as well as all its configuration " +"files." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:1792 +msgid "" +"</footnote> the specified packages. <quote>Installing</quote> a package " +"which is already installed but can be upgraded will cause it to be upgraded." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><term><cmdsynopsis> +#: en/aptitude.xml:1802 +msgid "" +"<command>aptitude</command> <arg choice='plain'>search</arg> <arg " +"choice='plain'><replaceable>pattern1</replaceable></arg> <arg " +"rep='repeat'><replaceable>pattern2</replaceable></arg>" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para><footnote> +#: en/aptitude.xml:1811 +msgid "" +"This command searches for packages whose name contains any of the given " +"<replaceable>pattern</replaceable>s, printing the result to the terminal. " +"In addition to just being a string of text, each <replaceable>pattern</" +"replaceable> can be a search pattern as described in <xref " +"linkend='secSearchPatterns'/>. <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para><footnote><para> +#: en/aptitude.xml:1820 +msgid "" +"In fact, the same is true of the commands that take packages as arguments, " +"such as <literal>install</literal> or <literal>show</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:1825 +msgid "" +"</footnote> For instance, <quote><literal>aptitude search gnome kde</" +"literal></quote> will list all packages whose name contains either " +"<quote><literal>gnome</literal></quote> or <quote><literal>kde</literal></" +"quote>." +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><term><cmdsynopsis> +#: en/aptitude.xml:1837 +msgid "" +"<command>aptitude</command> <arg choice='plain'>show</arg> <arg " +"choice='plain'><replaceable>pkg1</replaceable></arg> <arg " +"rep='repeat'><replaceable>pkg2</replaceable></arg>" +msgstr "" + +# type: Content of: <book><chapter><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:1846 +msgid "" +"Prints information about each <replaceable>pkg</replaceable> to the terminal." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1854 +msgid "" +"The commands that install, upgrade, and remove packages all accept the " +"parameter <literal>-s</literal>, which stands for <quote>simulate</quote>. " +"When <literal>-s</literal> is passed on the command line, the program " +"performs all the actions it would normally perform, but does not actually " +"download or install/remove any files." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1862 +msgid "&aptitude; will sometimes present a prompt like this:" +msgstr "" + +# type: Content of: <book><chapter><section><screen> +#: en/aptitude.xml:1865 +#, no-wrap +msgid "" +"The following NEW packages will be automatically installed:\n" +" space-orbit-common \n" +"The following NEW packages will be installed:\n" +" space-orbit space-orbit-common \n" +"0 packages upgraded, 2 newly installed, 0 to remove and 0 not upgraded.\n" +"Need to get 3200kB of archives. After unpacking 8413kB will be used.\n" +"<prompt>Do you want to continue? [Y/n/?]</prompt>" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1874 +msgid "" +"In addition to the obvious options of <quote>Yes</quote> and <quote>No</" +"quote>, a number of commands are available which can be used to change the " +"information displayed at the prompt, or to specify further actions. For " +"instance, typing <userinput>s</userinput> will display or hide information " +"about how much space each package will use:" +msgstr "" + +# type: Content of: <book><chapter><section><screen> +#: en/aptitude.xml:1881 +#, no-wrap +msgid "" +"<prompt>Do you want to continue? [Y/n/?]</prompt> <userinput>s</userinput>\n" +"\n" +"Size changes will be shown.\n" +"\n" +"The following NEW packages will be automatically installed:\n" +" space-orbit-common <+8020kB> \n" +"The following NEW packages will be installed:\n" +" space-orbit <+393kB> space-orbit-common <+8020kB> \n" +"0 packages upgraded, 2 newly installed, 0 to remove and 0 not upgraded.\n" +"Need to get 3200kB of archives. After unpacking 8413kB will be used.\n" +"<prompt>Do you want to continue? [Y/n/?]</prompt>" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1894 +msgid "" +"Similarly, typing <userinput>d</userinput> will display information about " +"automatically installed or removed packages:" +msgstr "" + +# type: Content of: <book><chapter><section><screen> +#: en/aptitude.xml:1898 +#, no-wrap +msgid "" +"The following NEW packages will be automatically installed:\n" +" space-orbit-common (D: space-orbit)\n" +"The following NEW packages will be installed:\n" +" space-orbit space-orbit-common \n" +"0 packages upgraded, 2 newly installed, 0 to remove and 0 not upgraded.\n" +"Need to get 3200kB of archives. After unpacking 8413kB will be used." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1906 +msgid "" +"This shows that <systemitem>space-orbit-common</systemitem> is being " +"installed because <systemitem>space-orbit</systemitem> depends on it. You " +"can see the entire list of possible entries by entering <userinput>?</" +"userinput> at the prompt." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1913 +msgid "" +"If your request violates dependencies in a way that cannot be trivially " +"resolved, &aptitude; will ask you what to do:" +msgstr "" + +# type: Content of: <book><chapter><section><screen> +#: en/aptitude.xml:1917 +#, no-wrap +msgid "" +"The following packages are BROKEN:\n" +" libsdl1.2debian\n" +"The following packages will be REMOVED:\n" +" libsdl1.2debian-alsa\n" +".\n" +".\n" +".\n" +"The following actions will resolve these dependencies:\n" +"\n" +"Install the following packages:\n" +"libsdl1.2debian-all [1.2.12-1 (unstable)]\n" +"\n" +"Score is 41\n" +"\n" +"<prompt>Accept this solution? [Y/n/q/?]</prompt>" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1934 +msgid "" +"Typing <userinput>y</userinput> (or simply pressing <keycap>enter</keycap>) " +"will accept the proposed solution. Typing <userinput>n</userinput> will " +"display the <quote>next best</quote> solution:" +msgstr "" + +# type: Content of: <book><chapter><section><screen> +#: en/aptitude.xml:1940 +#, no-wrap +msgid "" +"<prompt>Accept this solution? [Y/n/q/?]</prompt> <userinput>n</userinput>\n" +"The following actions will resolve these dependencies:\n" +"\n" +"Install the following packages:\n" +"libsdl1.2debian-esd [1.2.12-1 (unstable)]\n" +"\n" +"Score is 19\n" +"\n" +"<prompt>Accept this solution? [Y/n/q/?]</prompt>" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1951 +msgid "" +"As with the main command-line prompt, you can perform a number of additional " +"actions, including manually altering the states of packages, from the " +"dependency resolution prompt. Type <userinput>?</userinput> to see a " +"complete list." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1958 +msgid "" +"Typing <userinput>q</userinput> will abort the automatic resolver and allow " +"you to resolve the dependencies manually:" +msgstr "" + +# type: Content of: <book><chapter><section><screen> +#: en/aptitude.xml:1962 +#, no-wrap +msgid "" +"<prompt>Accept this solution? [Y/n/q/?]</prompt> <userinput>q</userinput>\n" +"aptitude failed to find a solution to these dependencies. You can solve them yourself by hand or type 'n' to quit.\n" +"The following packages have unmet dependencies:\n" +" libsdl1.2debian: Depends: libsdl1.2debian-alsa (= 1.2.12-1) but it is not installable or\n" +" libsdl1.2debian-all (= 1.2.12-1) but it is not installable or\n" +" libsdl1.2debian-esd (= 1.2.12-1) but it is not installable or\n" +" libsdl1.2debian-arts (= 1.2.12-1) but it is not installable or\n" +" libsdl1.2debian-oss (= 1.2.12-1) but it is not installable or\n" +" libsdl1.2debian-nas (= 1.2.12-1) but it is not installable or\n" +" libsdl1.2debian-pulseaudio (= 1.2.12-1) but it is not installable\n" +"Resolve these dependencies by hand? [N/+/-/_/:/?]" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1975 +msgid "" +"You can use any of the package manipulation commands to resolve the broken " +"dependencies (type <userinput>?</userinput> for a full list of the available " +"commands). Type <userinput>n</userinput> or press <keycap>enter</keycap> to " +"quit &aptitude;:" +msgstr "" + +# type: Content of: <book><chapter><section><screen> +#: en/aptitude.xml:1982 +#, no-wrap +msgid "" +"Resolve these dependencies by hand? [N/+/-/_/:/?] n\n" +"Abort." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:1986 +msgid "" +"For complete documentation of the command-line features of &aptitude;, see " +"<xref linkend='secReference'/>." +msgstr "" + +# type: Content of: <book><chapter><title> +#: en/aptitude.xml:1993 +msgid "&aptitude; reference guide" +msgstr "" + +# type: Content of: <book><chapter><blockquote><attribution> +#: en/aptitude.xml:1997 +msgid "" +"<personname> <firstname>Lewis</firstname> <surname>Carrol</surname> </" +"personname>, <citetitle pubwork='book'>Alice in Wonderland</citetitle>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:2005 +msgid "" +"The White Rabbit put on his spectacles. 'Where shall I begin, please your " +"Majesty?' he asked." +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:2010 +msgid "" +"'Begin at the beginning,' the King said gravely, 'and go on till you come to " +"the end: then stop.'" +msgstr "" + +# type: Content of: <book><chapter><para><footnote> +#: en/aptitude.xml:2016 +msgid "" +"&aptitude; is a large program with many features, and it is sometimes " +"difficult to remember how to do something, or even to remember whether that " +"something is even possible. Indeed, many feature requests received by the " +"author describe features which are already present but are difficult to find." +"<footnote>" +msgstr "" + +# type: Content of: <book><chapter><para><footnote><para> +#: en/aptitude.xml:2020 +msgid "" +"I am pleased to say that the number of requests of this sort fell off " +"precipitously following the initial publication of this Guide. It would be " +"a happy occurrence if there was a connection between the two events." +msgstr "" + +# type: Content of: <book><chapter><para> +#: en/aptitude.xml:2028 +msgid "" +"In an attempt to combat this obscurity, this reference guide describes every " +"feature and configuration parameter of &aptitude;. For a more gentle guide " +"to the important features of &aptitude;, see <xref " +"linkend='chapGettingStarted'/>." +msgstr "" + +# type: Content of: <book><chapter><note><para> +#: en/aptitude.xml:2036 +msgid "" +"&aptitude;'s behavior and appearance can be configured in a number of ways. " +"This manual describes how the program works with the default settings; " +"descriptions of how various settings affect behavior are given in <xref " +"linkend='secConfig'/>." +msgstr "" + +# type: Content of: <book><chapter><section><title> +#: en/aptitude.xml:2045 +msgid "The &aptitude; terminal user interface" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:2048 +msgid "" +"This section describes the parts of the terminal-based user interface of " +"&aptitude; that do not deal with <link " +"linkend='secManagingPackages'>managing packages</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:2054 +msgid "Using the menus" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2057 +msgid "" +"The menu bar at the top of the screen lists the most important commands in " +"&aptitude;. To activate the menu bar, press <keycombo><keycap>Control</" +"keycap><keycap>t</keycap></keycombo>; you can then navigate it using the " +"arrow keys and select a menu item using <keycap>Enter</keycap>." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2065 +msgid "" +"Some menu items also have <quote>hotkeys</quote>: letters or numbers that " +"can be used to select the item while the menu is active. These hotkeys are " +"displayed in a brighter shade of white than the rest of the menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2072 +msgid "" +"In addition, some menu items have <quote>shortcuts</quote>: keystrokes that " +"perform the same action as the menu item while the menu is <emphasis>not</" +"emphasis> active. These keystrokes are listed on the right-hand side of the " +"menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><para><menuchoice> +#: en/aptitude.xml:2080 +msgid "" +"In the remainder of the manual, menu commands will be written like this: " +"<menuchoice>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2082 +msgid "" +"<guimenu><replaceable>Menu</replaceable></" +"guimenu><guimenuitem><replaceable>Item</replaceable></guimenuitem></" +"menuchoice>. This indicates that you should choose <replaceable>Item</" +"replaceable> from the <replaceable>Menu</replaceable> menu, and that " +"<replaceable>key</replaceable> is the shortcut for this command." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:2092 +msgid "Menu commands" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2095 +msgid "The Actions menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:2098 +msgid "Commands available in the Actions menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><thead><row><entry> +#: en/aptitude.xml:2104 en/aptitude.xml:2221 en/aptitude.xml:2252 +#: en/aptitude.xml:2392 en/aptitude.xml:2518 en/aptitude.xml:2606 +#: en/aptitude.xml:2659 en/aptitude.xml:2761 en/aptitude.xml:3401 +#: en/aptitude.xml:7674 +msgid "Command" +msgstr "" + +# type: Content of: <refentry><refsect1><title> +#: en/aptitude.xml:2105 en/aptitude.xml:2222 en/aptitude.xml:2253 +#: en/aptitude.xml:2393 en/aptitude.xml:2519 en/aptitude.xml:2607 +#: en/aptitude.xml:2660 en/aptitude.xml:2762 en/aptitude.xml:3402 +#: en/aptitude.xml:4416 en/aptitude.xml:5228 en/aptitude.xml:6767 +#: en/aptitude.xml:6858 en/aptitude.xml:7676 en/aptitude.xml:8509 +#: en/aptitude.xml:8818 en/aptitude.xml:9133 en/aptitude.xml:10218 +#: en/manpage.xml:168 en/manpage.xml:2227 en/manpage.xml:2432 +msgid "Description" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2111 +msgid "&actions-install;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2113 +msgid "" +"If an installation preview is not visible, display one; otherwise, perform " +"an install run as described in <xref linkend='secInstallRun'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2120 +msgid "&actions-update;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2122 +msgid "Bring the package list up-to-date." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2127 +msgid "&actions-upgrade;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2129 +msgid "" +"Flag all upgradable packages, except those which are held or forbidden from " +"upgrading, for upgrade." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2136 +msgid "&actions-forget;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2138 +msgid "" +"Discard all information about what packages are <quote>new</quote> (empty " +"the <quote>New Packages</quote> tree)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2144 +msgid "&actions-cancel;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2147 +msgid "" +"Cancel all pending installations, removals, upgrades, and holds. This is " +"equivalent to executing the <link linkend='pkgCmdKeep'>Keep</link> command " +"on every package in the package database." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2156 +msgid "&actions-clean;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry><footnote> +#: en/aptitude.xml:2158 +msgid "" +"Delete all the compressed packages that were downloaded by &aptitude; " +"<footnote id='footnoteAptTools'>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry><footnote><para> +#: en/aptitude.xml:2163 +msgid "Or any other &apt; utility." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2170 +msgid "&actions-clean-obs;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2172 +msgid "" +"Delete any compressed packages that were downloaded by &aptitude; " +"<footnoteref linkend='footnoteAptTools'/> and are no longer available. " +"These are presumed to be packages which are obsolete, and can be deleted to " +"save disk space without requiring an otherwise unnecessary download." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2183 +msgid "&actions-mine;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2185 +msgid "" +"Play a game of Minesweeper, as described in <xref linkend='secMinesweeper'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2191 +msgid "&actions-su;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2193 +msgid "" +"Continue working as the &root; user; see <xref linkend='secBecomingRoot'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2199 +msgid "&actions-quit;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2201 +msgid "Quit &aptitude;, saving any changes to package states." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2212 +msgid "The Undo menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:2215 +msgid "Commands available in the Undo menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2228 +msgid "&undo-undo;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2230 +msgid "" +"Cancel the effect of the last change to a package's state, up to the last " +"time &aptitude; was started, the package list was updated, or an install run " +"was performed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2243 +msgid "The Package menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:2246 +msgid "Commands available in the Package menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2259 +msgid "&package-install;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2262 +msgid "" +"Flag the currently selected package for <link " +"linkend='pkgCmdInstall'>installation</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2268 +msgid "&package-remove;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2271 +msgid "" +"Flag the currently selected package for <link " +"linkend='pkgCmdRemove'>removal</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2277 +msgid "&package-purge;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2280 +msgid "" +"Flag the currently selected package to be <link " +"linkend='pkgCmdPurge'>purged</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2286 +msgid "&package-keep;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2289 +msgid "" +"<link linkend='pkgCmdKeep'>Cancel</link> any pending installation, upgrade, " +"or removal of the currently selected package, and remove any hold that was " +"set on the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2297 +msgid "&package-hold;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2299 +msgid "" +"<link linkend='pkgCmdHold'>Hold</link> the currently selected package back." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2305 +msgid "&package-markauto;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2307 +msgid "" +"Mark the currently selected package as an <quote>automatically installed</" +"quote> package. For more information on manually and automatically " +"installed packages, see <xref linkend='secAutoInstall'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2316 +msgid "&package-markmanual;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2318 +msgid "" +"Mark the currently selected package as a <quote>manually installed</quote> " +"package. For more information on manually and automatically installed " +"packages, see <xref linkend='secAutoInstall'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2327 en/aptitude.xml:3498 +msgid "&package-forbid;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2330 +msgid "" +"If a package that can be upgraded is selected, <link " +"linkend='pkgCmdForbid'>forbid</link> it from being upgraded to the currently " +"available version. If a version of a package is selected, forbid the " +"package from being upgraded to that version." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2340 +msgid "&package-information;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2343 +msgid "" +"Display a screen containing information about the currently selected " +"package, such as the packages it depends upon, the packages which depend " +"upon it, and its available versions." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2351 +msgid "&package-cycle-information;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2354 +msgid "" +"When browsing the package list, cycles through the information that can be " +"displayed in the information area (the lower half of the display). The " +"information area can display the long description of the selected package " +"(its default behavior), a summary of the dependencies related to the " +"package, or an analysis of which other packages require or suggest the " +"selected package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2367 +msgid "&package-changelog;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2370 +msgid "" +"Display the currently selected package's Debian changelog. To see the " +"changelog of a particular version, select that version and execute this " +"command." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2383 +msgid "The Resolver menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:2386 +msgid "Commands available in the Resolver menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2399 +msgid "&resolver-examine;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2402 +msgid "" +"Display a detailed description of the problem resolver's current suggestion " +"(see <xref linkend='secResolver'/>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2409 +msgid "&resolver-apply;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2412 +msgid "" +"Carry out the actions that the problem resolver is currently suggesting." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2418 +msgid "&resolver-next;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2421 +msgid "Select the problem resolver's next suggestion." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2426 +msgid "&resolver-previous;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2429 +msgid "Select the problem resolver's previous suggestion." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2434 +msgid "&resolver-first;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2437 +msgid "Select the problem resolver's first suggestion." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2442 +msgid "&resolver-last;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2445 +msgid "" +"Select the problem resolver's most recently generated solution (see <xref " +"linkend='secResolver'/>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2452 +msgid "&resolver-reject;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2455 +msgid "" +"When examining a solution, toggle whether the currently selected action is " +"rejected and move to the next action (see <xref linkend='secResolver'/>). " +"If the action is currently approved, its approval will be cancelled." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2465 +msgid "&resolver-approve;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2468 +msgid "" +"When examining a solution, toggle whether the currently selected action is " +"approved and move to the next action (see <xref linkend='secResolver'/>). " +"If the action is currently rejected, its rejection will be cancelled." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2478 +msgid "&resolver-view-target;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2481 +msgid "" +"When examining a solution, view detailed information about the package which " +"is affected by the currently selected action (see <xref " +"linkend='secResolver'/>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2489 +msgid "&resolver-reject-break-holds;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2492 +msgid "" +"Reject (as if with &resolver-reject;) all actions that would break a hold on " +"a package or install a forbidden version. These actions are rejected by " +"default unless <link linkend='configProblemResolver-Allow-Break-" +"Holds'><literal>Aptitude::ProblemResolver::Allow-Break-Holds</literal></" +"link> is set to <literal>true</literal>, but this menu item allows you to " +"reject them manually at any time." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2509 +msgid "The Search menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:2512 +msgid "Commands available in the Search menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2525 +msgid "&search-find;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2528 +msgid "" +"Find the next package in the package list that matches a search pattern (see " +"<xref linkend='secSearchPatterns'/>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2535 +msgid "&search-find-back;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2538 +msgid "" +"Find the previous package in the package list that matches a search pattern " +"(see <xref linkend='secSearchPatterns'/>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2545 +msgid "&search-refind;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2548 +msgid "Repeat the last Find command." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2553 +msgid "&search-repeat-find-back;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2556 +msgid "" +"Repeat the last Find command, but in the opposite direction. If the last " +"Find command was Find Backwards, this will perform a forwards search, and " +"vice versa." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2564 +msgid "&search-limit;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2567 +msgid "" +"Filter the current package list by removing any packages which do not match " +"a search pattern (see <xref linkend='secSearchPatterns'/>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2574 +msgid "&search-unlimit;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2577 +msgid "Un-filter the current package list (all packages will be shown)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2583 +msgid "&search-find-broken;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2586 +msgid "" +"Find the next broken package. This is equivalent to searching for &Sbroken;." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2597 +msgid "The Options menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:2600 +msgid "Commands available in the Options menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2613 +msgid "&options-preferences;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2616 +msgid "" +"Open a new top-level view in which you can modify &aptitude;'s settings. " +"Configuration options are displayed in a tree similar to the tree of " +"packages; to enable or disable an option, select it and press <keycap>Space</" +"keycap> or <keycap>Enter</keycap>. Configuration options are saved to " +"<filename>~/.aptitude/config</filename> immediately upon being selected." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2630 +msgid "&options-revert;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2633 +msgid "Reset all options to their default values." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2643 +msgid "The Views menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><note><para> +#: en/aptitude.xml:2647 +msgid "For an overview of how views work, see <xref linkend='secViews'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:2653 +msgid "Commands available in the Views menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2666 +msgid "&views-next;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2669 +msgid "Change to the next active view." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2674 +msgid "&views-prev;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2677 +msgid "Change to the previous active view." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2682 +msgid "&views-close;" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2685 en/aptitude.xml:8268 +msgid "Close the current view." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2690 +msgid "&views-new;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2693 +msgid "Create a new view of the package list." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2698 +msgid "&views-audit;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2701 +msgid "" +"Create a view that displays packages which are not installed, and which a " +"package installed on your system Recommends." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2708 +msgid "&views-flat;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2711 +msgid "" +"Create a new view of the package list in which packages are not categorized." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2717 +msgid "&views-debtags;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2720 +msgid "" +"Create a new view of the package list in which packages are categorized " +"according to their debtags entries." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2727 +msgid "&views-browse;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#. TODO: (see <xref linkend='secHier'/>). +#: en/aptitude.xml:2730 +msgid "View the package list, arranged by category." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2736 +msgid "Additional items" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2739 +msgid "" +"A number of additional menu items appear; these correspond to the currently " +"active views. To switch directly to a view, select it from the menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2752 +msgid "The Help menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:2755 +msgid "Commands available in the Help menu" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2768 +msgid "&help-about;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2771 +msgid "Display some copyright information." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2776 +msgid "&help-help;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2779 +msgid "Display the on-line help page." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2784 +msgid "&help-manual;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2787 +msgid "Display the User's Manual (this document)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2792 +msgid "&help-faq;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2795 +msgid "Display the <link linkend='chapFAQ'>&aptitude; FAQ</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2801 +msgid "&help-changelog;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2804 +msgid "Display a history of the major changes made to &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2810 +msgid "&help-license;" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:2813 +msgid "" +"Display the terms under which you may copy, modify, and distribute " +"&aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:2825 +msgid "Working with multiple views" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2828 +msgid "" +"&aptitude; allows you to work with several <quote>views</quote> at once. A " +"<quote>view</quote> (sometimes called a <quote>screen</quote>) is simply " +"something that can appear in the area of the screen below the menu bar. The " +"most common view is the package list, but download views are also common." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2836 +msgid "" +"When several views are open at once, a bar listing all the active views will " +"appear at the top of the screen. For instance, if I examine " +"<systemitem>apt</systemitem> by pressing <keycap>Enter</keycap>, then " +"examine <systemitem>libc6</systemitem>, the screen will look something like " +"this:" +msgstr "" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:2851 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages apt info libc6 info\n" +"aptitude 0.3.1 \n" +"i A --\\ libc6 2.3.2.ds1- 2.3.2.ds1-\n" +" Description: GNU C Library: Shared libraries and Timezone data\n" +" Contains the standard libraries that are used by nearly all programs on the\n" +" system. This package includes shared versions of the standard C library and\n" +" the standard math library, as well as many others. Timezone data is also\n" +" included.\n" +" Priority: required\n" +" Section: base\n" +" Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org>\n" +" Compressed size: 4901k\n" +" Uncompressed size: 15.9M\n" +" Source Package: glibc\n" +" --\\ Depends\n" +" --- libdb1-compat\n" +" --\\ Suggests\n" +" --- locales\n" +" --- glibc-doc\n" +" --\\ Conflicts\n" +"GNU C Library: Shared libraries and Timezone data" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2879 +msgid "" +"You can close the current view using &views-close;. To switch to the next " +"or previous view, use &views-next; and &views-prev;, or click on the view's " +"name at the top of the screen; you can also find a list of all active views " +"in the Views menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2887 +msgid "" +"As shown above, some commands (for instance, viewing information about a " +"package) will create new views automatically; you can also explicitly create " +"a new view using &views-new; or &views-browse;." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:2895 +msgid "Becoming &root;" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2898 +msgid "" +"Some actions, such as updating the package lists, can only be performed as " +"&root;. If you are not &root; and you try to update the package lists, " +"&aptitude; will ask if you want to become &root;:" +msgstr "" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:2911 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1 \n" +"--- Installed Packages\n" +"--- Not Installed Packages\n" +"--- Obsolete and Locally Created Packages\n" +"--- Virtual Packages\n" +"--- Tasks\n" +"\n" +" +-------------------------------------------------------------------------+\n" +" |Updating the package lists requires administrative privileges, which |\n" +" |you currently do not have. Would you like to change to the root account?|\n" +" | |\n" +" | [ Become root ] [ Don't become root ] |\n" +"Th+-------------------------------------------------------------------------+\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2940 +msgid "" +"If you select <quote>Become root</quote>, &aptitude; will prompt you for " +"&root;'s password; when you have correctly entered it, &aptitude; will " +"perform the action that required &root; privileges. You will still be " +"&root; after the action completes." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2948 +msgid "" +"You can switch to the &root; account at any time using the command &actions-" +"su;. Any changes you have made to package states will be preserved (but " +"will not be saved until you quit &aptitude;)." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:2960 +msgid "" +"This section describes how to manipulate the list of packages, how to " +"install new packages on your system, and how to remove old packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:2966 +msgid "Managing the package list" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2969 +msgid "" +"To keep the list of packages up-to-date, it is recommended that you " +"periodically update it. You can do this using the &actions-update; command." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:2976 +msgid "Accessing package information" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:2979 +msgid "" +"Information about packages is presented in several locations in &aptitude;: " +"the package list gives a quick overview of the state of each package, and " +"additional views providing detailed information about a package are also " +"available." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:2987 +msgid "The package list" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:2990 +msgid "" +"The package list displays an <quote>at-a-glance</quote> synopsis of a " +"package's state. For instance, the package <systemitem>webmin</systemitem> " +"might have the following synopsis:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><screen> +#: en/aptitude.xml:2996 +#, no-wrap +msgid "piAU webmin +5837kB <none> 1.160-2" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:2999 +msgid "" +"The four characters on the left-hand side of the synopsis show that the " +"package is not installed (<quote>p</quote>), that it is going to be " +"installed (<quote>i</quote>), that it was automatically chosen to be " +"installed (<quote>A</quote>), and that it is untrusted (<quote>U</quote>). " +"On the right-hand side of the synopsis, the current version and the most " +"recent available version are displayed, along with an indication of how much " +"space will be used by the upgrade." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><tip><para> +#: en/aptitude.xml:3013 +msgid "" +"You can customize how package synopses are displayed; see <xref " +"linkend='secDisplayFormat'/> for details." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3019 +msgid "" +"The four status flags on the left-hand side of the screen give the basic " +"information about a package's state. The first character is the package's " +"<emphasis>current state</emphasis>. The second character is the " +"<emphasis>action</emphasis> which will be taken on the package. The third " +"character indicates whether the package was <emphasis>automatically " +"installed</emphasis> (see <xref linkend='secAutoInstall'/>), and the fourth " +"character indicates whether the package is trusted (see <xref " +"linkend='secTrust'/>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3033 +msgid "" +"The possible values of the <quote>current state</quote> flag are given in " +"<xref linkend='figureCurrentFlag'/> and the possible values of the " +"<quote>action</quote> flag are given in <xref linkend='figureActionFlag'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:3040 +msgid "Values of the <quote>current state</quote> flag" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3047 en/aptitude.xml:3126 +msgid "<computeroutput>i</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3048 en/aptitude.xml:3057 en/aptitude.xml:3066 +#: en/aptitude.xml:3076 en/aptitude.xml:3084 en/aptitude.xml:3090 +#: en/aptitude.xml:3099 en/aptitude.xml:3108 en/aptitude.xml:3127 +#: en/aptitude.xml:3133 en/aptitude.xml:3139 en/aptitude.xml:3149 +#: en/aptitude.xml:3158 en/aptitude.xml:3169 en/aptitude.xml:3177 +#: en/aptitude.xml:3185 +msgid "-" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3050 +msgid "the package is installed and all its dependencies are satisfied." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3056 +msgid "<computeroutput>c</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3059 +msgid "the package was removed, but its configuration files are still present." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3065 en/aptitude.xml:3148 +msgid "<computeroutput>p</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3068 +msgid "" +"the package and all its configuration files were removed, or the package was " +"never installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3075 +msgid "<computeroutput>v</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3078 +msgid "the package is virtual." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3083 en/aptitude.xml:3184 +msgid "<computeroutput>B</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3085 +msgid "the package has broken dependencies." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3089 en/aptitude.xml:3132 +msgid "<computeroutput>u</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3092 +msgid "the package has been unpacked but not configured." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3098 +msgid "<computeroutput>C</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3101 +msgid "half-configured: the package's configuration was interrupted." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3107 +msgid "<computeroutput>H</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3110 +msgid "half-installed: the package's installation was interrupted." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><title> +#: en/aptitude.xml:3120 +msgid "Values of the <quote>action</quote> flag" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3128 +msgid "the package will be installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3134 +msgid "the package will be upgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3138 +msgid "<computeroutput>d</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3141 +msgid "" +"the package will be deleted: it will be removed, but its configuration files " +"will remain on the system." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3151 +msgid "" +"the package will be purged: it and its configuration files will be removed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3157 +msgid "<computeroutput>h</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3160 +msgid "" +"the package will be held back: it will be kept at its current version, even " +"if a newer version becomes available, until the hold is cancelled." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3168 +msgid "<computeroutput>F</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3171 +msgid "An upgrade of the package has been forbidden." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3176 +msgid "<computeroutput>r</computeroutput>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3179 +msgid "the package will be reinstalled." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3187 +msgid "" +"the package is <quote>broken</quote>: some of its dependencies will not be " +"satisfied. &aptitude; will not allow you to install, remove, or upgrade " +"anything while you have broken packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3200 +msgid "" +"In addition, &aptitude; will use colors to indicate package state if your " +"terminal supports it. State distinctions are mainly displayed using the " +"background color:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:3208 +msgid "Black" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:3211 +msgid "" +"The package cannot be upgraded (or is not going to be installed), and it has " +"no dependency problems. If the package is installed, its name will be " +"highlighted." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:3220 +msgid "Green" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:3223 +msgid "The package is going to be installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:3229 +msgid "Blue" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:3232 +msgid "The package is currently installed, and it will be upgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:3239 +msgid "Magenta" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:3242 +msgid "The package is currently installed, but it will be removed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:3249 +msgid "White" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:3252 +msgid "" +"The package is currently installed, and it is <quote>held</quote> at its " +"current version: automatic upgrades will ignore it." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:3260 +msgid "Red" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:3263 +msgid "This package is broken: some of its dependencies will not be satisfied." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3271 +msgid "" +"Finally, the lower half of the screen displays the long description. " +"&aptitude; will attempt to detect whether the package is involved in a " +"dependency problem; if so, information regarding the dependency problem will " +"be displayed here. To cycle between dependency information and the package " +"description, press <keycap>i</keycap>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:3281 +msgid "Detailed package information" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3284 +msgid "" +"Pressing <keycap>Enter</keycap> while a package is highlighted will display " +"the package information screen:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:3295 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1\n" +"i A --\\ apt 0.5.25 0.5.25\n" +" Description: Advanced front-end for dpkg\n" +" This is Debian's next generation front-end for the dpkg package manager. It\n" +" provides the apt-get utility and APT dselect method that provides a simpler,\n" +" safer way to install and upgrade packages.\n" +"\n" +" APT features complete installation ordering, multiple source capability and\n" +" several other unique features, see the Users Guide in apt-doc.\n" +" Essential: yes\n" +" Priority: important\n" +" Section: base\n" +" Maintainer: APT Development Team <deity@lists.debian.org>\n" +" Compressed size: 970k\n" +" Uncompressed size: 2961k\n" +" Source Package: apt\n" +" --\\ Depends\n" +" --- libc6 (>= 2.3.2.ds1-4)\n" +" --- libgcc1 (>= 1:3.3.3-1)\n" +" --- libstdc++5 (>= 1:3.3.3-1)\n" +" --\\ Suggests\n" +" --- aptitude | synaptic | gnome-apt | wajig\n" +" --- dpkg-dev\n" +" --\\ apt-doc (UNSATISFIED) \n" +"p 0.6.25\n" +"p 0.5.25\n" +" --\\ Replaces\n" +" --- libapt-pkg-doc (< 0.3.7)\n" +" --- libapt-pkg-dev (< 0.3.7)\n" +" --- Package names provided by apt\n" +" --- Packages which depend on apt\n" +" --\\ Versions\n" +"p A 0.6.25\n" +"i A 0.5.25\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3338 +msgid "" +"This display can be navigated in a manner similar to the package list: for " +"instance, in the screenshot above, I expanded the dependency on " +"<systemitem>apt-doc</systemitem>, revealing the available versions of " +"<systemitem>apt-doc</systemitem> which will fulfill the dependency. These " +"versions can be manipulated in the same way that packages can: for instance, " +"to install version <systemitem>0.5.25</systemitem> of <systemitem>apt-doc</" +"systemitem>, you would highlight it and press <keycap>+</keycap>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><tip><para> +#: en/aptitude.xml:3352 +msgid "" +"To quickly satisfy a dependency, select the dependency and press <keycap>+</" +"keycap>; &aptitude; will attempt to automatically satisfy it." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3359 +msgid "" +"In addition to the dependencies of a package, you can view the package names " +"that it Provides, the packages which depend upon it, and the available " +"versions of the package (including any other packages that Provide it)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3366 +msgid "" +"As usual, you can dismiss this screen and return to the main view by " +"pressing <keycap>q</keycap>. For convenience, a few other information " +"screens (which only display some commonly-used information, hiding the " +"rest) are available: press <keycap>v</keycap> to view the versions of a " +"package, <keycap>d</keycap> to view the dependencies of a package, and " +"<keycap>r</keycap> to view the <quote>reverse dependencies</quote> of a " +"package (packages which depend upon it)." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:3380 +msgid "Modifying package states" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3383 +msgid "" +"The following commands are available to modify the states of packages. " +"Commands take effect the next time you perform an <link " +"linkend='secInstallRun'>install run</link>; until you do, all of these " +"commands can be reversed using &undo-undo;." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3390 +msgid "" +"To apply a command to a package, simply select the package in a package list " +"and issue the command. These commands can also be applied to groups of " +"packages by selecting the group header (for instance, <quote>Upgradable " +"Packages</quote>) and issuing the command." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3408 +msgid "Install: &package-install;" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3411 +msgid "Flag the current package for installation." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3414 +msgid "" +"If the package is not installed, it will be installed. If it is already " +"installed, it will be upgraded if possible and any sticky upgrade prevention " +"that is in effect (eg, Hold) will be cancelled." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3424 +msgid "Remove: &package-remove;" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3427 +msgid "Flag the currently selected package for removal." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3431 +msgid "If the package is installed, it will be removed." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3437 +msgid "Purge: &package-purge;" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3440 +msgid "Flag the current package to be purged." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3443 +msgid "" +"If the package is installed, it will be removed. Futhermore, even if it is " +"removed, any remaining files (such as configuration files) related to the " +"package will be removed from the system." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3452 +msgid "Keep: &package-keep;" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3456 +msgid "Flag the current package to be kept at its current version." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3461 +msgid "" +"Any action that was to be performed on the package -- installation, removal, " +"or upgrade -- is cancelled, and any persistent hold that was set on the " +"package is removed." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3470 +msgid "Hold: &package-hold;" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3474 +msgid "Set a persistent hold on the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para><footnote> +#: en/aptitude.xml:3478 +msgid "" +"As with Keep, any action that was to be performed on the package is " +"cancelled. In addition, the package will not be automatically upgraded " +"<footnote id='footAutoUpgrade'>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para><footnote><para> +#: en/aptitude.xml:3483 +msgid "" +"That is, it will be unaffected by &actions-upgrade; or the <link " +"linkend='fullUpgrade'><literal>full-upgrade</literal></link> or <link " +"linkend='safeUpgrade'><literal>safe-upgrade</literal></link> command-line " +"actions." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3490 +msgid "" +"</footnote> until the hold is removed. You may cancel a hold by issuing the " +"Install command." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3502 +msgid "" +"The package will not be automatically upgraded<footnoteref " +"linkend='footAutoUpgrade'/> to the version it would currently be upgraded " +"to. If it was going to be upgraded, the upgrade will be cancelled." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3510 +msgid "" +"If you issue this command on a particular version of a package, the package " +"will not be upgraded to the selected version. Note that only one version " +"can be forbidden at once." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3517 +msgid "" +"This functionality is largely provided as a convenience for users of the " +"<quote>unstable</quote> distribution, so they can avoid known-bad versions " +"of packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3528 +msgid "Reinstall: press <keycap>L</keycap>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3534 +msgid "Reinstalls the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><para> +#: en/aptitude.xml:3538 +msgid "" +"Note that the reinstallation will not be saved when you quit &aptitude; or " +"perform an install run for technical reasons. (essentially, the underlying " +"software layers (<command>dpkg</command> and &apt;) do not provide any way " +"to find out whether a reinstallation was successful or not)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3550 +msgid "&package-markauto;, &package-markmanual;" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:3553 +msgid "" +"Sets whether the package is treated as having been automatically installed; " +"automatically installed packages will be removed when no other package " +"requires them. For more information, see <xref linkend='secAutoInstall'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3566 +msgid "" +"In addition to these commands that affect the selected package, there are " +"two commands that affect large numbers of packages at once regardless of " +"what is selected. &actions-forget; clears the <quote>new</quote> status of " +"all packages in the package list, and &actions-upgrade; flags every package " +"which can be upgraded for upgrade, except for packages that are held back or " +"would be upgraded to a forbidden version." +msgstr "" + +# type: Content of: <book><chapter><section><section><note><para> +#: en/aptitude.xml:3577 +msgid "" +"All changes to package states are saved when you quit &aptitude;, update the " +"package list, or perform an install run. If you do not wish to save your " +"changes, you can always abort &aptitude; by pressing <keycap>Ctrl-C</keycap>." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:3587 +msgid "Downloading, installing, and removing packages" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:3590 +msgid "" +"Changing package states as described in the previous section does not " +"actually affect what is installed on your system. Thus, you can adjust the " +"state of packages without affecting your system until you are happy with " +"what you see; once you are, you can <quote>commit</quote> the changes by " +"actually installing and removing packages.<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:3595 +msgid "" +"This is sometimes referred to as an <quote>install run</quote>, even though " +"you might be upgrading or removing packages in addition to installing them." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3602 +msgid "" +"To commit your changes, use the &actions-install; command. Selecting this " +"command will display a preview screen describing the changes that will be " +"performed. This screen is just a package list, and you can manipulate the " +"packages (for instance, cancelling unwanted removals) in the same way that " +"you could in the main list." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3611 +msgid "" +"When you are done, use &views-close; to cancel the installation, or use " +"&actions-install; to proceed. &aptitude; will download any files that need " +"to be downloaded, then prompt you to continue with the installation. When " +"you select <quote>Continue</quote>, the installations and removals will " +"commence." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3620 +msgid "" +"Packages that are downloaded by &aptitude; are placed in a cache directory " +"(typically <filename>/var/cache/apt/archives</filename>). Normally, they " +"are just left in this directory ad infinitum. To delete all the files in " +"this directory, use &actions-clean;; to delete only files which cannot be " +"downloaded again (ie, obsolete packages), use &actions-clean-obs;." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:3631 +msgid "Understanding and managing package trust" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3634 +msgid "" +"&apt;'s ability to access multiple package sources leads to a potential " +"security vulnerability. Suppose you add an archive of packages published by " +"Joe Random Hacker to your <filename>sources.list</filename> file in order to " +"install Joe's <systemitem>gargleblast</systemitem> package. It is possible, " +"however, that -- unbeknownst to you -- Joe's archive also contains his own " +"<quote>customized</quote> versions of packages such as <systemitem>libc6</" +"systemitem> and <systemitem>ssh</systemitem>...versions that steal your " +"private information or open backdoors on your system! If these packages have " +"higher version numbers than the legitimate Debian packages, &apt; will " +"blithely install them on your system during your next upgrade, allowing Joe " +"to do his dirty work undetected. Joe could also break into your mirror of " +"the Debian archives and replace the legitimate software with his doctored " +"version." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3653 +msgid "" +"Luckily, newer versions of &apt; and &aptitude;, such as the version " +"documented in this manual, have built-in safeguards to help defeat this type " +"of attack. &apt; uses strong security mechanisms based on the popular " +"<ulink url='http://www.gnupg.org'>GPG</ulink> encryption software to verify " +"that the packages being distributed from the official Debian mirrors are the " +"same packages that were uploaded by the Debian developers. &aptitude; will " +"then warn you if you attempt to install a package from a non-Debian source, " +"or if you attempt to upgrade a package that was installed from a Debian " +"source to a version that came from a non-Debian source." +msgstr "" + +# type: Content of: <book><chapter><section><section><warning><para> +#: en/aptitude.xml:3669 +msgid "" +"The security mechanisms in &apt; provide a near-perfect guarantee that the " +"contents of your archive mirror are identical to the contents of the master " +"Debian archive. However, they are not a panacea: for instance, there are " +"many ways that a tampered package could theoretically find its way into the " +"master Debian archive." +msgstr "" + +# type: Content of: <book><chapter><section><section><warning><para> +#: en/aptitude.xml:3678 +msgid "" +"Ensuring that you only install software from a trusted source will give you " +"an important degree of protection against malicious packages, but it cannot " +"eliminate all the risks inherent in installing software." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:3686 +msgid "Understanding trust" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para><footnote> +#: en/aptitude.xml:3689 +msgid "" +"&apt; allows the administrator of an archive to provide a " +"<firstterm>signature</firstterm> of the archive's index. This signature, " +"which (for all practical purposes) cannot be forged, indicates that the " +"package files listed in the index are the same files that the administrator " +"intended to place in the archive: ie, that the contents of the archive have " +"not been tampered with since it was created.<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para><footnote><para> +#: en/aptitude.xml:3696 +msgid "" +"As noted above, it does <emphasis>not</emphasis> indicate that the packages " +"in the archive are secure, or even non-malicious; it merely shows that they " +"are genuine." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3699 +msgid "" +"</footnote> The signature can be validated by checking that it corresponds " +"to the administrator's <firstterm>public key</firstterm>. The public key of " +"the Debian archive is distributed with &apt;, typically on your Debian CD." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3707 +msgid "" +"When &aptitude; downloads an archive index, it will check whether the index " +"is properly signed. If it is unsigned, &aptitude; will not trust package " +"files from that archive. (see below for information on what this means) If " +"it has a signature but the signature is incorrect or cannot be verified, a " +"warning will be printed and &aptitude; will refuse to trust packages from " +"that archive." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3718 +msgid "" +"Later, when you perform an <link linkend='secInstallRun'>install run</link>, " +"&aptitude; will check whether the packages are from trusted sources. If an " +"untrusted package is being installed, or a package is being upgraded from a " +"trusted to an untrusted version, a warning will be displayed and you will " +"have the opportunity to abort the download:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:3734 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.3.0 Will use 831kB of disk space DL Size: 30.4MB\n" +"--\\ Packages to be upgraded\n" +"iu U wesnoth -98.3kB 0.8.7-1 0.8.8-1.0w\n" +"iuAU wesnoth-data +930kB 0.8.7-1 0.8.8-1.0w\n" +"+------------------------------------------------------------------------------+\n" +"|WARNING: untrusted versions of the following packages will be installed! #|\n" +"| #|\n" +"|Untrusted packages could compromise your system's security. You should only #|\n" +"|proceed with the installation if you are certain that this is what you want #|\n" +"|to do. #|\n" +"| #|\n" +"| * wesnoth [version 0.8.8-1.0wesnoth.org] #|\n" +"| * wesnoth-data [version 0.8.8-1.0wesnoth.org] #|\n" +"| * wesnoth-music [version 0.8.8-1.0wesnoth.org] #|\n" +"| [ Really Continue ] [ Abort Installation ] |\n" +"+------------------------------------------------------------------------------+\n" +" #\n" +" #\n" +" #\n" +" #\n" +" #\n" +" #" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:3764 +msgid "Trusting additional keys" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3767 +msgid "" +"You might find it useful to allow &apt; to trust additional archives, " +"besides the main Debian archive. For each archive that you want to trust, " +"you will have to acquire the public key that is used to sign the archive's " +"package index. This is typically a text file whose name ends in <filename>." +"asc</filename>; it might be provided by the site administrator or " +"downloadable from a public keyserver. For more information on what public " +"keys are and how to get them, see the <ulink url='http://www.gnupg.org'>GPG " +"web page</ulink>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:3780 +msgid "" +"The list of keys that apt will trust is stored in the <firstterm>keyring " +"file</firstterm> <filename>/etc/apt/trusted.gpg</filename>. Once you have " +"the GPG key, you can add it to this file by executing the command " +"<command>gpg --no-default-keyring --keyring /etc/apt/trusted.gpg --import " +"<replaceable>newkey.asc</replaceable></command>. &aptitude; will then trust " +"any archive that is signed with the key contained in <filename>newkey.asc</" +"filename>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><warning><para> +#: en/aptitude.xml:3793 +msgid "" +"Once an archive's key has been added to the APT keyring, it will be trusted " +"just as much as the main Debian mirrors themselves! You should only do this " +"if you are very confident that the key you are adding is correct " +"<emphasis>and</emphasis> that the person who holds the key is trustworthy " +"and competent." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:3805 +msgid "Managing automatically installed packages" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3808 +msgid "" +"To install one package, it is often necessary to install several others (to " +"fulfill its dependencies). For instance, if you wish to install the " +"<systemitem>clanbomber</systemitem> package, you must also install the " +"package <systemitem>libclanlib2</systemitem>. If you remove " +"<systemitem>clanbomber</systemitem> again, you probably no longer need the " +"<systemitem>libclanlib2</systemitem> package; &aptitude; will attempt to " +"detect this and automatically remove the <systemitem>libclanlib2</" +"systemitem> package." +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:3821 +msgid "" +"It works like this: when you install a package, &aptitude; will " +"automatically install any other packages on which it depends. These " +"packages are marked as having been <quote>automatically installed</quote>; " +"&aptitude; will monitor them and remove them when they are no longer " +"depended upon by any manually installed package <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:3829 +msgid "" +"More precisely: they will be removed when there is no path via Depends, " +"PreDepends, or Recommends to them from a manually installed package. If " +"<link linkend='configKeep-Suggests'>Aptitude::Keep-Suggests</link> is true, " +"a Suggests relationship is also enough to keep a package installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3836 +msgid "" +"</footnote> . They will appear in the preview as <quote>packages being " +"removed because they are no longer used.</quote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3842 +msgid "" +"As with any automatic process, there is a potential for things to go " +"haywire. For instance, even if a package was automatically installed to " +"start with, it might turn out to be useful in its own right. You can cancel " +"the <quote>automatic</quote> flag at any time by pressing <keycap>m</" +"keycap>; if the package is already being removed, you can use &package-" +"install; to cancel the removal and clear the <quote>automatic</quote> flag." +msgstr "" + +# type: Content of: <book><chapter><section><title> +#: en/aptitude.xml:3855 +msgid "Resolving package dependencies" +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:3858 +msgid "Dependency resolution in &aptitude;" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3861 +msgid "There are two main dependency resolution algorithms in &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3866 +msgid "" +"The first is an algorithm that is also used by programs such as &apt-get; " +"and <command>synaptic</command>; I will call it <quote>immediate resolution</" +"quote>. It is invoked whenever you select a package for installation " +"interactively, and immediately after one or more packages are marked for " +"installation at the command-line. Immediate resolution is fast and will " +"solve most dependency problems, but it is sometimes unable to find any " +"solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:3877 +msgid "" +"The second algorithm, which I will call <quote>interactive resolution</" +"quote>, is invoked when packages have broken dependencies even after " +"immediate resolution<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:3880 +msgid "Or when immediate resolution is disabled." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3881 +msgid "" +"</footnote>. It can resolve more dependencies, it allows you to review a " +"solution before applying it, and it allows you to provide feedback to the " +"resolver, guiding it towards a better solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:3889 +msgid "Immediate dependency resolution" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:3892 +msgid "" +"Whenever you choose to install or upgrade a package in &aptitude;, " +"&aptitude; makes an immediate attempt to resolve any of its dependencies " +"that are not fulfilled. For each unsatisfied dependency (either a " +"<quote>Depends</quote>, a <quote>Recommends</quote>, or a <quote>Conflicts</" +"quote>), it performs the following steps:" +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:3903 +msgid "" +"If the dependency is a recommendation, &aptitude; tries to guess whether it " +"is a <quote>new</quote> recommendation or a <quote>previously satisfied</" +"quote> recommendation. &aptitude; considers a recommendation to be " +"<quote>new</quote> if the package declaring the recommendation is not " +"currently installed, or if its installed version does not recommend a " +"package of the same name. On the other hand, a recommendation is " +"<quote>previously satisfied</quote> if the package declaring the " +"recommendation is installed, the currently installed version recommends a " +"package of the same name, and that recommendation is currently fulfilled." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:3918 +msgid "" +"For example: suppose that version <literal>1.0</literal> of <literal>prog</" +"literal> recommends version <literal>4.0</literal> of <literal>libcool1</" +"literal>, but version <literal>2.0</literal> of <literal>prog</literal> " +"recommends version <literal>5.0</literal> of <literal>libcool1</literal>, " +"and also recommends <literal>apache</literal>. If you choose to upgrade " +"<literal>prog</literal> from version <literal>1.0</literal> to version " +"<literal>2.0</literal>, the recommendation of <literal>apache</literal> will " +"be considered to be <quote>new</quote> because version <literal>1.0</" +"literal> of <literal>prog</literal> did not recommend <literal>apache</" +"literal>. On the other hand, the recommendation of <literal>libcool1</" +"literal> is <emphasis>not</emphasis> <quote>new</quote>, because version " +"<literal>1.0</literal> of <literal>prog</literal> recommended " +"<literal>libcool1</literal>, even though it recommended a different " +"version. However, if <literal>libcool1</literal> is installed, then that " +"recommendation will be considered to be <quote>previously satisfied</quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:3944 +msgid "" +"If the configuration option <link linkend='configAptInstall-" +"Recommends'><literal>Apt::Install-Recommends</literal></link> is " +"<literal>true</literal>, &aptitude; will always attempt to fulfill " +"<quote>new</quote> and <quote>previously satisfied</quote> recommendations; " +"all others will be ignored by immediate resolution. If that option is " +"<literal>false</literal>, immediate dependency resolution will ignore " +"<emphasis>all</emphasis> recommendations." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:3958 +msgid "" +"If the dependency is on several packages combined with OR, examine each of " +"the alternatives in the order that they are given. For instance, if a " +"package depends on <quote><literal>exim | mail-transport-agent</literal></" +"quote>, &aptitude; will first process <literal>exim</literal>, then " +"<literal>mail-transport-agent</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para><footnote> +#: en/aptitude.xml:3970 +msgid "" +"For each alternative, attempt to resolve it. If the dependency is a " +"conflict, remove the current alternative if it is installed (and for an " +"unversioned conflict, also remove any package providing the target of the " +"conflict). Otherwise, install the candidate version of the current " +"alternative if it satisfies the dependency. If not, or if there is no " +"candidate version (for instance, because the current alternative is a " +"virtual package), and if the dependency is unversioned, attempt to install " +"the highest-priority package<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para><footnote><para> +#: en/aptitude.xml:3980 +msgid "" +"The package with the highest <command>dpkg</command> priority, not the " +"package with the highest &apt; pin priority." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:3982 +msgid "" +"</footnote> whose candidate version provides the target of the current " +"alternative." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:3988 +msgid "" +"For instance, say we are attempting to resolve <quote><literal>Depends: exim " +"| mail-transport-agent</literal></quote>. &aptitude; will first attempt to " +"install the package <literal>exim</literal>. If <literal>exim</literal> is " +"not available, &aptitude; will then attempt to install the highest-priority " +"package whose candidate version provides <literal>exim</literal>. If there " +"is no such package, &aptitude; will install the highest-priority package " +"whose candidate version provides the virtual package <literal>mail-transport-" +"agent</literal>. On the other hand, suppose that the dependency is " +"<quote><literal>Depends: exim (>= 2.0.0) | mail-transport-agent</literal></" +"quote>, but only version <literal>1.0</literal> of <literal>exim</literal> " +"is available. In this case, &aptitude; will not install <literal>exim</" +"literal> (because the version does not match), nor will it attempt to " +"install packages providing <literal>exim</literal> (because virtual packages " +"cannot match a dependency with a version restriction). Thus, &aptitude; " +"will fall back to installing the highest-priority package whose candidate " +"version provides <literal>mail-transport-agent</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4017 +msgid "" +"If a package was installed by the previous step, resolve its dependencies " +"using this algorithm, then stop." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4024 +msgid "" +"While this technique very often solves all the outstanding package " +"dependencies, it can fail in a number of common circumstances." +msgstr "" + +# type: Content of: <book><chapter><section><section><itemizedlist><listitem><para> +#: en/aptitude.xml:4032 +msgid "" +"Conflicts are resolved by removing the package that is the target of the " +"conflict. But now other packages that depend on this package have " +"unresolved dependencies; the immediate resolver makes no attempt to fix them." +msgstr "" + +# type: Content of: <book><chapter><section><section><itemizedlist><listitem><para> +#: en/aptitude.xml:4041 +msgid "" +"A dependency might not be satisfiable due to version restrictions and due to " +"the limitation that only candidate versions are considered. For instance, " +"say that versions <literal>1.0</literal> and <literal>2.0</literal> of " +"<literal>fileutils</literal> are available, that the candidate version is " +"<literal>1.0</literal>, and that the package <literal>octopus</literal> " +"declares a dependency <quote><literal>Depends: fileutils (>= 2.0)</literal></" +"quote>. Immediate resolution is unable to resolve this dependency: it will " +"never consider version <literal>2.0</literal> of the package, since that is " +"not the candidate version." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4059 +msgid "" +"The interactive dependency resolver can solve these situations and more. " +"When there are broken dependencies left over, or when immediate dependency " +"resolution is disabled, the interactive resolver will automatically start " +"searching for a solution. The next section describes how to use the " +"interactive dependency resolver." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:4069 +msgid "Resolving Dependencies Interactively" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4072 +msgid "" +"If a dependency problem arises that cannot be handled using the immediate " +"dependency resolver, &aptitude; can assist you in resolving it. As soon as " +"a problem occurs, a red bar will appear at the bottom of the screen with a " +"summary of &aptitude;'s suggestion about how to fix it. For instance, in " +"the following screenshot, &aptitude; is indicating that it can resolve the " +"situation by keeping two packages at their current versions." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4118 +msgid "" +"As indicated at the bottom of the screen, you can view additional solutions " +"by pressing <keycap>.</keycap> and <keycap>,</keycap>, apply the current " +"solution by pressing <keycap>!</keycap>, and examine the solution in more " +"detail by pressing <keycap>e</keycap>. When you examine the current " +"solution, a screen similar to the following will appear:" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4163 +msgid "" +"You can access information about the package affected by an action by simply " +"pressing <keycap>Enter</keycap> while the package is highlighted. For a " +"more detailed explanation of why &aptitude; made a particular decision, you " +"can highlight the element in the list. When you do so, the lower half of " +"the screen will display the dependency which was resolved by &aptitude;'s " +"choice, along with every way in which this dependency could have been " +"resolved." +msgstr "" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:4180 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages Resolve Dependencies\n" +" --\\ Keep the following packages at their current version:\n" +" gstreamer0.8-cdparanoia [0.8.11-1 (unstable, now)]\n" +" sound-juicer [2.10.1-3 (unstable, now)]\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"cdparanoia plugin for GStreamer\n" +"sound-juicer depends upon gstreamer0.8-cdparanoia\n" +"--\\ The following actions will resolve this dependency:\n" +" -> Downgrade sound-juicer [2.10.1-3 (unstable, now) -> 0.6.1-2 (testing)]\n" +" -> Remove sound-juicer [2.10.1-3 (unstable, now)]\n" +" -> Cancel the removal of gstreamer0.8-cdparanoia\n" +" -> Downgrade gstreamer0.8-cdparanoia [0.8.11-1 (unstable, now) -> 0.8.8-3 (tes\n" +"\n" +"\n" +"\n" +"[1(1)/...] Suggest 2 keeps\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4209 +msgid "" +"You can guide the dependency resolver to a solution of which you approve by " +"<firstterm>approving</firstterm> or <firstterm>rejecting</firstterm> the " +"individual actions of a solution. If you <firstterm>approve</firstterm> an " +"action, the resolver will choose it whenever possible, ignoring alternatives " +"(when there are several approved alternatives, any one of them could be " +"chosen). On the other hand, if you <firstterm>reject</firstterm> an action, " +"the resolver will never choose that action." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4221 +msgid "" +"To reject an action, highlight it and press <keycap>r</keycap>; the " +"rejection can be cancelled by pressing <keycap>r</keycap> again. Similarly, " +"select an action and press <keycap>a</keycap> to approve it; press " +"<keycap>a</keycap> again to restore its original state. You can undo either " +"action by using &undo-undo; while the resolver screen is active. If you " +"cancel a rejection or an approval, any solutions that were ignored will be " +"available the next time that you generate a new solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><note><para> +#: en/aptitude.xml:4234 +msgid "" +"By default, the resolver rejects actions that change the state of held " +"packages, or that install forbidden versions of packages. You can override " +"these rejections, thus allowing the hold or forbidding to be automatically " +"overridden, in the same way that you would override any other rejection. " +"Setting the configuration option <link linkend='configProblemResolver-Allow-" +"Break-Holds'><literal>Aptitude::ProblemResolver::Allow-Break-Holds</" +"literal></link> to <literal>true</literal> will disable this behavior, " +"meaning that the resolver will always break holds (albeit at a penalty, see " +"<link linkend='configProblemResolver-BreakHoldScore'><literal>Aptitude::" +"ProblemResolver::BreakHoldScore</literal></link>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4249 +msgid "" +"Rejected actions are colored red and marked with an <quote>R</quote>, while " +"approved actions are colored green and marked with an <quote>A</quote>. You " +"can see this in the following screenshot, where the action <quote>keep " +"<systemitem>gstreamer0.8-cdparanoia</systemitem> at its current version</" +"quote> has been rejected, and the action <quote>keep <systemitem>sound-" +"juicer</systemitem> at its current version</quote> has been approved." +msgstr "" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:4266 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages Resolve Dependencies\n" +" --\\ Keep the following packages at their current version:\n" +"R gstreamer0.8-cdparanoia [0.8.11-1 (unstable, now)]\n" +"A sound-juicer [2.10.1-3 (unstable, now)]\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"[1(1)/...] Suggest 2 keeps\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4295 +msgid "" +"Rejections and approvals only affect <emphasis>newly generated</emphasis> " +"solutions. You can tell when a new solution will be generated by examining " +"the indicator in the lower left hand corner of the screen: if there is a " +"number in parentheses, it is the number of solutions that have been " +"generated. Thus, when the number outside the parentheses and the number " +"inside are identical (as above), pressing <keycap>.</keycap> will generate a " +"new solution. If there is no number in parentheses (for instance, the " +"indicator reads <literal>[1/5]</literal>), then there are no more solutions " +"to generate. At any time, you can select the last generated solution by " +"pressing <keycap>></keycap>, and the first generated solution by pressing " +"<keycap><</keycap>." +msgstr "" + +# type: Content of: <book><chapter><section><section><important><para> +#: en/aptitude.xml:4313 +msgid "" +"The state of the problem resolver is discarded when you modify the state of " +"any package. If you mark a package for installation, for upgrade, for " +"removal, etc, the resolver will forget all of your rejections and approvals, " +"as well as all the solutions that have been generated so far." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4323 +msgid "" +"In addition to selecting actions in the list at the top of the screen, you " +"can also select them using the list in the bottom half. To access this " +"list, either click in it using the mouse or press <keycap>Tab</keycap>. " +"Finally, to see the decisions that the problem resolver took arranged in " +"order, press <keycap>o</keycap>. This will give a list of the dependencies " +"that were resolved and the action taken to resolve them, as in the following " +"screenshot." +msgstr "" + +# type: Content of: <book><chapter><section><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:4340 +#, no-wrap +msgid "" +" Actions Undo Package Resolver Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +" Packages Resolve Dependencies\n" +" --\\ gnome-desktop-environment depends upon sound-juicer\n" +" -> Cancel the removal of sound-juicer\n" +" --\\ sound-juicer depends upon gstreamer0.8-cdparanoia\n" +" -> Cancel the removal of gstreamer0.8-cdparanoia\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"GNOME 2 CD Ripper\n" +"gnome-desktop-environment depends upon sound-juicer\n" +"--\\ The following actions will resolve this dependency:\n" +" -> Remove gnome-desktop-environment [1:2.10.2.3 (unstable, testing, now)]\n" +" -> Cancel the removal of sound-juicer\n" +" -> Downgrade sound-juicer [2.10.1-3 (unstable, now) -> 0.6.1-2 (testing)]\n" +"\n" +"\n" +"\n" +"\n" +"[1(1)/...] Suggest 2 keeps\n" +"e: Examine !: Apply .: Next ,: Previous" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4369 +msgid "You can leave this display mode by pressing <keycap>o</keycap> again." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:4375 +msgid "Search tiers in the interactive dependency resolver" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><title> +#: en/aptitude.xml:4378 +msgid "Search tiers" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:4388 +msgid "" +"When generating solutions, &aptitude; places them in order according to " +"their <firstterm>tier</firstterm>. Tiers can be thought of as a way of " +"dividing solutions into several numbered <quote>compartments</quote>; the " +"dependency resolver will search each compartment in numerical order from " +"lowest to highest, but will not leave a compartment until all the solutions " +"it contains have been generated<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:4395 +msgid "" +"<quote>Generated</quote> solutions include those solutions that are rejected " +"as described in <xref linkend='secResolver'/>; it is not necessary to " +"actually look at all the solutions in a particular tier to skip past that " +"tier!" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4399 +msgid "" +"</footnote>. <xref linkend='figureSearchTiers'/> shows how this works with " +"&aptitude;'s default settings." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4405 +msgid "" +"By default, &aptitude; initializes the resolver with a <quote>reasonable</" +"quote> set of tiers. They are:" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><title> +#: en/aptitude.xml:4410 +msgid "Default tiers" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><thead><row><entry> +#: en/aptitude.xml:4415 +msgid "Tier number" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><thead><row><entry> +#: en/aptitude.xml:4417 +msgid "Configuration option" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4423 +msgid "10,000" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4425 +msgid "" +"<quote>Safe</quote> actions: no removals, broken holds, or non-default " +"versions." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4428 +msgid "" +"<literal><link linkend='configProblemResolver-Safe-Tier'>Aptitude::" +"ProblemResolver::Safe-Tier</link></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4432 +msgid "20,000" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4434 +msgid "The solution that cancels all the user's actions." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4436 +msgid "" +"<literal><link linkend='configProblemResolver-Keep-All-Tier'>Aptitude::" +"ProblemResolver::Keep-All-Tier</link></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4440 +msgid "30,000" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4442 +msgid "Solutions that remove packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4444 +msgid "" +"<literal><link linkend='configProblemResolver-Remove-Tier'>Aptitude::" +"ProblemResolver::Remove-Tier</link></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4448 +msgid "40,000" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4450 +msgid "" +"Solutions that break holds set by the user or install forbidden versions." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4453 +msgid "" +"<literal><link linkend='configProblemResolver-Break-Hold-Tier'>Aptitude::" +"ProblemResolver::Break-Hold-Tier</link></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4457 +msgid "50,000" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4459 +msgid "" +"Solutions that install packages from non-default versions (such as " +"<quote><literal>experimental</literal></quote>, for instance)." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4464 +msgid "" +"<literal><link linkend='configProblemResolver-Non-Default-Tier'>Aptitude::" +"ProblemResolver::Non-Default-Tier</link></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4468 +msgid "60,000" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4470 +msgid "Solutions that remove Essential packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:4472 +msgid "" +"<literal><link linkend='configProblemResolver-Remove-Essential-" +"Tier'>Aptitude::ProblemResolver::Remove-Essential-Tier</link></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4479 +msgid "" +"If a solution qualifies for several tiers, it will be placed in the highest " +"(that is to say, latest) one. For example, a solution that upgrades one " +"package to its default version and removes a second package will be placed " +"at tier 30,000. You can adjust the tiers of individual versions using " +"resolver hints; see <xref linkend='secDependencyResolutionHints'/> for " +"details. The default tiers are illustrated in <xref " +"linkend='figureSearchTiers'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><tip><para> +#: en/aptitude.xml:4492 +msgid "" +"Within each tier, &aptitude; orders solutions according to the lowest pin " +"priority of any package in the solution. That is: if one solution contains " +"packages with priorities 500, 1000, and 0, and another solution contains " +"only packages with priority 50, the second solution will appear first." +msgstr "" + +# type: Content of: <book><chapter><section><section><tip><para> +#: en/aptitude.xml:4501 +msgid "" +"If two solutions in the same tier have the same pin priority, &aptitude; " +"will attempt to produce them in order according to their <quote>score</" +"quote>. However, the score of a solution is only a guideline, and solutions " +"with a lower score might appear before solutions with a higher score. If " +"you need a guarantee that solutions will appear in a particular order, you " +"should use search tiers." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:4513 +msgid "Configuring the interactive dependency resolver" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:4516 +msgid "Configuring resolver hints" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:4519 +msgid "" +"To improve the quality of the dependency solutions that you receive, you can " +"provide hints to the interactive dependency resolver. These hints can alter " +"the priorities of the resolver, biasing it more strongly in favor of one " +"version or package, or they can be used to <quote>pre-load</quote> the " +"resolver with rejections and approvals, as if you had entered the resolver " +"and manually rejected or approved various versions." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:4530 +msgid "" +"Hints are stored in the &apt; configuration file, <filename>/etc/apt/apt." +"conf</filename>, in the configuration group <quote><literal><link " +"linkend='configProblemResolver-Hints'>Aptitude::ProblemResolver::Hints</" +"link></literal></quote> (see <xref linkend='secConfigFile'/> for details on " +"the configuration file)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:4539 +msgid "" +"Each resolver hint consists of an <replaceable>action</replaceable>, a " +"<replaceable>target</replaceable>, and an optional <replaceable>version</" +"replaceable>. A hint is written like this: <literal>\"<replaceable>action</" +"replaceable> <replaceable>target</replaceable> " +"<optional><replaceable>version</replaceable></optional>\"</literal>. To " +"apply a resolver hint, &aptitude; locates one or more packages using the " +"value of <replaceable>target</replaceable>, chooses one or more versions of " +"those packages using the value of <replaceable>version</replaceable>, and " +"finally performs the given <replaceable>action</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:4555 +msgid "" +"The <replaceable>action</replaceable> field of a resolver hint may be one of " +"the following:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4562 +msgid "" +"<quote><literal>approve</literal></quote>: Approve the version, as if the " +"command <link linkend='menuResolverApprove'>&resolver-approve;</link> had " +"been invoked on it." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4571 +msgid "" +"<quote><literal>reject</literal></quote>: Reject the version, as if the " +"command <link linkend='menuResolverReject'>&resolver-reject;</link> had been " +"invoked on it." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4580 +msgid "" +"<quote><literal>increase-tier <replaceable>number</replaceable></literal></" +"quote>: increase the tier of any solution that contains the version to " +"<replaceable>number</replaceable>; if its tier is already higher than " +"<replaceable>number</replaceable>, this hint has no effect. Solutions " +"containing higher-tiered versions will appear after solutions with only " +"lower-tiered versions; see <xref " +"linkend='secDependencyResolutionSearchTiers'/> for details." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4594 +msgid "Several special tiers can be chosen by name:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para><orderedlist><listitem><para> +#: en/aptitude.xml:4599 +msgid "" +"<literal>conflict</literal>: the highest possible tier. Unlike other tiers, " +"solutions generated at this tier are discarded immediately: they will never " +"appear in the output list. Thus, a hint of <quote><literal>increase-tier " +"conflict</literal></quote> is similar to a <quote><literal>reject</literal></" +"quote> hint: the difference is that the rejection can be canceled by the " +"user at run-time, whereas once a version is set to the conflict tier, the " +"only way to remove it is to change the configuration and restart &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para><orderedlist><listitem><para> +#: en/aptitude.xml:4617 +msgid "" +"<literal>minimum</literal>: the lowest possible tier. All searches start at " +"this tier, so <quote>increasing</quote> a version to this tier has no " +"effect. However, this value can also be used when adjusting the predefined " +"tiers: for instance, setting <link linkend='configProblemResolver-Remove-" +"Tier'><literal>Aptitude::ProblemResolver::Remove-Tier</literal></link> to " +"<quote><literal>minimum</literal></quote> will cause removed packages to " +"have no effect on the tier of a solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><note><para> +#: en/aptitude.xml:4634 +msgid "" +"The <literal>increase-tier</literal> hint is applied <emphasis>in addition</" +"emphasis> to any default tier that is set due to the selected action. For " +"instance, a hint that increases the tier of <quote>install <systemitem>hal</" +"systemitem> from <systemitem>experimental</systemitem></quote> to 15,000 " +"will have no effect, because that action is already at tier 50,000 (assuming " +"that this version of <systemitem>hal</systemitem> is not the default " +"candidate version)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4650 +msgid "" +"<quote><replaceable>number</replaceable></quote>: add the given " +"<replaceable>number</replaceable> to the version's <replaceable>score</" +"replaceable>, biasing the resolver in favor of it or (with a negative " +"number) away from it. For instance, the hint <literal>200 emacs</literal> " +"adds 200 to the score of <literal>emacs</literal>, whereas the hint " +"<literal>-10 emacs</literal> subtracts 10 from its score." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:4664 +msgid "" +"If <replaceable>target</replaceable> field of a resolver hint contains a " +"question mark (<quote><literal>?</literal></quote>) or tilde " +"(<quote><literal>~</literal></quote>), it is considered to be a search " +"pattern and all matching package versions are considered. Otherwise, it is " +"considered to be the name of a package to select. So the target " +"<quote><literal>g++</literal></quote> will select only the <literal>g++</" +"literal> package, but the target <quote><literal>?section(non-free)</" +"literal></quote> will select any package in the <literal>non-free</literal> " +"section. See <xref linkend='secSearchPatterns'/> for more information on " +"search patterns." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:4680 +msgid "" +"If the <replaceable>version</replaceable> field is not present, then all " +"versions of the package are affected by the hint. Otherwise, it may have " +"any of the following forms:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4689 +msgid "" +"<quote><literal>/<replaceable>archive</replaceable></literal></quote>: the " +"hint only affects versions that are available in the given " +"<replaceable>archive</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4697 +msgid "" +"<quote><literal><<replaceable>version</replaceable></literal></quote>: " +"the hint only affects versions whose version number is less than " +"<replaceable>version</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4705 +msgid "" +"<quote><literal><=<replaceable>version</replaceable></literal></quote>: " +"the hint only affects versions whose version number is less than or equal to " +"<replaceable>version</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4714 +msgid "" +"<quote><literal>=<replaceable>version</replaceable></literal></quote>: the " +"hint only affects versions whose version number is <replaceable>version</" +"replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4722 +msgid "" +"<quote><literal><><replaceable>version</replaceable></literal></" +"quote>: the hint only affects versions whose version number is not " +"<replaceable>version</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4730 +msgid "" +"<quote><literal>>=<replaceable>version</replaceable></literal></quote>: " +"the hint only affects versions whose version number is greater than or equal " +"to <replaceable>version</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4739 +msgid "" +"<quote><literal>><replaceable>version</replaceable></literal></quote>: " +"the hint only affects versions whose version number is greater than " +"<replaceable>version</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4747 +msgid "" +"<quote><literal>:UNINST</literal></quote>: instead of affecting any of the " +"versions of <replaceable>target</replaceable>, the hint affects the decision " +"to remove <replaceable>target</replaceable>. For instance, " +"<quote><literal>reject aptitude :UNINST</literal></quote> will prevent the " +"resolver from attempting to remove &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:4760 +msgid "" +"<quote><replaceable>version</replaceable></quote>: the hint only affects " +"versions whose version number is <replaceable>version</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><title> +#: en/aptitude.xml:4771 +msgid "Search patterns" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:4774 +msgid "" +"When you search for a package or set a display limit in &aptitude;, the " +"string you enter is known as a <quote>search pattern</quote>. While the " +"most basic usage of search patterns is to match packages by name, &aptitude; " +"allows you to create much more complex searches. In addition to the visual " +"interface, some command-line operations can use search patterns; see <xref " +"linkend='secReference'/> for details." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:4784 +msgid "" +"A search pattern consists of one or more conditions (sometimes known as " +"<quote>terms</quote>); packages match the pattern if they match all of its " +"terms. Terms generally start with a question mark (<quote>?</quote>), " +"followed by the name of the match term, which describes the search that the " +"term performs: for instance, the term &Sname; matches package names, while " +"the term &Sversion; matches package versions. Finally, any additional " +"parameters to the search term are placed in parentheses (see the " +"documentation of individual terms for details of what each term's parameters " +"mean)." +msgstr "" + +# type: Content of: <book><chapter><section><note><para><footnote> +#: en/aptitude.xml:4798 +msgid "" +"Text with no leading <quote>?</quote> also forms a search pattern: " +"&aptitude; will treat each word (or quoted string) as the argument to a " +"&Sterm; pattern, which performs a full-text search against the package " +"database.<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><note><para><footnote><para> +#: en/aptitude.xml:4802 +msgid "" +"Previous versions of &aptitude; would instead treat text with no leading " +"<quote>?</quote> as a &Sname; pattern." +msgstr "" + +# type: Content of: <book><chapter><section><note><para> +#: en/aptitude.xml:4804 +msgid "" +"</footnote> For instance, the search pattern <quote><literal>algebra</" +"literal></quote> will match any package that contains the keyword " +"<literal>algebra</literal>, producing the same effect as the search pattern " +"<quote><literal>&Sterm;(algebra)</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><warning><para> +#: en/aptitude.xml:4815 +msgid "" +"The behavior of aptitude when given a search pattern without a leading " +"<quote>?</quote> (or <quote>~</quote>) is provided as a convenience for " +"interactive use and will change in future releases; scripts that invoke " +"<literal>aptitude</literal> should explicitly name the search strategy they " +"want to use. That is, scripts should search for <quote><literal>&Sterm;(coq)" +"</literal></quote> rather than <quote><literal>coq</literal></quote>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:4827 +msgid "Searching for strings" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4830 +msgid "" +"Many search terms take a string as a parameter and match it against one or " +"more fields of a package. Strings can be entered either with or without " +"double quotes (<quote><literal>\"</literal></quote>), so " +"<quote><literal>&Sname;(scorch)</literal></quote> and <quote><literal>&Sname;" +"(\"scorch\")</literal></quote> will perform the same search. If you enter a " +"search string using double quotes, you can include a literal double-quote in " +"the search string by placing a backslash (<quote><literal>\\</literal></" +"quote>) immediately before it: for instance, <quote><literal>&Sdescription;" +"(\"\\\"easy\\\"\")</literal></quote> will match any package whose " +"description contains the string <quote><literal>\"easy\"</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:4847 +msgid "" +"If you enter a <quote>bare</quote> string, one not surrounded by double " +"quotes, then &aptitude; will consider the string to have <quote>ended</" +"quote> when it encounters the closing parenthesis or the comma before a " +"second argument to the search term. <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:4854 +msgid "" +"&aptitude; will only treat the comma as special if there is a second " +"argument, so (for instance) <quote><literal>&Sname;(apt,itude)</literal></" +"quote> searches for the string <quote><literal>apt,itude</literal></quote> " +"in the <literal>Name</literal> field of packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:4863 +msgid "" +"While this behavior is well-defined, it may be surprising; I recommend using " +"quoted strings for any pattern that contains characters that could have a " +"special meaning." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4868 +msgid "" +"</footnote> To remove the special meaning of these characters, place a tilde " +"(<quote><literal>~</literal></quote>) directly before them. For instance, " +"<quote><literal>&Sdescription;(etc))</literal></quote> is a syntax error, " +"because the first <quote><literal>)</literal></quote> ends the " +"&Sdescription; term, and the second <quote><literal>)</literal></quote> does " +"not correspond to any <quote><literal>(</literal></quote>. In contrast, " +"<quote><literal>&Sdescription;(etc~))</literal></quote> matches any package " +"whose description contains the text <quote><literal>etc)</literal></quote>. " +"There are additional considerations if you are using the shorthand notation " +"for a term; see <xref linkend='secSearchShorthand'/> for details." +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:4887 +msgid "" +"Most textual searches (for package names, descriptions, etc) are performed " +"using case-insensitive <ulink url='http://sitescooper.org/tao_regexps." +"html'>regular expressions</ulink>. A regular expression will match against " +"a field if any portion of the field matches the expression; for instance, " +"<quote><literal>ogg[0-9]</literal></quote> will match " +"<quote><literal>libogg5</literal></quote>, <quote><literal>ogg123</literal></" +"quote>, and <quote><literal>theogg4u</literal></quote>. Some characters " +"have a special meaning within regular expressions <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:4901 +msgid "" +"Characters with a special meaning include: <quote><literal>+</literal></" +"quote>, <quote><literal>-</literal></quote>, <quote><literal>.</literal></" +"quote>, <quote><literal>(</literal></quote>, <quote><literal>)</literal></" +"quote>, <quote><literal>|</literal></quote>, <quote><literal>[</literal></" +"quote>, <quote><literal>]</literal></quote>, <quote><literal>^</literal></" +"quote>, <quote><literal>$</literal></quote>, and <quote><literal>?</" +"literal></quote>. Note that some of these are also &aptitude; " +"metacharacters, so if you want to type (for instance) a literal " +"<quote><literal>|</literal></quote>, it must be double-escaped: " +"<quote><literal>&Sdescription;(\\~|)</literal></quote> will match packages " +"whose description contains a vertical bar character (<quote><literal>|</" +"literal></quote>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4922 +msgid "" +"</footnote> , so if you want to match them in searches you need to backslash-" +"escape them: for instance, to find <quote><literal>g++</literal></quote>, " +"you should use the pattern <quote><literal>g\\+\\+</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4930 +msgid "" +"The characters <quote><literal>!</literal></quote> and <quote><literal>|</" +"literal></quote> have special meanings within search patterns. In order to " +"include these characters in an unquoted string, you can place a tilde " +"(<quote><literal>~</literal></quote>) directly before them. For instance, " +"to match packages whose description contains either <quote>grand</quote> or " +"<quote>oblique</quote>, use the pattern <quote><literal>&Sdescription;" +"(grand~|oblique)</literal></quote>. However, you will probably find it more " +"convenient to simply use a quoted string in these cases: " +"<quote><literal>&Sdescription;(\"grand|oblique\")</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:4946 +msgid "Shorthand for search terms" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:4949 +msgid "" +"Some search terms can be written using <quote>short</quote> forms, which " +"consist of a tilde (<quote><literal>~</literal></quote>) followed by a " +"single character that identifies the term, and finally the arguments (if " +"any) to the term. For instance, the short form of <literal>&Sname;(aptitude)" +"</literal> is <literal>~n aptitude</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:4959 +msgid "" +"When writing a term using its short form, tilde characters and " +"<quote>whitespace</quote> -- that is, space characters, tabs, and so on -- " +"will break the term off and start a new term. For instance, " +"<quote><literal>~mDaniel Burrows</literal></quote> will match any package " +"whose maintainer field contains <quote><literal>Daniel</literal></quote> and " +"whose name contains <quote><literal>Burrows</literal></quote>, while " +"<quote><literal>~i~napt</literal></quote> matches installed packages whose " +"name contains <literal>apt</literal>. To include whitespace characters in " +"the search expression, you can either place a tilde in front of it (as in " +"<literal>Daniel~ Burrows</literal>) or place quotation marks around it (as " +"in <literal>\"Debian Project\"</literal> or even <literal>Debian\" " +"\"Project</literal>). Inside a quoted string, the backslash character " +"(<quote>\\</quote>) can be used to cancel the special meaning of the " +"quotation mark: for instance, <literal>~d\"\\\"email\"</literal> will match " +"any package whose description contains a quotation mark followed immediately " +"by <literal>email</literal>. <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:4981 +msgid "" +"The backslash escapes <literal>\\\\</literal>, <literal>\\n</literal>, and " +"<literal>\\t</literal> are also available." +msgstr "" + +# type: Content of: <book><chapter><section><section><note><para> +#: en/aptitude.xml:4990 +msgid "" +"Question marks (<quote><literal>?</literal></quote>) will <emphasis>not</" +"emphasis> end the short form of a term, even if they are followed by the " +"name of a search term. For instance, <quote><literal>~napt?priority" +"(required)</literal></quote> will match all packages whose name matches the " +"regular expression <quote><literal>apt?priority(required)</literal></" +"quote>. To combine a short query term with a search term specified by name, " +"add one or more spaces between the two terms, as in " +"<quote><literal>~napt ?priority(required)</literal></quote>, or place " +"quotation marks around the text (if any) following the short form of a " +"term, as in <quote><literal>~n\"apt\"?priority(required)</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:5009 +msgid "" +"<xref linkend='tableSearchTermQuickGuide'/> lists the short form of each " +"search term." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:5015 +msgid "Searches and versions" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:5018 +msgid "" +"By default, a pattern matches a package if any version of the package " +"matches the pattern. However, some patterns will restrict their sub-" +"patterns to only match against some versions of a package. For instance, " +"the search term <literal>&Sdepends;(<replaceable>pattern</replaceable>)</" +"literal> will select any package that depends on a package matching " +"<replaceable>pattern</replaceable>. However, <replaceable>pattern</" +"replaceable> will only be checked against the versions of the package that " +"actually satisfy a dependency. This means that if <literal>foo</literal> " +"depends on <literal>bar (>= 3.0)</literal> and versions <literal>2.0</" +"literal>, <literal>3.0</literal>, and <literal>4.0</literal> of " +"<literal>bar</literal> are available, then in the search pattern " +"<literal>&Sdepends;(&Sversion;(2\\.0))</literal>, only versions " +"<literal>3.0</literal> and <literal>4.0</literal> will be tested against " +"<literal>&Sversion;(2\\.0)</literal>, and hence <literal>foo</literal> will " +"not be found by this search." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:5040 +msgid "" +"It matters which versions are checked because, as in the example above, some " +"patterns will match one version but not another. For instance, the pattern " +"&Sinstalled; will only match the version of the package (if any) that is " +"currently installed. Similarly, the pattern <literal>&Smaintainer;" +"(<replaceable>maintainer</replaceable>)</literal> will only match versions " +"that have the given <replaceable>maintainer</replaceable>. Normally all " +"versions of a package have the same maintainer, but this is not always the " +"case; in fact, any search pattern that examines the fields of a package " +"(other than its name, of course) will behave this way, because all the " +"fields of a package can change between versions." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:5056 +msgid "" +"To test a pattern against all the versions of a package, even if the pattern " +"would normally be tested against only some of the versions, use the &Swiden; " +"term. For instance, <literal>&Sdepends;(&Swiden;(&Sversion;(2\\.0)))</" +"literal> will match any package <replaceable>A</replaceable> that depends on " +"a package <replaceable>B</replaceable>, where <replaceable>B</replaceable> " +"has a version matching <literal>2.0</literal>, regardless of whether that " +"version actually satisfies <replaceable>A</replaceable>'s dependency. On " +"the other hand, the &Snarrow; term restricts the versions that its sub-" +"pattern is matched against: <literal>&Snarrow;(&Sinstalled;, &Sdepends;" +"(&Sversion;(ubuntu)))</literal> will match any package whose installed " +"version has a dependency that can be satisfied by a package whose version " +"string contains <quote><literal>ubuntu</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><note><para> +#: en/aptitude.xml:5076 +msgid "" +"There is a subtle, but important, distinction between matching a pattern " +"against a package, and matching it against all the versions of that " +"package. When a pattern is matched against a package, each of its terms is " +"matched against the package, and so each term will match if <emphasis>any</" +"emphasis> version of the package matches. In contrast, when a pattern is " +"matched against each version of a package, it will successfully match if it " +"matches when all its terms are matched against the <emphasis>same</emphasis> " +"version of the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><note><para> +#: en/aptitude.xml:5089 +msgid "" +"For example: suppose that version <literal>3.0-1</literal> of the package " +"<literal>aardvark</literal> is installed, but that version <literal>4.0-1</" +"literal> is available. Then the search expression <literal>&Sversion;(4\\.0-" +"1)&Sinstalled;</literal> matches <literal>aardvark</literal>, because " +"<literal>&Sversion;(4\\.0-1)</literal> matches against version <literal>4.0-" +"1</literal> of <literal>aardvark</literal>, while &Sinstalled; matches " +"against version <literal>3.0-1</literal>. On the other hand, this " +"expression <emphasis>does not</emphasis> match against all the versions of " +"<literal>aardvark</literal>, because no single version is installed and also " +"has a version number of <literal>4.0-1</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:5112 +msgid "Explicit search targets" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:5115 +msgid "" +"Some particularly complex searches can be expressed in &aptitude; using " +"<firstterm>explicit targets</firstterm>. In normal search expressions, " +"there is no way to refer to the package or version that is currently being " +"tested. For instance, suppose that you want to search for all packages " +"<replaceable>P</replaceable> that depend on a second package <replaceable>Q</" +"replaceable> such that <replaceable>Q</replaceable> recommends " +"<replaceable>P</replaceable>. Clearly you need to start out with a " +"<literal>&Sdepends;(...)</literal> term. But the term filling in the " +"<literal>...</literal> needs to somehow select packages that are identical " +"to the one being matched against <literal>&Sdepends;</literal>. When " +"describing the goal above, I dealt with this by giving the packages names, " +"calling them <replaceable>P</replaceable> and <replaceable>Q</replaceable>; " +"terms with explicit targets do exactly the same thing. <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:5134 +msgid "" +"Astute readers will note that this is essentially a way to explicitly name " +"the variable in the λ-terms corresponding to the term. A typical " +"term would have the form <quote>λ <replaceable>x</replaceable> . name-" +"equals(<replaceable>x</replaceable>, <replaceable>pattern</replaceable>)</" +"quote>; giving this an explicit target makes <replaceable>x</replaceable> " +"visible in the search language." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:5148 +msgid "An explicit target is introduced by the &Sfor; term:" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><title> +#: en/aptitude.xml:5152 +msgid "Syntax of the &Sfor; term" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5154 en/aptitude.xml:6145 +msgid "" +"<literal>?for <replaceable>variable</replaceable>: <replaceable>pattern</" +"replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:5158 +msgid "" +"This behaves exactly like <replaceable>pattern</replaceable>, but " +"<replaceable>variable</replaceable> can be used within <replaceable>pattern</" +"replaceable> to refer to the package or version that <replaceable>pattern</" +"replaceable> is being matched against. You can use <replaceable>variable</" +"replaceable> in two ways:" +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:5169 +msgid "" +"The term &Sequal; will match exactly the package or version indicated by the " +"given variable. Specifically: if the corresponding &Sfor; term is limited " +"to a particular version, then &Sequal; will match either that version (if " +"&Sequal; is limited) or the whole package; otherwise it will match any " +"version of the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:5178 +msgid "" +"See <xref linkend='exampleSearchEqual'/> for an example of how to use " +"&Sequal;." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:5185 +msgid "" +"The term <literal>&Sbind;(<replaceable>variable</replaceable>, " +"<replaceable>pattern</replaceable>)</literal> will match any package or " +"version if the value of <replaceable>variable</replaceable> matches against " +"<replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:5194 +msgid "" +"For <literal>?</literal>-style terms, a shorthand form is available. The " +"expression <literal>&Sbind;(<replaceable>variable</replaceable>, ?" +"<replaceable>term</replaceable><optional>(<replaceable>args</replaceable>)</" +"optional>)</literal> can be replaced by <literal>?<replaceable>variable</" +"replaceable>:<replaceable>term</replaceable>(<replaceable>args</replaceable>)" +"</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:5203 +msgid "" +"See <xref linkend='exampleSearchBind'/> for an example of how to use " +"<literal>?bind</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:5211 +msgid "Search term reference" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:5214 +msgid "" +"<xref linkend='tableSearchTermQuickGuide'/> provides a brief summary of all " +"the search terms provided by aptitude. A full description of each term can " +"be found <link linkend='searchTermReferenceList'>below</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><title> +#: en/aptitude.xml:5221 +msgid "Quick guide to search terms" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><thead><row><entry> +#: en/aptitude.xml:5226 +msgid "Long form" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><thead><row><entry> +#: en/aptitude.xml:5227 +msgid "Short form" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5235 +msgid "<literal>&Sequal;<replaceable>variable</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5239 +msgid "" +"Select the package bound to <replaceable>variable</replaceable>; see <xref " +"linkend='secExplicitMatchers'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5246 +msgid "<literal>&Snot;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5247 +msgid "<literal>!<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5249 +msgid "" +"Select any package that does not match <replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5256 +msgid "<literal>&Saction;(<replaceable>action</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5258 +msgid "~a<replaceable>action</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5260 +msgid "" +"Select packages that have been marked for the given <replaceable>action</" +"replaceable> (e.g., <quote><literal>install</literal></quote> or " +"<quote><literal>upgrade</literal></quote>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5269 +msgid "<literal>&Sall-versions;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5273 +msgid "" +"Select packages whose versions all match <replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5280 +msgid "" +"<literal>&Sand;(<replaceable>pattern1</replaceable>, <replaceable>pattern2</" +"replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5282 +msgid "<replaceable>pattern1</replaceable> <replaceable>pattern2</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5284 +msgid "" +"Select any package that matches both <replaceable>pattern1</replaceable> and " +"<replaceable>pattern2</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5291 +msgid "<literal>&Sany-version;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5294 +msgid "" +"Select packages for which at least one version matches <replaceable>pattern</" +"replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5301 +msgid "<literal>&Sarchive;(<replaceable>archive</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5304 +msgid "<literal>~A<replaceable>archive</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5307 +msgid "" +"Select packages from the given archive (such as <quote><literal>unstable</" +"literal></quote>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5313 +msgid "<literal>&Sautomatic;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5314 +msgid "<literal>~M</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5316 +msgid "Select packages that were automatically installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5321 +msgid "" +"<literal>&Sbind;(<replaceable>variable</replaceable>, <replaceable>pattern</" +"replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5323 +msgid "" +"<literal>?<replaceable>variable</replaceable>:<replaceable>term-name</" +"replaceable><optional>(<replaceable>args</replaceable>)</optional></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5326 +msgid "" +"Selects anything if <replaceable>variable</replaceable> matches " +"<replaceable>pattern</replaceable>; see <xref linkend='secExplicitMatchers'/" +">." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5334 +msgid "<literal>&Sbroken;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5335 +msgid "<literal>~b</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5337 +msgid "Select packages that have a broken dependency." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5342 +msgid "<literal>&Sbroken-type;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5343 +msgid "<literal>~B<replaceable>depType</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5345 +msgid "" +"Select package that have a broken dependency of the given " +"<replaceable>depType</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5351 +msgid "" +"<literal>&Sbroken-type-term;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5352 +msgid "" +"<literal>~DB<optional><replaceable>depType</replaceable>:</" +"optional><replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5354 +msgid "" +"Select packages that have a broken dependency of the given " +"<replaceable>depType</replaceable> matching <replaceable>pattern</" +"replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5361 +msgid "" +"<literal>&Sbroken-reverse-dep;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry><literal> +#: en/aptitude.xml:5362 en/aptitude.xml:5554 +msgid "<literal>~RB" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry><literal><option> +#: en/aptitude.xml:5362 en/aptitude.xml:5554 +msgid "<replaceable>depType</replaceable>:" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5362 en/aptitude.xml:5554 +msgid "<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5364 +msgid "" +"Select packages that a package matching <replaceable>pattern</replaceable> " +"declares a broken dependency of type <replaceable>depType</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5372 +msgid "<literal>&Sconflicts;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5374 +msgid "<literal>~C<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5376 +msgid "" +"Select packages that conflict with a package matching <replaceable>pattern</" +"replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5382 +msgid "<literal>&Sconfig-files;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5383 +msgid "<literal>~c</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5385 +msgid "Select packages that were removed but not purged." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5390 +msgid "<literal>&Sdep;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5391 +msgid "" +"<literal>~D<optional><replaceable>depType</replaceable>:</" +"optional><replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5393 +msgid "" +"Match packages that declare a dependency of type <replaceable>depType</" +"replaceable> on a package matching <replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5400 +msgid "" +"<literal>&Sdescription;(<replaceable>description</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5401 +msgid "<literal>~d<replaceable>description</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5403 +msgid "" +"Select packages whose description matches <replaceable>description</" +"replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5409 +msgid "<literal>&Sessential;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5410 +msgid "<literal>~E</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5412 +msgid "" +"Select essential packages, those with <literal>Essential: yes</literal> in " +"their control files." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5419 +msgid "<literal>&Sexact-name;(<replaceable>name</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5422 +msgid "Select packages named <replaceable>name</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5428 +msgid "<literal>&Sfalse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5429 +msgid "<literal>~F</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5431 +msgid "Select no packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5436 +msgid "" +"<literal>&Sfor; <replaceable>variable</replaceable>: <replaceable>pattern</" +"replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5439 +msgid "" +"Select packages that match <replaceable>pattern</replaceable> with " +"<replaceable>variable</replaceable> bound to the package being matched; see " +"<xref linkend='secExplicitMatchers'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5448 +msgid "<literal>&Sgarbage;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5449 +msgid "<literal>~g</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5451 +msgid "" +"Select packages that are not required by any manually installed package." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5457 +msgid "<literal>&Sinstalled;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5458 +msgid "<literal>~i</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5459 +msgid "Select installed packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5463 +msgid "<literal>&Smaintainer;(<replaceable>maintainer</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5464 +msgid "<literal>~m<replaceable>maintainer</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5466 +msgid "Select packages maintained by <replaceable>maintainer</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5472 +msgid "" +"<literal>&Snarrow;(<replaceable>filter</replaceable>, <replaceable>pattern</" +"replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5473 +msgid "" +"<literal>~S <replaceable>filter</replaceable> <replaceable>pattern</" +"replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5475 +msgid "" +"Select packages for which a single version matches both <replaceable>filter</" +"replaceable> and <replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5482 +msgid "<literal>&Sname;(<replaceable>name</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5483 +msgid "" +"<literal>~n<replaceable>name</replaceable></literal>, " +"<literal><replaceable>name</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5485 +msgid "Select packages with the given <replaceable>name</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5490 +msgid "<literal>&Snew;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5491 +msgid "<literal>~N</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5493 +msgid "Select new packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5498 +msgid "<literal>&Sobsolete;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5499 +msgid "<literal>~o</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5501 +msgid "Match installed packages that cannot be downloaded." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5506 +msgid "" +"<literal>&Sor;(<replaceable>pattern1</replaceable>, <replaceable>pattern2</" +"replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5507 +msgid "" +"<literal><replaceable>pattern1</replaceable> | <replaceable>pattern2</" +"replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5509 +msgid "" +"Select packages that match <replaceable>pattern1</replaceable>, " +"<replaceable>pattern2</replaceable>, or both." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5516 +msgid "<literal>&Sorigin;(<replaceable>origin</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5517 +msgid "<literal>~O<replaceable>origin</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5519 +msgid "Select packages with the given <replaceable>origin</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5525 +msgid "<literal>&Sprovides;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5526 +msgid "<literal>~P<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5528 +msgid "" +"Select packages that provide a package matching <replaceable>pattern</" +"replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5534 +msgid "<literal>&Spriority;(<replaceable>priority</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5535 +msgid "<literal>~p<replaceable>priority</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5537 +msgid "Select packages with the given <replaceable>priority</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5542 +msgid "<literal>&Sreverse-dep;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5543 +msgid "" +"<literal>~R<optional><replaceable>depType</replaceable>:</" +"optional><replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5545 +msgid "" +"Select packages that are the targets of a dependency of type " +"<replaceable>depType</replaceable> declared by a package matching " +"<replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5553 +msgid "" +"<literal>&Sreverse-broken-dep;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5556 +msgid "" +"Select packages that are the targets of a broken dependency of type " +"<replaceable>depType</replaceable> declared by a package matching " +"<replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5564 +msgid "<literal>&Ssection;(<replaceable>section</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5565 +msgid "<literal>~s<replaceable>section</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5567 +msgid "Select packages in the given <replaceable>section</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5572 +msgid "<literal>&Ssource-package;(<replaceable>name</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5575 +msgid "" +"Select packages whose source package name matches the regular expression " +"<replaceable>name</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5582 +msgid "" +"<literal>&Ssource-version;(<replaceable>version</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5585 +msgid "" +"Select packages whose source version matches the regular expression " +"<replaceable>version</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5591 +msgid "<literal>&Stag;(<replaceable>tag</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5592 +msgid "<literal>~G<replaceable>tag</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5594 +msgid "" +"Select packages that have the given debtags <replaceable>tag</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5600 +msgid "<literal>&Sterm;(<replaceable>keyword</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5603 +msgid "" +"Full-text search for packages that contain the given <replaceable>keyword</" +"replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5609 +msgid "<literal>&Sterm-prefix;(<replaceable>keyword</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5612 +msgid "" +"Full-text search for packages that contain a keyword that begins with the " +"given <replaceable>keyword</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5619 +msgid "<literal>&Strue;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5620 +msgid "<literal>~T</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5622 +msgid "Select all packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5627 +msgid "<literal>&Stask;(<replaceable>task</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5628 +msgid "<literal>~t<replaceable>task</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5630 +msgid "Select packages that are in the given <replaceable>task</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5636 +msgid "<literal>&Supgradable;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5637 +msgid "<literal>~U</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5639 +msgid "Select packages that are installed and can be upgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5645 +msgid "<literal>&Suser-tag;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5648 +msgid "" +"Select packages that are marked with a user-tag matching the regular " +"expression <replaceable>user-tag</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5655 +msgid "<literal>&Sversion;(<replaceable>version</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5656 +msgid "<literal>~V<replaceable>version</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5658 +msgid "" +"Select packages whose version matches <replaceable>version</replaceable> " +"(special values: <literal>CURRENT</literal>, <literal>CANDIDATE</literal>, " +"and <literal>TARGET</literal>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5667 +msgid "<literal>&Svirtual;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5668 +msgid "<literal>~v</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5670 +msgid "Select virtual packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5675 +msgid "<literal>&Swiden;(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5676 +msgid "<literal>~W<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><table><tgroup><tbody><row><entry> +#: en/aptitude.xml:5678 +msgid "" +"Select versions for which <replaceable>pattern</replaceable> matches any " +"version of the corresponding package, discarding local version restrictions." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5690 +msgid "<replaceable>name</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5694 +msgid "" +"Matches packages whose names match the regular expression <replaceable>name</" +"replaceable>. This is the <quote>default</quote> search mode and is used " +"for patterns that don't start with <literal>~</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><note><para> +#: en/aptitude.xml:5702 +msgid "" +"To match packages whose names contain several different substrings, use the " +"&Sname; term (described below); for instance, <quote><literal>&Sname;(apti)" +"&Sname;(tude)</literal></quote> will match any package whose name contains " +"<emphasis>both</emphasis> <quote><literal>apti</literal></quote> and " +"<quote><literal>tude</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5716 +msgid "<literal>?=<replaceable>variable</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5720 +msgid "" +"Matches packages that correspond to the value of <replaceable>variable</" +"replaceable>, which must be bound by an enclosing &Sfor;. For instance, " +"<literal>&Sfor; x: &Sdepends;( &Srecommends;( ?=x ) )</literal> will match " +"any package <replaceable>x</replaceable> that depends on a package which " +"recommends <replaceable>x</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5729 +msgid "" +"For instance, the following search expression matches packages that conflict " +"with themselves:" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><title> +#: en/aptitude.xml:5735 +msgid "Use of the <literal>?=</literal> term." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:5739 +msgid "<literal> &Sfor; x: &Sconflicts;(?=x) </literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5746 en/aptitude.xml:5976 en/aptitude.xml:6184 +msgid "See <xref linkend='secExplicitMatchers'/> for more information." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5753 +msgid "" +"<literal>?not(<replaceable>pattern</replaceable>)</literal>, <literal>!" +"<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5757 +msgid "" +"Matches packages which do <emphasis>not</emphasis> match the pattern " +"<replaceable>pattern</replaceable>. For instance, <quote><literal>?not" +"(&Sbroken;)</literal></quote> selects packages that are not <quote>broken</" +"quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><note><para> +#: en/aptitude.xml:5766 +msgid "" +"To include a <quote>!</quote> in a search string, it must be <quote>escaped</" +"quote> by placing a tilde (<quote><literal>~</literal></quote>) in front of " +"it; otherwise, &aptitude; will consider it to be part of a <literal>?not</" +"literal> term. For instance, to select packages whose description contains " +"<quote><literal>extra!</literal></quote>, use <quote><literal>&Sdescription;" +"(extra~!)</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5780 +msgid "" +"<literal>?and(<replaceable>pattern1</replaceable>, <replaceable>pattern2</" +"replaceable>)</literal>, <replaceable>pattern1</replaceable> " +"<replaceable>pattern2</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5784 +msgid "" +"Matches packages that match both <replaceable>pattern1</replaceable> and " +"<replaceable>pattern2</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5792 +msgid "" +"<literal>?or(<replaceable>pattern1</replaceable>, <replaceable>pattern2</" +"replaceable>)</literal>, <literal><replaceable>pattern1</replaceable> | " +"<replaceable>pattern2</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5796 +msgid "" +"Matches packages that match either <replaceable>pattern1</replaceable> or " +"<replaceable>pattern2</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><note><para> +#: en/aptitude.xml:5803 +msgid "" +"To use the character <quote>|</quote> in a regular expression, it must be " +"<quote>escaped</quote> to prevent &aptitude; from creating an OR term from " +"it: <quote><literal>~|</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5812 +msgid "<literal>(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5816 +msgid "" +"Matches <replaceable>pattern</replaceable>. For instance, " +"<quote><literal>opengl (perl|python)</literal></quote> matches any package " +"whose name contains <literal>opengl</literal>, and also contains either " +"<literal>perl</literal> or <literal>python</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5826 +msgid "" +"<literal>?action(<replaceable>action</replaceable>)</literal>, " +"<literal>~a<replaceable>action</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#. Should I document more extensively what each option +#. does? +#: en/aptitude.xml:5830 +msgid "" +"Matches packages upon which the given <replaceable>action</replaceable> is " +"going to be performed. <replaceable>action</replaceable> can be " +"<quote><literal>install</literal></quote>, <quote><literal>upgrade</" +"literal></quote>, <quote><literal>downgrade</literal></quote>, " +"<quote><literal>remove</literal></quote>, <quote><literal>purge</literal></" +"quote>, <quote><literal>hold</literal></quote> (tests whether a package has " +"been placed on hold), or <quote><literal>keep</literal></quote> (tests " +"whether a package will be unchanged)." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5847 +msgid "" +"Note that this only tests whether an action is actually queued up to be " +"performed on a package, not whether it <emphasis>could</emphasis> be " +"performed. Thus, for instance, <literal>&Saction;(upgrade)</literal> " +"matches exactly those packages that you have already decided to upgrade, not " +"packages which <emphasis>could</emphasis> be upgraded in the future (for " +"that, use <literal>&Supgradable;</literal>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5860 +msgid "<literal>?all-versions(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5864 +msgid "" +"Matches any package whose versions all match the given expression. Each " +"version of a package will be separately tested against <replaceable>pattern</" +"replaceable>, and the package will match if all of its versions match. " +"Packages without versions, such as virtual packages, will always be matched " +"by this search term." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5874 en/aptitude.xml:5892 +msgid "" +"This term may not be used in a context in which the versions to match " +"against have already been narrowed, such as within &Sdepends; or &Snarrow;. " +"However, it may always be used within &Swiden;." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5883 +msgid "<literal>?any-version(<replaceable>pattern</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5887 +msgid "" +"Matches a package if any one of its versions matches the enclosed pattern. " +"This is the dual to &Sall-versions;." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><note><para> +#: en/aptitude.xml:5900 +msgid "" +"This term is closely related to &Snarrow;. In fact, <literal>?any-version" +"(<replaceable>pattern1</replaceable> <replaceable>pattern2</replaceable>)</" +"literal> is exactly the same as <literal>&Snarrow;(<replaceable>pattern1</" +"replaceable>, <replaceable>pattern2</replaceable>)</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5913 +msgid "" +"<literal>?archive(<replaceable>archive</replaceable>)</literal>, " +"<literal>~A<replaceable>archive</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5917 +msgid "" +"Matches package versions which are available from an archive that matches " +"the regular expression <replaceable>archive</replaceable>. For instance, " +"<quote><literal>?archive(testing)</literal></quote> matches any package " +"available from the <literal>testing</literal> archive." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5928 +msgid "<literal>?automatic</literal>, <literal>~M</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5932 +msgid "Matches packages which were automatically installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5939 +msgid "" +"<literal>?bind(<replaceable>variable</replaceable>, <replaceable>pattern</" +"replaceable>)</literal>, <literal>?<replaceable>variable</replaceable>:" +"<replaceable>term-name</replaceable><optional>(<replaceable>args</" +"replaceable>)</optional></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5946 +msgid "" +"Matches any package or version if the given <replaceable>pattern</" +"replaceable> matches the package or version bound to <replaceable>variable</" +"replaceable>, which must be defined in an enclosing &Sfor;." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><title> +#: en/aptitude.xml:5953 +msgid "Use of the <literal>?bind</literal> term" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:5956 +msgid "" +"<literal>&Sfor; x: &Sdepends;(&Sdepends;(&Sfor; z: ?bind(x, &Sdepends;" +"(&Sequal;z))))</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:5960 +msgid "" +"<literal>&Sfor; x: &Sdepends;(&Sdepends;(&Sfor; z: ?x:<link " +"linkend='searchDep'>depends</link>(&Sequal;z)))</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5965 +msgid "" +"The two search patterns in the above example both match any package " +"<literal>x</literal> such that <literal>x</literal> depends on a package " +"<literal>y</literal> which in turn depends on a package <literal>z</literal> " +"such that <literal>x</literal> also depends directly on <literal>z</" +"literal>. The first pattern uses <literal>?bind</literal> directly, while " +"the second one uses an equivalent shorthand syntax." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5983 +msgid "<literal>?broken</literal>, <literal>~b</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5987 +msgid "" +"Matches packages that are <quote>broken</quote>: they have an unfulfilled " +"dependency, predependency, breaks, or conflict." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:5994 +msgid "" +"<literal>?broken-<replaceable>depType</replaceable></literal>, " +"<literal>~B<replaceable>depType</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:5998 +msgid "" +"Matches packages which have an unfulfilled (<quote>broken</quote>) " +"dependency of the given <replaceable>depType</replaceable>. " +"<replaceable>depType</replaceable> can be <quote><literal>depends</literal></" +"quote>, <quote><literal>predepends</literal></quote>, " +"<quote><literal>recommends</literal></quote>, <quote><literal>suggests</" +"literal></quote>, <quote><literal>breaks</literal></quote>, " +"<quote><literal>conflicts</literal></quote>, or <quote><literal>replaces</" +"literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6013 +msgid "" +"<literal>?broken-<replaceable>depType</replaceable>(<replaceable>pattern</" +"replaceable>)</literal>, <literal>~DB<optional><replaceable>depType</" +"replaceable>:</optional><replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6017 +msgid "" +"Matches packages with an unsatisfied dependency of type " +"<replaceable>depType</replaceable> on a package matching " +"<replaceable>pattern</replaceable>. <replaceable>depType</replaceable> may " +"be any one of the dependency types listed in <link " +"linkend='searchBrokenType'>the documentation of <literal>?broken-" +"<replaceable>depType</replaceable></literal></link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6029 +msgid "" +"<literal>?conflicts(<replaceable>pattern</replaceable>)</literal>, " +"<literal>~C<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6033 +msgid "" +"Matches packages which conflict with a package matching the given " +"<replaceable>pattern</replaceable>. For instance, <quote><literal>?conflicts" +"(&Smaintainer;(dburrows@debian.org))</literal></quote> matches any package " +"which conflicts with a package I maintain." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6044 +msgid "<literal>?config-files</literal>, <literal>~c</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6048 +msgid "" +"Matches packages which have been removed, but whose configuration files " +"remain on the system (ie, they were removed but not purged)." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6056 +msgid "" +"<literal>?<replaceable>depType</replaceable>(<replaceable>pattern</" +"replaceable>)</literal>, <literal>~D<optional><replaceable>depType</" +"replaceable>:</optional><replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6060 +msgid "" +"<replaceable>depType</replaceable> may be any one of the dependency types " +"given in <link linkend='searchBrokenType'>the documentation of <literal>?" +"broken-<replaceable>depType</replaceable></literal></link>, as well as " +"<literal>provides</literal>: for instance, <literal>&Sdepends;(libpng3)</" +"literal> will match any package that depends on <literal>libpng3</literal>. " +"If the short form (<literal>~D</literal>) is used and <replaceable>depType</" +"replaceable> is not present, it defaults to <literal>depends</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6073 +msgid "" +"If <replaceable>depType</replaceable> is <quote><literal>provides</literal></" +"quote>, matches packages that provide a package matching " +"<replaceable>pattern</replaceable> (the equivalent of &Sprovides;). " +"Otherwise, matches packages which declare a dependency of type " +"<replaceable>depType</replaceable> upon a package version which matches " +"<replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6086 +msgid "" +"<literal>?description(<replaceable>description</replaceable>)</literal>, " +"<literal>~d<replaceable>description</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6090 +msgid "" +"Matches packages whose description matches the regular expression " +"<replaceable>description</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6097 +msgid "<literal>?essential</literal>, <literal>~E</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6101 +msgid "Matches Essential packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6107 +msgid "<literal>?exact-name(<replaceable>name</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6111 +msgid "" +"Matches packages named <replaceable>name</replaceable>. This is similar to " +"&Sname;, but the name must match exactly. For instance, the following " +"pattern will match only the package <systemitem>apt</systemitem>; with " +"&Sname;, it would also match <systemitem>aptitude</systemitem>, " +"<systemitem>uvccapture</systemitem>, etc." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><title> +#: en/aptitude.xml:6121 +msgid "Use of the <literal>?exact-name</literal> term" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:6123 +msgid "<literal>?exact-name(apt)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6130 +msgid "<literal>?false</literal>, <literal>~F</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para><footnote> +#: en/aptitude.xml:6134 +msgid "This term does not match any package. <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para><footnote><para> +#: en/aptitude.xml:6137 +msgid "This is provided largely for symmetry with &Strue;." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6149 +msgid "" +"Matches <replaceable>pattern</replaceable>, but the given " +"<replaceable>variable</replaceable> may be used inside <replaceable>pattern</" +"replaceable> to refer to the package or package version this term to." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6156 +msgid "" +"You can use <replaceable>variable</replaceable> in two ways. To apply a " +"<literal>?</literal>-style term to the variable, write <literal>?" +"<replaceable>variable</replaceable>:<replaceable>term-name</replaceable>" +"(<replaceable>args</replaceable>)</literal>; for instance, <literal>?x:<link " +"linkend='searchDep'>depends</link>(apt)</literal>. In addition, the term " +"<literal>&Sequal;<replaceable>variable</replaceable></literal> will select " +"any package or version that matches the value of the given " +"<replaceable>variable</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6169 +msgid "" +"For instance, the following term will match any package <literal>x</literal> " +"that both depends and recommends a second package <literal>y</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><title> +#: en/aptitude.xml:6175 +msgid "Use of the <literal>?for</literal> term" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:6177 +msgid "" +"<literal> ?for x: &Sdepends;( ?for y: ?x:<link " +"linkend='searchDep'>recommends</link>( &Sequal;y ) ) </literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6191 +msgid "<literal>?garbage</literal>, <literal>~g</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6195 +msgid "" +"Matches packages which are not installed, or which were automatically " +"installed and are not depended upon by any installed package." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6203 +msgid "<literal>?installed</literal>, <literal>~i</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6207 +msgid "Matches package versions which are currently installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6211 +msgid "" +"Since all versions are tested by default, this normally matches packages " +"which are currently installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6218 +msgid "" +"<literal>?maintainer(<replaceable>maintainer</replaceable>)</literal>, " +"<literal>~m<replaceable>maintainer</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6222 +msgid "" +"Matches packages whose Maintainer field matches the regular expression " +"<replaceable>maintainer</replaceable>. For instance, " +"<quote><literal>&Smaintainer;(joeyh)</literal></quote> will find all " +"packages maintained by Joey Hess." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6233 +msgid "" +"<literal>?narrow(<replaceable>filter</replaceable>, <replaceable>pattern</" +"replaceable>)</literal>, <literal>~S <replaceable>filter</replaceable> " +"<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6238 +msgid "" +"This term <quote>narrows</quote> the search to package versions matching " +"<replaceable>filter</replaceable>. In particular, it matches any package " +"version which matches both <replaceable>filter</replaceable> and " +"<replaceable>pattern</replaceable>. The string value of the match is the " +"string value of <replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6250 +msgid "" +"<literal>?name(<replaceable>name</replaceable>)</literal>, " +"<literal>~n<replaceable>name</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6254 +msgid "" +"Matches packages whose name matches the regular expression " +"<replaceable>name</replaceable>. For instance, most of the packages that " +"match <quote><literal>&Sname;(^lib)</literal></quote> are libraries of one " +"sort or another." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6264 +msgid "<literal>?new</literal>, <literal>~N</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6268 +msgid "" +"Matches packages which are <quote>new</quote>: that is, they have been added " +"to the archive since the last time the list of packages was cleared using " +"&actions-forget; or the command-line action <literal><link " +"linkend='cmdlineForgetNew'>forget-new</link></literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6279 +msgid "<literal>?obsolete</literal>, <literal>~o</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6284 +msgid "" +"This term matches any installed package which is not available in any " +"version from any archive. These packages appear as <quote>Obsolete or " +"Locally Installed</quote> in the visual interface." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6293 +msgid "" +"<literal>?origin(<replaceable>origin</replaceable>)</literal>, " +"<literal>~O<replaceable>origin</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6297 +msgid "" +"Matches package versions whose origin matches the regular expression " +"<replaceable>origin</replaceable>. For instance, <quote><literal>!?origin" +"(debian)</literal></quote> will find any unofficial packages on your system " +"(packages not from the Debian archive)." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6308 +msgid "" +"<literal>?provides(<replaceable>pattern</replaceable>)</literal>, " +"<literal>~P<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6312 +msgid "" +"Matches package versions which provide a package that matches the " +"<replaceable>pattern</replaceable>. For instance, <quote><literal>?provides" +"(mail-transport-agent)</literal></quote> will match all the packages that " +"provide <quote><literal>mail-transport-agent</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6323 +msgid "" +"<literal>?priority(<replaceable>priority</replaceable>)</literal>, " +"<literal>~p<replaceable>priority</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6327 +msgid "" +"Matches packages whose priority is <replaceable>priority</replaceable>; " +"<replaceable>priority</replaceable> must be <literal>extra</literal>, " +"<literal>important</literal>, <literal>optional</literal>, " +"<literal>required</literal>, or <literal>standard</literal>. For instance, " +"<quote><literal>?priority(required)</literal></quote> matches packages whose " +"priority is <quote><literal>required</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6342 +msgid "" +"<literal>?reverse-<replaceable>depType</replaceable>(<replaceable>pattern</" +"replaceable>)</literal>, <literal>~R<optional><replaceable>depType</" +"replaceable>:</optional><replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6346 en/aptitude.xml:6372 +msgid "" +"<replaceable>depType</replaceable> may be either <quote><literal>provides</" +"literal></quote> or one of the dependency types given in <link " +"linkend='searchBrokenType'>the documentation of <literal>?broken-" +"<replaceable>depType</replaceable></literal></link>. If " +"<replaceable>depType</replaceable> is not present, it defaults to " +"<literal>depends</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6356 +msgid "" +"If <replaceable>depType</replaceable> is <quote><literal>provides</literal></" +"quote>, matches packages whose name is provided by a package version " +"matching <replaceable>pattern</replaceable>. Otherwise, matches packages " +"which a package version matching <replaceable>pattern</replaceable> declares " +"a dependency of type <replaceable>depType</replaceable> upon." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6368 +msgid "" +"<literal>?reverse-broken-<replaceable>depType</replaceable>" +"(<replaceable>pattern</replaceable>)</literal>, <literal>?broken-reverse-" +"<replaceable>depType</replaceable>(<replaceable>pattern</replaceable>)</" +"literal>, <literal>~RB<optional><replaceable>depType</replaceable>:</" +"optional><replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6382 +msgid "" +"Matches packages which a package version matching <replaceable>pattern</" +"replaceable> declares an unsatisfied dependency of type " +"<replaceable>depType</replaceable> upon." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6391 +msgid "" +"<literal>?section(<replaceable>section</replaceable>)</literal>, " +"<literal>~s<replaceable>section</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6396 +msgid "" +"Matches packages whose section matches the regular expression " +"<replaceable>section</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6404 +msgid "<literal>?source-package(<replaceable>name</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6409 +msgid "" +"Matches packages whose source package name matches the regular expression " +"<replaceable>name</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6417 +msgid "<literal>?source-version(<replaceable>version</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6422 +msgid "" +"Matches packages whose source version matches the regular expression " +"<replaceable>version</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6429 +msgid "" +"<literal>?tag(<replaceable>tag</replaceable>)</literal>, " +"<literal>~G<replaceable>tag</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6433 +msgid "" +"Matches packages whose Tag field matches the regular expression " +"<replaceable>tag</replaceable>. For instance, the pattern <literal>?tag" +"(game::strategy)</literal> would match strategy games." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6441 +msgid "" +"For more information on tags and debtags, see <ulink url='http://debtags." +"alioth.debian.org'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6449 +msgid "" +"<literal>?task(<replaceable>task</replaceable>)</literal>, " +"<literal>~t<replaceable>task</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6454 +msgid "" +"Matches packages that appear in a task whose name matches the regular " +"expression <replaceable>task</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6463 +msgid "<literal>?term(<replaceable>keyword</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6468 +msgid "" +"This term performs a full-text search for <replaceable>keyword</replaceable> " +"in the apt package cache. When used with <quote><literal>aptitude search</" +"literal></quote>, <link linkend='menuSearchLimit'>&search-limit;</link> in " +"the curses front-end, or typed into a package search box in the GTK+ front-" +"end, this term will allow &aptitude; to accelerate the search using a Xapian " +"index." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6482 +msgid "<literal>?term-prefix(<replaceable>keyword</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6487 +msgid "" +"This term performs a full-text search for any keyword beginning with " +"<replaceable>keyword</replaceable> in the apt package cache. When used with " +"<quote><literal>aptitude search</literal></quote>, <link " +"linkend='menuSearchLimit'>&search-limit;</link> in the curses front-end, or " +"typed into a package search box in the GTK+ front-end, this term will allow " +"&aptitude; to accelerate the search using a Xapian index." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6498 +msgid "" +"This is similar to &Sterm;, but matches extensions of the " +"<replaceable>keyword</replaceable>. For instance, the following search " +"pattern will match any package indexed under the keywords <literal>hour</" +"literal>, <literal>hourglass</literal>, <literal>hourly</literal>, and so on:" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><title> +#: en/aptitude.xml:6507 +msgid "Use of the <literal>?term-prefix</literal> term" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:6509 +msgid "<literal> ?term-prefix(hour) </literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6519 +msgid "<literal>?true</literal>, <literal>~T</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6524 +msgid "" +"This term matches any package. For instance, <quote><literal>&Sinstalled;" +"&Sprovides;(&Strue;)</literal></quote> matches installed packages which are " +"provided by any package." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6534 +msgid "<literal>?upgradable</literal>, <literal>~U</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6539 +msgid "This term matches any installed package which can be upgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6547 +msgid "<literal>?user-tag(<replaceable>tag</replaceable>)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6552 +msgid "" +"This term matches any package that is marked with a user-tag matching the " +"regular expression <replaceable>tag</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6561 +msgid "" +"<literal>?version(<replaceable>version</replaceable>)</literal>, " +"<literal>~V<replaceable>version</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6566 +msgid "" +"Matches any package version whose version number matches the regular " +"expression <replaceable>version</replaceable>, with the exceptions noted " +"below. For instance, <quote><literal>?version(debian)</literal></quote> " +"matches packages whose version contains <quote><literal>debian</literal></" +"quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6576 +msgid "" +"The following values of <replaceable>version</replaceable> are treated " +"specially. To search for version numbers containing these values, preface " +"the value with a backslash; for instance, to find packages whose version " +"number contains <literal>CURRENT</literal>, search for <literal>\\CURRENT</" +"literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: en/aptitude.xml:6587 +msgid "" +"<literal>CURRENT</literal> matches the currently installed version of a " +"package, if any." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: en/aptitude.xml:6594 +msgid "" +"<literal>CANDIDATE</literal> matches the version, if any, of the package " +"that will be installed if you press <keycap>+</keycap> on the package or run " +"<literal>aptitude install</literal> on it." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: en/aptitude.xml:6603 +msgid "" +"<literal>TARGET</literal> matches the version of a package that is currently " +"targeted for installation, if any." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6615 +msgid "<literal>?virtual</literal>, <literal>~v</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6620 +msgid "" +"Matches any package which is purely virtual: that is, its name is provided " +"by a package or mentioned in a dependency, but no package of that name " +"exists. For instance, <quote><literal>?virtual!&Sprovides;(&Strue;)</" +"literal></quote> matches packages which are virtual and are not provided by " +"any package: ie, packages which are depended upon but do not exist." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:6634 +msgid "" +"<literal>?widen(<replaceable>pattern</replaceable>)</literal>, " +"<literal>~W<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:6639 +msgid "" +"<quote>Widens</quote> the match: if the versions to match against have been " +"limited by an enclosing term (such as &Sdepends;), these limits are " +"dropped. Thus, <literal>&Swiden;(<replaceable>pattern</replaceable>)</" +"literal> matches a package version if <replaceable>pattern</replaceable> " +"matches <emphasis>any</emphasis> version of that package." +msgstr "" + +# type: Content of: <book><chapter><section><title> +#: en/aptitude.xml:6654 +msgid "Customizing &aptitude;" +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:6657 +msgid "Customizing the package list" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:6660 +msgid "" +"The package list can be heavily customized: how packages are displayed, how " +"the package hierarchy is formed, how packages are sorted, and even how the " +"display is organized are all open to change." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:6667 +msgid "Customizing how packages are displayed" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:6670 +msgid "" +"This section describes how to configure the contents and format of the " +"package list, status line, and header line, as well as the output of " +"<literal><link linkend='cmdlineSearch'>aptitude search</link></literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:6677 +msgid "" +"The format of each of these locations is defined by a <quote>format string</" +"quote>. A format string is a string of text containing <literal>%</literal>-" +"escapes such as <literal>%p</literal>, <literal>%S</literal>, and so on. " +"The resulting output is created by taking the text and replacing the " +"<literal>%</literal>-escapes according to their meanings (given below)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:6687 +msgid "" +"A <literal>%</literal>-escape can either have a fixed size, in which case it " +"is always replaced by the same amount of text (with extra space characters " +"added to fill it out as necessary), or it can be <quote>expandable</quote>, " +"meaning that it takes up the space that is not claimed by fixed-size " +"columns. If there are several expandable columns, the extra space is " +"divided evenly between them." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:6697 +msgid "" +"All <literal>%</literal>-escapes come with a default size and/or " +"expandability. The size of a <literal>%</literal>-escape can be changed by " +"writing it between the <literal>%</literal> and the character identifying " +"the escape; for instance, <literal>%20V</literal> generates the <link " +"linkend='formatCandVer'>candidate version</link> of the package, 20 " +"characters wide. Placing a question mark (<literal>?</literal>) between the " +"<literal>%</literal> and the character identifying the escape causes the " +"column's <quote>basic</quote> width to vary depending on its content. Note " +"that the resulting columns might not line up vertically!" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:6713 +msgid "" +"If you want a particular <literal>%</literal>-escape to be expandable, even " +"though it normally has a fixed width, place a pound sign (ie, " +"<quote><literal>#</literal></quote>) immediately after it. For instance, to " +"display the candidate version of a package, no matter how long it is, use " +"the format string <literal>%V#</literal>. You can also place <literal>#</" +"literal> after something that is not a <literal>%</literal>-escape; " +"&aptitude; will <quote>expand</quote> the text preceding the <literal>#</" +"literal> by inserting extra spaces after it." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:6727 +msgid "In summary, the syntax of a <literal>%</literal>-escape is:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><synopsis> +#: en/aptitude.xml:6730 +msgid "" +"<literal>%</literal><optional><replaceable>width</replaceable></" +"optional><optional><literal>?</literal></optional><replaceable>code</" +"replaceable><optional><literal>#</literal></optional>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:6733 +msgid "" +"The configuration variables <literal><link linkend='configPackage-Display-" +"Format'>Aptitude::UI::Package-Display-Format</link></literal>, " +"<literal><link linkend='configPackage-Status-Format'>Aptitude::UI::Package-" +"Status-Format</link></literal>, and <literal><link linkend='configPackage-" +"Header-Format'>Aptitude::UI::Package-Header-Format</link></literal> define " +"the default formats the package list, the header at the top of the package " +"list, and the status line below the package list respectively. To change " +"how the results of an <literal><link linkend='cmdlineSearch'>aptitude " +"search</link></literal> command are displayed, use the <literal><link " +"linkend='cmdlineOptionFormat'>-F</link></literal> option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:6749 +msgid "" +"The following <literal>%</literal>-escapes are available in format strings:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><note><para> +#: en/aptitude.xml:6755 +msgid "" +"Some of the descriptions below refer to <quote>the package</quote>. In the " +"GUI, this is either the package being displayed or the currently selected " +"package; in the command-line search, this is the package being displayed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><segtitle> +#: en/aptitude.xml:6763 +msgid "Escape" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><segtitle> +#: en/aptitude.xml:6764 +msgid "Name" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><segtitle> +#: en/aptitude.xml:6765 +msgid "Default size" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><segtitle> +#: en/aptitude.xml:6766 +msgid "Expandable" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6770 +msgid "<literal>%%</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6771 +msgid "Literal <literal>%</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6772 en/aptitude.xml:6800 en/aptitude.xml:6836 +#: en/aptitude.xml:6921 en/aptitude.xml:7028 en/aptitude.xml:7048 +msgid "1" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6773 en/aptitude.xml:6785 en/aptitude.xml:6801 +#: en/aptitude.xml:6813 en/aptitude.xml:6824 en/aptitude.xml:6837 +#: en/aptitude.xml:6849 en/aptitude.xml:6870 en/aptitude.xml:6880 +#: en/aptitude.xml:6890 en/aptitude.xml:6902 en/aptitude.xml:6922 +#: en/aptitude.xml:6934 en/aptitude.xml:6946 en/aptitude.xml:6957 +#: en/aptitude.xml:6985 en/aptitude.xml:6995 en/aptitude.xml:7006 +#: en/aptitude.xml:7019 en/aptitude.xml:7029 en/aptitude.xml:7049 +#: en/aptitude.xml:7063 en/aptitude.xml:7077 en/aptitude.xml:7090 +#: en/aptitude.xml:7104 +msgid "No" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6775 +msgid "" +"This is not really an escape; it simply inserts a percent sign into the " +"output at the point at which it occurs." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6782 +msgid "<literal>%#<replaceable>number</replaceable></literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6783 +msgid "Parameter Replacement" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6784 +msgid "Variable" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6787 +msgid "" +"In some circumstances, a display format string will have <quote>parameters</" +"quote>: for instance, in the command-line <literal>search</literal>, the " +"groups matched by the search are used as parameters when displaying the " +"result. This format code will be replaced by the parameter indicated by " +"<replaceable>number</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6798 +msgid "<literal>%a</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6799 +msgid "Action Flag" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6803 +msgid "" +"A single-character flag summarizing any action to be performed on the " +"package, as described in <xref linkend='figureActionFlag'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6810 +msgid "<literal>%A</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6811 +msgid "Action" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6812 en/aptitude.xml:7018 en/aptitude.xml:7038 +#: en/aptitude.xml:7076 en/aptitude.xml:7089 +msgid "10" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6815 +msgid "" +"A somewhat more verbose description of the action to be performed on the " +"package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6821 +msgid "<literal>%B</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6822 +msgid "Broken Count" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6823 +msgid "12" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6826 +msgid "" +"If there are no broken packages, produces nothing. Otherwise, produces a " +"string such as <quote><computeroutput>Broken: 10</computeroutput></quote> " +"describing the number of broken packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6834 +msgid "<literal>%c</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6835 +msgid "Current State Flag" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6839 +msgid "" +"A single-character flag summarizing the current state of the package, as " +"described in <xref linkend='figureCurrentFlag'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6846 +msgid "<literal>%C</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6847 +msgid "Current State" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6848 +msgid "11" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6851 +msgid "A more verbose description of the current state of the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6857 en/aptitude.xml:11913 +msgid "<literal>%d</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6859 +msgid "40" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6860 en/aptitude.xml:6912 en/aptitude.xml:6972 +#: en/aptitude.xml:7039 +msgid "Yes" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6862 +msgid "The package's short description." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6867 +msgid "<literal>%D</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6868 +msgid "Package Size" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6869 en/aptitude.xml:6901 +msgid "6" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6872 +msgid "The size of the package file containing the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6877 +msgid "<literal>%H</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6878 +msgid "Hostname" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6879 en/aptitude.xml:6956 +msgid "15" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6882 +msgid "The name of the computer on which &aptitude; is running." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6887 +msgid "<literal>%i</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6888 +msgid "Pin priority" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6889 +msgid "4" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6892 +msgid "" +"Displays the highest priority assigned to a package version; for packages, " +"displays the priority of the version which will be forced to be installed " +"(if any)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6899 +msgid "<literal>%I</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6900 +msgid "Installed Size" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6904 +msgid "The (estimated) amount of space the package takes up on disk." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6909 +msgid "<literal>%m</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6910 +msgid "Maintainer" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6911 en/aptitude.xml:6971 en/aptitude.xml:7062 +msgid "30" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6914 +msgid "The maintainer of the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6919 +msgid "<literal>%M</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6920 +msgid "Automatic Flag" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6924 +msgid "" +"If the package is automatically installed, outputs <quote><computeroutput>A</" +"computeroutput></quote>; otherwise, outputs nothing." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6931 +msgid "<literal>%n</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6932 +msgid "Program Version" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6933 +msgid "The length of <quote>&VERSION;</quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6936 +msgid "" +"Outputs the version of &aptitude; that is running, currently " +"<quote><computeroutput>&VERSION;</computeroutput></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6943 +msgid "<literal>%N</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6944 +msgid "Program Name" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6945 +msgid "The length of the name." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6948 +msgid "" +"Outputs the name of the program; usually <quote><computeroutput>aptitude</" +"computeroutput></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6954 +msgid "<literal>%o</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6955 +msgid "Download Size" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6959 +msgid "" +"If no packages are going to be installed, outputs nothing. Otherwise, " +"outputs a string describing the total size of all the package files which " +"will be installed (an estimate of how much needs to be downloaded); for " +"instance, <quote><computeroutput>DL size: 1000B</computeroutput></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6969 +msgid "<literal>%p</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6970 +msgid "Package Name" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6974 +msgid "" +"Outputs the name of the package. When a package is displayed in a tree " +"context, the name of the package will be indented, if possible, according to " +"its depth in the tree." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6982 +msgid "<literal>%P</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6983 +msgid "Priority" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6984 +msgid "9" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6987 +msgid "Outputs the priority of the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6992 +msgid "<literal>%r</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6993 +msgid "Reverse Depends Count" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6994 +msgid "2" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:6997 +msgid "" +"Outputs the approximate number of installed packages which depend upon the " +"package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7003 +msgid "<literal>%R</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7004 +msgid "Abbreviated Priority" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7005 +msgid "3" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7008 +msgid "" +"Outputs an abbreviated description of the package's priority: for instance, " +"<quote><computeroutput>Important</computeroutput></quote> becomes " +"<quote><computeroutput>Imp</computeroutput></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7016 +msgid "<literal>%s</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7017 +msgid "Section" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7021 +msgid "Outputs the section of the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7026 +msgid "<literal>%S</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7027 +msgid "Trust Status" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7031 +msgid "If the package is untrusted, displays the letter \"U\"." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7036 +msgid "<literal>%t</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7037 +msgid "Archive" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7041 +msgid "The archive in which the package is found." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7046 +msgid "<literal>%T</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7047 +msgid "Tagged" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg><footnote> +#: en/aptitude.xml:7051 +msgid "" +"Outputs <quote><computeroutput>*</computeroutput></quote> if the package is " +"tagged, nothing otherwise.<footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg><footnote><para> +#: en/aptitude.xml:7053 +msgid "Currently tagging is not supported; this escape is for future use." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7060 +msgid "<literal>%u</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7061 +msgid "Disk Usage Change" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7065 +msgid "" +"If the scheduled actions will alter the amount of space used on the disk, " +"outputs a description of the change in disk space; for instance, " +"<quote><computeroutput>Will use 100MB of disk space.</computeroutput></quote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7074 +msgid "<literal>%v</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7075 +msgid "Current Version" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7079 +msgid "" +"Outputs the currently installed version of the package, or " +"<computeroutput><none></computeroutput> if the package is not " +"currently installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7087 +msgid "<literal>%V</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7088 +msgid "Candidate Version" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7092 +msgid "" +"Outputs the version of the package which would be installed if &package-" +"install; were issued on the package, or <computeroutput><none></" +"computeroutput> if the package is not currently available." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7101 +msgid "<literal>%Z</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7102 +msgid "Size Change" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7103 +msgid "7" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7106 +msgid "" +"Outputs how much additional space will be used or how much space will be " +"freed by installing, upgrading, or removing a package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:7115 +msgid "Customizing the package hierarchy" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:7118 +msgid "" +"The package hierarchy is generated by a <firstterm>grouping policy</" +"firstterm>: rules describing how the hierarchy should be built. The " +"grouping policy describes a <quote>pipeline</quote> of rules; each rule can " +"discard packages, create sub-hierarchies in which packages reside, or " +"otherwise manipulate the tree. The configuration items <literal><link " +"linkend='configDefault-Grouping'>Aptitude::UI::Default-Grouping</link></" +"literal> and <literal><link linkend='configDefault-Preview-" +"Grouping'>Aptitude::UI::Default-Preview-Grouping</link></literal> set the " +"grouping policies for newly created package lists and preview screens, " +"respectively. You can set the grouping policy for the <emphasis>current</" +"emphasis> package list by pressing <keycap>G</keycap>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:7135 +msgid "" +"The grouping policy is described by a comma-separated list of rules: " +"<literal><replaceable>rule1</replaceable>,<replaceable>rule2</replaceable>," +"<replaceable>...</replaceable></literal>. Each <replaceable>rule</" +"replaceable> consists of the name of the rule, possibly followed by " +"arguments: for instance, <literal>versions</literal> or <literal>section" +"(subdir)</literal>. Whether arguments are required and how many arguments " +"are required (or allowed) depends on the type of rule." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:7147 +msgid "" +"Rules can be <firstterm>non-terminal</firstterm> or <firstterm>terminal</" +"firstterm>. A non-terminal rule will process a package by generating some " +"part of the hierarchy, then passing the package on to a later rule. A " +"terminal rule, on the other hand, will also generate part of the tree " +"(typically items corresponding to the package), but does not pass its " +"package to a later rule. If no terminal rule is specified, &aptitude; will " +"use the default rule, which is to create the standard <quote>package items</" +"quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7161 +msgid "action" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7165 +msgid "" +"Groups packages according to the action scheduled on them; packages that are " +"not upgradable and will be unchanged are ignored. This is the grouping that " +"is used in preview trees." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7174 +msgid "deps" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7178 en/aptitude.xml:7534 +msgid "This is a terminal rule." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7182 +msgid "" +"Creates standard package items which can be expanded to reveal the " +"dependencies of the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7189 +msgid "filter(<replaceable>pattern</replaceable>)" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7193 +msgid "" +"Include only packages for which at least one version matches " +"<replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7198 +msgid "" +"If <replaceable>pattern</replaceable> is <quote>missing</quote>, no packages " +"are discarded. This is a backwards compatibility feature and may be removed " +"in the future." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7207 +msgid "firstchar" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7211 +msgid "Groups packages based on the first character of their name." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7218 +msgid "hier" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7222 +msgid "" +"Groups packages according to an extra data file describing a " +"<quote>hierarchy</quote> of packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7229 +msgid "" +"pattern(<replaceable>pattern</replaceable> <optional>=> <replaceable>title</" +"replaceable></optional> <optional>{ <replaceable>policy</replaceable> }</" +"optional> <optional>, ...</optional>)" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7233 +msgid "" +"A customizable grouping policy. Each version of every package is matched " +"against the given <replaceable>pattern</replaceable>s. The first match " +"found is used to assign a <replaceable>title</replaceable> to the package; " +"packages are then grouped by their <replaceable>title</replaceable>. " +"Strings of the form <literal>\\N</literal> that occur in <replaceable>title</" +"replaceable> will be replaced by the Nth result of the match. If " +"<replaceable>title</replaceable> is not present, it is assumed to be " +"<literal>\\1</literal>. Note that packages which do not match any " +"<replaceable>pattern</replaceable>s will not appear in the tree at all." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><example><title> +#: en/aptitude.xml:7251 +msgid "Use of <literal>pattern</literal> to group packages by their maintainer" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:7254 +msgid "<literal>pattern(&Smaintainer;() => \\1)</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7259 +msgid "" +"The example above will group packages according to their Maintainer field. " +"The policy <literal>pattern(&Smaintainer;())</literal> will do the same " +"thing, as the absent <replaceable>title</replaceable> defaults to <literal>" +"\\1</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7268 +msgid "" +"Instead of <literal>=> <replaceable>title</replaceable></literal>, an entry " +"may end with <literal>||</literal>. This indicates that packages matching " +"the corresponding <replaceable>pattern</replaceable> will be inserted into " +"the tree at the same level as the <literal>pattern</literal> grouping, " +"rather than being placed in subtrees." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><example><title> +#: en/aptitude.xml:7280 +msgid "" +"Use of <literal>pattern</literal> with some packages placed at the top level" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:7285 +msgid "" +"<literal>pattern(&Saction;(remove) => Packages Being Removed, &Strue; ||)</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7291 +msgid "" +"The example above will place packages that are being removed into a subtree, " +"and place all the other packages at the current level, grouped according to " +"the policies that follow <literal>pattern</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7298 +msgid "" +"By default, all the packages that match each pattern are grouped according " +"to the rules that follow the <literal>pattern</literal> policy. To specify " +"a different policy for some packages, write the policy in braces (<literal>{}" +"</literal>) after the title of the group, after the <literal>||</literal>, " +"or after the pattern if neither is present. For instance:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><example><title> +#: en/aptitude.xml:7309 +msgid "Use of the <literal>pattern</literal> grouping policy with sub-policies" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><example><para> +#: en/aptitude.xml:7313 +msgid "" +"<literal>pattern(&Saction;(remove) => Packages Being Removed {}, &Saction;" +"(install) => Packages Being Installed, &Strue; || {status})</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7320 +msgid "The policy in the above example has the following effects:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7327 +msgid "" +"Packages that are being removed are placed into a subtree labeled " +"<quote>Packages Being Removed</quote>; the grouping policy for this subtree " +"is empty, so the packages are placed into a flat list." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7337 +msgid "" +"Packages that are being installed are placed into a subtree labeled " +"<literal>Packages Being Installed</literal> and grouped according to the " +"policies that follow <literal>pattern</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7346 +msgid "" +"All remaining packages are placed at the top level of the tree, grouped " +"according to their status." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7354 +msgid "" +"See <xref linkend='secSearchPatterns'/> for more information on the format " +"of <replaceable>pattern</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7362 +msgid "priority" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7366 +msgid "Groups packages according to their priority." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7372 +msgid "" +"section<optional>(<replaceable>mode</replaceable><optional>,passthrough</" +"optional>)</optional>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7376 +msgid "Groups packages according to their Section field." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7380 +msgid "<replaceable>mode</replaceable> can be one of the following:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/aptitude.xml:7386 +msgid "<literal>none</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7390 +msgid "" +"Group based on the whole Section field, so categories like <quote>non-free/" +"games</quote> will be created. This is the default if no <replaceable>mode</" +"replaceable> is specified." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/aptitude.xml:7399 +msgid "<literal>topdir</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7403 +msgid "" +"Group based on the part of the Section field before the first <literal>/</" +"literal> character; if this part of the Section is not recognized, or if " +"there is no <literal>/</literal>, the first entry in the list <literal><link " +"linkend='configTop-Sections'>Aptitude::Sections::Top-Sections</link></" +"literal> will be used instead." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/aptitude.xml:7416 +msgid "<literal>subdir</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7420 +msgid "" +"Group based on the part of the Section field after the first <literal>/</" +"literal> character, if it is contained in the list <literal><link " +"linkend='configTop-Sections'>Aptitude::Sections::Top-Sections</link></" +"literal>. If not, or if there is no <literal>/</literal>, group based on " +"the entire Section field instead." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/aptitude.xml:7433 +msgid "<literal>subdirs</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7437 +msgid "" +"Group based on the part of the Section field after the first <literal>/</" +"literal> character, if the portion of the field preceding it is contained in " +"the list <literal><link linkend='configTop-Sections'>Aptitude::Sections::Top-" +"Sections</link></literal>; if not, or if there is no <literal>/</literal>, " +"the entire field will be used. If there are multiple <literal>/</literal> " +"characters in the portion of the field that is used, a hierarchy of groups " +"will be formed. For instance, if <quote><literal>games</literal></quote> is " +"not a member of <literal><link linkend='configTop-Sections'>Aptitude::" +"Sections::Top-Sections</link></literal>, then a package with a section of " +"<quote><literal>games/arcade</literal></quote> will be placed under the top-" +"level heading <quote><literal>games</literal></quote>, in a sub-tree named " +"<quote><literal>arcade</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7464 +msgid "" +"If <literal>passthrough</literal> is present, packages which for some reason " +"lack a true Section (for instance, virtual packages) will be passed directly " +"to the next level of grouping without first being placed in sub-categories." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7474 +msgid "status" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7478 +msgid "Groups packages into the following categories:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7482 +msgid "Installed" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7483 +msgid "Not Installed" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7484 +msgid "Security Updates" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7485 +msgid "Upgradable" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7486 +msgid "Obsolete" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><itemizedlist><listitem><para> +#: en/aptitude.xml:7487 +msgid "Virtual" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7493 +msgid "tag<optional>(<replaceable>facet</replaceable>)</optional>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7497 +msgid "" +"Groups packages according to the Tag information stored in the Debian " +"package files. If <replaceable>facet</replaceable> is provided, then only " +"tags corresponding to that facet will be displayed, and packages lacking " +"this facet will be hidden; otherwise, all packages will be displayed at " +"least once (with tagless packages listed separately from packages that have " +"tags)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7508 +msgid "" +"For more information on debtags, see <ulink url='http://debtags.alioth." +"debian.org'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7515 +msgid "task" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7519 +msgid "" +"Creates a tree called <quote>Tasks</quote> which contains the available " +"tasks (information on tasks is read from <filename>debian-tasks.desc</" +"filename> in the package <systemitem>tasksel</systemitem>). The rule " +"following <literal>task</literal> will create its categories as siblings of " +"Tasks." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term><synopsis> +#: en/aptitude.xml:7530 +msgid "versions" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7538 +msgid "" +"Creates standard package items which can be expanded to reveal the versions " +"of the package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:7547 +msgid "Customizing how packages are sorted" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:7550 +msgid "" +"By default, packages in the package list or in the output of <literal><link " +"linkend='cmdlineSearch'>aptitude search</link></literal> are sorted by " +"name. However, it is often useful to sort them according to different " +"criteria (for instance, package size), and &aptitude; allows you to do just " +"that by modifying the <firstterm>sorting policy</firstterm>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:7560 +msgid "" +"Like the grouping policy described in <link linkend='secGroupingPolicy'>the " +"previous section</link>, the sorting policy is a comma-separated list. Each " +"item in the list is the name of a sorting rule; if packages are " +"<quote>equal</quote> according to the first rule, the second rule is used to " +"sort them, and so on. Placing a tilde character (<literal>~</literal>) in " +"front of a rule reverses the usual meaning of that rule. For instance, " +"<literal>priority,~name</literal> will sort packages by priority, but " +"packages with the same priority will be placed in reverse order according to " +"name." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:7574 +msgid "" +"To change the sorting policy for an active package list, press <keycap>S</" +"keycap>. To change the default sorting for all package lists, set the " +"configuration option <literal><link linkend='configDefault-" +"Sorting'>Aptitude::UI::Default-Sorting</link></literal>. To change the " +"sorting policy for <literal><link linkend='cmdlineSearch'>aptitude search</" +"link></literal>, use the <literal><link linkend='cmdlineOptionSort'>--sort</" +"link></literal> command-line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:7587 +msgid "The available rules are:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:7592 +msgid "<literal>installsize</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7596 +msgid "" +"Sorts packages by the estimated amount of size they require when installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:7603 en/aptitude.xml:11714 +msgid "<literal>name</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7607 +msgid "Sorts packages by name." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:7613 +msgid "<literal>priority</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7617 +msgid "Sorts packages by priority." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:7623 +msgid "<literal>version</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:7627 +msgid "Sorts packages according to their version number." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:7636 +msgid "Customizing keybindings" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:7639 +msgid "" +"The keys used to activate commands in &aptitude; can be customized in the " +"<link linkend='secConfigFile'>configuration file</link>. Every command has " +"an associated configuration variable under <literal>Aptitude::UI::" +"Keybindings</literal>; to change the keystroke bound to a command, just set " +"the corresponding variable to the keystroke. For instance, to make the key " +"<keycap>s</keycap> perform a search, set <literal>Aptitude::UI::Keybindings::" +"Search</literal> to <quote><literal>s</literal></quote>. You can require " +"the Control key to be pressed by placing <quote><literal>C-</literal></" +"quote> in front of the key: for instance, using <quote><literal>C-s</" +"literal></quote> instead of <quote><literal>s</literal></quote> would bind " +"Search to <keycombo action='simul'><keycap>Control</keycap><keycap>s</" +"keycap></keycombo> instead of <keycap>s</keycap>. Finally, you can bind a " +"command to several keys at once using a comma-separated list: for instance, " +"using <quote><literal>s,C-s</literal></quote> would cause both <keycap>s</" +"keycap> and <keycombo action='simul'><keycap>Control</keycap><keycap>s</" +"keycap></keycombo> to perform a search." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:7663 +msgid "" +"The following commands can be bound to keys by setting the variable " +"<literal>Aptitude::UI::Keybindings::<replaceable>command</replaceable></" +"literal>, where <replaceable>command</replaceable> is the name of the " +"command to be bound:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><segtitle> +#: en/aptitude.xml:7675 en/aptitude.xml:9132 en/aptitude.xml:10217 +msgid "Default" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7682 +msgid "<literal>ApplySolution</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7684 +msgid "<literal>!</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7687 +msgid "" +"If packages are broken and &aptitude; has suggested a solution to the " +"problem, immediately apply the solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7694 +msgid "<literal>Begin</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7695 +msgid "<literal>home,C-a</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7697 +msgid "" +"Move to the beginning of the current display: to the top of a list, or to " +"the left of a text entry field." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7703 +msgid "<literal>BugReport</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7704 +msgid "<literal>B</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7706 +msgid "" +"Reports a bug in the currently selected package, using <command>reportbug</" +"command>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7712 +msgid "<literal>Cancel</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7713 +msgid "<literal>C-g,escape,C-[</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7715 +msgid "" +"Cancels the current interaction: for instance, discards a dialog box or " +"deactivates the menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7721 +msgid "<literal>Changelog</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7722 +msgid "<literal>C</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7724 +msgid "" +"Displays the <filename>changelog.Debian</filename> of the currently selected " +"package or package version." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7731 +msgid "<literal>ChangePkgTreeGrouping</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7732 +msgid "<literal>G</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7734 +msgid "" +"Changes the <link linkend='secGroupingPolicy'>grouping policy</link> of the " +"currently active package list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7741 +msgid "<literal>ChangePkgTreeLimit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7742 +msgid "<literal>l</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7744 +msgid "" +"Changes the <link linkend='secSearchPatterns'>limit</link> of the currently " +"active package list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7751 +msgid "<literal>ChangePkgTreeSorting</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7752 en/aptitude.xml:8161 en/aptitude.xml:8353 +msgid "<literal>S</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7754 +msgid "" +"Changes the <link linkend='secSortingPolicy'>sorting policy</link> of the " +"currently active package list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7760 +msgid "<literal>ClearAuto</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7761 +msgid "<literal>m</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7763 +msgid "Marks the currently selected package as having been manually installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7769 +msgid "<literal>CollapseAll</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7770 +msgid "<literal>]</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7772 +msgid "" +"Collapses the selected tree and all its children in a hierarchical list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7778 +msgid "<literal>CollapseTree</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7779 en/aptitude.xml:7994 en/aptitude.xml:8170 +#: en/aptitude.xml:8179 +msgid "No binding" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7781 +msgid "Collapses the selected tree in a hierarchical list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7786 +msgid "<literal>Commit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7787 en/aptitude.xml:8317 +msgid "<literal>N</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#. TODO: <link linkend='secHier'> +#. +#: en/aptitude.xml:7789 +msgid "" +"In the hierarchy editor, stores the hierarchy location of the current " +"package and proceeds to the next package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7797 +msgid "<literal>Confirm</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7798 en/aptitude.xml:8188 en/aptitude.xml:8428 +msgid "<literal>enter</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7800 +msgid "" +"In dialog boxes, this is equivalent to pressing <quote><guilabel>Ok</" +"guilabel></quote>; when interacting with a status-line multiple choice " +"question, it chooses the default option." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7808 +msgid "<literal>Cycle</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7809 en/aptitude.xml:8785 +msgid "<literal>tab</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7811 +msgid "Switches the keyboard focus to the next <quote>widget</quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7816 +msgid "<literal>CycleNext</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7817 +msgid "<literal>f6</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7819 +msgid "Switches to the next active view." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7824 +msgid "<literal>CycleOrder</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7825 +msgid "<literal>o</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7827 +msgid "Cycles through predefined arrangements of the display." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7832 +msgid "<literal>CyclePrev</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7833 +msgid "<literal>f7</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7835 +msgid "Switches to the previous active view." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7840 +msgid "<literal>DelBOL</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7841 +msgid "<literal>C-u</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7843 +msgid "Deletes all text between the cursor and the beginning of the line." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7849 +msgid "<literal>DelBack</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7850 +msgid "<literal>backspace,C-h</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7852 +msgid "Deletes the previous character when entering text." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7857 +msgid "<literal>DelEOL</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7858 +msgid "<literal>C-k</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7860 +msgid "Deletes all text from the cursor to the end of the line." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7866 +msgid "<literal>DelForward</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7867 +msgid "<literal>delete,C-d</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7869 +msgid "Deletes the character under the cursor when entering text." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7874 +msgid "<literal>Dependencies</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7875 +msgid "<literal>d</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7877 +msgid "Displays the dependencies of the currently selected package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7883 +msgid "<literal>DescriptionCycle</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7884 +msgid "<literal>i</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7886 +msgid "" +"When browsing the package list, cycles through the available views in the " +"information area." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7892 +msgid "<literal>DescriptionDown</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7893 +msgid "<literal>z</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7895 +msgid "" +"When browsing the package list, scrolls the information area down one line." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7901 +msgid "<literal>DescriptionUp</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7902 en/aptitude.xml:8408 +msgid "<literal>a</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7904 +msgid "" +"When browsing the package list, scrolls the information area up one line." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7910 +msgid "<literal>DoInstallRun</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7911 +msgid "<literal>g</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><footnote> +#: en/aptitude.xml:7913 +msgid "If not in a preview screen, display the preview screen <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><footnote><para> +#: en/aptitude.xml:7917 +msgid "" +"unless <literal><link linkend='configDisplay-Planned-Action'>Aptitude::" +"Display-Planned-Action</link></literal> is false." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7921 +msgid "" +"</footnote>; if in a preview screen, perform an <link " +"linkend='secInstallRun'>install run.</link>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7927 +msgid "<literal>Down</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7928 +msgid "<literal>down,j</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7930 +msgid "" +"Moves down: for instance, scrolls a text display down or selects the next " +"item in a list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7936 +msgid "<literal>DpkgReconfigure</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7937 +msgid "<literal>R</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7939 +msgid "Runs <quote>dpkg-reconfigure</quote> on the currently selected package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7945 +msgid "<literal>DumpResolver</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7946 +msgid "<literal>*</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7948 +msgid "" +"If packages are broken, writes the current state of the problem-resolver to " +"a file (for debugging purposes)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7955 +msgid "<literal>EditHier</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7956 +msgid "<literal>E</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#. TODO: link linkend='secHier'> +#. +#: en/aptitude.xml:7958 +msgid "Opens the hierarchy editor." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7964 +msgid "<literal>End</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7965 +msgid "<literal>end,C-e</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7967 +msgid "" +"Move to the end of the current display: to the bottom of a list, or to the " +"right of a text entry field." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7974 +msgid "<literal>ExamineSolution</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7975 +msgid "<literal>e</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7977 +msgid "" +"If some packages are broken and &aptitude; has suggested a solution, display " +"a dialog box with a detailed description of the proposed solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7984 +msgid "<literal>ExpandAll</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7985 +msgid "<literal>[</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7987 +msgid "Expands the selected tree and all its children in a hierarchical list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7993 +msgid "<literal>ExpandTree</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:7996 +msgid "Expands the selected tree in a hierarchical list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8001 +msgid "<literal>FirstSolution</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8002 en/aptitude.xml:8094 +msgid "<literal><</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8004 +msgid "Select the first solution produced by the problem resolver." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8010 +msgid "<literal>ForbidUpgrade</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8011 +msgid "<literal>F</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8013 +msgid "" +"<link linkend='pkgCmdForbid'>Forbids</link> a package from being upgraded to " +"the currently available version (or a particular version)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8020 +msgid "<literal>ForgetNewPackages</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8021 en/aptitude.xml:8142 +msgid "<literal>f</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8023 +msgid "" +"Discards all information about which packages are <quote>new</quote> (causes " +"the list of <quote>new</quote> packages to become empty)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8030 +msgid "<literal>Help</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8031 +msgid "<literal>?</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8033 +msgid "Displays the on-line help screen." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8038 +msgid "<literal>HistoryNext</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8039 +msgid "<literal>down,C-n</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8041 +msgid "In a line editor with history, moves forwards in the history." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8047 +msgid "<literal>HistoryPrev</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8048 +msgid "<literal>up,C-p</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8050 +msgid "In a line editor with history, moves backwards in the history." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8056 +msgid "<literal>Hold</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8057 +msgid "<literal>=</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8059 +msgid "Places a package on <link linkend='pkgCmdHold'>hold</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8065 +msgid "<literal>Install</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8066 +msgid "<literal>+</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8068 +msgid "Flags a package for <link linkend='pkgCmdInstall'>installation</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8074 +msgid "<literal>InstallSingle</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8075 +msgid "<literal>I</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8077 +msgid "" +"Marks a single package for installation; all other packages are kept at " +"their current version." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8083 +msgid "<literal>Keep</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8084 +msgid "<literal>:</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8086 +msgid "" +"<link linkend='pkgCmdKeep'>Cancels</link> all installation or removal " +"requests and all holds for a package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8093 +msgid "<literal>LastSolution</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8096 +msgid "Select the last solution produced by the problem resolver." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8102 +msgid "<literal>Left</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8103 +msgid "<literal>left,h</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8105 +msgid "" +"Moves left: for instance, moves one menu to the left in the menu bar, or " +"moves the cursor to the left when editing text." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8112 +msgid "<literal>LevelDown</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8113 +msgid "<literal>J</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8115 +msgid "" +"In a hierarchical list, selects the next sibling of the currently selected " +"item (the next item at the same level with the same parent)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8122 +msgid "<literal>LevelUp</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8123 +msgid "<literal>K</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8125 +msgid "" +"In a hierarchical list, selects the previous sibling of the currently " +"selected item (the previous item at the same level with the same parent)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8132 +msgid "<literal>MarkUpgradable</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8133 +msgid "<literal>U</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8135 +msgid "" +"Attempts to upgrade all packages which are not held back or forbidden from " +"upgrading." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8141 +msgid "<literal>MineFlagSquare</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8144 +msgid "" +"In <link linkend='secMinesweeper'>Minesweeper</link>, places or removes a " +"flag on a square." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8151 +msgid "<literal>MineLoadGame</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8152 en/aptitude.xml:8308 +msgid "<literal>L</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8154 +msgid "Loads a <link linkend='secMinesweeper'>Minesweeper</link> game." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8160 +msgid "<literal>MineSaveGame</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8163 +msgid "Saves a <link linkend='secMinesweeper'>Minesweeper</link> game." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8169 +msgid "<literal>MineSweepSquare</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8172 +msgid "" +"Sweeps around the current square in <link " +"linkend='secMinesweeper'>Minesweeper</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8178 +msgid "<literal>MineUncoverSquare</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8181 +msgid "" +"Uncovers the current square in <link linkend='secMinesweeper'>Minesweeper</" +"link>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8187 +msgid "<literal>MineUncoverSweepSquare</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8190 +msgid "" +"Uncovers the current square in <link linkend='secMinesweeper'>Minesweeper</" +"link> if it is covered; otherwise, sweeps around it." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8197 +msgid "<literal>NextPage</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8198 +msgid "<literal>pagedown,C-f</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8200 +msgid "Moves the current display one page forward." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8205 +msgid "<literal>NextSolution</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8206 +msgid "<literal>.</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8208 +msgid "Advance the dependency resolver to the next solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8213 +msgid "<literal>No</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8214 +msgid "<literal>n</literal><footnoteref linkend='footnoteYesNoLocale'/>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8216 +msgid "" +"This key will select the <quote>no</quote> button in yes/no dialog boxes." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8222 +msgid "<literal>Parent</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8223 +msgid "<literal>^</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8225 +msgid "Selects the parent of the selected item in a hierarchical list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8231 +msgid "<literal>PrevPage</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8232 +msgid "<literal>pageup,C-b</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8234 +msgid "Moves the current display one page backward." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8239 +msgid "<literal>PrevSolution</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8240 +msgid "<literal>,</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8242 +msgid "Return the dependency resolver to the previous solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8247 +msgid "<literal>Purge</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8248 +msgid "<literal>_</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8250 +msgid "" +"Flags the currently selected package to be <link " +"linkend='pkgCmdPurge'>purged</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8256 +msgid "<literal>PushButton</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8257 +msgid "<literal>space,enter</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8259 +msgid "Activates the currently selected button, or toggles a checkbox." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8265 +msgid "<literal>Quit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8266 +msgid "<literal>q</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8273 +msgid "<literal>QuitProgram</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8274 +msgid "<literal>Q</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8276 +msgid "Quit the entire program." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8281 +msgid "<literal>RejectBreakHolds</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8284 +msgid "" +"Reject all resolver actions that would break a hold; equivalent to <link " +"linkend='menuResolverRejectBreakHolds'>&resolver-reject-break-holds;</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8291 +msgid "<literal>Refresh</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8292 +msgid "<literal>C-l</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8294 +msgid "Redraws the screen from scratch." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8299 +msgid "<literal>Remove</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8300 +msgid "<literal>-</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8302 +msgid "Flags a package for <link linkend='pkgCmdRemove'>removal</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8307 +msgid "<literal>ReInstall</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8310 +msgid "" +"Flags the currently selected package to be <link " +"linkend='pkgCmdReinstall'>reinstalled</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8316 +msgid "<literal>RepeatSearchBack</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8319 +msgid "Repeats the last search, but searches in the opposite direction." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8325 +msgid "<literal>ReSearch</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8326 +msgid "<literal>n</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8328 +msgid "Repeats the last search." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8333 +msgid "<literal>ReverseDependencies</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8334 en/aptitude.xml:8418 +msgid "<literal>r</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8336 +msgid "Displays packages which depend upon the currently selected package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8342 +msgid "<literal>Right</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8343 +msgid "<literal>right,l</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8345 +msgid "" +"Moves right: for instance, moves one menu to the right in the menu bar, or " +"moves the cursor to the right when editing text." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8352 +msgid "<literal>SaveHier</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#. TODO: <link linkend='secHier'> +#. +#: en/aptitude.xml:8355 +msgid "In the hierarchy editor, saves the current hierarchy." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8361 +msgid "<literal>Search</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8362 +msgid "<literal>/</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8364 +msgid "" +"Activate the <quote>search</quote> function of the currently active " +"interface element." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8370 +msgid "<literal>SearchBack</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8371 +msgid "<literal>\\</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8373 +msgid "" +"Activate the <quote>search backwards</quote> function of the currently " +"active interface element." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8379 +msgid "<literal>SearchBroken</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8380 +msgid "<literal>b</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8382 +msgid "In a package tree, search for the next broken package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8388 +msgid "<literal>SetAuto</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8389 +msgid "<literal>M</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8391 +msgid "" +"Marks the current package as having been <link " +"linkend='secAutoInstall'>automatically installed</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8398 +msgid "<literal>ShowHideDescription</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8399 +msgid "<literal>D</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8401 +msgid "In a package list, toggles whether the information area is visible." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8407 +msgid "<literal>SolutionActionApprove</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8410 +msgid "" +"When viewing a solution, marks the currently selected action as \"approved" +"\" (it will be included in future solutions whenever possible)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8417 +msgid "<literal>SolutionActionReject</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8420 +msgid "" +"When viewing a solution, marks the currently selected action as \"rejected" +"\" (future solutions will not contain it)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8427 +msgid "<literal>ToggleExpanded</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8430 +msgid "" +"Expands or collapses the currently selected tree in a hierarchical list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8436 +msgid "<literal>ToggleMenuActive</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8437 +msgid "<literal>C-m,f10,C-space</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8439 +msgid "Activates or deactivates the main menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8444 +msgid "<literal>Undo</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8445 +msgid "<literal>C-_,C-u</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8447 +msgid "" +"Cancels the last action, up to when &aptitude; was started OR the last time " +"you update the package lists or installed packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8454 +msgid "<literal>Up</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8455 +msgid "<literal>up,k</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8457 +msgid "" +"Moves up: for instance, scrolls a text display up or selects the previous " +"item in a list." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8463 +msgid "<literal>UpdatePackageList</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8464 +msgid "<literal>u</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8466 +msgid "" +"Updates the list of packages by fetching new lists from the Internet if " +"necessary." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8472 +msgid "<literal>Versions</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8473 +msgid "<literal>v</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8475 +msgid "Displays the available versions of the currently selected package." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8481 +msgid "<literal>Yes</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><footnote> +#: en/aptitude.xml:8483 +msgid "<literal>y</literal> <footnote id='footnoteYesNoLocale'>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry><footnote><para> +#: en/aptitude.xml:8486 +msgid "This default may be different in different locales." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8491 +msgid "" +"This key will select the <quote>Yes</quote> button in yes/no dialog boxes." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:8500 +msgid "" +"In addition to letter keys, number keys, and punctuation, the following " +"<quote>special</quote> keys can be bound:" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><thead><row><entry> +#: en/aptitude.xml:8508 +msgid "Key name" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8515 +msgid "<literal>a1</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8516 +msgid "The A1 key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8520 +msgid "<literal>a3</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8521 +msgid "The A3 key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8525 +msgid "<literal>b2</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8526 +msgid "The B2 key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8530 +msgid "<literal>backspace</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8531 +msgid "The Backspace key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8535 +msgid "<literal>backtab</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8536 +msgid "The back-tab key" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8540 +msgid "<literal>begin</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8541 +msgid "The Begin key (not Home)" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8545 +msgid "<literal>break</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8547 +msgid "The <quote>break</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8552 +msgid "<literal>c1</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8553 +msgid "The C1 key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8557 +msgid "<literal>c3</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8558 +msgid "The C3 key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8562 +msgid "<literal>cancel</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8563 +msgid "The Cancel key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8567 +msgid "<literal>create</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8568 +msgid "The Create key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8572 +msgid "<literal>comma</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8574 +msgid "" +"Comma (,) -- note that because commas are used to list keys, this is the " +"only way to bind to a comma." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8580 +msgid "<literal>command</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8581 +msgid "The Command key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8585 +msgid "<literal>copy</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8586 +msgid "The Copy key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8590 +msgid "<literal>delete</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8591 +msgid "The Delete key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8595 +msgid "<literal>delete_line</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8596 +msgid "The <quote>delete line</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8600 +msgid "<literal>down</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8601 +msgid "The <quote>down</quote> arrow key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8605 +msgid "<literal>end</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8606 +msgid "The End key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8610 +msgid "<literal>entry</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8611 +msgid "The Enter key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8615 +msgid "<literal>exit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8616 +msgid "The Exit key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8620 +msgid "" +"<literal>f1</literal>, <literal>f2</literal>, ..., <literal>f10</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8621 +msgid "The F1 through F10 keys." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8625 +msgid "<literal>find</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8626 +msgid "The Find key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8630 +msgid "<literal>home</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8631 +msgid "The Home key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8635 +msgid "<literal>insert</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8636 +msgid "The Insert key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8640 +msgid "<literal>insert_exit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8641 +msgid "The <quote>insert exit</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8645 +msgid "<literal>clear</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8646 +msgid "The <quote>clear</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8650 +msgid "<literal>clear_eol</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8651 +msgid "The <quote>clear to end of line</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8655 +msgid "<literal>clear_eos</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8656 +msgid "The <quote>clear to end of screen</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8660 +msgid "<literal>insert_line</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8661 +msgid "The <quote>insert line</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8665 +msgid "<literal>left</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8666 +msgid "The <quote>left</quote> arrow key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8670 +msgid "<literal>mark</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8671 +msgid "The Mark key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8675 +msgid "<literal>message</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8676 +msgid "The Message key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8680 +msgid "<literal>move</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8681 +msgid "The Move key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8685 +msgid "<literal>next</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8686 +msgid "The Next key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8690 +msgid "<literal>open</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8691 +msgid "The Open key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8695 +msgid "<literal>previous</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8696 +msgid "The Previous key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8700 +msgid "<literal>print</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8701 +msgid "The Print key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8705 +msgid "<literal>redo</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8706 +msgid "The Redo key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8710 +msgid "<literal>reference</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8711 +msgid "The Reference key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8715 +msgid "<literal>refresh</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8716 +msgid "The Refresh key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8720 +msgid "<literal>replace</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8721 +msgid "The Replace key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8725 +msgid "<literal>restart</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8726 +msgid "The Restart key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8730 +msgid "<literal>resume</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8731 +msgid "The Resume key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8735 +msgid "<literal>return</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8736 +msgid "The Return key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8740 +msgid "<literal>right</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8741 +msgid "The <quote>right</quote> arrow key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8745 +msgid "<literal>save</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8746 +msgid "The Save key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8750 +msgid "<literal>scrollf</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8751 +msgid "The <quote>scroll forward</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8755 +msgid "<literal>scrollr</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8756 +msgid "The <quote>scroll backwards</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8760 +msgid "<literal>select</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8761 +msgid "The Select key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8765 +msgid "<literal>suspend</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8766 +msgid "The Suspend key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8770 +msgid "<literal>pagedown</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8771 +msgid "The <quote>Page Down</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8775 +msgid "<literal>pageup</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8776 +msgid "The <quote>Page Up</quote> key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8780 +msgid "<literal>space</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8781 +msgid "The Space key" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8786 +msgid "The Tab key" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8790 +msgid "<literal>undo</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8791 +msgid "The Undo key." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8795 +msgid "<literal>up</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8796 +msgid "The <quote>up</quote> arrow key." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:8803 +msgid "" +"In addition to binding keys globally, it is possible to change key bindings " +"for one particular part (or <firstterm>domain</firstterm>) of &aptitude;: " +"for instance, to make Tab the equivalent of the right arrow key in menu " +"bars, set <literal>Aptitude::UI::Keybindings::Menubar::Right</literal> to " +"<quote><literal>tab,right</literal></quote>. The following domains are " +"available:" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><thead><row><entry> +#: en/aptitude.xml:8817 +msgid "Domain" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8824 en/aptitude.xml:9203 +msgid "<literal>EditLine</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8826 +msgid "" +"Used by line-editing widgets, such as the entry field in a <quote>search</" +"quote> dialog." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8832 +msgid "<literal>Menu</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8834 +msgid "Used by drop-down menus." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8839 +msgid "<literal>Menubar</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8841 +msgid "Used by the menu bar at the top of the screen." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8846 +msgid "<literal>Minesweeper</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8849 +msgid "Used by the <link linkend='secMinesweeper'>Minesweeper</link> mode." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8855 +msgid "<literal>MinibufChoice</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8858 +msgid "" +"Used by the multiple-choice prompts that appear if you have chosen to have " +"some prompts appear in the status line." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8865 +msgid "<literal>Pager</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8868 +msgid "Used when displaying a file on disk (for instance, the help text)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8874 +msgid "<literal>PkgNode</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8877 +msgid "" +"Used by packages, trees of packages, package versions, and package " +"dependencies when they appear in package lists." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8884 +msgid "<literal>PkgTree</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8887 +msgid "Used by package lists." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8892 +msgid "<literal>Table</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8895 +msgid "Used by tables of widgets (for instance, dialog boxes)." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8900 +msgid "<literal>TextLayout</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8903 +msgid "Used by formatted text displays, such as package descriptions." +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8909 +msgid "<literal>Tree</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:8912 +msgid "" +"Used by all tree displays (including package lists, for which it can be " +"overridden by <literal>PkgTree</literal>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:8923 +msgid "Customizing text colors and styles" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:8926 +msgid "" +"The colors and visual styles used by &aptitude; to display text can be " +"extensively customized. Each visual element has an associated <quote>style</" +"quote>, which describes the particular colors and visual attributes that " +"will be used to display that element. Styles take the form of a list of " +"color and attribute settings. This list is not necessarily exhaustive; if " +"some colors or attributes are not explicitly specified, their values will be " +"taken from the surrounding visual context. In fact, most visual elements " +"have an <quote>empty</quote> style by default." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:8939 +msgid "" +"You can change the contents of a style by creating a configuration group of " +"the same name in the &apt; or &aptitude; configuration file. For instance, " +"the <quote><literal>MenuBorder</literal></quote> style is used to draw the " +"visual border around drop-down menus. By default, this border is drawn bold " +"and white-on-blue. Placing the following text in the configuration file " +"would change it to white-on-cyan:" +msgstr "" + +# type: Content of: <book><chapter><section><section><screen> +#: en/aptitude.xml:8949 +#, no-wrap +msgid "" +"Aptitude::UI::Styles {\n" +" MenuBorder {fg white; bg cyan; set bold;};\n" +"};" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:8954 +msgid "" +"As you can see, a style's configuration group consists of a sequence of " +"instructions. The general classes of instructions are:" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:8961 +msgid "<literal>fg</literal> <replaceable>color</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:8964 +msgid "" +"Sets the text foreground to the given <replaceable>color</replaceable>. See " +"below for a list of the colors known to &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:8972 +msgid "<literal>bg</literal> <replaceable>color</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:8975 +msgid "" +"Sets the text background to the given <replaceable>color</replaceable>. See " +"below for a list of the colors known to &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:8983 +msgid "<literal>set</literal> <replaceable>attribute</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:8987 +msgid "" +"Enables the given text <replaceable>attribute</replaceable>. See below for " +"a list of the text attributes known to &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:8995 +msgid "<literal>clear</literal> <replaceable>attribute</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:8999 +msgid "" +"Disables the given text <replaceable>attribute</replaceable>. See below for " +"a list of the text attributes known to &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9007 +msgid "<literal>flip</literal> <replaceable>attribute</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9011 +msgid "" +"Toggles the given text <replaceable>attribute</replaceable>: if it is " +"enabled in the surrounding element, it will be disabled, and vice versa. " +"See below for a list of the text attributes known to &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote> +#: en/aptitude.xml:9022 +msgid "" +"The colors that &aptitude; recognizes are <literal>black</literal>, " +"<literal>blue</literal>, <literal>cyan</literal>, <literal>green</literal>, " +"<literal>magenta</literal>, <literal>red</literal>, <literal>white</" +"literal>, and <literal>yellow</literal> <footnote>" +msgstr "" + +# type: Content of: <book><chapter><section><section><para><footnote><para> +#: en/aptitude.xml:9029 +msgid "" +"On some terminals, a <quote>yellow</quote> background will actually come out " +"brown." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:9032 +msgid "" +"</footnote>. In addition, you may specify <literal>default</literal> in " +"place of a background color to use the default terminal background (this " +"could be the default color, an image file, or even <quote>transparent</" +"quote>). The styles that &aptitude; recognizes are:" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9042 +msgid "<literal>blink</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9045 +msgid "Enables blinking text." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9051 +msgid "<literal>bold</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9054 +msgid "" +"Makes the foreground color of the text (or the background if reverse video " +"is enabled) brighter." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9061 +msgid "<literal>dim</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9064 +msgid "" +"May cause text to be extra-dim on some terminals. No effect has been " +"observed on common Linux terminals." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9071 +msgid "<literal>reverse</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9074 +msgid "" +"Swaps the foreground and background colors. Many visual elements flip this " +"attribute to perform common highlighting tasks." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9082 +msgid "<literal>standout</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9086 +msgid "" +"This enables <quote>the best highlighting mode of the terminal</quote>. In " +"xterms it is similar, but not idential to, reverse video; behavior on other " +"terminals may vary." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9095 +msgid "<literal>underline</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9099 +msgid "Enables underlined text." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:9106 +msgid "" +"You can select several attributes at once by separating them with commas; " +"for instance, <literal>set bold,standout;</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><note><para> +#: en/aptitude.xml:9113 +msgid "" +"As hinted at above, the interpretation of both styles and text attributes is " +"highly terminal-dependent. You may need to experiment a bit to find out " +"exactly what some settings do on your terminal." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:9121 +msgid "The following styles can be customized in &aptitude;:" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><title> +#: en/aptitude.xml:9125 +msgid "Customizable styles in &aptitude;" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><thead><row><entry> +#: en/aptitude.xml:9131 +msgid "Style" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9139 +msgid "<literal>Bullet</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9140 +msgid "<literal>fg yellow; set bold;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9142 +msgid "The style of the bullets in bulleted lists." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9147 +msgid "<literal>ChangelogNewerVersion</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9148 en/aptitude.xml:9290 en/aptitude.xml:9373 +#: en/aptitude.xml:9392 +msgid "<literal>set bold;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9150 +msgid "" +"The style of newer versions of the package in the changelog view. Note that " +"&aptitude; will only highlight newer versions of the package if you have the " +"package libparse-debianchangelog-perl installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9159 +msgid "<literal>Default</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9160 +msgid "<literal>fg white; bg black;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9162 +msgid "The basic style of the screen." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9167 +msgid "<literal>DepBroken</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9168 +msgid "<literal>fg black; bg red;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9170 +msgid "The style of unfulfilled dependencies." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9175 +msgid "<literal>DisabledMenuEntry</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9176 +msgid "<literal>fg black; bg blue; set dim;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9178 +msgid "The style of menu entries that are disabled and cannot be used." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9184 +msgid "<literal>DownloadHit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9185 +msgid "<literal>fg black; bg green;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9187 +msgid "" +"The style used to indicate that a file was <quote>hit</quote>: i.e., it has " +"not changed since the last time it was downloaded." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9194 +msgid "<literal>DownloadProgress</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9195 en/aptitude.xml:9494 +msgid "<literal>fg blue; bg yellow;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9197 +msgid "The style of the progress indicator for a download." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9204 +msgid "<literal>fg white; bg black; clear reverse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9206 +msgid "" +"The style of line editors (for instance, the entry in the <quote>Search</" +"quote> dialog)." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9212 +msgid "<literal>Error</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9213 +msgid "<literal>fg white; bg red; set bold;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9214 +msgid "The style of error messages." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9219 +msgid "<literal>Header</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9220 en/aptitude.xml:9255 en/aptitude.xml:9264 +#: en/aptitude.xml:9520 +msgid "<literal>fg white; bg blue; set bold;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9222 +msgid "The style of screen headers." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9227 +msgid "<literal>HighlightedMenuBar</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9228 en/aptitude.xml:9237 +msgid "<literal>fg white; bg blue; set bold,reverse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9230 +msgid "The style of the currently selected menu name in the menu bar." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9236 +msgid "<literal>HighlightedMenuEntry</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9239 +msgid "The style of the currently selected choice in a menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9245 +msgid "<literal>MediaChange</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9246 +msgid "<literal>fg yellow; bg red; set bold;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9248 +msgid "The style of the dialog used to ask the user to insert a new CD." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9254 +msgid "<literal>MenuBar</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9258 +msgid "The style of the menu bar." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9263 +msgid "<literal>MenuBorder</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9266 +msgid "The style of the borders that surround a drop-down menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9272 +msgid "<literal>MenuEntry</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9273 en/aptitude.xml:9319 +msgid "<literal>fg white; bg blue;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9275 +msgid "The style of each entry in a drop-down menu." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9280 +msgid "<literal>MineBomb</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9281 en/aptitude.xml:9299 +msgid "<literal>fg red; set bold;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9283 +msgid "" +"The style of bombs in <link linkend='secMinesweeper'>Minesweeper</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9289 +msgid "<literal>MineBorder</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9292 +msgid "" +"The style of the border drawn around a <link " +"linkend='secMinesweeper'>Minesweeper</link> board." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9298 +msgid "<literal>MineFlag</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9301 +msgid "" +"The style of flags in <link linkend='secMinesweeper'>Minesweeper</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9307 +msgid "<literal>MineNumber</literal><replaceable>N</replaceable>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9308 +msgid "Various" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9310 +msgid "" +"The style of the number <replaceable>N</replaceable> in Minesweeper; " +"<replaceable>N</replaceable> may range from 0 to 8." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9318 +msgid "<literal>MultiplexTab</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9321 +msgid "" +"The color used to display <quote>tabs</quote> other than the currently " +"selected one." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9327 +msgid "<literal>MultiplexTabHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9328 +msgid "<literal>fg blue; bg white;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9330 +msgid "The color used to display the currently selected <quote>tab</quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9336 +msgid "<literal>PkgBroken</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9337 +msgid "<literal>fg red; flip reverse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9339 +msgid "" +"The style of packages in the package list which have unfulfilled " +"dependencies." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9345 +msgid "<literal>PkgBrokenHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9346 +msgid "<literal>fg red;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9348 +msgid "" +"The style of highlighted packages in the package list which have unfulfilled " +"dependencies." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9354 +msgid "<literal>PkgNotInstalled</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9357 +msgid "" +"The style of packages which are not currently installed and will not be " +"installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9363 +msgid "<literal>PkgNotInstalledHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9366 +msgid "" +"The style of highlighted packages which are not currently installed and will " +"not be installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9372 +msgid "<literal>PkgIsInstalled</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9375 +msgid "" +"The style of packages which are currently installed and for which no actions " +"are scheduled." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9381 +msgid "<literal>PkgIsInstalledHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9382 +msgid "<literal>set bold; flip reverse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9384 +msgid "" +"The style of highlighted packages which are currently installed and for " +"which no actions are scheduled." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9391 +msgid "<literal>PkgToDowngrade</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9395 +msgid "The style of packages in the package list which will be downgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9401 +msgid "<literal>PkgToDowngradeHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9402 +msgid "<literal>set bold; flip reverse</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9405 +msgid "" +"The style of highlighted packages in the package list which will be " +"downgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9411 +msgid "<literal>PkgToHold</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9412 +msgid "<literal>fg white; flip reverse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9414 +msgid "" +"The style of packages in the package list which are <link " +"linkend='pkgCmdHold'>on hold</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9420 +msgid "<literal>PkgToHoldHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9421 +msgid "<literal>fg white;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9423 +msgid "" +"The style of highlighted packages in the package list which are <link " +"linkend='pkgCmdHold'>on hold</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9430 +msgid "<literal>PkgToInstall</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9431 +msgid "<literal>fg green; flip reverse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9433 +msgid "" +"The style of packages in the package list which are being <link " +"linkend='pkgCmdInstall'>installed</link> (not upgraded) or <link " +"linkend='pkgCmdReinstall'>reinstalled</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9442 +msgid "<literal>PkgToInstallHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9443 +msgid "<literal>fg green;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9445 +msgid "" +"The style of highlighted packages in the package list which are being <link " +"linkend='pkgCmdInstall'>installed</link> (not upgraded) or <link " +"linkend='pkgCmdReinstall'>reinstalled</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9454 +msgid "<literal>PkgToRemove</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9455 +msgid "<literal>fg magenta; flip reverse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9457 +msgid "" +"The style of packages in the package list which will be <link " +"linkend='pkgCmdRemove'>removed</link> or <link linkend='pkgCmdPurge'>purged</" +"link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9464 +msgid "<literal>PkgToRemoveHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9465 +msgid "<literal>fg magenta;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9467 +msgid "" +"The style of highlighted packages in the package list which will be <link " +"linkend='pkgCmdRemove'>removed</link> or <link linkend='pkgCmdPurge'>purged</" +"link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9475 +msgid "<literal>PkgToUpgrade</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9476 +msgid "<literal>fg cyan; flip reverse;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9478 +msgid "The style of packages in the package list which will be upgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9484 +msgid "<literal>PkgToUpgradeHighlighted</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9485 +msgid "<literal>fg cyan;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9487 +msgid "" +"The style of highlighted packages in the package list which will be upgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9493 +msgid "<literal>Progress</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9496 +msgid "" +"The style of progress indicators such as the one that appears while the " +"package cache is being loaded." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9503 +msgid "<literal>SolutionActionApproved</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9504 +msgid "<literal>bg green;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9506 +msgid "The style of approved actions in a solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9511 +msgid "<literal>SolutionActionRejected</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9512 +msgid "<literal>bg red;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9514 +msgid "The style of rejected actions in a solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9519 +msgid "<literal>Status</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9522 +msgid "The style of status lines at the bottom of the screen." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9528 +msgid "<literal>TreeBackground</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9531 +msgid "The basic color of all visual lists and trees." +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9536 +msgid "<literal>TrustWarning</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9537 +msgid "<literal>fg red; bg black; set bold;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><figure><informaltable><tgroup><tbody><row><entry> +#: en/aptitude.xml:9539 +msgid "" +"The color used to display warnings about <link linkend='secTrust'>package " +"trust</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:9550 +msgid "Customizing the display layout" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:9553 +msgid "" +"It is possible to rearrange the &aptitude; package list by making suitable " +"modifications to the <link linkend='secConfigFile'>configuration file</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:9559 +msgid "Display elements" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9562 +msgid "" +"The layout is stored in the configuration group <literal>Aptitude::UI::" +"Default-Package-View</literal>, and consists of a list of display elements:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><synopsis> +#: en/aptitude.xml:9567 +msgid "" +"<replaceable>Name</replaceable> <replaceable>Type</replaceable> { Row " +"<replaceable>row</replaceable>; Column <replaceable>column</replaceable>; " +"Width <replaceable>width</replaceable>; Height <replaceable>height</" +"replaceable>; <replaceable>additional options...</replaceable> };" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9577 +msgid "" +"This creates a display element named <replaceable>Name</replaceable>; the " +"type of element created is determined by <replaceable>Type</replaceable>. " +"The <literal><link linkend='layoutRow'>Row</link></literal>, <literal><link " +"linkend='layoutColumn'>Column</link></literal>, <literal><link " +"linkend='layoutWidth'>Width</link></literal>, and <literal><link " +"linkend='layoutHeight'>Height</link></literal> options must be present; they " +"determine where the display element is placed. (see <link " +"linkend='secWidgetPlacement'>below</link> for a detailed explanation of how " +"display elements are arranged)" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9594 +msgid "" +"For examples of how to change the display layout, see the <link " +"linkend='secThemes'>theme</link> definitions in the file <filename>/usr/" +"share/aptitude/aptitude-defaults</filename>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9601 +msgid "The following types of display elements are available:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9607 +msgid "<literal>Description</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9611 +msgid "" +"This display element will contain the <quote>information area</quote> " +"(typically a description of the currently selected package)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9617 +msgid "" +"The option <literal><link linkend='layoutPopUpDownKey'>PopUpDownKey</link></" +"literal> gives the name of a keyboard command which will cause the display " +"element to be shown or hidden. For instance, setting this to <literal><link " +"linkend='keyShowHideDescription'>ShowHideDescription</link></literal> will " +"give the current display element the same behavior as the default " +"information area. The option <literal><link " +"linkend='layoutPopUpDownKey'>PopUpDownLinked</link></literal> gives the name " +"of another display element; the current element will be shown or hidden " +"whenever the other element is." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9635 +msgid "<literal>MainWidget</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9639 +msgid "" +"This is a placeholder for the <quote>main</quote> display element: typically " +"this is the list of packages. A display layout must contain exactly one " +"<literal>MainWidget</literal> element: no more, no less." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9649 +msgid "<literal>Static</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9653 +msgid "" +"A region of the screen which displays some text, possibly containing " +"formatting codes as described in <xref linkend='secDisplayFormat'/>. The " +"text to display can be given in the <literal><link " +"linkend='layoutColumns'>Columns</link></literal> option, or it can be stored " +"in another configuration variable specified by the <literal><link " +"linkend='layoutColumnsCfg'>ColumnsCfg</link></literal> option. The color of " +"the text is determined by the color named by the <literal><link " +"linkend='layoutColor'>Color</link></literal> option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9667 +msgid "" +"<literal>Static</literal> items can be displayed and hidden in the same way " +"as <literal><link linkend='layoutDescription'>Description</link></literal> " +"items, using the <literal><link linkend='layoutPopUpDownKey'>PopUpDownKey</" +"link></literal> and <literal><link " +"linkend='layoutPopUpDownLinked'>PopUpDownLinked</link></literal> options." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:9682 +msgid "Placement of display elements" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9685 +msgid "" +"The display elements are arranged in a <quote>table</quote>. The upper-left " +"corner of an element is in the cell given by its <literal><link " +"linkend='layoutRow'>Row</link></literal> and <literal><link " +"linkend='layoutColumn'>Column</link></literal> options (typically starting " +"from row 0 and column 0, but this is not required). The width of an element " +"in cells is given by its <literal><link linkend='layoutWidth'>Width</link></" +"literal> option, and its height is given by its <literal><link " +"linkend='layoutHeight'>Height</link></literal> option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9701 +msgid "" +"Once the display elements are arranged and have been given an initial amount " +"of space on the screen, there is likely to be space left over. If there is " +"extra vertical space, each row containing a display element whose " +"<literal><link linkend='layoutRowExpand'>RowExpand</link></literal> option " +"is <literal>true</literal> will be allocated a share of the extra space; " +"similarly, if there is extra horizontal space, each column containing a " +"display element whose <literal><link linkend='layoutColExpand'>ColExpand</" +"link></literal> option is <literal>true</literal> will be allocated a share " +"of the extra space." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9716 +msgid "" +"In the event that there is not enough space, every row and column whose " +"widgets <emphasis>all</emphasis> have their <literal><link " +"linkend='layoutRowShrink'>RowShrink</link></literal> or <literal><link " +"linkend='layoutColShrink'>ColShrink</link></literal> options set to " +"<literal>true</literal> will be shrunk. If this is not enough, all rows and " +"columns are shrunk to fit into the available space." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9728 +msgid "" +"If a display element is not expanded, but its row or column is, its " +"alignment is determined by the <literal><link " +"linkend='layoutRowAlign'>RowAlign</link></literal> and <literal><link " +"linkend='layoutColAlign'>ColAlign</link></literal> options. Setting them to " +"<literal>Left</literal>, <literal>Right</literal>, <literal>Top</literal>, " +"<literal>Bottom</literal>, or <literal>Center</literal> will tell &aptitude; " +"where to place the element within the row or column." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9741 +msgid "" +"For instance, the following configuration group creates a static element " +"named <quote><literal>Header</literal></quote>, which is three cells wide " +"and will expand horizontally but not vertically. It has the same color as " +"other header lines and uses the standard display format for header lines:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><screen> +#: en/aptitude.xml:9749 +#, no-wrap +msgid "" +"Header Static {\n" +" Row 0;\n" +" Column 0;\n" +" Width 3;\n" +" Height 1;\n" +"\n" +" ColExpand true;\n" +" ColAlign Center;\n" +"\n" +" RowAlign Center;\n" +"\n" +" Color ScreenHeaderColor;\n" +" ColumnsCfg HEADER;\n" +"};" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:9766 +msgid "Display layout option reference" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:9769 +msgid "The following options are available for display elements:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9774 +msgid "" +"<literal>ColAlign</literal> <replaceable>alignment</replaceable><literal>;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9779 +msgid "" +"<replaceable>alignment</replaceable> must be either <literal>Left</literal>, " +"<literal>Right</literal>, or <literal>Center</literal>. If the row " +"containing the current display element is wider than the element itself and " +"<literal><link linkend='layoutColExpand'>ColExpand</link></literal> is " +"<literal>false</literal>, the element will be placed within the row " +"according to the value of <replaceable>alignment</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9791 +msgid "If this option is not present, it defaults to <literal>Left</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9798 +msgid "" +"<literal>ColExpand</literal> <literal>true</literal>|<literal>false;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9803 +msgid "" +"If this option is set to <literal>true</literal>, the column containing this " +"display element will be allocated a share of any extra horizontal space that " +"is available." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9810 en/aptitude.xml:9857 en/aptitude.xml:10029 +#: en/aptitude.xml:10052 +msgid "If this option is not present, it defaults to <literal>false</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9817 +msgid "" +"<literal>Color</literal> <replaceable>colorname</replaceable><literal>;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9822 +msgid "" +"This option applies to <literal><link linkend='layoutStatic'>Static</link></" +"literal> elements. <replaceable>colorname</replaceable> is the name of a " +"color (for instance, <literal><link " +"linkend='colorScreenStatusColor'>ScreenStatusColor</link></literal>) which " +"should be used as the <quote>default</quote> color for this display element." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9832 +msgid "" +"If this option is not present, it defaults to <literal><link " +"linkend='colorDefaultWidgetBackground'>DefaultWidgetBackground</link></" +"literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9840 +msgid "" +"<literal>ColShrink</literal> <literal>true</literal>|<literal>false;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9845 +msgid "" +"If this option is set to <literal>true</literal> on each element in a column " +"and there is not enough horizontal space, the column will be shrunk as " +"necessary to fit the available space. Note that a column may be shrunk even " +"if <literal>ColShrink</literal> is <literal>false</literal>; it simply " +"indicates that &aptitude; should try shrinking a particular column before " +"shrinking other columns." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9864 +msgid "" +"<literal>Column</literal> <replaceable>column</replaceable><literal>;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9868 +msgid "" +"Specifies the leftmost <replaceable>column</replaceable> containing this " +"display element." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9876 +msgid "" +"<literal>Columns</literal> <replaceable>format</replaceable><literal>;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9880 +msgid "" +"This option applies to <literal><link linkend='layoutStatic'>Static</link></" +"literal> display elements for which the <literal><link " +"linkend='layoutColumnsCfg'>ColumnsCfg</link></literal> option is not set. " +"It sets the displayed contents of the status item; it is a format string as " +"described in <xref linkend='secDisplayFormat'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9892 +msgid "" +"<literal>ColumnsCfg</literal> <literal>HEADER</literal>|<literal>STATUS</" +"literal>|<replaceable>name</replaceable><literal>;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9896 +msgid "" +"This option applies to <literal><link linkend='layoutStatic'>Static</link></" +"literal> display elements. It sets the display format of the current " +"element to the value of another configuration variable: if it is " +"<literal>HEADER</literal> or <literal>STATUS</literal>, the options " +"<literal><link linkend='configPackage-Header-Format'>Aptitude::UI::Package-" +"Header-Format</link></literal> and <literal><link linkend='configPackage-" +"Status-Format'>Aptitude::UI::Package-Status-Format</link></literal>, " +"repectively, are used; otherwise, the option <replaceable>name</replaceable> " +"is used." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9912 +msgid "" +"If this option is not present, the value of the <literal><link " +"linkend='layoutColumns'>Columns</link></literal> option is used to control " +"the contents of the static item." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9921 +msgid "" +"<literal>Height</literal> <replaceable>height</replaceable><literal>;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9926 +msgid "" +"Specifies the <replaceable>height</replaceable> of the current display " +"element." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9933 +msgid "" +"<literal>PopUpDownKey</literal> <replaceable>command</replaceable><literal>;" +"</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9938 en/aptitude.xml:9962 +msgid "" +"This option applies to <literal><link " +"linkend='layoutDescription'>Description</link></literal> and <literal><link " +"linkend='layoutStatic'>Static</link></literal> display elements." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9946 +msgid "" +"<replaceable>command</replaceable> is the name of a keyboard command (for " +"instance, <literal><link " +"linkend='keyShowHideDescription'>ShowHideDescription</link></literal>). " +"When this key is pressed, the display element will be hidden if it is " +"visible, and displayed if it is hidden." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9957 +msgid "<literal>PopUpDownLinked <replaceable>element</replaceable>;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9970 +msgid "" +"<replaceable>element</replaceable> is the name of a display element. When " +"<replaceable>element</replaceable> is displayed, the current element will " +"also be displayed; when <replaceable>element</replaceable> is hidden, the " +"current element will also be hidden." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9981 +msgid "" +"<literal>Row</literal> <replaceable>row</replaceable><literal>;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9985 +msgid "" +"Specifies the uppermost <replaceable>row</replaceable> containing this " +"display element." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:9993 +msgid "" +"<literal>RowAlign</literal> <replaceable>alignment</replaceable><literal>;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:9998 +msgid "" +"<replaceable>alignment</replaceable> must be either <literal>Top</literal>, " +"<literal>Bottom</literal>, or <literal>Center</literal>. If the row " +"containing the current display element is taller than the element itself and " +"<literal><link linkend='layoutRowExpand'>RowExpand</link></literal> is " +"<literal>false</literal>, the element will be placed within the row " +"according to the value of <replaceable>alignment</replaceable>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:10010 +msgid "If this option is not present, it defaults to <literal>Top</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:10017 +msgid "" +"<literal>RowExpand</literal> <literal>true</literal>|<literal>false;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:10022 +msgid "" +"If this option is set to <literal>true</literal>, the row containing this " +"display element will be allocated a share of any extra vertical space that " +"is available." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:10036 +msgid "" +"<literal>RowShrink</literal> <literal>true</literal>|<literal>false;</" +"literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:10041 +msgid "" +"If this option is set to <literal>true</literal> on each element in a row " +"and there is not enough vertical space, the row will be shrunk as necessary " +"to fit the available space. Note that a row may be shrunk even if " +"<literal>RowShrink</literal> is <literal>false</literal>; it simply " +"indicates that &aptitude; should try shrinking a particular row before " +"shrinking other rows." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:10059 +msgid "<literal>Visible true|false;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:10063 +msgid "" +"If set to <literal>false</literal>, this display element will initially be " +"hidden. Presumably only useful in conjunction with <literal><link " +"linkend='layoutPopUpDownKey'>PopUpDownKey</link></literal> and/or " +"<literal><link linkend='layoutPopUpDownLinked'>PopUpDownLinked</link></" +"literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:10072 +msgid "If this option is not present, it defaults to <literal>true</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:10079 +msgid "" +"<literal>Width</literal> <replaceable>width</replaceable><literal>;</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:10084 +msgid "" +"Specifies the <replaceable>width</replaceable> of the current display " +"element." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:10094 +msgid "Configuration file reference" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:10097 +msgid "Configuration file format" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:10100 +msgid "" +"In its basic form, &aptitude;'s configuration file is a list of options and " +"their values. Each line of the file should have the form " +"<quote><replaceable>Option</replaceable> <replaceable>Value</" +"replaceable><literal>;</literal></quote>: for instance, the following line " +"in the configuration file sets the option <literal><link " +"linkend='configTheme'>Aptitude::Theme</link></literal> to " +"<quote><literal>Dselect</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><screen> +#: en/aptitude.xml:10111 +#, no-wrap +msgid "Aptitude::Theme \"Dselect\";" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:10114 +msgid "" +"An option can <quote>contain</quote> other options if they are written in " +"curly braces between the option and the semicolon following it, like this:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><screen> +#: en/aptitude.xml:10119 +#, no-wrap +msgid "" +"Aptitude::UI {\n" +" Package-Status-Format \"\";\n" +" Package-Display-Format \"\";\n" +"};" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:10125 +msgid "" +"An option that contains other options is sometimes called a " +"<firstterm>group</firstterm>. In fact, the double colons that appear in " +"option names are actually a shorthand way of indicating containment: the " +"option <literal>Aptitude::UI::Default-Grouping</literal> is contained in the " +"group <literal>Aptitude::UI</literal>, which itself is contained in the " +"group <literal>Aptitude</literal>. Thus, if you wanted to, you could set " +"this option to <literal>\"\"</literal> as follows:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><screen> +#: en/aptitude.xml:10136 +#, no-wrap +msgid "" +"Aptitude {\n" +" UI {\n" +" Default-Grouping \"\";\n" +" };\n" +"};" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:10143 +msgid "" +"For more information on the format of the configuration file, see the manual " +"page <citerefentry><refentrytitle>apt.conf</refentrytitle><manvolnum>5</" +"manvolnum></citerefentry>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:10150 +msgid "Locations of configuration files" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:10153 +msgid "" +"&aptitude;'s configuration is read from the following sources, in order:" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:10160 +msgid "" +"The user's configuration file, <filename>~/.aptitude/config</filename>. " +"This file is overwritten when the user modifies settings in the <link " +"linkend='secOptionsMenu'>Options menu</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:10169 +msgid "The system configuration file, <filename>/etc/apt/apt.conf</filename>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:10176 +msgid "" +"Default values stored in <filename>/usr/share/aptitude/aptitude-defaults</" +"filename>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><orderedlist><listitem><para> +#: en/aptitude.xml:10183 +msgid "Default values built into &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:10189 +msgid "" +"When an option is being checked, these sources are searched in order, and " +"the first one that provides a value for the option is used. For instance, " +"setting an option in <filename>/etc/apt/apt.conf</filename> will override " +"&aptitude;'s defaults for that option, but will not override user settings " +"in <filename>~/.aptitude/config</filename>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><title> +#: en/aptitude.xml:10200 +msgid "Available configuration options" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><para> +#: en/aptitude.xml:10203 +msgid "" +"The following configuration options are used by &aptitude;. Note that these " +"are not the only available configuration options; options used by the " +"underlying &apt; system are not listed here. See the manual pages " +"<citerefentry><refentrytitle>apt</refentrytitle><manvolnum>8</manvolnum></" +"citerefentry> and <citerefentry><refentrytitle>apt.conf</" +"refentrytitle><manvolnum>5</manvolnum></citerefentry> for information on " +"&apt; options." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><segtitle> +#: en/aptitude.xml:10216 +msgid "Option" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10221 +msgid "<literal>Apt::Install-Recommends</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10222 en/aptitude.xml:10280 en/aptitude.xml:10290 +#: en/aptitude.xml:10662 en/aptitude.xml:10688 en/aptitude.xml:10969 +#: en/aptitude.xml:11067 en/aptitude.xml:11466 en/aptitude.xml:11629 +#: en/aptitude.xml:11661 en/aptitude.xml:11726 en/aptitude.xml:11741 +#: en/aptitude.xml:11779 en/aptitude.xml:11791 en/aptitude.xml:11871 +#: en/aptitude.xml:11957 en/aptitude.xml:11982 en/aptitude.xml:11995 +msgid "<literal>true</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10225 +msgid "" +"If this option is <literal>true</literal> and <literal>Aptitude::Auto-" +"Install</literal> is <literal>true</literal>, then whenever you mark a " +"package for installation, &aptitude; will also mark the packages it " +"recommends for installation. Furthermore, if this option is <literal>true</" +"literal>, &aptitude; will not consider packages to be unused (and thus will " +"not automatically remove them) as long as any installed package reommends " +"them. For more information, see <xref linkend='secAutoInstall'/> and <xref " +"linkend='secImmediateResolution'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10241 +msgid "<literal>Aptitude::Allow-Null-Upgrade</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10242 en/aptitude.xml:10256 en/aptitude.xml:10269 +#: en/aptitude.xml:10301 en/aptitude.xml:10313 en/aptitude.xml:10325 +#: en/aptitude.xml:10338 en/aptitude.xml:10352 en/aptitude.xml:10364 +#: en/aptitude.xml:10377 en/aptitude.xml:10426 en/aptitude.xml:10451 +#: en/aptitude.xml:10466 en/aptitude.xml:10484 en/aptitude.xml:10501 +#: en/aptitude.xml:10514 en/aptitude.xml:10540 en/aptitude.xml:10552 +#: en/aptitude.xml:10569 en/aptitude.xml:10589 en/aptitude.xml:10618 +#: en/aptitude.xml:10701 en/aptitude.xml:10715 en/aptitude.xml:10756 +#: en/aptitude.xml:10775 en/aptitude.xml:10798 en/aptitude.xml:10815 +#: en/aptitude.xml:10998 en/aptitude.xml:11446 en/aptitude.xml:11484 +#: en/aptitude.xml:11502 en/aptitude.xml:11562 en/aptitude.xml:11589 +#: en/aptitude.xml:11605 en/aptitude.xml:11646 en/aptitude.xml:11755 +#: en/aptitude.xml:11767 en/aptitude.xml:11805 en/aptitude.xml:11831 +#: en/aptitude.xml:11842 en/aptitude.xml:11858 +msgid "<literal>false</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10244 +msgid "" +"Normally, if you try to start an install run when no actions will be " +"performed, &aptitude; will print a warning and return to the package list. " +"If this option is <literal>true</literal>, &aptitude; will continue to the " +"preview screen whenever there are upgradable packages, rather than " +"displaying a reminder about the &actions-upgrade; command." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10255 +msgid "<literal>Aptitude::Always-Use-Safe-Resolver</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10259 +msgid "" +"If this option is <literal>true</literal>, aptitude's command-line actions " +"will always use a <quote>safe</quote> dependency resolver, as if <link " +"linkend='cmdlineSafeResolver'><literal>--safe-resolver</literal></link> had " +"been passed on the command line." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10268 +msgid "<literal>Aptitude::Autoclean-After-Update</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10271 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will clean up obsolete " +"files (see <link linkend='menuCleanObs'>&actions-clean-obs;</link>) every " +"time you update the package list." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10279 +msgid "<literal>Aptitude::Auto-Fix-Broken</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10282 +msgid "" +"If this option is <literal>false</literal>, &aptitude; will ask for " +"permission before attempting to fix any broken packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10289 +msgid "<literal>Aptitude::Auto-Install</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10292 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will automatically " +"attempt to fulfill the dependencies of a package when you select it for " +"installation." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10300 +msgid "<literal>Aptitude::Auto-Upgrade</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10303 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will automatically " +"flag all upgradable packages for upgrade when the program starts, as if you " +"had issued the command <link linkend='menuUpgrade'>&actions-upgrade;</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10312 +msgid "<literal>Aptitude::CmdLine::Always-Prompt</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10315 +msgid "" +"In command-line mode, if this is set, &aptitude; will always prompt before " +"starting to install or remove packages, even if the prompt would normally be " +"skipped. This is equivalent to the <literal>-P</literal> command-line " +"option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10324 +msgid "<literal>Aptitude::CmdLine::Assume-Yes</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10327 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, &aptitude; " +"will act as if the user had answered <quote>yes</quote> to every prompt, " +"causing most prompts to be skipped. This is equivalent to the <literal>-y</" +"literal> command-line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10337 +msgid "<literal>Aptitude::CmdLine::Disable-Columns</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10340 +msgid "" +"If this option is enabled, the results of command-line searches (performed " +"via <literal>aptitude search</literal>) will not be formatted into fixed-" +"width columns or truncated to the screen width. This is equivalent to the " +"<link linkend='cmdlineOptionDisableColumns'><literal>--disable-columns</" +"literal></link> command-line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10351 +msgid "<literal>Aptitude::CmdLine::Download-Only</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10354 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, &aptitude; " +"will download package files but not install them. This is equivalent to the " +"<literal>-d</literal> command-line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10363 +msgid "<literal>Aptitude::CmdLine::Fix-Broken</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10366 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, &aptitude; " +"will be more aggressive when attempting to fix the dependencies of broken " +"packages. This is equivalent to the <literal>-f</literal> command-line " +"option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10376 +msgid "<literal>Aptitude::CmdLine::Ignore-Trust-Violations</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10379 +msgid "" +"In command-line mode, causes &aptitude; to ignore the installation of <link " +"linkend='secTrust'>untrusted packages</link>. This is a synonym for " +"<literal>Apt::Get::AllowUnauthenticated</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10387 +msgid "<literal>Aptitude::CmdLine::Package-Display-Format</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10388 +msgid "<literal>%c%a%M %p# - %d#</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10391 +msgid "" +"This is a format string, as described in <xref linkend='secDisplayFormat'/>, " +"which is used to display the results of a command-line search. This is " +"equivalent to the <literal>-F</literal> command-line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10400 +msgid "<literal>Aptitude::CmdLine::Package-Display-Width</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10403 +msgid "" +"This option gives the width in characters for which command-line search " +"results should be formatted. If it is empty (the default; ie, <literal>" +"\"\"</literal>), search results will be formatted for the current terminal " +"size, or for an 80-column display if the terminal size cannot be determined." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10414 +msgid "<literal>Aptitude::CmdLine::Request-Strictness</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10415 en/aptitude.xml:11301 +msgid "<literal>10000</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10417 +msgid "" +"When run in command-line mode, if dependency problems are encountered, " +"&aptitude; will add this value to the problem resolver score of each action " +"that you explicitly request." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10425 +msgid "<literal>Aptitude::CmdLine::Resolver-Debug</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10428 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, &aptitude; " +"will print extremely verbose information while attempting to resolve broken " +"dependencies. As the name suggests, this option is primarily meant to aid " +"in debugging the problem resolver." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10438 +msgid "<literal>Aptitude::CmdLine::Resolver-Dump</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10441 +msgid "" +"In command-line mode, if it is necessary to resolve broken dependencies and " +"this option is set to the name of a writable file, the resolver state will " +"be dumped to this file before any calculations are undertaken." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10449 +msgid "<literal>Aptitude::CmdLine::Resolver-Show-Steps</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10453 +msgid "" +"If this option is <literal>true</literal>, then a dependency solution will " +"be displayed as a sequence of resolutions of individual dependencies; for " +"instance, <quote><literal>wesnoth depends upon wesnoth-data (= 1.2.4-1) -> " +"installing wesnoth-data 1.2.4-1 (unstable)</literal></quote>. To toggle " +"between the two display modes, press <keycap>o</keycap> at the prompt " +"<quote><literal>Accept this solution?</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10465 +msgid "<literal>Aptitude::CmdLine::Safe-Upgrade::No-New-Installs</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10468 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, the <link " +"linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link> command " +"will not attempt to resolve dependencies by installing new packages. If " +"upgrading package <replaceable>A</replaceable> would require package " +"<replaceable>B</replaceable> to be newly installed, package <replaceable>A</" +"replaceable> will not be upgraded. This corresponds to the command-line " +"option <literal><link linkend='cmdlineOptionSafeUpgradeNoNewInstalls'>--no-" +"new-installs</link></literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10483 +msgid "" +"<literal>Aptitude::CmdLine::Safe-Upgrade::Show-Resolver-Actions</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10486 +msgid "" +"If this option is enabled, the <link " +"linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link> command " +"will display an explanation of the actions taken by the resolver before " +"showing the installation preview. This option is similar to <link " +"linkend='configSafe-Resolver-Show-Resolver-Actions'><literal>Aptitude::Safe-" +"Resolver::Show-Resolver-Actions</literal></link>, but only applies to the " +"<link linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link> " +"command. Equivalent to the command-line option <link " +"linkend='cmdlineOptionShowResolverActions'><literal>--show-resolver-actions</" +"literal></link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10500 +msgid "<literal>Aptitude::CmdLine::Show-Deps</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10503 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, &aptitude; " +"will display a brief summary of the dependencies (if any) relating to a " +"package's state. This is equivalent to the <literal>-D</literal> command-" +"line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10513 +msgid "<literal>Aptitude::CmdLine::Show-Size-Changes</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10516 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, &aptitude; " +"will display the expected change in the amount of space used by each " +"package. This is equivalent to the <literal>-Z</literal> command-line " +"option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10525 +msgid "<literal>Aptitude::CmdLine::Why-Display-Mode</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10526 +msgid "<literal>no-summary</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10528 +msgid "" +"This option sets the default value of the command-line argument <link " +"linkend='cmdlineOptionShowSummary'><literal>--show-summary</literal></" +"link>. See the documentation of <link " +"linkend='cmdlineOptionShowSummary'><literal>--show-summary</literal></link> " +"for a list of the allowed values of this option and their meanings." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10539 +msgid "<literal>Aptitude::CmdLine::Show-Versions</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10542 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, &aptitude; " +"will display the version of a package that is being installed or removed. " +"This is equivalent to the <literal>-V</literal> command-line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10551 +msgid "<literal>Aptitude::CmdLine::Show-Why</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10554 +msgid "" +"In command-line mode, if this option is <literal>true</literal>, &aptitude; " +"will display the manually installed packages that require each automatically " +"installed package, or the manually installed packages that cause a conflict " +"with each automatically removed package. This is equivalent to the " +"<literal>-W</literal> command-line option and displays the same information " +"you can access via <literal>aptitude why</literal> or by pressing <keycap>i</" +"keycap> in a package list." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10568 +msgid "<literal>Aptitude::Safe-Resolver::Show-Resolver-Actions</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10571 +msgid "" +"If this option is enabled, then when the <quote>safe</quote> dependency " +"resolver has been activated via <link " +"linkend='cmdlineSafeResolver'><literal>--safe-resolver</literal></link>, it " +"will display a summary of the actions taken by the resolver before showing " +"the installation preview. This option is similar to <link " +"linkend='configCmdLine-Safe-Upgrade-Show-Resolver-" +"Actions'><literal>Aptitude::Safe-Upgrade::Show-Resolver-Actions</literal></" +"link>, but only applies to command-line actions other than <link " +"linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link>. " +"Equivalent to the command-line option <link " +"linkend='cmdlineOptionShowResolverActions'><literal>--show-resolver-actions</" +"literal></link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10588 +msgid "<literal>Aptitude::CmdLine::Simulate</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10591 +msgid "" +"<emphasis>This option is deprecated; use <literal><link " +"linkend='configSimulate'>Aptitude::Simulate</link></literal> instead.</" +"emphasis> In command-line mode, causes &aptitude; to just display the " +"actions that would be performed (rather than actually performing them); in " +"the visual interface, causes &aptitude; to start in read-only mode " +"regardless of whether you are &root; or not. This is equivalent to the " +"<literal>-s</literal> command-line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10605 +msgid "<literal>Aptitude::CmdLine::Verbose</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10606 en/aptitude.xml:11192 en/aptitude.xml:11240 +#: en/aptitude.xml:11422 en/aptitude.xml:12030 +msgid "<literal>0</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10608 +msgid "" +"This controls how verbose the command-line mode of &aptitude; is. Every " +"occurrence of the <literal>-v</literal> command-line option adds 1 to this " +"value." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10616 +msgid "<literal>Aptitude::CmdLine::Visual-Preview</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10621 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will enter its visual " +"mode to display the preview of an installation run and to download packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10629 +msgid "<literal>Aptitude::Debtags-Binary</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10630 +msgid "<literal>/usr/bin/debtags</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10633 +msgid "" +"The absolute path to the <systemitem>debtags</systemitem> command. If " +"configured with <systemitem>libept</systemitem> support, &aptitude; will " +"invoke this program whenever the package lists are updated, passing it the " +"arguments listed in <link linkend='configDebtags-Update-Options'>Aptitude::" +"Debtags-Update-Options</link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10644 +msgid "<literal>Aptitude::Debtags-Update-Options</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10645 +msgid "<literal>--local</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10648 +msgid "" +"Additional options to pass to <literal>debtags update</literal> when " +"invoking it after the package lists are updated. These are split at " +"whitespace; single and double-quoted strings are recognized, so setting this " +"to <quote><literal>--vocabulary='/file with a space</literal></quote> will " +"store the <systemitem>debtags</systemitem> vocabulary in <quote><filename>/" +"file with a space</filename></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10661 +msgid "<literal>Aptitude::Delete-Unused</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10664 +msgid "" +"If this option is <literal>true</literal>, automatically installed packages " +"which are no longer required will be automatically removed. For more " +"information, see <xref linkend='secAutoInstall'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10673 +msgid "<literal>Aptitude::Delete-Unused-Pattern</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10676 +msgid "" +"Deprecated alias for <literal><link linkend='configKeep-Unused-" +"Pattern'>Aptitude::Keep-Unused-Pattern</link></literal>. If " +"<literal>Aptitude::Keep-Unused-Pattern</literal> is unset or set to an empty " +"string, the value of this configuration option will override it. Otherwise, " +"<literal>Aptitude::Delete-Unused-Pattern</literal> is ignored." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10687 +msgid "<literal>Aptitude::Display-Planned-Action</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10691 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will display a preview " +"screen before actually carrying out the actions you have requested." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10699 +msgid "<literal>Aptitude::Forget-New-On-Install</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10704 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will clear the list of " +"new packages whenever you install, upgrade, or remove packages, as if you " +"had issued the command &actions-forget;." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10713 +msgid "<literal>Aptitude::Forget-New-On-Update</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10718 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will clear the list of " +"new packages whenever the package list is updated, as if you had issued the " +"command &actions-forget;." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10726 +msgid "<literal>Aptitude::Get-Root-Command</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10728 +msgid "<literal>su:/usr/bin/su</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10731 +msgid "" +"This option sets the external command that &aptitude; will use to switch to " +"the &root; user (see <xref linkend='secBecomingRoot'/>). It has the form " +"<literal><replaceable>protocol</replaceable>:<replaceable>command</" +"replaceable></literal>. <replaceable>protocol</replaceable> must be either " +"<literal>su</literal> or <literal>sudo</literal>; it determines how aptitude " +"invokes the program when it wants to gain root privileges. If " +"<replaceable>protocol</replaceable> is <literal>su</literal>, then " +"<literal><replaceable>command</replaceable> -c <replaceable>arguments</" +"replaceable></literal> is used to become root; otherwise, aptitude uses " +"<literal><replaceable>command</replaceable> <replaceable>arguments</" +"replaceable></literal>. The first word in <replaceable>command</" +"replaceable> is the name of the program that should be invoked; remaining " +"words are treated as arguments to that program." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10754 +msgid "<literal>Aptitude::Ignore-Old-Tmp</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10759 +msgid "" +"Old versions of &aptitude; created a directory <filename>~/.aptitude/.tmp</" +"filename> which is no longer necessary. If the directory exists and " +"<literal>Aptitude::Ignore-Old-Tmp</literal> is <literal>true</literal>, " +"&aptitude; will ask you whether to remove this directory. This option is " +"automatically set to <literal>true</literal> after you reply. On the other " +"hand, if the directory does not exist, this option is set to <literal>false</" +"literal> so that you will be notified if it reappears." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10773 +msgid "<literal>Aptitude::Ignore-Recommends-Important</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10778 +msgid "" +"In previous versions of aptitude, the setting <literal>Aptitude::Recommends-" +"Important</literal> caused recommendations to be installed automatically, " +"the same way that <literal><link linkend='configAptInstall-Recommends'>Apt::" +"Install-Recommends</link></literal> does today. If this option is set to " +"<literal>false</literal> and <literal>Aptitude::Recommends-Important</" +"literal> is also set to <literal>false</literal>, aptitude will set " +"<literal><link linkend='configAptInstall-Recommends'>Apt::Install-" +"Recommends</link></literal> to <literal>false</literal> and set " +"<literal>Aptitude::Ignore-Recommends-Important</literal> to <literal>true</" +"literal> on startup." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10796 +msgid "<literal>Aptitude::Keep-Recommends</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10801 +msgid "" +"If this option is <literal>true</literal>, then &aptitude; will not consider " +"packages to be unused (and thus will not automatically remove them) as long " +"as any installed package recommends them, even if <literal><link " +"linkend='configAptInstall-Recommends'>Apt::Install-Recommends</link></" +"literal> is <literal>false</literal>. For more information, see <xref " +"linkend='secAutoInstall'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10813 +msgid "<literal>Aptitude::Keep-Suggests</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10818 +msgid "" +"If this option is <literal>true</literal>, then &aptitude; will not consider " +"packages to be unused (and thus will not automatically remove them) as long " +"as any installed package suggests them. For more information, see <xref " +"linkend='secAutoInstall'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10827 +msgid "<literal>Aptitude::Keep-Unused-Pattern</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10830 +msgid "" +"If <literal><link linkend='configDelete-Unused'>Aptitude::Delete-Unused</" +"link></literal> is <literal>true</literal>, only unused packages which do " +"not match this pattern (see <xref linkend='secSearchPatterns'/>) will be " +"removed. If this option is set to an empty string (the default), all unused " +"packages will be removed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10841 +msgid "<literal>Aptitude::LockFile</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10843 +msgid "<literal>/var/lock/aptitude</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10846 +msgid "" +"A file that will be fcntl-locked to ensure that at most one &aptitude; " +"process can modify the cache at once. In normal circumstances, you should " +"never need to modify this; it may be useful for debugging. <emphasis>Note</" +"emphasis>: if &aptitude; complains that it cannot acquire a lock, this is " +"<emphasis>not</emphasis> because the lock file needs to be deleted. fcntl " +"locks are managed by the kernel and will be destroyed when the program " +"holding them terminates; failure to acquire the lock means that another " +"running program is using it!" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10861 +msgid "<literal>Aptitude::Log</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10863 +msgid "<filename>/var/log/aptitude</filename>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10866 +msgid "" +"If this is set to a nonempty string, &aptitude; will log the package " +"installations, removals, and upgrades that it performs. If the value of " +"<literal>Aptitude::Log</literal> begins with a pipe character (ie, " +"<quote><literal>|</literal></quote>), the remainder of its value is used as " +"the name of a command into which the log will be piped: for instance, " +"<literal>|mail -s 'Aptitude install run' root</literal> will cause the log " +"to be emailed to &root;. To log to multiple files or commands, you may set " +"this option to a list of log targets." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10881 +msgid "<literal>Aptitude::Logging::Config-File</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10882 +msgid "<filename>/etc/apt/aptitude-log.conf</filename>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#. TODO: the logging system needs its own +#. configuration section, with documentation of the +#. file format, not a link to the library's home +#. page. +#. +#: en/aptitude.xml:10889 +msgid "" +"If this is set to a nonempty string, &aptitude; will read it to configure " +"the logging system; it should be a file in the format of <ulink " +"linkend='http://logging.apache.org/log4cxx/'><literal>log4cxx</literal></" +"ulink>. &aptitude; will periodically re-read the file to see whether any " +"settings have been changed. This differs from the setting <link " +"linkend='configLog'><literal>Aptitude::Log</literal></link>: that file is " +"used to log installations and removals, whereas the logging configured by " +"this file is used to log program events, errors, and debugging messages. " +"This option is equivalent to the command-line argument <link " +"linkend='cmdlineOptionLogConfigFile'><literal>--log-config-file</literal></" +"link>. The options <link linkend='configLoggingFile'><literal>Aptitude::" +"Logging::File</literal></link> and <link " +"linkend='configLoggingLevels'><literal>Aptitude::Logging::Levels</literal></" +"link> provide a simpler, but less flexible, way of configuring logging; they " +"override any settings made in this configuration file." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10914 +msgid "<literal>Aptitude::Logging::File</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10915 +msgid "<filename></filename>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10918 +msgid "" +"If this is set to a nonempty string, &aptitude; will write logging messages " +"to it; setting it to <quote><literal>-</literal></quote> causes logging " +"messages to be printed to standard output. This differs from the setting " +"<link linkend='configLog'><literal>Aptitude::Log</literal></link>: that file " +"is used to log installations and removals, whereas this file is used to log " +"program events, errors, and debugging messages (if enabled). This option is " +"equivalent to the command-line argument <link " +"linkend='cmdlineOptionLogFile'><literal>--log-file</literal></link>. See " +"also <link linkend='configLoggingLevels'><literal>Aptitude::Logging::Levels</" +"literal></link> and <link " +"linkend='configLoggingConfigFile'><literal>Aptitude::Logging::Config-File</" +"literal></link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10938 +msgid "<literal>Aptitude::Logging::Levels</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10939 en/aptitude.xml:11135 +msgid "(empty)" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10941 +msgid "" +"This option is a group whose members control which log messages are " +"written. Each entry is either <quote><replaceable>level</replaceable></" +"quote>, to set the global log level (the log level of the root logger) to " +"the given <replaceable>level</replaceable>, or " +"<quote><literal><replaceable>category</replaceable>:<replaceable>level</" +"replaceable></literal></quote>, where <replaceable>category</replaceable> is " +"the category of messages to modify (such as <literal>aptitude.resolver.hints." +"match</literal>) and <replaceable>level</replaceable> is the lowest log " +"level of messages in that category that should be displayed. Valid log " +"levels are <quote><literal>fatal</literal></quote>, <quote><literal>error</" +"literal></quote>, <quote><literal>warn</literal></quote>, " +"<quote><literal>info</literal></quote>, <quote><literal>debug</literal></" +"quote>, and <quote><literal>trace</literal></quote>. The command-line " +"option <link linkend='cmdlineOptionLogLevel'><literal>--log-level</literal></" +"link> can be used to set or override any log level." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10967 +msgid "<literal>Aptitude::Parse-Description-Bullets</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#. TODO: add an appendix describing +#. the grammar? +#: en/aptitude.xml:10972 +msgid "" +"If this option is enabled, &aptitude; will attempt to automatically detect " +"bulleted lists in package descriptions. This will generally improve how " +"descriptions are displayed, but it is not entirely backwards-compatible; " +"some descriptions might be formatted less attractively when this option is " +"<literal>true</literal> than when it is <literal>false</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10985 +msgid "<literal>Aptitude::Pkg-Display-Limit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10990 +msgid "" +"The default filter applied to the package list; see <xref " +"linkend='secSearchPatterns'/> for details about its format." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:10997 +msgid "<literal>Aptitude::ProblemResolver::Allow-Break-Holds</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11000 +msgid "" +"If this option is set to <literal>true</literal>, the problem resolver will " +"consider breaking package holds or installing forbidden versions in order to " +"resolve a dependency. If it is set to <literal>false</literal>, these " +"actions will be rejected by default, although you can always enable them " +"manually (see <xref linkend='secResolver'/>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11011 +msgid "<literal>Aptitude::ProblemResolver::BreakHoldScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11012 en/aptitude.xml:11258 +msgid "<literal>-300</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11014 +msgid "" +"How much to reward or penalize solutions that change the state of a held " +"package or install a forbidden version. Note that unless <link " +"linkend='configProblemResolver-Allow-Break-Holds'><literal>Aptitude::" +"ProblemResolver::Allow-Break-Holds</literal></link> is set to true, the " +"resolver will never break a hold or install a forbidden version unless it " +"has explicit permission from the user." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11025 +msgid "<literal>Aptitude::ProblemResolver::Break-Hold-Tier</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11026 en/aptitude.xml:11214 +msgid "<literal>50000</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11028 +msgid "" +"The search tier assigned to actions that break a hold set by the user (by " +"upgrading a held package or by installing a forbidden version of a " +"package). See <xref linkend='secDependencyResolutionSearchTiers'/> for a " +"description of how search tiers work." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11037 +msgid "<literal>Aptitude::ProblemResolver::BrokenScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11038 +msgid "<literal>-100</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11040 +msgid "" +"How much to reward or penalize prospective solutions based on the number of " +"dependencies they break. For each dependency broken by a possible solution, " +"this many points are added to its score; typically this should be a negative " +"value." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11049 +msgid "<literal>Aptitude::ProblemResolver::DefaultResolutionScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11050 +msgid "<literal>400</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11052 +msgid "" +"How much to reward or penalize prospective solutions based on how many " +"<quote>default</quote> resolutions for currently unsatisfied dependencies " +"they install. The default resolution is the resolution that " +"<quote><literal>apt-get install</literal></quote> or the <quote><link " +"linkend='secImmediateResolution'>immediate dependency resolver</link></" +"quote> would pick. The score is only applied for dependencies and " +"recommendations whose targets are not currently installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11066 +msgid "<literal>Aptitude::ProblemResolver::Discard-Null-Solution</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11069 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will never suggest " +"cancelling all of your proposed actions in order to resolve a dependency " +"problem." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11076 +msgid "<literal>Aptitude::ProblemResolver::EssentialRemoveScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11077 +msgid "<literal>-100000</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11079 +msgid "" +"How much to reward or penalize solutions that remove an Essential package." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11085 +msgid "<literal>Aptitude::ProblemResolver::Remove-Essential-Tier</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11086 +msgid "<literal>60000</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11088 +msgid "" +"The search tier assigned to actions that remove an Essential package. See " +"<xref linkend='secDependencyResolutionSearchTiers'/> for a description of " +"how search tiers work." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11096 +msgid "<literal>Aptitude::ProblemResolver::ExtraScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11097 +msgid "<literal>-1</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11100 +msgid "" +"Any version of a package whose Priority is <quote>extra</quote> will have " +"this many points added to its score." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11107 +msgid "<literal>Aptitude::ProblemResolver::FullReplacementScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11108 en/aptitude.xml:11577 +msgid "<literal>500</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11111 +msgid "" +"Removing a package and installing another package that fully replaces it (i." +"e., conflicts with it, replaces it, and provides it) is assigned this score." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11118 +msgid "<literal>Aptitude::ProblemResolver::FutureHorizon</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11119 en/aptitude.xml:11290 en/aptitude.xml:11433 +msgid "<literal>50</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11122 +msgid "" +"How many <quote>steps</quote> the resolver should run after finding the " +"first solution. Although &aptitude; attempts to generate better solutions " +"before worse solutions, sometimes it is unable to do so; this setting causes " +"the resolver to briefly continue searching for a better solution before " +"displaying its results, rather than stopping immediately after it finds the " +"first solution." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11134 +msgid "<literal>Aptitude::ProblemResolver::Hints</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11137 +msgid "" +"This option is a group whose members are used to configure the problem " +"resolver. Each item in the group is a string describing an action that " +"should be applied to one or more packages. The syntax for each hint, and " +"the effect that hints have, may be found in <xref " +"linkend='secDependencyResolutionHints'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11147 +msgid "<literal>Aptitude::ProblemResolver::ImportantScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11148 +msgid "<literal>5</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11151 +msgid "" +"Any version of a package whose Priority is <quote>important</quote> will " +"have this many points added to its score." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11158 +msgid "<literal>Aptitude::ProblemResolver::Infinity</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11159 +msgid "<literal>1000000</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11162 +msgid "" +"A <quote>maximum</quote> score for potential solutions. If a set of actions " +"has a score worse than <replaceable>-Infinity</replaceable>, it will be " +"discarded immediately." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11170 +msgid "<literal>Aptitude::ProblemResolver::InstallScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11171 +msgid "<literal>-20</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11173 +msgid "" +"How much weight the problem resolver should give to installing a package, if " +"the package is not already going to be installed." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11180 +msgid "<literal>Aptitude::ProblemResolver::Keep-All-Tier</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11181 +msgid "<literal>20000</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11183 +msgid "" +"The search tier assigned to the single solution that cancels all of the " +"actions selected by the user. See <xref " +"linkend='secDependencyResolutionSearchTiers'/> for a description of how " +"search tiers work." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11191 +msgid "<literal>Aptitude::ProblemResolver::KeepScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11194 +msgid "" +"How much weight the problem resolver should give to keeping a package in its " +"current state, if that package is not already going to be kept in its " +"current state." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11202 +msgid "<literal>Aptitude::ProblemResolver::NonDefaultScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11203 +msgid "<literal>-40</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11205 +msgid "" +"How much weight the problem resolver should give to installing a non-default " +"version of the package (one that is not the current version and not the " +"<quote>candidate version</quote>)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11213 +msgid "<literal>Aptitude::ProblemResolver::Non-Default-Tier</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11216 +msgid "" +"The search tier assigned to actions that install non-default versions of a " +"package. For instance, if version 5 of a package is installed, versions 6, " +"7, and 8 are available, and version 7 is the default version, then versions " +"6 and 8 will be placed in this tier. See <xref " +"linkend='secDependencyResolutionSearchTiers'/> for a description of how " +"search tiers work." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11228 +msgid "<literal>Aptitude::ProblemResolver::OptionalScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11229 +msgid "<literal>1</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11232 +msgid "" +"Any version of a package whose Priority is <quote>optional</quote> will have " +"this many points added to its score." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11239 +msgid "<literal>Aptitude::ProblemResolver::PreserveAutoScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11242 +msgid "" +"How much weight the problem resolver should give to preserving automatic " +"installations or removals." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11248 +msgid "<literal>Aptitude::ProblemResolver::PreserveManualScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11249 +msgid "<literal>60</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11251 +msgid "" +"How much weight the problem resolver should give to preserving explicit user " +"selections." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11257 +msgid "<literal>Aptitude::ProblemResolver::RemoveScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11260 +msgid "" +"How much weight the problem resolver should give to removing a package (if " +"it is not already marked for removal)." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11267 +msgid "<literal>Aptitude::ProblemResolver::Remove-Tier</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11268 +msgid "<literal>30000</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11270 +msgid "" +"The search tier assigned to actions that remove a package. See <xref " +"linkend='secDependencyResolutionSearchTiers'/> for a description of how " +"search tiers work." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11278 +msgid "<literal>Aptitude::ProblemResolver::RequiredScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11279 +msgid "<literal>4</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11282 +msgid "" +"Any version of a package whose Priority is <quote>required</quote> will have " +"this many points added to its score." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11289 +msgid "<literal>Aptitude::ProblemResolver::ResolutionScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11293 +msgid "" +"In addition to all other scoring factors, proposed solutions that actually " +"resolve all unsatisfied dependencies are awarded this many extra points." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11300 +msgid "<literal>Aptitude::ProblemResolver::Safe-Tier</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11303 +msgid "" +"The search tier assigned to actions that install the default version of a " +"package, upgrade a package to its default version, or cancel installing or " +"upgrading a package. Solutions generated in this tier could be generated by " +"<link linkend='cmdlineSafeUpgrade'><literal>aptitude safe-upgrade</literal></" +"link>. See <xref linkend='secDependencyResolutionSearchTiers'/> for a " +"description of how search tiers work." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11316 +msgid "<literal>Aptitude::ProblemResolver::StandardScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11317 +msgid "<literal>3</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11320 +msgid "" +"Any version of a package whose Priority is <quote>standard</quote> will have " +"this many points added to its score." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11327 +msgid "<literal>Aptitude::ProblemResolver::StepLimit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11328 +msgid "<literal>5000</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11330 +msgid "" +"The maximum number of <quote>steps</quote> which should be performed by the " +"problem resolver on each attempt to find a solution to a dependency " +"problem. Decreasing this number will make &aptitude; <quote>give up</quote> " +"sooner; increasing it will permit the search for a solution to consume much " +"more time and memory before it is aborted. Setting <literal>StepLimit</" +"literal> to 0 will disable the problem resolver entirely. The default value " +"is large enough to accomodate commonly encountered situations, while " +"preventing &aptitude; from <quote>blowing up</quote> if an overly " +"complicated problem is encountered. (note: this applies only to command-" +"line searches; in the visual interface, the resolver will continue working " +"until it reaches a solution)" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11349 +msgid "<literal>Aptitude::ProblemResolver::StepScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11350 +msgid "<literal>70</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11353 +msgid "" +"How much to reward or penalize prospective solutions based on their length. " +"For each action performed by a solution, this many points are added to its " +"score. The larger this value is, the more the resolver tends to stick with " +"its first choice rather than considering alternatives; this will cause it to " +"produce a solution more quickly, but the solution might be of slightly lower " +"quality than it would otherwise be." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11365 +msgid "<literal>Aptitude::ProblemResolver::Trace-Directory</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11368 +msgid "" +"If this value is set, then each time the problem resolver produces a " +"solution, a stripped-down version of the package state sufficient to " +"reproduce that solution is written to the given file. If <literal>Aptitude::" +"ProblemResolver::Trace-File</literal> is also set, the same information will " +"also be written to the trace file. Trace directories are more transparent " +"than trace files, and are more suitable for, e.g., including in source trees " +"as test cases." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11381 +msgid "<literal>Aptitude::ProblemResolver::Trace-File</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11384 +msgid "" +"If this value is set, then each time the problem resolver produces a " +"solution, a stripped-down version of the package state sufficient to " +"reproduce that solution is written to the given file. If <literal>Aptitude::" +"ProblemResolver::Trace-Directory</literal> is also set, the same information " +"will also be written to the trace directory. A trace file is simply a " +"compressed archive of a trace directory; it will take less space than the " +"trace directory and is suitable for transmission over a network." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11398 +msgid "<literal>Aptitude::ProblemResolver::UndoFullReplacementScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11399 +msgid "<literal>-500</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11401 +msgid "" +"Installing a package and removing another package that fully replaces it (i." +"e., conflicts with it, replaces it, and provides it) is assigned this score." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11408 +msgid "<literal>Aptitude::ProblemResolver::UnfixedSoftScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11409 +msgid "<literal>-200</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11411 +msgid "" +"How much to reward or penalize leaving a Recommends relationship " +"unresolved. This should typically be less than RemoveScore, or &aptitude; " +"will tend to remove packages rather than leaving their Recommendations " +"unfixed. See <xref linkend='secResolver'/> for details." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11421 +msgid "<literal>Aptitude::ProblemResolver::UpgradeScore</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11424 +msgid "" +"How much weight the problem resolver should give to upgrading (or " +"downgrading) a package to its candidate version, if the package was not " +"already going to be upgraded." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11432 +msgid "<literal>Aptitude::ProblemResolver::WaitSteps</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11435 +msgid "" +"The number of resolver steps to perform in the foreground before moving the " +"resolution to the background thread. &aptitude; will be unresponsive while " +"this computation takes place; decreasing this value will make the program " +"more responsive, but may cause the progress indicator to appear " +"unnecessarily." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11445 +msgid "<literal>Aptitude::Purge-Unused</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11448 +msgid "" +"If this option is <literal>true</literal> and <literal><link " +"linkend='configDelete-Unused'>Aptitude::Delete-Unused</link></literal> is " +"also <literal>true</literal>, then packages which are unused will be " +"<emphasis>purged</emphasis> from the system, removing their configuration " +"files and perhaps other important data. For more information about which " +"packages are considered to be <quote>unused</quote>, see <xref " +"linkend='secAutoInstall'/>. <emphasis>THIS OPTION CAN CAUSE DATA LOSS! DO " +"NOT ENABLE IT UNLESS YOU KNOW WHAT YOU ARE DOING!</emphasis>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11464 +msgid "<literal>Aptitude::Recommends-Important</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11469 +msgid "" +"This is an obsolete configuration option that has been superseded by <link " +"linkend='configAptInstall-Recommends'><literal>Apt::Install-Recommends</" +"literal></link>. On startup, &aptitude; will copy <literal>Aptitude::" +"Recommends-Important</literal> (if it exists) to <literal>Apt::Install-" +"Recommends</literal> and then clear <literal>Aptitude::Recommends-Important</" +"literal> in your user configuration file." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11483 +msgid "<literal>Aptitude::Safe-Resolver::No-New-Installs</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11486 +msgid "" +"If this option is <literal>true</literal>, then when the <quote>safe</quote> " +"dependency resolver has been activated via <link " +"linkend='cmdlineSafeResolver'><literal>--safe-resolver</literal></link>, the " +"resolver will not be allowed to install packages that are not currently " +"installed. This is similar to <link linkend='configCmdLine-Safe-Upgrade-No-" +"New-Installs'><literal>Aptitude::CmdLine::Safe-Upgrade::No-New-Installs</" +"literal></link>, but applies only to command-line actions other than <link " +"linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11501 +msgid "<literal>Aptitude::Safe-Resolver::No-New-Upgrades</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11504 +msgid "" +"If this option is enabled, then when the <quote>safe</quote> dependency " +"resolver has been activated via <link " +"linkend='cmdlineSafeResolver'><literal>--safe-resolver</literal></link>, the " +"resolver will not be allowed to resolve dependencies by upgrading packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11514 +msgid "<literal>Aptitude::Sections::Descriptions</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11515 +msgid "See <literal>$prefix/share/aptitude/section-descriptions</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11517 +msgid "" +"This option is a group whose members define the descriptions displayed for " +"each section when using the <quote><literal>section</literal></quote> " +"package hierarchy grouping policy. Descriptions are assigned to section " +"trees based on the last component of the name: for instance, a member of " +"this group named <quote><literal>games</literal></quote> will be used to " +"describe the Sections <quote><literal>games</literal></quote>, " +"<quote><literal>non-free/games</literal></quote>, and <quote><literal>non-" +"free/desktop/games</literal></quote>. Within the text of section " +"descriptions, the string <quote><literal>\\n</literal></quote> will be " +"replaced by a line-break, and the string <quote><literal>''</literal></" +"quote> will be replaced by a double-quote character." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11537 +msgid "<literal>Aptitude::Sections::Top-Sections</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11538 +msgid "<literal>\"main\"; \"contrib\"; \"non-free\"; \"non-US\";</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11540 +msgid "" +"A configuration group whose elements are the names of the top-level archive " +"sections. The <quote><literal>topdir</literal></quote>, " +"<quote><literal>subdir</literal></quote>, and <quote><literal>subdirs</" +"literal></quote> grouping policies use this list to interpret Section " +"fields: if the first path element of a package's Section is <emphasis>not</" +"emphasis> contained in this list, or if its Section has only one element, " +"then the package will be grouped using the first member of this list as its " +"first path element. For example, if the first member of <literal>Top-" +"Sections</literal> is <quote><literal>main</literal></quote>, then a package " +"whose Section is <quote><literal>games</literal></quote> will be treated as " +"if its Section field were <quote><literal>games/arcade</literal></quote>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11561 +msgid "<literal>Aptitude::Simulate</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11564 +msgid "" +"In command-line mode, causes &aptitude; to just display the actions that " +"would be performed (rather than actually performing them); in the visual " +"interface, causes &aptitude; to start in read-only mode regardless of " +"whether you are &root; or not. This is equivalent to the <literal>-s</" +"literal> command-line option." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11575 +msgid "<literal>Aptitude::Spin-Interval</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11580 +msgid "" +"The number of milliseconds to delay in between updating the <quote>spinner</" +"quote> that appears while the problem resolver is running." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11587 +msgid "<literal>Aptitude::Suggests-Important</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11592 +msgid "" +"This is an obsolete option; use <literal><link linkend='configKeep-" +"Suggests'>Aptitude::Keep-Suggests</link></literal> instead. Setting this " +"option to <literal>true</literal> has the same effect as setting " +"<literal><link linkend='configKeep-Suggests'>Aptitude::Keep-Suggests</link></" +"literal> to <literal>true</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11603 +msgid "<literal>Aptitude::Suppress-Read-Only-Warning</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11608 +msgid "" +"If this option is <literal>false</literal>, &aptitude; will display a " +"warning the first time that you attempt to modify package states while " +"&aptitude; is in read-only mode." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11616 +msgid "<literal>Aptitude::Theme</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11621 +msgid "" +"The theme that &aptitude; should use; see <xref linkend='secThemes'/> for " +"more information." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11627 +msgid "<literal>Aptitude::Track-Dselect-State</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11632 +msgid "" +"If this option is set to <literal>true</literal>, &aptitude; will attempt to " +"detect when a change to a package's state has been made using &dselect; or " +"<command>dpkg</command>: for instance, if you remove a package using " +"<command>dpkg</command>, &aptitude; will not try to reinstall it. Note that " +"this may be somewhat buggy." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11644 +msgid "<literal>Aptitude::UI::Advance-On-Action</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11649 +msgid "" +"If this option is set to <literal>true</literal>, changing a package's state " +"(for instance, marking it for installation) will cause &aptitude; to advance " +"the highlight to the next package in the current group." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11659 +msgid "<literal>Aptitude::UI::Auto-Show-Reasons</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11664 +msgid "" +"If this option is set to <literal>true</literal>, selecting a package which " +"is broken or which appears to be causing other packages to be broken will " +"cause the information area to automatically display some reasons why the " +"breakage might be occuring." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11674 +msgid "<literal>Aptitude::UI::Default-Grouping</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11676 +msgid "" +"<literal>filter(missing),status,section(subdirs,passthrough),section(topdir)" +"</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11679 +msgid "" +"Sets the default grouping policy used for package lists. See <xref " +"linkend='secGroupingPolicy'/> for additional information on grouping " +"policies." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11687 +msgid "<literal>Aptitude::UI::Default-Package-View</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11692 +msgid "" +"This option is a group whose members define the default layout of " +"&aptitude;'s display. See <xref linkend='secDisplayLayout'/> for more " +"information." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11700 +msgid "<literal>Aptitude::UI::Default-Preview-Grouping</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11702 +msgid "<literal>action</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11705 +msgid "" +"Sets the default grouping policy used for preview screens. See <xref " +"linkend='secGroupingPolicy'/> for additional information on grouping " +"policies." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11713 +msgid "<literal>Aptitude::UI::Default-Sorting</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11717 +msgid "" +"The default sorting policy of package views. See <xref " +"linkend='secSortingPolicy'/> for more information." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11724 +msgid "<literal>Aptitude::UI::Description-Visible-By-Default</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11729 +msgid "" +"When a package list is first displayed, the information area (which " +"typically contains the long description of the current package) will be " +"visible if this option is <literal>true</literal> and hidden if it is " +"<literal>false</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11739 +msgid "<literal>Aptitude::UI::Exit-On-Last-Close</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11744 +msgid "" +"If this option is <literal>true</literal>, closing all the active views will " +"quit &aptitude;; otherwise, &aptitude; will not exit until you issue the " +"command &actions-quit;. See <xref linkend='secViews'/> for more information." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11753 +msgid "<literal>Aptitude::UI::Fill-Text</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11758 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will format " +"descriptions so that each line is exactly the width of the screen." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11765 +msgid "<literal>Aptitude::UI::Flat-View-As-First-View</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11770 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will display a flat " +"view on startup instead of the default view." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11777 +msgid "<literal>Aptitude::UI::HelpBar</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11782 +msgid "" +"If this option is <literal>true</literal>, a line of information about " +"important keystrokes will be displayed at the top of the screen." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11789 +msgid "<literal>Aptitude::UI::Incremental-Search</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11794 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will perform " +"<quote>incremental</quote> searches: as you type the search pattern, it will " +"search for the next package matching what you have typed so far." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11803 +msgid "<literal>Aptitude::UI::InfoAreaTabs</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11808 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will display tabs at " +"the top of the information area (the pane at the bottom of the screen) " +"describing the different modes the area can be set to." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11816 +msgid "<literal>Aptitude::UI::Keybindings</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11821 +msgid "" +"This is a group whose members define the connections between keystrokes and " +"commands in &aptitude;. For more information, see <xref " +"linkend='secKeybindings'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11829 +msgid "<literal>Aptitude::UI::Menubar-Autohide</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11834 +msgid "" +"If this option is set to <literal>true</literal>, the menu bar will be " +"hidden while it is not in use." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11841 +msgid "<literal>Aptitude::UI::Minibuf-Download-Bar</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11845 +msgid "" +"If this option is set to <literal>true</literal>, &aptitude; will use a less " +"obtrusive mechanism to display the progress of downloads: a bar at the " +"bottom of the screen will appear which displays the current download " +"status. While the download is active, pressing <keycap>q</keycap> will " +"abort it." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11856 +msgid "<literal>Aptitude::UI::Minibuf-Prompts</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11861 +msgid "" +"If this option is <literal>true</literal>, some prompts (such as yes/no and " +"multiple-choice prompts) will be displayed at the bottom of the screen " +"instead of in dialog boxes." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11869 +msgid "<literal>Aptitude::UI::New-Package-Commands</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11874 +msgid "" +"If this option is set to <literal>false</literal>, commands such as &package-" +"install; will have the same deprecated behavior that they did in antique " +"versions of &aptitude;." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11883 +msgid "<literal>Aptitude::UI::Package-Display-Format</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11885 +msgid "<literal>%c%a%M %p %Z %v %V</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11888 +msgid "" +"This option controls the format string used to display packages in package " +"lists. For more information on format strings, see <xref " +"linkend='secDisplayFormat'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11896 +msgid "<literal>Aptitude::UI::Package-Header-Format</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11898 +msgid "<literal>%N %n #%B %u %o</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11901 +msgid "" +"This option controls the format string used to display the header line of " +"package lists (ie, the line that appears between the package list and the " +"menu bar). For more information on format strings, see <xref " +"linkend='secDisplayFormat'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11911 +msgid "<literal>Aptitude::UI::Package-Status-Format</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11916 +msgid "" +"This option controls the format string used to display the status line of " +"package lists (ie, the line that appears between the package list and the " +"information area). For more information on format strings, see <xref " +"linkend='secDisplayFormat'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11926 +msgid "<literal>Aptitude::UI::Pause-After-Download</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11928 +msgid "<literal>OnlyIfError</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11931 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will display a message " +"after it finishes downloading packages, asking you if you want to continue " +"with the installation. If it is <literal>OnlyIfError</literal>, a message " +"will only be displayed if a download failed. Otherwise, if the option is " +"set to <literal>false</literal>, &aptitude; will immediately proceed to the " +"next screen after completing a download." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11944 +msgid "<literal>Aptitude::UI::Preview-Limit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11949 +msgid "" +"The default filter applied to the preview screen; see <xref " +"linkend='secSearchPatterns'/> for details about its format." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11956 +msgid "<literal>Aptitude::UI::Prompt-On-Exit</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11960 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will display a " +"confirmation prompt before shutting down." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11967 +msgid "<literal>Aptitude::UI::Styles</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11972 +msgid "" +"This is a configuration group whose contents define what textual styles " +"&aptitude; uses to display information. For more information, see <xref " +"linkend='secStyle'/>." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11980 +msgid "<literal>Aptitude::UI::ViewTabs</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11985 +msgid "" +"If this option is set to <literal>false</literal>, &aptitude; will not " +"display <quote>tabs</quote> describing the currently active views at the top " +"of the screen." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11993 +msgid "<literal>Aptitude::Warn-Not-Root</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:11998 +msgid "" +"If this option is <literal>true</literal>, &aptitude; will detect when you " +"need &root; privileges to do something, and ask you whether you want to " +"switch to the &root; account if you aren't &root; already. See <xref " +"linkend='secBecomingRoot'/> for more information." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:12009 +msgid "<literal>DebTags::Vocabulary</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:12010 +msgid "<literal>/usr/share/debtags/vocabulary</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:12012 +msgid "" +"The location of the <literal>debtags</literal> vocabulary file; used to load " +"in the package tag metadata." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:12019 +msgid "<literal>Dir::Aptitude::state</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: en/aptitude.xml:12020 en/manpage.xml:2242 +msgid "<filename>/var/lib/aptitude</filename>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:12022 +msgid "" +"The directory in which &aptitude;'s persistent state information is stored." +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:12028 +msgid "<literal>Quiet</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><section><segmentedlist><seglistitem><seg> +#: en/aptitude.xml:12033 +msgid "" +"This controls the quietness of the command-line mode. Setting it to a " +"higher value will disable more progress indicators." +msgstr "" + +# type: Content of: <book><chapter><section><section><title> +#: en/aptitude.xml:12043 +msgid "Themes" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:12046 +msgid "" +"A <firstterm>theme</firstterm> in &aptitude; is simply a collection of " +"settings that <quote>go together</quote>. Themes work by overriding the " +"default values of options: if an option is not set in the system " +"configuration file or in your personal configuration file, &aptitude; will " +"use the setting from the current theme, if one is available, before using " +"the standard default value." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:12056 +msgid "" +"A theme is simply a named group under <literal>Aptitude::Themes</literal>; " +"each configuration option contained in the group will override the " +"corresponding option in the global configuration. For instance, if the " +"<literal>Dselect</literal> theme is selected, the option <literal>Aptitude::" +"Themes::Dselect::Aptitude::UI::Package-Display-Format</literal> will " +"override the default value of the option <literal>Aptitude::UI::Package-" +"Display-Format</literal>." +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:12068 +msgid "" +"To select a theme, set the configuration option <literal>Aptitude::Theme</" +"literal> to the name of the theme; for instance," +msgstr "" + +# type: Content of: <book><chapter><section><section><screen> +#: en/aptitude.xml:12071 +#, no-wrap +msgid "Aptitude::Theme Vertical-Split;" +msgstr "" + +# type: Content of: <book><chapter><section><section><para> +#: en/aptitude.xml:12074 +msgid "" +"The following themes are shipped with &aptitude; in <filename>/usr/share/" +"aptitude/aptitude-defaults</filename>:" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:12080 +msgid "<literal>Dselect</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12084 +msgid "" +"This theme makes &aptitude; look and behave more like the legacy " +"<literal>dselect</literal> package manager:" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:12095 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"--\\ Installed Packages\n" +" --\\ Priority required\n" +" --\\ base - The Debian base system\n" +"c base base-file 3.0.16 3.0.16 Debian base system miscellaneous fil\n" +"c base base-pass 3.5.7 3.5.7 Debian base system master password a\n" +"c base bash 2.05b-15 2.05b-15 The GNU Bourne Again SHell\n" +"c base bsdutils 1:2.12-7 1:2.12-7 Basic utilities from 4.4BSD-Lite\n" +"c base coreutils 5.0.91-2 5.0.91-2 The GNU core utilities\n" +"c base debianuti 2.8.3 2.8.3 Miscellaneous utilities specific to\n" +"c base diff 2.8.1-6 2.8.1-6 File comparison utilities\n" +"base-files installed ; none required\n" +"This package contains the basic filesystem hierarchy of a Debian system, and\n" +"several important miscellaneous files, such as /etc/debian_version,\n" +"/etc/host.conf, /etc/issue, /etc/motd, /etc/profile, /etc/nsswitch.conf, and\n" +"others, and the text of several common licenses in use on Debian systems.\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><term> +#: en/aptitude.xml:12126 +msgid "<literal>Vertical-Split</literal>" +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12130 +msgid "" +"This theme rearranges the display: instead of the current package's " +"description appearing underneath the package list, it is displayed to the " +"right of the package list. This theme is useful with very wide terminals, " +"and perhaps also when editing the built-in hierarchy of packages." +msgstr "" + +# type: Content of: <book><chapter><section><section><variablelist><varlistentry><listitem><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:12145 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"aptitude 0.2.14.1\n" +"--\\ Installed Packages Modern computers support the Advanced #\n" +" --\\ admin - Administrative utilities Configuration and Power Interface\n" +" --\\ main - The main Debian archive (ACPI) to allow intelligent power\n" +"i acpid 1.0.3-19 1.0.3-19 management on your system and to query\n" +"i alien 8.44 8.44 battery and configuration status.\n" +"i anacron 2.3-9 2.3-9\n" +"i apt-show-vers 0.07 0.07 ACPID is a completely flexible, totally\n" +"i A apt-utils 0.5.25 0.5.25 extensible daemon for delivering ACPI\n" +"i apt-watch 0.3.2-2 0.3.2-2 events. It listens on a file\n" +"i aptitude 0.2.14.1-2 0.2.14.1-2 (/proc/acpi/event) and when an event\n" +"i at 3.1.8-11 3.1.8-11 occurs, executes programs to handle the\n" +"i auto-apt 0.3.20 0.3.20 event. The programs it executes are\n" +"i cron 3.0pl1-83 3.0pl1-83 configured through a set of\n" +"i debconf 1.4.29 1.4.29 configuration files, which can be\n" +"i debconf-i18n 1.4.29 1.4.29 dropped into place by packages or by\n" +"i A debootstrap 0.2.39 0.2.39 the admin.\n" +"i A deborphan 1.7.3 1.7.3\n" +"i debtags 0.16 0.16 In order to use this package you need a\n" +"i A defoma 0.11.8 0.11.8 recent Kernel (=>2.4.7). This can be\n" +"i discover 2.0.4-5 2.0.4-5 one including the patches on\n" +"Utilities for using ACPI power management" +msgstr "" + +# type: Content of: <book><chapter><section><title> +#: en/aptitude.xml:12180 +msgid "Playing Minesweeper" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:12183 +msgid "" +"In case you get tired of installing and removing packages, &aptitude; " +"includes a version of the classic game <quote>Minesweeper</quote>. To start " +"it, select &actions-mine;; the initial Minesweeper board will appear:" +msgstr "" + +# type: Content of: <book><chapter><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:12196 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"Minesweeper 10/10 mines 13 seconds\n" +"\n" +"\n" +"\n" +"\n" +"\n" +" +--------+\n" +" | |\n" +" | |\n" +" | |\n" +" | |\n" +" | |\n" +" | |\n" +" | |\n" +" | |\n" +" +--------+\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:12225 +msgid "" +"Within the rectangle that appears on the screen are hidden ten mines. Your " +"goal is to determine, through intuition, logic, and luck, where those mines " +"are, without setting any of them off! To do this, you must uncover all the " +"squares that <emphasis>do not</emphasis> contain mines; in doing so, you " +"will learn important information regarding which squares do contain mines. " +"Beware, however: uncovering a square that contains a mine will set it off, " +"ending your game immediately!" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:12236 +msgid "" +"To uncover a square (and find out whether a mine is hidden there), select " +"the square with the arrow keys and press <keycap>Enter</keycap>:" +msgstr "" + +# type: Content of: <book><chapter><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:12248 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"Minesweeper 10/10 mines 387 seconds\n" +"\n" +"\n" +"\n" +"\n" +"\n" +" +--------+\n" +" | 2......|\n" +" | 2111...|\n" +" | 1...|\n" +" | 1111...|\n" +" |11...111|\n" +" |...113 |\n" +" |1122 |\n" +" | |\n" +" +--------+\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:12277 +msgid "" +"As you can see, some of the hidden (blank) parts of the board have been " +"revealed in this screenshot. The squares containing a <literal>.</literal> " +"are squares which are not next to any mines; the numbers in the remaining " +"squares indicate how many mines they are next to." +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:12285 +msgid "" +"If you think you know where a mine is, you can place a <quote>flag</quote> " +"on it. To do this, select the suspected square and press <keycap>f</" +"keycap>. For instance, in the screenshot below, I decided that the square " +"on the left-hand side of the board looked suspicious..." +msgstr "" + +# type: Content of: <book><chapter><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:12299 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"Minesweeper 9/10 mines 961 seconds\n" +"\n" +"\n" +"\n" +"\n" +"\n" +" +--------+\n" +" | 2......|\n" +" | 2111...|\n" +" | 1...|\n" +" |F1111...|\n" +" |11...111|\n" +" |...113 |\n" +" |1122 |\n" +" | |\n" +" +--------+\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:12328 +msgid "" +"As you can see, an <literal>F</literal> appeared in the selected square. It " +"is no longer possible to uncover this square, even accidentally, until the " +"flag is removed (by pressing <keycap>f</keycap> again). Once you have " +"placed flags on all the mines that are next to a square (for instance, the " +"squares labelled <literal>1</literal> next to the flag above), you can " +"<quote>sweep</quote> around the square. This is just a convenient shortcut " +"to uncover all the squares next to it (except those containing a flag, of " +"course). For instance, sweeping around the <literal>1</literal> above:" +msgstr "" + +# type: Content of: <book><chapter><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:12348 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"Minesweeper 9/10 mines 2290 seconds\n" +"\n" +"\n" +"\n" +"\n" +"\n" +" +--------+\n" +" | 2......|\n" +" | 2111...|\n" +" |221 1...|\n" +" |F1111...|\n" +" |11...111|\n" +" |...113 |\n" +" |1122 |\n" +" | |\n" +" +--------+\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:12377 +msgid "" +"Luckily (or was it luck?), my guess about the location of that mine was " +"correct. If I had been wrong, I would have lost immediately:" +msgstr "" + +# type: Content of: <book><chapter><section><screenshot><mediaobject><textobject><screen> +#: en/aptitude.xml:12389 +#, no-wrap +msgid "" +" Actions Undo Package Search Options Views Help\n" +"f10: Menu ?: Help q: Quit u: Update g: Download/Install/Remove Pkgs\n" +"Minesweeper Minesweeper Lost in 2388 seconds\n" +"\n" +"\n" +"\n" +"\n" +"\n" +" +--------+\n" +" |^2......|\n" +" |^2111...|\n" +" |221^1...|\n" +" |^1111...|\n" +" |11...111|\n" +" |...113^ |\n" +" |1122* ^ |\n" +" | ^ ^ ^|\n" +" +--------+\n" +"\n" +"\n" +"\n" +"\n" +"\n" +msgstr "" + +# type: Content of: <book><chapter><section><para> +#: en/aptitude.xml:12418 +msgid "" +"When you lose, the locations of all the mines are revealed: unexploded mines " +"are indicated by a caret symbol (<literal>^</literal>), and the one you " +"<quote>stepped on</quote> is indicated by an asterisk (<literal>*</literal>)." +msgstr "" + +# type: Content of: <book><chapter><title> +#: en/aptitude.xml:12427 +msgid "aptitude frequently asked questions" +msgstr "" + +# type: Content of: <book><chapter><blockquote><attribution> +#: en/aptitude.xml:12431 +msgid "<citetitle pubwork='book'>Monty Python and the Holy Grail</citetitle>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:12435 +msgid "<quote>What ... is your name?</quote>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:12439 +msgid "<quote>I am Arthur, King of the Britons.</quote>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:12443 +msgid "<quote>What ... is your quest?</quote>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:12447 +msgid "<quote>I seek the Holy Grail!</quote>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:12451 +msgid "<quote>What ... is the airspeed velocity of an unladen swallow?</quote>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:12455 +msgid "<quote>What do you mean? An African or a European swallow?</quote>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:12459 +msgid "" +"<quote>Huh? I ... I don't kn---<emphasis>AAAAAUUUGGGHH!</emphasis></quote>" +msgstr "" + +# type: Content of: <book><chapter><qandaset><qandaentry><question><para> +#: en/aptitude.xml:12467 +msgid "How can I find exactly one package by name?" +msgstr "" + +# type: Content of: <book><chapter><qandaset><qandaentry><answer><para> +#: en/aptitude.xml:12473 +msgid "" +"As mentioned in <xref linkend='secSearchPatterns'/>, when you search for a " +"package by name, the text you enter is actually a regular expression. Thus, " +"the search pattern <quote><literal>^<replaceable>name</replaceable>$</" +"literal></quote> will match only a package named <replaceable>name</" +"replaceable>." +msgstr "" + +# type: Content of: <book><chapter><qandaset><qandaentry><answer><para> +#: en/aptitude.xml:12482 +msgid "" +"For instance, you can find <literal>apt</literal> (but not " +"<literal>aptitude</literal> or <literal>synaptic</literal>) by entering " +"<userinput>^apt$</userinput>; you can find <literal>g++</literal> (but not " +"<literal>g++-2.95</literal> or <literal>g++-3.0</literal>) by entering " +"<userinput>^g\\+\\+$</userinput>." +msgstr "" + +# type: Content of: <book><chapter><qandaset><qandaentry><question><para> +#: en/aptitude.xml:12496 +msgid "How can I find broken packages?" +msgstr "" + +# type: Content of: <book><chapter><qandaset><qandaentry><answer><para> +#: en/aptitude.xml:12502 +msgid "Use the command &search-find-broken;." +msgstr "" + +# type: Content of: <book><chapter><qandaset><qandaentry><question><para> +#: en/aptitude.xml:12510 +msgid "I want to select text, why doesn't aptitude let me disable the mouse?" +msgstr "" + +# type: Content of: <book><chapter><qandaset><qandaentry><answer><para> +#: en/aptitude.xml:12517 +msgid "" +"Normally, you cannot select text in an xterm while a program running in that " +"terminal (such as &aptitude;) is using the mouse. However, you can override " +"this behavior and perform a selection by holding the <keycap>Shift</keycap> " +"key down while you click on the terminal." +msgstr "" + +# type: Content of: <book><chapter><title> +#: en/aptitude.xml:12530 +msgid "Credits" +msgstr "" + +# type: Content of: <book><chapter><blockquote><attribution> +#: en/aptitude.xml:12534 +msgid "" +"<personname> <firstname>Terry</firstname> <surname>Pratchett</surname> </" +"personname>, <citetitle pubwork='book'>The Last Hero</citetitle>" +msgstr "" + +# type: Content of: <book><chapter><blockquote><para> +#: en/aptitude.xml:12542 +msgid "No-one remembers the singer. The song remains." +msgstr "" + +# type: Content of: <book><chapter><para> +#: en/aptitude.xml:12548 +msgid "" +"This section commemorates some of the people who have contributed to " +"&aptitude; over its lifetime." +msgstr "" + +# type: Content of: <book><chapter><note><para><footnote> +#: en/aptitude.xml:12554 +msgid "" +"This section is presently rather incomplete and will likely be updated and " +"expanded as time goes on (in particular, there are many missing translation " +"credits due to the huge number of sources of translations <footnote>" +msgstr "" + +# type: Content of: <book><chapter><note><para><footnote><para> +#: en/aptitude.xml:12560 +msgid "" +"It should be possible to compile a fairly complete list of i18n contributors " +"based on the ChangeLog, its references to the Debian bug tracking system, " +"and the revision history of &aptitude;, but doing so will require a large " +"investment of time that is not currently available." +msgstr "" + +# type: Content of: <book><chapter><note><para> +#: en/aptitude.xml:12566 +msgid "" +"</footnote>). If you think you should be on this list, please email " +"<email>dburrows@debian.org</email> with an explanation of why you think so." +msgstr "" + +# type: Content of: <book><chapter><variablelist><title> +#: en/aptitude.xml:12573 +msgid "Translations and internationalization" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12576 +msgid "Brazilian translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12580 +msgid "Andre Luis Lopes, Gustavo Silva" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12586 +msgid "Chinese translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12590 +msgid "Carlos Z.F. Liu" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12596 +msgid "Czech translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12600 +msgid "Miroslav Kure" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12606 +msgid "Danish translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12610 +msgid "Morten Brix Pedersen, Morten Bo Johansen" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12616 +msgid "Dutch translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12620 +msgid "Luk Claes" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12626 +msgid "Finnish translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12630 +msgid "Jaakko Kangasharju" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12636 +msgid "French translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12640 +msgid "Martin Quinson, Jean-Luc Coulon" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12646 +msgid "German translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12649 +msgid "Sebastian Schaffert, Erich Schubert, Sebastian Kapfer, Jens Seidel" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12654 +msgid "Italian translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12658 +msgid "Danilo Piazzalunga" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12664 +msgid "Japanese translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12668 +msgid "Yasuo Eto, Noritada Kobayashi" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12674 +msgid "Lithuanian translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12678 +msgid "Darius ?itkevicius" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12684 +msgid "Polish translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12688 +msgid "Michal Politowski" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12694 +msgid "Portuguese translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12698 +msgid "Nuno Sénica, Miguel Figueiredo" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12704 +msgid "Norwegian translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12708 +msgid "Håvard Korsvoll" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12714 +msgid "Spanish translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12718 +msgid "Jordi Malloch, Ruben Porras" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12724 +msgid "Swedish translation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12728 +msgid "Daniel Nylander" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12734 +msgid "Initial i18n patch" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12736 +msgid "Masato Taruishi" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12740 +msgid "i18n triaging and maintainence" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12742 +msgid "Christian Perrier" +msgstr "" + +# type: Content of: <book><chapter><variablelist><title> +#: en/aptitude.xml:12747 +msgid "Documentation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12750 +msgid "User's Manual" +msgstr "" + +# type: Content of: <book><chapter><variablelist><title> +#: en/aptitude.xml:12761 +msgid "Programming" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12764 +msgid "Program design and implementation" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><term> +#: en/aptitude.xml:12774 +msgid "Support for the dpkg Breaks field" +msgstr "" + +# type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> +#: en/aptitude.xml:12778 +msgid "Ian Jackson, Michael Vogt" +msgstr "" + +# type: Content of: <book><reference><title> +#: en/aptitude.xml:12786 +msgid "Command-line reference" +msgstr "" + +# type: Content of: <refentry><refentryinfo><title> +#: en/manpage.xml:17 +msgid "aptitude" +msgstr "" + +# type: Content of: <refentry><refentryinfo><legalnotice><para> +#: en/manpage.xml:25 +msgid "Copyright 2004-2009 Daniel Burrows." +msgstr "" + +# type: Content of: <refentry><refentryinfo><legalnotice><para> +#: en/manpage.xml:29 en/manpage.xml:2182 en/manpage.xml:2385 +msgid "" +"This manual page is free software; you can redistribute it and/or modify it " +"under the terms of the GNU General Public License as published by the Free " +"Software Foundation; either version 2 of the License, or (at your option) " +"any later version." +msgstr "" + +# type: Content of: <refentry><refentryinfo><legalnotice><para> +#: en/manpage.xml:37 en/manpage.xml:2190 en/manpage.xml:2393 +msgid "" +"This manual page is distributed in the hope that it will be useful, but " +"WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY " +"or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " +"more details." +msgstr "" + +# type: Content of: <refentry><refentryinfo><legalnotice><para> +#: en/manpage.xml:45 en/manpage.xml:2198 en/manpage.xml:2401 +msgid "" +"You should have received a copy of the GNU General Public License along with " +"this program; if not, write to the Free Software Foundation, Inc., 51 " +"Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA." +msgstr "" + +# type: Content of: <refentry><refnamediv><refname> +#: en/manpage.xml:59 +msgid "&aptitude;" +msgstr "" + +# type: Content of: <refentry><refnamediv><refpurpose> +#: en/manpage.xml:60 +msgid "high-level interface to the package manager" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:65 +msgid "" +"<command>aptitude</command> <arg choice='opt' " +"rep='repeat'><replaceable>options</replaceable></arg> <group choice='req'> " +"<arg choice='plain'>autoclean</arg> <arg choice='plain'>clean</arg> <arg " +"choice='plain'>forget-new</arg> <arg choice='plain'>keep-all</arg> <arg " +"choice='plain'>update</arg> <arg choice='plain'>safe-upgrade</arg> </group>" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:80 +msgid "" +"<command>aptitude</command> <arg choice='opt' " +"rep='repeat'><replaceable>options</replaceable></arg> <group choice='req'> " +"<arg choice='plain'>changelog</arg> <arg choice='plain'>full-upgrade</arg> " +"<arg choice='plain'>download</arg> <arg choice='plain'>forbid-version</arg> " +"<arg choice='plain'>hold</arg> <arg choice='plain'>install</arg> <arg " +"choice='plain'>markauto</arg> <arg choice='plain'>purge</arg> <arg " +"choice='plain'>reinstall</arg> <arg choice='plain'>remove</arg> <arg " +"choice='plain'>show</arg> <arg choice='plain'>unhold</arg> <arg " +"choice='plain'>unmarkauto</arg> <arg choice='plain'>build-dep</arg> <arg " +"choice='plain'>build-depends</arg> </group> <arg choice='plain' " +"rep='repeat'><replaceable>packages</replaceable></arg>" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:106 +msgid "" +"<command>aptitude</command> <arg choice='plain'>extract-cache-subset</arg> " +"<arg choice='plain'><replaceable>output-directory</replaceable></arg> <arg " +"choice='plain' rep='repeat'><replaceable>packages</replaceable></arg>" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:115 +msgid "" +"<command>aptitude</command> <arg choice='opt' " +"rep='repeat'><replaceable>options</replaceable></arg> <arg " +"choice='plain'>search</arg> <arg choice='plain' " +"rep='repeat'><replaceable>patterns</replaceable></arg>" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:125 +msgid "" +"<command>aptitude</command> <arg choice='opt' " +"rep='repeat'><replaceable>options</replaceable></arg> <group choice='req'> " +"<arg choice='plain'>add-user-tag</arg> <arg choice='plain'>remove-user-tag</" +"arg> </group> <arg choice='plain'><replaceable>tag</replaceable></arg> <arg " +"choice='plain' rep='repeat'><replaceable>packages</replaceable></arg>" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:140 +msgid "" +"<command>aptitude</command> <arg choice='opt' " +"rep='repeat'><replaceable>options</replaceable></arg> <group choice='req'> " +"<arg choice='plain'>why</arg> <arg choice='plain'>why-not</arg> </group> " +"<arg choice='opt' rep='repeat'><replaceable>patterns</replaceable></arg> " +"<arg choice='plain'><replaceable>package</replaceable></arg>" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:155 +msgid "" +"<command>aptitude</command> <arg choice='opt'>-S <replaceable>fname</" +"replaceable></arg> <group choice='opt'><arg choice='plain'>-u</arg> <arg " +"choice='plain'>-i</arg></group>" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:162 +msgid "<command>aptitude</command> <arg choice='plain'>help</arg>" +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:171 +msgid "" +"&aptitude; is a text-based interface to the Debian GNU/Linux package system." +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:176 +msgid "" +"It allows the user to view the list of packages and to perform package " +"management tasks such as installing, upgrading, and removing packages. " +"Actions may be performed from a visual interface or from the command-line." +msgstr "" + +# type: Content of: <refentry><refsect1><title> +#: en/manpage.xml:184 +msgid "Command-line actions" +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:187 +msgid "" +"The first argument which does not begin with a hyphen (<quote><literal>-</" +"literal></quote>) is considered to be an action that the program should " +"perform. If an action is not specified on the command-line, &aptitude; will " +"start up in visual mode." +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:194 +msgid "The following actions are available:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:199 +msgid "<literal>install</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:203 +msgid "" +"Install one or more packages. The packages should be listed after the " +"<quote>install</quote> command; if a package name contains a tilde character " +"(<quote><literal>~</literal></quote>) or a question mark (<quote><literal>?</" +"literal></quote>), it will be treated as a search pattern and every package " +"matching the pattern will be installed (see the section <link " +"linkend='secSearchPatterns'><quote>Search Patterns</quote></link> in the " +"&aptitude; reference manual)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:216 +msgid "" +"To select a particular version of the package, append " +"<quote><literal>=<replaceable>version</replaceable></literal></quote> to the " +"package name: for instance, <quote><literal>aptitude install apt=0.3.1</" +"literal></quote>. Similarly, to select a package from a particular archive, " +"append <quote><literal>/<replaceable>archive</replaceable></literal></quote> " +"to the package name: for instance, <quote><literal>aptitude install apt/" +"experimental</literal></quote>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:225 +msgid "" +"Not every package listed on the command line has to be installed; you can " +"tell &aptitude; to do something different with a package by appending an " +"<quote>override specifier</quote> to the name of the package. For example, " +"<literal>aptitude remove wesnoth+</literal> will install <literal>wesnoth</" +"literal>, not remove it. The following override specifiers are available:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/manpage.xml:236 +msgid "<replaceable>package</replaceable><literal>+</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:239 +msgid "Install <replaceable>package</replaceable>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/manpage.xml:245 +msgid "<replaceable>package</replaceable><literal>+M</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:248 +msgid "" +"Install <replaceable>package</replaceable> and immediately mark it as <link " +"linkend='secAutoInstall'>automatically installed</link> (note that if " +"nothing depends on <replaceable>package</replaceable>, this will cause it to " +"be immediately removed)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/manpage.xml:259 +msgid "<replaceable>package</replaceable><literal>-</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:262 +msgid "Remove <replaceable>package</replaceable>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/manpage.xml:268 +msgid "<replaceable>package</replaceable><literal>_</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:271 +msgid "" +"Purge <replaceable>package</replaceable>: remove it and all its associated " +"configuration and data files." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/manpage.xml:278 +msgid "<replaceable>package</replaceable><literal>=</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:281 +msgid "" +"Place <replaceable>package</replaceable> on hold: cancel any active " +"installation, upgrade, or removal, and prevent this package from being " +"automatically upgraded in the future." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/manpage.xml:290 +msgid "<replaceable>package</replaceable><literal>:</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:293 +msgid "" +"Keep <replaceable>package</replaceable> at its current version: cancel any " +"installation, removal, or upgrade. Unlike <quote>hold</quote> (above) this " +"does not prevent automatic upgrades in the future." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/manpage.xml:302 +msgid "<replaceable>package</replaceable><literal>&M</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:305 +msgid "" +"Mark <replaceable>package</replaceable> as having been <link " +"linkend='secAutoInstall'>automatically installed</link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><term> +#: en/manpage.xml:312 +msgid "<replaceable>package</replaceable><literal>&m</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:315 +msgid "" +"Mark <replaceable>package</replaceable> as having been <link " +"linkend='secAutoInstall'>manually installed</link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:323 +msgid "" +"As a special case, <quote><literal>install</literal></quote> with no " +"arguments will act on any stored/pending actions." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><note><para> +#: en/manpage.xml:329 +msgid "" +"Once you enter <userinput>Y</userinput> at the final confirmation prompt, " +"the <quote><literal>install</literal></quote> command will modify " +"&aptitude;'s stored information about what actions to perform. Therefore, " +"if you issue (e.g.) the command <quote><literal>aptitude install foo bar</" +"literal></quote> and then abort the installation once &aptitude; has started " +"downloading and installing packages, you will need to run " +"<quote><literal>aptitude remove foo bar</literal></quote> to cancel that " +"order." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:345 +msgid "" +"<literal>remove</literal>, <literal>purge</literal>, <literal>hold</" +"literal>, <literal>unhold</literal>, <literal>keep</literal>, " +"<literal>reinstall</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:349 +msgid "" +"These commands are the same as <quote><literal>install</literal></quote>, " +"but apply the named action to all packages given on the command line for " +"which it is not <link linkend='parOverrideSpecifiers'>overridden</link>. " +"The difference between <literal>hold</literal> and <literal>keep</literal> " +"is that <literal>hold</literal> will cause a package to be ignored by future " +"<link linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link> or " +"<link linkend='manpageFullUpgrade'><literal>full-upgrade</literal></link> " +"commands, while <literal>keep</literal> merely cancels any scheduled actions " +"on the package. <literal>unhold</literal> will allow a package to be " +"upgraded by future <literal>safe-upgrade</literal> or <link " +"linkend='manpageFullUpgrade'><literal>full-upgrade</literal></link> " +"commands, without otherwise altering its state." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:370 +msgid "" +"For instance, <quote><literal>aptitude remove '~ndeity'</literal></quote> " +"will remove all packages whose name contains <quote><literal>deity</" +"literal></quote>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:378 +msgid "<literal>markauto</literal>, <literal>unmarkauto</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:382 +msgid "" +"Mark packages as automatically installed or manually installed, " +"respectively. Packages are specified in exactly the same way as for the " +"<quote><literal>install</literal></quote> command. For instance, " +"<quote><literal>aptitude markauto '~slibs'</literal></quote> will mark all " +"packages in the <quote><literal>libs</literal></quote> section as having " +"been automatically installed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:392 +msgid "" +"For more information on automatically installed packages, see the section " +"<quote><link linkend='secAutoInstall'>Managing Automatically Installed " +"Packages</link></quote> in the &aptitude; reference manual." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:402 +msgid "<literal>build-depends</literal>, <literal>build-dep</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:406 +msgid "" +"Satisfy the build-dependencies of a package. Each package name may be a " +"source package, in which case the build dependencies of that source package " +"are installed; otherwise, binary packages are found in the same way as for " +"the <quote><literal>install</literal></quote> command, and the build-" +"dependencies of the source packages that build those binary packages are " +"satisfied." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:416 +msgid "" +"If the command-line parameter <literal>--arch-only</literal> is present, " +"only architecture-dependent build dependencies (i.e., not <literal>Build-" +"Depends-Indep</literal> or <literal>Build-Conflicts-Indep</literal>) will be " +"obeyed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:427 +msgid "<literal>forbid-version</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:431 +msgid "" +"Forbid a package from being upgraded to a particular version. This will " +"prevent aptitude from automatically upgrading to this version, but will " +"allow automatic upgrades to future versions. By default, aptitude will " +"select the version to which the package would normally be upgraded; you may " +"override this selection by appending <quote><literal>=<replaceable>version</" +"replaceable></literal></quote> to the package name: for instance, " +"<quote><literal>aptitude forbid-version vim=1.2.3.broken-4</literal></quote>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:443 +msgid "" +"This command is useful for avoiding broken versions of packages without " +"having to set and clear manual holds. If you decide you really want the " +"forbidden version after all, the <quote><literal>install</literal></quote> " +"command will remove the ban." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:453 +msgid "<literal>update</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:457 +msgid "" +"Updates the list of available packages from the &apt; sources (this is " +"equivalent to <quote><literal>apt-get update</literal></quote>)" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:465 +msgid "<literal>safe-upgrade</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:469 +msgid "" +"Upgrades installed packages to their most recent version. Installed " +"packages will not be removed unless they are unused (see the section " +"<quote><link linkend='secAutoInstall'>Managing Automatically Installed " +"Packages</link></quote> in the &aptitude; reference manual). Packages which " +"are not currently installed may be installed to resolve dependencies unless " +"the <link linkend='cmdlineOptionSafeUpgradeNoNewInstalls'><literal>--no-new-" +"installs</literal></link> command-line option is supplied." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:481 +msgid "" +"It is sometimes necessary to remove one package in order to upgrade another; " +"this command is not able to upgrade packages in such situations. Use the " +"<link linkend='manpageFullUpgrade'><literal>full-upgrade</literal></link> " +"command to upgrade as many packages as possible." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:491 +msgid "<literal>full-upgrade</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:495 +msgid "" +"Upgrades installed packages to their most recent version, removing or " +"installing packages as necessary. This command is less conservative than " +"<link linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link> " +"and thus more likely to perform unwanted actions. However, it is capable of " +"upgrading packages that <link linkend='manpageSafeUpgrade'><literal>safe-" +"upgrade</literal></link> cannot upgrade." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><note><para> +#: en/manpage.xml:507 +msgid "" +"This command was originally named <literal>dist-upgrade</literal> for " +"historical reasons, and &aptitude; still recognizes <literal>dist-upgrade</" +"literal> as a synonym for <literal>full-upgrade</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:518 +msgid "<literal>keep-all</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:522 +msgid "" +"Cancels all scheduled actions on all packages; any packages whose sticky " +"state indicates an installation, removal, or upgrade will have this sticky " +"state cleared." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:530 +msgid "<literal>forget-new</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:534 +msgid "" +"Forgets all internal information about what packages are <quote>new</quote> " +"(equivalent to pressing <quote><keycap>f</keycap></quote> when in visual " +"mode)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:542 +msgid "<literal>search</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:546 +msgid "" +"Searches for packages matching one of the patterns supplied on the command " +"line. All packages which match any of the given patterns will be displayed; " +"for instance, <quote><literal>aptitude search '~N' edit</literal></quote> " +"will list all <quote>new</quote> packages and all packages whose name " +"contains <quote>edit</quote>. For more information on search patterns, see " +"the section <quote><link linkend='secSearchPatterns'>Search Patterns</link></" +"quote> in the &aptitude; reference manual." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:558 +msgid "" +"Unless you pass the <link linkend='cmdlineOptionFormat'><literal>-F</" +"literal></link> option, the output of <literal>aptitude search</literal> " +"will look something like this:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><screen> +#: en/manpage.xml:564 +#, no-wrap +msgid "" +"i apt - Advanced front-end for dpkg \n" +"pi apt-build - frontend to apt to build, optimize and in\n" +"cp apt-file - APT package searching utility -- command-\n" +"ihA raptor-utils - Raptor RDF Parser utilities" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:570 +msgid "" +"Each search result is listed on a separate line. The first character of " +"each line indicates the current state of the package: the most common states " +"are <literal>p</literal>, meaning that no trace of the package exists on the " +"system, <literal>c</literal>, meaning that the package was deleted but its " +"configuration files remain on the system, <literal>i</literal>, meaning that " +"the package is installed, and <literal>v</literal>, meaning that the package " +"is virtual. The second character indicates the stored action (if any; " +"otherwise a blank space is displayed) to be performed on the package, with " +"the most common actions being <literal>i</literal>, meaning that the package " +"will be installed, <literal>d</literal>, meaning that the package will be " +"deleted, and <literal>p</literal>, meaning that the package and its " +"configuration files will be removed. If the third character is <literal>A</" +"literal>, the package was automatically installed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:591 +msgid "" +"For a complete list of the possible state and action flags, see the section " +"<quote><link linkend='secAccessingPackageInformation'>Accessing Package " +"Information</link></quote> in the &aptitude; reference guide. To customize " +"the output of <literal>search</literal>, see the command-line options <link " +"linkend='cmdlineOptionFormat'><literal>-F</literal></link> and <link " +"linkend='cmdlineOptionSort'><literal>--sort</literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:606 +msgid "<literal>show</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:610 +msgid "" +"Displays detailed information about one or more packages, listed following " +"the search command. If a package name contains a tilde character " +"(<quote><literal>~</literal></quote>) or a question mark (<quote><literal>?</" +"literal></quote>), it will be treated as a search pattern and all matching " +"packages will be displayed (see the section <quote><link " +"linkend='secSearchPatterns'>Search Patterns</link></quote> in the &aptitude; " +"reference manual)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:622 +msgid "" +"If the verbosity level is 1 or greater (i.e., at least one <literal>-v</" +"literal> is present on the command-line), information about all versions of " +"the package is displayed. Otherwise, information about the <quote>candidate " +"version</quote> (the version that <quote><literal>aptitude install</" +"literal></quote> would download) is displayed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:631 +msgid "" +"You can display information about a different version of the package by " +"appending <literal>=<replaceable>version</replaceable></literal> to the " +"package name; you can display the version from a particular archive by " +"appending <literal>/<replaceable>archive</replaceable></literal> to the " +"package name. If either of these is present, then only the version you " +"request will be displayed, regardless of the verbosity level." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:643 +msgid "" +"If the verbosity level is 1 or greater, the package's architecture, " +"compressed size, filename, and md5sum fields will be displayed. If the " +"verbosity level is 2 or greater, the select version or versions will be " +"displayed once for each archive in which they are found." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:653 +msgid "<literal>add-user-tag</literal>, <literal>remove-user-tag</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:657 +msgid "" +"Adds a user tag to or removes a user tag from the selected group of " +"packages. If a package name contains a tilde (<quote><literal>~</literal></" +"quote>) or question mark (<quote><literal>?</literal></quote>), it is " +"treated as a search pattern and the tag is added to or removed from all the " +"packages that match the pattern (see the section <quote><link " +"linkend='secSearchPatterns'>Search Patterns</link></quote> in the &aptitude; " +"reference manual)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:669 +msgid "" +"User tags are arbitrary strings associated with a package. They can be used " +"with the <link linkend='searchUserTag'><literal>?user-tag(<replaceable>tag</" +"replaceable>)</literal></link> search term, which will select all the " +"packages that have a user tag matching <replaceable>tag</replaceable>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:679 +msgid "<literal>why</literal>, <literal>why-not</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:683 +msgid "" +"Explains the reason that a particular package should or cannot be installed " +"on the system." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:688 +msgid "" +"This command searches for packages that require or conflict with the given " +"package. It displays a sequence of dependencies leading to the target " +"package, along with a note indicating the installed state of each package in " +"the dependency chain:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><screen> +#: en/manpage.xml:695 +#, no-wrap +msgid "" +"$ aptitude why kdepim\n" +"i nautilus-data Recommends nautilus\n" +"i A nautilus Recommends desktop-base (>= 0.2)\n" +"i A desktop-base Suggests gnome | kde | xfce4 | wmaker\n" +"p kde Depends kdepim (>= 4:3.4.3)" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:702 +msgid "" +"The command <literal>why</literal> finds a dependency chain that installs " +"the package named on the command line, as above. Note that the dependency " +"that aptitude produced in this case is only a suggestion. This is because " +"no package currently installed on this computer depends on or recommends the " +"<systemitem>kdepim</systemitem> package; if a stronger dependency were " +"available, aptitude would have displayed it." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:713 +msgid "" +"In contrast, <literal>why-not</literal> finds a dependency chain leading to " +"a conflict with the target package:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><screen> +#: en/manpage.xml:718 +#, no-wrap +msgid "" +"$ aptitude why-not textopo\n" +"i ocaml-core Depends ocamlweb\n" +"i A ocamlweb Depends tetex-extra | texlive-latex-extra\n" +"i A texlive-latex-extra Conflicts textopo" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:724 +msgid "" +"If one or more <replaceable>pattern</replaceable>s are present, then " +"aptitude will begin its search at these patterns; that is, the first package " +"in the chain it prints will be a package matching the pattern in question. " +"The patterns are considered to be package names unless they contain a tilde " +"character (<quote><literal>~</literal></quote>) or a question mark " +"(<quote><literal>?</literal></quote>), in which case they are treated as " +"search patterns (see the section <quote><link " +"linkend='secSearchPatterns'>Search Patterns</link></quote> in the &aptitude; " +"reference manual)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:739 +msgid "" +"If no patterns are present, then &aptitude; will search for dependency " +"chains beginning at manually installed packages. This effectively shows the " +"packages that have caused or would cause a given package to be installed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><note><para> +#: en/manpage.xml:747 +msgid "" +"<literal>aptitude why</literal> does not perform full dependency resolution; " +"it only displays direct relationships between packages. For instance, if A " +"requires B, C requires D, and B and C conflict, <quote><literal>aptitude why-" +"not D</literal></quote> will not produce the answer <quote>A depends on B, B " +"conflicts with C, and D depends on C</quote>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:758 +msgid "" +"By default aptitude outputs only the <quote>most installed, strongest, " +"tightest, shortest</quote> dependency chain. That is, it looks for a chain " +"that only contains packages which are installed or will be installed; it " +"looks for the strongest possible dependencies under that restriction; it " +"looks for chains that avoid ORed dependencies and Provides; and it looks for " +"the shortest dependency chain meeting those criteria. These rules are " +"progressively weakened until a match is found." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:771 +msgid "" +"If the verbosity level is 1 or more, then <emphasis>all</emphasis> the " +"explanations aptitude can find will be displayed, in inverse order of " +"relevance. If the verbosity level is 2 or more, a truly excessive amount of " +"debugging information will be printed to standard output." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:780 +msgid "" +"This command returns 0 if successful, 1 if no explanation could be " +"constructed, and -1 if an error occured." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:787 +msgid "<literal>clean</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:791 +msgid "" +"Removes all previously downloaded <literal>.deb</literal> files from the " +"package cache directory (usually <filename>/var/cache/apt/archives</" +"filename>)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:798 +msgid "<literal>autoclean</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:802 +msgid "" +"Removes any cached packages which can no longer be downloaded. This allows " +"you to prevent a cache from growing out of control over time without " +"completely emptying it." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:811 +msgid "<literal>changelog</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:815 +msgid "" +"Downloads and displays the Debian changelog for each of the given source or " +"binary packages." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:820 +msgid "" +"By default, the changelog for the version which would be installed with " +"<quote><literal>aptitude install</literal></quote> is downloaded. You can " +"select a particular version of a package by appending " +"<literal>=<replaceable>version</replaceable></literal> to the package name; " +"you can select the version from a particular archive by appending <literal>/" +"<replaceable>archive</replaceable></literal> to the package name." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:832 +msgid "<literal>download</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:836 +msgid "" +"Downloads the <literal>.deb</literal> file for the given package to the " +"current directory. If a package name contains a tilde character " +"(<quote><literal>~</literal></quote>) or a question mark (<quote><literal>?</" +"literal></quote>), it will be treated as a search pattern and all the " +"matching packages will be downloaded (see the section <quote><link " +"linkend='secSearchPatterns'>Search Patterns</link></quote> in the &aptitude; " +"reference manual)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:848 +msgid "" +"By default, the version which would be installed with " +"<quote><literal>aptitude install</literal></quote> is downloaded. You can " +"select a particular version of a package by appending " +"<literal>=<replaceable>version</replaceable></literal> to the package name; " +"you can select the version from a particular archive by appending <literal>/" +"<replaceable>archive</replaceable></literal> to the package name." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:860 +msgid "<literal>extract-cache-subset</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:864 +msgid "" +"Copy the apt configuration directory (<literal>/etc/apt</literal>) and a " +"subset of the package database to the specified directory. If no packages " +"are listed, the entire package database is copied; otherwise only the " +"entries corresponding to the named packages are copied. Each package name " +"may be a search pattern, and all the packages matching that pattern will be " +"selected (see the section <quote><link linkend='secSearchPatterns'>Search " +"Patterns</link></quote> in the &aptitude; reference manual). Any existing " +"package database files in the output directory will be overwritten." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:879 +msgid "" +"Dependencies in binary package stanzas will be rewritten to remove " +"references to packages not in the selected set." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:886 +msgid "<literal>help</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:890 +msgid "Displays a brief summary of the available commands and options." +msgstr "" + +# type: Content of: <refentry><refsect1><title> +#: en/manpage.xml:899 en/manpage.xml:2269 en/manpage.xml:2448 +msgid "Options" +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:902 +msgid "" +"The following options may be used to modify the behavior of the actions " +"described above. Note that while all options will be accepted for all " +"commands, some options don't apply to particular commands and will be " +"ignored by those commands." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:912 +msgid "<literal>--add-user-tag <replaceable>tag</replaceable></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:916 +msgid "" +"For <literal>full-upgrade</literal>, <literal>safe-upgrade</literal>, " +"<literal>forbid-version</literal>, <literal>hold</literal>, " +"<literal>install</literal>, <literal>keep-all</literal>, <literal>markauto</" +"literal>, <literal>unmarkauto</literal>, <literal>purge</literal>, " +"<literal>reinstall</literal>, <literal>remove</literal>, <literal>unhold</" +"literal>, and <literal>unmarkauto</literal>: add the user tag " +"<replaceable>tag</replaceable> to all packages that are installed, removed, " +"or upgraded by this command as if with the <link " +"linkend='cmdlineAddOrRemoveUserTags'><literal>add-user-tag</literal></link> " +"command." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:935 +msgid "" +"<literal>--add-user-tag-to <replaceable>tag</replaceable>," +"<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:939 +msgid "" +"For <literal>full-upgrade</literal>, <literal>safe-upgrade</literal> " +"<literal>forbid-version</literal>, <literal>hold</literal>, " +"<literal>install</literal>, <literal>keep-all</literal>, <literal>markauto</" +"literal>, <literal>unmarkauto</literal>, <literal>purge</literal>, " +"<literal>reinstall</literal>, <literal>remove</literal>, <literal>unhold</" +"literal>, and <literal>unmarkauto</literal>: add the user tag " +"<replaceable>tag</replaceable> to all packages that match " +"<replaceable>pattern</replaceable> as if with the <link " +"linkend='cmdlineAddOrRemoveUserTags'><literal>add-user-tag</literal></link> " +"command. The pattern is a search pattern as described in the section " +"<quote><link linkend='secSearchPatterns'>Search Patterns</link></quote> in " +"the &aptitude; reference manual." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:957 +msgid "" +"For instance, <literal>aptitude safe-upgrade --add-user-tag-to \"new-" +"installs,?action(install)\"</literal> will add the tag <literal>new-" +"installs</literal> to all the packages installed by the <link " +"linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link> command." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:968 +msgid "<literal>--allow-new-upgrades</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:972 +msgid "" +"When the safe resolver is being used (i.e., <link " +"linkend='cmdlineSafeResolver'><literal>--safe-resolver</literal></link> was " +"passed or <link linkend='configAlways-Use-Safe-Resolver'><literal>Aptitude::" +"Always-Use-Safe-Resolver</literal></link> is set to <literal>true</" +"literal>), allow the dependency resolver to install upgrades for packages " +"regardless of the value of <link linkend='configSafe-Resolver-No-New-" +"Upgrades'><literal>Aptitude::Safe-Resolver::No-New-Upgrades</literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:985 +msgid "<literal>--allow-new-installs</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:989 +msgid "" +"Allow the <link linkend='manpageSafeUpgrade'><literal>safe-upgrade</" +"literal></link> command to install new packages; when the safe resolver is " +"being used (i.e., <link linkend='cmdlineSafeResolver'><literal>--safe-" +"resolver</literal></link> was passed or <link linkend='configAlways-Use-Safe-" +"Resolver'><literal>Aptitude::Always-Use-Safe-Resolver</literal></link> is " +"set to <literal>true</literal>), allow the dependency resolver to install " +"new packages. This option takes effect regardless of the value of <link " +"linkend='configSafe-Resolver-No-New-Installs'><literal>Aptitude::Safe-" +"Resolver::No-New-Installs</literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1005 +msgid "<literal>--allow-untrusted</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1009 +msgid "" +"Install packages from untrusted sources without prompting. You should only " +"use this if you know what you are doing, as it could easily compromise your " +"system's security." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1017 +msgid "<literal>--disable-columns</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1021 +msgid "" +"This option causes <literal>aptitude search</literal> to output its results " +"without any special formatting. In particular: normally &aptitude; will add " +"whitespace or truncate search results in an attempt to fit its results into " +"vertical <quote>columns</quote>. With this flag, each line will be formed " +"by replacing any format escapes in the format string with the correponding " +"text; column widths will be ignored." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1032 +msgid "" +"For instance, the first few lines of output from <quote><literal>aptitude " +"search -F '%p %V' --disable-columns libedataserver</literal></quote> might " +"be:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><screen> +#: en/manpage.xml:1035 +#, no-wrap +msgid "" +"disksearch 1.2.1-3\n" +"hp-search-mac 0.1.3\n" +"libbsearch-ruby 1.5-5\n" +"libbsearch-ruby1.8 1.5-5\n" +"libclass-dbi-abstractsearch-perl 0.07-2\n" +"libdbix-fulltextsearch-perl 0.73-10" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1043 +msgid "" +"As in the above example, <literal>--disable-columns</literal> is often " +"useful in combination with a custom display format set using the command-" +"line option <link linkend='cmdlineOptionFormat'><literal>-F</literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1051 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Disable-Columns'>Aptitude::CmdLine::Disable-Columns</" +"link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1059 +msgid "<literal>-D</literal>, <literal>--show-deps</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1063 +msgid "" +"For commands that will install or remove packages (<literal>install</" +"literal>, <link linkend='manpageFullUpgrade'><literal>full-upgrade</" +"literal></link>, etc), show brief explanations of automatic installations " +"and removals." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1071 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Show-Deps'>Aptitude::CmdLine::Show-Deps</link></" +"literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1077 +msgid "<literal>-d</literal>, <literal>--download-only</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1081 +msgid "" +"Download packages to the package cache as necessary, but do not install or " +"remove anything. By default, the package cache is stored in <filename>/var/" +"cache/apt/archives</filename>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1088 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Download-Only'>Aptitude::CmdLine::Download-Only</" +"link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1096 +msgid "" +"<literal>-F</literal> <replaceable>format</replaceable>, <literal>--display-" +"format</literal> <replaceable>format</replaceable>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1101 +msgid "" +"Specify the format which should be used to display output from the " +"<literal>search</literal> command. For instance, passing <quote><literal>%p " +"%V %v</literal></quote> for <replaceable>format</replaceable> will display a " +"package's name, followed by its currently installed version and its " +"available version (see the section <quote><link " +"linkend='secDisplayFormat'>Customizing how packages are displayed</link></" +"quote> in the &aptitude; reference manual for more information)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1110 +msgid "" +"The command-line option <link " +"linkend='cmdlineOptionDisableColumns'><literal>--disable-columns</literal></" +"link> is often useful in combination with <literal>-F</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1116 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Package-Display-Format'>Aptitude::CmdLine::Package-" +"Display-Format</link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1122 +msgid "<literal>-f</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1126 +msgid "" +"Try hard to fix the dependencies of broken packages, even if it means " +"ignoring the actions requested on the command line." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1132 +msgid "" +"This corresponds to the configuration item <literal><link " +"linkend='configCmdLine-Fix-Broken'>Aptitude::CmdLine::Fix-Broken</link></" +"literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1138 +msgid "<literal>--full-resolver</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1142 +msgid "" +"When package dependency problems are encountered, use the default " +"<quote>full</quote> resolver to solve them. Unlike the <quote>safe</quote> " +"resolver activated by <link linkend='cmdlineSafeResolver'><literal>--safe-" +"resolver</literal></link>, the full resolver will happily remove packages to " +"fulfill dependencies. It can resolve more situations than the safe " +"algorithm, but its solutions are more likely to be undesirable." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1153 +msgid "" +"This option can be used to force the use of the full resolver even when " +"<link linkend='configAlways-Use-Safe-Resolver'><literal>Aptitude::Always-Use-" +"Safe-Resolver</literal></link> is true. The <link " +"linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link> command " +"never uses the full resolver and does not accept the <literal>--full-" +"resolver</literal> option." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1166 +msgid "<literal>-h</literal>, <literal>--help</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1171 +msgid "" +"Display a brief help message. Identical to the <literal>help</literal> " +"action." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1178 +msgid "<literal>--log-config-file=<replaceable>file</replaceable></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1183 +msgid "" +"Read logging configuration from the given <replaceable>file</replaceable>. " +"The logging configuration is in the file format used by <ulink " +"linkend='http://logging.apahce.org/log4cxx/'><literal>log4cxx</literal></" +"ulink>; the file will be re-read periodically to see whether any settings " +"have been changed. If this option appears multiple times, the last " +"occurrence is the only one that will take effect." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1194 +msgid "" +"This does not affect the log of installations that aptitude has performed " +"(<filename>/var/log/aptitude</filename>); the log messages written using " +"this configuration include internal program events, errors, and debugging " +"messages. See the command-line options <link " +"linkend='cmdlineOptionLogFile'><literal>--log-file</literal></link> and " +"<link linkend='cmdlineOptionLogLevel'><literal>--log-level</literal></link> " +"for a simpler, but less flexible, way to configure logging at the command-" +"line; they override any settings made in this configuration file." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1209 +msgid "" +"This corresponds to the configuration option <link " +"linkend='configLoggingConfigFile'><literal>Aptitude::Logging::Config-File</" +"literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1217 +msgid "<literal>--log-file=<replaceable>file</replaceable></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1222 +msgid "" +"If <replaceable>file</replaceable> is a nonempty string, log messages will " +"be written to it, except that if <replaceable>file</replaceable> is " +"<quote><literal>-</literal></quote>, the messages will be written to " +"standard output instead. If this option appears multiple times, the last " +"occurrence is the one that will take effect." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1232 +msgid "" +"This does not affect the log of installations that aptitude has performed " +"(<filename>/var/log/aptitude</filename>); the log messages written using " +"this configuration include internal program events, errors, and debugging " +"messages. See the command-line option <link " +"linkend='cmdlineOptionLogLevel'><literal>--log-level</literal></link> to get " +"more control over what gets logged, and the command-line option <link " +"linkend='cmdlineOptionLogConfigFile'><literal>--log-config-file</literal></" +"link> for a more flexible, but also more complex, way to configure logging. " +"<literal>--log-file</literal> will cause messages to be sent to the given " +"log-file in addition to any other files configured by <literal>--log-config-" +"file</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1250 +msgid "" +"This corresponds to the configuration option <link " +"linkend='configLoggingFile'><literal>Aptitude::Logging::File</literal></" +"link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1258 +msgid "" +"<literal>--log-level=<replaceable>level</replaceable></literal>, <literal>--" +"log-level=<replaceable>category</replaceable>:<replaceable>level</" +"replaceable></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1263 +msgid "" +"<literal>--log-level=<replaceable>level</replaceable></literal> causes " +"&aptitude; to only log messages whose level is <replaceable>level</" +"replaceable> or higher. For instance, setting the log level to " +"<literal>error</literal> will cause only messages at the log levels " +"<literal>error</literal> and <literal>fatal</literal> to be displayed; all " +"others will be hidden. Valid log levels (in descending order) are " +"<literal>off</literal>, <literal>fatal</literal>, <literal>error</literal>, " +"<literal>warn</literal>, <literal>info</literal>, <literal>debug</literal>, " +"and <literal>trace</literal>. The default log level is <literal>warn</" +"literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1278 +msgid "" +"<literal>--log-level=<replaceable>category</replaceable>:<replaceable>level</" +"replaceable></literal> causes messages in <replaceable>category</" +"replaceable> to only be logged if their level is <replaceable>level</" +"replaceable> or higher." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1285 +msgid "" +"<literal>--log-level</literal> may appear multiple times on the command " +"line; the most specific setting is the one that takes effect, so if you pass " +"<literal>--log-level=aptitude.resolver:fatal</literal> and <literal>--log-" +"level=aptitude.resolver.hints.match:trace</literal>, then messages in " +"<literal>aptitude.resolver.hints.parse</literal> will only be printed if " +"their level is <literal>fatal</literal>, but all messages in " +"<literal>aptitude.resolver.hints.match</literal> will be printed. If you " +"set the level of the same category two or more times, the last setting is " +"the one that will take effect." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1301 +msgid "" +"This does not affect the log of installations that aptitude has performed " +"(<filename>/var/log/aptitude</filename>); the log messages written using " +"this configuration include internal program events, errors, and debugging " +"messages. See the command-line option <link " +"linkend='cmdlineOptionLogLevel'><literal>--log-file</literal></link> to " +"change where log messages go, and the command-line option <link " +"linkend='cmdlineOptionLogConfigFile'><literal>--log-config-file</literal></" +"link> for a more flexible, but also more complex, way to configure logging. " +"<literal>--log-level</literal> will override any log levels configured by " +"<literal>--log-config-file</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1318 +msgid "" +"This corresponds to the configuration group <link " +"linkend='configLoggingLevels'><literal>Aptitude::Logging::Levels</literal></" +"link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1326 +msgid "<literal>--log-resolver</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1331 +msgid "" +"Set some standard log levels related to the resolver, to produce logging " +"output suitable for processing with automated tools. This is equivalent to " +"the command-line options <literal>--log-level=aptitude.resolver.search:trace " +"--log-level=aptitude.resolver.search.tiers:warn</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1343 +msgid "<literal>--no-new-installs</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1348 +msgid "" +"Prevent <link linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></" +"link> from installing any new packages; when the safe resolver is being used " +"(i.e., <link linkend='cmdlineSafeResolver'><literal>--safe-resolver</" +"literal></link> was passed or <link linkend='configAlways-Use-Safe-" +"Resolver'><literal>Aptitude::Always-Use-Safe-Resolver</literal></link> is " +"set to <literal>true</literal>), forbid the dependency resolver from " +"installing new packages. This option takes effect regardless of the value " +"of <link linkend='configSafe-Resolver-No-New-Installs'><literal>Aptitude::" +"Safe-Resolver::No-New-Installs</literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1362 +msgid "" +"This mimics the historical behavior of <command>apt-get upgrade</command>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1367 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Safe-Upgrade-No-New-Installs'>Aptitude::CmdLine::Safe-" +"Upgrade::No-New-Installs</link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1375 +msgid "<literal>--no-new-upgrades</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1379 +msgid "" +"When the safe resolver is being used (i.e., <link " +"linkend='cmdlineSafeResolver'><literal>--safe-resolver</literal></link> was " +"passed or <link linkend='configAlways-Use-Safe-Resolver'><literal>Aptitude::" +"Always-Use-Safe-Resolver</literal></link> is set to <literal>true</" +"literal>), allow the dependency resolver to install new packages regardless " +"of the value of <link linkend='configSafe-Resolver-No-New-" +"Upgrades'><literal>Aptitude::Safe-Resolver::No-New-Installs</literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1392 +msgid "<literal>--no-show-resolver-actions</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1396 +msgid "" +"Do not display the actions performed by the <quote>safe</quote> resolver, " +"overriding any configuration option or earlier <link " +"linkend='cmdlineOptionShowResolverActions'><literal>--show-resolver-actions</" +"literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1405 +msgid "" +"<literal>-O</literal> <replaceable>order</replaceable>, <literal>--sort</" +"literal> <replaceable>order</replaceable>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1409 +msgid "" +"Specify the order in which output from the <link " +"linkend='cmdlineSearch'><literal>search</literal></link> command should be " +"displayed. For instance, passing <quote><literal>installsize</literal></" +"quote> for <replaceable>order</replaceable> will list packages in order " +"according to their size when installed (see the section <quote><link " +"linkend='secSortingPolicy'>Customizing how packages are sorted</link></" +"quote> in the &aptitude; reference manual for more information)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1418 +msgid "" +"<literal>-o</literal> <replaceable>key</replaceable><literal>=</" +"literal><replaceable>value</replaceable>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1422 +msgid "" +"Set a configuration file option directly; for instance, use <literal>-o " +"Aptitude::Log=/tmp/my-log</literal> to log &aptitude;'s actions to " +"<filename>/tmp/my-log</filename>. For more information on configuration " +"file options, see the section <quote><link " +"linkend='secConfigFile'>Configuration file reference</link></quote> in the " +"&aptitude; reference manual." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1435 +msgid "<literal>-P</literal>, <literal>--prompt</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1439 +msgid "" +"Always display a prompt before downloading, installing or removing packages, " +"even when no actions other than those explicitly requested will be performed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1445 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Always-Prompt'>Aptitude::CmdLine::Always-Prompt</" +"link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1452 +msgid "<literal>--purge-unused</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1456 +msgid "" +"If <literal><link linkend='configDelete-Unused'>Aptitude::Delete-Unused</" +"link></literal> is set to <quote><literal>true</literal></quote> (its " +"default), then in addition to removing each package that is no longer " +"required by any installed package, &aptitude; will also purge them, removing " +"their configuration files and perhaps other important data. For more " +"information about which packages are considered to be <quote>unused</quote>, " +"see the section <quote><link linkend='secAutoInstall'>Managing Automatically " +"Installed Packages</link></quote> in the &aptitude; reference manual. " +"<emphasis>THIS OPTION CAN CAUSE DATA LOSS! DO NOT USE IT UNLESS YOU KNOW " +"WHAT YOU ARE DOING!</emphasis>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1472 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configPurge-Unused'>Aptitude::Purge-Unused</link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1480 +msgid "" +"<literal>-q<optional>=<replaceable>n</replaceable></optional></literal>, " +"<literal>--quiet<optional>=<replaceable>n</replaceable></optional></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1484 +msgid "" +"Suppress all incremental progress indicators, thus making the output " +"loggable. This may be supplied multiple times to make the program quieter, " +"but unlike &apt-get;, &aptitude; does not enable <literal>-y</literal> when " +"<literal>-q</literal> is supplied more than once." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1493 +msgid "" +"The optional <literal>=<replaceable>n</replaceable></literal> may be used to " +"directly set the amount of quietness (for instance, to override a setting in " +"<filename>/etc/apt/apt.conf</filename>); it causes the program to behave as " +"if <literal>-q</literal> had been passed exactly <replaceable>n</" +"replaceable> times." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1504 +msgid "<literal>-R</literal>, <literal>--without-recommends</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1508 +msgid "" +"Do <emphasis>not</emphasis> treat recommendations as dependencies when " +"installing new packages (this overrides settings in <filename>/etc/apt/apt." +"conf</filename> and <filename>~/.aptitude/config</filename>). Packages " +"previously installed due to recommendations will not be removed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1515 +msgid "" +"This corresponds to the pair of configuration options <literal><link " +"linkend='configAptInstall-Recommends'>Apt::Install-Recommends</link></" +"literal> and <literal><link linkend='configKeep-Recommends'>Aptitude::Keep-" +"Recommends</link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1521 +msgid "<literal>-r</literal>, <literal>--with-recommends</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1525 +msgid "" +"Treat recommendations as dependencies when installing new packages (this " +"overrides settings in <filename>/etc/apt/apt.conf</filename> and " +"<filename>~/.aptitude/config</filename>)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1530 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configAptInstall-Recommends'>Apt::Install-Recommends</link></" +"literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1536 +msgid "<literal>--remove-user-tag <replaceable>tag</replaceable></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1540 +msgid "" +"For <literal>full-upgrade</literal>, <literal>safe-upgrade</literal> " +"<literal>forbid-version</literal>, <literal>hold</literal>, " +"<literal>install</literal>, <literal>keep-all</literal>, <literal>markauto</" +"literal>, <literal>unmarkauto</literal>, <literal>purge</literal>, " +"<literal>reinstall</literal>, <literal>remove</literal>, <literal>unhold</" +"literal>, and <literal>unmarkauto</literal>: remove the user tag " +"<replaceable>tag</replaceable> from all packages that are installed, " +"removed, or upgraded by this command as if with the <link " +"linkend='cmdlineAddOrRemoveUserTags'><literal>add-user-tag</literal></link> " +"command." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1559 +msgid "" +"<literal>--remove-user-tag-from <replaceable>tag</replaceable>," +"<replaceable>pattern</replaceable></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1563 +msgid "" +"For <literal>full-upgrade</literal>, <literal>safe-upgrade</literal> " +"<literal>forbid-version</literal>, <literal>hold</literal>, " +"<literal>install</literal>, <literal>keep-all</literal>, <literal>markauto</" +"literal>, <literal>unmarkauto</literal>, <literal>purge</literal>, " +"<literal>reinstall</literal>, <literal>remove</literal>, <literal>unhold</" +"literal>, and <literal>unmarkauto</literal>: remove the user tag " +"<replaceable>tag</replaceable> from all packages that match " +"<replaceable>pattern</replaceable> as if with the <link " +"linkend='cmdlineAddOrRemoveUserTags'><literal>remove-user-tag</literal></" +"link> command. The pattern is a search pattern as described in the section " +"<quote><link linkend='secSearchPatterns'>Search Patterns</link></quote> in " +"the &aptitude; reference manual." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1583 +msgid "" +"For instance, <literal>aptitude safe-upgrade --remove-user-tag-from \"not-" +"upgraded,?action(upgrade)\"</literal> will remove the <literal>not-upgraded</" +"literal> tag from all packages that the <link " +"linkend='manpageSafeUpgrade'><literal>safe-upgrade</literal></link> command " +"is able to upgrade." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1595 +msgid "<literal>-s</literal>, <literal>--simulate</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1599 +msgid "" +"In command-line mode, print the actions that would normally be performed, " +"but don't actually perform them. This does not require &root; privileges. " +"In the visual interface, always open the cache in read-only mode regardless " +"of whether you are &root;." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1607 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configSimulate'>Aptitude::Simulate</link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1614 +msgid "<literal>--safe-resolver</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1618 +msgid "" +"When package dependency problems are encountered, use a <quote>safe</quote> " +"algorithm to solve them. This resolver attempts to preserve as many of your " +"choices as possible; it will never remove a package or install a version of " +"a package other than the package's default candidate version. It is the " +"same algorithm used in <link linkend='manpageSafeUpgrade'><literal>safe-" +"upgrade</literal></link>; indeed, <literal>aptitude --safe-resolver full-" +"upgrade</literal> is equivalent to <literal>aptitude safe-upgrade</" +"literal>. Because <literal>safe-upgrade</literal> always uses the safe " +"resolver, it does not accept the <literal>--safe-resolver</literal> flag." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1634 +msgid "" +"This option is equivalent to setting the configuration variable <link " +"linkend='configAlways-Use-Safe-Resolver'><literal>Aptitude::Always-Use-Safe-" +"Resolver</literal></link> to <literal>true</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1643 +msgid "<literal>--schedule-only</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1647 +msgid "" +"For commands that modify package states, schedule operations to be performed " +"in the future, but don't perform them. You can execute scheduled actions by " +"running <literal>aptitude install</literal> with no arguments. This is " +"equivalent to making the corresponding selections in <link " +"linkend='secUsingVisual'>visual mode</link>, then exiting the program " +"normally." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1657 +msgid "" +"For instance, <literal>aptitude --schedule-only install evolution</literal> " +"will schedule the <literal>evolution</literal> package for later " +"installation." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1666 +msgid "<literal>--show-resolver-actions</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1670 +msgid "Display the actions performed by the <quote>safe</quote> resolver." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1677 +msgid "" +"<literal>--show-summary<optional>=<replaceable>MODE</replaceable></" +"optional></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1681 +msgid "" +"Changes the behavior of <quote><literal>aptitude why</literal></quote> to " +"summarize each dependency chain that it outputs, rather than displaying it " +"in long form. If this option is present and <replaceable>MODE</replaceable> " +"is not <quote><literal>no-summary</literal></quote>, chains that contain " +"Suggests dependencies will not be displayed: combine <literal>--show-" +"summary</literal> with <literal>-v</literal> to see a summary of all the " +"reasons for the target package to be installed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1694 +msgid "<replaceable>MODE</replaceable> can be any one of the following:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><orderedlist><listitem><para> +#: en/manpage.xml:1701 +msgid "" +"<literal>no-summary</literal>: don't show a summary (the default behavior if " +"<literal>--show-summary</literal> is not present)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><orderedlist><listitem><para> +#: en/manpage.xml:1709 +msgid "" +"<literal>first-package</literal>: display the first package in each chain. " +"This is the default value of <replaceable>MODE</replaceable> if it is not " +"present." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><orderedlist><listitem><para> +#: en/manpage.xml:1717 +msgid "" +"<literal>first-package-and-type</literal>: display the first package in each " +"chain, along with the strength of the weakest dependency in the chain." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><orderedlist><listitem><para> +#: en/manpage.xml:1725 +msgid "" +"<literal>all-packages</literal>: briefly display each chain of dependencies " +"leading to the target package." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><orderedlist><listitem><para> +#: en/manpage.xml:1732 +msgid "" +"<literal>all-packages-with-dep-versions</literal>: briefly display each " +"chain of dependencies leading to the target package, including the target " +"version of each dependency." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1741 +msgid "" +"This option corresponds to the configuration item <link " +"linkend='configCmdLine-Show-Summary'><literal>Aptitude::CmdLine::Show-" +"Summary</literal></link>; if <literal>--show-summary</literal> is present on " +"the command-line, it will override <link linkend='configCmdLine-Show-" +"Summary'><literal>Aptitude::CmdLine::Show-Summary</literal></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><example><title> +#: en/manpage.xml:1749 +msgid "Usage of <literal>--show-summary</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><example><para> +#: en/manpage.xml:1752 +msgid "" +"<literal>--show-summary</literal> used with <literal>-v</literal> to display " +"all the reasons a package is installed:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><example><screen> +#: en/manpage.xml:1757 +#, no-wrap +msgid "" +"$ aptitude -v --show-summary why foomatic-db\n" +"Packages requiring foomatic-db:\n" +" cupsys-driver-gutenprint\n" +" foomatic-db-engine\n" +" foomatic-db-gutenprint\n" +" foomatic-db-hpijs\n" +" foomatic-filters-ppds\n" +" foomatic-gui\n" +" kde\n" +" printconf\n" +" wine\n" +"\n" +"$ aptitude -v --show-summary=first-package-and-type why foomatic-db\n" +"Packages requiring foomatic-db:\n" +" [Depends] cupsys-driver-gutenprint\n" +" [Depends] foomatic-db-engine\n" +" [Depends] foomatic-db-gutenprint\n" +" [Depends] foomatic-db-hpijs\n" +" [Depends] foomatic-filters-ppds\n" +" [Depends] foomatic-gui\n" +" [Depends] kde\n" +" [Depends] printconf\n" +" [Depends] wine\n" +"\n" +"$ aptitude -v --show-summary=all-packages why foomatic-db\n" +"Packages requiring foomatic-db:\n" +" cupsys-driver-gutenprint D: cups-driver-gutenprint D: cups R: foomatic-filters R: foomatic-db-engine D: foomatic-db\n" +" foomatic-filters-ppds D: foomatic-filters R: foomatic-db-engine D: foomatic-db\n" +" kde D: kdeadmin R: system-config-printer-kde D: system-config-printer R: hal-cups-utils D: cups R: foomatic-filters R: foomatic-db-engine D: foomatic-db\n" +" wine D: libwine-print D: cups-bsd R: cups R: foomatic-filters R: foomatic-db-engine D: foomatic-db\n" +" foomatic-db-engine D: foomatic-db\n" +" foomatic-db-gutenprint D: foomatic-db\n" +" foomatic-db-hpijs D: foomatic-db\n" +" foomatic-gui D: python-foomatic D: foomatic-db-engine D: foomatic-db\n" +" printconf D: foomatic-db\n" +"\n" +"$ aptitude -v --show-summary=all-packages-with-dep-versions why foomatic-db\n" +"Packages requiring foomatic-db:\n" +" cupsys-driver-gutenprint D: cups-driver-gutenprint (>= 5.0.2-4) D: cups (>= 1.3.0) R: foomatic-filters (>= 4.0) R: foomatic-db-engine (>= 4.0) D: foomatic-db (>= 20090301)\n" +" foomatic-filters-ppds D: foomatic-filters R: foomatic-db-engine (>= 4.0) D: foomatic-db (>= 20090301)\n" +" kde D: kdeadmin (>= 4:3.5.5) R: system-config-printer-kde (>= 4:4.2.2-1) D: system-config-printer (>= 1.0.0) R: hal-cups-utils D: cups R: foomatic-filters (>= 4.0) R: foomatic-db-engine (>= 4.0) D: foomatic-db (>= 20090301)\n" +" wine D: libwine-print (= 1.1.15-1) D: cups-bsd R: cups R: foomatic-filters (>= 4.0) R: foomatic-db-engine (>= 4.0) D: foomatic-db (>= 20090301)\n" +" foomatic-db-engine D: foomatic-db\n" +" foomatic-db-gutenprint D: foomatic-db\n" +" foomatic-db-hpijs D: foomatic-db\n" +" foomatic-gui D: python-foomatic (>= 0.7.9.2) D: foomatic-db-engine D: foomatic-db (>= 20090301)\n" +" printconf D: foomatic-db\n" +"\t " +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><example><para> +#: en/manpage.xml:1807 +msgid "<literal>--show-summary</literal> used to list a chain on one line:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><example><screen> +#: en/manpage.xml:1810 +#, no-wrap +msgid "" +"$ aptitude --show-summary=all-packages why aptitude-gtk libglib2.0-data\n" +"Packages requiring libglib2.0-data:\n" +" aptitude-gtk D: libglib2.0-0 R: libglib2.0-data" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1818 +msgid "" +"<literal>-t</literal> <replaceable>release</replaceable>, <literal>--target-" +"release</literal> <replaceable>release</replaceable>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1822 +msgid "" +"Set the release from which packages should be installed. For instance, " +"<quote><literal>aptitude -t experimental ...</literal></quote> will install " +"packages from the experimental distribution unless you specify otherwise. " +"For the command-line actions <quote>changelog</quote>, <quote>download</" +"quote>, and <quote>show</quote>, this is equivalent to appending <literal>/" +"<replaceable>release</replaceable></literal> to each package named on the " +"command-line; for other commands, this will affect the default candidate " +"version of packages according to the rules described in " +"<citerefentry><refentrytitle>apt_preferences</refentrytitle><manvolnum>5</" +"manvolnum></citerefentry>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1834 +msgid "" +"This corresponds to the configuration item <literal>APT::Default-Release</" +"literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1840 +msgid "<literal>-V</literal>, <literal>--show-versions</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1844 +msgid "Show which versions of packages will be installed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1848 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Show-Versions'>Aptitude::CmdLine::Show-Versions</" +"link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1854 +msgid "<literal>-v</literal>, <literal>--verbose</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1858 +msgid "" +"Causes some commands (for instance, <literal>show</literal>) to display " +"extra information. This may be supplied multiple times to get more and more " +"information." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1862 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Verbose'>Aptitude::CmdLine::Verbose</link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1868 +msgid "<literal>--version</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1872 +msgid "" +"Display the version of &aptitude; and some information about how it was " +"compiled." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1877 +msgid "" +"When executing the command <link linkend='manpageSafeUpgrade'><literal>safe-" +"upgrade</literal></link> or when the option <link " +"linkend='cmdlineSafeResolver'>--safe-resolver</link> is present, &aptitude; " +"will display a summary of the actions performed by the resolver before " +"printing the installation preview. This is equivalent to the configuration " +"options <link linkend='configCmdLine-Safe-Upgrade-Show-Resolver-" +"Actions'><literal>Aptitude::CmdLine::Safe-Upgrade::Show-Resolver-Actions</" +"literal></link> and <link linkend='configSafe-Resolver-Show-Resolver-" +"Actions'><literal>Aptitude::Safe-Resolver::Show-Resolver-Actions</literal></" +"link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1889 +msgid "<literal>--visual-preview</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1893 +msgid "" +"When installing or removing packages from the command line, instead of " +"displaying the usual prompt, start up the visual interface and display its " +"preview screen." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1902 +msgid "<literal>-W</literal>, <literal>--show-why</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1906 +msgid "" +"In the preview displayed before packages are installed or removed, show " +"which manually installed package requires each automatically installed " +"package. For instance:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><screen> +#: en/manpage.xml:1911 +#, no-wrap +msgid "" +"$ aptitude --show-why install mediawiki\n" +"...\n" +"The following NEW packages will be installed:\n" +" libapache2-mod-php5{a} (for mediawiki) mediawiki php5{a} (for mediawiki)\n" +" php5-cli{a} (for mediawiki) php5-common{a} (for mediawiki)\n" +" php5-mysql{a} (for mediawiki)" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1919 +msgid "" +"When combined with <literal>-v</literal> or a non-zero value for <link " +"linkend='configCmdLine-Verbose'><literal>Aptitude::CmdLine::Verbose</" +"literal></link>, this displays the entire chain of dependencies that lead " +"each package to be installed. For instance:" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><screen> +#: en/manpage.xml:1926 +#, no-wrap +msgid "" +"$ aptitude -v --show-why install libdb4.2-dev\n" +"The following NEW packages will be installed:\n" +" libdb4.2{a} (libdb4.2-dev D: libdb4.2) libdb4.2-dev\n" +"The following packages will be REMOVED:\n" +" libdb4.4-dev{a} (libdb4.2-dev C: libdb-dev P<- libdb-dev)" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1933 +msgid "" +"This option will also describe why packages are being removed, as shown " +"above. In this example, <systemitem>libdb4.2-dev</systemitem> conflicts " +"with <systemitem>libdb-dev</systemitem>, which is provided by " +"<systemitem>libdb-dev</systemitem>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1941 +msgid "" +"This argument corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Show-Why'>Aptitude::CmdLine::Show-Why</link></" +"literal> and displays the same information that is computed by " +"<literal>aptitude why</literal> and <literal>aptitude why-not</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1952 +msgid "" +"<literal>-w</literal> <replaceable>width</replaceable>, <literal>--width</" +"literal> <replaceable>width</replaceable>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1956 +msgid "" +"Specify the display width which should be used for output from the " +"<literal>search</literal> command (by default, the terminal width is used)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1962 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Package-Display-Width'>Aptitude::CmdLine::Package-" +"Display-Width</link></literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1968 +msgid "<literal>-y</literal>, <literal>--assume-yes</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1972 +msgid "" +"When a yes/no prompt would be presented, assume that the user entered " +"<quote>yes</quote>. In particular, suppresses the prompt that appears when " +"installing, upgrading, or removing packages. Prompts for <quote>dangerous</" +"quote> actions, such as removing essential packages, will still be " +"displayed. This option overrides <literal>-P</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1981 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Assume-Yes'>Aptitude::CmdLine::Assume-Yes</link></" +"literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:1987 +msgid "<literal>-Z</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1991 +msgid "" +"Show how much disk space will be used or freed by the individual packages " +"being installed, upgraded, or removed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:1997 +msgid "" +"This corresponds to the configuration option <literal><link " +"linkend='configCmdLine-Show-Size-Changes'>Aptitude::CmdLine::Show-Size-" +"Changes</link></literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2004 +msgid "" +"The following options apply to the visual mode of the program, but are " +"primarily for internal use; you generally won't need to use them yourself." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2011 +msgid "<literal>-i</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2015 +msgid "" +"Displays a download preview when the program starts (equivalent to starting " +"the program and immediately pressing <quote><keycap>g</keycap></quote>). " +"You cannot use this option and <quote><literal>-u</literal></quote> at the " +"same time." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2024 +msgid "<literal>-S</literal> <replaceable>fname</replaceable>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2028 +msgid "" +"Loads the extended state information from <replaceable>fname</replaceable> " +"instead of the standard state file." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2035 +msgid "<literal>-u</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2039 +msgid "" +"Begins updating the package lists as soon as the program starts. You cannot " +"use this option and <literal>-i</literal> at the same time." +msgstr "" + +# type: Content of: <refentry><refsect1><title> +#: en/manpage.xml:2048 +msgid "Environment" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2052 +msgid "<literal>HOME</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2056 +msgid "" +"If $HOME/.aptitude exists, aptitude will store its configuration file in " +"$HOME/.aptitude/config. Otherwise, it will look up the current user's home " +"directory using <citerefentry><refentrytitle>getpwuid</" +"refentrytitle><manvolnum>2</manvolnum></citerefentry> and place its " +"configuration file there." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2065 +msgid "<literal>PAGER</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2069 +msgid "" +"If this environment variable is set, &aptitude; will use it to display " +"changelogs when <quote><literal>aptitude changelog</literal></quote> is " +"invoked. If not set, it defaults to <literal>more</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2078 +msgid "<literal>TMP</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2082 +msgid "" +"If <literal>TMPDIR</literal> is unset, &aptitude; will store its temporary " +"files in <literal>TMP</literal> if that variable is set. Otherwise, it will " +"store them in <filename>/tmp</filename>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2091 +msgid "<literal>TMPDIR</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2095 +msgid "" +"&aptitude; will store its temporary files in the directory indicated by this " +"environment variable. If <literal>TMPDIR</literal> is not set, then " +"<literal>TMP</literal> will be used; if <literal>TMP</literal> is also " +"unset, then &aptitude; will use <filename>/tmp</filename>." +msgstr "" + +# type: Content of: <refentry><refsect1><title> +#: en/manpage.xml:2109 +msgid "Files" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2113 +msgid "<filename>/var/lib/aptitude/pkgstates</filename>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2116 +msgid "" +"The file in which stored package states and some package flags are stored." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2126 +msgid "" +"<filename>/etc/apt/apt.conf</filename>, <filename>/etc/apt/apt.conf.d/*</" +"filename>, <filename>~/.aptitude/config</filename>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2132 +msgid "" +"The configuration files for &aptitude;. <filename>~/.aptitude/config</" +"filename> overrides <filename>/etc/apt/apt.conf</filename>. See " +"<citerefentry><refentrytitle>apt.conf</refentrytitle><manvolnum>5</" +"manvolnum></citerefentry> for documentation of the format and contents of " +"these files." +msgstr "" + +# type: Content of: <refentry><refsect1><title> +#: en/manpage.xml:2145 en/manpage.xml:2348 en/manpage.xml:2556 +msgid "See also" +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2148 +msgid "" +"<citerefentry><refentrytitle>apt-get</refentrytitle><manvolnum>8</" +"manvolnum></citerefentry>, <citerefentry><refentrytitle>apt</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>, <filename>/usr/share/" +"doc/aptitude/html/<replaceable>lang</replaceable>/index.html</filename> from " +"the package aptitude-doc-<replaceable>lang</replaceable>" +msgstr "" + +# type: Content of: <refentry><refnamediv><refname> +#: en/manpage.xml:2170 en/manpage.xml:2212 +msgid "aptitude-create-state-bundle" +msgstr "" + +# type: Content of: <refentry><refentryinfo><legalnotice><para> +#: en/manpage.xml:2178 en/manpage.xml:2381 +msgid "Copyright 2007 Daniel Burrows." +msgstr "" + +# type: Content of: <refentry><refnamediv><refpurpose> +#: en/manpage.xml:2213 +msgid "bundle the current aptitude state" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:2218 +msgid "" +"<command>aptitude-create-state-bundle</command> <arg choice='opt' " +"rep='repeat'><replaceable>options</replaceable></arg> <arg " +"choice='plain'><replaceable>output-file</replaceable></arg>" +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2230 +msgid "" +"<command>aptitude-create-state-bundle</command> produces a compressed " +"archive storing the files that are required to replicate the current package " +"archive state. The following files and directories are included in the " +"bundle:" +msgstr "" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: en/manpage.xml:2238 +msgid "<filename><envar>$HOME</envar>/.aptitude</filename>" +msgstr "" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: en/manpage.xml:2246 +msgid "<filename>/var/lib/apt</filename>" +msgstr "" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: en/manpage.xml:2250 +msgid "<filename>/var/cache/apt/*.bin</filename>" +msgstr "" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: en/manpage.xml:2254 +msgid "<filename>/etc/apt</filename>" +msgstr "" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: en/manpage.xml:2258 +msgid "<filename>/var/lib/dpkg/status</filename>" +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2263 +msgid "" +"The output of this program can be used as an argument to <link " +"linkend='aptitudeRunStateBundle'><citerefentry><refentrytitle>aptitude-run-" +"state-bundle</refentrytitle><manvolnum>1</manvolnum></citerefentry></link>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2273 +msgid "<literal>--force-bzip2</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2277 +msgid "" +"Override the autodetection of which compression algorithm to use. By " +"default, <command>aptitude-create-state-bundle</command> uses " +"<citerefentry><refentrytitle>bzip2</refentrytitle><manvolnum>1</manvolnum></" +"citerefentry> if it is available, and <citerefentry><refentrytitle>gzip</" +"refentrytitle><manvolnum>1</manvolnum></citerefentry> otherwise. Passing " +"this option forces the use of <command>bzip2</command> even if it doesn't " +"appear to be available." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2291 +msgid "<literal>--force-gzip</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2295 +msgid "" +"Override the autodetection of which compression algorithm to use. By " +"default, <command>aptitude-create-state-bundle</command> uses " +"<citerefentry><refentrytitle>bzip2</refentrytitle><manvolnum>1</manvolnum></" +"citerefentry> if it is available, and <citerefentry><refentrytitle>gzip</" +"refentrytitle><manvolnum>1</manvolnum></citerefentry> otherwise. Passing " +"this option forces the use of <command>gzip</command> even if " +"<command>bzip2</command> is available." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2309 en/manpage.xml:2472 +msgid "<literal>--help</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2313 +msgid "Print a brief usage message, then exit." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2319 +msgid "<literal>--print-inputs</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2323 +msgid "" +"Instead of creating a bundle, display a list of the files and directories " +"that the program would include if it generated a bundle." +msgstr "" + +# type: Content of: <refentry><refsect1><title> +#: en/manpage.xml:2333 +msgid "File format" +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2336 +msgid "" +"The bundle file is simply a <citerefentry><refentrytitle>tar</" +"refentrytitle><manvolnum>1</manvolnum></citerefentry> file compressed with " +"<citerefentry><refentrytitle>bzip2</refentrytitle><manvolnum>1</manvolnum></" +"citerefentry> or <citerefentry><refentrytitle>gzip</" +"refentrytitle><manvolnum>1</manvolnum></citerefentry>, with each of the " +"input directory trees rooted at <quote><filename>.</filename></quote>." +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2351 +msgid "" +"<citerefentry><refentrytitle>aptitude-run-state-bundle</" +"refentrytitle><manvolnum>1</manvolnum></citerefentry>, " +"<citerefentry><refentrytitle>aptitude</refentrytitle><manvolnum>8</" +"manvolnum></citerefentry>, <citerefentry><refentrytitle>apt</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>" +msgstr "" + +# type: Content of: <refentry><refnamediv><refname> +#: en/manpage.xml:2373 en/manpage.xml:2415 +msgid "aptitude-run-state-bundle" +msgstr "" + +# type: Content of: <refentry><refnamediv><refpurpose> +#: en/manpage.xml:2416 +msgid "unpack an aptitude state bundle and invoke aptitude on it" +msgstr "" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: en/manpage.xml:2421 +msgid "" +"<command>aptitude-run-state-bundle</command> <arg choice='opt' " +"rep='repeat'><replaceable>options</replaceable></arg> <arg " +"choice='plain'><replaceable>input-file</replaceable></arg> <arg " +"choice='opt'> <replaceable>program</replaceable> <arg choice='opt' " +"rep='repeat'><replaceable>arguments</replaceable></arg></arg>" +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2435 +msgid "" +"<command>aptitude-run-state-bundle</command> unpacks the given aptitude " +"state bundle created by <citerefentry><refentrytitle>aptitude-create-state-" +"bundle</refentrytitle><manvolnum>1</manvolnum></citerefentry> to a temporary " +"directory, invokes <replaceable>program</replaceable> on it with the " +"supplied <replaceable>arguments</replaceable>, and removes the temporary " +"directory afterwards. If <replaceable>program</replaceable> is not " +"supplied, it defaults to <citerefentry><refentrytitle>aptitude</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>." +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2451 +msgid "" +"The following options may occur on the command-line before the input file. " +"Options following the input file are presumed to be arguments to aptitude." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2458 +msgid "<literal>--append-args</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2462 +msgid "" +"Place the options that give the location of the state bundle at the end of " +"the command line when invoking <replaceable>program</replaceable>, rather " +"than at the beginning (the default is to place options at the beginning)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2476 +msgid "Display a brief usage summary." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2482 +msgid "<literal>--prepend-args</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2486 +msgid "" +"Place the options that give the location of the state bundle at the " +"beginning of the command line when invoking <replaceable>program</" +"replaceable>, overriding any previous <literal>--append-args</literal> (the " +"default is to place options at the beginning)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2496 +msgid "<literal>--no-clean</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2500 +msgid "" +"Do not remove the unpacked state directory after running <command>aptitude</" +"command>. You might want to use this if, for instance, you are debugging a " +"problem that appears when aptitude's state file is modified. When " +"<command>aptitude</command> finishes running, the name of the state " +"directory will be printed so that you can access it in the future." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2510 +msgid "This option is enabled automatically by <literal>--statedir</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2517 +msgid "<literal>--really-clean</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2521 +msgid "" +"Delete the state directory after running <command>aptitude</command>, even " +"if <literal>--no-clean</literal> or <literal>--statedir</literal> was " +"supplied." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2530 +msgid "<literal>--statedir</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2534 +msgid "" +"Instead of treating the input file as a state bundle, treat it as an " +"unpacked state bundle. For instance, you can use this to access the state " +"directory that was created by a prior run with <literal>--no-clean</literal>." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: en/manpage.xml:2543 +msgid "<literal>--unpack</literal>" +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: en/manpage.xml:2547 +msgid "" +"Unpack the input file to a temporary directory, but don't actually run " +"<command>aptitude</command>." +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#: en/manpage.xml:2559 +msgid "" +"<citerefentry><refentrytitle>aptitude-create-state-bundle</" +"refentrytitle><manvolnum>1</manvolnum></citerefentry>, " +"<citerefentry><refentrytitle>aptitude</refentrytitle><manvolnum>8</" +"manvolnum></citerefentry>, <citerefentry><refentrytitle>apt</" +"refentrytitle><manvolnum>8</manvolnum></citerefentry>" +msgstr "" diff --git a/doc/po4a/po4a.cfg b/doc/po4a/po4a.cfg index a06e1b37..2b9854ba 100644 --- a/doc/po4a/po4a.cfg +++ b/doc/po4a/po4a.cfg @@ -1,9 +1,10 @@ -[po4a_paths] po4a/po/aptitude.pot de:po4a/po/de.po fr:po4a/po/fr.po ja:po4a/po/ja.po +[po4a_paths] po4a/po/aptitude.pot de:po4a/po/de.po es:po4a/po/es.po fr:po4a/po/fr.po ja:po4a/po/ja.po -[type: docbook] en/aptitude.xml de:de/aptitude.xml fr:fr/aptitude.xml ja:ja/aptitude.xml +[type: docbook] en/aptitude.xml de:de/aptitude.xml es:es/aptitude.xml fr:fr/aptitude.xml ja:ja/aptitude.xml [type: docbook] en/manpage.xml \ de:de/manpage.xml \ + es:es/manpage.xml \ fr:fr/manpage.xml \ ja:ja/manpage.xml \ add_de:po4a/add_de/addendum.1.de \ |