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