Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 47df43d

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent c38fba3 commit 47df43d

File tree

4 files changed

+34
-23
lines changed

4 files changed

+34
-23
lines changed

c-api/cell.po

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
14+
"POT-Creation-Date: 2024-07-12 14:15+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Waldemar Stoczkowski, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -63,7 +63,9 @@ msgid ""
6363
"may be ``NULL``."
6464
msgstr ""
6565

66-
msgid "Return the contents of the cell *cell*."
66+
msgid ""
67+
"Return the contents of the cell *cell*, which can be ``NULL``. If *cell* is "
68+
"not a cell object, returns ``NULL`` with an exception set."
6769
msgstr ""
6870

6971
msgid ""
@@ -74,8 +76,12 @@ msgstr ""
7476
msgid ""
7577
"Set the contents of the cell object *cell* to *value*. This releases the "
7678
"reference to any current content of the cell. *value* may be ``NULL``. "
77-
"*cell* must be non-``NULL``; if it is not a cell object, ``-1`` will be "
78-
"returned. On success, ``0`` will be returned."
79+
"*cell* must be non-``NULL``."
80+
msgstr ""
81+
82+
msgid ""
83+
"On success, return ``0``. If *cell* is not a cell object, set an exception "
84+
"and return ``-1``."
7985
msgstr ""
8086

8187
msgid ""

c-api/module.po

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
15+
"POT-Creation-Date: 2024-07-12 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1717
"Last-Translator: haaritsubaki, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -50,6 +50,9 @@ msgid ""
5050
"`__file__` attribute."
5151
msgstr ""
5252

53+
msgid "Return ``NULL`` with an exception set on error."
54+
msgstr ""
55+
5356
msgid ":attr:`__package__` and :attr:`__loader__` are set to ``None``."
5457
msgstr ""
5558

@@ -542,21 +545,22 @@ msgstr ""
542545

543546
msgid ""
544547
"Add an integer constant to *module* as *name*. This convenience function "
545-
"can be used from the module's initialization function. Return ``-1`` on "
546-
"error, ``0`` on success."
548+
"can be used from the module's initialization function. Return ``-1`` with an "
549+
"exception set on error, ``0`` on success."
547550
msgstr ""
548551

549552
msgid ""
550553
"Add a string constant to *module* as *name*. This convenience function can "
551554
"be used from the module's initialization function. The string *value* must "
552-
"be ``NULL``-terminated. Return ``-1`` on error, ``0`` on success."
555+
"be ``NULL``-terminated. Return ``-1`` with an exception set on error, ``0`` "
556+
"on success."
553557
msgstr ""
554558

555559
msgid ""
556560
"Add an int constant to *module*. The name and the value are taken from "
557561
"*macro*. For example ``PyModule_AddIntMacro(module, AF_INET)`` adds the int "
558-
"constant *AF_INET* with the value of *AF_INET* to *module*. Return ``-1`` on "
559-
"error, ``0`` on success."
562+
"constant *AF_INET* with the value of *AF_INET* to *module*. Return ``-1`` "
563+
"with an exception set on error, ``0`` on success."
560564
msgstr ""
561565

562566
msgid "Add a string constant to *module*."
@@ -566,7 +570,7 @@ msgid ""
566570
"Add a type object to *module*. The type object is finalized by calling "
567571
"internally :c:func:`PyType_Ready`. The name of the type object is taken from "
568572
"the last component of :c:member:`~PyTypeObject.tp_name` after dot. Return "
569-
"``-1`` on error, ``0`` on success."
573+
"``-1`` with an exception set on error, ``0`` on success."
570574
msgstr ""
571575

572576
msgid ""
@@ -576,7 +580,7 @@ msgid ""
576580
"function is not called during module initialization, the import machinery "
577581
"assumes the module does not support running without the GIL. This function "
578582
"is only available in Python builds configured with :option:`--disable-gil`. "
579-
"Return ``-1`` on error, ``0`` on success."
583+
"Return ``-1`` with an exception set on error, ``0`` on success."
580584
msgstr ""
581585

582586
msgid "Module lookup"
@@ -624,12 +628,12 @@ msgstr ""
624628
msgid "The caller must hold the GIL."
625629
msgstr ""
626630

627-
msgid "Return 0 on success or -1 on failure."
631+
msgid "Return ``-1`` with an exception set on error, ``0`` on success."
628632
msgstr ""
629633

630634
msgid ""
631635
"Removes the module object created from *def* from the interpreter state. "
632-
"Return 0 on success or -1 on failure."
636+
"Return ``-1`` with an exception set on error, ``0`` on success."
633637
msgstr ""
634638

635639
msgid "object"

c-api/object.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
15+
"POT-Creation-Date: 2024-07-12 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1717
"Last-Translator: haaritsubaki, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -118,7 +118,7 @@ msgstr ""
118118

119119
msgid ""
120120
"The reference is borrowed from the interpreter, and is valid until the "
121-
"interpreter finalization. .. versionadded:: 3.13"
121+
"interpreter finalization."
122122
msgstr ""
123123

124124
msgid ""

library/stdtypes.po

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.13\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
18+
"POT-Creation-Date: 2024-07-12 14:15+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
2020
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
2121
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -2103,8 +2103,9 @@ msgid ""
21032103
"If *sep* is given, consecutive delimiters are not grouped together and are "
21042104
"deemed to delimit empty strings (for example, ``'1,,2'.split(',')`` returns "
21052105
"``['1', '', '2']``). The *sep* argument may consist of multiple characters "
2106-
"(for example, ``'1<>2<>3'.split('<>')`` returns ``['1', '2', '3']``). "
2107-
"Splitting an empty string with a specified separator returns ``['']``."
2106+
"as a single delimiter (to split with multiple delimiters, use :func:`re."
2107+
"split`). Splitting an empty string with a specified separator returns "
2108+
"``['']``."
21082109
msgstr ""
21092110

21102111
msgid "For example::"
@@ -3095,10 +3096,10 @@ msgid ""
30953096
"If *sep* is given, consecutive delimiters are not grouped together and are "
30963097
"deemed to delimit empty subsequences (for example, ``b'1,,2'.split(b',')`` "
30973098
"returns ``[b'1', b'', b'2']``). The *sep* argument may consist of a "
3098-
"multibyte sequence (for example, ``b'1<>2<>3'.split(b'<>')`` returns "
3099-
"``[b'1', b'2', b'3']``). Splitting an empty sequence with a specified "
3100-
"separator returns ``[b'']`` or ``[bytearray(b'')]`` depending on the type of "
3101-
"object being split. The *sep* argument may be any :term:`bytes-like object`."
3099+
"multibyte sequence as a single delimiter. Splitting an empty sequence with a "
3100+
"specified separator returns ``[b'']`` or ``[bytearray(b'')]`` depending on "
3101+
"the type of object being split. The *sep* argument may be any :term:`bytes-"
3102+
"like object`."
31023103
msgstr ""
31033104

31043105
msgid ""

0 commit comments

Comments
 (0)