Skip to content

Commit 3a3e318

Browse files
GitHub Action's update-translation jobrffontenelle
andcommitted
Update translation from Transifex
Co-Authored-By: Rafael Fontenelle <[email protected]>
1 parent af292c8 commit 3a3e318

File tree

7 files changed

+1793
-11
lines changed

7 files changed

+1793
-11
lines changed

c-api/coro.po

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2025, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Rafael Fontenelle <[email protected]>, 2025
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.11\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2025-07-11 16:41+0000\n"
15+
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
16+
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "Coroutine Objects"
27+
msgstr "Objek Coroutine"
28+
29+
msgid ""
30+
"Coroutine objects are what functions declared with an ``async`` keyword "
31+
"return."
32+
msgstr ""
33+
34+
msgid "The C structure used for coroutine objects."
35+
msgstr ""
36+
37+
msgid "The type object corresponding to coroutine objects."
38+
msgstr ""
39+
40+
msgid ""
41+
"Return true if *ob*'s type is :c:type:`PyCoro_Type`; *ob* must not be "
42+
"``NULL``. This function always succeeds."
43+
msgstr ""
44+
45+
msgid ""
46+
"Create and return a new coroutine object based on the *frame* object, with "
47+
"``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference "
48+
"to *frame* is stolen by this function. The *frame* argument must not be "
49+
"``NULL``."
50+
msgstr ""

c-api/weakref.po

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2025, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Rafael Fontenelle <[email protected]>, 2025
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.11\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2025-07-11 16:41+0000\n"
15+
"PO-Revision-Date: 2023-05-24 02:10+0000\n"
16+
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "Weak Reference Objects"
27+
msgstr "Слабкі довідкові об’єкти"
28+
29+
msgid ""
30+
"Python supports *weak references* as first-class objects. There are two "
31+
"specific object types which directly implement weak references. The first "
32+
"is a simple reference object, and the second acts as a proxy for the "
33+
"original object as much as it can."
34+
msgstr ""
35+
36+
msgid ""
37+
"Return true if *ob* is either a reference or proxy object. This function "
38+
"always succeeds."
39+
msgstr ""
40+
41+
msgid ""
42+
"Return true if *ob* is a reference object. This function always succeeds."
43+
msgstr ""
44+
45+
msgid "Return true if *ob* is a proxy object. This function always succeeds."
46+
msgstr ""
47+
48+
msgid ""
49+
"Return a weak reference object for the object *ob*. This will always return "
50+
"a new reference, but is not guaranteed to create a new object; an existing "
51+
"reference object may be returned. The second parameter, *callback*, can be "
52+
"a callable object that receives notification when *ob* is garbage collected; "
53+
"it should accept a single parameter, which will be the weak reference object "
54+
"itself. *callback* may also be ``None`` or ``NULL``. If *ob* is not a "
55+
"weakly referencable object, or if *callback* is not callable, ``None``, or "
56+
"``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
57+
msgstr ""
58+
59+
msgid ""
60+
"Return a weak reference proxy object for the object *ob*. This will always "
61+
"return a new reference, but is not guaranteed to create a new object; an "
62+
"existing proxy object may be returned. The second parameter, *callback*, "
63+
"can be a callable object that receives notification when *ob* is garbage "
64+
"collected; it should accept a single parameter, which will be the weak "
65+
"reference object itself. *callback* may also be ``None`` or ``NULL``. If "
66+
"*ob* is not a weakly referencable object, or if *callback* is not callable, "
67+
"``None``, or ``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
68+
msgstr ""
69+
70+
msgid ""
71+
"Return the referenced object from a weak reference, *ref*. If the referent "
72+
"is no longer live, returns ``Py_None``."
73+
msgstr ""
74+
75+
msgid ""
76+
"This function returns a :term:`borrowed reference` to the referenced object. "
77+
"This means that you should always call :c:func:`Py_INCREF` on the object "
78+
"except when it cannot be destroyed before the last usage of the borrowed "
79+
"reference."
80+
msgstr ""
81+
82+
msgid "Similar to :c:func:`PyWeakref_GetObject`, but does no error checking."
83+
msgstr ""
84+
85+
msgid ""
86+
"This function is called by the :c:member:`~PyTypeObject.tp_dealloc` handler "
87+
"to clear weak references."
88+
msgstr ""
89+
90+
msgid ""
91+
"This iterates through the weak references for *object* and calls callbacks "
92+
"for those references which have one. It returns when all callbacks have been "
93+
"attempted."
94+
msgstr ""

