Skip to content

Commit 09feb9e

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 61f2a60 commit 09feb9e

File tree

5 files changed

+44
-12
lines changed

5 files changed

+44
-12
lines changed

.tx/config

+10
Original file line numberDiff line numberDiff line change
@@ -711,6 +711,16 @@ resource_name = copyright
711711
replace_edited_strings = false
712712
keep_translations = false
713713

714+
[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_13]
715+
file_filter = ./<lang>/LC_MESSAGES/deprecations/pending-removal-in-3.13.po
716+
trans.pt_BR = deprecations/pending-removal-in-3.13.po
717+
source_file = ../../pot/deprecations/pending-removal-in-3.13.pot
718+
type = PO
719+
minimum_perc = 0
720+
resource_name = deprecations--pending-removal-in-3_13
721+
replace_edited_strings = false
722+
keep_translations = false
723+
714724
[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_14]
715725
file_filter = ./<lang>/LC_MESSAGES/deprecations/pending-removal-in-3.14.po
716726
trans.pt_BR = deprecations/pending-removal-in-3.14.po

c-api/arg.po

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
# Welliton Malta <wellyton47@hotmail.com>, 2023
1414
# Julia Rizza <contato@juliarizza.com>, 2023
1515
# Italo Penaforte <italo.penaforte@gmail.com>, 2024
16-
# Adorilson Bezerra <adorilson@gmail.com>, 2024
1716
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
17+
# Adorilson Bezerra <adorilson@gmail.com>, 2024
1818
#
1919
#, fuzzy
2020
msgid ""
2121
msgstr ""
2222
"Project-Id-Version: Python 3.13\n"
2323
"Report-Msgid-Bugs-To: \n"
24-
"POT-Creation-Date: 2024-07-19 14:16+0000\n"
24+
"POT-Creation-Date: 2024-07-20 00:52+0000\n"
2525
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
26-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
26+
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2024\n"
2727
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2828
"teams/5390/pt_BR/)\n"
2929
"MIME-Version: 1.0\n"
@@ -746,6 +746,7 @@ msgstr "``f``` (:class:`float`) [float]"
746746
#: ../../c-api/arg.rst:283
747747
msgid "Convert a Python floating-point number to a C :c:expr:`float`."
748748
msgstr ""
749+
"Converte um número de ponto flutuante Python para um :c:expr:`float` do C."
749750

750751
#: ../../c-api/arg.rst:285 ../../c-api/arg.rst:644
751752
msgid "``d`` (:class:`float`) [double]"
@@ -754,6 +755,7 @@ msgstr "``d`` (:class:`float`) [double]"
754755
#: ../../c-api/arg.rst:286
755756
msgid "Convert a Python floating-point number to a C :c:expr:`double`."
756757
msgstr ""
758+
"Converte um número de ponto flutuante Python para um :c:expr:`double` do C."
757759

758760
#: ../../c-api/arg.rst:288
759761
msgid "``D`` (:class:`complex`) [Py_complex]"
@@ -1432,10 +1434,12 @@ msgstr ""
14321434
#: ../../c-api/arg.rst:645
14331435
msgid "Convert a C :c:expr:`double` to a Python floating-point number."
14341436
msgstr ""
1437+
"Converte um :c:expr:`double` do C em um número ponto flutuante do Python."
14351438

14361439
#: ../../c-api/arg.rst:648
14371440
msgid "Convert a C :c:expr:`float` to a Python floating-point number."
14381441
msgstr ""
1442+
"Converte um :c:expr:`float` do C em um número ponto flutuante do Python."
14391443

14401444
#: ../../c-api/arg.rst:650
14411445
msgid "``D`` (:class:`complex`) [Py_complex \\*]"

c-api/float.po

+15-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
#
66
# Translators:
77
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
8+
# Adorilson Bezerra <adorilson@gmail.com>, 2024
89
#
910
#, fuzzy
1011
msgid ""
1112
msgstr ""
1213
"Project-Id-Version: Python 3.13\n"
1314
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-07-19 14:16+0000\n"
15+
"POT-Creation-Date: 2024-07-20 00:52+0000\n"
1516
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
17+
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2024\n"
1718
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1819
"teams/5390/pt_BR/)\n"
1920
"MIME-Version: 1.0\n"
@@ -25,18 +26,23 @@ msgstr ""
2526

2627
#: ../../c-api/float.rst:6
2728
msgid "Floating-Point Objects"
28-
msgstr ""
29+
msgstr "Objetos de ponto flutuante"
2930

3031
#: ../../c-api/float.rst:13
3132
msgid ""
3233
"This subtype of :c:type:`PyObject` represents a Python floating-point object."
3334
msgstr ""
35+
"Este subtipo de :c:type:`PyObject` representa um objeto de ponto flutuante "
36+
"do Python."
3437

