@@ -6,14 +6,14 @@ msgstr ""
6
6
"Project-Id-Version : Python 3\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
8
"POT-Creation-Date : 2020-02-04 10:00+0100\n "
9
- "PO-Revision-Date : 2019-10-31 15:33 +0100\n "
9
+ "PO-Revision-Date : 2020-03-28 16:08 +0100\n "
10
10
"
Last-Translator :
Loc Cosnier <[email protected] >\n "
11
11
"
Language-Team :
FRENCH <[email protected] >\n "
12
12
"Language : fr\n "
13
13
"MIME-Version : 1.0\n "
14
14
"Content-Type : text/plain; charset=UTF-8\n "
15
15
"Content-Transfer-Encoding : 8bit\n "
16
- "X-Generator : Poedit 2.2.1 \n "
16
+ "X-Generator : Poedit 2.0.6 \n "
17
17
18
18
#: ../Doc/howto/pyporting.rst:5
19
19
msgid "Porting Python 2 Code to Python 3"
@@ -118,9 +118,9 @@ msgid ""
118
118
"Use caniusepython3_ to find out which of your dependencies are blocking your "
119
119
"use of Python 3 (``pip install caniusepython3``)"
120
120
msgstr ""
121
- "Utiliser caniusepython3_ pour déterminer quelles sont, parmi les dépendances "
122
- "que vous utilisez, celles qui bloquent votre utilisation de Python 3 (``pip "
123
- "install caniusepython3``)"
121
+ "Utiliser `caniusepython3`_ pour déterminer quelles sont, parmi les "
122
+ "dépendances que vous utilisez, celles qui bloquent votre utilisation de "
123
+ "Python 3 (``pip install caniusepython3``)"
124
124
125
125
#: ../Doc/howto/pyporting.rst:41
126
126
msgid ""
@@ -290,7 +290,6 @@ msgstr ""
290
290
"py_ est recommandé."
291
291
292
292
#: ../Doc/howto/pyporting.rst:118
293
- #, fuzzy
294
293
msgid ""
295
294
"Once you have your code well-tested you are ready to begin porting your code "
296
295
"to Python 3! But to fully understand how your code is going to change and "
@@ -305,9 +304,10 @@ msgstr ""
305
304
"changer et à quoi s'intéresser spécifiquement pendant que vous codez, vous "
306
305
"aurez sûrement envie de découvrir quels sont les changements introduits par "
307
306
"Python 3 par rapport à Python 2. Pour atteindre cet objectif, les deux "
308
- "meilleurs moyens sont de lire le document `\" What's New\" `_ de chaque "
309
- "version de Python 3 et le livre `Porting to Python 3`_ (gratuit en ligne). "
310
- "Il y a également une `cheat sheet`_ très pratique du projet Python-Future."
307
+ "meilleurs moyens sont de lire le document :ref:`whatsnew-index` de chaque "
308
+ "version de Python 3 et le livre `Porting to Python 3`_ (gratuit en ligne, en "
309
+ "anglais). Il y a également une « anti-sèche » (`cheat sheet`_, ressource en "
310
+ "anglais) très pratique du projet Python-Future."
311
311
312
312
#: ../Doc/howto/pyporting.rst:128
313
313
msgid "Update your code"
@@ -744,18 +744,17 @@ msgstr ""
744
744
"voici un exemple."
745
745
746
746
#: ../Doc/howto/pyporting.rst:305
747
- #, fuzzy
748
747
msgid ""
749
748
"Let's pretend that you need access to a feature of :mod:`importlib` that is "
750
749
"available in Python's standard library since Python 3.3 and available for "
751
750
"Python 2 through importlib2_ on PyPI. You might be tempted to write code to "
752
751
"access e.g. the :mod:`importlib.abc` module by doing the following::"
753
752
msgstr ""
754
- "Supposons que vous avez besoin d'accéder à une fonctionnalité de importlib_ "
755
- "qui n' est disponible dans la bibliothèque standard de Python que depuis la "
756
- "version 3.3 et est disponible pour Python 2 via le module importlib2_ sur "
757
- "PyPI. Vous pourriez être tenté d'écrire un code qui accède, par exemple, au "
758
- "module `` importlib.abc` ` avec l'approche suivante ::"
753
+ "Supposons que vous avez besoin d'accéder à une fonctionnalité de :mod: "
754
+ "`importlib` qui est disponible dans la bibliothèque standard de Python "
755
+ "depuis la version 3.3, dans celle de Python 2 via le module importlib2_ sur "
756
+ "* PyPI* . Vous pourriez être tenté d'écrire un code qui accède, par exemple, "
757
+ "au module :mod:` importlib.abc` avec l'approche suivante ::"
759
758
760
759
#: ../Doc/howto/pyporting.rst:317
761
760
msgid ""
@@ -850,7 +849,7 @@ msgid ""
850
849
msgstr ""
851
850
"**Après** avoir rendu votre code compatible avec Python 3, vous devez "
852
851
"commencer à vous intéresser au portage de vos dépendances. Le projet "
853
- "caniusepython3_ a été créé afin de vous aider à déterminer quels projets "
852
+ "`caniusepython3`_ a été créé afin de vous aider à déterminer quels projets "
854
853
"sont bloquants dans votre support de Python 3, directement ou indirectement. "
855
854
"Il existe un outil en ligne de commande ainsi qu'une interface web : https://"
856
855
"caniusepython3.com."
@@ -927,7 +926,7 @@ msgstr ""
927
926
"différents renvoient simplement ``False`` mais si vous avez fait une erreur "
928
927
"dans votre séparation de la gestion texte/données binaires ou votre indiçage "
929
928
"des *bytes*, vous ne trouverez pas facilement le bogue. Ce drapeau lève une "
930
- "exception lorsque ce genre de comparaison apparaît, facilitant ainsi sa "
929
+ "exception lorsque ce genre de comparaison apparaît, facilitant ainsi son "
931
930
"identification et sa localisation."
932
931
933
932
#: ../Doc/howto/pyporting.rst:410
0 commit comments