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

Skip to content

Commit 3e59ddd

Browse files
GitHub Action's update-translation jobm-aciek
authored andcommitted
Update translation from Transifex
1 parent cef3580 commit 3e59ddd

19 files changed

Lines changed: 156 additions & 114 deletions

File tree

c-api/buffer.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: 2023-08-18 14:13+0000\n"
14+
"POT-Creation-Date: 2023-09-01 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/dict.po

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-08-25 20:17+0000\n"
16+
"POT-Creation-Date: 2023-09-08 14:13+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1818
"Last-Translator: haaritsubaki, 2023\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -76,10 +76,9 @@ msgid ""
7676
msgstr ""
7777

7878
msgid ""
79-
"Insert *val* into the dictionary *p* using *key* as a key. *key* should be "
80-
"a :c:expr:`const char*` UTF-8 encoded bytes string. The key object is "
81-
"created using ``PyUnicode_FromString(key)``. Return ``0`` on success or "
82-
"``-1`` on failure. This function *does not* steal a reference to *val*."
79+
"This is the same as :c:func:`PyDict_SetItem`, but *key* is specified as a :c:"
80+
"expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
81+
"`PyObject*`."
8382
msgstr ""
8483

8584
msgid ""
@@ -90,9 +89,9 @@ msgid ""
9089
msgstr ""
9190

9291
msgid ""
93-
"Remove the entry in dictionary *p* which has a key specified by the UTF-8 "
94-
"encoded bytes string *key*. If *key* is not in the dictionary, :exc:"
95-
"`KeyError` is raised. Return ``0`` on success or ``-1`` on failure."
92+
"This is the same as :c:func:`PyDict_DelItem`, but *key* is specified as a :c:"
93+
"expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
94+
"`PyObject*`."
9695
msgstr ""
9796

9897
msgid ""
@@ -294,9 +293,6 @@ msgstr "obiekt"
294293
msgid "dictionary"
295294
msgstr "słownik"
296295

297-
msgid "PyUnicode_FromString()"
298-
msgstr ""
299-
300296
msgid "built-in function"
301297
msgstr "funkcja wbudowana"
302298

c-api/mapping.po

Lines changed: 22 additions & 20 deletions
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: 2023-08-18 14:13+0000\n"
14+
"POT-Creation-Date: 2023-09-08 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"
@@ -45,27 +45,24 @@ msgid ""
4545
msgstr ""
4646

4747
msgid ""
48-
"Return element of *o* corresponding to the string *key* or ``NULL`` on "
49-
"failure. This is the equivalent of the Python expression ``o[key]``. See "
50-
"also :c:func:`PyObject_GetItem`."
48+
"This is the same as :c:func:`PyObject_GetItem`, but *key* is specified as a :"
49+
"c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
50+
"`PyObject*`."
5151
msgstr ""
5252

5353
msgid ""
54-
"Map the string *key* to the value *v* in object *o*. Returns ``-1`` on "
55-
"failure. This is the equivalent of the Python statement ``o[key] = v``. See "
56-
"also :c:func:`PyObject_SetItem`. This function *does not* steal a reference "
57-
"to *v*."
54+
"This is the same as :c:func:`PyObject_SetItem`, but *key* is specified as a :"
55+
"c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
56+
"`PyObject*`."
5857
msgstr ""
5958

60-
msgid ""
61-
"Remove the mapping for the object *key* from the object *o*. Return ``-1`` "
62-
"on failure. This is equivalent to the Python statement ``del o[key]``. This "
63-
"is an alias of :c:func:`PyObject_DelItem`."
59+
msgid "This is an alias of :c:func:`PyObject_DelItem`."
6460
msgstr ""
6561

6662
msgid ""
67-
"Remove the mapping for the string *key* from the object *o*. Return ``-1`` "
68-
"on failure. This is equivalent to the Python statement ``del o[key]``."
63+
"This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as a :"
64+
"c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
65+
"`PyObject*`."
6966
msgstr ""
7067

7168
msgid ""
@@ -75,16 +72,21 @@ msgid ""
7572
msgstr ""
7673

