Skip to content

Commit a380c40

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 93dc79b commit a380c40

12 files changed

Lines changed: 307 additions & 149 deletions

File tree

c-api/lifecycle.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-06-23 16:23+0000\n"
14+
"POT-Creation-Date: 2026-07-05 15:08+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/dataclasses.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-06-13 15:28+0000\n"
14+
"POT-Creation-Date: 2026-07-03 15:50+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/datetime.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-06-13 15:28+0000\n"
15+
"POT-Creation-Date: 2026-07-05 15:08+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/http.cookiejar.po

Lines changed: 83 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-06-23 16:23+0000\n"
14+
"POT-Creation-Date: 2026-07-05 15:08+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -50,9 +50,9 @@ msgstr ""
5050

5151
msgid ""
5252
"The various named parameters found in :mailheader:`Set-Cookie` and :"
53-
"mailheader:`Set-Cookie2` headers (eg. ``domain`` and ``expires``) are "
54-
"conventionally referred to as :dfn:`attributes`. To distinguish them from "
55-
"Python attributes, the documentation for this module uses the term :dfn:"
53+
"mailheader:`Set-Cookie2` headers (for example, ``domain`` and ``expires``) "
54+
"are conventionally referred to as :dfn:`attributes`. To distinguish them "
55+
"from Python attributes, the documentation for this module uses the term :dfn:"
5656
"`cookie-attribute` instead."
5757
msgstr ""
5858

@@ -110,8 +110,8 @@ msgstr ""
110110
msgid ""
111111
"Constructor arguments should be passed as keyword arguments only. "
112112
"*blocked_domains* is a sequence of domain names that we never accept cookies "
113-
"from, nor return cookies to. *allowed_domains* if not :const:`None`, this is "
114-
"a sequence of the only domains for which we accept and return cookies. "
113+
"from, nor return cookies to. *allowed_domains* if not ``None``, this is a "
114+
"sequence of the only domains for which we accept and return cookies. "
115115
"*secure_protocols* is a sequence of protocols for which secure cookies can "
116116
"be added to. By default *https* and *wss* (secure websocket) are considered "
117117
"secure protocols. For all other arguments, see the documentation for :class:"
@@ -120,21 +120,21 @@ msgstr ""
120120

121121
msgid ""
122122
":class:`DefaultCookiePolicy` implements the standard accept / reject rules "
123-
"for Netscape and :rfc:`2965` cookies. By default, :rfc:`2109` cookies (ie. "
124-
"cookies received in a :mailheader:`Set-Cookie` header with a version cookie-"
125-
"attribute of 1) are treated according to the RFC 2965 rules. However, if "
126-
"RFC 2965 handling is turned off or :attr:`rfc2109_as_netscape` is ``True``, "
127-
"RFC 2109 cookies are 'downgraded' by the :class:`CookieJar` instance to "
128-
"Netscape cookies, by setting the :attr:`version` attribute of the :class:"
129-
"`Cookie` instance to 0. :class:`DefaultCookiePolicy` also provides some "
130-
"parameters to allow some fine-tuning of policy."
123+
"for Netscape and :rfc:`2965` cookies. By default, :rfc:`2109` cookies (that "
124+
"is, cookies received in a :mailheader:`Set-Cookie` header with a version "
125+
"cookie-attribute of 1) are treated according to the RFC 2965 rules. "
126+
"However, if RFC 2965 handling is turned off or :attr:`rfc2109_as_netscape` "
127+
"is ``True``, RFC 2109 cookies are 'downgraded' by the :class:`CookieJar` "
128+
"instance to Netscape cookies, by setting the :attr:`~Cookie.version` "
129+
"attribute of the :class:`Cookie` instance to 0. :class:`DefaultCookiePolicy` "
130+
"also provides some parameters to allow some fine-tuning of policy."
131131
msgstr ""
132132

133133
msgid ""
134134
"This class represents Netscape, :rfc:`2109` and :rfc:`2965` cookies. It is "
135135
"not expected that users of :mod:`!http.cookiejar` construct their own :class:"
136-
"`Cookie` instances. Instead, if necessary, call :meth:`make_cookies` on a :"
137-
"class:`CookieJar` instance."
136+
"`Cookie` instances. Instead, if necessary, call :meth:`~CookieJar."
137+
"make_cookies` on a :class:`CookieJar` instance."
138138
msgstr ""
139139

140140
msgid "Module :mod:`urllib.request`"
@@ -184,7 +184,7 @@ msgstr ""
184184
msgid ":rfc:`2964` - Use of HTTP State Management"
185185
msgstr ""
186186

187-
msgid "CookieJar and FileCookieJar Objects"
187+
msgid "CookieJar and FileCookieJar objects"
188188
msgstr ""
189189

