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

Skip to content

Commit 95d340c

Browse files
Update translations
1 parent b5cc2b3 commit 95d340c

File tree

458 files changed

+92906
-78456
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

458 files changed

+92906
-78456
lines changed

bugs.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ msgstr ""
4343
#: ../../bugs.rst:11
4444
msgid ""
4545
"It can be sometimes faster to fix bugs yourself and contribute patches to "
46-
"Python as it streamlines the process and involves less people. Learn how "
47-
"to :ref:`contribute <contributing-to-python>`."
46+
"Python as it streamlines the process and involves less people. Learn how to :"
47+
"ref:`contribute <contributing-to-python>`."
4848
msgstr ""
4949
"Às vezes, pode ser mais rápido consertar os bugs você mesmo e contribuir com "
5050
"patches para o Python uma vez que isso agiliza o processo e envolve menos "

c-api/abstract.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ msgstr ""
4343
#: ../../c-api/abstract.rst:14
4444
msgid ""
4545
"It is not possible to use these functions on objects that are not properly "
46-
"initialized, such as a list object that has been created "
47-
"by :c:func:`PyList_New`, but whose items have not been set to some non-\\ "
48-
"``NULL`` value yet."
46+
"initialized, such as a list object that has been created by :c:func:"
47+
"`PyList_New`, but whose items have not been set to some non-\\ ``NULL`` "
48+
"value yet."
4949
msgstr ""
5050
"Não é possível usar essas funções em objetos que não foram inicializados "
5151
"corretamente, como um objeto de lista criado por :c:func:`PyList_New`, mas "

c-api/allocation.po

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -52,25 +52,25 @@ msgid ""
5252
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
5353
"Python object header are not initialized. The caller will own the only "
5454
"reference to the object (i.e. its reference count will be one). The size of "
55-
"the memory allocation is determined from "
56-
"the :c:member:`~PyTypeObject.tp_basicsize` field of the type object."
55+
"the memory allocation is determined from the :c:member:`~PyTypeObject."
56+
"tp_basicsize` field of the type object."
5757
msgstr ""
5858
"Aloca um novo objeto Python usando o tipo de estrutura do C *TYPE* e o "
5959
"objeto Python do tipo *typeobj* (``PyTypeObject*``). Campos não definidos "
6060
"pelo cabeçalho do objeto Python não são inicializados. O chamador será dono "
6161
"da apenas a referência ao objeto (isto é, sua contagem de referências será "
62-
"uma). O tamanho da alocação de memória é determinado do "
63-
"campo :c:member:`~PyTypeObject.tp_basicsize` do objeto tipo."
62+
"uma). O tamanho da alocação de memória é determinado do campo :c:member:"
63+
"`~PyTypeObject.tp_basicsize` do objeto tipo."
6464

6565
#: ../../c-api/allocation.rst:38
6666
msgid ""
67-
"Note that this function is unsuitable if *typeobj* "
68-
"has :c:macro:`Py_TPFLAGS_HAVE_GC` set. For such objects, "
69-
"use :c:func:`PyObject_GC_New` instead."
67+
"Note that this function is unsuitable if *typeobj* has :c:macro:"
68+
"`Py_TPFLAGS_HAVE_GC` set. For such objects, use :c:func:`PyObject_GC_New` "
69+
"instead."
7070
msgstr ""
71-
"Note que esta função não é adequada se *typeobj* "
72-
"tiver :c:macro:`Py_TPFLAGS_HAVE_GC` definido. Para tais objetos, "
73-
"use :c:func:`PyObject_GC_New` em vez disso."
71+
"Note que esta função não é adequada se *typeobj* tiver :c:macro:"
72+
"`Py_TPFLAGS_HAVE_GC` definido. Para tais objetos, use :c:func:"
73+
"`PyObject_GC_New` em vez disso."
7474

7575
#: ../../c-api/allocation.rst:45
7676
msgid ""
@@ -96,13 +96,13 @@ msgstr ""
9696

9797
#: ../../c-api/allocation.rst:56
9898
msgid ""
99-
"Note that this function is unsuitable if *typeobj* "
100-
"has :c:macro:`Py_TPFLAGS_HAVE_GC` set. For such objects, "
101-
"use :c:func:`PyObject_GC_NewVar` instead."
99+
"Note that this function is unsuitable if *typeobj* has :c:macro:"
100+
"`Py_TPFLAGS_HAVE_GC` set. For such objects, use :c:func:`PyObject_GC_NewVar` "
101+
"instead."
102102
msgstr ""
103-
"Note que esta função não é adequada se *typeobj* "
104-
"tiver :c:macro:`Py_TPFLAGS_HAVE_GC` definido. Para tais objetos, "
105-
"use :c:func:`PyObject_GC_NewVar` em vez disso."
103+
"Note que esta função não é adequada se *typeobj* tiver :c:macro:"
104+
"`Py_TPFLAGS_HAVE_GC` definido. Para tais objetos, use :c:func:"
105+
"`PyObject_GC_NewVar` em vez disso."
106106

107107
#: ../../c-api/allocation.rst:63
108108
msgid "Same as :c:func:`PyObject_Free`."

c-api/apiabiversion.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ msgstr "O ``2`` em ``3.4.1a2``. Zero para os lançamentos finais."
7474

7575
#: ../../c-api/apiabiversion.rst:43
7676
msgid ""
77-
"The Python version number encoded in a single integer. "
78-
"See :c:func:`Py_PACK_FULL_VERSION` for the encoding details."
77+
"The Python version number encoded in a single integer. See :c:func:"
78+
"`Py_PACK_FULL_VERSION` for the encoding details."
7979
msgstr ""
8080

8181
#: ../../c-api/apiabiversion.rst:46
@@ -89,9 +89,9 @@ msgstr ""
8989

9090
#: ../../c-api/apiabiversion.rst:55
9191
msgid ""
92-
"The Python runtime version number encoded in a single constant integer. "
93-
"See :c:func:`Py_PACK_FULL_VERSION` for the encoding details. This contains "
94-
"the Python version used at run time."
92+
"The Python runtime version number encoded in a single constant integer. See :"
93+
"c:func:`Py_PACK_FULL_VERSION` for the encoding details. This contains the "
94+
"Python version used at run time."
9595
msgstr ""
9696

9797
#: ../../c-api/apiabiversion.rst:59

0 commit comments

Comments
 (0)