7774
msgid ""
78-
"Note that exceptions which occur while calling the :meth:`~object."
79-
"__getitem__` method will get suppressed. To get error reporting use :c:func:"
75+
"Exceptions which occur when this calls :meth:`~object.__getitem__` method "
76+
"are silently ignored. For proper error handling, use :c:func:"
8077
"`PyObject_GetItem()` instead."
8178
msgstr ""
8279

8380
msgid ""
84-
"Note that exceptions which occur while calling the :meth:`~object."
85-
"__getitem__` method and creating a temporary string object will get "
86-
"suppressed. To get error reporting use :c:func:`PyMapping_GetItemString()` "
87-
"instead."
81+
"This is the same as :c:func:`PyMapping_HasKey`, but *key* is specified as a :"
82+
"c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
83+
"`PyObject*`."
84+
msgstr ""
85+
86+
msgid ""
87+
"Exceptions that occur when this calls :meth:`~object.__getitem__` method or "
88+
"while creating the temporary :class:`str` object are silently ignored. For "
89+
"proper error handling, use :c:func:`PyMapping_GetItemString` instead."
8890
msgstr ""
8991

9092
msgid ""

c-api/object.po

Lines changed: 22 additions & 4 deletions
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: 2023-08-18 14:13+0000\n"
14+
"POT-Creation-Date: 2023-09-08 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"
@@ -56,6 +56,12 @@ msgid ""
5656
"handling, use :c:func:`PyObject_GetAttr` instead."
5757
msgstr ""
5858

59+
msgid ""
60+
"This is the same as :c:func:`PyObject_HasAttr`, but *attr_name* is specified "
61+
"as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
62+
"`PyObject*`."
63+
msgstr ""
64+
5965
msgid ""
6066
"Exceptions that occur when this calls :meth:`~object.__getattr__` and :meth:"
6167
"`~object.__getattribute__` methods or while creating the temporary :class:"
@@ -70,9 +76,9 @@ msgid ""
7076
msgstr ""
7177

7278
msgid ""
73-
"Retrieve an attribute named *attr_name* from object *o*. Returns the "
74-
"attribute value on success, or ``NULL`` on failure. This is the equivalent "
75-
"of the Python expression ``o.attr_name``."
79+
"This is the same as :c:func:`PyObject_GetAttr`, but *attr_name* is specified "
80+
"as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
81+
"`PyObject*`."
7682
msgstr ""
7783

7884
msgid ""
@@ -96,6 +102,12 @@ msgid ""
96102
"plans to remove it."
97103
msgstr ""
98104

105+
msgid ""
106+
"This is the same as :c:func:`PyObject_SetAttr`, but *attr_name* is specified "
107+
"as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
108+
"`PyObject*`."
109+
msgstr ""
110+
99111
msgid ""
100112
"If *v* is ``NULL``, the attribute is deleted, but this feature is deprecated "
101113
"in favour of using :c:func:`PyObject_DelAttrString`."
@@ -117,6 +129,12 @@ msgid ""
117129
"failure. This is the equivalent of the Python statement ``del o.attr_name``."
118130
msgstr ""
119131

132+
msgid ""
133+
"This is the same as :c:func:`PyObject_DelAttr`, but *attr_name* is specified "
134+
"as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
135+
"`PyObject*`."
136+
msgstr ""
137+
120138
msgid ""
121139
"A generic implementation for the getter of a ``__dict__`` descriptor. It "
122140
"creates the dictionary if necessary."

distributing/index.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: 2023-08-18 14:13+0000\n"
14+
"POT-Creation-Date: 2023-09-01 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

extending/extending.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: 2023-08-18 14:13+0000\n"
14+
"POT-Creation-Date: 2023-09-01 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:51+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

faq/gui.po

Lines changed: 9 additions & 9 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: 2023-09-01 14:13+0000\n"
15+
"POT-Creation-Date: 2023-09-08 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1717
"Last-Translator: rmaster1211 <[email protected]>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -67,8 +67,8 @@ msgstr ""
6767

