python-docs-fr/c-api/apiabiversion.po

211 lines
5.5 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-01-15 22:33+0100\n"
"PO-Revision-Date: 2023-03-19 18:43+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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"
#: c-api/apiabiversion.rst:7
msgid "API and ABI Versioning"
msgstr "Version des API et ABI"
#: c-api/apiabiversion.rst:9
msgid ""
"CPython exposes its version number in the following macros. Note that these "
"correspond to the version code is **built** with, not necessarily the "
"version used at **run time**."
msgstr ""
"CPython révèle son numéro de version dans les macros suivantes. À noter "
"qu'ils correspondent au code de la version **compilée** avec, pas "
"nécessairement la version utilisée à l'**exécution**."
#: c-api/apiabiversion.rst:13
msgid ""
"See :ref:`stable` for a discussion of API and ABI stability across versions."
msgstr ""
"Voir :ref:`stable` pour une discussion sur la stabilité des API et ABI entre "
"(ou en fonction) de la version."
#: c-api/apiabiversion.rst:17
msgid "The ``3`` in ``3.4.1a2``."
msgstr "Le ``3`` dans ``3.4.1a2``.)"
#: c-api/apiabiversion.rst:21
msgid "The ``4`` in ``3.4.1a2``."
msgstr "Le ``4`` dans ``3.4.1a2``."
#: c-api/apiabiversion.rst:25
msgid "The ``1`` in ``3.4.1a2``."
msgstr "Le ``1`` dans ``3.4.1a2``.)"
#: c-api/apiabiversion.rst:29
msgid ""
"The ``a`` in ``3.4.1a2``. This can be ``0xA`` for alpha, ``0xB`` for beta, "
"``0xC`` for release candidate or ``0xF`` for final."
msgstr ""
" Le ``a`` dans ``3.4.1a2``. Cela peut être ``0xA`` pour alpha, ``0xB`` pour "
"bêta, ``0xC`` pour une version candidate ou ``0xF`` pour finale)."
#: c-api/apiabiversion.rst:35
msgid "The ``2`` in ``3.4.1a2``. Zero for final releases."
msgstr "Le ``2`` dans ``3.4.1a2``. Nul pour des versions finales."
#: c-api/apiabiversion.rst:39
msgid "The Python version number encoded in a single integer."
msgstr "Le numéro de version de Python encodé en un seul entier."
#: c-api/apiabiversion.rst:41
msgid ""
"The underlying version information can be found by treating it as a 32 bit "
"number in the following manner:"
msgstr ""
"L'information sur la version sous-jacente peut être trouvée en la traitant "
"comme un nombre sous 32 bits de la manière suivante :"
#: c-api/apiabiversion.rst:45
msgid "Bytes"
msgstr "Octets"
#: c-api/apiabiversion.rst:45
msgid "Bits (big endian order)"
msgstr "Bits (ordre gros-boutiste)"
#: c-api/apiabiversion.rst:45
msgid "Meaning"
msgstr "Signification"
#: c-api/apiabiversion.rst:45
msgid "Value for ``3.4.1a2``"
msgstr "Valeur pour ``3.4.1a2``"
#: c-api/apiabiversion.rst:47
msgid "1"
msgstr "1"
#: c-api/apiabiversion.rst:47
msgid "1-8"
msgstr "1-8"
#: c-api/apiabiversion.rst:47
msgid "``PY_MAJOR_VERSION``"
msgstr "``PY_MAJOR_VERSION``"
#: c-api/apiabiversion.rst:47
msgid "``0x03``"
msgstr "``0x03``"
#: c-api/apiabiversion.rst:49
msgid "2"
msgstr "2"
#: c-api/apiabiversion.rst:49
msgid "9-16"
msgstr "9-16"
#: c-api/apiabiversion.rst:49
msgid "``PY_MINOR_VERSION``"
msgstr "``PY_MINOR_VERSION``"
#: c-api/apiabiversion.rst:49
msgid "``0x04``"
msgstr "``0x04``"
#: c-api/apiabiversion.rst:51
msgid "3"
msgstr "3"
#: c-api/apiabiversion.rst:51
msgid "17-24"
msgstr "17-24"
#: c-api/apiabiversion.rst:51
msgid "``PY_MICRO_VERSION``"
msgstr "``PY_MICRO_VERSION``"
#: c-api/apiabiversion.rst:51
msgid "``0x01``"
msgstr "``0x01``"
#: c-api/apiabiversion.rst:53
msgid "4"
msgstr "4"
#: c-api/apiabiversion.rst:53
msgid "25-28"
msgstr "25-28"
#: c-api/apiabiversion.rst:53
msgid "``PY_RELEASE_LEVEL``"
msgstr "``PY_RELEASE_LEVEL``"
#: c-api/apiabiversion.rst:53
msgid "``0xA``"
msgstr "``0xA``"
#: c-api/apiabiversion.rst:55
msgid "29-32"
msgstr "29-32"
#: c-api/apiabiversion.rst:55
msgid "``PY_RELEASE_SERIAL``"
msgstr "``PY_RELEASE_SERIAL``"
#: c-api/apiabiversion.rst:55
msgid "``0x2``"
msgstr "``0x2``"
#: c-api/apiabiversion.rst:58
msgid ""
"Thus ``3.4.1a2`` is hexversion ``0x030401a2`` and ``3.10.0`` is hexversion "
"``0x030a00f0``."
msgstr ""
"Ainsi, ``0x030401a2`` est la version en notation hexadécimale sur un entier "
"de ``3.4.1a2`` et ``0x030a00f0`` est la version en notation hexadécimale sur "
"un entier de ``3.10.0``"
#: c-api/apiabiversion.rst:61
msgid "Use this for numeric comparisons, e.g. ``#if PY_VERSION_HEX >= ...``."
msgstr ""
"Vous pouvez l'utiliser pour les comparaisons numériques, par exemple, ``#if "
"PY_VERSION_HEX >= ...``."
#: c-api/apiabiversion.rst:63
msgid "This version is also available via the symbol :data:`Py_Version`."
msgstr "Cette version est aussi disponible via le symbole :data:`Py_Version`."
#: c-api/apiabiversion.rst:67
msgid ""
"The Python runtime version number encoded in a single constant integer, with "
"the same format as the :c:macro:`PY_VERSION_HEX` macro. This contains the "
"Python version used at run time."
msgstr ""
"La version à l'exécution de Python est encodée en une constante, avec le "
"même format que la macro :c:macro:`PY_VERSION_HEX`. Cela contient la version "
"de Python utilisée lors de l'exécution."
#: c-api/apiabiversion.rst:73
msgid "All the given macros are defined in :source:`Include/patchlevel.h`."
msgstr ""
"Toutes les macros données sont définies dans :source:`Include/patchlevel.h`."
#~ msgid "``1``"
#~ msgstr "``1``"
#~ msgid "``2``"
#~ msgstr "``2``"
#~ msgid "``3``"
#~ msgstr "``3``"
#~ msgid "``4``"
#~ msgstr "``4``"