Skip to content

Commit 3a24c71

Browse files
Update translations from Transifex
1 parent 07db551 commit 3a24c71

7 files changed

Lines changed: 7747 additions & 7701 deletions

File tree

c-api/structures.po

Lines changed: 37 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.10\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2021-06-29 12:56+0000\n"
18+
"POT-Creation-Date: 2021-08-03 13:12+0000\n"
1919
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
2020
"Last-Translator: Juliana Karoline <julianaklulo@gmail.com>, 2021\n"
2121
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
@@ -225,17 +225,17 @@ msgid ""
225225
msgstr ""
226226

227227
#: ../../c-api/structures.rst:239 ../../c-api/structures.rst:397
228-
#: ../../c-api/structures.rst:478
228+
#: ../../c-api/structures.rst:493
229229
msgid "Field"
230230
msgstr "Campo"
231231

232232
#: ../../c-api/structures.rst:239 ../../c-api/structures.rst:397
233-
#: ../../c-api/structures.rst:478
233+
#: ../../c-api/structures.rst:493
234234
msgid "C Type"
235235
msgstr "Tipo em C"
236236

237237
#: ../../c-api/structures.rst:239 ../../c-api/structures.rst:397
238-
#: ../../c-api/structures.rst:478
238+
#: ../../c-api/structures.rst:493
239239
msgid "Meaning"
240240
msgstr "Significado"
241241

@@ -245,8 +245,8 @@ msgstr ":attr:`ml_name`"
245245

246246
#: ../../c-api/structures.rst:241 ../../c-api/structures.rst:249
247247
#: ../../c-api/structures.rst:399 ../../c-api/structures.rst:412
248-
#: ../../c-api/structures.rst:428 ../../c-api/structures.rst:480
249-
#: ../../c-api/structures.rst:488
248+
#: ../../c-api/structures.rst:428 ../../c-api/structures.rst:495
249+
#: ../../c-api/structures.rst:503
250250
msgid "const char \\*"
251251
msgstr ""
252252

@@ -646,86 +646,99 @@ msgid ""
646646
"``T_PYSSIZET`` and ``READONLY``, for example::"
647647
msgstr ""
648648

649-
#: ../../c-api/structures.rst:474
649+
#: ../../c-api/structures.rst:475
650+
msgid ""
651+
"Get an attribute belonging to the object at address *obj_addr*. The "
652+
"attribute is described by ``PyMemberDef`` *m*. Returns ``NULL`` on error."
653+
msgstr ""
654+
655+
#: ../../c-api/structures.rst:482
656+
msgid ""
657+
"Set an attribute belonging to the object at address *obj_addr* to object "
658+
"*o*. The attribute to set is described by ``PyMemberDef`` *m*. Returns "
659+
"``0`` if successful and a negative value on failure."
660+
msgstr ""
661+
662+
#: ../../c-api/structures.rst:489
650663
msgid ""
651664
"Structure to define property-like access for a type. See also description of "
652665
"the :c:member:`PyTypeObject.tp_getset` slot."
653666
msgstr ""
654667

655-
#: ../../c-api/structures.rst:480
668+
#: ../../c-api/structures.rst:495
656669
msgid "name"
657670
msgstr "nome"
658671

659-
#: ../../c-api/structures.rst:480
672+
#: ../../c-api/structures.rst:495
660673
msgid "attribute name"
661674
msgstr ""
662675

663-
#: ../../c-api/structures.rst:482
676+
#: ../../c-api/structures.rst:497
664677
msgid "get"
665678
msgstr ""
666679

667-
#: ../../c-api/structures.rst:482
680+
#: ../../c-api/structures.rst:497
668681
msgid "getter"
669682
msgstr ""
670683

671-
#: ../../c-api/structures.rst:482
684+
#: ../../c-api/structures.rst:497
672685
msgid "C Function to get the attribute"
673686
msgstr ""
674687

675-
#: ../../c-api/structures.rst:484
688+
#: ../../c-api/structures.rst:499
676689
msgid "set"
677690
msgstr ""
678691

679-
#: ../../c-api/structures.rst:484
692+
#: ../../c-api/structures.rst:499
680693
msgid "setter"
681694
msgstr ""
682695

683-
#: ../../c-api/structures.rst:484
696+
#: ../../c-api/structures.rst:499
684697
msgid ""
685698
"optional C function to set or delete the attribute, if omitted the attribute "
686699
"is readonly"
687700
msgstr ""
688701

