-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcurses.ascii.po
276 lines (207 loc) · 6.19 KB
/
curses.ascii.po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2025, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Maciej Olko <maciej.olko@gmail.com>, 2021
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.13\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-04-04 14:18+0000\n"
"PO-Revision-Date: 2021-06-28 01:03+0000\n"
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"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"
msgid ":mod:`!curses.ascii` --- Utilities for ASCII characters"
msgstr ""
msgid "**Source code:** :source:`Lib/curses/ascii.py`"
msgstr ""
msgid ""
"The :mod:`curses.ascii` module supplies name constants for ASCII characters "
"and functions to test membership in various ASCII character classes. The "
"constants supplied are names for control characters as follows:"
msgstr ""
msgid "Name"
msgstr "Nazwa"
msgid "Meaning"
msgstr "Znaczenie"
msgid "Start of heading, console interrupt"
msgstr ""
msgid "Start of text"
msgstr ""
msgid "End of text"
msgstr ""
msgid "End of transmission"
msgstr ""
msgid "Enquiry, goes with :const:`ACK` flow control"
msgstr ""
msgid "Acknowledgement"
msgstr ""
msgid "Bell"
msgstr ""
msgid "Backspace"
msgstr ""
msgid "Tab"
msgstr ""
msgid "Alias for :const:`TAB`: \"Horizontal tab\""
msgstr ""
msgid "Line feed"
msgstr ""
msgid "Alias for :const:`LF`: \"New line\""
msgstr ""
msgid "Vertical tab"
msgstr ""
msgid "Form feed"
msgstr ""
msgid "Carriage return"
msgstr ""
msgid "Shift-out, begin alternate character set"
msgstr ""
msgid "Shift-in, resume default character set"
msgstr ""
msgid "Data-link escape"
msgstr ""
msgid "XON, for flow control"
msgstr ""
msgid "Device control 2, block-mode flow control"
msgstr ""
msgid "XOFF, for flow control"
msgstr ""
msgid "Device control 4"
msgstr ""
msgid "Negative acknowledgement"
msgstr ""
msgid "Synchronous idle"
msgstr ""
msgid "End transmission block"
msgstr ""
msgid "Cancel"
msgstr ""
msgid "End of medium"
msgstr ""
msgid "Substitute"
msgstr ""
msgid "Escape"
msgstr ""
msgid "File separator"
msgstr ""
msgid "Group separator"
msgstr ""
msgid "Record separator, block-mode terminator"
msgstr ""
msgid "Unit separator"
msgstr ""
msgid "Space"
msgstr ""
msgid "Delete"
msgstr ""
msgid ""
"Note that many of these have little practical significance in modern usage. "
"The mnemonics derive from teleprinter conventions that predate digital "
"computers."
msgstr ""
msgid ""
"The module supplies the following functions, patterned on those in the "
"standard C library:"
msgstr ""
msgid ""
"Checks for an ASCII alphanumeric character; it is equivalent to ``isalpha(c) "
"or isdigit(c)``."
msgstr ""
msgid ""
"Checks for an ASCII alphabetic character; it is equivalent to ``isupper(c) "
"or islower(c)``."
msgstr ""
msgid "Checks for a character value that fits in the 7-bit ASCII set."
msgstr ""
msgid "Checks for an ASCII whitespace character; space or horizontal tab."
msgstr ""
msgid ""
"Checks for an ASCII control character (in the range 0x00 to 0x1f or 0x7f)."
msgstr ""
msgid ""
"Checks for an ASCII decimal digit, ``'0'`` through ``'9'``. This is "
"equivalent to ``c in string.digits``."
msgstr ""
msgid "Checks for ASCII any printable character except space."
msgstr ""
msgid "Checks for an ASCII lower-case character."
msgstr ""
msgid "Checks for any ASCII printable character including space."
msgstr ""
msgid ""
"Checks for any printable ASCII character which is not a space or an "
"alphanumeric character."
msgstr ""
msgid ""
"Checks for ASCII white-space characters; space, line feed, carriage return, "
"form feed, horizontal tab, vertical tab."
msgstr ""
msgid "Checks for an ASCII uppercase letter."
msgstr ""
msgid ""
"Checks for an ASCII hexadecimal digit. This is equivalent to ``c in string."
"hexdigits``."
msgstr ""
msgid "Checks for an ASCII control character (ordinal values 0 to 31)."
msgstr ""
msgid "Checks for a non-ASCII character (ordinal values 0x80 and above)."
msgstr ""
msgid ""
"These functions accept either integers or single-character strings; when the "
"argument is a string, it is first converted using the built-in function :"
"func:`ord`."
msgstr ""
msgid ""
"Note that all these functions check ordinal bit values derived from the "
"character of the string you pass in; they do not actually know anything "
"about the host machine's character encoding."
msgstr ""
msgid ""
"The following two functions take either a single-character string or integer "
"byte value; they return a value of the same type."
msgstr ""
msgid "Return the ASCII value corresponding to the low 7 bits of *c*."
msgstr ""
msgid ""
"Return the control character corresponding to the given character (the "
"character bit value is bitwise-anded with 0x1f)."
msgstr ""
msgid ""
"Return the 8-bit character corresponding to the given ASCII character (the "
"character bit value is bitwise-ored with 0x80)."
msgstr ""
msgid ""
"The following function takes either a single-character string or integer "
"value; it returns a string."
msgstr ""
msgid ""
"Return a string representation of the ASCII character *c*. If *c* is "
"printable, this string is the character itself. If the character is a "
"control character (0x00--0x1f) the string consists of a caret (``'^'``) "
"followed by the corresponding uppercase letter. If the character is an ASCII "
"delete (0x7f) the string is ``'^?'``. If the character has its meta bit "
"(0x80) set, the meta bit is stripped, the preceding rules applied, and "
"``'!'`` prepended to the result."
msgstr ""
msgid ""
"A 33-element string array that contains the ASCII mnemonics for the thirty-"
"two ASCII control characters from 0 (NUL) to 0x1f (US), in order, plus the "
"mnemonic ``SP`` for the space character."
msgstr ""
msgid "^ (caret)"
msgstr ""
msgid "in curses module"
msgstr ""
msgid "! (exclamation)"
msgstr ""