190190
msgid ""
@@ -199,23 +199,27 @@ msgid "Add correct :mailheader:`Cookie` header to *request*."
199199
msgstr ""
200200

201201
msgid ""
202-
"If policy allows (ie. the :attr:`rfc2965` and :attr:`hide_cookie2` "
203-
"attributes of the :class:`CookieJar`'s :class:`CookiePolicy` instance are "
204-
"true and false respectively), the :mailheader:`Cookie2` header is also added "
205-
"when appropriate."
202+
"If policy allows (that is, the :attr:`~CookiePolicy.rfc2965` and :attr:"
203+
"`~CookiePolicy.hide_cookie2` attributes of the :class:`CookieJar`'s :class:"
204+
"`CookiePolicy` instance are true and false respectively), the :mailheader:"
205+
"`Cookie2` header is also added when appropriate."
206206
msgstr ""
207207

208208
msgid ""
209209
"The *request* object (usually a :class:`urllib.request.Request` instance) "
210-
"must support the methods :meth:`get_full_url`, :meth:`has_header`, :meth:"
211-
"`get_header`, :meth:`header_items`, :meth:`add_unredirected_header` and the "
212-
"attributes :attr:`host`, :attr:`!type`, :attr:`unverifiable` and :attr:"
213-
"`origin_req_host` as documented by :mod:`urllib.request`."
210+
"must support the methods :meth:`~urllib.request.Request.get_full_url`, :meth:"
211+
"`~urllib.request.Request.has_header`, :meth:`~urllib.request.Request."
212+
"get_header`, :meth:`~urllib.request.Request.header_items`, :meth:`~urllib."
213+
"request.Request.add_unredirected_header` and the attributes :attr:`~urllib."
214+
"request.Request.host`, :attr:`~urllib.request.Request.type`, :attr:`~urllib."
215+
"request.Request.unverifiable` and :attr:`~urllib.request.Request."
216+
"origin_req_host` as documented by :mod:`urllib.request`."
214217
msgstr ""
215218

216219
msgid ""
217-
"*request* object needs :attr:`origin_req_host` attribute. Dependency on a "
218-
"deprecated method :meth:`get_origin_req_host` has been removed."
220+
"*request* object needs :attr:`~urllib.request.Request.origin_req_host` "
221+
"attribute. Dependency on a deprecated method :meth:`!get_origin_req_host` "
222+
"has been removed."
219223
msgstr ""
220224

221225
msgid ""
@@ -232,16 +236,18 @@ msgstr ""
232236

233237
msgid ""
234238
"The *response* object (usually the result of a call to :meth:`urllib.request."
235-
"urlopen`, or similar) should support an :meth:`info` method, which returns "
236-
"an :class:`email.message.Message` instance."
239+
"urlopen`, or similar) should support an :meth:`~http.client.HTTPResponse."
240+
"info` method, which returns an :class:`email.message.Message` instance."
237241
msgstr ""
238242

239243
msgid ""
240244
"The *request* object (usually a :class:`urllib.request.Request` instance) "
241-
"must support the method :meth:`get_full_url` and the attributes :attr:"
242-
"`host`, :attr:`unverifiable` and :attr:`origin_req_host`, as documented by :"
243-
"mod:`urllib.request`. The request is used to set default values for cookie-"
244-
"attributes as well as for checking that the cookie is allowed to be set."
245+
"must support the method :meth:`~urllib.request.Request.get_full_url` and the "
246+
"attributes :attr:`~urllib.request.Request.host`, :attr:`~urllib.request."
247+
"Request.unverifiable` and :attr:`~urllib.request.Request.origin_req_host`, "
248+
"as documented by :mod:`urllib.request`. The request is used to set default "
249+
"values for cookie-attributes as well as for checking that the cookie is "
250+
"allowed to be set."
245251
msgstr ""
246252

247253
msgid "Set the :class:`CookiePolicy` instance to be used."
@@ -282,16 +288,16 @@ msgid "Discard all session cookies."
282288
msgstr ""
283289

284290
msgid ""
285-
"Discards all contained cookies that have a true :attr:`discard` attribute "
286-
"(usually because they had either no ``max-age`` or ``expires`` cookie-"
287-
"attribute, or an explicit ``discard`` cookie-attribute). For interactive "
288-
"browsers, the end of a session usually corresponds to closing the browser "
289-
"window."
291+
"Discards all contained cookies that have a true :attr:`~Cookie.discard` "
292+
"attribute (usually because they had either no ``max-age`` or ``expires`` "
293+
"cookie-attribute, or an explicit ``discard`` cookie-attribute). For "
294+
"interactive browsers, the end of a session usually corresponds to closing "
295+
"the browser window."
290296
msgstr ""
291297

