@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-01-05 14:19 +0000\n "
14+ "POT-Creation-Date : 2026-01-15 14:20 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Hungarian (https://app.transifex.com/python-doc/teams/5390/ "
@@ -228,6 +228,16 @@ msgid ""
228228"inlined."
229229msgstr ""
230230
231+ msgid ""
232+ "Macro used to declare a symbol as local to the shared library (hidden). On "
233+ "supported platforms, it ensures the symbol is not exported."
234+ msgstr ""
235+
236+ msgid ""
237+ "On compatible versions of GCC/Clang, it expands to "
238+ "``__attribute__((visibility(\" hidden\" )))``."
239+ msgstr ""
240+
231241msgid "Return the maximum value between ``x`` and ``y``."
232242msgstr ""
233243
@@ -378,6 +388,33 @@ msgstr ""
378388msgid "sizeof(array) / sizeof((array)[0])"
379389msgstr ""
380390
391+ msgid ""
392+ "Macro used to declare a symbol (function or data) as exported. On Windows, "
393+ "this expands to ``__declspec(dllexport)``. On compatible versions of GCC/"
394+ "Clang, it expands to ``__attribute__((visibility(\" default\" )))``. This "
395+ "macro is for defining the C API itself; extension modules should not use it."
396+ msgstr ""
397+
398+ msgid ""
399+ "Macro used to declare a symbol as imported. On Windows, this expands to "
400+ "``__declspec(dllimport)``. This macro is for defining the C API itself; "
401+ "extension modules should not use it."
402+ msgstr ""
403+
404+ msgid ""
405+ "Macro used by CPython to declare a function as part of the C API. Its "
406+ "expansion depends on the platform and build configuration. This macro is "
407+ "intended for defining CPython's C API itself; extension modules should not "
408+ "use it for their own symbols."
409+ msgstr ""
410+
411+ msgid ""
412+ "Macro used by CPython to declare a public global variable as part of the C "
413+ "API. Its expansion depends on the platform and build configuration. This "
414+ "macro is intended for defining CPython's C API itself; extension modules "
415+ "should not use it for their own symbols."
416+ msgstr ""
417+
381418msgid "Objects, Types and Reference Counts"
382419msgstr ""
383420
0 commit comments