-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathhash.po
More file actions
86 lines (67 loc) · 2.33 KB
/
Copy pathhash.po
File metadata and controls
86 lines (67 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2025, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.13\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-04-25 14:19+0000\n"
"PO-Revision-Date: 2024-02-23 14:15+0000\n"
"Language-Team: Ukrainian (https://app.transifex.com/python-doc/teams/5390/"
"uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
msgid "PyHash API"
msgstr ""
msgid ""
"See also the :c:member:`PyTypeObject.tp_hash` member and :ref:`numeric-hash`."
msgstr ""
msgid "Hash value type: signed integer."
msgstr ""
msgid "Hash value type: unsigned integer."
msgstr ""
msgid ""
"The `Mersenne prime <https://en.wikipedia.org/wiki/Mersenne_prime>`_ ``P = "
"2**n -1``, used for numeric hash scheme."
msgstr ""
msgid "The exponent ``n`` of ``P`` in :c:macro:`PyHASH_MODULUS`."
msgstr ""
msgid "Prime multiplier used in string and various other hashes."
msgstr ""
msgid "The hash value returned for a positive infinity."
msgstr ""
msgid "The multiplier used for the imaginary part of a complex number."
msgstr ""
msgid "Hash function definition used by :c:func:`PyHash_GetFuncDef`."
msgstr ""
msgid "Hash function name (UTF-8 encoded string)."
msgstr ""
msgid "Internal size of the hash value in bits."
msgstr ""
msgid "Size of seed input in bits."
msgstr ""
msgid "Get the hash function definition."
msgstr ""
msgid ":pep:`456` \"Secure and interchangeable hash algorithm\"."
msgstr ""
msgid ""
"Hash a pointer value: process the pointer value as an integer (cast it to "
"``uintptr_t`` internally). The pointer is not dereferenced."
msgstr ""
msgid "The function cannot fail: it cannot return ``-1``."
msgstr ""
msgid ""
"Generic hashing function that is meant to be put into a type object's "
"``tp_hash`` slot. Its result only depends on the object's identity."
msgstr ""
msgid "In CPython, it is equivalent to :c:func:`Py_HashPointer`."
msgstr ""