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

Skip to content

Commit 7a41f69

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent d5942b6 commit 7a41f69

22 files changed

+2493
-2318
lines changed

c-api/exceptions.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-09-29 14:12+0000\n"
14+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1616
"Last-Translator: Dmytro Kazanzhy, 2023\n"
1717
"Language-Team: Ukrainian (https://app.transifex.com/python-doc/teams/5390/uk/)\n"
@@ -1031,8 +1031,8 @@ msgstr ""
10311031
msgid ""
10321032
"Implement part of the interpreter's implementation of :keyword:`!except*`. "
10331033
"*orig* is the original exception that was caught, and *excs* is the list of "
1034-
"the exceptions that need to be raised. This list contains the the unhandled "
1035-
"part of *orig*, if any, as well as the exceptions that were raised from the "
1034+
"the exceptions that need to be raised. This list contains the unhandled part"
1035+
" of *orig*, if any, as well as the exceptions that were raised from the "
10361036
":keyword:`!except*` clauses (so they have a different traceback from *orig*)"
10371037
" and those that were reraised (and have the same traceback as *orig*). "
10381038
"Return the :exc:`ExceptionGroup` that needs to be reraised in the end, or "

howto/perf_profiling.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-09-22 14:13+0000\n"
14+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1515
"PO-Revision-Date: 2023-05-24 13:07+0000\n"
1616
"Last-Translator: Dmytro Kazanzhy, 2023\n"
1717
"Language-Team: Ukrainian (https://app.transifex.com/python-doc/teams/5390/uk/)\n"
@@ -116,23 +116,23 @@ msgstr ""
116116
msgid "Example, using the environment variable::"
117117
msgstr ""
118118

119-
#: ../../howto/perf_profiling.rst:169
119+
#: ../../howto/perf_profiling.rst:168
120120
msgid "Example, using the :option:`!-X` option::"
121121
msgstr ""
122122

123-
#: ../../howto/perf_profiling.rst:174
123+
#: ../../howto/perf_profiling.rst:173
124124
msgid "Example, using the :mod:`sys` APIs in file :file:`example.py`:"
125125
msgstr ""
126126

127-
#: ../../howto/perf_profiling.rst:186
127+
#: ../../howto/perf_profiling.rst:185
128128
msgid "...then::"
129129
msgstr ""
130130

131-
#: ../../howto/perf_profiling.rst:193
131+
#: ../../howto/perf_profiling.rst:192
132132
msgid "How to obtain the best results"
133133
msgstr ""
134134

135-
#: ../../howto/perf_profiling.rst:195
135+
#: ../../howto/perf_profiling.rst:194
136136
msgid ""
137137
"For best results, Python should be compiled with ``CFLAGS=\"-fno-omit-frame-"
138138
"pointer -mno-omit-leaf-frame-pointer\"`` as this allows profilers to unwind "
@@ -142,12 +142,12 @@ msgid ""
142142
"available."
143143
msgstr ""
144144

145-
#: ../../howto/perf_profiling.rst:202
145+
#: ../../howto/perf_profiling.rst:201
146146
msgid ""
147147
"You can check if your system has been compiled with this flag by running::"
148148
msgstr ""
149149

150-
#: ../../howto/perf_profiling.rst:206
150+
#: ../../howto/perf_profiling.rst:205
151151
msgid ""
152152
"If you don't see any output it means that your interpreter has not been "
153153
"compiled with frame pointers and therefore it may not be able to show Python"

library/__main__.po

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-09-15 14:13+0000\n"
14+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
1616
"Last-Translator: Dmytro Kazanzhy, 2022\n"
1717
"Language-Team: Ukrainian (https://app.transifex.com/python-doc/teams/5390/uk/)\n"
@@ -334,15 +334,11 @@ msgstr ""
334334

