Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit71ee8d0

Browse files
committed
Backport from 3.8
1 parentef3cbeb commit71ee8d0

40 files changed

+1378
-154
lines changed

‎c-api/buffer.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ msgstr ""
528528

529529
#:../Doc/c-api/buffer.rst:321
530530
msgid"format"
531-
msgstr""
531+
msgstr"format"
532532

533533
#:../Doc/c-api/buffer.rst:323../Doc/c-api/buffer.rst:325
534534
#:../Doc/c-api/buffer.rst:327../Doc/c-api/buffer.rst:329

‎distutils/packageindex.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ msgstr ""
77
"Report-Msgid-Bugs-To:\n"
88
"POT-Creation-Date:2019-05-23 16:48+0200\n"
99
"PO-Revision-Date:2019-08-21 12:33+0200\n"
10+
"Last-Translator:Zepmanbc <zepman@gmail.com>\n"
1011
"Language-Team:FRENCH <traductions@lists.afpy.org>\n"
1112
"Language:fr\n"
1213
"MIME-Version:1.0\n"
1314
"Content-Type:text/plain; charset=UTF-8\n"
1415
"Content-Transfer-Encoding:8bit\n"
15-
"Last-Translator:Zepmanbc <zepman@gmail.com>\n"
1616
"X-Generator:Poedit 2.2.3\n"
1717

1818
#:../Doc/distutils/packageindex.rst:7

‎distutils/setupscript.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ msgstr ""
378378

379379
#:../Doc/distutils/setupscript.rst:335
380380
msgid"Other options"
381-
msgstr""
381+
msgstr"Autres options"
382382

383383
#:../Doc/distutils/setupscript.rst:337
384384
msgid""

‎extending/extending.po

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ msgid ""
135135
"It is recommended to always define ``PY_SSIZE_T_CLEAN`` before including "
136136
"``Python.h``. See :ref:`parsetuple` for a description of this macro."
137137
msgstr""
138+
"Il est recommandé de toujours définir ``PY_SSIZE_T_CLEAN`` avant d'inclure "
139+
"``Python.h``. Lisez :ref:`parsetuple` pour avoir une description de cette "
140+
"macro."
138141

139142
#:../Doc/extending/extending.rst:75
140143
msgid""
@@ -567,13 +570,16 @@ msgstr ""
567570

568571
#:../Doc/extending/extending.rst:312
569572
msgid"The Module's Method Table and Initialization Function"
570-
msgstr""
573+
msgstr"La fonction d'initialisation et le tableau des méthodes du module"
571574

572575
#:../Doc/extending/extending.rst:314
573576
msgid""
574577
"I promised to show how :c:func:`spam_system` is called from Python programs. "
575578
"First, we need to list its name and address in a\"method table\"::"
576579
msgstr""
580+
"Nous avons promis de montrer comment :c:func:`spam_system` est appelée "
581+
"depuis les programmes Python. D'abord, nous avons besoin d'avoir son nom et "
582+
"son adresse dans un « tableau des méthodes » ::"
577583

578584
#:../Doc/extending/extending.rst:325
579585
msgid""
@@ -583,13 +589,22 @@ msgid ""
583589
"value of ``0`` means that an obsolete variant of :c:func:`PyArg_ParseTuple` "
584590
"is used."
585591
msgstr""
592+
"Notez la troisième entrée (``METH_VARARGS``). C'est un indicateur du type de "
593+
"convention à utiliser pour la fonction C, à destination de l'interpréteur. "
594+
"Il doit valoir normalement ``METH_VARARGS`` ou ``METH_VARARGS | "
595+
"METH_KEYWORDS`` ; la valeur ``0`` indique qu'une variante obsolète de :c:"
596+
"func:`PyArg_ParseTuple` est utilisée."
586597

587598
#:../Doc/extending/extending.rst:330
588599
msgid""
589600
"When using only ``METH_VARARGS``, the function should expect the Python-"
590601
"level parameters to be passed in as a tuple acceptable for parsing via :c:"
591602
"func:`PyArg_ParseTuple`; more information on this function is provided below."
592603
msgstr""
604+
"Si seulement ``METH_VARARGS`` est utilisé, la fonction s'attend à ce que les "
605+
"paramètres Python soient passés comme un n-uplet que l'on peut analyser "
606+
"*via* :c:func:`PyArg_ParseTuple` ; des informations supplémentaires sont "
607+
"fournies plus bas."
593608

