Skip to content

Traduccion glob #720

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Sep 29, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
end of translation glob.po
  • Loading branch information
kikocorreoso committed Aug 25, 2020
commit 6438bf13ef9e2546e4087f8241764bd346bb20e5
23 changes: 19 additions & 4 deletions library/glob.po
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
"PO-Revision-Date: 2020-08-26 00:04+0200\n"
"PO-Revision-Date: 2020-08-26 00:09+0200\n"
"Language-Team: python-doc-es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
Expand Down Expand Up @@ -113,13 +113,15 @@ msgstr ""

#: ../Doc/library/glob.rst:62
msgid "Support for recursive globs using \"``**``\"."
msgstr ""
msgstr "Soporte para globs recursivos usando \"``**``\"."

#: ../Doc/library/glob.rst:68
msgid ""
"Return an :term:`iterator` which yields the same values as :func:`glob` "
"without actually storing them all simultaneously."
msgstr ""
"Devuelve un :term:`iterador` el cual produce los mismos valores que :func:"
"`glob` sin necesidad de almacenarlos todos de forma simultánea."

#: ../Doc/library/glob.rst:76
msgid ""
Expand All @@ -129,6 +131,11 @@ msgid ""
"escaped, e.g. on Windows ``escape('//?/c:/Quo vadis?.txt')`` returns ``'//?/"
"c:/Quo vadis[?].txt'``."
msgstr ""
"Elude todos los caracteres especiales (``'?'``, ``'*'`` y ``'['``). Esto es "
"útil si deseas emparejar una cadena literal arbitraria que podría contener "
"caracteres especiales. Los caracteres especiales en unidades compartidas/"
"UNC no se eluden, e.g. en Windows ``escape('//?/c:/Quo vadis?.txt')`` "
"devuelve ``'//?/c:/Quo vadis[?].txt'``."

#: ../Doc/library/glob.rst:85
msgid ""
Expand All @@ -138,18 +145,26 @@ msgid ""
"following results. Notice how any leading components of the path are "
"preserved. ::"
msgstr ""
"Por ejemplo, considera un directorio que contenga los siguientes ficheros: :"
"file:`1.gif`, :file:`2.txt`, :file:`card.gif` y un subdirectorio :file:`sub` "
"el cual contenga solo el fichero :file:`3.txt`. :func:`glob` producirá los "
"siguientes resultados. Nótese como se preservará cualquier componente "
"inicial de la ruta. ::"

#: ../Doc/library/glob.rst:103
msgid ""
"If the directory contains files starting with ``.`` they won't be matched by "
"default. For example, consider a directory containing :file:`card.gif` and :"
"file:`.card.gif`::"
msgstr ""
"Si un directorio contiene ficheros que comienzan con ``.`` no se emparejará "
"por defecto. Por ejemplo, considera un directorio que contiene :file:`card."
"gif` y :file:`.card.gif`::"

#: ../Doc/library/glob.rst:115
msgid "Module :mod:`fnmatch`"
msgstr ""
msgstr "Módulo :mod:`fnmatch`"

#: ../Doc/library/glob.rst:116
msgid "Shell-style filename (not path) expansion"
msgstr ""
msgstr "Expansión de nombre de fichero (no de ruta) al estilo de la terminal"