335335
#: ../../library/__main__.rst:241
336336
msgid ""
337-
"The contents of ``__main__.py`` typically isn't fenced with ``if __name__ =="
338-
" '__main__'`` blocks. Instead, those files are kept short, functions to "
339-
"execute from other modules. Those other modules can then be easily unit-"
340-
"tested and are properly reusable."
337+
"The content of ``__main__.py`` typically isn't fenced with an ``if __name__ "
338+
"== '__main__'`` block. Instead, those files are kept short and import "
339+
"functions to execute from other modules. Those other modules can then be "
340+
"easily unit-tested and are properly reusable."
341341
msgstr ""
342-
"Вміст ``__main__.py`` зазвичай не обмежується блоками ``if __name__ == "
343-
"'__main__''``. Натомість ці файли зберігаються короткими, функції "
344-
"виконуються з інших модулів. Ці інші модулі потім можна легко протестувати "
345-
"на модулі та належним чином повторно використовувати."
346342

347343
#: ../../library/__main__.rst:246
348344
msgid ""

library/asyncio-llapi-index.po

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-09-22 14:13+0000\n"
14+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
1616
"Last-Translator: Dmytro Kazanzhy, 2022\n"
1717
"Language-Team: Ukrainian (https://app.transifex.com/python-doc/teams/5390/uk/)\n"
@@ -1017,45 +1017,40 @@ msgid "Subprocess Protocols"
10171017
msgstr "Протоколи підпроцесів"
10181018

10191019
#: ../../library/asyncio-llapi-index.rst:487
1020-
msgid ""
1021-
"``callback`` :meth:`pipe_data_received() "
1022-
"<SubprocessProtocol.pipe_data_received>`"
1020+
msgid "``callback`` :meth:`~SubprocessProtocol.pipe_data_received`"
10231021
msgstr ""
1024-
"``зворотний виклик`` :meth:`pipe_data_received() "
1025-
"<SubprocessProtocol.pipe_data_received>`"
10261022

1027-
#: ../../library/asyncio-llapi-index.rst:489
1023+
#: ../../library/asyncio-llapi-index.rst:488
10281024
msgid ""
10291025
"Called when the child process writes data into its *stdout* or *stderr* "
10301026
"pipe."
10311027
msgstr ""
10321028
"Викликається, коли дочірній процес записує дані у свій канал *stdout* або "
10331029
"*stderr*."
10341030

1035-
#: ../../library/asyncio-llapi-index.rst:492
1036-
msgid ""
1037-
"``callback`` :meth:`pipe_connection_lost() "
1038-
"<SubprocessProtocol.pipe_connection_lost>`"
1031+
#: ../../library/asyncio-llapi-index.rst:491
1032+
msgid "``callback`` :meth:`~SubprocessProtocol.pipe_connection_lost`"
10391033
msgstr ""
1040-
"``зворотний виклик`` :meth:`pipe_connection_lost() "
1041-
"<SubprocessProtocol.pipe_connection_lost>`"
10421034

1043-
#: ../../library/asyncio-llapi-index.rst:494
1035+
#: ../../library/asyncio-llapi-index.rst:492
10441036
msgid ""
10451037
"Called when one of the pipes communicating with the child process is closed."
10461038
msgstr ""
10471039
"Викликається, коли одна з труб, що спілкуються з дочірнім процесом, закрита."
10481040

1049-
#: ../../library/asyncio-llapi-index.rst:497
1041+
#: ../../library/asyncio-llapi-index.rst:495
10501042
msgid ""
10511043
"``callback`` :meth:`process_exited() <SubprocessProtocol.process_exited>`"
10521044
msgstr ""
10531045
"``зворотний виклик`` :meth:`process_exited() "
10541046
"<SubprocessProtocol.process_exited>`"
10551047

1056-
#: ../../library/asyncio-llapi-index.rst:499
1057-
msgid "Called when the child process has exited."
1058-
msgstr "Викликається, коли дочірній процес вийшов."
1048+
#: ../../library/asyncio-llapi-index.rst:497
1049+
msgid ""
1050+
"Called when the child process has exited. It can be called before "
1051+
":meth:`~SubprocessProtocol.pipe_data_received` and "
1052+
":meth:`~SubprocessProtocol.pipe_connection_lost` methods."
1053+
msgstr ""
10591054

10601055
#: ../../library/asyncio-llapi-index.rst:503
10611056
msgid "Event Loop Policies"

library/asyncio-protocol.po

Lines changed: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-09-22 14:13+0000\n"
14+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
1616
"Last-Translator: Dmytro Kazanzhy, 2022\n"
1717
"Language-Team: Ukrainian (https://app.transifex.com/python-doc/teams/5390/uk/)\n"
@@ -1210,23 +1210,29 @@ msgstr "*fd* — цілочисельний файловий дескрипто
12101210
msgid "Called when the child process has exited."
12111211
msgstr "Викликається, коли дочірній процес завершився."
12121212

1213-
#: ../../library/asyncio-protocol.rst:713
1213+
#: ../../library/asyncio-protocol.rst:711
1214+
msgid ""
1215+
"It can be called before :meth:`~SubprocessProtocol.pipe_data_received` and "
1216+
":meth:`~SubprocessProtocol.pipe_connection_lost` methods."
1217+
msgstr ""
1218+
1219+
#: ../../library/asyncio-protocol.rst:716
12141220
msgid "Examples"
12151221
msgstr "Приклади"
12161222

1217-
#: ../../library/asyncio-protocol.rst:718
1223+
#: ../../library/asyncio-protocol.rst:721
12181224
msgid "TCP Echo Server"
12191225
msgstr "TCP Echo Server"
12201226

1221-
#: ../../library/asyncio-protocol.rst:720
1227+
#: ../../library/asyncio-protocol.rst:723
12221228
msgid ""
12231229
"Create a TCP echo server using the :meth:`loop.create_server` method, send "
12241230
"back received data, and close the connection::"
12251231
msgstr ""
12261232
"Створіть TCP-сервер ехо за допомогою методу :meth:`loop.create_server`, "
12271233
"надішліть назад отримані дані та закрийте з’єднання::"
12281234

1229-
#: ../../library/asyncio-protocol.rst:761
1235+
#: ../../library/asyncio-protocol.rst:764
12301236
msgid ""
12311237
"The :ref:`TCP echo server using streams <asyncio-tcp-echo-server-streams>` "
12321238
"example uses the high-level :func:`asyncio.start_server` function."
@@ -1235,19 +1241,19 @@ msgstr ""
12351241
"streams>` використовується функція :func:`asyncio.start_server` високого "
12361242
"рівня."
12371243

1238-
#: ../../library/asyncio-protocol.rst:767
1244+
#: ../../library/asyncio-protocol.rst:770
12391245
msgid "TCP Echo Client"
12401246
msgstr "TCP Echo Client"
12411247

1242-
#: ../../library/asyncio-protocol.rst:769
1248+
#: ../../library/asyncio-protocol.rst:772
12431249
msgid ""
12441250
"A TCP echo client using the :meth:`loop.create_connection` method, sends "
12451251
"data, and waits until the connection is closed::"
12461252
msgstr ""
12471253
"TCP-клієнт відлуння, використовуючи метод :meth:`loop.create_connection`, "
12481254
"надсилає дані та чекає, доки з’єднання не буде закрито::"
12491255

1250-
#: ../../library/asyncio-protocol.rst:817
1256+
#: ../../library/asyncio-protocol.rst:820
12511257
msgid ""
12521258
"The :ref:`TCP echo client using streams <asyncio-tcp-echo-client-streams>` "
12531259
"example uses the high-level :func:`asyncio.open_connection` function."
@@ -1256,43 +1262,43 @@ msgstr ""
12561262
"streams>` використовується функція :func:`asyncio.open_connection` високого "
12571263
"рівня."
12581264

1259-
#: ../../library/asyncio-protocol.rst:824
1265+
#: ../../library/asyncio-protocol.rst:827
12601266
msgid "UDP Echo Server"
12611267
msgstr "Сервер UDP Echo"
12621268

1263-
#: ../../library/asyncio-protocol.rst:826
1269+
#: ../../library/asyncio-protocol.rst:829
12641270
msgid ""
12651271
"A UDP echo server, using the :meth:`loop.create_datagram_endpoint` method, "
12661272
"sends back received data::"
12671273
msgstr ""
12681274
"Ехо-сервер UDP за допомогою методу :meth:`loop.create_datagram_endpoint` "
12691275
"повертає отримані дані:"
12701276

