Skip to content

Commit 91429cb

Browse files
Update translations
1 parent c9c1614 commit 91429cb

File tree

5 files changed

+30
-14
lines changed

5 files changed

+30
-14
lines changed

c-api/init.po

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -759,20 +759,28 @@ msgid ""
759759
"Initialize Python from *config* configuration, as described in :ref:`init-"
760760
"from-config`."
761761
msgstr ""
762+
"Inicializa o Python a partir da configuração *config*, conforme descrito em :"
763+
"ref:`init-from-config`."
762764

763765
#: ../../c-api/init.rst:395
764766
msgid ""
765767
"See the :ref:`init-config` section for details on pre-initializing the "
766768
"interpreter, populating the runtime configuration structure, and querying "
767769
"the returned status structure."
768770
msgstr ""
771+
"Consulte a seção :ref:`init-config` para obter detalhes sobre como pré-"
772+
"inicializar o interpretador, preencher a estrutura de configuração do tempo "
773+
"de execução e consultar a estrutura de status retornada."
769774

770775
#: ../../c-api/init.rst:402
771776
msgid ""
772777
"Return true (nonzero) when the Python interpreter has been initialized, "
773778
"false (zero) if not. After :c:func:`Py_FinalizeEx` is called, this returns "
774779
"false until :c:func:`Py_Initialize` is called again."
775780
msgstr ""
781+
"Retorna true (diferente de zero) quando o interpretador Python foi "
782+
"inicializado, false (zero) se não. Após :c:func:`Py_FinalizeEx` ser chamado, "
783+
"isso retorna false até que :c:func:`Py_Initialize` seja chamado novamente."
776784

777785
#: ../../c-api/init.rst:409
778786
msgid ""

library/math.po

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ msgstr "**Funções de manipulação de ponto flutuante**"
206206

207207
#: ../../library/math.rst:52
208208
msgid ":func:`copysign(x, y) <copysign>`"
209-
msgstr ""
209+
msgstr ":func:`copysign(x, y) <copysign>`"
210210

211211
#: ../../library/math.rst:52
212212
msgid "Magnitude (absolute value) of *x* with the sign of *y*"
@@ -626,7 +626,7 @@ msgstr ":data:`nan`"
626626

627627
#: ../../library/math.rst:120
628628
msgid "\"Not a number\" (NaN)"
629-
msgstr ""
629+
msgstr "\"Not a number\" (NaN)"
630630

631631
#: ../../library/math.rst:125
632632
msgid "Number-theoretic functions"
@@ -963,6 +963,10 @@ msgid ""
963963
"than returning its second return value through an 'output parameter' (there "
964964
"is no such thing in Python)."
965965
msgstr ""
966+
"Observe que :func:`frexp` tem um padrão de chamada/retorno diferente de seu "
967+
"equivalente C: elas pegam um único argumento e retornam um par de valores, "
968+
"ao invés de retornar seu segundo valor de retorno por meio de um \"parâmetro "
969+
"de saída\" (não existe tal coisa em Python)."
966970

967971
#: ../../library/math.rst:336
968972
msgid ""
@@ -1158,7 +1162,7 @@ msgstr ""
11581162

11591163
#: ../../library/math.rst:440
11601164
msgid "Power, exponential and logarithmic functions"
1161-
msgstr ""
1165+
msgstr "Funções de potências, exponenciais e logarítmicas"
11621166

11631167
#: ../../library/math.rst:444
11641168
msgid "Return the cube root of *x*."
@@ -1244,6 +1248,11 @@ msgid ""
12441248
"and *y* are finite, *x* is negative, and *y* is not an integer then ``pow(x, "
12451249
"y)`` is undefined, and raises :exc:`ValueError`."
12461250
msgstr ""
1251+
"Retorna *x* elevado a potência de *y*. Exceções seguem o padrão IEEE 754 o "
1252+
"máximo possível. ``pow(1.0, x)`` e ``pow(x, 0.0)`` em particular sempre "
1253+
"retornam ``1.0``, mesmo quando *x* é ZERO ou NaN. Se ambos *x* e *y* são "
1254+
"números finitos, *x* é negativo, e *y* não é um inteiro então ``pow(x, y)`` "
1255+
"é indefinido e levanta :exc:`ValueError`."
12471256

12481257
#: ../../library/math.rst:522
12491258
msgid ""
@@ -1271,7 +1280,7 @@ msgstr "Retorna a raiz quadrada de *x*."
12711280

