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

Skip to content

Commit e207300

Browse files
Somme fuzzy in howto/pyporting.po (#1194)
* Somme fuzzy in howto/pyporting.po * Update howto/pyporting.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update howto/pyporting.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Verification * New commit * Solve merging problem * Add correction * Correct Travis errors * Corrections * Corrections * Corrections * Corrections * Corrections * Corrections * Update howto/pyporting.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update howto/pyporting.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Changé encodage en encode * Commit again, too long, change 1 translation * Corrections 0328_1609 Co-authored-by: Christophe Nanteuil <[email protected]>
1 parent 8f73437 commit e207300

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

howto/pyporting.po

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ msgstr ""
66
"Project-Id-Version: Python 3\n"
77
"Report-Msgid-Bugs-To: \n"
88
"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"
1010
"Last-Translator: Loc Cosnier <[email protected]>\n"
1111
"Language-Team: FRENCH <[email protected]>\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.2.1\n"
16+
"X-Generator: Poedit 2.0.6\n"
1717

1818
#: ../Doc/howto/pyporting.rst:5
1919
msgid "Porting Python 2 Code to Python 3"
@@ -118,9 +118,9 @@ msgid ""
118118
"Use caniusepython3_ to find out which of your dependencies are blocking your "
119119
"use of Python 3 (``pip install caniusepython3``)"
120120
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``)"
124124

125125
#: ../Doc/howto/pyporting.rst:41
126126
msgid ""
@@ -290,7 +290,6 @@ msgstr ""
290290
"py_ est recommandé."
291291

292292
#: ../Doc/howto/pyporting.rst:118
293-
#, fuzzy
294293
msgid ""
295294
"Once you have your code well-tested you are ready to begin porting your code "
296295
"to Python 3! But to fully understand how your code is going to change and "
@@ -305,9 +304,10 @@ msgstr ""
305304
"changer et à quoi s'intéresser spécifiquement pendant que vous codez, vous "
306305
"aurez sûrement envie de découvrir quels sont les changements introduits par "
307306
"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."
311311

312312
#: ../Doc/howto/pyporting.rst:128
313313
msgid "Update your code"
@@ -744,18 +744,17 @@ msgstr ""
744744
"voici un exemple."
745745

746746
#: ../Doc/howto/pyporting.rst:305
747-
#, fuzzy
748747
msgid ""
749748
"Let's pretend that you need access to a feature of :mod:`importlib` that is "
750749
"available in Python's standard library since Python 3.3 and available for "
751750
"Python 2 through importlib2_ on PyPI. You might be tempted to write code to "
752751
"access e.g. the :mod:`importlib.abc` module by doing the following::"
753752
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 ::"
759758

760759
#: ../Doc/howto/pyporting.rst:317
761760
msgid ""
@@ -850,7 +849,7 @@ msgid ""
850849
msgstr ""
851850
"**Après** avoir rendu votre code compatible avec Python 3, vous devez "
852851
"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 "
854853
"sont bloquants dans votre support de Python 3, directement ou indirectement. "
855854
"Il existe un outil en ligne de commande ainsi qu'une interface web : https://"
856855
"caniusepython3.com."
@@ -927,7 +926,7 @@ msgstr ""
927926
"différents renvoient simplement ``False`` mais si vous avez fait une erreur "
928927
"dans votre séparation de la gestion texte/données binaires ou votre indiçage "
929928
"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 "
931930
"identification et sa localisation."
932931

933932
#: ../Doc/howto/pyporting.rst:410

0 commit comments

Comments
 (0)