Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit37d0e7e

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parentf4b8972 commit37d0e7e

File tree

287 files changed

+32478
-5317
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

287 files changed

+32478
-5317
lines changed

‎about.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.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-08 14:49-0300\n"
14+
"POT-Creation-Date:2025-09-15 21:21+0000\n"
1515
"PO-Revision-Date:2025-08-15 18:59+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"

‎bugs.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.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-08 14:49-0300\n"
14+
"POT-Creation-Date:2025-09-15 21:21+0000\n"
1515
"PO-Revision-Date:2025-08-15 18:59+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"

‎c-api/abstract.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.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-08 14:49-0300\n"
14+
"POT-Creation-Date:2025-09-15 21:21+0000\n"
1515
"PO-Revision-Date:2025-08-15 18:59+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"

‎c-api/allocation.po‎

Lines changed: 66 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7+
# Hengky Kurniawan, 2025
8+
# Fried Rice, 2025
79
# python-doc bot, 2025
810
#
911
#,fuzzy
1012
msgid ""
1113
msgstr ""
1214
"Project-Id-Version:Python 3.14\n"
1315
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-08 14:49-0300\n"
16+
"POT-Creation-Date:2025-09-15 21:21+0000\n"
1517
"PO-Revision-Date:2025-08-15 18:59+0000\n"
1618
"Last-Translator:python-doc bot, 2025\n"
1719
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -33,18 +35,30 @@ msgid ""
3335
"slot). Specifically, this function does **not** call the object's :meth:`!"
3436
"__init__` method."
3537
msgstr""
38+
"Menginisialisasi objek *op* yang baru dialokasikan dengan tipe dan referensi "
39+
"awalnya. Mengembalikan objek yang telah diinisialisasi. Bidang lain dari "
40+
"objek tidak diinisialisasi. Terlepas dari namanya, fungsi ini tidak terkait "
41+
"dengan metode :meth:`~object.__init__` objek (slot:c:member:`~PyTypeObject."
42+
"tp_init` ). Secara khusus, fungsi ini tidak **tidak** memanggil metode :"
43+
"meth:`!__init__` objek."
3644

3745
msgid""
3846
"In general, consider this function to be a low-level routine. Use :c:member:"
3947
"`~PyTypeObject.tp_alloc` where possible. For implementing :c:member:`!"
4048
"tp_alloc` for your type, prefer :c:func:`PyType_GenericAlloc` or :c:func:"
4149
"`PyObject_New`."
4250
msgstr""
51+
"Secara umum, anggaplah fungsi ini sebagai rutinitas tingkat rendah. Gunakan :"
52+
"c:member:`~PyTypeObject.tp_alloc` jika memungkinkan. Untuk "
53+
"mengimplementasikan :c:member:`!tp_alloc` untuk tipe Anda, pilih :c:func:"
54+
"`PyType_GenericAlloc` atau :c:func:`PyObject_New`."
4355

4456
msgid""
4557
"This function only initializes the object's memory corresponding to the "
4658
"initial :c:type:`PyObject` structure. It does not zero the rest."
4759
msgstr""
60+
"Fungsi ini hanya menginisialisasi memori objek yang sesuai dengan struktur "
61+
"awal :c:type:`PyObject`. Fungsi ini tidak mengosongkan sisanya."
4862

4963
msgid""
5064
"This does everything :c:func:`PyObject_Init` does, and also initializes the "
@@ -57,6 +71,8 @@ msgid ""
5771
"This function only initializes some of the object's memory. It does not "
5872
"zero the rest."
5973
msgstr""
74+
"Fungsi ini hanya menginisialisasi sebagian memori objek. Fungsi ini tidak "
75+
"mengosongkan sisanya."
6076

6177
msgid""
6278
"Allocates a new Python object using the C structure type *TYPE* and the "
@@ -65,99 +81,140 @@ msgid ""
6581
"`PyObject_Init`. The caller will own the only reference to the object (i.e. "
6682
"its reference count will be one)."
6783
msgstr""
84+
"Mengalokasikan objek Python baru menggunakan tipe struktur C *TYPE* dan "
85+
"objek tipe Python *typeobj* (``PyTypeObject*``) dengan memanggil :c:func:"
86+
"`PyObject_Malloc` untuk mengalokasikan memori dan menginisialisasinya "
87+
"sebagai :c:func:`PyObject_Init`. Pemanggil akan memiliki satu-satunya "
88+
"referensi ke objek tersebut (misal: jumlah referensinya adalah satu)."
6889

