11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2019, Python Software Foundation
2+ # Copyright (C) 2001 Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66#, fuzzy
77msgid ""
88msgstr ""
9- "Project-Id-Version : Python 3.8 \n "
9+ "Project-Id-Version : Python 3.14 \n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2019-10-31 11:48 +0000\n "
12- "PO-Revision-Date : 2017-02-16 17:34 +0000\n "
13- "Language-Team : Indonesian (https://www .transifex.com/python-doc/teams/5390/id/)\n "
11+ "POT-Creation-Date : 2025-05-09 14:19 +0000\n "
12+ "PO-Revision-Date : 2021-06-28 00:48 +0000\n "
13+ "Language-Team : Indonesian (https://app .transifex.com/python-doc/teams/5390/id/)\n "
1414"MIME-Version : 1.0\n "
1515"Content-Type : text/plain; charset=UTF-8\n "
1616"Content-Transfer-Encoding : 8bit\n "
@@ -27,95 +27,102 @@ msgstr ""
2727
2828#: ../../c-api/codec.rst:10
2929msgid ""
30- "As side effect, this tries to load the :mod:`encodings` package, if not yet "
31- "done, to make sure that it is always first in the list of search functions."
30+ "As side effect, this tries to load the :mod:`! encodings` package, if not yet"
31+ " done, to make sure that it is always first in the list of search functions."
3232msgstr ""
3333
3434#: ../../c-api/codec.rst:15
3535msgid ""
36+ "Unregister a codec search function and clear the registry's cache. If the "
37+ "search function is not registered, do nothing. Return 0 on success. Raise an"
38+ " exception and return -1 on error."
39+ msgstr ""
40+
41+ #: ../../c-api/codec.rst:23
42+ msgid ""
3643"Return ``1`` or ``0`` depending on whether there is a registered codec for "
3744"the given *encoding*. This function always succeeds."
3845msgstr ""
3946
40- #: ../../c-api/codec.rst:20
47+ #: ../../c-api/codec.rst:28
4148msgid "Generic codec based encoding API."
4249msgstr ""
4350
44- #: ../../c-api/codec.rst:22
51+ #: ../../c-api/codec.rst:30
4552msgid ""
4653"*object* is passed through the encoder function found for the given "
4754"*encoding* using the error handling method defined by *errors*. *errors* "
4855"may be ``NULL`` to use the default method defined for the codec. Raises a "
4956":exc:`LookupError` if no encoder can be found."
5057msgstr ""
5158
52- #: ../../c-api/codec.rst:29
59+ #: ../../c-api/codec.rst:37
5360msgid "Generic codec based decoding API."
5461msgstr ""
5562
56- #: ../../c-api/codec.rst:31
63+ #: ../../c-api/codec.rst:39
5764msgid ""
5865"*object* is passed through the decoder function found for the given "
5966"*encoding* using the error handling method defined by *errors*. *errors* "
6067"may be ``NULL`` to use the default method defined for the codec. Raises a "
6168":exc:`LookupError` if no encoder can be found."
6269msgstr ""
6370
64- #: ../../c-api/codec.rst:38
71+ #: ../../c-api/codec.rst:46
6572msgid "Codec lookup API"
6673msgstr ""
6774
68- #: ../../c-api/codec.rst:40
75+ #: ../../c-api/codec.rst:48
6976msgid ""
7077"In the following functions, the *encoding* string is looked up converted to "
7178"all lower-case characters, which makes encodings looked up through this "
7279"mechanism effectively case-insensitive. If no codec is found, a "
7380":exc:`KeyError` is set and ``NULL`` returned."
7481msgstr ""
7582
76- #: ../../c-api/codec.rst:47
83+ #: ../../c-api/codec.rst:55
7784msgid "Get an encoder function for the given *encoding*."
7885msgstr ""
7986
80- #: ../../c-api/codec.rst:51
87+ #: ../../c-api/codec.rst:59
8188msgid "Get a decoder function for the given *encoding*."
8289msgstr ""
8390
84- #: ../../c-api/codec.rst:55
91+ #: ../../c-api/codec.rst:63
8592msgid ""
8693"Get an :class:`~codecs.IncrementalEncoder` object for the given *encoding*."
8794msgstr ""
8895
89- #: ../../c-api/codec.rst:59
96+ #: ../../c-api/codec.rst:67
9097msgid ""
9198"Get an :class:`~codecs.IncrementalDecoder` object for the given *encoding*."
9299msgstr ""
93100
94- #: ../../c-api/codec.rst:63
101+ #: ../../c-api/codec.rst:71
95102msgid ""
96103"Get a :class:`~codecs.StreamReader` factory function for the given "
97104"*encoding*."
98105msgstr ""
99106
100- #: ../../c-api/codec.rst:67
107+ #: ../../c-api/codec.rst:75
101108msgid ""
102109"Get a :class:`~codecs.StreamWriter` factory function for the given "
103110"*encoding*."
104111msgstr ""
105112
106- #: ../../c-api/codec.rst:71
113+ #: ../../c-api/codec.rst:79
107114msgid "Registry API for Unicode encoding error handlers"
108115msgstr ""
109116
110- #: ../../c-api/codec.rst:75
117+ #: ../../c-api/codec.rst:83
111118msgid ""
112119"Register the error handling callback function *error* under the given "
113120"*name*. This callback function will be called by a codec when it encounters "
114121"unencodable characters/undecodable bytes and *name* is specified as the "
115122"error parameter in the call to the encode/decode function."
116123msgstr ""
117124
118- #: ../../c-api/codec.rst:80
125+ #: ../../c-api/codec.rst:88
119126msgid ""
120127"The callback gets a single argument, an instance of "
121128":exc:`UnicodeEncodeError`, :exc:`UnicodeDecodeError` or "
@@ -128,39 +135,39 @@ msgid ""
128135"be resumed."
129136msgstr ""
130137
131- #: ../../c-api/codec.rst:90
138+ #: ../../c-api/codec.rst:98
132139msgid "Return ``0`` on success, ``-1`` on error."
133140msgstr ""
134141
135- #: ../../c-api/codec.rst:94
142+ #: ../../c-api/codec.rst:102
136143msgid ""
137144"Lookup the error handling callback function registered under *name*. As a "
138145"special case ``NULL`` can be passed, in which case the error handling "
139146"callback for \" strict\" will be returned."
140147msgstr ""
141148
142- #: ../../c-api/codec.rst:100
149+ #: ../../c-api/codec.rst:108
143150msgid "Raise *exc* as an exception."
144151msgstr ""
145152
146- #: ../../c-api/codec.rst:104
153+ #: ../../c-api/codec.rst:112
147154msgid "Ignore the unicode error, skipping the faulty input."
148155msgstr ""
149156
150- #: ../../c-api/codec.rst:108
157+ #: ../../c-api/codec.rst:116
151158msgid "Replace the unicode encode error with ``?`` or ``U+FFFD``."
152159msgstr ""
153160
154- #: ../../c-api/codec.rst:112
161+ #: ../../c-api/codec.rst:120
155162msgid "Replace the unicode encode error with XML character references."
156163msgstr ""
157164
158- #: ../../c-api/codec.rst:116
165+ #: ../../c-api/codec.rst:124
159166msgid ""
160167"Replace the unicode encode error with backslash escapes (``\\ x``, ``\\ u`` "
161168"and ``\\ U``)."
162169msgstr ""
163170
164- #: ../../c-api/codec.rst:121
171+ #: ../../c-api/codec.rst:129
165172msgid "Replace the unicode encode error with ``\\ N{...}`` escapes."
166173msgstr ""
0 commit comments