-
Notifications
You must be signed in to change notification settings - Fork 397
Traducido archivo c-api/type.po #2370
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 7 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
baeda49
Traducido archivo c-api/type.po
igmtz 2a519fd
Traducido archivo c-api/type.po
igmtz 960ed16
Traducido archivo c-api/type
igmtz 2de9598
Traducido archivo c-api/type
igmtz e1bd560
Traducido archivo c-api/type
igmtz b7c43e4
Merge branch '3.11' into traduccion-type
igmtz ce92eae
Merge branch '3.11' into traduccion-type
igmtz 3abed4e
Apply suggestions from code review
cmaureir c9ddd2f
Apply suggestions from code review
cmaureir 64f2f3d
Apply suggestions from code review
cmaureir 886d8dc
Merge branch '3.11' into traduccion-type
cmaureir df78e0e
powrap
cmaureir c775de9
Usar retorna en vez de devuelve
cmaureir 06018ac
Add new missing words from whatsnew 3.11
cmaureir 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
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
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 |
---|---|---|
|
@@ -11,15 +11,16 @@ msgstr "" | |
"Project-Id-Version: Python 3.8\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2022-10-25 19:47+0200\n" | ||
"PO-Revision-Date: 2021-08-02 01:37+0200\n" | ||
"Last-Translator: Cristián Maureira-Fredes <[email protected]>\n" | ||
"Language: es\n" | ||
"PO-Revision-Date: 2023-04-12 00:54-0600\n" | ||
"Last-Translator: Gonzalo Martinez <[email protected]>\n" | ||
"Language-Team: python-doc-es\n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\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" | ||
"Generated-By: Babel 2.10.3\n" | ||
"X-Generator: Poedit 3.2.2\n" | ||
|
||
#: ../Doc/c-api/type.rst:6 | ||
msgid "Type Objects" | ||
|
@@ -66,18 +67,17 @@ msgstr "" | |
"versión actual." | ||
|
||
#: ../Doc/c-api/type.rst:42 | ||
#, fuzzy | ||
msgid "" | ||
"Return the :c:member:`~PyTypeObject.tp_flags` member of *type*. This " | ||
"function is primarily meant for use with ``Py_LIMITED_API``; the individual " | ||
"flag bits are guaranteed to be stable across Python releases, but access to :" | ||
"c:member:`~PyTypeObject.tp_flags` itself is not part of the limited API." | ||
msgstr "" | ||
"Retorna el miembro :c:member:`~PyTypeObject.tp_flags` de *type*. Esta " | ||
"Devuelve el miembro :c:member:`~PyTypeObject.tp_flags` de *type*. Esta " | ||
"función está destinada principalmente para su uso con `Py_LIMITED_API`; se " | ||
"garantiza que los bits de bandera (*flag*) individuales serán estables en " | ||
"las versiones de Python, pero el acceso a :c:member:`~PyTypeObject.tp_flags` " | ||
"en sí mismo no forma parte de la API limitada." | ||
"garantiza que los bits de bandera individuales serán estables en las " | ||
"versiones de Python, pero el acceso a :c:member:`~PyTypeObject.tp_flags` en " | ||
"sí mismo no forma parte de la API limitada." | ||
|
||
#: ../Doc/c-api/type.rst:49 | ||
msgid "The return type is now ``unsigned long`` rather than ``long``." | ||
|
@@ -179,12 +179,16 @@ msgid "" | |
"Return the type's name. Equivalent to getting the type's ``__name__`` " | ||
"attribute." | ||
msgstr "" | ||
"Devuelve el nombre del tipo de objeto. Equivalente a obtener el atributo " | ||
"``__name__`` del objeto tipo." | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: ../Doc/c-api/type.rst:117 | ||
msgid "" | ||
"Return the type's qualified name. Equivalent to getting the type's " | ||
"``__qualname__`` attribute." | ||
msgstr "" | ||
"Devuelve el nombre adecuado del tipo de objeto. Equivalente a obtener el " | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"atributo ``__qualname__`` del objeto tipo." | ||
|
||
#: ../Doc/c-api/type.rst:124 | ||
msgid "" | ||
|
@@ -230,7 +234,6 @@ msgstr "" | |
"`TypeError` y retorna ``NULL``." | ||
|
||
#: ../Doc/c-api/type.rst:146 | ||
#, fuzzy | ||
msgid "" | ||
"This function is usually used to get the module in which a method is " | ||
"defined. Note that in such a method, ``PyType_GetModule(Py_TYPE(self))`` may " | ||
|
@@ -242,11 +245,12 @@ msgid "" | |
msgstr "" | ||
"Esta función se suele utilizar para obtener el módulo en el que se define un " | ||
"método. Tenga en cuenta que en un método de este tipo, es posible que " | ||
"``PyType_GetModule(Py_TYPE(self))`` no retorne el resultado deseado. " | ||
"``PyType_GetModule(Py_TYPE(self))`` no devuelva el resultado deseado. " | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"``Py_TYPE(self)`` puede ser una *subclass* de la clase deseada, y las " | ||
"subclases no están necesariamente definidas en el mismo módulo que su " | ||
"superclase. Consulte :c:type:`PyCMethod` para obtener la clase que define el " | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"método." | ||
"método. Revisa :c:type:`PyCMethod` para los casos en los que no se puede " | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"usar ``PyCMethod``." | ||
|
||
#: ../Doc/c-api/type.rst:159 | ||
msgid "" | ||
|
@@ -271,14 +275,15 @@ msgid "" | |
"Find the first superclass whose module was created from the given :c:type:" | ||
"`PyModuleDef` *def*, and return that module." | ||
msgstr "" | ||
"Encuentra la primer superclase cuyo módulo fue creado a partir del :c:type:" | ||
"`PyModuleDef` *def* dado, y devuelve ese módulo." | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: ../Doc/c-api/type.rst:176 | ||
#, fuzzy | ||
msgid "" | ||
"If no module is found, raises a :py:class:`TypeError` and returns ``NULL``." | ||
msgstr "" | ||
"Si no hay ningún módulo asociado con el tipo dado, establece :py:class:" | ||
"`TypeError` y retorna ``NULL``." | ||
"Si no se encuentra ningún módulo, se genera un error de tipo :py:class:" | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"`TypeError` y devuelve ``NULL``." | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: ../Doc/c-api/type.rst:178 | ||
msgid "" | ||
|
@@ -288,6 +293,11 @@ msgid "" | |
"other places where a method's defining class cannot be passed using the :c:" | ||
"type:`PyCMethod` calling convention." | ||
msgstr "" | ||
"Esta función está pensada para ser utilizada junto con :c:func:" | ||
"`PyModule_GetState()` para obtener el estado del módulo de los métodos " | ||
"*slot* (como :c:member:`~PyTypeObject.tp_init` o :c:member:`~PyNumberMethods." | ||
"nb_add`) y en otros lugares donde la clase que define a un método no se " | ||
"puede pasar utilizando la convención de llamada de :c:type:`PyCMethod`." | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: ../Doc/c-api/type.rst:188 | ||
msgid "Creating Heap-Allocated Types" | ||
|
@@ -500,17 +510,18 @@ msgstr "" | |
"*bases* de :py:func:`PyType_FromSpecWithBases` en su lugar." | ||
|
||
#: ../Doc/c-api/type.rst:299 | ||
#, fuzzy | ||
msgid "Slots in :c:type:`PyBufferProcs` may be set in the unlimited API." | ||
msgstr "" | ||
"Las ranuras en :c:type:`PyBufferProcs` se pueden configurar en la API " | ||
"Los *slots* en :c:type:`PyBufferProcs` se pueden configurar en la API " | ||
cmaureir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"ilimitada." | ||
|
||
#: ../Doc/c-api/type.rst:301 | ||
msgid "" | ||
":c:member:`~PyBufferProcs.bf_getbuffer` and :c:member:`~PyBufferProcs." | ||
"bf_releasebuffer` are now available under the limited API." | ||
msgstr "" | ||
":c:member:`~PyBufferProcs.bf_getbuffer` and :c:member:`~PyBufferProcs." | ||
"bf_releasebuffer` ahora están disponibles en la API limitada." | ||
|
||
#: ../Doc/c-api/type.rst:308 | ||
msgid "" | ||
|
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.