Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e981f70

Browse files
authored
Termina la traducción de multiprocessing.po (#1722)
Co-authored-by: Hristo Roque <>
1 parent 43ff89c commit e981f70

File tree

1 file changed

+14
-17
lines changed

1 file changed

+14
-17
lines changed

library/multiprocessing.po

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2021-10-16 21:42+0200\n"
14-
"PO-Revision-Date: 2021-08-24 01:37+0800\n"
15-
"Last-Translator: Rodrigo Tobar <rtobarc@gmail.com>\n"
14+
"PO-Revision-Date: 2021-12-12 13:14-0500\n"
15+
"Last-Translator: Adolfo Hristo David Roque Gámez <aroquega@gmail.com>\n"
1616
"Language: es_ES\n"
1717
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=utf-8\n"
2121
"Content-Transfer-Encoding: 8bit\n"
2222
"Generated-By: Babel 2.9.1\n"
23+
"X-Generator: Poedit 3.0\n"
2324

2425
#: ../Doc/library/multiprocessing.rst:2
2526
msgid ":mod:`multiprocessing` --- Process-based parallelism"
@@ -1125,13 +1126,12 @@ msgstr ""
11251126
"multiproceso/multiprocesamiento, este número no es confiable."
11261127

11271128
#: ../Doc/library/multiprocessing.rst:785
1128-
#, fuzzy
11291129
msgid ""
11301130
"Note that this may raise :exc:`NotImplementedError` on Unix platforms like "
11311131
"macOS where ``sem_getvalue()`` is not implemented."
11321132
msgstr ""
11331133
"Tenga en cuenta que esto puede lanzar :exc:`NotImplementedError` en "
1134-
"plataformas Unix como Mac OS X donde ``sem_getvalue()`` no está implementado."
1134+
"plataformas Unix como macOS donde ``sem_getvalue()`` no está implementado."
11351135

11361136
#: ../Doc/library/multiprocessing.rst:790
11371137
msgid ""
@@ -1267,7 +1267,6 @@ msgstr ""
12671267
"proceso; consulte :meth:`join_thread`."
12681268

12691269
#: ../Doc/library/multiprocessing.rst:862
1270-
#, fuzzy
12711270
msgid ""
12721271
"A better name for this method might be ``allow_exit_without_flush()``. It "
12731272
"is likely to cause enqueued data to be lost, and you almost certainly will "
@@ -1276,10 +1275,10 @@ msgid ""
12761275
"pipe, and you don't care about lost data."
12771276
msgstr ""
12781277
"Un mejor nombre para este método podría ser ``allow_exit_without_flush()``. "
1279-
"Es probable que provoque la pérdida de datos en cola (*queue*), y es casi "
1280-
"seguro que no necesitará usarlos. Realmente solo está allí si necesita que "
1281-
"el proceso actual salga inmediatamente sin esperar a vaciar los datos en "
1282-
"cola en la tubería (*pipe*) subyacente, y no le importan los datos perdidos."
1278+
"Es probable que provoque la pérdida de datos encolados, y es casi seguro que "
1279+
"no necesitará usarlo. Realmente solo está allí si necesita que el proceso "
1280+
"actual salga inmediatamente sin esperar a vaciar los datos en en la tubería "
1281+
"(*pipe*) subyacente, y no le importan los datos perdidos."
12831282

12841283
#: ../Doc/library/multiprocessing.rst:871
12851284
msgid ""
@@ -1425,6 +1424,8 @@ msgid ""
14251424
"When the number of CPUs cannot be determined a :exc:`NotImplementedError` is "
14261425
"raised."
14271426
msgstr ""
1427+
"Cuando no se puede determinar el número de CPUs, se lanza un :exc:"
1428+
"`NotImplementedError`."
14281429

14291430
#: ../Doc/library/multiprocessing.rst:958
14301431
msgid ":func:`os.cpu_count`"
@@ -1539,15 +1540,14 @@ msgstr ""
15391540
"verdadero, se retorna ``None``."
15401541

15411542
#: ../Doc/library/multiprocessing.rst:1031
1542-
#, fuzzy
15431543
msgid ""
15441544
"The return value can be ``'fork'``, ``'spawn'``, ``'forkserver'`` or "
15451545
"``None``. ``'fork'`` is the default on Unix, while ``'spawn'`` is the "
15461546
"default on Windows and macOS."
15471547
msgstr ""
15481548
"El valor retornado puede ser ``'fork'``, ``'spawn'``, ``'forkserver'`` o "
15491549
"``None``. En Unix ``'fork'`` es el valor predeterminado mientras que "
1550-
"``'spawn'`` lo es en Windows."
1550+
"``'spawn'`` lo es en Windows y macOS."
15511551

15521552
#: ../Doc/library/multiprocessing.rst:1045
15531553
msgid ""
@@ -1863,12 +1863,11 @@ msgstr ""
18631863
"acquire`."
18641864

18651865
#: ../Doc/library/multiprocessing.rst:1244
1866-
#, fuzzy
18671866
msgid ""
18681867
"On macOS, this is indistinguishable from :class:`Semaphore` because "
18691868
"``sem_getvalue()`` is not implemented on that platform."
18701869
msgstr ""
1871-
"En Mac OS X, esto no se puede distinguir de :class:`Semaphore` porque "
1870+
"En macOS, esto no se puede distinguir de :class:`Semaphore` porque "
18721871
"``sem_getvalue()`` no está implementado en esa plataforma."
18731872

18741873
#: ../Doc/library/multiprocessing.rst:1249
@@ -2123,12 +2122,11 @@ msgstr ""
21232122
"Un objeto semáforo: un análogo cercano de :class:`threading.Semaphore`."
21242123

21252124
#: ../Doc/library/multiprocessing.rst:1383
2126-
#, fuzzy
21272125
msgid ""
21282126
"On macOS, ``sem_timedwait`` is unsupported, so calling ``acquire()`` with a "
21292127
"timeout will emulate that function's behavior using a sleeping loop."
21302128
msgstr ""
2131-
"En Mac OS X, ``sem_timedwait`` no es compatible, por lo que llamar a "
2129+
"En macOS, ``sem_timedwait`` no es compatible, por lo que llamar a "
21322130
"``acquire()`` con un tiempo de espera emulará el comportamiento de esa "
21332131
"función utilizando un bucle inactivo."
21342132

@@ -3243,7 +3241,6 @@ msgstr ""
32433241
"demorarse en la finalización."
32443242

32453243
#: ../Doc/library/multiprocessing.rst:2156
3246-
#, fuzzy
32473244
msgid ""
32483245
"Note that it is **not correct** to rely on the garbage collector to destroy "
32493246
"the pool as CPython does not assure that the finalizer of the pool will be "

0 commit comments

Comments
 (0)