-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathallocation.po
More file actions
154 lines (114 loc) · 12.1 KB
/
Copy pathallocation.po
File metadata and controls
154 lines (114 loc) · 12.1 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Mehdi Batani, 2025
# AmirHossein SAMIMI, 2025
# khosro azimi, 2025
# Ariyan Bolandi, 2025
# Danial Behzadi <dani.behzi@ubuntu.com>, 2025
# Benyamin Bentamin, 2025
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
# Revisto <theRevisto@gmail.com>, 2025
# Sepehr Rasouli <sepehrrasouli06@gmail.com>, 2026
# invincible627 <fatemehzahra810@gmail.com>, 2026
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-08-18 04:30+0000\n"
"PO-Revision-Date: 2026-07-25 14:55+0330\n"
"Last-Translator: Sepehr Rasouli <sepehrrasouli06@gmail.com>, 2026\n"
"Language-Team: Persian (https://github.com/revisto/python-docs-fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 3.6\n"
msgid "Allocating objects on the heap"
msgstr "تخصیص اشیاء روی پشته"
msgid "Initialize a newly allocated object *op* with its type and initial reference. Returns the initialized object. Other fields of the object are not initialized. Despite its name, this function is unrelated to the object's :meth:`~object.__init__` method (:c:member:`~PyTypeObject.tp_init` slot). Specifically, this function does **not** call the object's :meth:`!__init__` method."
msgstr "یک شیء *op* که بهتازگی تخصیص داده شده را با نوع و مرجع اولیهاش مقداردهی اولیه میکند. شیء مقداردهیشده را برمیگرداند. سایر فیلدهای شیء مقداردهی اولیه نمیشوند. با وجود نام این تابع، آن به متد :meth:`~object.__init__` شیء (درگاه :c:member:`~PyTypeObject.tp_init`) مربوط نیست. بهطور خاص، این تابع متد :meth:`!__init__` شیء را **فراخوانی نمیکند**."
msgid "In general, consider this function to be a low-level routine. Use :c:member:`~PyTypeObject.tp_alloc` where possible. For implementing :c:member:`!tp_alloc` for your type, prefer :c:func:`PyType_GenericAlloc` or :c:func:`PyObject_New`."
msgstr "در کل، این تابع را یک روتین سطح پایین در نظر بگیرید. تا جایی که ممکن است از :c:member:`~PyTypeObject.tp_alloc` استفاده کنید. برای پیادهسازی :c:member:`!tp_alloc` برای نوع خود، از :c:func:`PyType_GenericAlloc` یا :c:func:`PyObject_New` استفاده کنید."
msgid "This function only initializes the object's memory corresponding to the initial :c:type:`PyObject` structure. It does not zero the rest."
msgstr "این تابع فقط حافظهی شیء را که مربوط به ساختار ابتدایی :c:type:`PyObject` است، مقداردهی اولیه میکند. بقیهی حافظه را صفر نمیکند."
msgid "This does everything :c:func:`PyObject_Init` does, and also initializes the length information for a variable-size object."
msgstr "این تابع همهٔ کارهایی را انجام میدهد که :c:func:`PyObject_Init` انجام میدهد، و همچنین اطلاعات مربوط به طول را برای یک شیء با اندازهٔ متغیر مقداردهی میکند."
msgid "This function only initializes some of the object's memory. It does not zero the rest."
msgstr "این تابع فقط بخشی از حافظهی شیء را مقداردهی اولیه میکند. بقیهی حافظه را صفر نمیکند."
msgid "Allocates a new Python object using the C structure type *TYPE* and the Python type object *typeobj* (``PyTypeObject*``) by calling :c:func:`PyObject_Malloc` to allocate memory and initializing it like :c:func:`PyObject_Init`. The caller will own the only reference to the object (i.e. its reference count will be one)."
msgstr "یک شیء پایتونی جدید با استفاده از نوع ساختار C یعنی *TYPE* و شیء نوع پایتون یعنی *typeobj* (``PyTypeObject*``) با فراخوانی :c:func:`PyObject_Malloc` برای تخصیص حافظه و مقداردهی اولیهی آن مانند :c:func:`PyObject_Init` تخصیص میدهد. فراخواننده، تنها مرجع به شیء را در اختیار خواهد داشت (یعنی شمارندهی ارجاع آن یک خواهد بود)."
msgid "Avoid calling this directly to allocate memory for an object; call the type's :c:member:`~PyTypeObject.tp_alloc` slot instead."
msgstr "از فراخوانی مستقیم این تابع برای تخصیص حافظه به یک شیء خودداری کنید؛ به جای آن، درگاه :c:member:`~PyTypeObject.tp_alloc` تایپ را فراخوانی کنید."
msgid "When populating a type's :c:member:`~PyTypeObject.tp_alloc` slot, :c:func:`PyType_GenericAlloc` is preferred over a custom function that simply calls this macro."
msgstr "هنگام پر کردن درگاه :c:member:`~PyTypeObject.tp_alloc` یک تایپ، :c:func:`PyType_GenericAlloc` بر یک تابع سفارشی که صرفاً این ماکرو را فراخوانی میکند، ترجیح داده میشود."
msgid "This macro does not call :c:member:`~PyTypeObject.tp_alloc`, :c:member:`~PyTypeObject.tp_new` (:meth:`~object.__new__`), or :c:member:`~PyTypeObject.tp_init` (:meth:`~object.__init__`)."
msgstr "این ماکرو :c:member:`~PyTypeObject.tp_alloc`، :c:member:`~PyTypeObject.tp_new` (:meth:`~object.__new__`) یا :c:member:`~PyTypeObject.tp_init` (:meth:`~object.__init__`) را فراخوانی نمیکند."
msgid "This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set in :c:member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_New` instead."
msgstr "این را نمیتوان برای اشیایی که :c:macro:`Py_TPFLAGS_HAVE_GC` در :c:member:`~PyTypeObject.tp_flags` آنها تنظیم شده است، استفاده کرد؛ به جای آن از :c:macro:`PyObject_GC_New` استفاده کنید."
msgid "Memory allocated by this macro must be freed with :c:func:`PyObject_Free` (usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)."
msgstr "حافظهای که توسط این ماکرو تخصیص داده میشود، باید با :c:func:`PyObject_Free` آزاد شود (معمولاً از طریق درگاه :c:member:`~PyTypeObject.tp_free` شیء فراخوانی میشود)."
msgid "The returned memory is not guaranteed to have been completely zeroed before it was initialized."
msgstr "حافظهی برگشتی تضمین نمیشود که بهطور کامل صفر شده باشد قبل از اینکه مقداردهی اولیه شود."
msgid "This macro does not construct a fully initialized object of the given type; it merely allocates memory and prepares it for further initialization by :c:member:`~PyTypeObject.tp_init`. To construct a fully initialized object, call *typeobj* instead. For example::"
msgstr "این ماکرو یک شیء کاملاً مقداردهیشده از نوع دادهشده را نمیسازد؛ بلکه صرفاً حافظه تخصیص میدهد و آن را برای مقداردهی اولیهی بیشتر توسط :c:member:`~PyTypeObject.tp_init` آماده میکند. برای ساختن یک شیء کاملاً مقداردهیشده، به جای آن *typeobj* را فراخوانی کنید. برای مثال::"
msgid "PyObject *foo = PyObject_CallNoArgs((PyObject *)&PyFoo_Type);"
msgstr "PyObject *foo = PyObject_CallNoArgs((PyObject *)&PyFoo_Type);"
msgid ":c:func:`PyObject_Free`"
msgstr ":c:func:`PyObject_Free`"
msgid ":c:macro:`PyObject_GC_New`"
msgstr ":c:macro:`PyObject_GC_New`"
msgid ":c:func:`PyType_GenericAlloc`"
msgstr ":c:func:`PyType_GenericAlloc`"
msgid ":c:member:`~PyTypeObject.tp_alloc`"
msgstr ":c:member:`~PyTypeObject.tp_alloc`"
msgid "Like :c:macro:`PyObject_New` except:"
msgstr "مثل :c:macro:`PyObject_New` جز:"
msgid "It allocates enough memory for the *TYPE* structure plus *size* (``Py_ssize_t``) fields of the size given by the :c:member:`~PyTypeObject.tp_itemsize` field of *typeobj*."
msgstr "این (ماکرو) به اندازهی کافی برای ساختار *TYPE* به اضافهی *size* (``Py_ssize_t``) فیلد به اندازهای که توسط فیلد :c:member:`~PyTypeObject.tp_itemsize` از *typeobj* مشخص شده، حافظه تخصیص میدهد."
msgid "The memory is initialized like :c:func:`PyObject_InitVar`."
msgstr "حافظه، مانند :c:func:`PyObject_InitVar` مقداردهی اولیه میشود."
msgid "This is useful for implementing objects like tuples, which are able to determine their size at construction time. Embedding the array of fields into the same allocation decreases the number of allocations, improving the memory management efficiency."
msgstr "این (روش) برای پیادهسازی اشیایی مثل تاپلها مفید است، که میتوانند اندازهی خود را در زمان ساخت تعیین کنند. جاسازی آرایهی فیلدها در همان تخصیص، تعداد تخصیصها را کاهش میدهد و بازدهی مدیریت حافظه را بهبود میبخشد."
msgid "This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set in :c:member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_NewVar` instead."
msgstr "این را نمیتوان برای اشیایی که :c:macro:`Py_TPFLAGS_HAVE_GC` در :c:member:`~PyTypeObject.tp_flags` آنها تنظیم شده است، استفاده کرد؛ به جای آن از :c:macro:`PyObject_GC_NewVar` استفاده کنید."
msgid "Memory allocated by this function must be freed with :c:func:`PyObject_Free` (usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)."
msgstr "حافظهای که توسط این تابع تخصیص داده میشود، باید با :c:func:`PyObject_Free` آزاد شود (معمولاً از طریق درگاه :c:member:`~PyTypeObject.tp_free` شیء فراخوانی میشود)."
msgid "PyObject *list_instance = PyObject_CallNoArgs((PyObject *)&PyList_Type);"
msgstr "PyObject *list_instance = PyObject_CallNoArgs((PyObject *)&PyList_Type);"
msgid ":c:macro:`PyObject_GC_NewVar`"
msgstr ":c:macro:`PyObject_GC_NewVar`"
msgid "Object which is visible in Python as ``None``. This should only be accessed using the :c:macro:`Py_None` macro, which evaluates to a pointer to this object."
msgstr ""
"شیءای که در پایتون به صورت ``None`` قابل مشاهده است\n"
"این فقط باید با استفاده از ماکرو :c:macro:`Py_None`، که به یک اشارهگر به این شیء ارزیابی میشود، دسترسی پذیر باشد."
msgid ":ref:`moduleobjects`"
msgstr ":ref:`moduleobjects`"
msgid "To allocate and create extension modules."
msgstr "برای تخصیص و ایجاد ماژولهای افزونه."
msgid "Soft-deprecated aliases"
msgstr "نامهای مستعار با منسوخسازی نرم"
msgid "These are aliases to existing functions and macros. They exist solely for backwards compatibility."
msgstr "اینها نامهای مستعاری برای توابع و ماکروهای موجود هستند. آنها صرفاً برای سازگاری با نسخههای قبلی وجود دارند."
msgid "Soft-deprecated alias"
msgstr "نامهای مستعار با منسوخسازی نرم"
msgid "Function"
msgstr "تابع"
msgid ":c:macro:`PyObject_New`"
msgstr ":c:macro:`PyObject_New`"
msgid ":c:macro:`PyObject_NewVar`"
msgstr ":c:macro:`PyObject_NewVar`"
msgid ":c:func:`PyObject_Init`"
msgstr ":c:func:`PyObject_Init`"
msgid ":c:func:`PyObject_InitVar`"
msgstr ":c:func:`PyObject_InitVar`"
msgid ":c:func:`PyObject_Malloc`"
msgstr ":c:func:`PyObject_Malloc`"
msgid ":c:func:`PyObject_Realloc`"
msgstr ":c:func:`PyObject_Realloc`"