6990
msgid""
7091
"Avoid calling this directly to allocate memory for an object; call the "
7192
"type's :c:member:`~PyTypeObject.tp_alloc` slot instead."
7293
msgstr""
94+
"Hindari memanggil ini secara langsung untuk mengalokasikan memori untuk "
95+
"sebuah objek; panggil slot :c:member:`~PyTypeObject.tp_alloc` dari tipe "
96+
"sebagai gantinya."
7397

7498
msgid""
7599
"When populating a type's :c:member:`~PyTypeObject.tp_alloc` slot, :c:func:"
76100
"`PyType_GenericAlloc` is preferred over a custom function that simply calls "
77101
"this macro."
78102
msgstr""
103+
"Ketika mengisi slot tipe :c:member:`~PyTypeObject.tp_alloc` , :c:func:"
104+
"`PyType_GenericAlloc` lebih direkomendasikan daripada fungsi kustom yang "
105+
"hanya memanggil makro ini."
79106

80107
msgid""
81108
"This macro does not call :c:member:`~PyTypeObject.tp_alloc`, :c:member:"
82109
"`~PyTypeObject.tp_new` (:meth:`~object.__new__`), or :c:member:"
83110
"`~PyTypeObject.tp_init` (:meth:`~object.__init__`)."
84111
msgstr""
112+
"Makro ini tidak memanggil :c:member:`~PyTypeObject.tp_alloc`, :c:member:"
113+
"`~PyTypeObject.tp_new` (:meth:`~object.__new__`), atau :c:member:"
114+
"`~PyTypeObject.tp_init` (:meth:`~object.__init__`)."
85115

86116
msgid""
87117
"This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set in :c:"
88118
"member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_New` instead."
89119
msgstr""
120+
"Ini tidak dapat digunakan untuk objek dengan :c:macro:`Py_TPFLAGS_HAVE_GC` "
121+
"yang diatur di :c:member:`~PyTypeObject.tp_flags`; gunakan :c:macro:"
122+
"`PyObject_GC_New` sebagai gantinya."
90123

91124
msgid""
92125
"Memory allocated by this macro must be freed with :c:func:`PyObject_Free` "
93126
"(usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)."
94127
msgstr""
128+
"Memori yang dialokasikan oleh makro ini harus dibebaskan dengan :c:func:"
129+
"`PyObject_Free` (biasanya dipanggil melalui slot objek :c:member:"
130+
"`~PyTypeObject.tp_free` )."
95131

96132
msgid""
97133
"The returned memory is not guaranteed to have been completely zeroed before "
98134
"it was initialized."
99135
msgstr""
136+
"Memori yang dikembalikan tidak dijamin telah di-nol-kan sepenuhnya sebelum "
137+
"diinisialisasi."
100138

101139
msgid""
102140
"This macro does not construct a fully initialized object of the given type; "
103141
"it merely allocates memory and prepares it for further initialization by :c:"
104142
"member:`~PyTypeObject.tp_init`. To construct a fully initialized object, "
105143
"call *typeobj* instead. For example::"
106144
msgstr""
145+
"Makro ini tidak membuat objek yang diinisialisasi penuh dari tipe yang "
146+
"diberikan; makro ini hanya mengalokasikan memori dan mempersiapkannya untuk "
147+
"inisialisasi lebih lanjut oleh :c:member:`~PyTypeObject.tp_init`. Untuk "
148+
"membuat objek yang diinisialisasi secara penuh, panggil *typeobj* sebagai "
149+
"gantinya. Sebagai contoh::"
107150

108151
msgid"PyObject *foo = PyObject_CallNoArgs((PyObject *)&PyFoo_Type);"
109-
msgstr""
152+
msgstr"PyObject * foo = PyObject_CallNoArgs((PyObject *) & PyFoo_Type);"
110153