594609
#:../Doc/extending/extending.rst:334
595610
msgid""
@@ -599,11 +614,18 @@ msgid ""
599614
"keywords. Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments "
600615
"to such a function."
601616
msgstr""
617+
"Le bit :const:`METH_KEYWORDS` peut être mis à un dans le troisième champ si "
618+
"des arguments par mot-clés doivent être passés à la fonction. Dans ce cas, "
619+
"la fonction C doit accepter un troisième paramètre ``PyObject *`` qui est un "
620+
"dictionnaire des mots-clés. Utilisez :c:func:`PyArg_ParseTupleAndKeywords` "
621+
"pour analyser les arguments d'une telle fonction."
602622

603623
#:../Doc/extending/extending.rst:340
604624
msgid""
605625
"The method table must be referenced in the module definition structure::"
606626
msgstr""
627+
"Le tableau des méthodes doit être référencé dans la structure de définition "
628+
"du module ::"
607629

608630
#:../Doc/extending/extending.rst:351
609631
msgid""

‎faq/extending.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ msgstr ""
77
"Report-Msgid-Bugs-To:\n"
88
"POT-Creation-Date:2019-05-23 16:48+0200\n"
99
"PO-Revision-Date:2019-08-31 11:36+0200\n"
10+
"Last-Translator:Zepmanbc <zepman@gmail.com>\n"
1011
"Language-Team:FRENCH <traductions@lists.afpy.org>\n"
1112
"Language:fr\n"
1213
"MIME-Version:1.0\n"
1314
"Content-Type:text/plain; charset=UTF-8\n"
1415
"Content-Transfer-Encoding:8bit\n"
15-
"Last-Translator:Zepmanbc <zepman@gmail.com>\n"
1616
"X-Generator:Poedit 2.2.3\n"
1717

1818
#:../Doc/faq/extending.rst:3

‎faq/gui.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ msgstr ""
77
"Report-Msgid-Bugs-To:\n"
88
"POT-Creation-Date:2019-06-03 22:10+0200\n"
99
"PO-Revision-Date:2019-08-06 11:31+0200\n"
10+
"Last-Translator:Zepmanbc <zepman@gmail.com>\n"
11+
"Language-Team:\n"
1012
"Language:fr\n"
1113
"MIME-Version:1.0\n"
1214
"Content-Type:text/plain; charset=UTF-8\n"
1315
"Content-Transfer-Encoding:8bit\n"
14-
"Last-Translator:Zepmanbc <zepman@gmail.com>\n"
15-
"Language-Team:\n"
1616
"X-Generator:Poedit 2.2.3\n"
1717

1818
#:../Doc/faq/gui.rst:5

‎faq/library.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ msgstr ""
77
"Report-Msgid-Bugs-To:\n"
88
"POT-Creation-Date:2018-06-28 15:29+0200\n"
99
"PO-Revision-Date:2019-08-22 22:17+0200\n"
10+
"Last-Translator:Antoine Wecxsteen\n"
1011
"Language-Team:FRENCH <traductions@lists.afpy.org>\n"
1112
"Language:fr\n"
1213
"MIME-Version:1.0\n"
1314
"Content-Type:text/plain; charset=UTF-8\n"
1415
"Content-Transfer-Encoding:8bit\n"
15-
"Last-Translator:Antoine Wecxsteen\n"
1616
"X-Generator:Poedit 2.0.6\n"
1717

1818
#:../Doc/faq/library.rst:5

‎howto/cporting.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ msgstr ""
66
"Report-Msgid-Bugs-To:\n"
77
"POT-Creation-Date:2018-06-10 11:27+0200\n"
88
"PO-Revision-Date:2019-07-19 23:34+0200\n"
9+
"Last-Translator:Andy Kwok <andy.kwok.work@gmail.com>\n"
910
"Language-Team:FRENCH <traductions@lists.afpy.org>\n"
1011
"Language:fr\n"
1112
"MIME-Version:1.0\n"
1213
"Content-Type:text/plain; charset=UTF-8\n"
1314
"Content-Transfer-Encoding:8bit\n"
14-
"Last-Translator:Andy Kwok <andy.kwok.work@gmail.com>\n"
1515
"X-Generator:Poedit 2.2.3\n"
1616

1717
#:../Doc/howto/cporting.rst:7

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp