Skip to content

Commit 29870f8

Browse files
cmaureirrtobar
andauthored
Fix fuzzy entries and last translations whatsnew/2.6 (#2655)
Closes #2640 --------- Co-authored-by: rtobar <[email protected]>
1 parent f58caff commit 29870f8

File tree

1 file changed

+31
-45
lines changed

1 file changed

+31
-45
lines changed

whatsnew/2.6.po

+31-45
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ msgstr ""
1313
"POT-Creation-Date: 2023-10-12 19:43+0200\n"
1414
"PO-Revision-Date: 2021-09-27 14:39-0300\n"
1515
"Last-Translator: \n"
16-
"Language: es\n"
1716
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
17+
"Language: es\n"
1918
"MIME-Version: 1.0\n"
2019
"Content-Type: text/plain; charset=utf-8\n"
2120
"Content-Transfer-Encoding: 8bit\n"
21+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2222
"Generated-By: Babel 2.13.0\n"
2323

2424
#: ../Doc/whatsnew/2.6.rst:5
@@ -185,7 +185,6 @@ msgstr ""
185185
"para el código de extensión C como :c:data:`Py_Py3kWarningFlag`."
186186

187187
#: ../Doc/whatsnew/2.6.rst:128
188-
#, fuzzy
189188
msgid ""
190189
"The 3\\ *xxx* series of PEPs, which contains proposals for Python 3.0. :pep:"
191190
"`3000` describes the development process for Python 3.0. Start with :pep:"
@@ -272,7 +271,6 @@ msgstr ""
272271
"error/parche para cada cambio."
273272

274273
#: ../Doc/whatsnew/2.6.rst:174
275-
#, fuzzy
276274
msgid ""
277275
"Hosting of the Python bug tracker is kindly provided by `Upfront Systems "
278276
"<https://upfrontsoftware.co.za>`__ of Stellenbosch, South Africa. Martin "
@@ -281,10 +279,10 @@ msgid ""
281279
"python.org/view/tracker/importer/`` and may be useful to other projects "
282280
"wishing to move from SourceForge to Roundup."
283281
msgstr ""
284-
"`Upfront Systems <http://www.upfrontsoftware.co.za>`__ de Stellenbosch, "
282+
"`Upfront Systems <https://upfrontsoftware.co.za>`__ de Stellenbosch, "
285283
"Sudáfrica, proporciona amablemente el alojamiento del rastreador de errores "
286284
"de Python. Martin von Löwis se esforzó mucho en importar errores y parches "
287-
"existentes de SourceForge; sus scripts para esta operación de importación "
285+
"existentes desde SourceForge; Sus scripts para esta operación de importación "
288286
"están en ``https://svn.python.org/view/tracker/importer/`` y pueden ser "
289287
"útiles para otros proyectos que deseen pasar de SourceForge a Roundup."
290288

@@ -1500,7 +1498,6 @@ msgstr ""
15001498
"Unicode::"
15011499

15021500
#: ../Doc/whatsnew/2.6.rst:979
1503-
#, fuzzy
15041501
msgid ""
15051502
"At the C level, Python 3.0 will rename the existing 8-bit string type, "
15061503
"called :c:type:`!PyStringObject` in Python 2.x, to :c:type:`PyBytesObject`. "
@@ -1510,7 +1507,7 @@ msgid ""
15101507
"with strings."
15111508
msgstr ""
15121509
"A nivel de C, Python 3.0 renombrará el tipo de cadena de 8 bits existente, "
1513-
"llamado :c:type:`PyStringObject` en Python 2.x, a :c:type:`PyBytesObject`. "
1510+
"llamado :c:type:`!PyStringObject` en Python 2.x, a :c:type:`PyBytesObject`. "
15141511
"Python 2.6 utiliza ``#define`` para soportar el uso de los nombres :c:func:"
15151512
"`PyBytesObject`, :c:func:`PyBytes_Check`, :c:func:"
15161513
"`PyBytes_FromStringAndSize`, y todas las demás funciones y macros utilizadas "
@@ -1773,26 +1770,23 @@ msgstr ""
17731770
"restricciones de la memoria devuelta. Algunos ejemplos son:"
17741771

17751772
#: ../Doc/whatsnew/2.6.rst:1141
1776-
#, fuzzy
17771773
msgid ":c:macro:`PyBUF_WRITABLE` indicates that the memory must be writable."
1778-
msgstr ":const:`PyBUF_WRITABLE` indica que la memoria debe ser escribible."
1774+
msgstr ":c:macro:`PyBUF_WRITABLE` indica que la memoria debe ser grabable."
17791775

17801776
#: ../Doc/whatsnew/2.6.rst:1143
1781-
#, fuzzy
17821777
msgid ""
17831778
":c:macro:`PyBUF_LOCK` requests a read-only or exclusive lock on the memory."
17841779
msgstr ""
1785-
":const:`PyBUF_LOCK` solicita un bloqueo de sólo lectura o exclusivo en la "
1780+
":c:macro:`PyBUF_LOCK` solicita un bloqueo de sólo lectura o exclusivo en la "
17861781
"memoria."
17871782

17881783
#: ../Doc/whatsnew/2.6.rst:1145
1789-
#, fuzzy
17901784
msgid ""
17911785
":c:macro:`PyBUF_C_CONTIGUOUS` and :c:macro:`PyBUF_F_CONTIGUOUS` requests a C-"
17921786
"contiguous (last dimension varies the fastest) or Fortran-contiguous (first "
17931787
"dimension varies the fastest) array layout."
17941788
msgstr ""
1795-
":const:`PyBUF_C_CONTIGUOUS` y :const:`PyBUF_F_CONTIGUOUS` solicitan una "
1789+
":c:macro:`PyBUF_C_CONTIGUOUS` y :c:macro:`PyBUF_F_CONTIGUOUS` solicitan una "
17961790
"disposición de matriz contigua en C (la última dimensión varía más "
17971791
"rápidamente) o contigua en Fortran (la primera dimensión varía más "
17981792
"rápidamente)."
@@ -2189,14 +2183,14 @@ msgstr ""
21892183
"html_node/Numerical-Tower.html#Numerical-Tower>`__, del manual de Guile."
21902184

21912185
#: ../Doc/whatsnew/2.6.rst:1436
2192-
#, fuzzy
21932186
msgid ""
21942187
"`Scheme's number datatypes <https://conservatory.scheme.org/schemers/"
21952188
"Documents/Standards/R5RS/HTML/r5rs-Z-H-9.html#%_sec_6.2>`__ from the R5RS "
21962189
"Scheme specification."
21972190
msgstr ""
2198-
"`Scheme's number datatypes <https://schemers.org/Documents/Standards/R5RS/"
2199-
"HTML/r5rs-Z-H-9.html#%_sec_6.2>`__ de la especificación del esquema R5RS."
2191+
"`Scheme's number datatypes <https://conservatory.scheme.org/schemers/"
2192+
"Documents/Standards/R5RS/HTML/r5rs-Z-H-9.html#%_sec_6.2>`__ de la "
2193+
"especificación del esquema R5RS."
22002194

22012195
#: ../Doc/whatsnew/2.6.rst:1440
22022196
msgid "The :mod:`fractions` Module"
@@ -2922,29 +2916,27 @@ msgstr ""
29222916
"con el Anexo 'G' del estándar C99."
29232917

29242918
#: ../Doc/whatsnew/2.6.rst:1853
2925-
#, fuzzy
29262919
msgid ""
29272920
"A new data type in the :mod:`collections` module: ``namedtuple(typename, "
29282921
"fieldnames)`` is a factory function that creates subclasses of the standard "
29292922
"tuple whose fields are accessible by name as well as index. For example::"
29302923
msgstr ""
2931-
"Un nuevo tipo de datos en el módulo :mod:`collections`: :class:"
2932-
"`namedtuple(typename, fieldnames)` es una función de fábrica que crea "
2924+
"Un nuevo tipo de datos en el módulo :mod:`collections`: "
2925+
"``namedtuple(typename, fieldnames)`` es una función de fábrica que crea "
29332926
"subclases de la tupla estándar cuyos campos son accesibles tanto por nombre "
29342927
"como por índice. Por ejemplo::"
29352928

29362929
#: ../Doc/whatsnew/2.6.rst:1875
2937-
#, fuzzy
29382930
msgid ""
29392931
"Several places in the standard library that returned tuples have been "
29402932
"modified to return :func:`namedtuple` instances. For example, the :meth:"
29412933
"`Decimal.as_tuple` method now returns a named tuple with :attr:`sign`, :attr:"
29422934
"`digits`, and :attr:`exponent` fields."
29432935
msgstr ""
29442936
"Varios lugares de la biblioteca estándar que devolvían tuplas han sido "
2945-
"modificados para devolver instancias de :class:`namedtuple`. Por ejemplo, "
2946-
"el método :meth:`Decimal.as_tuple` ahora devuelve una tupla con nombre con "
2947-
"los campos :attr:`signo`, :attr:`dígitos` y :attr:`exponente`."
2937+
"modificados para devolver instancias de :func:`namedtuple`. Por ejemplo, el "
2938+
"método :meth:`Decimal.as_tuple` ahora devuelve una tupla con nombre con los "
2939+
"campos :attr:`sign`, :attr:`digits` y :attr:`exponent`."
29482940

29492941
#: ../Doc/whatsnew/2.6.rst:1882
29502942
msgid ""
@@ -3662,7 +3654,6 @@ msgstr ""
36623654
"Hettinger; :issue:`1861`.)"
36633655

36643656
#: ../Doc/whatsnew/2.6.rst:2291
3665-
#, fuzzy
36663657
msgid ""
36673658
"The :mod:`select` module now has wrapper functions for the Linux :c:func:`!"
36683659
"epoll` and BSD :c:func:`!kqueue` system calls. :meth:`modify` method was "
@@ -3672,7 +3663,7 @@ msgid ""
36723663
"Heimes; :issue:`1657`.)"
36733664
msgstr ""
36743665
"El módulo :mod:`select` tiene ahora funciones de envoltura para las llamadas "
3675-
"al sistema Linux :c:func:`epoll` y BSD :c:func:`kqueue`. Se ha añadido el "
3666+
"al sistema Linux :c:func:`!epoll` y BSD :c:func:`!kqueue`. Se ha añadido el "
36763667
"método :meth:`modify` a los objetos :class:`poll` existentes; ``pollobj."
36773668
"modify(fd, eventmask)`` toma un descriptor de fichero o un objeto de fichero "
36783669
"y una máscara de evento, modificando la máscara de evento registrada para "
@@ -3733,7 +3724,6 @@ msgstr ""
37333724
"`PySignal_SetWakeupFd`, para establecer el descriptor."
37343725

37353726
#: ../Doc/whatsnew/2.6.rst:2327
3736-
#, fuzzy
37373727
msgid ""
37383728
"Event loops will use this by opening a pipe to create two descriptors, one "
37393729
"for reading and one for writing. The writable descriptor will be passed to :"
@@ -3746,7 +3736,7 @@ msgstr ""
37463736
"descriptores, uno de lectura y otro de escritura. El descriptor de "
37473737
"escritura se pasará a :func:`set_wakeup_fd`, y el descriptor de lectura se "
37483738
"añadirá a la lista de descriptores monitorizados por el bucle de eventos "
3749-
"mediante :c:func:`select` o :c:func:`poll`. Al recibir una señal, se "
3739+
"mediante :c:func:`!select` o :c:func:`!poll`. Al recibir una señal, se "
37503740
"escribirá un byte y se despertará el bucle de eventos principal, evitando la "
37513741
"necesidad de hacer un sondeo."
37523742

@@ -3818,7 +3808,6 @@ msgstr ""
38183808
"negociación TLS. (Parche aportado por Bill Fenner; :issue:`829951`.)"
38193809

38203810
#: ../Doc/whatsnew/2.6.rst:2366
3821-
#, fuzzy
38223811
msgid ""
38233812
"The :mod:`socket` module now supports TIPC (https://tipc.sourceforge.net/), "
38243813
"a high-performance non-IP-based protocol designed for use in clustered "
@@ -4804,7 +4793,6 @@ msgstr ""
48044793
"incluyen:"
48054794

48064795
#: ../Doc/whatsnew/2.6.rst:2983
4807-
#, fuzzy
48084796
msgid ""
48094797
"Python now must be compiled with C89 compilers (after 19 years!). This "
48104798
"means that the Python source tree has dropped its own implementations of :c:"
@@ -4813,7 +4801,7 @@ msgid ""
48134801
msgstr ""
48144802
"Python ahora debe ser compilado con compiladores C89 (¡después de 19 "
48154803
"años!). Esto significa que el árbol de fuentes de Python ha abandonado sus "
4816-
"propias implementaciones de :c:func:`memmove` y :c:func:`strerror`, que "
4804+
"propias implementaciones de :c:func:`!memmove` y :c:func:`!strerror`, que "
48174805
"están en la biblioteca estándar de C89."
48184806

48194807
#: ../Doc/whatsnew/2.6.rst:2988
@@ -4863,7 +4851,6 @@ msgstr ""
48634851
"y :c:func:`PyBuffer_Release`, así como algunas otras funciones."
48644852

48654853
#: ../Doc/whatsnew/2.6.rst:3010
4866-
#, fuzzy
48674854
msgid ""
48684855
"Python's use of the C stdio library is now thread-safe, or at least as "
48694856
"thread-safe as the underlying library is. A long-standing potential bug "
@@ -4882,13 +4869,13 @@ msgstr ""
48824869
"potencial de larga data ocurría si un hilo cerraba un objeto de archivo "
48834870
"mientras otro hilo estaba leyendo o escribiendo en el objeto. En la versión "
48844871
"2.6 los objetos archivo tienen un contador de referencias, manipulado por "
4885-
"las funciones :c:func:`PyFile_IncUseCount` y :c:func:`PyFile_DecUseCount`. "
4886-
"Los objetos de archivo no pueden cerrarse a menos que el recuento de "
4887-
"referencias sea cero. :c:func:`PyFile_IncUseCount` debe llamarse mientras se "
4888-
"mantiene el GIL, antes de realizar una operación de E/S utilizando el "
4889-
"puntero ``FILE *``, y :c:func:`PyFile_DecUseCount` debe llamarse "
4890-
"inmediatamente después de recuperar el GIL. (Contribución de Antoine Pitrou "
4891-
"y Gregory P. Smith)"
4872+
"las funciones :c:func:`!PyFile_IncUseCount` y :c:func:`!"
4873+
"PyFile_DecUseCount`. Los objetos de archivo no pueden cerrarse a menos que "
4874+
"el recuento de referencias sea cero. :c:func:`!PyFile_IncUseCount` debe "
4875+
"llamarse mientras se mantiene el GIL, antes de realizar una operación de E/S "
4876+
"utilizando el puntero ``FILE *``, y :c:func:`!PyFile_DecUseCount` debe "
4877+
"llamarse inmediatamente después de recuperar el GIL. (Contribución de "
4878+
"Antoine Pitrou y Gregory P. Smith)"
48924879

48934880
#: ../Doc/whatsnew/2.6.rst:3023
48944881
msgid ""
@@ -4966,7 +4953,6 @@ msgstr ""
49664953
"(Contribución de Christian Heimes.)"
49674954

49684955
#: ../Doc/whatsnew/2.6.rst:3061
4969-
#, fuzzy
49704956
msgid ""
49714957
"Some macros were renamed in both 3.0 and 2.6 to make it clearer that they "
49724958
"are macros, not functions. :c:macro:`!Py_Size()` became :c:macro:"
@@ -4975,9 +4961,9 @@ msgid ""
49754961
"still available in Python 2.6 for backward compatibility. (:issue:`1629`)"
49764962
msgstr ""
49774963
"Algunas macros han sido renombradas tanto en la 3.0 como en la 2.6 para "
4978-
"dejar más claro que son macros y no funciones. :c:macro:`Py_Size()` se "
4979-
"convierte en :c:macro:`Py_SIZE()`, :c:macro:`Py_Type()` se convierte en :c:"
4980-
"macro:`Py_TYPE()`, y :c:macro:`Py_Refcnt()` se convierte en :c:macro:"
4964+
"dejar más claro que son macros y no funciones. :c:macro:`!Py_Size()` se "
4965+
"convierte en :c:macro:`Py_SIZE()`, :c:macro:`!Py_Type()` se convierte en :c:"
4966+
"macro:`Py_TYPE()`, y :c:macro:`!Py_Refcnt()` se convierte en :c:macro:"
49814967
"`Py_REFCNT()`. Las macros de mayúsculas y minúsculas siguen estando "
49824968
"disponibles en Python 2.6 por compatibilidad con versiones anteriores. (:"
49834969
"issue:`1629`)"
@@ -5378,8 +5364,8 @@ msgstr ""
53785364

53795365
#: ../Doc/whatsnew/2.6.rst:1072
53805366
msgid "universal newlines"
5381-
msgstr ""
5367+
msgstr "nuevas líneas universales"
53825368

53835369
#: ../Doc/whatsnew/2.6.rst:1072
53845370
msgid "What's new"
5385-
msgstr ""
5371+
msgstr "Qué hay de nuevo"

0 commit comments

Comments
 (0)