111154
msgid":c:func:`PyObject_Free`"
112155
msgstr":c:func:`PyObject_Free`"
113156

114157
msgid":c:macro:`PyObject_GC_New`"
115-
msgstr""
158+
msgstr":c:macro:`PyObject_GC_New`"
116159

117160
msgid":c:func:`PyType_GenericAlloc`"
118-
msgstr""
161+
msgstr":c:func:`PyType_GenericAlloc`"
119162

120163
msgid":c:member:`~PyTypeObject.tp_alloc`"
121164
msgstr":c:member:`~PyTypeObject.tp_alloc`"
122165

123166
msgid"Like :c:macro:`PyObject_New` except:"
124-
msgstr""
167+
msgstr"Seperti :c:macro:`PyObject_New` kecuali:"
125168

126169
msgid""
127170
"It allocates enough memory for the *TYPE* structure plus *size* "
128171
"(``Py_ssize_t``) fields of the size given by the :c:member:`~PyTypeObject."
129172
"tp_itemsize` field of *typeobj*."
130173
msgstr""
174+
"Ini mengalokasikan cukup memori untuk struktur *TYPE* ditambah bidang *size* "
175+
"(``Py_ssize_t``) dengan ukuran yang diberikan oleh bidang :c:member:"
176+
"`~PyTypeObject.tp_itemsize` dari *typeobj*."
131177

132178
msgid"The memory is initialized like :c:func:`PyObject_InitVar`."
133-
msgstr""
179+
msgstr"Memori diinisialisasi seperti :c:func:`PyObject_InitVar`."
134180

135181
msgid""
136182
"This is useful for implementing objects like tuples, which are able to "
137183
"determine their size at construction time. Embedding the array of fields "
138184
"into the same allocation decreases the number of allocations, improving the "
139185
"memory management efficiency."
140186
msgstr""
187+
"Hal ini berguna untuk mengimplementasikan objek seperti tuple, yang dapat "
188+
"menentukan ukurannya pada saat konstruksi. Menanamkan array of fields ke "
189+
"dalam alokasi yang sama akan mengurangi jumlah alokasi, sehingga "
190+
"meningkatkan efisiensi manajemen memori."
141191

142192
msgid""
143193
"This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set in :c:"
144194
"member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_NewVar` instead."
145195
msgstr""
196+
"Ini tidak dapat digunakan untuk objek dengan :c:macro:`Py_TPFLAGS_HAVE_GC` "
197+
"yang diatur di :c:member:`~PyTypeObject.tp_flags`; gunakan :c:macro:"
198+
"`PyObject_GC_NewVar` sebagai gantinya."
146199

147200
msgid""
148201
"Memory allocated by this function must be freed with :c:func:`PyObject_Free` "
149202
"(usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)."
150203
msgstr""
204+
"Memori yang dialokasikan oleh fungsi ini harus dibebaskan dengan :c:func:"
205+
"`PyObject_Free` (biasanya dipanggil melalui slot :c:member:`~PyTypeObject."
206+
"tp_free` objek)."
151207

152208
msgid""
153209
"PyObject *list_instance = PyObject_CallNoArgs((PyObject *)&PyList_Type);"
154210
msgstr""
211+
"PyObject * list_instance = PyObject_CallNoArgs((PyObject *) & PyList_Type);"
155212

156213
msgid":c:macro:`PyObject_GC_NewVar`"
157-
msgstr""
214+
msgstr":c:macro:`PyObject_GC_NewVar`"
158215

159216
msgid"Same as :c:func:`PyObject_Free`."
160-
msgstr""
217+
msgstr"Sama seperti :c:func:`PyObject_Free`."
161218

162219
msgid""
163220
"Object which is visible in Python as ``None``. This should only be accessed "
@@ -169,7 +226,7 @@ msgstr ""
169226
"pointer ke object ini."
170227

171228
msgid":ref:`moduleobjects`"
172-
msgstr""
229+
msgstr":ref:`moduleobjects`"
173230

174231
msgid"To allocate and create extension modules."
175232
msgstr"Untuk mengalokasikan dan membuat modul ekstensi."

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp