Working on stdtypes.po (80%)

This commit is contained in:
Julien Palard 2017-05-15 13:29:27 +02:00
parent b81aa52613
commit 537f6d9e88

View File

@ -2963,6 +2963,9 @@ msgid ""
"strings (of arbitrary lengths) or ``None``. Character keys will then be " "strings (of arbitrary lengths) or ``None``. Character keys will then be "
"converted to ordinals." "converted to ordinals."
msgstr "" msgstr ""
"Si un seul argument est fourni, ce soit être un dictionnaire faisant "
"correspondre des points de code Unicode (nombres entiers) ou des caractères "
"(chaînes de longueur 1) à des points de code Unicode"
#: ../Doc/library/stdtypes.rst:1757 #: ../Doc/library/stdtypes.rst:1757
msgid "" msgid ""
@ -2971,6 +2974,11 @@ msgid ""
"the same position in y. If there is a third argument, it must be a string, " "the same position in y. If there is a third argument, it must be a string, "
"whose characters will be mapped to ``None`` in the result." "whose characters will be mapped to ``None`` in the result."
msgstr "" msgstr ""
"Si deux arguments sont fournis, ce doit être deux chaînes de caractères de "
"même longueur. Le dictionnaire renvoyé fera correspondre pour chaque "
"caractère de x un caractère de y pris à la même place. Si un troisième "
"argument est fourni, ce doit être une chaîne dont chaque caractère "
"correspondra à ``None`` dans le résultat."
#: ../Doc/library/stdtypes.rst:1765 #: ../Doc/library/stdtypes.rst:1765
msgid "" msgid ""
@ -4615,7 +4623,7 @@ msgstr ""
"plusieurs sous séquences (par exemple, ``b'1<>2<>3'.split(b'<>')`` renvoie " "plusieurs sous séquences (par exemple, ``b'1<>2<>3'.split(b'<>')`` renvoie "
"``[b'1', b'2', b'3']``). Découper une chaîne vide en spécifiant *sep* donne " "``[b'1', b'2', b'3']``). Découper une chaîne vide en spécifiant *sep* donne "
"``[b'']`` ou ``[bytearray(b'')]`` en fonction du type de l'objet découpé. " "``[b'']`` ou ``[bytearray(b'')]`` en fonction du type de l'objet découpé. "
"L'argument *sep* peut être n'importe quel :term:`byte-like object`." "L'argument *sep* peut être n'importe quel :term:`bytes-like object`."
#: ../Doc/library/stdtypes.rst:2785 #: ../Doc/library/stdtypes.rst:2785
msgid "" msgid ""
@ -4907,6 +4915,12 @@ msgid ""
"zero or more elements of *values*. The effect is similar to using the :c:" "zero or more elements of *values*. The effect is similar to using the :c:"
"func:`sprintf` in the C language." "func:`sprintf` in the C language."
msgstr "" msgstr ""
"Les objets *bytes* (``bytes`` et ``bytearray``) ont un unique opérateur : "
"l'opérateur ``%`` (modulo). Il est aussi connu sous le nom d'opérateur de "
"mise en forme. Avec ``format % values`` (où *format* est un objet *bytes*), "
"les marqueurs de conversion ``%`` dans *format* sont remplacés par zéro ou "
"plus de *values*. L'effet est similaire à la fonction :c:func:`sprintf` du "
"langage C."
#: ../Doc/library/stdtypes.rst:3177 #: ../Doc/library/stdtypes.rst:3177
msgid "" msgid ""
@ -4935,7 +4949,7 @@ msgstr ""
#: ../Doc/library/stdtypes.rst:3274 #: ../Doc/library/stdtypes.rst:3274
msgid "Single byte (accepts integer or single byte objects)." msgid "Single byte (accepts integer or single byte objects)."
msgstr "" msgstr "Octet simple (Accepte un nombre entier ou un seul objet *byte*)."
#: ../Doc/library/stdtypes.rst:3277 #: ../Doc/library/stdtypes.rst:3277
msgid "``'b'``" msgid "``'b'``"
@ -4946,28 +4960,36 @@ msgid ""
"Bytes (any object that follows the :ref:`buffer protocol <bufferobjects>` or " "Bytes (any object that follows the :ref:`buffer protocol <bufferobjects>` or "
"has :meth:`__bytes__`)." "has :meth:`__bytes__`)."
msgstr "" msgstr ""
"*Bytes* (tout objet respectant le :ref:`buffer protocol <bufferobjects>` ou "
"ayant la méthode :meth:`__bytes__`)."
#: ../Doc/library/stdtypes.rst:3281 #: ../Doc/library/stdtypes.rst:3281
msgid "" msgid ""
"``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code " "``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code "
"bases." "bases."
msgstr "" msgstr ""
"``'s'`` est un alias de ``'b'`` et ne devrait être utilisé que pour du code "
"Python2/3."
#: ../Doc/library/stdtypes.rst:3284 #: ../Doc/library/stdtypes.rst:3284
msgid "" msgid ""
"Bytes (converts any Python object using ``repr(obj)." "Bytes (converts any Python object using ``repr(obj)."
"encode('ascii','backslashreplace)``)." "encode('ascii','backslashreplace)``)."
msgstr "" msgstr ""
"*Bytes* (convertis n'importe quel objet Python en utilisant ``repr(obj)."
"encode('ascii', 'backslashreplace)``)."
#: ../Doc/library/stdtypes.rst:3287 #: ../Doc/library/stdtypes.rst:3287
msgid "" msgid ""
"``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code " "``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code "
"bases." "bases."
msgstr "" msgstr ""
"``'r'`` est un alias de ``'a'`` et ne devrait être utilise que dans du code "
"Python2/3."
#: ../Doc/library/stdtypes.rst:3325 #: ../Doc/library/stdtypes.rst:3325
msgid "``b'%s'`` is deprecated, but will not be removed during the 3.x series." msgid "``b'%s'`` is deprecated, but will not be removed during the 3.x series."
msgstr "" msgstr "``b'%s'`` est déprécié, mais ne sera pas retiré des version 3.x."
#: ../Doc/library/stdtypes.rst:3328 #: ../Doc/library/stdtypes.rst:3328
msgid "``b'%r'`` is deprecated, but will not be removed during the 3.x series." msgid "``b'%r'`` is deprecated, but will not be removed during the 3.x series."