-
Notifications
You must be signed in to change notification settings - Fork 396
traduccion security_warnings #1590
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
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
traduccion security_warnings
- Loading branch information
commit ab608a901abe93e16a79ec57e65b43e6e01a95f5
There are no files selected for viewing
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 |
---|---|---|
|
@@ -4,101 +4,126 @@ | |
# package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Python en Español 3.10\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2021-10-16 21:42+0200\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"PO-Revision-Date: 2021-10-29 19:29-0300\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=utf-8\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Generated-By: Babel 2.9.1\n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"Language: es_ES\n" | ||
"X-Generator: Poedit 3.0\n" | ||
|
||
#: ../Doc/library/security_warnings.rst:6 | ||
msgid "Security Considerations" | ||
msgstr "" | ||
msgstr "Consideraciones de seguridad" | ||
|
||
#: ../Doc/library/security_warnings.rst:8 | ||
msgid "The following modules have specific security considerations:" | ||
msgstr "" | ||
"Los siguientes módulos tienen consideraciones de seguridad específicas:" | ||
|
||
#: ../Doc/library/security_warnings.rst:10 | ||
msgid "" | ||
":mod:`base64`: :ref:`base64 security considerations <base64-security>` in :" | ||
"rfc:`4648`" | ||
msgstr "" | ||
":mod:`base64`: :ref:`consideraciones de seguridad de base64 <base64-" | ||
"security>` en :rfc:`4648`" | ||
|
||
#: ../Doc/library/security_warnings.rst:12 | ||
msgid ":mod:`cgi`: :ref:`CGI security considerations <cgi-security>`" | ||
msgstr "" | ||
msgstr ":mod:`cgi`: :ref:`consideraciones de seguridad de CGI <cgi-security>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:13 | ||
msgid "" | ||
":mod:`hashlib`: :ref:`all constructors take a \"usedforsecurity\" keyword-" | ||
"only argument disabling known insecure and blocked algorithms <hashlib-" | ||
"usedforsecurity>`" | ||
msgstr "" | ||
":mod:`hashlib`: :ref:` todos los constructores toman un argumento de solo " | ||
"palabra clave *usedforsecurity* que deshabilita algoritmos inseguros y " | ||
"bloqueados conocidos. <hashlib-usedforsecurity>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:16 | ||
msgid "" | ||
":mod:`http.server` is not suitable for production use, only implementing " | ||
"basic security checks" | ||
msgstr "" | ||
":mod:`http.server` no se recomienda para producción. Sólo implementa " | ||
"controles de seguridad básicos" | ||
|
||
#: ../Doc/library/security_warnings.rst:18 | ||
msgid "" | ||
":mod:`logging`: :ref:`Logging configuration uses eval() <logging-eval-" | ||
"security>`" | ||
msgstr "" | ||
":mod:`logging`: :ref:`La configuración de registro usa eval() <logging-eval-" | ||
"security>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:20 | ||
msgid "" | ||
":mod:`multiprocessing`: :ref:`Connection.recv() uses pickle <multiprocessing-" | ||
"recv-pickle-security>`" | ||
msgstr "" | ||
":mod:`multiprocessing`: :ref:`Connection.recv() usa *pickle* " | ||
"<multiprocessing-recv-pickle-security>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:22 | ||
msgid ":mod:`pickle`: :ref:`Restricting globals in pickle <pickle-restrict>`" | ||
msgstr "" | ||
":mod:`pickle`: :ref:`Restricción de globals en pickle <pickle-restrict>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:23 | ||
msgid "" | ||
":mod:`random` shouldn't be used for security purposes, use :mod:`secrets` " | ||
"instead" | ||
msgstr "" | ||
":mod:`random` no debe usarse por motivos de seguridad, usa :mod:`secrets` en " | ||
"su lugar" | ||
|
||
#: ../Doc/library/security_warnings.rst:25 | ||
msgid "" | ||
":mod:`shelve`: :ref:`shelve is based on pickle and thus unsuitable for " | ||
"dealing with untrusted sources <shelve-security>`" | ||
msgstr "" | ||
":mod:`shelve`: :ref:`el estante se basa en *pickle* y, por lo tanto, no es " | ||
JuliKM marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"adecuado para tratar con fuentes no confiables <shelve-security>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:27 | ||
msgid ":mod:`ssl`: :ref:`SSL/TLS security considerations <ssl-security>`" | ||
msgstr "" | ||
msgstr ":mod:`ssl`: :ref:`consideraciones de seguridad SSL/TLS <ssl-security>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:28 | ||
msgid "" | ||
":mod:`subprocess`: :ref:`Subprocess security considerations <subprocess-" | ||
"security>`" | ||
msgstr "" | ||
":mod:`subprocess`: :ref:`Consideraciones sobre seguridad de subprocesos " | ||
"<subprocess-security>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:30 | ||
msgid "" | ||
":mod:`tempfile`: :ref:`mktemp is deprecated due to vulnerability to race " | ||
"conditions <tempfile-mktemp-deprecated>`" | ||
msgstr "" | ||
":mod:`tempfile`: :ref:`mktemp está en desuso debido a la vulnerabilidad a " | ||
"condiciones de urgencia <tempfile-mktemp-deprecated>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:32 | ||
msgid ":mod:`xml`: :ref:`XML vulnerabilities <xml-vulnerabilities>`" | ||
msgstr "" | ||
msgstr ":mod:`xml`: :ref:`vulnerabilidades XML <xml-vulnerabilities>`" | ||
|
||
#: ../Doc/library/security_warnings.rst:33 | ||
msgid "" | ||
":mod:`zipfile`: :ref:`maliciously prepared .zip files can cause disk volume " | ||
"exhaustion <zipfile-resources-limitations>`" | ||
msgstr "" | ||
":mod:`zipfile`: :ref:`los archivos de .zip preparados maliciosamente pueden " | ||
"causar agotamiento del volumen del disco <zipfile-resources-limitations>`" |
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.
Uh oh!
There was an error while loading. Please reload this page.