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

Skip to content

Commit a8508f6

Browse files
GitHub Action's update-translation jobm-aciek
authored andcommitted
Update translation from Transifex
1 parent 9438638 commit a8508f6

2 files changed

Lines changed: 31 additions & 27 deletions

File tree

c-api/dict.po

Lines changed: 9 additions & 8 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-18 14:13+0000\n"
16+
"POT-Creation-Date: 2023-08-25 20:17+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"
@@ -77,9 +77,9 @@ msgstr ""
7777

7878
msgid ""
7979
"Insert *val* into the dictionary *p* using *key* as a key. *key* should be "
80-
"a :c:expr:`const char*`. The key object is created using "
81-
"``PyUnicode_FromString(key)``. Return ``0`` on success or ``-1`` on "
82-
"failure. This function *does not* steal a reference to *val*."
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*."
8383
msgstr ""
8484

8585
msgid ""
@@ -90,9 +90,9 @@ msgid ""
9090
msgstr ""
9191

9292
msgid ""
93-
"Remove the entry in dictionary *p* which has a key specified by the string "
94-
"*key*. If *key* is not in the dictionary, :exc:`KeyError` is raised. Return "
95-
"``0`` on success or ``-1`` on failure."
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."
9696
msgstr ""
9797

9898
msgid ""
@@ -119,7 +119,8 @@ msgstr ""
119119

120120
msgid ""
121121
"This is the same as :c:func:`PyDict_GetItem`, but *key* is specified as a :c:"
122-
"expr:`const char*`, rather than a :c:expr:`PyObject*`."
122+
"expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
123+
"`PyObject*`."
123124
msgstr ""
124125

125126
msgid ""

reference/datamodel.po

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.12\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2023-08-18 14:13+0000\n"
18+
"POT-Creation-Date: 2023-08-25 20:17+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:19+0000\n"
2020
"Last-Translator: haaritsubaki, 2023\n"
2121
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -242,6 +242,12 @@ msgid ""
242242
"negative)."
243243
msgstr ""
244244

245+
msgid ""
246+
"The rules for integer representation are intended to give the most "
247+
"meaningful interpretation of shift and mask operations involving negative "
248+
"integers."
249+
msgstr ""
250+
245251
msgid "There are two types of integers:"
246252
msgstr ""
247253

@@ -268,12 +274,6 @@ msgid ""
268274
"``\"True\"`` are returned, respectively."
269275
msgstr ""
270276

271-
msgid ""
272-
"The rules for integer representation are intended to give the most "
273-
"meaningful interpretation of shift and mask operations involving negative "
274-
"integers."
275-
msgstr ""
276-
277277
msgid ":class:`numbers.Real` (:class:`float`)"
278278
msgstr ""
279279

@@ -384,6 +384,11 @@ msgid ""
384384
"`del` (delete) statements."
385385
msgstr ""
386386

387+
msgid ""
388+
"The :mod:`collections` and :mod:`array` module provide additional examples "
389+
"of mutable sequence types."
390+
msgstr ""
391+
387392
msgid "There are currently two intrinsic mutable sequence types:"
388393
msgstr ""
389394

@@ -406,11 +411,6 @@ msgid ""
406411
"functionality as immutable :class:`bytes` objects."
407412
msgstr ""
408413

409-
msgid ""
410-
"The extension module :mod:`array` provides an additional example of a "
411-
"mutable sequence type, as does the :mod:`collections` module."
412-
msgstr ""
413-
414414
msgid "Set types"
415415
msgstr ""
416416

@@ -1953,7 +1953,7 @@ msgid ""
19531953
"`~object.__dict__` and *__weakref__* for each instance."
19541954
msgstr ""
19551955

1956-
msgid "Notes on using *__slots__*"
1956+
msgid "Notes on using *__slots__*:"
19571957
msgstr ""
19581958

19591959
msgid ""
@@ -3180,6 +3180,9 @@ msgstr ""
31803180
msgid "integer"
31813181
msgstr ""
31823182

3183+
msgid "representation"
3184+
msgstr ""
3185+
31833186
msgid "Boolean"
31843187
msgstr ""
31853188

@@ -3189,9 +3192,6 @@ msgstr ""
31893192
msgid "True"
31903193
msgstr ""
31913194

3192-
msgid "representation"
3193-
msgstr ""
3194-
31953195
msgid "floating point"
31963196
msgstr ""
31973197

@@ -3273,13 +3273,16 @@ msgstr ""
32733273
msgid "statement"
32743274
msgstr "instrukcja"
32753275

3276-
msgid "list"
3276+
msgid "array"
32773277
msgstr ""
32783278

3279-
msgid "bytearray"
3279+
msgid "collections"
32803280
msgstr ""
32813281

3282-
msgid "array"
3282+
msgid "list"
3283+
msgstr ""
3284+
3285+
msgid "bytearray"
32833286
msgstr ""
32843287

32853288
msgid "set type"

0 commit comments

Comments
 (0)