-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapiabiversion.po
More file actions
237 lines (177 loc) · 4.64 KB
/
apiabiversion.po
File metadata and controls
237 lines (177 loc) · 4.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# python-doc bot, 2025
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-04-03 14:38+0000\n"
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
"Last-Translator: python-doc bot, 2025\n"
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
"hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "API and ABI Versioning"
msgstr "API és ABI Verziószámozás"
msgid "Build-time version constants"
msgstr ""
msgid ""
"CPython exposes its version number in the following macros. Note that these "
"correspond to the version code is **built** with. See :c:var:`Py_Version` "
"for the version used at **run time**."
msgstr ""
msgid ""
"See :ref:`stable` for a discussion of API and ABI stability across versions."
msgstr ""
"Lásd: :ref:`stable` egy beszélgetéshez az API és ABI stabilitásáról verziók "
"között."
msgid "The ``3`` in ``3.4.1a2``."
msgstr "A ``3`` ``3.4.1a2``-ban. "
msgid "The ``4`` in ``3.4.1a2``."
msgstr "A ``4`` ``3.4.1a2``-ban."
msgid "The ``1`` in ``3.4.1a2``."
msgstr "A ``1`` ``3.4.1a2``-ban."
msgid ""
"The ``a`` in ``3.4.1a2``. This can be ``0xA`` for alpha, ``0xB`` for beta, "
"``0xC`` for release candidate or ``0xF`` for final."
msgstr ""
"A ``a`` ``3.4.1a2``-ban. Ez lehet ``0xA`` alfának, ``0xB`` bétának, ``0xC`` "
"kiadásra jelöltnek vagy ``0xF`` véglegesnek."
msgid "The ``2`` in ``3.4.1a2``. Zero for final releases."
msgstr "A ``2`` ``3.4.1a2``-ban. Nulla a végleges kiadáshoz."
msgid ""
"The Python version number encoded in a single integer. See :c:func:"
"`Py_PACK_FULL_VERSION` for the encoding details."
msgstr ""
msgid ""
"Use this for numeric comparisons, for example, ``#if PY_VERSION_HEX >= ...``."
msgstr ""
msgid "These macros are defined in :source:`Include/patchlevel.h`."
msgstr ""
msgid "Run-time version"
msgstr ""
msgid ""
"The Python runtime version number encoded in a single constant integer. See :"
"c:func:`Py_PACK_FULL_VERSION` for the encoding details. This contains the "
"Python version used at run time."
msgstr ""
msgid ""
"Use this for numeric comparisons, for example, ``if (Py_Version >= ...)``."
msgstr ""
msgid "Bit-packing macros"
msgstr ""
msgid ""
"Return the given version, encoded as a single 32-bit integer with the "
"following structure:"
msgstr ""
msgid "Argument"
msgstr ""
msgid "No. of bits"
msgstr ""
msgid "Bit mask"
msgstr ""
msgid "Bit shift"
msgstr ""
msgid "Example values"
msgstr ""
msgid "``3.4.1a2``"
msgstr ""
msgid "``3.10.0``"
msgstr ""
msgid "*major*"
msgstr ""
msgid "8"
msgstr ""
msgid "``0xFF000000``"
msgstr ""
msgid "24"
msgstr ""
msgid "``0x03``"
msgstr "``0x03``"
msgid "*minor*"
msgstr ""
msgid "``0x00FF0000``"
msgstr ""
msgid "16"
msgstr ""
msgid "``0x04``"
msgstr "``0x04``"
msgid "``0x0A``"
msgstr ""
msgid "*micro*"
msgstr ""
msgid "``0x0000FF00``"
msgstr ""
msgid "``0x01``"
msgstr "``0x01``"
msgid "``0x00``"
msgstr ""
msgid "*release_level*"
msgstr ""
msgid "4"
msgstr "4"
msgid "``0x000000F0``"
msgstr ""
msgid "``0xA``"
msgstr "``0xA``"
msgid "``0xF``"
msgstr ""
msgid "*release_serial*"
msgstr ""
msgid "``0x0000000F``"
msgstr ""
msgid "0"
msgstr ""
msgid "``0x2``"
msgstr "``0x2``"
msgid "``0x0``"
msgstr ""
msgid "For example:"
msgstr ""
msgid "Version"
msgstr ""
msgid "``Py_PACK_FULL_VERSION`` arguments"
msgstr ""
msgid "Encoded version"
msgstr ""
msgid "``(3, 4, 1, 0xA, 2)``"
msgstr ""
msgid "``0x030401a2``"
msgstr ""
msgid "``(3, 10, 0, 0xF, 0)``"
msgstr ""
msgid "``0x030a00f0``"
msgstr ""
msgid ""
"Out-of range bits in the arguments are ignored. That is, the macro can be "
"defined as:"
msgstr ""
msgid ""
"#ifndef Py_PACK_FULL_VERSION\n"
"#define Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \\\n"
" (((X) & 0xff) << 24) | \\\n"
" (((Y) & 0xff) << 16) | \\\n"
" (((Z) & 0xff) << 8) | \\\n"
" (((LEVEL) & 0xf) << 4) | \\\n"
" (((SERIAL) & 0xf) << 0))\n"
"#endif"
msgstr ""
msgid ""
"``Py_PACK_FULL_VERSION`` is primarily a macro, intended for use in ``#if`` "
"directives, but it is also available as an exported function."
msgstr ""
msgid ""
"Equivalent to ``Py_PACK_FULL_VERSION(major, minor, 0, 0, 0)``. The result "
"does not correspond to any Python release, but is useful in numeric "
"comparisons."
msgstr ""