689-
#: ../../c-api/structures.rst:488
702+
#: ../../c-api/structures.rst:503
690703
msgid "doc"
691704
msgstr ""
692705

693-
#: ../../c-api/structures.rst:488
706+
#: ../../c-api/structures.rst:503
694707
msgid "optional docstring"
695708
msgstr ""
696709

697-
#: ../../c-api/structures.rst:490
710+
#: ../../c-api/structures.rst:505
698711
msgid "closure"
699712
msgstr ""
700713

701-
#: ../../c-api/structures.rst:490
714+
#: ../../c-api/structures.rst:505
702715
msgid "void \\*"
703716
msgstr ""
704717

705-
#: ../../c-api/structures.rst:490
718+
#: ../../c-api/structures.rst:505
706719
msgid ""
707720
"optional function pointer, providing additional data for getter and setter"
708721
msgstr ""
709722

710-
#: ../../c-api/structures.rst:495
723+
#: ../../c-api/structures.rst:510
711724
msgid ""
712725
"The ``get`` function takes one :c:type:`PyObject*` parameter (the instance) "
713726
"and a function pointer (the associated ``closure``)::"
714727
msgstr ""
715728

716-
#: ../../c-api/structures.rst:500
729+
#: ../../c-api/structures.rst:515
717730
msgid ""
718731
"It should return a new reference on success or ``NULL`` with a set exception "
719732
"on failure."
720733
msgstr ""
721734

722-
#: ../../c-api/structures.rst:503
735+
#: ../../c-api/structures.rst:518
723736
msgid ""
724737
"``set`` functions take two :c:type:`PyObject*` parameters (the instance and "
725738
"the value to be set) and a function pointer (the associated ``closure``)::"
726739
msgstr ""
727740

728-
#: ../../c-api/structures.rst:508
741+
#: ../../c-api/structures.rst:523
729742
msgid ""
730743
"In case the attribute should be deleted the second parameter is ``NULL``. "
731744
"Should return ``0`` on success or ``-1`` with a set exception on failure."

library/collections.po

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.10\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2021-07-22 13:04+0000\n"
19+
"POT-Creation-Date: 2021-08-03 13:12+0000\n"
2020
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
2121
"Last-Translator: Alexandre B A Villares, 2021\n"
2222
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
@@ -1215,22 +1215,22 @@ msgstr ""
12151215
#: ../../library/collections.rst:1173
12161216
msgid ""
12171217
"An :class:`OrderedDict` would also be useful for implementing variants of :"
1218-
"func:`functools.lru_cache`::"
1218+
"func:`functools.lru_cache`:"
12191219
msgstr ""
12201220

1221-
#: ../../library/collections.rst:1198
1221+
#: ../../library/collections.rst:1214
12221222
msgid ":class:`UserDict` objects"
12231223
msgstr ""
12241224

1225-
#: ../../library/collections.rst:1200
1225+
#: ../../library/collections.rst:1216
12261226
msgid ""
12271227
"The class, :class:`UserDict` acts as a wrapper around dictionary objects. "
12281228
"The need for this class has been partially supplanted by the ability to "
12291229
"subclass directly from :class:`dict`; however, this class can be easier to "
12301230
"work with because the underlying dictionary is accessible as an attribute."
12311231
msgstr ""
12321232

1233-
#: ../../library/collections.rst:1208
1233+
#: ../../library/collections.rst:1224
12341234
msgid ""
12351235
"Class that simulates a dictionary. The instance's contents are kept in a "
12361236
"regular dictionary, which is accessible via the :attr:`data` attribute of :"
@@ -1239,37 +1239,37 @@ msgid ""
12391239
"not be kept, allowing it to be used for other purposes."
12401240
msgstr ""
12411241

1242-
#: ../../library/collections.rst:1214
1242+
#: ../../library/collections.rst:1230
12431243
msgid ""
12441244
"In addition to supporting the methods and operations of mappings, :class:"
12451245
"`UserDict` instances provide the following attribute:"
12461246
msgstr ""
12471247

1248-
#: ../../library/collections.rst:1219
1248+
#: ../../library/collections.rst:1235
12491249
msgid ""
12501250
"A real dictionary used to store the contents of the :class:`UserDict` class."
12511251
msgstr ""
12521252

1253-
#: ../../library/collections.rst:1225
1253+
#: ../../library/collections.rst:1241
12541254
msgid ":class:`UserList` objects"
12551255
msgstr ""
12561256

