- Notifications
You must be signed in to change notification settings - Fork396
Traduccion fnmatch#748
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,91 @@ | ||
# Copyright (C) 2001-2020, Python Software Foundation | ||
# This file is distributed under the same license as the Python package. | ||
# Maintained by the python-doc-es workteam. | ||
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/ | ||
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Python 3.8\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2019-05-06 11:59-0400\n" | ||
"PO-Revision-Date: 2020-09-09 22:18-0400\n" | ||
"Language-Team: python-doc-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" | ||
"Last-Translator: \n" | ||
"Language: es\n" | ||
"X-Generator: Poedit 2.4.1\n" | ||
#: ../Doc/library/fnmatch.rst:2 | ||
msgid ":mod:`fnmatch` --- Unix filename pattern matching" | ||
msgstr "" | ||
":mod:`fnmatch` --- coincidencia de patrones de nombre de archivo de Unix" | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:7 | ||
msgid "**Source code:** :source:`Lib/fnmatch.py`" | ||
msgstr "**Código fuente:** :source:`Lib/fnmatch.py`" | ||
#: ../Doc/library/fnmatch.rst:15 | ||
msgid "" | ||
"This module provides support for Unix shell-style wildcards, which are *not* " | ||
"the same as regular expressions (which are documented in the :mod:`re` " | ||
"module). The special characters used in shell-style wildcards are:" | ||
msgstr "" | ||
"Este módulo proporciona soporte para comodines de estilo shell de Unix, que " | ||
"no son *no* lo mismo que las expresiones regulares (que se documentan en el " | ||
"módulo :mod:`re`). Los caracteres especiales utilizados en los comodines de " | ||
"estilo shell son:" | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:27 | ||
msgid "Pattern" | ||
msgstr "Modelo" | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:27 | ||
msgid "Meaning" | ||
msgstr "Significado" | ||
#: ../Doc/library/fnmatch.rst:29 | ||
msgid "``*``" | ||
msgstr "``*``" | ||
#: ../Doc/library/fnmatch.rst:29 | ||
msgid "matches everything" | ||
msgstr "coincide con todo" | ||
#: ../Doc/library/fnmatch.rst:31 | ||
msgid "``?``" | ||
msgstr "``?``" | ||
#: ../Doc/library/fnmatch.rst:31 | ||
msgid "matches any single character" | ||
msgstr "coincide con un solo carácter" | ||
#: ../Doc/library/fnmatch.rst:33 | ||
msgid "``[seq]``" | ||
msgstr "``[seq]``" | ||
#: ../Doc/library/fnmatch.rst:33 | ||
msgid "matches any character in *seq*" | ||
msgstr "coincide con cualquier carácter en *seq*" | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:35 | ||
msgid "``[!seq]``" | ||
msgstr "``[!seq]``" | ||
#: ../Doc/library/fnmatch.rst:35 | ||
msgid "matches any character not in *seq*" | ||
msgstr "coincide con cualquier carácter no en *seq*" | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:38 | ||
msgid "" | ||
"For a literal match, wrap the meta-characters in brackets. For example, " | ||
"``'[?]'`` matches the character ``'?'``." | ||
msgstr "" | ||
"Para una coincidencia, envuelva los meta-caracteres entre paréntesis. Por " | ||
"ejemplo, `` '[?]' `` coincide con el carácter `` '?' ``." | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:43 | ||
msgid "" | ||
@@ -86,6 +95,12 @@ msgid "" | ||
"with a period are not special for this module, and are matched by the ``*`` " | ||
"and ``?`` patterns." | ||
msgstr "" | ||
"Ten en cuenta que el separador de nombre del archivo (`` '/' `` en Unix) " | ||
"*no* es especial para este módulo. Consulta el módulo: mod:`glob` para el " | ||
"nombre de la ruta (:mod:`glob` usa: func:`.filter` para que coincida con los " | ||
"nombres de la ruta). Del mismo modo, los nombres de archivo que comienzan " | ||
"con un punto no son especiales para este módulo y corresponden con los " | ||
"patrones ``*``y ``?`` ." | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:52 | ||
msgid "" | ||
@@ -95,41 +110,57 @@ msgid "" | ||
"sensitive comparison, regardless of whether that's standard for the " | ||
"operating system." | ||
msgstr "" | ||
"Prueba si la cadena de caracteres *nombre de archivo * coincide con la " | ||
"cadena *modelo*, retornando :const:`True` o :const:`False`. Ambos parámetros " | ||
"se normalizan entre mayúsculas y minúsculas usando :func:`os.path." | ||
"normcase`. : func: `fnmatchcase` se puede utilizar para realizar una " | ||
"comparación que distingue entre mayúsculas y minúsculas, independientemente " | ||
"de si es estándar para el sistema operativo." | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:58 | ||
msgid "" | ||
"This example will print all file names in the current directory with the " | ||
"extension ``.txt``::" | ||
msgstr "" | ||
"Este ejemplo imprimirá todos los nombres de archivo en el directorio actual " | ||
"con la extensión ``.txt``::" | ||
#: ../Doc/library/fnmatch.rst:71 | ||
msgid "" | ||
"Test whether *filename* matches *pattern*, returning :const:`True` or :const:" | ||
"`False`; the comparison is case-sensitive and does not apply :func:`os.path." | ||
"normcase`." | ||
msgstr "" | ||
"Prueba si *nombre de archivo* coincide con *modelo*, devolviendo :const:" | ||
"`True` o :const:`False`; la comparación distingue entre mayúsculas y " | ||
"minúsculas y no aplica :func:`os.path.normcase`." | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:78 | ||
msgid "" | ||
"Return the subset of the list of *names* that match *pattern*. It is the " | ||
"same as ``[n for n in names if fnmatch(n, pattern)]``, but implemented more " | ||
"efficiently." | ||
msgstr "" | ||
"Retorna el subconjunto de la lista de *nombres* que coinciden con *modelo*. " | ||
"Es lo mismo que ``[n for n in names if fnmatch(n, pattern)]``, pero " | ||
"implementado de manera más eficiente." | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:84 | ||
msgid "" | ||
"Return the shell-style *pattern* converted to a regular expression for using " | ||
"with :func:`re.match`." | ||
msgstr "" | ||
"Retorna el *modelo* estilo shell convertido a una expresión regular para " | ||
"usar con :func:`re.match`." | ||
alycolbar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/fnmatch.rst:87 | ||
msgid "Example:" | ||
msgstr "Ejemplo:" | ||
#: ../Doc/library/fnmatch.rst:101 | ||
msgid "Module :mod:`glob`" | ||
msgstr "Módulo :mod:`glob`" | ||
#: ../Doc/library/fnmatch.rst:102 | ||
msgid "Unix shell-style path expansion." | ||
msgstr "Expansión de ruta estilo shell en Unix." |