292298
msgid ""
293-
"Note that the :meth:`save` method won't save session cookies anyway, unless "
294-
"you ask otherwise by passing a true *ignore_discard* argument."
299+
"Note that the :meth:`~FileCookieJar.save` method won't save session cookies "
300+
"anyway, unless you ask otherwise by passing a true *ignore_discard* argument."
295301
msgstr ""
296302

297303
msgid ":class:`FileCookieJar` implements the following additional methods:"
@@ -307,9 +313,9 @@ msgstr ""
307313

308314
msgid ""
309315
"*filename* is the name of file in which to save cookies. If *filename* is "
310-
"not specified, :attr:`self.filename` is used (whose default is the value "
311-
"passed to the constructor, if any); if :attr:`self.filename` is :const:"
312-
"`None`, :exc:`ValueError` is raised."
316+
"not specified, :attr:`self.filename <FileCookieJar.filename>` is used (whose "
317+
"default is the value passed to the constructor, if any); if :attr:`self."
318+
"filename <FileCookieJar.filename>` is ``None``, :exc:`ValueError` is raised."
313319
msgstr ""
314320

315321
msgid ""
@@ -404,7 +410,7 @@ msgid ""
404410
"file."
405411
msgstr ""
406412

407-
msgid "CookiePolicy Objects"
413+
msgid "CookiePolicy objects"
408414
msgstr ""
409415

410416
msgid ""
@@ -495,7 +501,7 @@ msgid ""
495501
"to be useful)."
496502
msgstr ""
497503

498-
msgid "DefaultCookiePolicy Objects"
504+
msgid "DefaultCookiePolicy objects"
499505
msgstr ""
500506

501507
msgid "Implements the standard rules for accepting and returning cookies."
@@ -536,10 +542,10 @@ msgid ""
536542
"A domain blocklist and allowlist is provided (both off by default). Only "
537543
"domains not in the blocklist and present in the allowlist (if the allowlist "
538544
"is active) participate in cookie setting and returning. Use the "
539-
"*blocked_domains* constructor argument, and :meth:`blocked_domains` and :"
540-
"meth:`set_blocked_domains` methods (and the corresponding argument and "
541-
"methods for *allowed_domains*). If you set an allowlist, you can turn it "
542-
"off again by setting it to :const:`None`."
545+
"*blocked_domains* constructor argument, and :meth:`~DefaultCookiePolicy."
546+
"blocked_domains` and :meth:`~DefaultCookiePolicy.set_blocked_domains` "
547+
"methods (and the corresponding argument and methods for *allowed_domains*). "
548+
"If you set an allowlist, you can turn it off again by setting it to ``None``."
543549
msgstr ""
544550

545551
msgid ""
@@ -569,10 +575,10 @@ msgid ""
569575
"cookies."
570576
msgstr ""
571577

572-
msgid "Return :const:`None`, or the sequence of allowed domains (as a tuple)."
578+
msgid "Return ``None``, or the sequence of allowed domains (as a tuple)."
573579
msgstr ""
574580

575-
msgid "Set the sequence of allowed domains, or :const:`None`."
581+
msgid "Set the sequence of allowed domains, or ``None``."
576582
msgstr ""
577583

578584
msgid ""
@@ -588,10 +594,10 @@ msgstr ""
588594

589595
msgid ""
590596
"If true, request that the :class:`CookieJar` instance downgrade :rfc:`2109` "
591-
"cookies (ie. cookies received in a :mailheader:`Set-Cookie` header with a "
592-
"version cookie-attribute of 1) to Netscape cookies by setting the version "
593-
"attribute of the :class:`Cookie` instance to 0. The default value is :const:"
594-
"`None`, in which case RFC 2109 cookies are downgraded if and only if :rfc:"
597+
"cookies (that is, cookies received in a :mailheader:`Set-Cookie` header with "
598+
"a version cookie-attribute of 1) to Netscape cookies by setting the version "
599+
"attribute of the :class:`Cookie` instance to 0. The default value is "
600+
"``None``, in which case RFC 2109 cookies are downgraded if and only if :rfc:"
595601
"`2965` handling is turned off. Therefore, RFC 2109 cookies are downgraded "
596602
"by default."
597603
msgstr ""
@@ -642,16 +648,16 @@ msgid ""
642648
msgstr ""
643649

644650
msgid ""
645-
"When setting cookies, the 'host prefix' must not contain a dot (eg. ``www."
646-
"foo.bar.com`` can't set a cookie for ``.bar.com``, because ``www.foo`` "
651+
"When setting cookies, the 'host prefix' must not contain a dot (for example, "
652+
"``www.foo.bar.com`` can't set a cookie for ``.bar.com``, because ``www.foo`` "
647653
"contains a dot)."
648654
msgstr ""
649655

