55#
66# Translators:
77# python-doc bot, 2025
8+ # Hengky Kurniawan, 2025
89#
910#, fuzzy
1011msgid ""
1112msgstr ""
1213"Project-Id-Version : Python 3.14\n "
1314"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-10-07 14:17 +0000\n "
15+ "POT-Creation-Date : 2025-10-15 14:16 +0000\n "
1516"PO-Revision-Date : 2025-09-16 00:00+0000\n "
16- "Last-Translator : python-doc bot , 2025\n "
17+ "Last-Translator : Hengky Kurniawan , 2025\n "
1718"Language-Team : Indonesian (https://app.transifex.com/python-doc/teams/5390/ "
1819"id/)\n "
1920"MIME-Version : 1.0\n "
@@ -117,6 +118,8 @@ msgid ""
117118"complex(real=3, imag=5)\n"
118119"complex(**{'real': 3, 'imag': 5})"
119120msgstr ""
121+ "complex(real=3, imag=5)\n"
122+ "complex(**{'real': 3, 'imag': 5})"
120123
121124msgid ""
122125":dfn:`positional argument`: an argument that is not a keyword argument. "
@@ -129,6 +132,8 @@ msgid ""
129132"complex(3, 5)\n"
130133"complex(*(3, 5))"
131134msgstr ""
135+ "complex(3, 5)\n"
136+ "complex(*(3, 5))"
132137
133138msgid ""
134139"Arguments are assigned to the named local variables in a function body. See "
@@ -419,6 +424,13 @@ msgid ""
419424" print(x)\n"
420425" return inner"
421426msgstr ""
427+ "def outer():\n"
428+ " x = 0\n"
429+ " def inner():\n"
430+ " nonlocal x\n"
431+ " x += 1\n"
432+ " print(x)\n"
433+ " return inner"
422434
423435msgid ""
424436"Due to the :attr:`codeobject.co_freevars` attribute (which, despite its "
@@ -444,7 +456,7 @@ msgid ""
444456msgstr ""
445457
446458msgid "context"
447- msgstr ""
459+ msgstr "konteks "
448460
449461msgid ""
450462"This term has different meanings depending on where and how it is used. Some "
@@ -720,7 +732,7 @@ msgid "f-string"
720732msgstr "f-string"
721733
722734msgid "f-strings"
723- msgstr ""
735+ msgstr "f-strings "
724736
725737msgid ""
726738"String literals prefixed with ``f`` or ``F`` are commonly called \" f-"
@@ -824,7 +836,7 @@ msgid ""
824836msgstr ""
825837
826838msgid "free variable"
827- msgstr ""
839+ msgstr "variabel bebas "
828840
829841msgid ""
830842"Formally, as defined in the :ref:`language execution model <bind_names>`, a "
@@ -889,6 +901,9 @@ msgid ""
889901">>> __future__.division\n"
890902"_Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192)"
891903msgstr ""
904+ ">>> import __future__\n"
905+ ">>> __future__.division\n"
906+ "_Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192)"
892907
893908msgid "garbage collection"
894909msgstr "pengumpulan sampah"
@@ -1303,10 +1318,10 @@ msgid ""
13031318msgstr ""
13041319
13051320msgid ":ref:`finders-and-loaders`"
1306- msgstr ""
1321+ msgstr ":ref:`finders-and-loaders` "
13071322
13081323msgid ":class:`importlib.abc.Loader`"
1309- msgstr ""
1324+ msgstr ":class:`importlib.abc.Loader` "
13101325
13111326msgid ":pep:`302`"
13121327msgstr ":pep:`302`"
@@ -1581,7 +1596,7 @@ msgid ""
15811596msgstr ""
15821597
15831598msgid "def func(foo, bar=None): ..."
1584- msgstr ""
1599+ msgstr "def func(foo, bar=None): ... "
15851600
15861601msgid ""
15871602":dfn:`positional-only`: specifies an argument that can be supplied only by "
@@ -1591,7 +1606,7 @@ msgid ""
15911606msgstr ""
15921607
15931608msgid "def func(posonly1, posonly2, /, positional_or_keyword): ..."
1594- msgstr ""
1609+ msgstr "def func(posonly1, posonly2, /, positional_or_keyword): ... "
15951610
15961611msgid ""
15971612":dfn:`keyword-only`: specifies an argument that can be supplied only by "
@@ -1602,7 +1617,7 @@ msgid ""
16021617msgstr ""
16031618
16041619msgid "def func(arg, *, kw_only1, kw_only2): ..."
1605- msgstr ""
1620+ msgstr "def func(arg, *, kw_only1, kw_only2): ... "
16061621
16071622msgid ""
16081623":dfn:`var-positional`: specifies that an arbitrary sequence of positional "
@@ -1613,7 +1628,7 @@ msgid ""
16131628msgstr ""
16141629
16151630msgid "def func(*args, **kwargs): ..."
1616- msgstr ""
1631+ msgstr "def func(*args, **kwargs): ... "
16171632
16181633msgid ""
16191634":dfn:`var-keyword`: specifies that arbitrarily many keyword arguments can be "
0 commit comments