6868
msgid ""
6969
"One solution is to ship the application with the Tcl and Tk libraries, and "
70-
"point to them at run-time using the :envvar:`TCL_LIBRARY` and :envvar:"
71-
"`TK_LIBRARY` environment variables."
70+
"point to them at run-time using the :envvar:`!TCL_LIBRARY` and :envvar:`!"
71+
"TK_LIBRARY` environment variables."
7272
msgstr ""
7373

7474
msgid ""
@@ -79,8 +79,8 @@ msgid ""
7979
msgstr ""
8080

8181
msgid ""
82-
"Build Tix with SAM enabled, perform the appropriate call to :c:func:"
83-
"`Tclsam_init`, etc. inside Python's :file:`Modules/tkappinit.c`, and link "
82+
"Build Tix with SAM enabled, perform the appropriate call to :c:func:`!"
83+
"Tclsam_init`, etc. inside Python's :file:`Modules/tkappinit.c`, and link "
8484
"with libtclsam and libtksam (you might include the Tix libraries as well)."
8585
msgstr ""
8686

@@ -90,7 +90,7 @@ msgstr ""
9090
msgid ""
9191
"On platforms other than Windows, yes, and you don't even need threads! But "
9292
"you'll have to restructure your I/O code a bit. Tk has the equivalent of "
93-
"Xt's :c:func:`XtAddInput()` call, which allows you to register a callback "
93+
"Xt's :c:func:`!XtAddInput` call, which allows you to register a callback "
9494
"function which will be called from the Tk mainloop when I/O is possible on a "
9595
"file descriptor. See :ref:`tkinter-file-handlers`."
9696
msgstr ""
@@ -99,9 +99,9 @@ msgid "I can't get key bindings to work in Tkinter: why?"
9999
msgstr ""
100100

101101
msgid ""
102-
"An often-heard complaint is that event handlers bound to events with the :"
103-
"meth:`bind` method don't get handled even when the appropriate key is "
104-
"pressed."
102+
"An often-heard complaint is that event handlers :ref:`bound <bindings-and-"
103+
"events>` to events with the :meth:`!bind` method don't get handled even when "
104+
"the appropriate key is pressed."
105105
msgstr ""
106106

107107
msgid ""

installing/index.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: 2023-08-18 14:13+0000\n"
15+
"POT-Creation-Date: 2023-09-01 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
1717
"Last-Translator: Krzysztof Wierzbicki <[email protected]>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/configparser.po

Lines changed: 4 additions & 2 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: 2023-08-18 14:13+0000\n"
17+
"POT-Creation-Date: 2023-09-08 14:13+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:57+0000\n"
1919
"Last-Translator: haaritsubaki, 2023\n"
2020
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -617,7 +617,9 @@ msgid ""
617617
"When *default_section* is given, it specifies the name for the special "
618618
"section holding default values for other sections and interpolation purposes "
619619
"(normally named ``\"DEFAULT\"``). This value can be retrieved and changed "
620-
"on runtime using the ``default_section`` instance attribute."
620+
"at runtime using the ``default_section`` instance attribute. This won't re-"
621+
"evaluate an already parsed config file, but will be used when writing parsed "
622+
"settings to a new config file."
621623
msgstr ""
622624

623625
msgid ""

library/datetime.po

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-08-25 14:13+0000\n"
16+
"POT-Creation-Date: 2023-09-08 14:13+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:04+0000\n"
1818
"Last-Translator: Michał Biliński <[email protected]>, 2021\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -67,6 +67,14 @@ msgstr ""
6767
msgid "Third-party library with expanded time zone and parsing support."
6868
msgstr ""
6969

70+
msgid "Package `DateType <https://pypi.org/project/datetype/>`_"
71+
msgstr ""
72+
73+
msgid ""
74+
"Third-party library that introduces distinct static types to e.g. allow "
75+
"static type checkers to differentiate between naive and aware datetimes."
76+
msgstr ""
77+
7078
msgid "Aware and Naive Objects"
7179
msgstr ""
7280

0 commit comments

Comments
 (0)