Skip to content

Commit 6749027

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 4e1cc77 commit 6749027

File tree

2 files changed

+86
-1
lines changed

2 files changed

+86
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ f'''![build](https://github.com/python/python-docs-pl/workflows/.github/workflow
1616
]]] -->
1717
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-lint-and-build.yml/badge.svg)
1818
![52.83% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-52.83%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.85%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.86%25-0.svg)
2020
![5 tłumaczy](https://img.shields.io/badge/tłumaczy-5-0.svg)
2121
<!-- [[[end]]] -->
2222

c-api/cell.po

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2024, 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 <rffontenelle@gmail.com>, 2024
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: 2024-03-29 16:43+0000\n"
15+
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\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 "Cell Objects"
27+
msgstr ""
28+
29+
msgid ""
30+
"\"Cell\" objects are used to implement variables referenced by multiple "
31+
"scopes. For each such variable, a cell object is created to store the value; "
32+
"the local variables of each stack frame that references the value contains a "
33+
"reference to the cells from outer scopes which also use that variable. When "
34+
"the value is accessed, the value contained in the cell is used instead of "
35+
"the cell object itself. This de-referencing of the cell object requires "
36+
"support from the generated byte-code; these are not automatically de-"
37+
"referenced when accessed. Cell objects are not likely to be useful elsewhere."
38+
msgstr ""
39+
"Obiekty \"Cell\" są używane do implementacji zmiennych, do których odwołuje "
40+
"się wiele zakresów. Dla każdej takiej zmiennej tworzony jest obiekt komórki "
41+
"do przechowywania wartości; zmienne lokalne każdej ramki stosu, która "
42+
"odwołuje się do wartości, zawierają odniesienie do komórek z zewnętrznych "
43+
"zakresów, które również używają tej zmiennej. Gdy wartość jest dostępna, "
44+
"wartość zawarta w komórce jest używana zamiast samego obiektu komórki. "
45+
"Odwoływanie się do obiektu komórki wymaga wsparcia ze strony wygenerowanego "
46+
"kodu bajtowego; nie są one automatycznie odwoływane, gdy uzyskuje się do "
47+
"nich dostęp. Obiekty komórek prawdopodobnie nie będą przydatne w innych "
48+
"miejscach."
49+
50+
msgid "The C structure used for cell objects."
51+
msgstr ""
52+
53+
msgid "The type object corresponding to cell objects."
54+
msgstr ""
55+
56+
msgid ""
57+
"Return true if *ob* is a cell object; *ob* must not be ``NULL``. This "
58+
"function always succeeds."
59+
msgstr ""
60+
61+
msgid ""
62+
"Create and return a new cell object containing the value *ob*. The parameter "
63+
"may be ``NULL``."
64+
msgstr ""
65+
66+
msgid "Return the contents of the cell *cell*."
67+
msgstr ""
68+
69+
msgid ""
70+
"Return the contents of the cell *cell*, but without checking that *cell* is "
71+
"non-``NULL`` and a cell object."
72+
msgstr ""
73+
74+
msgid ""
75+
"Set the contents of the cell object *cell* to *value*. This releases the "
76+
"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+
msgstr ""
80+
81+
msgid ""
82+
"Sets the value of the cell object *cell* to *value*. No reference counts "
83+
"are adjusted, and no checks are made for safety; *cell* must be non-``NULL`` "
84+
"and must be a cell object."
85+
msgstr ""

0 commit comments

Comments
 (0)