Skip to content

Commit c0b8ce8

Browse files
GitHub Action's update-translation jobrffontenelle
andcommitted
Update translation from Transifex
Co-Authored-By: Rafael Fontenelle <rffontenelle@gmail.com>
1 parent b6ad0b0 commit c0b8ce8

19 files changed

+5216
-5
lines changed

c-api/unicode.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ msgid ":attr:`%li`"
542542
msgstr ""
543543

544544
msgid "Equivalent to ``printf(\"%li\")``. [1]_"
545-
msgstr ""
545+
msgstr "Еквівалент ``printf(\"%li\")``. [1]_"
546546

547547
msgid ":attr:`%lu`"
548548
msgstr ""
@@ -560,13 +560,13 @@ msgid "long long"
560560
msgstr ""
561561

562562
msgid "Equivalent to ``printf(\"%lld\")``. [1]_"
563-
msgstr ""
563+
msgstr "Еквівалент ``printf(\"%lld\")``. [1]_"
564564

565565
msgid ":attr:`%lli`"
566566
msgstr ""
567567

568568
msgid "Equivalent to ``printf(\"%lli\")``. [1]_"
569-
msgstr ""
569+
msgstr "Еквівалент ``printf(\"%lli\")``. [1]_"
570570

571571
msgid ":attr:`%llu`"
572572
msgstr ""
@@ -575,7 +575,7 @@ msgid "unsigned long long"
575575
msgstr "unsigned long long"
576576

577577
msgid "Equivalent to ``printf(\"%llu\")``. [1]_"
578-
msgstr ""
578+
msgstr "Еквівалент ``printf(\"%llu\")``. [1]_"
579579

580580
msgid ":attr:`%zd`"
581581
msgstr ""
@@ -590,7 +590,7 @@ msgid ":attr:`%zi`"
590590
msgstr ""
591591

592592
msgid "Equivalent to ``printf(\"%zi\")``. [1]_"
593-
msgstr ""
593+
msgstr "Еквівалент ``printf(\"%zi\")``. [1]_"
594594

595595
msgid ":attr:`%zu`"
596596
msgstr ""

library/aifc.po

