1
- # SOME DESCRIPTIVE TITLE .
1
+ # Translation of python-newest.c-api--hash .
2
2
# Copyright (C) 2001 Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -19,8 +19,8 @@ msgstr ""
19
19
"MIME-Version : 1.0\n "
20
20
"Content-Type : text/plain; charset=UTF-8\n "
21
21
"Content-Transfer-Encoding : 8bit\n "
22
- "Language : id\n "
23
22
"Plural-Forms : nplurals=1; plural=0;\n "
23
+ "X-Generator : Poedit 3.6\n "
24
24
25
25
msgid "PyHash API"
26
26
msgstr "PyHash API"
@@ -30,76 +30,90 @@ msgid ""
30
30
msgstr "Lihat juga :c:member:`PyTypeObject.tp_hash` dan :ref:`numeric-hash`"
31
31
32
32
msgid "Hash value type: signed integer."
33
- msgstr ""
33
+ msgstr "Tipe nilai hash: signed integer. "
34
34
35
35
msgid "Hash value type: unsigned integer."
36
- msgstr ""
36
+ msgstr "Tipe nilai hash: unsigned integer. "
37
37
38
38
msgid ""
39
39
"The `Mersenne prime <https://en.wikipedia.org/wiki/Mersenne_prime>`_ ``P = "
40
40
"2**n -1``, used for numeric hash scheme."
41
41
msgstr ""
42
+ "`Bilangan prima Mersenne <https://en.wikipedia.org/wiki/Mersenne_prime>`_ "
43
+ "``P = 2**n -1``, digunakan untuk skema hash numerik."
42
44
43
45
msgid "The exponent ``n`` of ``P`` in :c:macro:`PyHASH_MODULUS`."
44
- msgstr ""
46
+ msgstr "Eksponen ``n`` dari ``P`` di dalam :c:macro:`PyHASH_MODULUS`. "
45
47
46
48
msgid "Prime multiplier used in string and various other hashes."
47
- msgstr ""
49
+ msgstr "Pengganda prima digunakan dalam string dan berbagai macam hash. "
48
50
49
51
msgid "The hash value returned for a positive infinity."
50
- msgstr ""
52
+ msgstr "Nilai hash dikembalikan dalam bentuk positif tak terhingga. "
51
53
52
54
msgid "The multiplier used for the imaginary part of a complex number."
53
55
msgstr ""
56
+ "Pengganda digunakan untuk bagian imajiner dari suatu bilangan kompleks."
54
57
55
58
msgid "Hash function definition used by :c:func:`PyHash_GetFuncDef`."
56
- msgstr ""
59
+ msgstr "Definisi fungsi hash digunakan oleh :c:func:`PyHash_GetFuncDef`. "
57
60
58
61
msgid "Hash function name (UTF-8 encoded string)."
59
- msgstr ""
62
+ msgstr "Nama fungsi hash (UTF-8 encoded string). "
60
63
61
64
msgid "Internal size of the hash value in bits."
62
- msgstr ""
65
+ msgstr "Ukuran internal hash dalam bentuk bits. "
63
66
64
67
msgid "Size of seed input in bits."
65
- msgstr ""
68
+ msgstr "Ukuran input seed dalam bits. "
66
69
67
70
msgid "Get the hash function definition."
68
- msgstr ""
71
+ msgstr "Dapatkan definisi fungsi hash. "
69
72
70
73
msgid ":pep:`456` \" Secure and interchangeable hash algorithm\" ."
71
- msgstr ""
74
+ msgstr ":pep:`456` “Algoritma hash yang aman dan dapat dipertukarkan“. "
72
75
73
76
msgid ""
74
77
"Hash a pointer value: process the pointer value as an integer (cast it to "
75
78
"``uintptr_t`` internally). The pointer is not dereferenced."
76
79
msgstr ""
80
+ "Hash sebuah nilai pointer: proses nilai pointer sebagai integer (ubah ke "
81
+ "bentuk ``uintptr_t`` secara internal). Pointer tidak dilakukan dereferensi."
77
82
78
83
msgid "The function cannot fail: it cannot return ``-1``."
79
- msgstr ""
84
+ msgstr "Fungsi tidak bisa gagal: ia tidak bisa mengembalikan nilai ``-1``. "
80
85
81
86
msgid ""
82
87
"Compute and return the hash value of a buffer of *len* bytes starting at "
83
88
"address *ptr*. The hash is guaranteed to match that of :class:`bytes`, :"
84
89
"class:`memoryview`, and other built-in objects that implement the :ref:"
85
90
"`buffer protocol <bufferobjects>`."
86
91
msgstr ""
92
+ "Komputasi dan kembalikan nilai hash dari sebuah penyangga dari *len* bytes "
93
+ "dimulai dari alamat *ptr*. Hash dijamin untuk cocok "
94
+ "pada :class:`bytes`, :class:`memoryview`, dan bawaan objek yang lain yang "
95
+ "mengimplementasikan :ref:`buffer protocol <bufferobjects>`."
87
96
88
97
msgid ""
89
98
"Use this function to implement hashing for immutable objects whose :c:member:"
90
99
"`~PyTypeObject.tp_richcompare` function compares to another object's buffer."
91
100
msgstr ""
101
+ "Gunakan fungsi ini untuk implementasikan hashing pada objek yang tidak "
102
+ "dapat berubah dimana fungsi :c:member:`~PyTypeObject.tp_richcompare` "
103
+ "dibandingkan pada penyangga objek yang lain."
92
104
93
105
msgid "*len* must be greater than or equal to ``0``."
94
- msgstr ""
106
+ msgstr "*len* harus lebih besar atau sama dengan ``0``. "
95
107
96
108
msgid "This function always succeeds."
97
- msgstr ""
109
+ msgstr "Fungsi ini selalu berhasil. "
98
110
99
111
msgid ""
100
112
"Generic hashing function that is meant to be put into a type object's "
101
113
"``tp_hash`` slot. Its result only depends on the object's identity."
102
114
msgstr ""
115
+ "Fungsi generik hashing yang dimaksudkan untuk ditaruh pada tipe objek "
116
+ "``tp_hash``. Hasilnya hanya bergantung dari identitas objek itu."
103
117
104
118
msgid "In CPython, it is equivalent to :c:func:`Py_HashPointer`."
105
- msgstr ""
119
+ msgstr "Di CPython, itu sama dengan :c:func:`Py_HashPointer`. "
0 commit comments