8000 Translated library/asyncio.po (#453) · python/python-docs-fr@0279739 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0279739

Browse files
awecxJulienPalard
authored andcommitted
Translated library/asyncio.po (#453)
1 parent 9bf6a0d commit 0279739

File tree

2 files changed

+37
-10
lines changed

2 files changed

+37
-10
lines changed

dict

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ c-
88
C-
99
C99
1010
Catucci
11+
cadriciel
12+
cadriciels
1113
concourance
1214
coroutine
1315
coroutine

library/asyncio.po

Lines changed: 35 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,73 +6,90 @@ msgstr ""
66
"Project-Id-Version: Python 3.6\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2018-10-12 18:59+0200\n"
9-
"PO-Revision-Date: 2018-10-13 09:27+0200\n"
10-
"Last-Translator: \n"
9+
"PO-Revision-Date: 2018-12-16 16:19+0100\n"
10+
"Last-Translator: Antoine Wecxsteen\n"
1111
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"
1414
"Content-Type: text/plain; charset=UTF-8\n"
1515
"Content-Transfer-Encoding: 8bit\n"
16-
"X-Generator: Poedit 2.0.9\n"
16+
"X-Generator: Poedit 2.0.6\n"
1717

1818
#: ../Doc/library/asyncio.rst:2
1919
msgid ":mod:`asyncio` --- Asynchronous I/O"
2020
msgstr ":mod:`asyncio` — Entrées/Sorties asynchrones"
2121

2222
#: ../Doc/library/asyncio.rst:None
2323
msgid "Hello World!"
24-
msgstr ""
24+
msgstr "Hello World !"
2525

2626
#: ../Doc/library/asyncio.rst:23
2727
msgid ""
2828
"asyncio is a library to write **concurrent** code using the **async/await** "
2929
"syntax."
3030
msgstr ""
31+
"`asyncio` est une bibliothèque permettant de faire de la programmation "
32+
"asynchrone en utilisant la syntaxe *async*/*await*."
3133

3234
#: ../Doc/library/asyncio.rst:26
3335
msgid ""
3436
"asyncio is used as a foundation for multiple Python asynchronous frameworks "
3537
"that provide high-performance network and web-servers, database connection "
3638
"libraries, distributed task queues, etc."
3739
msgstr ""
40+
"`asyncio` constitue la base de nombreux cadriciels (*frameworks*) Python "
41+
"asynchrones qui fournissent des utilitaires réseau et des serveurs web "
42+
"performants, des bibliothèques de connexion à des bases de données, des "
43+
"files d'exécution distribuées, etc."
3844

3945
#: ../Doc/library/asyncio.rst:30
4046
msgid ""
4147
"asyncio is often a perfect fit for IO-bound and high-level **structured** "
4248
"network code."
4349
msgstr ""
50+
"`asyncio` est souvent le bon choix pour écrire du code réseau de haut-niveau "
51+
"et tributaire des entrées-sorties (*IO-bound*)."
4452

4553
#: ../Doc/library/asyncio.rst:33
4654
msgid "asyncio provides a set of **high-level** APIs to:"
4755
msgstr ""
56+
"`asyncio` fournit des interfaces de programmation **haut-niveau** pour :"
4857

4958
#: ../Doc/library/asyncio.rst:35
5059
msgid ""
5160
":ref:`run Python coroutines <coroutine>` concurrently and have full control "
5261
"over their execution;"
5362
msgstr ""
63+
":ref:`exécuter des coroutines Python <coroutine>` de manière concurrente et "
64+
"d'avoir le contrôle total sur leur exécution ;"
5465

5566
#: ../Doc/library/asyncio.rst:38
5667
msgid "perform :ref:`network IO and IPC <asyncio-streams>`;"
5768
msgstr ""
69+
"effectuer :ref:`des entrées/sorties réseau et de la communication inter-"
70+
"processus <asyncio-streams>` ;"
5871

5972
#: ../Doc/library/asyncio.rst:40
6073
msgid "control :ref:`subprocesses <asyncio-subprocess>`;"
61-
msgstr ""
74+
msgstr "contrôler des :ref:`sous-processus <asyncio-subprocess>` ;"
6275

6376
#: ../Doc/library/asyncio.rst:42
6477
msgid "distribute tasks via :ref:`queues <asyncio-queues>`;"
65-
msgstr ""
78+
msgstr "distribuer des tâches avec des :ref:`queues <asyncio-queues>` ;"
6679

6780
#: ../Doc/library/asyncio.rst:44
6881
msgid ":ref:`synchronize <asyncio-sync>` concurrent code;"
6982
msgstr ""
83+
":ref:`synchroniser <asyncio-sync>` du code s'exécutant de manière "
84+
"concurrente ;"
7085

7186
#: ../Doc/library/asyncio.rst:46
7287
msgid ""
7388
"Additionally, there are **low-level** APIs for *library and framework "
7489
"developers* to:"
7590
msgstr ""
91+
"En plus, il existe des bibliothèques de **bas-niveau** pour que les "
92+
"*développeurs de bibliothèques et de frameworks* puissent :"
7693

7794
#: ../Doc/library/asyncio.rst:49
7895
msgid ""
@@ -81,34 +98,42 @@ msgid ""
8198
"`subprocesses <loop.subprocess_exec>`, handling :meth:`OS signals <loop."
8299
"add_signal_handler>`, etc;"
83100
msgstr ""
101+
"créer et gérer des :ref:`boucles d'événements <asyncio-event-loop>`, qui "
102+
"fournissent des bibliothèques asynchrones de :meth:`réseau <loop."
103+
"create_server>`, d'exécution de :meth:`subprocesses <loop.subprocess_exec>`, "
104+
"de gestion de :meth:`signaux système <loop.add_signal_handler>`, etc ;"
84105

85106
#: ../Doc/library/asyncio.rst:54
86107
msgid ""
87108
"implement efficient protocols using :ref:`transports <asyncio-transports-"
88109
"protocols>`;"
89110
msgstr ""
111+
"implémenter des protocoles efficaces à l'aide de :ref:`transports <asyncio-"
112+
"transports-protocols>` ;"
90113

91114
#: ../Doc/library/asyncio.rst:57
92115
msgid ""
93116
":ref:`bridge <asyncio-futures>` callback-based libraries and code with async/"
94117
"await syntax."
95118
msgstr ""
119+
":ref:`lier <asyncio-futures>` des bibliothèques basées sur les fonctions de "
120+
"rappel et développer avec la syntaxe *async*/*await*."
96121

97122
#: ../Doc/library/asyncio.rst:65
98123
msgid "Reference"
99-
msgstr "Référence"
124+
msgstr "Sommaire"
100125

101126
#: ../Doc/library/asyncio.rst:66
102127
msgid "High-level APIs"
103-
msgstr ""
128+
msgstr "Bibliothèques de haut-niveau"
104129

105130
#: ../Doc/library/asyncio.rst:77
106131
msgid "Low-level APIs"
107-
msgstr ""
132+
msgstr "Bibliothèques de bas-niveau"
108133

109134
#: ../Doc/library/asyncio.rst:87
110135
msgid "Guides and Tutorials"
111-
msgstr ""
136+
msgstr "Guides et tutoriels"
112137

113138
#~ msgid "**Source code:** :source:`Lib/asyncio/`"
114139
#~ msgstr "**Code source :** :source:`Lib/asyncio/`"

0 commit comments

Comments
 (0)
0