5
5
msgstr ""
6
6
"Project-Id-Version : Python 3\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
- "POT-Creation-Date : 2020-08 -24 09:01+0200 \n "
8
+ "POT-Creation-Date : 2021-02 -24 17:33+0100 \n "
9
9
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
10
10
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
11
11
"Language-Team : FRENCH <traductions@lists.afpy.org>\n "
@@ -28,14 +28,14 @@ msgstr ""
28
28
msgid ""
29
29
"Output not more than *size* bytes to *str* according to the format string "
30
30
"*format* and the extra arguments. See the Unix man page :manpage:"
31
- "`snprintf(2 )`."
31
+ "`snprintf(3 )`."
32
32
msgstr ""
33
33
34
34
#: c-api/conversion.rst:19
35
35
msgid ""
36
36
"Output not more than *size* bytes to *str* according to the format string "
37
37
"*format* and the variable argument list *va*. Unix man page :manpage:"
38
- "`vsnprintf(2 )`."
38
+ "`vsnprintf(3 )`."
39
39
msgstr ""
40
40
41
41
#: c-api/conversion.rst:23
@@ -48,7 +48,7 @@ msgstr ""
48
48
49
49
#: c-api/conversion.rst:28
50
50
msgid ""
51
- "The wrappers ensure that * str*[* size* -1] is always ``'\\ 0'`` upon return. "
51
+ "The wrappers ensure that `` str[ size-1]`` is always ``'\\ 0'`` upon return. "
52
52
"They never write more than *size* bytes (including the trailing ``'\\ 0'``) "
53
53
"into str. Both functions require that ``str != NULL``, ``size > 0`` and "
54
54
"``format != NULL``."
@@ -70,19 +70,19 @@ msgstr ""
70
70
msgid ""
71
71
"When ``0 <= rv < size``, the output conversion was successful and *rv* "
72
72
"characters were written to *str* (excluding the trailing ``'\\ 0'`` byte at "
73
- "* str*[*rv*] )."
73
+ "`` str[rv]`` )."
74
74
msgstr ""
75
75
76
76
#: c-api/conversion.rst:43
77
77
msgid ""
78
78
"When ``rv >= size``, the output conversion was truncated and a buffer with "
79
- "``rv + 1`` bytes would have been needed to succeed. * str*[* size* -1] is "
79
+ "``rv + 1`` bytes would have been needed to succeed. `` str[ size-1]`` is "
80
80
"``'\\ 0'`` in this case."
81
81
msgstr ""
82
82
83
83
#: c-api/conversion.rst:47
84
84
msgid ""
85
- "When ``rv < 0``, \" something bad happened.\" * str*[* size* -1] is ``'\\ 0'`` in "
85
+ "When ``rv < 0``, \" something bad happened.\" `` str[ size-1]`` is ``'\\ 0'`` in "
86
86
"this case too, but the rest of *str* is undefined. The exact cause of the "
87
87
"error depends on the underlying platform."
88
88
msgstr ""
0 commit comments