1271-
#: ../../library/asyncio-protocol.rst:868
1277+
#: ../../library/asyncio-protocol.rst:871
12721278
msgid "UDP Echo Client"
12731279
msgstr "UDP Echo Client"
12741280

1275-
#: ../../library/asyncio-protocol.rst:870
1281+
#: ../../library/asyncio-protocol.rst:873
12761282
msgid ""
12771283
"A UDP echo client, using the :meth:`loop.create_datagram_endpoint` method, "
12781284
"sends data and closes the transport when it receives the answer::"
12791285
msgstr ""
12801286
"Ехо-клієнт UDP, використовуючи метод :meth:`loop.create_datagram_endpoint`, "
12811287
"надсилає дані та закриває транспорт, коли отримує відповідь:"
12821288

1283-
#: ../../library/asyncio-protocol.rst:925
1289+
#: ../../library/asyncio-protocol.rst:928
12841290
msgid "Connecting Existing Sockets"
12851291
msgstr "Підключення наявних розеток"
12861292

1287-
#: ../../library/asyncio-protocol.rst:927
1293+
#: ../../library/asyncio-protocol.rst:930
12881294
msgid ""
12891295
"Wait until a socket receives data using the :meth:`loop.create_connection` "
12901296
"method with a protocol::"
12911297
msgstr ""
12921298
"Зачекайте, поки сокет отримає дані за допомогою методу "
12931299
":meth:`loop.create_connection` з протоколом::"
12941300

1295-
#: ../../library/asyncio-protocol.rst:981
1301+
#: ../../library/asyncio-protocol.rst:984
12961302
msgid ""
12971303
"The :ref:`watch a file descriptor for read events "
12981304
"<asyncio_example_watch_fd>` example uses the low-level "
@@ -1302,7 +1308,7 @@ msgstr ""
13021308
"<asyncio_example_watch_fd>` використовується метод низького рівня "
13031309
":meth:`loop.add_reader` для реєстрації FD."
13041310

1305-
#: ../../library/asyncio-protocol.rst:985
1311+
#: ../../library/asyncio-protocol.rst:988
13061312
msgid ""
13071313
"The :ref:`register an open socket to wait for data using streams "
13081314
"<asyncio_example_create_connection-streams>` example uses high-level streams"
@@ -1312,23 +1318,23 @@ msgstr ""
13121318
"<asyncio_example_create_connection-streams>` використовуються потоки "
13131319
"високого рівня, створені функцією :func:`open_connection` у співпрограмі."
13141320

1315-
#: ../../library/asyncio-protocol.rst:992
1321+
#: ../../library/asyncio-protocol.rst:995
13161322
msgid "loop.subprocess_exec() and SubprocessProtocol"
13171323
msgstr "loop.subprocess_exec() і SubprocessProtocol"
13181324

1319-
#: ../../library/asyncio-protocol.rst:994
1325+
#: ../../library/asyncio-protocol.rst:997
13201326
msgid ""
13211327
"An example of a subprocess protocol used to get the output of a subprocess "
13221328
"and to wait for the subprocess exit."
13231329
msgstr ""
13241330
"Приклад протоколу підпроцесу, який використовується для отримання "
13251331
"результатів підпроцесу та очікування виходу підпроцесу."
13261332

1327-
#: ../../library/asyncio-protocol.rst:997
1333+
#: ../../library/asyncio-protocol.rst:1000
13281334
msgid "The subprocess is created by the :meth:`loop.subprocess_exec` method::"
13291335
msgstr "Підпроцес створюється методом :meth:`loop.subprocess_exec`::"
13301336

1331-
#: ../../library/asyncio-protocol.rst:1043
1337+
#: ../../library/asyncio-protocol.rst:1060
13321338
msgid ""
13331339
"See also the :ref:`same example <asyncio_example_create_subprocess_exec>` "
13341340
"written using high-level APIs."

0 commit comments

Comments
 (0)