650656
msgid ""
651657
"Cookies that did not explicitly specify a ``domain`` cookie-attribute can "
652-
"only be returned to a domain equal to the domain that set the cookie (eg. "
653-
"``spam.example.com`` won't be returned cookies from ``example.com`` that had "
654-
"no ``domain`` cookie-attribute)."
658+
"only be returned to a domain equal to the domain that set the cookie (for "
659+
"example, ``spam.example.com`` won't be returned cookies from ``example.com`` "
660+
"that had no ``domain`` cookie-attribute)."
655661
msgstr ""
656662

657663
msgid "When setting cookies, require a full :rfc:`2965` domain-match."
@@ -663,15 +669,15 @@ msgid ""
663669
msgstr ""
664670

665671
msgid ""
666-
"Equivalent to 0 (ie. all of the above Netscape domain strictness flags "
672+
"Equivalent to 0 (that is, all of the above Netscape domain strictness flags "
667673
"switched off)."
668674
msgstr ""
669675

670676
msgid "Equivalent to ``DomainStrictNoDots|DomainStrictNonDomain``."
671677
msgstr ""
672678

673-
msgid "Cookie Objects"
674-
msgstr "Objek *Cookie*"
679+
msgid "Cookie objects"
680+
msgstr ""
675681

676682
msgid ""
677683
":class:`Cookie` instances have Python attributes roughly corresponding to "
@@ -690,52 +696,52 @@ msgid ""
690696
msgstr ""
691697

692698
msgid ""
693-
"Integer or :const:`None`. Netscape cookies have :attr:`version` 0. :rfc:"
694-
"`2965` and :rfc:`2109` cookies have a ``version`` cookie-attribute of 1. "
695-
"However, note that :mod:`!http.cookiejar` may 'downgrade' RFC 2109 cookies "
696-
"to Netscape cookies, in which case :attr:`version` is 0."
699+
"Integer or ``None``. Netscape cookies have :attr:`version` 0. :rfc:`2965` "
700+
"and :rfc:`2109` cookies have a ``version`` cookie-attribute of 1. However, "
701+
"note that :mod:`!http.cookiejar` may 'downgrade' RFC 2109 cookies to "
702+
"Netscape cookies, in which case :attr:`version` is 0."
697703
msgstr ""
698704

699705
msgid "Cookie name (a string)."
700706
msgstr ""
701707

702-
msgid "Cookie value (a string), or :const:`None`."
708+
msgid "Cookie value (a string), or ``None``."
703709
msgstr ""
704710

705711
msgid ""
706-
"String representing a port or a set of ports (eg. '80', or '80,8080'), or :"
707-
"const:`None`."
712+
"String representing a port or a set of ports (for example, '80', or "
713+
"'80,8080'), or ``None``."
708714
msgstr ""
709715

710716
msgid "Cookie domain (a string)."
711717
msgstr ""
712718

713-
msgid "Cookie path (a string, eg. ``'/acme/rocket_launchers'``)."
719+
msgid "Cookie path (a string, for example, ``'/acme/rocket_launchers'``)."
714720
msgstr ""
715721

716722
msgid "``True`` if cookie should only be returned over a secure connection."
717723
msgstr ""
718724

719725
msgid ""
720-
"Integer expiry date in seconds since epoch, or :const:`None`. See also the :"
721-
"meth:`is_expired` method."
726+
"Integer expiry date in seconds since epoch, or ``None``. See also the :meth:"
727+
"`is_expired` method."
722728
msgstr ""
723729

724730
msgid "``True`` if this is a session cookie."
725731
msgstr ""
726732

727733
msgid ""
728-
"String comment from the server explaining the function of this cookie, or :"
729-
"const:`None`."
734+
"String comment from the server explaining the function of this cookie, or "
735+
"``None``."
730736
msgstr ""
731737

732738
msgid ""
733739
"URL linking to a comment from the server explaining the function of this "
734-
"cookie, or :const:`None`."
740+
"cookie, or ``None``."
735741
msgstr ""
736742

737743
msgid ""
738-
"``True`` if this cookie was received as an :rfc:`2109` cookie (ie. the "
744+
"``True`` if this cookie was received as an :rfc:`2109` cookie (that is, the "
739745
"cookie arrived in a :mailheader:`Set-Cookie` header, and the value of the "
740746
"Version cookie-attribute in that header was 1). This attribute is provided "
741747
"because :mod:`!http.cookiejar` may 'downgrade' RFC 2109 cookies to Netscape "

0 commit comments

Comments
 (0)