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

Skip to content

Commit 478804e

Browse files
committed
Traducido c-api/apiabiversion
1 parent 0dfb1d5 commit 478804e

File tree

1 file changed

+33
-22
lines changed

1 file changed

+33
-22
lines changed

c-api/apiabiversion.po

Lines changed: 33 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,125 @@
11
# Copyright (C) 2001-2020, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# Maintained by the python-doc-es workteam.
3+
# Maintained by the python-doc-es workteam.
44
# [email protected] / https://mail.python.org/mailman3/lists/docs-es.python.org/
55
# Check https://github.com/PyCampES/python-docs-es/blob/3.7/TRANSLATORS to get the list of volunteers
66
#
7-
#, fuzzy
87
msgid ""
98
msgstr ""
109
"Project-Id-Version: Python 3.7\n"
1110
"Report-Msgid-Bugs-To: \n"
1211
"POT-Creation-Date: 2019-05-06 11:59-0400\n"
13-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12+
"PO-Revision-Date: 2020-05-08 01:45+0200\n"
1513
"Language-Team: python-doc-es (https://mail.python.org/mailman3/lists/docs-es."
1614
"python.org)\n"
1715
"MIME-Version: 1.0\n"
1816
"Content-Type: text/plain; charset=UTF-8\n"
1917
"Content-Transfer-Encoding: 8bit\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
19+
"Last-Translator: \n"
20+
"Language: es\n"
21+
"X-Generator: Poedit 2.3\n"
2022

2123
#: ../Doc/c-api/apiabiversion.rst:7
2224
msgid "API and ABI Versioning"
23-
msgstr ""
25+
msgstr "Versionado API y ABI"
2426

2527
#: ../Doc/c-api/apiabiversion.rst:9
2628
msgid ""
2729
"``PY_VERSION_HEX`` is the Python version number encoded in a single integer."
2830
msgstr ""
31+
"``PY_VERSION_HEX`` es el número de versión de Python codificado en un solo "
32+
"entero."
2933

3034
#: ../Doc/c-api/apiabiversion.rst:11
3135
msgid ""
3236
"For example if the ``PY_VERSION_HEX`` is set to ``0x030401a2``, the "
3337
"underlying version information can be found by treating it as a 32 bit "
3438
"number in the following manner:"
3539
msgstr ""
40+
"Por ejemplo, si ``PY_VERSION_HEX`` se establece en ``0x030401a2``, la "
41+
"información de la versión subyacente se puede encontrar tratándola como un "
42+
"número de 32 bits de la siguiente manera:"
3643

3744
#: ../Doc/c-api/apiabiversion.rst:16
3845
msgid "Bytes"
39-
msgstr ""
46+
msgstr "Bytes"
4047

4148
#: ../Doc/c-api/apiabiversion.rst:16
4249
msgid "Bits (big endian order)"
43-
msgstr ""
50+
msgstr "Bits (orden big endian)"
4451

4552
#: ../Doc/c-api/apiabiversion.rst:16
4653
msgid "Meaning"
47-
msgstr ""
54+
msgstr "Significado"
4855

4956
#: ../Doc/c-api/apiabiversion.rst:18
5057
msgid "``1``"
51-
msgstr ""
58+
msgstr "``1``"
5259

5360
#: ../Doc/c-api/apiabiversion.rst:18
5461
msgid "``1-8``"
55-
msgstr ""
62+
msgstr "``1-8``"
5663

5764
#: ../Doc/c-api/apiabiversion.rst:18
5865
msgid "``PY_MAJOR_VERSION`` (the ``3`` in ``3.4.1a2``)"
59-
msgstr ""
66+
msgstr "``PY_MAJOR_VERSION`` (el ``3`` en ``3.4.1a2``)"
6067

6168
#: ../Doc/c-api/apiabiversion.rst:21
6269
msgid "``2``"
63-
msgstr ""
70+
msgstr "``2``"
6471

6572
#: ../Doc/c-api/apiabiversion.rst:21
6673
msgid "``9-16``"
67-
msgstr ""
74+
msgstr "``9-16``"
6875

6976
#: ../Doc/c-api/apiabiversion.rst:21
7077
msgid "``PY_MINOR_VERSION`` (the ``4`` in ``3.4.1a2``)"
71-
msgstr ""
78+
msgstr "``PY_MINOR_VERSION`` (el ``4`` en ``3.4.1a2``)"
7279

7380
#: ../Doc/c-api/apiabiversion.rst:24
7481
msgid "``3``"
75-
msgstr ""
82+
msgstr "``3``"
7683

7784
#: ../Doc/c-api/apiabiversion.rst:24
7885
msgid "``17-24``"
79-
msgstr ""
86+
msgstr "``17-24``"
8087

8188
#: ../Doc/c-api/apiabiversion.rst:24
8289
msgid "``PY_MICRO_VERSION`` (the ``1`` in ``3.4.1a2``)"
83-
msgstr ""
90+
msgstr "``PY_MICRO_VERSION`` (el ``1`` en ``3.4.1a2``)"
8491

8592
#: ../Doc/c-api/apiabiversion.rst:27
8693
msgid "``4``"
87-
msgstr ""
94+
msgstr "``4``"
8895

8996
#: ../Doc/c-api/apiabiversion.rst:27
9097
msgid "``25-28``"
91-
msgstr ""
98+
msgstr "``25-28``"
9299

93100
#: ../Doc/c-api/apiabiversion.rst:27
94101
msgid ""
95102
"``PY_RELEASE_LEVEL`` (``0xA`` for alpha, ``0xB`` for beta, ``0xC`` for "
96103
"release candidate and ``0xF`` for final), in this case it is alpha."
97104
msgstr ""
105+
"``PY_RELEASE_LEVEL`` (``0xA`` para alfa, ``0xB`` para beta, ``0xC`` para el "
106+
"candidato de lanzamiento y ``0xF`` para final), en este caso es alfa."
98107

99108
#: ../Doc/c-api/apiabiversion.rst:32
100109
msgid "``29-32``"
101-
msgstr ""
110+
msgstr "``29-32``"
102111

103112
#: ../Doc/c-api/apiabiversion.rst:32
104113
msgid ""
105114
"``PY_RELEASE_SERIAL`` (the ``2`` in ``3.4.1a2``, zero for final releases)"
106115
msgstr ""
116+
"``PY_RELEASE_SERIAL`` (el ``2`` en ``3.4.1a2``, cero para lanzamientos "
117+
"finales)"
107118

108119
#: ../Doc/c-api/apiabiversion.rst:36
109120
msgid "Thus ``3.4.1a2`` is hexversion ``0x030401a2``."
110-
msgstr ""
121+
msgstr "Asi ``3.4.1a2`` es la hexadecimal ``0x030401a2``."
111122

112123
#: ../Doc/c-api/apiabiversion.rst:38
113124
msgid "All the given macros are defined in :source:`Include/patchlevel.h`."
114-
msgstr ""
125+
msgstr "Todas las macros dadas se definen en :source:`Include/patchlevel.h`."

0 commit comments

Comments
 (0)