From 3cdc5992ce4f11e473f01ae4820095e4ff1fd0b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20=C3=81lvarez?= Date: Tue, 5 Dec 2023 13:44:18 +0100 Subject: [PATCH 1/4] Traducido archivo library/collections.abc.po --- library/collections.abc.po | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/library/collections.abc.po b/library/collections.abc.po index 541a1f4ef0..233702aa49 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -11,15 +11,16 @@ msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-12 19:43+0200\n" -"PO-Revision-Date: 2022-12-08 16:15-0300\n" +"PO-Revision-Date: 2023-12-05 13:38+0100\n" "Last-Translator: Sofía Denner \n" -"Language: es_AR\n" "Language-Team: python-doc-es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es_AR\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.13.0\n" +"X-Generator: Poedit 3.0.1\n" #: ../Doc/library/collections.abc.rst:2 msgid ":mod:`collections.abc` --- Abstract Base Classes for Containers" @@ -35,7 +36,6 @@ msgid "**Source code:** :source:`Lib/_collections_abc.py`" msgstr "**Código fuente:** :source:`Lib/_collections_abc.py`" #: ../Doc/library/collections.abc.rst:23 -#, fuzzy msgid "" "This module provides :term:`abstract base classes ` " "that can be used to test whether a class provides a particular interface; " @@ -43,7 +43,7 @@ msgid "" msgstr "" "Este módulo proporciona :term:`clases base abstractas ` " "que pueden usarse para probar si una clase proporciona una interfaz " -"específica; por ejemplo, si es hashable o si es un mapeo." +"específica; por ejemplo, si es :term:`hashable` o si es un mapeo." #: ../Doc/library/collections.abc.rst:27 msgid "" @@ -459,14 +459,12 @@ msgid "``aclose``, ``__aiter__``, ``__anext__``" msgstr "``aclose``, ``__aiter__``, ``__anext__``" #: ../Doc/library/collections.abc.rst:180 -#, fuzzy msgid ":class:`Buffer` [1]_" -msgstr ":class:`Iterator` [1]_" +msgstr ":class:`Buffer` [1]_" #: ../Doc/library/collections.abc.rst:180 -#, fuzzy msgid "``__buffer__``" -msgstr "``__iter__``" +msgstr "``__buffer__``" #: ../Doc/library/collections.abc.rst:185 msgid "Footnotes" @@ -599,6 +597,10 @@ msgid "" "union, like ``bytes | bytearray``, or :class:`collections.abc.Buffer`. For " "use as an ABC, prefer :class:`Sequence` or :class:`collections.abc.Buffer`." msgstr "" +"La ABC :class:`ByteString` está obsoleta. Para usar al escribir, mejor use " +"una unión del tipo ``bytes | bytearray``, o :class:`collections.abc.Buffer`. " +"Para usar como una ABC, mejor use :class:`Sequence` o :class:`collections." +"abc.Buffer`." #: ../Doc/library/collections.abc.rst:285 msgid "ABCs for read-only and mutable sets." @@ -701,6 +703,8 @@ msgid "" "ABC for classes that provide the :meth:`~object.__buffer__` method, " "implementing the :ref:`buffer protocol `. See :pep:`688`." msgstr "" +"ABC para clases que proveen el método :meth:`~object.__buffer__`, " +"implementando el :ref:`protocolo búfer `. Ver :pep:`688`." #: ../Doc/library/collections.abc.rst:364 msgid "Examples and Recipes" @@ -769,7 +773,6 @@ msgstr "" "las otras operaciones seguirán automáticamente su ejemplo." #: ../Doc/library/collections.abc.rst:421 -#, fuzzy msgid "" "The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash " "value for the set; however, :meth:`__hash__` is not defined because not all " @@ -779,9 +782,10 @@ msgid "" msgstr "" "El mixin :class:`Set` proporciona un método :meth:`_hash` para calcular un " "valor hash para el conjunto; sin embargo, :meth:`__hash__` no está definido " -"porque no todos los conjuntos son encadenados o inmutables. Para agregar " -"capacidad de encadenamiento en conjuntos que usan mixin, herede de ambos :" -"meth:`Set` y :meth:`Hashable`, luego defina ``__hash__ = Set._hash``." +"porque no todos los conjuntos son :term:`hashable` o inmutables. Para " +"agregar la capacidad de encadenamiento en conjuntos usando métodos mixin, " +"herede de ambos :meth:`Set` y :meth:`Hashable`, luego defina ``__hash__ = " +"Set._hash``." #: ../Doc/library/collections.abc.rst:429 msgid "" From 97012e1c82122a30d15c651f75c839fa0a45d379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20=C3=81lvarez?= Date: Mon, 11 Dec 2023 17:16:00 +0100 Subject: [PATCH 2/4] Traducido archivo library/collections.abc.po --- library/collections.abc.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/collections.abc.po b/library/collections.abc.po index 233702aa49..2487b55eac 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-12 19:43+0200\n" -"PO-Revision-Date: 2023-12-05 13:38+0100\n" +"PO-Revision-Date: 2023-12-11 17:14+0100\n" "Last-Translator: Sofía Denner \n" "Language-Team: python-doc-es\n" "Language: es_AR\n" @@ -597,10 +597,10 @@ msgid "" "union, like ``bytes | bytearray``, or :class:`collections.abc.Buffer`. For " "use as an ABC, prefer :class:`Sequence` or :class:`collections.abc.Buffer`." msgstr "" -"La ABC :class:`ByteString` está obsoleta. Para usar al escribir, mejor use " -"una unión del tipo ``bytes | bytearray``, o :class:`collections.abc.Buffer`. " -"Para usar como una ABC, mejor use :class:`Sequence` o :class:`collections." -"abc.Buffer`." +"La ABC :class:`ByteString` está obsoleta. Para usar con :class:`typing`, " +"mejor use una unión del tipo ``bytes | bytearray``, o :class:`collections." +"abc.Buffer`. Para usar como una ABC, mejor use :class:`Sequence` o :class:" +"`collections.abc.Buffer`." #: ../Doc/library/collections.abc.rst:285 msgid "ABCs for read-only and mutable sets." From 12156fbf4c5cbd0ad517459c727204b3551cd9ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20=C3=81lvarez?= Date: Mon, 11 Dec 2023 20:12:32 +0100 Subject: [PATCH 3/4] Traducido archivo library/collections.abc.po --- library/collections.abc.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/collections.abc.po b/library/collections.abc.po index 2487b55eac..c80dd3cd0c 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-12 19:43+0200\n" -"PO-Revision-Date: 2023-12-11 17:14+0100\n" +"PO-Revision-Date: 2023-12-11 20:09+0100\n" "Last-Translator: Sofía Denner \n" "Language-Team: python-doc-es\n" "Language: es_AR\n" @@ -597,9 +597,9 @@ msgid "" "union, like ``bytes | bytearray``, or :class:`collections.abc.Buffer`. For " "use as an ABC, prefer :class:`Sequence` or :class:`collections.abc.Buffer`." msgstr "" -"La ABC :class:`ByteString` está obsoleta. Para usar con :class:`typing`, " -"mejor use una unión del tipo ``bytes | bytearray``, o :class:`collections." -"abc.Buffer`. Para usar como una ABC, mejor use :class:`Sequence` o :class:" +"La ABC :class:`ByteString` está obsoleta. Para usar con ``typing``, mejor " +"use una unión del tipo ``bytes | bytearray``, o :class:`collections.abc." +"Buffer`. Para usar como una ABC, mejor use :class:`Sequence` o :class:" "`collections.abc.Buffer`." #: ../Doc/library/collections.abc.rst:285 From 82048457d367d0a22c9abd960fd678a16eee3d88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20=C3=81lvarez?= Date: Mon, 11 Dec 2023 20:14:25 +0100 Subject: [PATCH 4/4] Traducido archivo library/collections.abc.po --- library/collections.abc.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/collections.abc.po b/library/collections.abc.po index c80dd3cd0c..d754127629 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-12 19:43+0200\n" -"PO-Revision-Date: 2023-12-11 20:09+0100\n" +"PO-Revision-Date: 2023-12-11 20:13+0100\n" "Last-Translator: Sofía Denner \n" "Language-Team: python-doc-es\n" "Language: es_AR\n" @@ -597,9 +597,9 @@ msgid "" "union, like ``bytes | bytearray``, or :class:`collections.abc.Buffer`. For " "use as an ABC, prefer :class:`Sequence` or :class:`collections.abc.Buffer`." msgstr "" -"La ABC :class:`ByteString` está obsoleta. Para usar con ``typing``, mejor " -"use una unión del tipo ``bytes | bytearray``, o :class:`collections.abc." -"Buffer`. Para usar como una ABC, mejor use :class:`Sequence` o :class:" +"La ABC :class:`ByteString` está obsoleta. Para usar con ``type hints``, " +"mejor use una unión del tipo ``bytes | bytearray``, o :class:`collections." +"abc.Buffer`. Para usar como una ABC, mejor use :class:`Sequence` o :class:" "`collections.abc.Buffer`." #: ../Doc/library/collections.abc.rst:285