1
0
Fork 0
python-docs-fr/howto/cporting.po

59 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
2020-09-11 07:11:46 +00:00
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
"PO-Revision-Date: 2021-04-27 15:29+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
2019-07-18 18:19:46 +00:00
"X-Generator: Poedit 2.2.3\n"
2016-10-30 09:46:26 +00:00
#: howto/cporting.rst:7
2016-10-30 09:46:26 +00:00
msgid "Porting Extension Modules to Python 3"
2019-07-18 18:19:46 +00:00
msgstr "Portage des modules d'extension vers Python 3"
2016-10-30 09:46:26 +00:00
#: howto/cporting.rst:9
2016-10-30 09:46:26 +00:00
msgid ""
2019-09-04 09:35:23 +00:00
"We recommend the following resources for porting extension modules to Python "
"3:"
2016-10-30 09:46:26 +00:00
msgstr ""
"Nous recommandons les ressources suivantes pour migrer les modules "
"d'extensions vers Python 3 :"
2019-09-04 09:35:23 +00:00
#: howto/cporting.rst:11
2016-10-30 09:46:26 +00:00
msgid ""
2019-09-04 09:35:23 +00:00
"The `Migrating C extensions`_ chapter from *Supporting Python 3: An in-depth "
"guide*, a book on moving from Python 2 to Python 3 in general, guides the "
"reader through porting an extension module."
2016-10-30 09:46:26 +00:00
msgstr ""
"Le chapitre `Migrating C extension`_ du livre *Supporting Python 3: An in-"
"depth guide* (un livre sur le portage de Python 2 à Python 3) guide le "
"lecteur souhaitant porter un module d'extension."
2016-10-30 09:46:26 +00:00
#: howto/cporting.rst:15
2016-10-30 09:46:26 +00:00
msgid ""
2019-09-04 09:35:23 +00:00
"The `Porting guide`_ from the *py3c* project provides opinionated "
"suggestions with supporting code."
2016-10-30 09:46:26 +00:00
msgstr ""
"Le `Porting guide`_ du projet *py3c* fournit des suggestions argumentées "
"avec le code correspondant."
2016-10-30 09:46:26 +00:00
#: howto/cporting.rst:17
2016-10-30 09:46:26 +00:00
msgid ""
2019-09-04 09:35:23 +00:00
"The `Cython`_ and `CFFI`_ libraries offer abstractions over Python's C API. "
"Extensions generally need to be re-written to use one of them, but the "
"library then handles differences between various Python versions and "
"implementations."
2016-10-30 09:46:26 +00:00
msgstr ""
"Les bibliothèques `Cython`_ et `CFFI`_ fournissent des abstractions de l'API "
"C de Python. Les extensions ont généralement besoin d'être réécrites pour "
"profiter de ces bibliothèques, mais elles prennent en charge les différences "
"entre versions et implémentations de Python."