Skip to content

Commit 6ed123e

Browse files
Update translations from Transifex
1 parent 23c4ab4 commit 6ed123e

10 files changed

Lines changed: 6952 additions & 6926 deletions

File tree

c-api/exceptions.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# Willian C Lopes <willclbr@gmail.com>, 2020
1414
# Alexsandro Matias de Almeida <matiasalexsandro@gmail.com>, 2020
1515
# Rafael Fontenelle <rffontenelle@gmail.com>, 2020
16+
# Hildeberto Abreu Magalhães <hildeberto@gmail.com>, 2021
1617
#
1718
#, fuzzy
1819
msgid ""
@@ -21,7 +22,7 @@ msgstr ""
2122
"Report-Msgid-Bugs-To: \n"
2223
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2324
"PO-Revision-Date: 2017-02-16 17:35+0000\n"
24-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2020\n"
25+
"Last-Translator: Hildeberto Abreu Magalhães <hildeberto@gmail.com>, 2021\n"
2526
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2627
"teams/5390/pt_BR/)\n"
2728
"MIME-Version: 1.0\n"
@@ -739,7 +740,7 @@ msgstr ""
739740

740741
#: ../../c-api/exceptions.rst:640 ../../c-api/exceptions.rst:650
741742
msgid "3.11"
742-
msgstr ""
743+
msgstr "3.11"
743744

744745
#: ../../c-api/exceptions.rst:642
745746
msgid ""

c-api/init_config.po

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ msgstr "Se diferente de zero, emite um aviso se a localidade C for forçada."
455455

456456
#: ../../c-api/init_config.rst:250
457457
msgid "See :c:member:`PyConfig.dev_mode`."
458-
msgstr "Veja c:member:`PyConfig.dev_mode`."
458+
msgstr "Veja :c:member:`PyConfig.dev_mode`."
459459

460460
#: ../../c-api/init_config.rst:254
461461
msgid "See :c:member:`PyConfig.isolated`."
@@ -485,14 +485,18 @@ msgid ""
485485
"the regular Python parses command line arguments: see :ref:`Command Line "
486486
"Arguments <using-on-cmdline>`."
487487
msgstr ""
488+
"Se diferente de zero, :c:func:`Py_PreInitializeFromArgs` e :c:func:"
489+
"`Py_PreInitializeFromBytesArgs` analisam seu argumento ``argv`` da mesma "
490+
"forma que o Python regular analisa argumentos de linha de comando: vej :ref:"
491+
"`Argumentos de linha de comando <using-on-cmdline>`."
488492

489493
#: ../../c-api/init_config.rst:273
490494
msgid "See :c:member:`PyConfig.use_environment`."
491-
msgstr ""
495+
msgstr "Veja :c:member:`PyConfig.use_environment`."
492496

493497
#: ../../c-api/init_config.rst:277
494498
msgid "If non-zero, enable the UTF-8 mode."
495-
msgstr ""
499+
msgstr "Se não zero, habilita o modo UTF-8."
496500

497501
#: ../../c-api/init_config.rst:280
498502
msgid "Preinitialization with PyPreConfig"

library/importlib.metadata.po

Lines changed: 43 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.9\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2021-05-20 06:27+0000\n"
16+
"POT-Creation-Date: 2021-06-28 06:43+0000\n"
1717
"PO-Revision-Date: 2019-09-01 14:41+0000\n"
1818
"Last-Translator: i17obot <i17obot@rougeth.com>, 2020\n"
1919
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
@@ -28,13 +28,17 @@ msgstr ""
2828
msgid "Using :mod:`!importlib.metadata`"
2929
msgstr ""
3030

31-
#: ../../library/importlib.metadata.rst:13
31+
#: ../../library/importlib.metadata.rst:10
32+
msgid "**Source code:** :source:`Lib/importlib/metadata.py`"
33+
msgstr ""
34+
35+
#: ../../library/importlib.metadata.rst:15
3236
msgid ""
3337
"This functionality is provisional and may deviate from the usual version "
3438
"semantics of the standard library."
3539
msgstr ""
3640

37-
#: ../../library/importlib.metadata.rst:16
41+
#: ../../library/importlib.metadata.rst:18
3842
msgid ""
3943
"``importlib.metadata`` is a library that provides for access to installed "
4044
"package metadata. Built in part on Python's import system, this library "
@@ -45,7 +49,7 @@ msgid ""
4549
"efficient ``pkg_resources`` package."
4650
msgstr ""
4751