1257-
#: ../../library/collections.rst:1227
1257+
#: ../../library/collections.rst:1243
12581258
msgid ""
12591259
"This class acts as a wrapper around list objects. It is a useful base class "
12601260
"for your own list-like classes which can inherit from them and override "
12611261
"existing methods or add new ones. In this way, one can add new behaviors to "
12621262
"lists."
12631263
msgstr ""
12641264

1265-
#: ../../library/collections.rst:1232
1265+
#: ../../library/collections.rst:1248
12661266
msgid ""
12671267
"The need for this class has been partially supplanted by the ability to "
12681268
"subclass directly from :class:`list`; however, this class can be easier to "
12691269
"work with because the underlying list is accessible as an attribute."
12701270
msgstr ""
12711271

1272-
#: ../../library/collections.rst:1238
1272+
#: ../../library/collections.rst:1254
12731273
msgid ""
12741274
"Class that simulates a list. The instance's contents are kept in a regular "
12751275
"list, which is accessible via the :attr:`data` attribute of :class:"
@@ -1278,19 +1278,19 @@ msgid ""
12781278
"for example a real Python list or a :class:`UserList` object."
12791279
msgstr ""
12801280

1281-
#: ../../library/collections.rst:1244
1281+
#: ../../library/collections.rst:1260
12821282
msgid ""
12831283
"In addition to supporting the methods and operations of mutable sequences, :"
12841284
"class:`UserList` instances provide the following attribute:"
12851285
msgstr ""
12861286

1287-
#: ../../library/collections.rst:1249
1287+
#: ../../library/collections.rst:1265
12881288
msgid ""
12891289
"A real :class:`list` object used to store the contents of the :class:"
12901290
"`UserList` class."
12911291
msgstr ""
12921292

1293-
#: ../../library/collections.rst:1252
1293+
#: ../../library/collections.rst:1268
12941294
msgid ""
12951295
"**Subclassing requirements:** Subclasses of :class:`UserList` are expected "
12961296
"to offer a constructor which can be called with either no arguments or one "
@@ -1300,27 +1300,27 @@ msgid ""
13001300
"object used as a data source."
13011301
msgstr ""
13021302

1303-
#: ../../library/collections.rst:1259
1303+
#: ../../library/collections.rst:1275
13041304
msgid ""
13051305
"If a derived class does not wish to comply with this requirement, all of the "
13061306
"special methods supported by this class will need to be overridden; please "
13071307
"consult the sources for information about the methods which need to be "
13081308
"provided in that case."
13091309
msgstr ""
13101310

1311-
#: ../../library/collections.rst:1265
1311+
#: ../../library/collections.rst:1281
13121312
msgid ":class:`UserString` objects"
13131313
msgstr ""
13141314

1315-
#: ../../library/collections.rst:1267
1315+
#: ../../library/collections.rst:1283
13161316
msgid ""
13171317
"The class, :class:`UserString` acts as a wrapper around string objects. The "
13181318
"need for this class has been partially supplanted by the ability to subclass "
13191319
"directly from :class:`str`; however, this class can be easier to work with "
13201320
"because the underlying string is accessible as an attribute."
13211321
msgstr ""
13221322

1323-
#: ../../library/collections.rst:1275
1323+
#: ../../library/collections.rst:1291
13241324
msgid ""
13251325
"Class that simulates a string object. The instance's content is kept in a "
13261326
"regular string object, which is accessible via the :attr:`data` attribute "
@@ -1329,19 +1329,19 @@ msgid ""
13291329
"converted into a string using the built-in :func:`str` function."
13301330
msgstr ""
13311331

1332-
#: ../../library/collections.rst:1282
1332+
#: ../../library/collections.rst:1298
13331333
msgid ""
13341334
"In addition to supporting the methods and operations of strings, :class:"
13351335
"`UserString` instances provide the following attribute:"
13361336
msgstr ""
13371337

1338-
#: ../../library/collections.rst:1287
1338+
#: ../../library/collections.rst:1303
13391339
msgid ""
13401340
"A real :class:`str` object used to store the contents of the :class:"
13411341
"`UserString` class."
13421342
msgstr ""
13431343

1344-
#: ../../library/collections.rst:1290
1344+
#: ../../library/collections.rst:1306
13451345
msgid ""
13461346
"New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, "
13471347
"``isprintable``, and ``maketrans``."

0 commit comments

Comments
 (0)