library/email.compat32-message.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ msgid ""
430430
msgstr ""
431431

432432
msgid "Here's an example::"
433-
msgstr ""
433+
msgstr "Ось приклад::"
434434

435435
msgid "This will add a header that looks like ::"
436436
msgstr "Це додасть заголовок, який виглядає так::"

library/email.header.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ msgid ""
235235
msgstr ""
236236

237237
msgid "Here's an example::"
238-
msgstr ""
238+
msgstr "Ось приклад::"
239239

240240
msgid ""
241241
"Create a :class:`Header` instance from a sequence of pairs as returned by :"

library/sys_path_init.po

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2025, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Rafael Fontenelle <[email protected]>, 2025
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.11\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2025-07-11 16:41+0000\n"
15+
"PO-Revision-Date: 2023-05-24 02:20+0000\n"
16+
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "The initialization of the :data:`sys.path` module search path"
27+
msgstr ""
28+
29+
msgid ""
30+
"A module search path is initialized when Python starts. This module search "
31+
"path may be accessed at :data:`sys.path`."
32+
msgstr ""
33+
34+
msgid ""
35+
"The first entry in the module search path is the directory that contains the "
36+
"input script, if there is one. Otherwise, the first entry is the current "
37+
"directory, which is the case when executing the interactive shell, a :option:"
38+
"`-c` command, or :option:`-m` module."
39+
msgstr ""
40+
41+
msgid ""
42+
"The :envvar:`PYTHONPATH` environment variable is often used to add "
43+
"directories to the search path. If this environment variable is found then "
44+
"the contents are added to the module search path."
45+
msgstr ""
46+
47+
msgid ""
48+
":envvar:`PYTHONPATH` will affect all installed Python versions/environments. "
49+
"Be wary of setting this in your shell profile or global environment "
50+
"variables. The :mod:`site` module offers more nuanced techniques as "
51+
"mentioned below."
52+
msgstr ""
53+
54+
msgid ""
55+
"The next items added are the directories containing standard Python modules "
56+
"as well as any :term:`extension module`\\s that these modules depend on. "
57+
"Extension modules are ``.pyd`` files on Windows and ``.so`` files on other "
58+
"platforms. The directory with the platform-independent Python modules is "
59+
"called ``prefix``. The directory with the extension modules is called "
60+
"``exec_prefix``."
61+
msgstr ""
62+
63+
msgid ""
64+
"The :envvar:`PYTHONHOME` environment variable may be used to set the "
65+
"``prefix`` and ``exec_prefix`` locations. Otherwise these directories are "
66+
"found by using the Python executable as a starting point and then looking "
67+
"for various 'landmark' files and directories. Note that any symbolic links "
68+
"are followed so the real Python executable location is used as the search "
69+
"starting point. The Python executable location is called ``home``."
70+
msgstr ""
71+
72+
msgid ""
73+
"Once ``home`` is determined, the ``prefix`` directory is found by first "
74+
"looking for :file:`python{majorversion}{minorversion}.zip` (``python311."
75+
"zip``). On Windows the zip archive is searched for in ``home`` and on Unix "
76+
"the archive is expected to be in :file:`lib`. Note that the expected zip "
77+
"archive location is added to the module search path even if the archive does "
78+
"not exist. If no archive was found, Python on Windows will continue the "
79+
"search for ``prefix`` by looking for :file:`Lib\\\\os.py`. Python on Unix "
80+
"will look for :file:`lib/python{majorversion}.{minorversion}/os.py` (``lib/"
81+
"python3.11/os.py``). On Windows ``prefix`` and ``exec_prefix`` are the same, "
82+
"however on other platforms :file:`lib/python{majorversion}.{minorversion}/"
83+
"lib-dynload` (``lib/python3.11/lib-dynload``) is searched for and used as an "
84+
"anchor for ``exec_prefix``. On some platforms :file:`lib` may be :file:"
85+
"`lib64` or another value, see :data:`sys.platlibdir` and :envvar:"
86+
"`PYTHONPLATLIBDIR`."
87+
msgstr ""
88+
89+
msgid ""
90+
"Once found, ``prefix`` and ``exec_prefix`` are available at :data:`sys."
91+
"prefix` and :data:`sys.exec_prefix` respectively."
92+
msgstr ""
93+
94+
msgid ""
95+
"Finally, the :mod:`site` module is processed and :file:`site-packages` "
96+
"directories are added to the module search path. A common way to customize "
97+
"the search path is to create :mod:`sitecustomize` or :mod:`usercustomize` "
98+
"modules as described in the :mod:`site` module documentation."
99+
msgstr ""
100+
101+
msgid ""
102+
"Certain command line options may further affect path calculations. See :"
103+
"option:`-E`, :option:`-I`, :option:`-s` and :option:`-S` for further details."
104+
msgstr ""
105+
106+
msgid "Virtual environments"
107+
msgstr "Lingkungan virtual"
108+
109+
msgid ""
110+
"If Python is run in a virtual environment (as described at :ref:`tut-venv`) "
111+
"then ``prefix`` and ``exec_prefix`` are specific to the virtual environment."
112+
msgstr ""
113+
114+
msgid ""
115+
"If a ``pyvenv.cfg`` file is found alongside the main executable, or in the "
116+
"directory one level above the executable, the following variations apply:"
117+
msgstr ""
118+
119+
msgid ""
120+
"If ``home`` is an absolute path and :envvar:`PYTHONHOME` is not set, this "
121+
"path is used instead of the path to the main executable when deducing "
122+
"``prefix`` and ``exec_prefix``."
123+
msgstr ""
124+
125+
msgid "_pth files"
126+
msgstr ""
127+
128+
msgid ""
129+
"To completely override :data:`sys.path` create a ``._pth`` file with the "
130+
"same name as the shared library or executable (``python._pth`` or "
131+
"``python311._pth``). The shared library path is always known on Windows, "
132+
"however it may not be available on other platforms. In the ``._pth`` file "
133+
"specify one line for each path to add to :data:`sys.path`. The file based on "
134+
"the shared library name overrides the one based on the executable, which "
135+
"allows paths to be restricted for any program loading the runtime if desired."
136+
msgstr ""
137+
138+
msgid ""
139+
"When the file exists, all registry and environment variables are ignored, "
140+
"isolated mode is enabled, and :mod:`site` is not imported unless one line in "
141+
"the file specifies ``import site``. Blank paths and lines starting with "
142+
"``#`` are ignored. Each path may be absolute or relative to the location of "
143+
"the file. Import statements other than to ``site`` are not permitted, and "
144+
"arbitrary code cannot be specified."
145+
msgstr ""
146+
147+
msgid ""
148+
"Note that ``.pth`` files (without leading underscore) will be processed "
149+
"normally by the :mod:`site` module when ``import site`` has been specified."
150+
msgstr ""
151+
152+
msgid "Embedded Python"
153+
msgstr ""
154+
155+
msgid ""
156+
"If Python is embedded within another application :c:func:"
157+
"`Py_InitializeFromConfig` and the :c:type:`PyConfig` structure can be used "
158+
"to initialize Python. The path specific details are described at :ref:`init-"
159+
"path-config`. Alternatively the older :c:func:`Py_SetPath` can be used to "
160+
"bypass the initialization of the module search path."
161+
msgstr ""
162+
163+
msgid ":ref:`windows_finding_modules` for detailed Windows notes."
164+
msgstr ""
165+
166+
msgid ":ref:`using-on-unix` for Unix details."
167+
msgstr ""

0 commit comments

Comments
 (0)