48-
#: ../../library/importlib.metadata.rst:25
52+
#: ../../library/importlib.metadata.rst:27
4953
msgid ""
5054
"By \"installed package\" we generally mean a third-party package installed "
5155
"into Python's ``site-packages`` directory via tools such as `pip <https://"
@@ -56,52 +60,52 @@ msgid ""
5660
"extension mechanism, the metadata can live almost anywhere."
5761
msgstr ""
5862

59-
#: ../../library/importlib.metadata.rst:36
63+
#: ../../library/importlib.metadata.rst:38
6064
msgid "Overview"
6165
msgstr "Visão Geral"
6266

63-
#: ../../library/importlib.metadata.rst:38
67+
#: ../../library/importlib.metadata.rst:40
6468
msgid ""
6569
"Let's say you wanted to get the version string for a package you've "
6670
"installed using ``pip``. We start by creating a virtual environment and "
6771
"installing something into it:"
6872
msgstr ""
6973

70-
#: ../../library/importlib.metadata.rst:48
74+
#: ../../library/importlib.metadata.rst:50
7175
msgid "You can get the version string for ``wheel`` by running the following:"
7276
msgstr ""
7377

74-
#: ../../library/importlib.metadata.rst:57
78+
#: ../../library/importlib.metadata.rst:59
7579
msgid ""
7680
"You can also get the set of entry points keyed by group, such as "
7781
"``console_scripts``, ``distutils.commands`` and others. Each group contains "
7882
"a sequence of :ref:`EntryPoint <entry-points>` objects."
7983
msgstr ""
8084

81-
#: ../../library/importlib.metadata.rst:61
85+
#: ../../library/importlib.metadata.rst:63
8286
msgid "You can get the :ref:`metadata for a distribution <metadata>`::"
8387
msgstr ""
8488

85-
#: ../../library/importlib.metadata.rst:66
89+
#: ../../library/importlib.metadata.rst:68
8690
msgid ""
8791
"You can also get a :ref:`distribution's version number <version>`, list its :"
8892
"ref:`constituent files <files>`, and get a list of the distribution's :ref:"
8993
"`requirements`."
9094
msgstr ""
9195

92-
#: ../../library/importlib.metadata.rst:72
96+
#: ../../library/importlib.metadata.rst:74
9397
msgid "Functional API"
9498
msgstr ""
9599

96-
#: ../../library/importlib.metadata.rst:74
100+
#: ../../library/importlib.metadata.rst:76
97101
msgid "This package provides the following functionality via its public API."
98102
msgstr ""
99103

100-
#: ../../library/importlib.metadata.rst:80
104+
#: ../../library/importlib.metadata.rst:82
101105
msgid "Entry points"
102106
msgstr ""
103107

104-
#: ../../library/importlib.metadata.rst:82
108+
#: ../../library/importlib.metadata.rst:84
105109
msgid ""
106110
"The ``entry_points()`` function returns a dictionary of all entry points, "
107111
"keyed by group. Entry points are represented by ``EntryPoint`` instances; "
@@ -111,7 +115,7 @@ msgid ""
111115
"value`` attribute::"
112116
msgstr ""
113117

114-
#: ../../library/importlib.metadata.rst:106
118+
#: ../../library/importlib.metadata.rst:108
115119
msgid ""
116120
"The ``group`` and ``name`` are arbitrary values defined by the package "
117121
"author and usually a client will wish to resolve all entry points for a "
@@ -120,37 +124,37 @@ msgid ""
120124
"for more information on entry points, their definition, and usage."
121125
msgstr ""
122126

123-
#: ../../library/importlib.metadata.rst:116
127+
#: ../../library/importlib.metadata.rst:118
124128
msgid "Distribution metadata"
125129
msgstr ""
126130

127-
#: ../../library/importlib.metadata.rst:118
131+
#: ../../library/importlib.metadata.rst:120
128132
msgid ""
129133
"Every distribution includes some metadata, which you can extract using the "
130134
"``metadata()`` function::"
131135
msgstr ""
132136