12721281
#: ../../library/math.rst:538
12731282
msgid "Summation and product functions"
1274-
msgstr ""
1283+
msgstr "Funções de soma e produto"
12751284

12761285
#: ../../library/math.rst:542
12771286
msgid ""

library/multiprocessing.shared_memory.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ msgstr ""
524524
"O exemplo a seguir retrata um padrão potencialmente mais conveniente para "
525525
"usar objetos :class:`~multiprocessing.managers.SharedMemoryManager` através "
526526
"da instrução :keyword:`with` para garantir que todos os blocos de memória "
527-
"compartilhada são liberados depois que não são mais necessários."
527+
"compartilhada são liberados depois que não são mais necessários."
528528

529529
#: ../../library/multiprocessing.shared_memory.rst:266
530530
msgid ""
@@ -589,11 +589,11 @@ msgstr ":class:`bool`"
589589

590590
#: ../../library/multiprocessing.shared_memory.rst:295
591591
msgid ":class:`str` (less than 10M bytes each when encoded as UTF-8)"
592-
msgstr ":class:`str` (menos de 10 M bytes cada quando codificado como UTF-8) "
592+
msgstr ":class:`str` (menos de 10M bytes cada quando codificado como UTF-8) "
593593

594594
#: ../../library/multiprocessing.shared_memory.rst:296
595595
msgid ":class:`bytes` (less than 10M bytes each)"
596-
msgstr ":class:`bytes` (menos de 10 M bytes cada) "
596+
msgstr ":class:`bytes` (menos de 10M bytes cada)"
597597

598598
#: ../../library/multiprocessing.shared_memory.rst:297
599599
msgid "``None``"
@@ -631,7 +631,7 @@ msgstr ""
631631
"*name* é um nome único para a memória compartilhada requerida, como descrito "
632632
"na definição de :class:`SharedMemory`. Ao anexar a uma :class:`!"
633633
"ShareableList` já existente, deve-se especificar o nome único do bloco de "
634-
"memória compartilhada e definir *sequence* como ``None``."
634+
"memória compartilhada e definir *sequence* como ``None``."
635635

636636
#: ../../library/multiprocessing.shared_memory.rst:316
637637
msgid ""
@@ -754,7 +754,7 @@ msgstr "Memória compartilhada"
754754

755755
#: ../../library/multiprocessing.shared_memory.rst:11
756756
msgid "POSIX Shared Memory"
757-
msgstr "POSIX, memória compartilhada "
757+
msgstr "POSIX, memória compartilhada"
758758

759759
#: ../../library/multiprocessing.shared_memory.rst:11
760760
msgid "Named Shared Memory"

potodo.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

22

3-
# c-api (33.80% done)
3+
# c-api (33.88% done)
44

55
- exceptions.po 194 / 370 ( 52.0% translated).
66
- float.po 15 / 35 ( 42.0% translated).
77
- frame.po 20 / 37 ( 54.0% translated).
88
- gcsupport.po 9 / 52 ( 17.0% translated).
99
- import.po 33 / 62 ( 53.0% translated).
10-
- init.po 143 / 477 ( 29.0% translated).
10+
- init.po 146 / 477 ( 30.0% translated).
1111
- init_config.po 135 / 417 ( 32.0% translated).
1212
- intro.po 94 / 140 ( 67.0% translated).
1313
- long.po 37 / 104 ( 35.0% translated).
@@ -56,7 +56,7 @@
5656
- urllib2.po 24 / 100 ( 24.0% translated).
5757

5858

59-
# library (42.55% done)
59+
# library (41.99% done)
6060

6161
- abc.po 31 / 60 ( 51.0% translated).
6262
- aifc.po 1 / 3 ( 33.0% translated).
@@ -162,7 +162,6 @@
162162
- lzma.po 66 / 115 ( 57.0% translated).
163163
- mailbox.po 10 / 306 ( 3.0% translated).
164164
- mailcap.po 1 / 3 ( 33.0% translated).
165-
- math.po 262 / 268 ( 97.0% translated).
166165
- mimetypes.po 20 / 54 ( 37.0% translated).
167166
- mmap.po 12 / 65 ( 18.0% translated).
168167
- modulefinder.po 13 / 16 ( 81.0% translated).

stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "63.63%", "total": 63092, "updated_at": "2024-11-22T23:10:31+00:00Z"}
1+
{"translation": "63.64%", "total": 63092, "updated_at": "2024-11-23T23:09:50+00:00Z"}

0 commit comments

Comments
 (0)