Traduction de faq/programming.po. (#1318)

Premier commit, principalement pour mettre en place l'environnement :).
This commit is contained in:
Samuel GIFFARD 2020-05-30 18:38:51 +09:00 committed by GitHub
parent bdb4ac9f22
commit 7aa9ee20e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -6,14 +6,14 @@ msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-23 11:38+0200\n"
"PO-Revision-Date: 2020-04-27 22:53+0200\n"
"Last-Translator: Andy Kwok <andy.kwok.work@gmail.com>\n"
"PO-Revision-Date: 2020-05-30 17:14+0900\n"
"Last-Translator: Samuel Giffard <samuel@giffard.co>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2.3\n"
"X-Generator: Poedit 2.3.1\n"
#: ../Doc/faq/programming.rst:5
msgid "Programming FAQ"
@ -2302,7 +2302,6 @@ msgstr ""
"un fichier, mais convertit toutes les données écrites en majuscules ::"
#: ../Doc/faq/programming.rst:1495
#, fuzzy
msgid ""
"Here the ``UpperOut`` class redefines the ``write()`` method to convert the "
"argument string to uppercase before calling the underlying ``self._outfile."
@ -2312,11 +2311,12 @@ msgid ""
"information about controlling attribute access."
msgstr ""
"Ici, la classe ``UpperOut`` redéfinit la méthode ``write()`` pour convertir "
"la chaîne d'argument en majuscules avant d'appeler la méthode sous-jacentes "
"``self.__outfile.write()``. Toutes les autres méthodes sont déléguées à "
"l'objet sous-jacent ``self.__outfile``. La délégation se fait par la méthode "
"``__getattr__``, consulter :ref:`the language reference <attribute-access>` "
"pour plus d'informations sur le contrôle d'accès d'attribut."
"la chaîne de caractères donnée en argument en majuscules avant d'appeler la "
"méthode sous-jacente ``self._outfile.write()``. Toutes les autres méthodes "
"sont déléguées à l'objet sous-jacent ``self._outfile``. La délégation se "
"fait par la méthode ``__getattr__``, consulter :ref:`the language reference "
"<attribute-access>` pour plus d'informations sur la personnalisation de "
"laccès aux attributs."
#: ../Doc/faq/programming.rst:1502
msgid ""