133-
#: ../../library/importlib.metadata.rst:123
137+
#: ../../library/importlib.metadata.rst:125
134138
msgid ""
135139
"The keys of the returned data structure [#f1]_ name the metadata keywords, "
136140
"and their values are returned unparsed from the distribution metadata::"
137141
msgstr ""
138142

139-
#: ../../library/importlib.metadata.rst:133
143+
#: ../../library/importlib.metadata.rst:135
140144
msgid "Distribution versions"
141145
msgstr ""
142146

143-
#: ../../library/importlib.metadata.rst:135
147+
#: ../../library/importlib.metadata.rst:137
144148
msgid ""
145149
"The ``version()`` function is the quickest way to get a distribution's "
146150
"version number, as a string::"
147151
msgstr ""
148152

149-
#: ../../library/importlib.metadata.rst:145
153+
#: ../../library/importlib.metadata.rst:147
150154
msgid "Distribution files"
151155
msgstr ""
152156

153-
#: ../../library/importlib.metadata.rst:147
157+
#: ../../library/importlib.metadata.rst:149
154158
msgid ""
155159
"You can also get the full set of files contained within a distribution. The "
156160
"``files()`` function takes a distribution package name and returns all of "
@@ -160,11 +164,11 @@ msgid ""
160164
"For example::"
161165
msgstr ""
162166

163-
#: ../../library/importlib.metadata.rst:163
167+
#: ../../library/importlib.metadata.rst:165
164168
msgid "Once you have the file, you can also read its contents::"
165169
msgstr "Uma vez que tenha o arquivo, você também pode ler seu conteúdo::"
166170

167-
#: ../../library/importlib.metadata.rst:174
171+
#: ../../library/importlib.metadata.rst:176
168172
msgid ""
169173
"In the case where the metadata file listing files (RECORD or SOURCES.txt) is "
170174
"missing, ``files()`` will return ``None``. The caller may wish to wrap calls "
@@ -174,51 +178,51 @@ msgid ""
174178
"present."
175179
msgstr ""
176180

177-
#: ../../library/importlib.metadata.rst:185
181+
#: ../../library/importlib.metadata.rst:187
178182
msgid "Distribution requirements"
179183
msgstr ""
180184

181-
#: ../../library/importlib.metadata.rst:187
185+
#: ../../library/importlib.metadata.rst:189
182186
msgid ""
183187
"To get the full set of requirements for a distribution, use the "
184188
"``requires()`` function::"
185189
msgstr ""
186190

187-
#: ../../library/importlib.metadata.rst:195
191+
#: ../../library/importlib.metadata.rst:197
188192
msgid "Distributions"
189193
msgstr ""
190194

191-
#: ../../library/importlib.metadata.rst:197
195+
#: ../../library/importlib.metadata.rst:199
192196
msgid ""
193197
"While the above API is the most common and convenient usage, you can get all "
194198
"of that information from the ``Distribution`` class. A ``Distribution`` is "
195199
"an abstract object that represents the metadata for a Python package. You "
196200
"can get the ``Distribution`` instance::"
197201
msgstr ""
198202

199-
#: ../../library/importlib.metadata.rst:205
203+
#: ../../library/importlib.metadata.rst:207
200204
msgid ""
201205
"Thus, an alternative way to get the version number is through the "
202206
"``Distribution`` instance::"
203207
msgstr ""
204208

205-
#: ../../library/importlib.metadata.rst:211
209+
#: ../../library/importlib.metadata.rst:213
206210
msgid ""
207211
"There are all kinds of additional metadata available on the ``Distribution`` "
208212
"instance::"
209213
msgstr ""
210214

211-
#: ../../library/importlib.metadata.rst:219
215+
#: ../../library/importlib.metadata.rst:221
212216
msgid ""
213217
"The full set of available metadata is not described here. See :pep:`566` "
214218
"for additional details."
215219
msgstr ""
216220

217-
#: ../../library/importlib.metadata.rst:224
221+
#: ../../library/importlib.metadata.rst:226
218222
msgid "Extending the search algorithm"
219223
msgstr ""
220224

221-
#: ../../library/importlib.metadata.rst:226
225+
#: ../../library/importlib.metadata.rst:228
222226
msgid ""
223227
"Because package metadata is not available through :data:`sys.path` searches, "
224228
"or package loaders directly, the metadata for a package is found through "
@@ -227,14 +231,14 @@ msgid ""
227231
"path finders <meta path finder>` on :data:`sys.meta_path`."
228232
msgstr ""
229233

230-
#: ../../library/importlib.metadata.rst:232
234+
#: ../../library/importlib.metadata.rst:234
231235
msgid ""
232236
"The default ``PathFinder`` for Python includes a hook that calls into "
233237
"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded "
234238
"from typical file-system-based paths."
235239
msgstr ""
236240

237-
#: ../../library/importlib.metadata.rst:236
241+
#: ../../library/importlib.metadata.rst:238
238242
msgid ""
239243
"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
240244
"interface expected of finders by Python's import system. ``importlib."
@@ -244,14 +248,14 @@ msgid ""
244248
"base class, which defines this abstract method::"
245249
msgstr ""
246250

247-
#: ../../library/importlib.metadata.rst:250
251+
#: ../../library/importlib.metadata.rst:252
248252
msgid ""
249253
"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` "
250254
"properties indicating the path to search and name to match and may supply "
251255
"other relevant context."
252256
msgstr ""
253257

254-
#: ../../library/importlib.metadata.rst:254
258+
#: ../../library/importlib.metadata.rst:256
255259
msgid ""
256260
"What this means in practice is that to support finding distribution package "
257261
"metadata in locations other than the file system, subclass ``Distribution`` "
@@ -260,11 +264,11 @@ msgid ""
260264
"method."
261265
msgstr ""
262266

263-
#: ../../library/importlib.metadata.rst:267
267+
#: ../../library/importlib.metadata.rst:269
264268
msgid "Footnotes"
265269
msgstr "Notas de rodapé"
266270

267-
#: ../../library/importlib.metadata.rst:268
271+
#: ../../library/importlib.metadata.rst:270
268272
msgid ""
269273
"Technically, the returned distribution metadata object is an :class:`email."
270274
"message.EmailMessage` instance, but this is an implementation detail, and "

library/signal.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Marco Rougeth <marco@rougeth.com>, 2019
1010
# Alexandre B A Villares, 2020
1111
# Rafael Fontenelle <rffontenelle@gmail.com>, 2020
12-
# i17obot <i17obot@rougeth.com>, 2020
12+
# i17obot <i17obot@rougeth.com>, 2021
1313
#
1414
#, fuzzy
1515
msgid ""
@@ -18,7 +18,7 @@ msgstr ""
1818
"Report-Msgid-Bugs-To: \n"
1919
"POT-Creation-Date: 2021-03-02 05:36+0000\n"
2020
"PO-Revision-Date: 2017-02-16 23:26+0000\n"
21-
"Last-Translator: i17obot <i17obot@rougeth.com>, 2020\n"
21+
"Last-Translator: i17obot <i17obot@rougeth.com>, 2021\n"
2222
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2323
"teams/5390/pt_BR/)\n"
2424
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr ""
109109

110110
#: ../../library/signal.rst:65
111111
msgid "Module contents"
112-
msgstr ""
112+
msgstr "Conteúdo do módulo"
113113

114114
#: ../../library/signal.rst:67
115115
msgid ""

library/site.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
#
66
# Translators:
77
# Marco Rougeth <marco@rougeth.com>, 2020
8-
# i17obot <i17obot@rougeth.com>, 2020
98
# Rafael Fontenelle <rffontenelle@gmail.com>, 2021
9+
# i17obot <i17obot@rougeth.com>, 2021
1010
#
1111
#, fuzzy
1212
msgid ""
@@ -15,7 +15,7 @@ msgstr ""
1515
"Report-Msgid-Bugs-To: \n"
1616
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
1717
"PO-Revision-Date: 2017-02-16 23:26+0000\n"
18-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2021\n"
18+
"Last-Translator: i17obot <i17obot@rougeth.com>, 2021\n"
1919
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2020
"teams/5390/pt_BR/)\n"
2121
"MIME-Version: 1.0\n"
@@ -246,7 +246,7 @@ msgstr ""
246246

247247
#: ../../library/site.rst:158
248248
msgid "Module contents"
249-
msgstr ""
249+
msgstr "Conteúdo do módulo"
250250

251251
#: ../../library/site.rst:162
252252
msgid "A list of prefixes for site-packages directories."

0 commit comments

Comments
 (0)