# Spanish translation of manpages # This file is distributed under the same license as the manpages-l10n package. # Copyright © of this file: # Gerardo Aburruzaga García , 1998. # Juan Piernas , 2000. # Miguel Pérez Ibars , 2005. msgid "" msgstr "" "Project-Id-Version: manpages-l10n\n" "POT-Creation-Date: 2024-06-01 06:02+0200\n" "PO-Revision-Date: 2005-03-29 19:53+0200\n" "Last-Translator: Miguel Pérez Ibars \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 20.04.1\n" #. type: TH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "mbtowc" msgstr "" #. type: TH #: archlinux debian-unstable opensuse-tumbleweed #, no-wrap msgid "2024-05-02" msgstr "2 Mayo 2024" #. type: TH #: archlinux debian-unstable #, no-wrap msgid "Linux man-pages 6.8" msgstr "Páginas de Manual de Linux 6.8" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NAME" msgstr "NOMBRE" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "mbtowc - convert a multibyte sequence to a wide character" msgstr "mbtowc - convierte una secuencia multibyte en un carácter ancho" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "LIBRARY" msgstr "BIBLIOTECA" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Standard C library (I, I<-lc>)" msgstr "Biblioteca Estándar C (I, I<-lc>)" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SYNOPSIS" msgstr "SINOPSIS" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<#include Estdlib.hE>\n" msgstr "B<#include Estdlib.hE>\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy, no-wrap #| msgid "BIB<, const char *>IB<, size_t >IB<);>\n" msgid "BIB<, const char >IB<[restrict .>IB<], size_t >IB<);>\n" msgstr "BIB<, const char *>IB<, size_t >IB<);>\n" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "DESCRIPTION" msgstr "DESCRIPCIÓN" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "The main case for this function is when I is not NULL and I is " #| "not NULL. In this case, the B function inspects at most I " #| "bytes of the multibyte string starting at I, extracts the next " #| "complete multibyte character, converts it to a wide character and stores " #| "it at I<*pwc>. It updates an internal shift state only known to the " #| "mbtowc function. If I does not point to a '\\e0' byte, it returns the " #| "number of bytes that were consumed from I, otherwise it returns 0." msgid "" "The main case for this function is when I is not NULL and I is not " "NULL. In this case, the B() function inspects at most I bytes " "of the multibyte string starting at I, extracts the next complete " "multibyte character, converts it to a wide character and stores it at " "I<*pwc>. It updates an internal shift state known only to the B() " "function. If I does not point to a null byte (\\[aq]\\e0\\[aq]), it " "returns the number of bytes that were consumed from I, otherwise it " "returns 0." msgstr "" "El principal caso para esta función se da cuando I no es NULL y I no " "es NULL. En este caso, la función B inspecciona, como mucho, I " "bytes de la cadena multibyte I, extrae el siguiente carácter multibyte " "completo, lo convierte a un carácter ancho y lo almacena en I<*pwc>. " "Actualiza un estado de cambios interno sólo conocido por la función mbtowc. " "Si I no apunta aun byte '\\e0', la función devuelve el número de bytes " "consumidos de I. En otro caso, devuelve 0." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "If the I bytes starting at I do not contain a complete multibyte " #| "character, or if they contain an invalid multibyte sequence, B " #| "returns I<-1>. This can happen even if I E= I, if the " #| "multibyte string contains redundant shift sequences." msgid "" "If the I bytes starting at I do not contain a complete multibyte " "character, or if they contain an invalid multibyte sequence, B() " "returns -1. This can happen even if I E= I, if the " "multibyte string contains redundant shift sequences." msgstr "" "Si los primeros I bytes de I no contienen un carácter multibyte " "completo, o si contiene una secuencia multibyte inválida, B devuelve " "I<-1>. Esto puede ocurrir incluso sif I E= I, si la " "cadena multibyte contiene secuencias de cambios redundantes." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "A different case is when I is not NULL but I is NULL. In this " #| "case the B function behaves as above, excepts that it does not " #| "store the converted wide character in memory." msgid "" "A different case is when I is not NULL but I is NULL. In this case, " "the B() function behaves as above, except that it does not store " "the converted wide character in memory." msgstr "" "Un caso diferente se da cuando I no es NULL pero I sí lo es. En " "este caso, la función B se comporta como antes pero no almacena el " "carácter ancho obtenido en memoria." #. The Dinkumware doc and the Single UNIX specification say this, but #. glibc doesn't implement this. #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "A third case is when I is NULL. In this case, I and I are " #| "ignored. The B function resets the shift state, only known to " #| "this function, to the initial state, and returns non-zero if the encoding " #| "has non-trivial shift state, or zero if the encoding is stateless." msgid "" "A third case is when I is NULL. In this case, I and I are " "ignored. The B() function resets the shift state, only known to " "this function, to the initial state, and returns nonzero if the encoding has " "nontrivial shift state, or zero if the encoding is stateless." msgstr "" "Un tercer caso se da cuando I es NULL. En este caso, I y I se " "ignoran. La función B devuelve el estado de cambios, sólo conocido " "por esta función, a su estado inicial y devuelve un valor distinto de cero " "si la condificación posee un estado de cambios no trivial o cero si es una " "codificación sin estado." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "RETURN VALUE" msgstr "VALOR DEVUELTO" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "If I is not NULL, the B function returns the number of " #| "consumed bytes starting at I, or 0 if I points to a null byte, or " #| "-1 upon failure." msgid "" "If I is not NULL, the B() function returns the number of " "consumed bytes starting at I, or 0 if I points to a null byte, or -1 " "upon failure." msgstr "" "Si I no es NULL, la función B devuelve el número de bytes " "consumidos de I, 0 si I apunta a un byte nulo o -1 en caso de fallo." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "If I is NULL, the B function returns non-zero if the encoding " #| "has non-trivial shift state, or zero if the encoding is stateless." msgid "" "If I is NULL, the B() function returns nonzero if the encoding " "has nontrivial shift state, or zero if the encoding is stateless." msgstr "" "Si I es NULL, la función B devuelve un valor distinto de cero si " "la codificación posee un estado de cambios no trivial o cero si es una " "codificación sin estado." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "ATTRIBUTES" msgstr "ATRIBUTOS" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "For an explanation of the terms used in this section, see B(7)." msgstr "" "Para obtener una explicación de los términos usados en esta sección, véase " "B(7)." #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Interface" msgstr "Interfaz" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Attribute" msgstr "Atributo" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Value" msgstr "Valor" #. type: tbl table #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-tumbleweed #, no-wrap msgid ".na\n" msgstr ".na\n" #. type: tbl table #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-tumbleweed #, no-wrap msgid ".nh\n" msgstr ".nh\n" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B()" msgstr "" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Thread safety" msgstr "Seguridad del hilo" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "MT-Unsafe race" msgstr "MT - Carrera insegura" #. type: SH #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "VERSIONS" msgstr "VERSIONES" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "This function is not multi-thread safe. The function B provides " #| "a better interface to the same functionality." msgid "" "This function is not multithread safe. The function B(3) provides " "a better interface to the same functionality." msgstr "" "Esta función no es segura en un entorno multihilos. La función B " "proporciona una interfaz mejor con la misma funcionalidad." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "STANDARDS" msgstr "ESTÁNDARES" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "C11, POSIX.1-2008." msgstr "C11, POSIX.1-2008." #. type: SH #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "HISTORY" msgstr "HISTORIAL" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "POSIX.1-2001, C99." msgstr "POSIX.1-2001, C99." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NOTES" msgstr "NOTAS" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, fuzzy #| msgid "" #| "The behaviour of B depends on the LC_CTYPE category of the " #| "current locale." msgid "" "The behavior of B() depends on the B category of the " "current locale." msgstr "" "El comportamiento de B depende de la categoría LC_CTYPE de la " "localización actual." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SEE ALSO" msgstr "VÉASE TAMBIÉN" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "B(3), B(3), B(3), B(3), " "B(3), B(3)" msgstr "" #. type: TH #: debian-bookworm #, no-wrap msgid "2023-02-05" msgstr "5 Febrero 2023" #. type: TH #: debian-bookworm #, no-wrap msgid "Linux man-pages 6.03" msgstr "Páginas de Manual de Linux 6.03" #. type: Plain text #: debian-bookworm msgid "POSIX.1-2001, POSIX.1-2008, C99." msgstr "POSIX.1-2001, POSIX.1-2008, C99." #. type: TH #: fedora-40 fedora-rawhide mageia-cauldron #, no-wrap msgid "2023-10-31" msgstr "31 Octubre 2023" #. type: TH #: fedora-40 mageia-cauldron #, no-wrap msgid "Linux man-pages 6.06" msgstr "Páginas de Manual de Linux 6.06" #. type: TH #: fedora-rawhide #, no-wrap msgid "Linux man-pages 6.7" msgstr "Páginas de Manual de Linux 6.7" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "2023-03-30" msgstr "30 Marzo 2023" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "Linux man-pages 6.04" msgstr "Páginas de Manual de Linux 6.04" #. type: TH #: opensuse-tumbleweed #, no-wrap msgid "Linux man-pages (unreleased)" msgstr "Páginas de Manual de Linux (no publicadas)"