summaryrefslogtreecommitdiffstats
path: root/po/es/man3/fseek.3.po
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:43:11 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:43:11 +0000
commitfc22b3d6507c6745911b9dfcc68f1e665ae13dbc (patch)
treece1e3bce06471410239a6f41282e328770aa404a /po/es/man3/fseek.3.po
parentInitial commit. (diff)
downloadmanpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.tar.xz
manpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.zip
Adding upstream version 4.22.0.upstream/4.22.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'po/es/man3/fseek.3.po')
-rw-r--r--po/es/man3/fseek.3.po444
1 files changed, 444 insertions, 0 deletions
diff --git a/po/es/man3/fseek.3.po b/po/es/man3/fseek.3.po
new file mode 100644
index 00000000..dd3e7735
--- /dev/null
+++ b/po/es/man3/fseek.3.po
@@ -0,0 +1,444 @@
+# 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 <gerardo.aburruzaga@uca.es>, 1998.
+msgid ""
+msgstr ""
+"Project-Id-Version: manpages-l10n\n"
+"POT-Creation-Date: 2024-03-01 16:56+0100\n"
+"PO-Revision-Date: 1998-01-21 09:59+0200\n"
+"Last-Translator: Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es>\n"
+"Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\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 "fseek"
+msgstr "fseek"
+
+#. type: TH
+#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#, no-wrap
+msgid "2023-10-31"
+msgstr "31 Octubre 2023"
+
+#. type: TH
+#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#, no-wrap
+msgid "Linux man-pages 6.06"
+msgstr "Páginas de manual de Linux 6.06"
+
+#. 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 "fgetpos, fseek, fsetpos, ftell, rewind - reposition a stream"
+msgstr "fgetpos, fseek, fsetpos, ftell, rewind - reposicionarse en un flujo"
+
+#. 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<libc>, I<-lc>)"
+msgstr "Biblioteca Estándar C (I<libc>, 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 E<lt>stdio.hE<gt>>\n"
+msgstr "B<#include E<lt>stdio.hE<gt>>\n"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid ""
+"B<int fseek(FILE *>I<stream>B<, long >I<offset>B<, int >I<whence>B<);>\n"
+"B<long ftell(FILE *>I<stream>B<);>\n"
+msgstr ""
+"B<int fseek(FILE *>I<flujo>B<, long >I<desplto>B<, int >I<origen>B<);>\n"
+"B<long ftell(FILE *>I<flujo>B<);>\n"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<void rewind(FILE *>I<stream>B<);>\n"
+msgstr "B<void rewind(FILE *>I<flujo>B<);>\n"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid ""
+"B<int fgetpos(FILE *restrict >I<stream>B<, fpos_t *restrict >I<pos>B<);>\n"
+"B<int fsetpos(FILE *>I<stream>B<, const fpos_t *>I<pos>B<);>\n"
+msgstr ""
+"B<int fgetpos(FILE *restrict >I<flujo>B<, fpos_t *restrict >I<pos>B<);>\n"
+"B<int fsetpos(FILE *>I<flujo>B<, const fpos_t *>I<pos>B<);>\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
+msgid ""
+"The B<fseek>() function sets the file position indicator for the stream "
+"pointed to by I<stream>. The new position, measured in bytes, is obtained "
+"by adding I<offset> bytes to the position specified by I<whence>. If "
+"I<whence> is set to B<SEEK_SET>, B<SEEK_CUR>, or B<SEEK_END>, the offset is "
+"relative to the start of the file, the current position indicator, or end-of-"
+"file, respectively. A successful call to the B<fseek>() function clears "
+"the end-of-file indicator for the stream and undoes any effects of the "
+"B<ungetc>(3) function on the same stream."
+msgstr ""
+"La función B<fseek>() mueve el indicador de posición del fichero "
+"correspondiente al flujo de datos apuntado por I<flujo>. La nueva posición, "
+"medida en bytes, se obtiene añadiendo I<desplto> bytes a la posición "
+"especificada por I<origen>. Si I<origen> es B<SEEK_SET>, B<SEEK_CUR>, o "
+"B<SEEK_END>, el desplazamiento es relativo al comienzo del fichero, a la "
+"posición actual, o al final del fichero, respectivamente. Una llamada "
+"exitosa a la función B<fseek>() limpia el indicador de fin-de-fichero para "
+"el flujo y deshace cualquier efecto de la función B<ungetc>(3) en el mismo "
+"flujo."
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The B<ftell>() function obtains the current value of the file position "
+"indicator for the stream pointed to by I<stream>."
+msgstr ""
+"La función B<ftell>() obtiene el valor actual del indicador de posición del "
+"fichero para el flujo apuntado por I<flujo>."
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The B<rewind>() function sets the file position indicator for the stream "
+"pointed to by I<stream> to the beginning of the file. It is equivalent to:"
+msgstr ""
+"La función B<rewind>() mueve el indicador de posición del fichero para el "
+"flujo apuntado por I<flujo> al principio del fichero. Es equivalente a:"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "(void) fseek(stream, 0L, SEEK_SET)"
+msgstr "(void) fseek(stream, 0L, SEEK_SET)"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"except that the error indicator for the stream is also cleared (see "
+"B<clearerr>(3))."
+msgstr ""
+"salvo en que el indicador de error para el flujo también se limpia (vea "
+"B<clearerr>(3))."
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The B<fgetpos>() and B<fsetpos>() functions are alternate interfaces "
+"equivalent to B<ftell>() and B<fseek>() (with I<whence> set to "
+"B<SEEK_SET>), setting and storing the current value of the file offset into "
+"or from the object referenced by I<pos>. On some non-UNIX systems, an "
+"I<fpos_t> object may be a complex object and these routines may be the only "
+"way to portably reposition a text stream."
+msgstr ""
+"Las funciones B<fgetpos>() y B<fsetpos>() son interfaces alternativas "
+"equivalentes a B<ftell>() y B<fseek>() (con el I<origen> puesto a "
+"B<SEEK_SET>), poniendo y almacenando el valor actual del desplazamiento "
+"desde o en el objeto referenciado por I<pos>. En algunos sistemas no UNIX un "
+"objeto I<fpos_t> puede ser un objeto complejo y estas rutinas pueden ser la "
+"única manera de reposicionar un flujo de texto de forma transportable."
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"If the stream refers to a regular file and the resulting stream offset is "
+"beyond the size of the file, subsequent writes will extend the file with a "
+"hole, up to the offset, before committing any data. See B<lseek>(2) for "
+"details on file seeking semantics."
+msgstr ""
+
+#. 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 ""
+#| "The B<rewind> function returns no value. Upon successful completion, "
+#| "B<fgetpos>, B<fseek>, B<fsetpos> return 0, and B<ftell> returns the "
+#| "current offset. Otherwise, -1 is returned and the global variable errno "
+#| "is set to indicate the error."
+msgid ""
+"The B<rewind>() function returns no value. Upon successful completion, "
+"B<fgetpos>(), B<fseek>(), B<fsetpos>() return 0, and B<ftell>() returns "
+"the current offset. Otherwise, -1 is returned and I<errno> is set to "
+"indicate the error."
+msgstr ""
+"La función B<rewind> no devuelve nada. Cuando acaban bien, B<fgetpos>, "
+"B<fseek>, y B<fsetpos> devuelven 0, y B<ftell> devuelve el desplazamiento "
+"actual. Cuando acaban mal, devuelve -1 y se pone un valor apropiado en la "
+"variable global errno."
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "ERRORS"
+msgstr "ERRORES"
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<EINVAL>"
+msgstr "B<EINVAL>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, fuzzy
+#| msgid ""
+#| "The I<whence> argument to B<fseek> was not B<SEEK_SET>, B<SEEK_END>, or "
+#| "B<SEEK_CUR>."
+msgid ""
+"The I<whence> argument to B<fseek>() was not B<SEEK_SET>, B<SEEK_END>, or "
+"B<SEEK_CUR>. Or: the resulting file offset would be negative."
+msgstr ""
+"El argumento I<origen> de B<fseek> no era B<SEEK_SET>, B<SEEK_END>, ni "
+"B<SEEK_CUR>."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<ESPIPE>"
+msgstr "B<ESPIPE>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The file descriptor underlying I<stream> is not seekable (e.g., it refers to "
+"a pipe, FIFO, or socket)."
+msgstr ""
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The functions B<fgetpos>(), B<fseek>(), B<fsetpos>(), and B<ftell>() may "
+"also fail and set I<errno> for any of the errors specified for the routines "
+"B<fflush>(3), B<fstat>(2), B<lseek>(2), and B<malloc>(3)."
+msgstr ""
+"Las funciones B<fgetpos>(), B<fseek>(), B<fsetpos>() y B<ftell>() pueden "
+"fallar también y poner un valor en I<errno> para cualquiera de los errores "
+"especificados para las rutinas B<fflush>(3), B<fstat>(2), B<lseek>(2) y "
+"B<malloc>(3)."
+
+#. 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<attributes>(7)."
+msgstr ""
+"Para obtener una explicación de los términos usados en esta sección, véase "
+"B<attributes>(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<fseek>(),\n"
+"B<ftell>(),\n"
+"B<rewind>(),\n"
+"B<fgetpos>(),\n"
+"B<fsetpos>()"
+msgstr ""
+"B<fseek>(),\n"
+"B<ftell>(),\n"
+"B<rewind>(),\n"
+"B<fgetpos>(),\n"
+"B<fsetpos>()"
+
+#. 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-Safe"
+msgstr "Multi-hilo seguro"
+
+#. 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, C89."
+msgstr "POSIX.1-2001, C89."
+
+#. 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<lseek>(2), B<fseeko>(3)"
+msgstr "B<lseek>(2), B<fseeko>(3)"
+
+#. type: TH
+#: debian-bookworm
+#, no-wrap
+msgid "2022-12-29"
+msgstr "29 Diciembre 2022"
+
+#. 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
+#: debian-unstable opensuse-tumbleweed
+#, no-wrap
+msgid "2023-07-20"
+msgstr "20 ​​Julio 2023"
+
+#. type: TH
+#: debian-unstable opensuse-tumbleweed
+#, no-wrap
+msgid "Linux man-pages 6.05.01"
+msgstr "Páginas de manual de Linux 6.05.01"
+
+#. 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 "Linux man-pages 6.04"