Lines changed: 244 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,244 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2025, 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>, 2025
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: 2025-07-11 16:41+0000\n"
15+
"PO-Revision-Date: 2023-05-24 02:12+0000\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\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 ":mod:`aifc` --- Read and write AIFF and AIFC files"
27+
msgstr ""
28+
29+
msgid "**Source code:** :source:`Lib/aifc.py`"
30+
msgstr ""
31+
32+
msgid ""
33+
"The :mod:`aifc` module is deprecated (see :pep:`PEP 594 <594#aifc>` for "
34+
"details)."
35+
msgstr ""
36+
37+
msgid ""
38+
"This module provides support for reading and writing AIFF and AIFF-C files. "
39+
"AIFF is Audio Interchange File Format, a format for storing digital audio "
40+
"samples in a file. AIFF-C is a newer version of the format that includes "
41+
"the ability to compress the audio data."
42+
msgstr ""
43+
44+
msgid ""
45+
"Audio files have a number of parameters that describe the audio data. The "
46+
"sampling rate or frame rate is the number of times per second the sound is "
47+
"sampled. The number of channels indicate if the audio is mono, stereo, or "
48+
"quadro. Each frame consists of one sample per channel. The sample size is "
49+
"the size in bytes of each sample. Thus a frame consists of ``nchannels * "
50+
"samplesize`` bytes, and a second's worth of audio consists of ``nchannels * "
51+
"samplesize * framerate`` bytes."
52+
msgstr ""
53+
54+
msgid ""
55+
"For example, CD quality audio has a sample size of two bytes (16 bits), uses "
56+
"two channels (stereo) and has a frame rate of 44,100 frames/second. This "
57+
"gives a frame size of 4 bytes (2\\*2), and a second's worth occupies "
58+
"2\\*2\\*44100 bytes (176,400 bytes)."
59+
msgstr ""
60+
61+
msgid "Module :mod:`aifc` defines the following function:"
62+
msgstr ""
63+
64+
msgid ""
65+
"Open an AIFF or AIFF-C file and return an object instance with methods that "
66+
"are described below. The argument *file* is either a string naming a file "
67+
"or a :term:`file object`. *mode* must be ``'r'`` or ``'rb'`` when the file "
68+
"must be opened for reading, or ``'w'`` or ``'wb'`` when the file must be "
69+
"opened for writing. If omitted, ``file.mode`` is used if it exists, "
70+
"otherwise ``'rb'`` is used. When used for writing, the file object should "
71+
"be seekable, unless you know ahead of time how many samples you are going to "
72+
"write in total and use :meth:`writeframesraw` and :meth:`setnframes`. The :"
73+
"func:`.open` function may be used in a :keyword:`with` statement. When the :"
74+
"keyword:`!with` block completes, the :meth:`~aifc.close` method is called."
75+
msgstr ""
76+
77+
msgid "Support for the :keyword:`with` statement was added."
78+
msgstr ""
79+
80+
msgid ""
81+
"Objects returned by :func:`.open` when a file is opened for reading have the "
82+
"following methods:"
83+
msgstr ""
84+
85+
msgid "Return the number of audio channels (1 for mono, 2 for stereo)."
86+
msgstr ""
87+
88+
msgid "Return the size in bytes of individual samples."
89+
msgstr ""
90+
91+
msgid "Return the sampling rate (number of audio frames per second)."
92+
msgstr ""
93+
94+
msgid "Return the number of audio frames in the file."
95+
msgstr ""
96+
97+
msgid ""
98+
"Return a bytes array of length 4 describing the type of compression used in "
99+
"the audio file. For AIFF files, the returned value is ``b'NONE'``."
100+
msgstr ""
101+
102+
msgid ""
103+
"Return a bytes array convertible to a human-readable description of the type "
104+
"of compression used in the audio file. For AIFF files, the returned value "
105+
"is ``b'not compressed'``."
106+
msgstr ""
107+
108+
msgid ""
109+
"Returns a :func:`~collections.namedtuple` ``(nchannels, sampwidth, "
110+
"framerate, nframes, comptype, compname)``, equivalent to output of the :meth:"
111+
"`get\\*` methods."
112+
msgstr ""
113+
114+
msgid ""
115+
"Return a list of markers in the audio file. A marker consists of a tuple of "
116+
"three elements. The first is the mark ID (an integer), the second is the "
117+
"mark position in frames from the beginning of the data (an integer), the "
118+
"third is the name of the mark (a string)."
119+
msgstr ""
120+
121+
msgid ""
122+
"Return the tuple as described in :meth:`getmarkers` for the mark with the "
123+
"given *id*."
124+
msgstr ""
125+
126+
msgid ""
127+
"Read and return the next *nframes* frames from the audio file. The returned "
128+
"data is a string containing for each frame the uncompressed samples of all "
129+
"channels."
130+
msgstr ""
131+
132+
msgid ""
133+
"Rewind the read pointer. The next :meth:`readframes` will start from the "
134+
"beginning."
135+
msgstr ""
136+
137+
msgid "Seek to the specified frame number."
138+
msgstr ""
139+
140+
msgid "Return the current frame number."
141+
msgstr ""
142+
143+
msgid ""
144+
"Close the AIFF file. After calling this method, the object can no longer be "
145+
"used."
146+
msgstr ""
147+
148+
msgid ""
149+
"Objects returned by :func:`.open` when a file is opened for writing have all "
150+
"the above methods, except for :meth:`readframes` and :meth:`setpos`. In "
151+
"addition the following methods exist. The :meth:`get\\*` methods can only "
152+
"be called after the corresponding :meth:`set\\*` methods have been called. "
153+
"Before the first :meth:`writeframes` or :meth:`writeframesraw`, all "
154+
"parameters except for the number of frames must be filled in."
155+
msgstr ""
156+
157+
msgid ""
158+
"Create an AIFF file. The default is that an AIFF-C file is created, unless "
159+
"the name of the file ends in ``'.aiff'`` in which case the default is an "
160+
"AIFF file."
161+
msgstr ""
162+
163+
msgid ""
164+
"Create an AIFF-C file. The default is that an AIFF-C file is created, "
165+
"unless the name of the file ends in ``'.aiff'`` in which case the default is "
166+
"an AIFF file."
167+
msgstr ""
168+
169+
msgid "Specify the number of channels in the audio file."
170+
msgstr ""
171+
172+
msgid "Specify the size in bytes of audio samples."
173+
msgstr ""
174+
175+
msgid "Specify the sampling frequency in frames per second."
176+
msgstr ""
177+
178+
msgid ""
179+
"Specify the number of frames that are to be written to the audio file. If "
180+
"this parameter is not set, or not set correctly, the file needs to support "
181+
"seeking."
182+
msgstr ""
183+
184+
msgid ""
185+
"Specify the compression type. If not specified, the audio data will not be "
186+
"compressed. In AIFF files, compression is not possible. The name parameter "
187+
"should be a human-readable description of the compression type as a bytes "
188+
"array, the type parameter should be a bytes array of length 4. Currently "
189+
"the following compression types are supported: ``b'NONE'``, ``b'ULAW'``, "
190+
"``b'ALAW'``, ``b'G722'``."
191+
msgstr ""
192+
193+
msgid ""
194+
"Set all the above parameters at once. The argument is a tuple consisting of "
195+
"the various parameters. This means that it is possible to use the result of "
196+
"a :meth:`getparams` call as argument to :meth:`setparams`."
197+
msgstr ""
198+
199+
msgid ""
200+
"Add a mark with the given id (larger than 0), and the given name at the "
201+
"given position. This method can be called at any time before :meth:`close`."
202+
msgstr ""
203+
204+
msgid ""
205+
"Return the current write position in the output file. Useful in combination "
206+
"with :meth:`setmark`."
207+
msgstr ""
208+
209+
msgid ""
210+
"Write data to the output file. This method can only be called after the "
211+
"audio file parameters have been set."
212+
msgstr ""
213+
214+
msgid "Any :term:`bytes-like object` is now accepted."
215+
msgstr ""
216+
217+
msgid ""
218+
"Like :meth:`writeframes`, except that the header of the audio file is not "
219+
"updated."
220+
msgstr ""
221+
222+
msgid ""
223+
"Close the AIFF file. The header of the file is updated to reflect the "
224+
"actual size of the audio data. After calling this method, the object can no "
225+
"longer be used."
226+
msgstr ""
227+
228+
msgid "Audio Interchange File Format"
229+
msgstr "Audio Interchange File Format"
230+
231+
msgid "AIFF"
232+
msgstr "AIFF"
233+
234+
msgid "AIFF-C"
235+
msgstr "AIFF-C"
236+
237+
msgid "u-LAW"
238+
msgstr "u-LAW"
239+
240+
msgid "A-LAW"
241+
msgstr "A-LAW"
242+
243+
msgid "G.722"
244+
msgstr ""

0 commit comments

Comments
 (0)