Skip to content

Commit 16470fe

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent a29d405 commit 16470fe

File tree

1 file changed

+182
-2
lines changed

1 file changed

+182
-2
lines changed

library/symtable.po

Lines changed: 182 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,186 @@
1-
#
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
210
msgid ""
311
msgstr ""
12+
"Project-Id-Version: Python 3.10\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2024-05-17 15:56+0000\n"
15+
"PO-Revision-Date: 2022-11-05 17:22+0000\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
417
"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"
521
"Language: pl\n"
6-
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\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 ":mod:`symtable` --- Access to the compiler's symbol tables"
27+
msgstr ""
28+
29+
msgid "**Source code:** :source:`Lib/symtable.py`"
30+
msgstr ""
31+
32+
msgid ""
33+
"Symbol tables are generated by the compiler from AST just before bytecode is "
34+
"generated. The symbol table is responsible for calculating the scope of "
35+
"every identifier in the code. :mod:`symtable` provides an interface to "
36+
"examine these tables."
37+
msgstr ""
38+
39+
msgid "Generating Symbol Tables"
40+
msgstr ""
41+
42+
msgid ""
43+
"Return the toplevel :class:`SymbolTable` for the Python source *code*. "
44+
"*filename* is the name of the file containing the code. *compile_type* is "
45+
"like the *mode* argument to :func:`compile`."
46+
msgstr ""
47+
48+
msgid "Examining Symbol Tables"
49+
msgstr ""
50+
51+
msgid "A namespace table for a block. The constructor is not public."
52+
msgstr ""
53+
54+
msgid ""
55+
"Return the type of the symbol table. Possible values are ``'class'``, "
56+
"``'module'``, and ``'function'``."
57+
msgstr ""
58+
59+
msgid "Return the table's identifier."
60+
msgstr ""
61+
62+
msgid ""
63+
"Return the table's name. This is the name of the class if the table is for "
64+
"a class, the name of the function if the table is for a function, or "
65+
"``'top'`` if the table is global (:meth:`get_type` returns ``'module'``)."
66+
msgstr ""
67+
68+
msgid "Return the number of the first line in the block this table represents."
69+
msgstr ""
70+
71+
msgid "Return ``True`` if the locals in this table can be optimized."
72+
msgstr ""
73+
74+
msgid "Return ``True`` if the block is a nested class or function."
75+
msgstr ""
76+
77+
msgid ""
78+
"Return ``True`` if the block has nested namespaces within it. These can be "
79+
"obtained with :meth:`get_children`."
80+
msgstr ""
81+
82+
msgid ""
83+
"Return a view object containing the names of symbols in the table. See the :"
84+
"ref:`documentation of view objects <dict-views>`."
85+
msgstr ""
86+
87+
msgid "Lookup *name* in the table and return a :class:`Symbol` instance."
88+
msgstr ""
89+
90+
msgid "Return a list of :class:`Symbol` instances for names in the table."
91+
msgstr ""
92+
93+
msgid "Return a list of the nested symbol tables."
94+
msgstr ""
95+
96+
msgid ""
97+
"A namespace for a function or method. This class inherits :class:"
98+
"`SymbolTable`."
99+
msgstr ""
100+
101+
msgid "Return a tuple containing names of parameters to this function."
102+
msgstr ""
103+
104+
msgid "Return a tuple containing names of locals in this function."
105+
msgstr ""
106+
107+
msgid "Return a tuple containing names of globals in this function."
108+
msgstr ""
109+
110+
msgid "Return a tuple containing names of nonlocals in this function."
111+
msgstr ""
112+
113+
msgid "Return a tuple containing names of free variables in this function."
114+
msgstr ""
115+
116+
msgid "A namespace of a class. This class inherits :class:`SymbolTable`."
117+
msgstr ""
118+
119+
msgid "Return a tuple containing the names of methods declared in the class."
120+
msgstr ""
121+
122+
msgid ""
123+
"An entry in a :class:`SymbolTable` corresponding to an identifier in the "
124+
"source. The constructor is not public."
125+
msgstr ""
126+
127+
msgid "Return the symbol's name."
128+
msgstr ""
129+
130+
msgid "Return ``True`` if the symbol is used in its block."
131+
msgstr ""
132+
133+
msgid "Return ``True`` if the symbol is created from an import statement."
134+
msgstr ""
135+
136+
msgid "Return ``True`` if the symbol is a parameter."
137+
msgstr ""
138+
139+
msgid "Return ``True`` if the symbol is global."
140+
msgstr ""
141+
142+
msgid "Return ``True`` if the symbol is nonlocal."
143+
msgstr ""
144+
145+
msgid ""
146+
"Return ``True`` if the symbol is declared global with a global statement."
147+
msgstr ""
148+
149+
msgid "Return ``True`` if the symbol is local to its block."
150+
msgstr ""
151+
152+
msgid "Return ``True`` if the symbol is annotated."
153+
msgstr ""
154+
155+
msgid ""
156+
"Return ``True`` if the symbol is referenced in its block, but not assigned "
157+
"to."
158+
msgstr ""
159+
160+
msgid "Return ``True`` if the symbol is assigned to in its block."
161+
msgstr ""
162+
163+
msgid "Return ``True`` if name binding introduces new namespace."
164+
msgstr ""
165+
166+
msgid ""
167+
"If the name is used as the target of a function or class statement, this "
168+
"will be true."
169+
msgstr ""
170+
171+
msgid "For example::"
172+
msgstr "Dla przykładu::"
173+
174+
msgid ""
175+
"Note that a single name can be bound to multiple objects. If the result is "
176+
"``True``, the name may also be bound to other objects, like an int or list, "
177+
"that does not introduce a new namespace."
178+
msgstr ""
179+
180+
msgid "Return a list of namespaces bound to this name."
181+
msgstr ""
182+
183+
msgid ""
184+
"Return the namespace bound to this name. If more than one namespace is "
185+
"bound, :exc:`ValueError` is raised."
186+
msgstr ""

0 commit comments

Comments
 (0)