Skip to content

Commit bcc24e3

Browse files
committed
Replicating fixes on older versions.
1 parent 6f01b8d commit bcc24e3

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

c-api.po

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ msgid ""
546546
"c:type:`unsigned char`."
547547
msgstr ""
548548
"Convertit un entier Python positif ou nul en un unsigned tiny int, stocké "
549-
"dans un :ctype:`unsigned char`C."
549+
"dans un :c:type:`unsigned char` C."
550550

551551
#: ../Doc/c-api/arg.rst:158 ../Doc/c-api/arg.rst:485
552552
msgid "``B`` (integer) [unsigned char]"
@@ -558,15 +558,15 @@ msgid ""
558558
"a C :c:type:`unsigned char`."
559559
msgstr ""
560560
"Convertit un entier Python en un tiny int sans vérifier le débordement, "
561-
"stocké dans un :ctype:`unsigned char` C."
561+
"stocké dans un :c:type:`unsigned char` C."
562562

563563
#: ../Doc/c-api/arg.rst:161 ../Doc/c-api/arg.rst:479
564564
msgid "``h`` (integer) [short int]"
565565
msgstr ""
566566

567567
#: ../Doc/c-api/arg.rst:161
568568
msgid "Convert a Python integer to a C :c:type:`short int`."
569-
msgstr "Convertit un entier Python en un :ctype:`short int` C."
569+
msgstr "Convertit un entier Python en un :c:type:`short int` C."
570570

571571
#: ../Doc/c-api/arg.rst:167 ../Doc/c-api/arg.rst:488
572572
msgid "``H`` (integer) [unsigned short int]"
@@ -577,7 +577,7 @@ msgid ""
577577
"Convert a Python integer to a C :c:type:`unsigned short int`, without "
578578
"overflow checking."
579579
msgstr ""
580-
"Convertit un entier Python en un :ctype:`unsigned short int` C, sans "
580+
"Convertit un entier Python en un :c:type:`unsigned short int` C, sans "
581581
"contrôle de débordement."
582582

583583
#: ../Doc/c-api/arg.rst:170 ../Doc/c-api/arg.rst:473
@@ -586,7 +586,7 @@ msgstr ""
586586

587587
#: ../Doc/c-api/arg.rst:170
588588
msgid "Convert a Python integer to a plain C :c:type:`int`."
589-
msgstr "Convertit un entier Python en un :ctype:`int` C."
589+
msgstr "Convertit un entier Python en un :c:type:`int` C."
590590

591591
#: ../Doc/c-api/arg.rst:176
592592
msgid "``I`` (integer) [unsigned int]"
@@ -597,7 +597,7 @@ msgid ""
597597
"Convert a Python integer to a C :c:type:`unsigned int`, without overflow "
598598
"checking."
599599
msgstr ""
600-
"Convertit un entier Python en un :ctype:`unsigned int` C, sans contrôle de "
600+
"Convertit un entier Python en un :c:type:`unsigned int` C, sans contrôle de "
601601
"le débordement."
602602

603603
#: ../Doc/c-api/arg.rst:179 ../Doc/c-api/arg.rst:482
@@ -606,7 +606,7 @@ msgstr ""
606606

607607
#: ../Doc/c-api/arg.rst:179
608608
msgid "Convert a Python integer to a C :c:type:`long int`."
609-
msgstr "Convertit un entier Python en un :ctype:`long int`."
609+
msgstr "Convertit un entier Python en un :c:type:`long int`."
610610

611611
#: ../Doc/c-api/arg.rst:185
612612
msgid "``k`` (integer) [unsigned long]"
@@ -630,9 +630,9 @@ msgid ""
630630
"available on platforms that support :c:type:`long long` (or :c:type:`_int64` "
631631
"on Windows)."
632632
msgstr ""
633-
"Convertit un entier Python en un :ctype:`long long` C. Ce format est "
634-
"uniquement disponible sur les plates-formes qui prennent en charge :ctype:"
635-
"`long long` (ou :ctype:`_int64` sous Windows)."
633+
"Convertit un entier Python en un :c:type:`long long` C. Ce format est "
634+
"uniquement disponible sur les plates-formes qui prennent en charge :c:type:"
635+
"`long long` (ou :c:type:`_int64` sous Windows)."
636636

637637
#: ../Doc/c-api/arg.rst:198
638638
msgid "``K`` (integer) [unsigned PY_LONG_LONG]"
@@ -677,15 +677,15 @@ msgstr ""
677677

678678
#: ../Doc/c-api/arg.rst:210
679679
msgid "Convert a Python floating point number to a C :c:type:`float`."
680-
msgstr "Convertit un nombre flottant Python vers un :ctype:`float`."
680+
msgstr "Convertit un nombre flottant Python vers un :c:type:`float`."
681681

682682
#: ../Doc/c-api/arg.rst:213 ../Doc/c-api/arg.rst:516
683683
msgid "``d`` (float) [double]"
684684
msgstr ""
685685

686686
#: ../Doc/c-api/arg.rst:213
687687
msgid "Convert a Python floating point number to a C :c:type:`double`."
688-
msgstr "Convertit un nombre flottant Python vers un :ctype:`double` C."
688+
msgstr "Convertit un nombre flottant Python vers un :c:type:`double` C."
689689

690690
#: ../Doc/c-api/arg.rst:216
691691
msgid "``D`` (complex) [Py_complex]"
@@ -694,7 +694,8 @@ msgstr ""
694694
#: ../Doc/c-api/arg.rst:216
695695
msgid "Convert a Python complex number to a C :c:type:`Py_complex` structure."
696696
msgstr ""
697-
"Convertit un nombre complexe Python vers une structure :ctype:`Py_complex` C."
697+
"Convertit un nombre complexe Python vers une structure :c:type:`Py_complex` "
698+
"C."
698699

699700
#: ../Doc/c-api/arg.rst:221 ../Doc/c-api/arg.rst:530
700701
msgid "``O`` (object) [PyObject \\*]"
@@ -1172,7 +1173,7 @@ msgstr ""
11721173

11731174
#: ../Doc/c-api/arg.rst:482
11741175
msgid "Convert a C :c:type:`long int` to a Python integer object."
1175-
msgstr "Convertit un :ctype:`long int` en un int Python."
1176+
msgstr "Convertit un :c:type:`long int` en un int Python."
11761177

11771178
#: ../Doc/c-api/arg.rst:485
11781179
#, fuzzy

distutils.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ msgstr "Une liste des extensions Python à construire"
206206

207207
#: ../Doc/distutils/apiref.rst:77
208208
msgid "a list of instances of :class:`distutils.core.Extension`"
209-
msgstr "une liste d'instances de :class:`distutils.core.Extension'"
209+
msgstr "une liste d'instances de :class:`distutils.core.Extension`"
210210

211211
#: ../Doc/distutils/apiref.rst:80
212212
msgid "*classifiers*"

0 commit comments

Comments
 (0)