3538
#: ../../c-api/float.rst:18
3639
msgid ""
3740
"This instance of :c:type:`PyTypeObject` represents the Python floating-point "
3841
"type. This is the same object as :class:`float` in the Python layer."
3942
msgstr ""
43+
"Esta instância do :c:type:`PyTypeObject` representa o tipo de ponto "
44+
"flutuante do Python. Este é o mesmo objeto :class:`float` na camada do "
45+
"Python."
4046

4147
#: ../../c-api/float.rst:24
4248
msgid ""
@@ -86,6 +92,8 @@ msgid ""
8692
"Return a C :c:expr:`double` representation of the contents of *pyfloat*, but "
8793
"without error checking."
8894
msgstr ""
95+
"Retorna uma representação C :c:expr:`double` do conteúdo de *pyfloat*, mas "
96+
"sem verificação de erro."
8997

9098
#: ../../c-api/float.rst:66
9199
msgid ""
@@ -102,11 +110,15 @@ msgid ""
102110
"Return the maximum representable finite float *DBL_MAX* as C :c:expr:"
103111
"`double`."
104112
msgstr ""
113+
"Retorna o ponto flutuante finito máximo representável *DBL_MAX* como :c:expr:"
114+
"`double` do C."
105115

106116
#: ../../c-api/float.rst:78
107117
msgid ""
108118
"Return the minimum normalized positive float *DBL_MIN* as C :c:expr:`double`."
109119
msgstr ""
120+
"Retorna o ponto flutuante positivo mínimo normalizado *DBL_MIN* como :c:expr:"
121+
"`double` do C."
110122

111123
#: ../../c-api/float.rst:82
112124
msgid "Pack and Unpack functions"

library/locale.po

+7-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-07-19 14:16+0000\n"
19+
"POT-Creation-Date: 2024-07-20 00:52+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:08+0000\n"
2121
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2024\n"
2222
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -771,6 +771,10 @@ msgid ""
771771
"point values, the decimal point is modified if appropriate. If *grouping* "
772772
"is ``True``, also takes the grouping into account."
773773
msgstr ""
774+
"Formata um número *val* de acordo com a configuração atual do :const:"
775+
"`LC_NUMERIC`. O formato segue as convenções do operador ``%``. Para valores "
776+
"de ponto flutuante, o ponto decimal é modificado, se apropriado. Se "
777+
"*grouping* for ``True``, também levará em conta o agrupamento."
774778

775779
#: ../../library/locale.rst:431
776780
msgid ""
@@ -825,6 +829,8 @@ msgid ""
825829
"Formats a floating-point number using the same format as the built-in "
826830
"function ``str(float)``, but takes the decimal point into account."
827831
msgstr ""
832+
"Formata um número de ponto flutuante usando o mesmo formato da função "
833+
"embutida ``str(float)``, mas leva o ponto decimal em consideração."
828834

829835
#: ../../library/locale.rst:464
830836
msgid ""

library/os.po

+5-5
Original file line numberDiff line numberDiff line change
@@ -634,9 +634,9 @@ msgid ""
634634
msgstr ""
635635
"Retorna o valor da variável de ambiente *key* como uma string se existir, ou "
636636
"*default* se não existir. *key* é uma string. Note que uma vez que :func:"
637-
"`getenv` utiliza :data:`os.environ`, o mapeamento de :func:`getenv` é "
638-
"capturado de maneira similar na importação, e a função pode não refletir "
639-
"futuras mudanças no ambiente."
637+
"`getenv` utiliza :data:`os.environ`, o mapeamento de :func:`getenv` é também "
638+
"similarmente capturado na importação, e a função pode não refletir futuras "
639+
"mudanças no ambiente."
640640

641641
#: ../../library/os.rst:318
642642
msgid ""
@@ -670,7 +670,7 @@ msgstr ""
670670
"Retorna o valor da variável de ambiente *key* como bytes se existir, ou "
671671
"*default* se não existir. *key* deve ser bytes. Note que uma vez que :func:"
672672
"`getenvb` utiliza :data:`os.environb`, o mapeamento de :func:`getenvb` é "
673-
"capturado de maneira similar na importação, e a função pode não refletir "
673+
"também similarmente capturado na importação, e a função pode não refletir "
674674
"futuras mudanças no ambiente."
675675

676676
#: ../../library/os.rst:334
@@ -733,7 +733,7 @@ msgid ""
733733
"The function is a stub on WASI, see :ref:`wasm-availability` for more "
734734
"information."
735735
msgstr ""
736-
"A função é um simulação em WASI, veja :ref:`wasm-availability` para mais "
736+
"A função é uma simulação em WASI, veja :ref:`wasm-availability` para mais "
737737
"informações."
738738

739739
#: ../../library/os.rst:384

0 commit comments

Comments
 (0)