- 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
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes from1 commit
Commits
Show all changes
4 commits Select commitHold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
Apply suggestions from code review
aplicando cambios para traduccion-fnmatchCo-authored-by: fjsevilla <fjsevilla2.0@gmail.com>
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
commit06c5b84c8a7d04940e0362196ce1cd0d16bf72f2
There are no files selected for viewing
54 changes: 27 additions & 27 deletionslibrary/fnmatch.po
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -21,8 +21,7 @@ msgstr "" | ||
#: ../Doc/library/fnmatch.rst:2 | ||
msgid ":mod:`fnmatch` --- Unix filename pattern matching" | ||
msgstr ":mod:`fnmatch` --- Coincidencia de patrones de nombre de archivos Unix" | ||
#: ../Doc/library/fnmatch.rst:7 | ||
msgid "**Source code:** :source:`Lib/fnmatch.py`" | ||
@@ -35,13 +34,13 @@ msgid "" | ||
"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 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:" | ||
#: ../Doc/library/fnmatch.rst:27 | ||
msgid "Pattern" | ||
msgstr "Patrón" | ||
#: ../Doc/library/fnmatch.rst:27 | ||
msgid "Meaning" | ||
@@ -69,23 +68,23 @@ msgstr "``[seq]``" | ||
#: ../Doc/library/fnmatch.rst:33 | ||
msgid "matches any character in *seq*" | ||
msgstr "coincide con cualquier carácterpresenteen *seq*" | ||
#: ../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ácterausente en *seq*" | ||
#: ../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 literal, envuelva los meta-caracteres entre " | ||
"paréntesis. Porejemplo, ``'[?]'`` coincide con el carácter ``'?'``." | ||
#: ../Doc/library/fnmatch.rst:43 | ||
msgid "" | ||
@@ -95,12 +94,13 @@ 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 de archivo (``'/'`` en Unix) *no* " | ||
"es tratado de forma especial en este módulo. Consulta el módulo :mod:`glob` " | ||
"para realizar expansiones de nombre de ruta (:mod:`glob` usa :func:`.filter` " | ||
"para hacer coincidir con los componentes del nombre de ruta). Del mismo " | ||
"modo, los nombres de archivo que comienzan con un punto tampoco son tratados " | ||
"de forma especial por este módulo y se 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 "" | ||
@@ -110,12 +110,12 @@ msgid "" | ||
"sensitive comparison, regardless of whether that's standard for the " | ||
"operating system." | ||
msgstr "" | ||
"Prueba si la cadena de caracteres *filename* coincide con la cadena " | ||
"*pattern*, 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." | ||
#: ../Doc/library/fnmatch.rst:58 | ||
msgid "" | ||
@@ -131,26 +131,26 @@ msgid "" | ||
"`False`; the comparison is case-sensitive and does not apply :func:`os.path." | ||
"normcase`." | ||
msgstr "" | ||
"Prueba si *filename* coincide con *pattern*, devolviendo :const:`True` o:" | ||
"const:`False`; la comparación distingue entre mayúsculas y minúsculas y no " | ||
"aplica :func:`os.path.normcase`." | ||
#: ../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*names* que coinciden con *pattern*. Es " | ||
"lo mismo que ``[n for n in names if fnmatch(n, pattern)]``, pero " | ||
"implementado de manera más eficiente." | ||
#: ../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 *pattern* estilo shell convertido a una expresión regular para " | ||
"usar con :func:`re.match`." | ||
#: ../Doc/library/fnmatch.rst:87 | ||
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.