python-docs-fr/extending/index.po

134 lines
6.1 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# 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"
2018-07-21 08:59:44 +00:00
"PO-Revision-Date: 2018-07-04 11:38+0200\n"
2017-08-11 17:15:07 +00:00
"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"
2017-11-22 09:55:22 +00:00
"X-Generator: Poedit 2.0.4\n"
2016-10-30 09:46:26 +00:00
#: extending/index.rst:5
2016-10-30 09:46:26 +00:00
msgid "Extending and Embedding the Python Interpreter"
2017-11-22 09:55:22 +00:00
msgstr "Extension et intégration de l'interpréteur Python"
2016-10-30 09:46:26 +00:00
#: extending/index.rst:7
2016-10-30 09:46:26 +00:00
msgid ""
"This document describes how to write modules in C or C++ to extend the "
"Python interpreter with new modules. Those modules can not only define new "
"functions but also new object types and their methods. The document also "
"describes how to embed the Python interpreter in another application, for "
"use as an extension language. Finally, it shows how to compile and link "
"extension modules so that they can be loaded dynamically (at run time) into "
"the interpreter, if the underlying operating system supports this feature."
msgstr ""
2017-11-22 09:55:22 +00:00
"Ce document décrit comment écrire des modules en C ou C++ pour étendre "
"l'interpréteur Python à de nouveaux modules. En plus de définir de nouvelles "
"fonctions, ces modules peuvent définir de nouveaux types d'objets ainsi que "
"leur méthodes. Ce document explique aussi comment intégrer l'interpréteur "
"Python dans une autre application, pour être utilisé comme langage "
"d'extension. Enfin, ce document montre comment compiler et lier les modules "
"d'extension pour qu'ils puissent être chargés dynamiquement (à l'exécution) "
"dans l'interpréteur, si le système d'exploitation sous-jacent supporte cette "
"fonctionnalité."
2016-10-30 09:46:26 +00:00
#: extending/index.rst:15
2016-10-30 09:46:26 +00:00
msgid ""
"This document assumes basic knowledge about Python. For an informal "
"introduction to the language, see :ref:`tutorial-index`. :ref:`reference-"
"index` gives a more formal definition of the language. :ref:`library-index` "
"documents the existing object types, functions and modules (both built-in "
"and written in Python) that give the language its wide application range."
msgstr ""
2017-11-22 09:55:22 +00:00
"Ce document présuppose que vous avez des connaissances de base sur Python. "
"Pour une introduction informelle du langage, voyez :ref:`tutorial-index`. :"
"ref:`reference-index` donne une définition plus formelle du langage. :ref:"
"`library-index` documente les objets types, fonctions et modules existants "
"(tous intégrés et écrits en Python) qui donnent au langage sa large gamme "
"d'applications."
2016-10-30 09:46:26 +00:00
#: extending/index.rst:21
2016-10-30 09:46:26 +00:00
msgid ""
"For a detailed description of the whole Python/C API, see the separate :ref:"
"`c-api-index`."
msgstr ""
2017-11-22 09:55:22 +00:00
"Pour une description dans sa totalité de l'API Python/C, voir :ref:`c-api-"
"index`."
2016-10-30 09:46:26 +00:00
#: extending/index.rst:26
2016-10-30 09:46:26 +00:00
msgid "Recommended third party tools"
2017-11-22 09:55:22 +00:00
msgstr "Les outils tiers recommandés"
2016-10-30 09:46:26 +00:00
#: extending/index.rst:28
2016-10-30 09:46:26 +00:00
msgid ""
"This guide only covers the basic tools for creating extensions provided as "
2018-04-28 22:28:01 +00:00
"part of this version of CPython. Third party tools like `Cython <http://"
"cython.org/>`_, `cffi <https://cffi.readthedocs.io>`_, `SWIG <http://www."
"swig.org>`_ and `Numba <https://numba.pydata.org/>`_ offer both simpler and "
"more sophisticated approaches to creating C and C++ extensions for Python."
2016-10-30 09:46:26 +00:00
msgstr ""
2017-11-22 09:55:22 +00:00
"Ce guide ne couvre que les outils basiques permettant de créer des "
"extensions fournies dans cette version de CPython. Les outils tiers tels que "
2018-05-08 15:15:16 +00:00
"`Cython <http://cython.org/>`_, `cffi <https://cffi.readthedocs.io>`_, `SWIG "
"<http://www.swig.org>`_ et `Numba <https://numba.pydata.org/>`_ offrent des "
"approches plus simples et plus élaborées pour créer des extensions C et C++ "
"pour Python."
2016-10-30 09:46:26 +00:00
#: extending/index.rst:40
2016-10-30 09:46:26 +00:00
msgid ""
"`Python Packaging User Guide: Binary Extensions <https://packaging.python."
2018-06-28 13:32:56 +00:00
"org/guides/packaging-binary-extensions/>`_"
2016-10-30 09:46:26 +00:00
msgstr ""
2017-11-22 09:55:22 +00:00
"`Guide d'utilisation de l'empaquetage Python : Extensions binaires <https://"
2018-07-21 08:59:44 +00:00
"packaging.python.org/guides/packaging-binary-extensions/>`_"
2016-10-30 09:46:26 +00:00
#: extending/index.rst:38
2016-10-30 09:46:26 +00:00
msgid ""
"The Python Packaging User Guide not only covers several available tools that "
"simplify the creation of binary extensions, but also discusses the various "
"reasons why creating an extension module may be desirable in the first place."
msgstr ""
2017-11-22 09:55:22 +00:00
"Le guide d'utilisation de l'empaquetage Python ne couvre pas uniquement "
"quelques outils disponibles qui simplifient la création d'extensions "
"binaires, mais aborde aussi les différentes raisons pour lesquelles créer un "
"module d'extension peut être souhaitable d'entrée."
2016-10-30 09:46:26 +00:00
#: extending/index.rst:45
2016-10-30 09:46:26 +00:00
msgid "Creating extensions without third party tools"
2017-11-22 09:55:22 +00:00
msgstr "Création d'extensions sans outils tiers"
2016-10-30 09:46:26 +00:00
#: extending/index.rst:47
2016-10-30 09:46:26 +00:00
msgid ""
"This section of the guide covers creating C and C++ extensions without "
"assistance from third party tools. It is intended primarily for creators of "
"those tools, rather than being a recommended way to create your own C "
"extensions."
msgstr ""
2017-11-22 09:55:22 +00:00
"Cette section du guide couvre la création d'extensions C et C++ sans "
"l'utilisation d'outils tiers. Cette section est destinée aux créateurs de "
"ces outils, plus que d'être une méthode recommandée pour créer votre propre "
"extension C."
2016-10-30 09:46:26 +00:00
#: extending/index.rst:63
2016-10-30 09:46:26 +00:00
msgid "Embedding the CPython runtime in a larger application"
2017-11-22 09:55:22 +00:00
msgstr "Intégrer l'interpréteur CPython dans une plus grande application"
2016-10-30 09:46:26 +00:00
#: extending/index.rst:65
2016-10-30 09:46:26 +00:00
msgid ""
"Sometimes, rather than creating an extension that runs inside the Python "
"interpreter as the main application, it is desirable to instead embed the "
"CPython runtime inside a larger application. This section covers some of the "
"details involved in doing that successfully."
msgstr ""
2017-11-22 09:55:22 +00:00
"Parfois, plutôt que de créer une extension qui s'exécute dans l'interpréteur "
"Python comme application principale, il est préférable d'intégrer "
"l'interpréteur Python dans une application plus large. Cette section donne "
"quelques informations nécessaires au succès de cette opération."