From ba3097558c593a33225d66caf074f953c63340bd Mon Sep 17 00:00:00 2001 From: Thevenel Date: Thu, 23 Feb 2023 04:05:44 +0100 Subject: [PATCH] fixed the line 177 --- c-api/apiabiversion.po | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/c-api/apiabiversion.po b/c-api/apiabiversion.po index c6922376..0a563016 100644 --- a/c-api/apiabiversion.po +++ b/c-api/apiabiversion.po @@ -19,8 +19,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 " +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 " @@ -39,15 +38,14 @@ 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``.)" +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, " +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)." @@ -160,14 +158,11 @@ msgid "``0x2``" msgstr "``0x2``" #: c-api/apiabiversion.rst:58 -#, fuzzy -msgid "" -"Thus ``3.4.1a2`` is hexversion ``0x030401a2`` and ``3.10.0`` is hexversion " +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 >= ...``." @@ -177,13 +172,12 @@ 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 " +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 durée du numéro de la version de Python encodé en un seul entier, avec " -"le même format que la macro :c:macro:`PY_VERSION_HEX`. Cela contient le numéro de " -"version de Python utilisé pour l'exécution." +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`."