Skip to content

Commit 2011235

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent ac82145 commit 2011235

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+333
-252
lines changed

about.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-01-19 14:14+0000\n"
15+
"POT-Creation-Date: 2024-02-02 15:40+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/abstract.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-01-19 14:14+0000\n"
15+
"POT-Creation-Date: 2024-02-02 15:40+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Krzysztof Wierzbicki <krzwierz79@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/bytes.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-01-12 14:14+0000\n"
15+
"POT-Creation-Date: 2024-02-02 15:40+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: haaritsubaki, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/file.po

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-01-26 14:13+0000\n"
15+
"POT-Creation-Date: 2024-02-09 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1717
"Last-Translator: haaritsubaki, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -81,9 +81,12 @@ msgid ""
8181
"through the provided handler."
8282
msgstr ""
8383

84+
msgid "The handler is a function of type:"
85+
msgstr ""
86+
8487
msgid ""
85-
"The handler is a function of type :c:expr:`PyObject *(\\*)(PyObject *path, "
86-
"void *userData)`, where *path* is guaranteed to be :c:type:`PyUnicodeObject`."
88+
"Equivalent of :c:expr:`PyObject *(\\*)(PyObject *path, void *userData)`, "
89+
"where *path* is guaranteed to be :c:type:`PyUnicodeObject`."
8790
msgstr ""
8891

8992
msgid ""

c-api/import.po

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-01-12 14:14+0000\n"
15+
"POT-Creation-Date: 2024-02-09 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1717
"Last-Translator: haaritsubaki, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -28,20 +28,8 @@ msgid "Importing Modules"
2828
msgstr ""
2929

3030
msgid ""
31-
"This is a simplified interface to :c:func:`PyImport_ImportModuleEx` below, "
32-
"leaving the *globals* and *locals* arguments set to ``NULL`` and *level* set "
33-
"to 0. When the *name* argument contains a dot (when it specifies a "
34-
"submodule of a package), the *fromlist* argument is set to the list "
35-
"``['*']`` so that the return value is the named module rather than the top-"
36-
"level package containing it as would otherwise be the case. (Unfortunately, "
37-
"this has an additional side effect when *name* in fact specifies a "
38-
"subpackage instead of a submodule: the submodules specified in the package's "
39-
"``__all__`` variable are loaded.) Return a new reference to the imported "
40-
"module, or ``NULL`` with an exception set on failure. A failing import of a "
41-
"module doesn't leave the module in :data:`sys.modules`."
42-
msgstr ""
43-
44-
msgid "This function always uses absolute imports."
31+
"This is a wrapper around :c:func:`PyImport_Import()` which takes a :c:expr:"
32+
"`const char *` as an argument instead of a :c:expr:`PyObject *`."
4533
msgstr ""
4634

4735
msgid "This function is a deprecated alias of :c:func:`PyImport_ImportModule`."
@@ -93,6 +81,9 @@ msgid ""
9381
"hooks are installed in the current environment."
9482
msgstr ""
9583

84+
msgid "This function always uses absolute imports."
85+
msgstr ""
86+
9687
msgid ""
9788
"Reload a module. Return a new reference to the reloaded module, or ``NULL`` "
9889
"with an exception set on failure (the module still exists in this case)."

c-api/intro.po

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.12\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-01-26 14:13+0000\n"
17+
"POT-Creation-Date: 2024-02-09 14:13+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1919
"Last-Translator: haaritsubaki, 2023\n"
2020
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -208,8 +208,9 @@ msgid ""
208208
msgstr ""
209209

210210
msgid ""
211-
"If Python is :ref:`built in debug mode <debug-build>` (if the ``Py_DEBUG`` "
212-
"macro is defined), the :c:macro:`Py_ALWAYS_INLINE` macro does nothing."
211+
"If Python is :ref:`built in debug mode <debug-build>` (if the :c:macro:"
212+
"`Py_DEBUG` macro is defined), the :c:macro:`Py_ALWAYS_INLINE` macro does "
213+
"nothing."
213214
msgstr ""
214215

215216
msgid "It must be specified before the function return type. Usage::"
@@ -771,12 +772,12 @@ msgid ""
771772
msgstr ""
772773

773774
msgid ""
774-
"Compiling the interpreter with the :c:macro:`Py_DEBUG` macro defined "
775+
"Compiling the interpreter with the :c:macro:`!Py_DEBUG` macro defined "
775776
"produces what is generally meant by :ref:`a debug build of Python <debug-"
776-
"build>`. :c:macro:`Py_DEBUG` is enabled in the Unix build by adding :option:"
777+
"build>`. :c:macro:`!Py_DEBUG` is enabled in the Unix build by adding :option:"
777778
"`--with-pydebug` to the :file:`./configure` command. It is also implied by "
778-
"the presence of the not-Python-specific :c:macro:`_DEBUG` macro. When :c:"
779-
"macro:`Py_DEBUG` is enabled in the Unix build, compiler optimization is "
779+
"the presence of the not-Python-specific :c:macro:`!_DEBUG` macro. When :c:"
780+
"macro:`!Py_DEBUG` is enabled in the Unix build, compiler optimization is "
780781
"disabled."
781782
msgstr ""
782783

c-api/object.po

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-02-02 14:13+0000\n"
14+
"POT-Creation-Date: 2024-02-09 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1616
"Last-Translator: haaritsubaki, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -37,6 +37,12 @@ msgid ""
3737
"and return it)."
3838
msgstr ""
3939

40+
msgid ""
41+
"Flag to be used with multiple functions that print the object (like :c:func:"
42+
"`PyObject_Print` and :c:func:`PyFile_WriteObject`). If passed, these "
43+
"function would use the :func:`str` of the object instead of the :func:`repr`."
44+
msgstr ""
45+
4046
msgid ""
4147
"Print an object *o*, on file *fp*. Returns ``-1`` on error. The flags "
4248
"argument is used to enable certain printing options. The only option "

c-api/refcounting.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-01-12 14:14+0000\n"
14+
"POT-Creation-Date: 2024-02-02 15:40+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

contents.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-01-19 14:14+0000\n"
14+
"POT-Creation-Date: 2024-02-02 15:40+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

copyright.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-01-19 14:14+0000\n"
15+
"POT-Creation-Date: 2024-02-02 15:40+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)