fin de traduction tutorial/inputouput.po (#951)

* modif inputouput 2 lignes

Co-authored-by: Vincent Poulailleau <vpoulailleau@gmail.com>
Co-authored-by: Mathieu Dupuy <deronnax@gmail.com>
This commit is contained in:
oboudou 2020-03-29 12:29:10 +02:00 committed by GitHub
parent 2e559a4d79
commit 9b0632c562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,14 +6,14 @@ msgstr ""
"Project-Id-Version: Python 3\n" "Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-10-09 17:54+0200\n" "POT-Creation-Date: 2019-10-09 17:54+0200\n"
"PO-Revision-Date: 2019-01-03 17:12+0100\n" "PO-Revision-Date: 2019-11-01 15:16+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n" "Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n" "Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.1.1\n" "X-Generator: Poedit 2.2.4\n"
#: ../Doc/tutorial/inputoutput.rst:5 #: ../Doc/tutorial/inputoutput.rst:5
msgid "Input and Output" msgid "Input and Output"
@ -466,7 +466,6 @@ msgstr ""
"``f`` a déjà été créé." "``f`` a déjà été créé."
#: ../Doc/tutorial/inputoutput.rst:357 #: ../Doc/tutorial/inputoutput.rst:357
#, fuzzy
msgid "" msgid ""
"To read a file's contents, call ``f.read(size)``, which reads some quantity " "To read a file's contents, call ``f.read(size)``, which reads some quantity "
"of data and returns it as a string (in text mode) or bytes object (in binary " "of data and returns it as a string (in text mode) or bytes object (in binary "
@ -477,14 +476,15 @@ msgid ""
"binary mode) are read and returned. If the end of the file has been reached, " "binary mode) are read and returned. If the end of the file has been reached, "
"``f.read()`` will return an empty string (``''``). ::" "``f.read()`` will return an empty string (``''``). ::"
msgstr "" msgstr ""
"Pour lire le contenu d'un fichier, appelez ``f.read(taille)`` : elle lit une " "Pour lire le contenu d'un fichier, appelez ``f.read(taille)``, cette "
"certaine quantité de données et les donne sous la forme d'une chaîne (en " "dernière lit une certaine quantité de données et la renvoie sous forme de "
"mode texte) ou dans un objet *bytes* (en mode binaire). *taille* est un " "chaîne (en mode texte) ou d'objet *bytes* (en mode binaire). *taille* est un "
"argument numérique optionnel. Quand *taille* est omis ou négatif, le contenu " "argument numérique facultatif. Lorsque *taille* est omis ou négatif, la "
"entier du fichier est lu et donné, c'est votre problème si le fichier est " "totalité du contenu du fichier sera lue et retournée ; c'est votre problème "
"deux fois plus gros que la mémoire de votre machine. Sinon, un maximum de " "si le fichier est deux fois plus grand que la mémoire de votre machine. "
"*taille* octets sont lus et donnés. Lorsque la fin du fichier est atteinte, " "Sinon, au maximum *taille* caractères (en mode texte) ou *taille* octets (en "
"``f.read()`` renvoie une chaîne vide (``''``). ::" "mode binaire) sont lus et renvoyés. Si la fin du fichier est atteinte, ``f."
"read()`` renvoie une chaîne vide (``''``). ::"
#: ../Doc/tutorial/inputoutput.rst:371 #: ../Doc/tutorial/inputoutput.rst:371
msgid "" msgid ""
@ -547,7 +547,6 @@ msgstr ""
"est ouvert en mode binaire, ou un nombre obscur en mode texte." "est ouvert en mode binaire, ou un nombre obscur en mode texte."
#: ../Doc/tutorial/inputoutput.rst:415 #: ../Doc/tutorial/inputoutput.rst:415
#, fuzzy
msgid "" msgid ""
"To change the file object's position, use ``f.seek(offset, whence)``. The " "To change the file object's position, use ``f.seek(offset, whence)``. The "
"position is computed from adding *offset* to a reference point; the " "position is computed from adding *offset* to a reference point; the "