@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.9\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2021-04-26 06:10 +0000\n "
14
+ "POT-Creation-Date : 2021-05-23 06:25 +0000\n "
15
15
"PO-Revision-Date : 2017-02-16 17:43+0000\n "
16
16
"Last-Translator : oon arfiandwi <oon.arfiandwi@gmail.com>, 2021\n "
17
17
"Language-Team : Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n "
@@ -237,16 +237,17 @@ msgstr "Bagaimana cara membuat sebuah executable dari skrip Python?"
237
237
238
238
#: ../../faq/windows.rst:143
239
239
msgid ""
240
- "See `cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/>`_ and `py2exe "
241
- "<http://www.py2exe.org/>`_, both are distutils extensions that allow you to "
242
- "create console and GUI executables from Python code."
240
+ "See :ref:`faq-create-standalone-binary` for a list of tools that can be used"
241
+ " to make executables."
243
242
msgstr ""
243
+ "Lihat :ref:`faq-create-standalone-binary` untuk daftar perkakas yang dapat "
244
+ "digunakan membuat aplikasi yang dapat dieksekusi."
244
245
245
- #: ../../faq/windows.rst:149
246
+ #: ../../faq/windows.rst:148
246
247
msgid "Is a ``*.pyd`` file the same as a DLL?"
247
248
msgstr "Apakah file ``*.pyd`` sama dengan DLL?"
248
249
249
- #: ../../faq/windows.rst:151
250
+ #: ../../faq/windows.rst:150
250
251
msgid ""
251
252
"Yes, .pyd files are dll's, but there are a few differences. If you have a "
252
253
"DLL named ``foo.pyd``, then it must have a function ``PyInit_foo()``. You "
@@ -263,7 +264,7 @@ msgstr ""
263
264
"menautkan .exe Anda dengan foo.lib, karena hal itu akan menyebabkan Windows "
264
265
"memerlukan DLL."
265
266
266
- #: ../../faq/windows.rst:158
267
+ #: ../../faq/windows.rst:157
267
268
msgid ""
268
269
"Note that the search path for foo.pyd is PYTHONPATH, not the same as the "
269
270
"path that Windows uses to search for foo.dll. Also, foo.pyd need not be "
@@ -282,19 +283,19 @@ msgstr ""
282
283
"``__declspec(dllexport)``. Di file .pyd, keterkaitan didefinisikan sebagai "
283
284
"sebuah list dari fungsi yang tersedia."
284
285
285
- #: ../../faq/windows.rst:167
286
+ #: ../../faq/windows.rst:166
286
287
msgid "How can I embed Python into a Windows application?"
287
288
msgstr "Bagaimana cara memasukkan Python ke dalam aplikasi Windows?"
288
289
289
- #: ../../faq/windows.rst:169
290
+ #: ../../faq/windows.rst:168
290
291
msgid ""
291
292
"Embedding the Python interpreter in a Windows app can be summarized as "
292
293
"follows:"
293
294
msgstr ""
294
295
"Menyematkan interpreter Python di aplikasi Windows dapat diringkas menjadi "
295
296
"sebagai:"
296
297
297
- #: ../../faq/windows.rst:171
298
+ #: ../../faq/windows.rst:170
298
299
msgid ""
299
300
"Do _not_ build Python into your .exe file directly. On Windows, Python must"
300
301
" be a DLL to handle importing modules that are themselves DLL's. (This is "
@@ -309,7 +310,7 @@ msgstr ""
309
310
"``C:\\ Windows\\ System``. *NN* adalah Python versi, angka seperti \" 33\" "
310
311
"untuk Python 3.3."
311
312
312
- #: ../../faq/windows.rst:177
313
+ #: ../../faq/windows.rst:176
313
314
msgid ""
314
315
"You can link to Python in two different ways. Load-time linking means "
315
316
"linking against :file:`python{NN}.lib`, while run-time linking means linking"
@@ -324,7 +325,7 @@ msgstr ""
324
325
" dengan :file:`python{NN}.dll`. itu hanya mendefinisikan simbol untuk "
325
326
"linker.)"
326
327
327
- #: ../../faq/windows.rst:183
328
+ #: ../../faq/windows.rst:182
328
329
msgid ""
329
330
"Run-time linking greatly simplifies link options; everything happens at run "
330
331
"time. Your code must load :file:`python{NN}.dll` using the Windows "
@@ -342,15 +343,15 @@ msgstr ""
342
343
" menggunakan pointer tersebut ke kode C apapun yang memanggil rutinitas di C"
343
344
" Python API."
344
345
345
- #: ../../faq/windows.rst:190
346
+ #: ../../faq/windows.rst:189
346
347
msgid ""
347
348
"Borland note: convert :file:`python{NN}.lib` to OMF format using "
348
349
"Coff2Omf.exe first."
349
350
msgstr ""
350
351
"Catatan Borland: ubah :file:`python{NN}.lib` ke format OMF menggunakan "
351
352
"Coff20mf.exe terlebih dahulu."
352
353
353
- #: ../../faq/windows.rst:195
354
+ #: ../../faq/windows.rst:194
354
355
msgid ""
355
356
"If you use SWIG, it is easy to create a Python \" extension module\" that "
356
357
"will make the app's data and methods available to Python. SWIG will handle "
@@ -364,7 +365,7 @@ msgstr ""
364
365
"Hasilnya adalah kode C Anda yang terkaitkan ke .exe file Anda (!) Kamu "
365
366
"tidak perlu membuat sebuah file DLL, dan ini juga memudahkan proses linking."
366
367
367
- #: ../../faq/windows.rst:201
368
+ #: ../../faq/windows.rst:200
368
369
msgid ""
369
370
"SWIG will create an init function (a C function) whose name depends on the "
370
371
"name of the extension module. For example, if the name of the module is "
@@ -379,7 +380,7 @@ msgstr ""
379
380
"kelas pembantu yang sebagian besar tersembunyi yang digunakan oleh kelas "
380
381
"bayangan."
381
382
382
- #: ../../faq/windows.rst:207
383
+ #: ../../faq/windows.rst:206
383
384
msgid ""
384
385
"The reason you can link the C code in step 2 into your .exe file is that "
385
386
"calling the initialization function is equivalent to importing the module "
@@ -389,15 +390,15 @@ msgstr ""
389
390
"itu memanggil fungsi inisialisasi sama dengan mengimpor modul ke dalam "
390
391
"Python! (Ini adalah fakta kunci tak terdokumentasi kedua.)"
391
392
392
- #: ../../faq/windows.rst:211
393
+ #: ../../faq/windows.rst:210
393
394
msgid ""
394
395
"In short, you can use the following code to initialize the Python "
395
396
"interpreter with your extension module."
396
397
msgstr ""
397
398
"Singkatnya, Anda dapat menggunakan kode berikut untuk menginisialisasi "
398
399
"Python interpreter dengan ekstensi modul Anda."
399
400
400
- #: ../../faq/windows.rst:222
401
+ #: ../../faq/windows.rst:221
401
402
msgid ""
402
403
"There are two problems with Python's C API which will become apparent if you"
403
404
" use a compiler other than MSVC, the compiler used to build pythonNN.dll."
@@ -406,7 +407,7 @@ msgstr ""
406
407
"kompilator selain MSVC, kompilator yang digunakan untuk membangun "
407
408
"pythonNN.dll."
408
409
409
- #: ../../faq/windows.rst:225
410
+ #: ../../faq/windows.rst:224
410
411
msgid ""
411
412
"Problem 1: The so-called \" Very High Level\" functions that take FILE * "
412
413
"arguments will not work in a multi-compiler environment because each "
@@ -418,15 +419,15 @@ msgstr ""
418
419
"masing-masing Gagasan kompiler tentang struct FILE akan berbeda. Dari sebuah"
419
420
" sudut pandang implementasi ini adalah fungsi level yang sangat _low_."
420
421
421
- #: ../../faq/windows.rst:230
422
+ #: ../../faq/windows.rst:229
422
423
msgid ""
423
424
"Problem 2: SWIG generates the following code when generating wrappers to "
424
425
"void functions:"
425
426
msgstr ""
426
427
"Masalah 2: SWIG menghasilkan kode berikut saat membuat wrappers ke dalam "
427
428
"fungsi void:"
428
429
429
- #: ../../faq/windows.rst:239
430
+ #: ../../faq/windows.rst:238
430
431
msgid ""
431
432
"Alas, Py_None is a macro that expands to a reference to a complex data "
432
433
"structure called _Py_NoneStruct inside pythonNN.dll. Again, this code will "
@@ -436,7 +437,7 @@ msgstr ""
436
437
"struktur yang disebut _Py_NoneStruct di dalam pythonNN.dll. Sekali lagi, "
437
438
"kode ini akan gagal di lingkungan mult-compiler. Ganti kode tersebut dengan:"
438
439
439
- #: ../../faq/windows.rst:247
440
+ #: ../../faq/windows.rst:246
440
441
msgid ""
441
442
"It may be possible to use SWIG's ``%typemap`` command to make the change "
442
443
"automatically, though I have not been able to get this to work (I'm a "
@@ -446,7 +447,7 @@ msgstr ""
446
447
"perubahan secara otomatis, meskipun saya belum bisa membuat ini berfungsi "
447
448
"(saya adalah pemula SWIG)."
448
449
449
- #: ../../faq/windows.rst:251
450
+ #: ../../faq/windows.rst:250
450
451
msgid ""
451
452
"Using a Python shell script to put up a Python interpreter window from "
452
453
"inside your Windows app is not a good idea; the resulting window will be "
@@ -466,12 +467,12 @@ msgstr ""
466
467
"semua yang Anda butuhkan adalah objek Python (didefinisikan dalam modul "
467
468
"ekstensi Anda) yang berisi metode read() dan write()."
468
469
469
- #: ../../faq/windows.rst:260
470
+ #: ../../faq/windows.rst:259
470
471
msgid "How do I keep editors from inserting tabs into my Python source?"
471
472
msgstr ""
472
473
"Bagaimana cara mencegah editor memasukkan tab ke dalam sumber Python saya?"
473
474
474
- #: ../../faq/windows.rst:262
475
+ #: ../../faq/windows.rst:261
475
476
msgid ""
476
477
"The FAQ does not recommend using tabs, and the Python style guide, :pep:`8`,"
477
478
" recommends 4 spaces for distributed Python code; this is also the Emacs "
@@ -481,7 +482,7 @@ msgstr ""
481
482
":pep:`8`, merekomendasikan dengan 4 spasi untuk distribusi kode Python; ini "
482
483
"juga Emacs python-mode secara default."
483
484
484
- #: ../../faq/windows.rst:266
485
+ #: ../../faq/windows.rst:265
485
486
msgid ""
486
487
"Under any editor, mixing tabs and spaces is a bad idea. MSVC is no "
487
488
"different in this respect, and is easily configured to use spaces: Take "
@@ -495,7 +496,7 @@ msgstr ""
495
496
"tipe \" Default\" set \" Tab size\" dan \" Indent size\" menjadi 4, dan pilih "
496
497
"\" Insert spaces\" tombol radio."
497
498
498
- #: ../../faq/windows.rst:271
499
+ #: ../../faq/windows.rst:270
499
500
msgid ""
500
501
"Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs and "
501
502
"spaces are causing problems in leading whitespace. You may also run the "
@@ -506,11 +507,11 @@ msgstr ""
506
507
"Anda juga dapat menjalankan :mod:`tabnanny` modul untuk mengecek sebuah "
507
508
"direktori di mode batch."
508
509
509
- #: ../../faq/windows.rst:278
510
+ #: ../../faq/windows.rst:277
510
511
msgid "How do I check for a keypress without blocking?"
511
512
msgstr "Bagaimana cara memeriksa tombol yang ditekan tanpa memblokir?"
512
513
513
- #: ../../faq/windows.rst:280
514
+ #: ../../faq/windows.rst:279
514
515
msgid ""
515
516
"Use the :mod:`msvcrt` module. This is a standard Windows-specific extension"
516
517
" module. It defines a function ``kbhit()`` which checks whether a keyboard "
0 commit comments