merge pot files.

This commit is contained in:
Julien Palard 2017-09-21 09:23:18 +02:00
parent d9c9c36c96
commit 6b617ab69c
56 changed files with 20054 additions and 29503 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -133,14 +133,17 @@ msgid ""
msgstr "" msgstr ""
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240 #: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
#: ../Doc/c-api/structures.rst:305
msgid "Field" msgid "Field"
msgstr "" msgstr ""
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240 #: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
#: ../Doc/c-api/structures.rst:305
msgid "C Type" msgid "C Type"
msgstr "Type C" msgstr "Type C"
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240 #: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
#: ../Doc/c-api/structures.rst:305
msgid "Meaning" msgid "Meaning"
msgstr "Signification" msgstr "Signification"
@ -150,7 +153,8 @@ msgstr ""
#: ../Doc/c-api/structures.rst:131 ../Doc/c-api/structures.rst:139 #: ../Doc/c-api/structures.rst:131 ../Doc/c-api/structures.rst:139
#: ../Doc/c-api/structures.rst:242 ../Doc/c-api/structures.rst:255 #: ../Doc/c-api/structures.rst:242 ../Doc/c-api/structures.rst:255
#: ../Doc/c-api/structures.rst:271 #: ../Doc/c-api/structures.rst:271 ../Doc/c-api/structures.rst:307
#: ../Doc/c-api/structures.rst:315
msgid "char \\*" msgid "char \\*"
msgstr "" msgstr ""
@ -488,3 +492,89 @@ msgid ""
"macro:`READONLY`. Only :c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` " "macro:`READONLY`. Only :c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` "
"members can be deleted. (They are set to *NULL*)." "members can be deleted. (They are set to *NULL*)."
msgstr "" msgstr ""
#: ../Doc/c-api/structures.rst:301
msgid ""
"Structure to define property-like access for a type. See also description of "
"the :c:member:`PyTypeObject.tp_getset` slot."
msgstr ""
#: ../Doc/c-api/structures.rst:307
msgid "name"
msgstr ""
#: ../Doc/c-api/structures.rst:307
msgid "attribute name"
msgstr ""
#: ../Doc/c-api/structures.rst:309
msgid "get"
msgstr ""
#: ../Doc/c-api/structures.rst:309
msgid "getter"
msgstr ""
#: ../Doc/c-api/structures.rst:309
msgid "C Function to get the attribute"
msgstr ""
#: ../Doc/c-api/structures.rst:311
msgid "set"
msgstr ""
#: ../Doc/c-api/structures.rst:311
msgid "setter"
msgstr ""
#: ../Doc/c-api/structures.rst:311
msgid ""
"optional C function to set or delete the attribute, if omitted the attribute "
"is readonly"
msgstr ""
#: ../Doc/c-api/structures.rst:315
msgid "doc"
msgstr ""
#: ../Doc/c-api/structures.rst:315
msgid "optional docstring"
msgstr ""
#: ../Doc/c-api/structures.rst:317
msgid "closure"
msgstr ""
#: ../Doc/c-api/structures.rst:317
msgid "void \\*"
msgstr ""
#: ../Doc/c-api/structures.rst:317
msgid ""
"optional function pointer, providing additional data for getter and setter"
msgstr ""
#: ../Doc/c-api/structures.rst:322
msgid ""
"The ``get`` function takes one :c:type:`PyObject\\*` parameter (the "
"instance) and a function pointer (the associated ``closure``)::"
msgstr ""
#: ../Doc/c-api/structures.rst:327
msgid ""
"It should return a new reference on success or *NULL* with a set exception "
"on failure."
msgstr ""
#: ../Doc/c-api/structures.rst:330
msgid ""
"``set`` functions take two :c:type:`PyObject\\*` parameters (the instance "
"and the value to be set) and a function pointer (the associated "
"``closure``)::"
msgstr ""
#: ../Doc/c-api/structures.rst:335
msgid ""
"In case the attribute should be deleted the second parameter is *NULL*. "
"Should return ``0`` on success or ``-1`` with a set exception on failure."
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -120,9 +120,9 @@ msgstr ""
#: ../Doc/c-api/typeobj.rst:86 ../Doc/c-api/typeobj.rst:188 #: ../Doc/c-api/typeobj.rst:86 ../Doc/c-api/typeobj.rst:188
#: ../Doc/c-api/typeobj.rst:255 ../Doc/c-api/typeobj.rst:322 #: ../Doc/c-api/typeobj.rst:255 ../Doc/c-api/typeobj.rst:322
#: ../Doc/c-api/typeobj.rst:340 ../Doc/c-api/typeobj.rst:666 #: ../Doc/c-api/typeobj.rst:340 ../Doc/c-api/typeobj.rst:666
#: ../Doc/c-api/typeobj.rst:683 ../Doc/c-api/typeobj.rst:778 #: ../Doc/c-api/typeobj.rst:683 ../Doc/c-api/typeobj.rst:763
#: ../Doc/c-api/typeobj.rst:873 ../Doc/c-api/typeobj.rst:966 #: ../Doc/c-api/typeobj.rst:858 ../Doc/c-api/typeobj.rst:951
#: ../Doc/c-api/typeobj.rst:1021 #: ../Doc/c-api/typeobj.rst:1006
msgid "This field is inherited by subtypes." msgid "This field is inherited by subtypes."
msgstr "" msgstr ""
@ -951,11 +951,7 @@ msgid ""
"through a different mechanism)." "through a different mechanism)."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:724 #: ../Doc/c-api/typeobj.rst:725
msgid "Docs for PyGetSetDef::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:740
msgid "" msgid ""
"An optional pointer to a base type from which type properties are " "An optional pointer to a base type from which type properties are "
"inherited. At this level, only single inheritance is supported; multiple " "inherited. At this level, only single inheritance is supported; multiple "
@ -963,18 +959,18 @@ msgid ""
"metatype." "metatype."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:744 #: ../Doc/c-api/typeobj.rst:729
msgid "" msgid ""
"This field is not inherited by subtypes (obviously), but it defaults to " "This field is not inherited by subtypes (obviously), but it defaults to "
"``&PyBaseObject_Type`` (which to Python programmers is known as the type :" "``&PyBaseObject_Type`` (which to Python programmers is known as the type :"
"class:`object`)." "class:`object`)."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:751 #: ../Doc/c-api/typeobj.rst:736
msgid "The type's dictionary is stored here by :c:func:`PyType_Ready`." msgid "The type's dictionary is stored here by :c:func:`PyType_Ready`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:753 #: ../Doc/c-api/typeobj.rst:738
msgid "" msgid ""
"This field should normally be initialized to *NULL* before PyType_Ready is " "This field should normally be initialized to *NULL* before PyType_Ready is "
"called; it may also be initialized to a dictionary containing initial " "called; it may also be initialized to a dictionary containing initial "
@ -983,41 +979,41 @@ msgid ""
"they don't correspond to overloaded operations (like :meth:`__add__`)." "they don't correspond to overloaded operations (like :meth:`__add__`)."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:759 #: ../Doc/c-api/typeobj.rst:744
msgid "" msgid ""
"This field is not inherited by subtypes (though the attributes defined in " "This field is not inherited by subtypes (though the attributes defined in "
"here are inherited through a different mechanism)." "here are inherited through a different mechanism)."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:764 #: ../Doc/c-api/typeobj.rst:749
msgid "" msgid ""
"It is not safe to use :c:func:`PyDict_SetItem` on or otherwise modify :c:" "It is not safe to use :c:func:`PyDict_SetItem` on or otherwise modify :c:"
"member:`~PyTypeObject.tp_dict` with the dictionary C-API." "member:`~PyTypeObject.tp_dict` with the dictionary C-API."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:770 #: ../Doc/c-api/typeobj.rst:755
msgid "An optional pointer to a \"descriptor get\" function." msgid "An optional pointer to a \"descriptor get\" function."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:772 ../Doc/c-api/typeobj.rst:786 #: ../Doc/c-api/typeobj.rst:757 ../Doc/c-api/typeobj.rst:771
#: ../Doc/c-api/typeobj.rst:858 ../Doc/c-api/typeobj.rst:880 #: ../Doc/c-api/typeobj.rst:843 ../Doc/c-api/typeobj.rst:865
#: ../Doc/c-api/typeobj.rst:911 #: ../Doc/c-api/typeobj.rst:896
msgid "The function signature is ::" msgid "The function signature is ::"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:783 #: ../Doc/c-api/typeobj.rst:768
msgid "" msgid ""
"An optional pointer to a function for setting and deleting a descriptor's " "An optional pointer to a function for setting and deleting a descriptor's "
"value." "value."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:790 #: ../Doc/c-api/typeobj.rst:775
msgid "" msgid ""
"The *value* argument is set to *NULL* to delete the value. This field is " "The *value* argument is set to *NULL* to delete the value. This field is "
"inherited by subtypes." "inherited by subtypes."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:798 #: ../Doc/c-api/typeobj.rst:783
msgid "" msgid ""
"If the instances of this type have a dictionary containing instance " "If the instances of this type have a dictionary containing instance "
"variables, this field is non-zero and contains the offset in the instances " "variables, this field is non-zero and contains the offset in the instances "
@ -1025,13 +1021,13 @@ msgid ""
"func:`PyObject_GenericGetAttr`." "func:`PyObject_GenericGetAttr`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:803 #: ../Doc/c-api/typeobj.rst:788
msgid "" msgid ""
"Do not confuse this field with :c:member:`~PyTypeObject.tp_dict`; that is " "Do not confuse this field with :c:member:`~PyTypeObject.tp_dict`; that is "
"the dictionary for attributes of the type object itself." "the dictionary for attributes of the type object itself."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:806 #: ../Doc/c-api/typeobj.rst:791
msgid "" msgid ""
"If the value of this field is greater than zero, it specifies the offset " "If the value of this field is greater than zero, it specifies the offset "
"from the start of the instance structure. If the value is less than zero, " "from the start of the instance structure. If the value is less than zero, "
@ -1047,13 +1043,13 @@ msgid ""
"the very end of the structure." "the very end of the structure."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:818 #: ../Doc/c-api/typeobj.rst:803
msgid "" msgid ""
"The real dictionary offset in an instance can be computed from a negative :c:" "The real dictionary offset in an instance can be computed from a negative :c:"
"member:`~PyTypeObject.tp_dictoffset` as follows::" "member:`~PyTypeObject.tp_dictoffset` as follows::"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:825 #: ../Doc/c-api/typeobj.rst:810
msgid "" msgid ""
"where :c:member:`~PyTypeObject.tp_basicsize`, :c:member:`~PyTypeObject." "where :c:member:`~PyTypeObject.tp_basicsize`, :c:member:`~PyTypeObject."
"tp_itemsize` and :c:member:`~PyTypeObject.tp_dictoffset` are taken from the " "tp_itemsize` and :c:member:`~PyTypeObject.tp_dictoffset` are taken from the "
@ -1063,7 +1059,7 @@ msgid ""
"it is done for you by :c:func:`_PyObject_GetDictPtr`.)" "it is done for you by :c:func:`_PyObject_GetDictPtr`.)"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:831 #: ../Doc/c-api/typeobj.rst:816
msgid "" msgid ""
"This field is inherited by subtypes, but see the rules listed below. A " "This field is inherited by subtypes, but see the rules listed below. A "
"subtype may override this offset; this means that the subtype instances " "subtype may override this offset; this means that the subtype instances "
@ -1072,7 +1068,7 @@ msgid ""
"should not be a problem." "should not be a problem."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:836 #: ../Doc/c-api/typeobj.rst:821
msgid "" msgid ""
"When a type defined by a class statement has no :attr:`~object.__slots__` " "When a type defined by a class statement has no :attr:`~object.__slots__` "
"declaration, and none of its base types has an instance variable dictionary, " "declaration, and none of its base types has an instance variable dictionary, "
@ -1080,14 +1076,14 @@ msgid ""
"`~PyTypeObject.tp_dictoffset` is set to that slot's offset." "`~PyTypeObject.tp_dictoffset` is set to that slot's offset."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:841 #: ../Doc/c-api/typeobj.rst:826
msgid "" msgid ""
"When a type defined by a class statement has a :attr:`__slots__` " "When a type defined by a class statement has a :attr:`__slots__` "
"declaration, the type inherits its :c:member:`~PyTypeObject.tp_dictoffset` " "declaration, the type inherits its :c:member:`~PyTypeObject.tp_dictoffset` "
"from its base type." "from its base type."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:844 #: ../Doc/c-api/typeobj.rst:829
msgid "" msgid ""
"(Adding a slot named :attr:`~object.__dict__` to the :attr:`__slots__` " "(Adding a slot named :attr:`~object.__dict__` to the :attr:`__slots__` "
"declaration does not have the expected effect, it just causes confusion. " "declaration does not have the expected effect, it just causes confusion. "
@ -1095,11 +1091,11 @@ msgid ""
"though.)" "though.)"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:851 #: ../Doc/c-api/typeobj.rst:836
msgid "An optional pointer to an instance initialization function." msgid "An optional pointer to an instance initialization function."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:853 #: ../Doc/c-api/typeobj.rst:838
msgid "" msgid ""
"This function corresponds to the :meth:`__init__` method of classes. Like :" "This function corresponds to the :meth:`__init__` method of classes. Like :"
"meth:`__init__`, it is possible to create an instance without calling :meth:" "meth:`__init__`, it is possible to create an instance without calling :meth:"
@ -1107,14 +1103,14 @@ msgid ""
"meth:`__init__` method again." "meth:`__init__` method again."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:862 #: ../Doc/c-api/typeobj.rst:847
msgid "" msgid ""
"The self argument is the instance to be initialized; the *args* and *kwds* " "The self argument is the instance to be initialized; the *args* and *kwds* "
"arguments represent positional and keyword arguments of the call to :meth:" "arguments represent positional and keyword arguments of the call to :meth:"
"`__init__`." "`__init__`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:866 #: ../Doc/c-api/typeobj.rst:851
msgid "" msgid ""
"The :c:member:`~PyTypeObject.tp_init` function, if not *NULL*, is called " "The :c:member:`~PyTypeObject.tp_init` function, if not *NULL*, is called "
"when an instance is created normally by calling its type, after the type's :" "when an instance is created normally by calling its type, after the type's :"
@ -1126,11 +1122,11 @@ msgid ""
"subtype's :c:member:`~PyTypeObject.tp_init` is called." "subtype's :c:member:`~PyTypeObject.tp_init` is called."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:878 #: ../Doc/c-api/typeobj.rst:863
msgid "An optional pointer to an instance allocation function." msgid "An optional pointer to an instance allocation function."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:884 #: ../Doc/c-api/typeobj.rst:869
msgid "" msgid ""
"The purpose of this function is to separate memory allocation from memory " "The purpose of this function is to separate memory allocation from memory "
"initialization. It should return a pointer to a block of memory of adequate " "initialization. It should return a pointer to a block of memory of adequate "
@ -1144,14 +1140,14 @@ msgid ""
"member:`~PyTypeObject.tp_basicsize`." "member:`~PyTypeObject.tp_basicsize`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:894 #: ../Doc/c-api/typeobj.rst:879
msgid "" msgid ""
"Do not use this function to do any other instance initialization, not even " "Do not use this function to do any other instance initialization, not even "
"to allocate additional memory; that should be done by :c:member:" "to allocate additional memory; that should be done by :c:member:"
"`~PyTypeObject.tp_new`." "`~PyTypeObject.tp_new`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:897 #: ../Doc/c-api/typeobj.rst:882
msgid "" msgid ""
"This field is inherited by static subtypes, but not by dynamic subtypes " "This field is inherited by static subtypes, but not by dynamic subtypes "
"(subtypes created by a class statement); in the latter, this field is always " "(subtypes created by a class statement); in the latter, this field is always "
@ -1159,18 +1155,18 @@ msgid ""
"strategy. That is also the recommended value for statically defined types." "strategy. That is also the recommended value for statically defined types."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:905 #: ../Doc/c-api/typeobj.rst:890
msgid "An optional pointer to an instance creation function." msgid "An optional pointer to an instance creation function."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:907 #: ../Doc/c-api/typeobj.rst:892
msgid "" msgid ""
"If this function is *NULL* for a particular type, that type cannot be called " "If this function is *NULL* for a particular type, that type cannot be called "
"to create new instances; presumably there is some other way to create " "to create new instances; presumably there is some other way to create "
"instances, like a factory function." "instances, like a factory function."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:915 #: ../Doc/c-api/typeobj.rst:900
msgid "" msgid ""
"The subtype argument is the type of the object being created; the *args* and " "The subtype argument is the type of the object being created; the *args* and "
"*kwds* arguments represent positional and keyword arguments of the call to " "*kwds* arguments represent positional and keyword arguments of the call to "
@ -1179,7 +1175,7 @@ msgid ""
"(but not an unrelated type)." "(but not an unrelated type)."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:921 #: ../Doc/c-api/typeobj.rst:906
msgid "" msgid ""
"The :c:member:`~PyTypeObject.tp_new` function should call ``subtype-" "The :c:member:`~PyTypeObject.tp_new` function should call ``subtype-"
">tp_alloc(subtype, nitems)`` to allocate space for the object, and then do " ">tp_alloc(subtype, nitems)`` to allocate space for the object, and then do "
@ -1191,26 +1187,26 @@ msgid ""
"be deferred to :c:member:`~PyTypeObject.tp_init`." "be deferred to :c:member:`~PyTypeObject.tp_init`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:929 #: ../Doc/c-api/typeobj.rst:914
msgid "" msgid ""
"This field is inherited by subtypes, except it is not inherited by static " "This field is inherited by subtypes, except it is not inherited by static "
"types whose :c:member:`~PyTypeObject.tp_base` is *NULL* or " "types whose :c:member:`~PyTypeObject.tp_base` is *NULL* or "
"``&PyBaseObject_Type``." "``&PyBaseObject_Type``."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:935 #: ../Doc/c-api/typeobj.rst:920
msgid "" msgid ""
"An optional pointer to an instance deallocation function. Its signature is :" "An optional pointer to an instance deallocation function. Its signature is :"
"c:type:`freefunc`::" "c:type:`freefunc`::"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:940 #: ../Doc/c-api/typeobj.rst:925
msgid "" msgid ""
"An initializer that is compatible with this signature is :c:func:" "An initializer that is compatible with this signature is :c:func:"
"`PyObject_Free`." "`PyObject_Free`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:942 #: ../Doc/c-api/typeobj.rst:927
msgid "" msgid ""
"This field is inherited by static subtypes, but not by dynamic subtypes " "This field is inherited by static subtypes, but not by dynamic subtypes "
"(subtypes created by a class statement); in the latter, this field is set to " "(subtypes created by a class statement); in the latter, this field is set to "
@ -1218,11 +1214,11 @@ msgid ""
"of the :const:`Py_TPFLAGS_HAVE_GC` flag bit." "of the :const:`Py_TPFLAGS_HAVE_GC` flag bit."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:950 #: ../Doc/c-api/typeobj.rst:935
msgid "An optional pointer to a function called by the garbage collector." msgid "An optional pointer to a function called by the garbage collector."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:952 #: ../Doc/c-api/typeobj.rst:937
msgid "" msgid ""
"The garbage collector needs to know whether a particular object is " "The garbage collector needs to know whether a particular object is "
"collectible or not. Normally, it is sufficient to look at the object's " "collectible or not. Normally, it is sufficient to look at the object's "
@ -1234,46 +1230,46 @@ msgid ""
"instance. The signature is ::" "instance. The signature is ::"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:962 #: ../Doc/c-api/typeobj.rst:947
msgid "" msgid ""
"(The only example of this are types themselves. The metatype, :c:data:" "(The only example of this are types themselves. The metatype, :c:data:"
"`PyType_Type`, defines this function to distinguish between statically and " "`PyType_Type`, defines this function to distinguish between statically and "
"dynamically allocated types.)" "dynamically allocated types.)"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:971 #: ../Doc/c-api/typeobj.rst:956
msgid "Tuple of base types." msgid "Tuple of base types."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:973 #: ../Doc/c-api/typeobj.rst:958
msgid "" msgid ""
"This is set for types created by a class statement. It should be *NULL* for " "This is set for types created by a class statement. It should be *NULL* for "
"statically defined types." "statically defined types."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:976 #: ../Doc/c-api/typeobj.rst:961
msgid "This field is not inherited." msgid "This field is not inherited."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:981 #: ../Doc/c-api/typeobj.rst:966
msgid "" msgid ""
"Tuple containing the expanded set of base types, starting with the type " "Tuple containing the expanded set of base types, starting with the type "
"itself and ending with :class:`object`, in Method Resolution Order." "itself and ending with :class:`object`, in Method Resolution Order."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:984 #: ../Doc/c-api/typeobj.rst:969
msgid "" msgid ""
"This field is not inherited; it is calculated fresh by :c:func:" "This field is not inherited; it is calculated fresh by :c:func:"
"`PyType_Ready`." "`PyType_Ready`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:989 #: ../Doc/c-api/typeobj.rst:974
msgid "" msgid ""
"An optional pointer to an instance finalization function. Its signature is :" "An optional pointer to an instance finalization function. Its signature is :"
"c:type:`destructor`::" "c:type:`destructor`::"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:994 #: ../Doc/c-api/typeobj.rst:979
msgid "" msgid ""
"If :c:member:`~PyTypeObject.tp_finalize` is set, the interpreter calls it " "If :c:member:`~PyTypeObject.tp_finalize` is set, the interpreter calls it "
"once when finalizing an instance. It is called either from the garbage " "once when finalizing an instance. It is called either from the garbage "
@ -1283,39 +1279,39 @@ msgid ""
"object in a sane state." "object in a sane state."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1001 #: ../Doc/c-api/typeobj.rst:986
msgid "" msgid ""
":c:member:`~PyTypeObject.tp_finalize` should not mutate the current " ":c:member:`~PyTypeObject.tp_finalize` should not mutate the current "
"exception status; therefore, a recommended way to write a non-trivial " "exception status; therefore, a recommended way to write a non-trivial "
"finalizer is::" "finalizer is::"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1018 #: ../Doc/c-api/typeobj.rst:1003
msgid "" msgid ""
"For this field to be taken into account (even through inheritance), you must " "For this field to be taken into account (even through inheritance), you must "
"also set the :const:`Py_TPFLAGS_HAVE_FINALIZE` flags bit." "also set the :const:`Py_TPFLAGS_HAVE_FINALIZE` flags bit."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1025 #: ../Doc/c-api/typeobj.rst:1010
msgid "\"Safe object finalization\" (:pep:`442`)" msgid "\"Safe object finalization\" (:pep:`442`)"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1030 #: ../Doc/c-api/typeobj.rst:1015
msgid "Unused. Not inherited. Internal use only." msgid "Unused. Not inherited. Internal use only."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1035 #: ../Doc/c-api/typeobj.rst:1020
msgid "" msgid ""
"List of weak references to subclasses. Not inherited. Internal use only." "List of weak references to subclasses. Not inherited. Internal use only."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1040 #: ../Doc/c-api/typeobj.rst:1025
msgid "" msgid ""
"Weak reference list head, for weak references to this type object. Not " "Weak reference list head, for weak references to this type object. Not "
"inherited. Internal use only." "inherited. Internal use only."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1043 #: ../Doc/c-api/typeobj.rst:1028
msgid "" msgid ""
"The remaining fields are only defined if the feature test macro :const:" "The remaining fields are only defined if the feature test macro :const:"
"`COUNT_ALLOCS` is defined, and are for internal use only. They are " "`COUNT_ALLOCS` is defined, and are for internal use only. They are "
@ -1323,25 +1319,25 @@ msgid ""
"subtypes." "subtypes."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1051 #: ../Doc/c-api/typeobj.rst:1036
msgid "Number of allocations." msgid "Number of allocations."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1056 #: ../Doc/c-api/typeobj.rst:1041
msgid "Number of frees." msgid "Number of frees."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1061 #: ../Doc/c-api/typeobj.rst:1046
msgid "Maximum simultaneously allocated objects." msgid "Maximum simultaneously allocated objects."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1066 #: ../Doc/c-api/typeobj.rst:1051
msgid "" msgid ""
"Pointer to the next type object with a non-zero :c:member:`~PyTypeObject." "Pointer to the next type object with a non-zero :c:member:`~PyTypeObject."
"tp_allocs` field." "tp_allocs` field."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1068 #: ../Doc/c-api/typeobj.rst:1053
msgid "" msgid ""
"Also, note that, in a garbage collected Python, tp_dealloc may be called " "Also, note that, in a garbage collected Python, tp_dealloc may be called "
"from any Python thread, not just the thread which created the object (if the " "from any Python thread, not just the thread which created the object (if the "
@ -1354,22 +1350,22 @@ msgid ""
"will not violate any assumptions of the library." "will not violate any assumptions of the library."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1082 #: ../Doc/c-api/typeobj.rst:1067
msgid "Number Object Structures" msgid "Number Object Structures"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1089 #: ../Doc/c-api/typeobj.rst:1074
msgid "" msgid ""
"This structure holds pointers to the functions which an object uses to " "This structure holds pointers to the functions which an object uses to "
"implement the number protocol. Each function is used by the function of " "implement the number protocol. Each function is used by the function of "
"similar name documented in the :ref:`number` section." "similar name documented in the :ref:`number` section."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1093 ../Doc/c-api/typeobj.rst:1366 #: ../Doc/c-api/typeobj.rst:1078 ../Doc/c-api/typeobj.rst:1351
msgid "Here is the structure definition::" msgid "Here is the structure definition::"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1140 #: ../Doc/c-api/typeobj.rst:1125
msgid "" msgid ""
"Binary and ternary functions must check the type of all their operands, and " "Binary and ternary functions must check the type of all their operands, and "
"implement the necessary conversions (at least one of the operands is an " "implement the necessary conversions (at least one of the operands is an "
@ -1379,37 +1375,37 @@ msgid ""
"and set an exception." "and set an exception."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1149 #: ../Doc/c-api/typeobj.rst:1134
msgid "" msgid ""
"The :c:data:`nb_reserved` field should always be ``NULL``. It was " "The :c:data:`nb_reserved` field should always be ``NULL``. It was "
"previously called :c:data:`nb_long`, and was renamed in Python 3.0.1." "previously called :c:data:`nb_long`, and was renamed in Python 3.0.1."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1157 #: ../Doc/c-api/typeobj.rst:1142
msgid "Mapping Object Structures" msgid "Mapping Object Structures"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1164 #: ../Doc/c-api/typeobj.rst:1149
msgid "" msgid ""
"This structure holds pointers to the functions which an object uses to " "This structure holds pointers to the functions which an object uses to "
"implement the mapping protocol. It has three members:" "implement the mapping protocol. It has three members:"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1169 #: ../Doc/c-api/typeobj.rst:1154
msgid "" msgid ""
"This function is used by :c:func:`PyMapping_Length` and :c:func:" "This function is used by :c:func:`PyMapping_Length` and :c:func:"
"`PyObject_Size`, and has the same signature. This slot may be set to *NULL* " "`PyObject_Size`, and has the same signature. This slot may be set to *NULL* "
"if the object has no defined length." "if the object has no defined length."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1175 #: ../Doc/c-api/typeobj.rst:1160
msgid "" msgid ""
"This function is used by :c:func:`PyObject_GetItem` and has the same " "This function is used by :c:func:`PyObject_GetItem` and has the same "
"signature. This slot must be filled for the :c:func:`PyMapping_Check` " "signature. This slot must be filled for the :c:func:`PyMapping_Check` "
"function to return ``1``, it can be *NULL* otherwise." "function to return ``1``, it can be *NULL* otherwise."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1181 #: ../Doc/c-api/typeobj.rst:1166
msgid "" msgid ""
"This function is used by :c:func:`PyObject_SetItem` and :c:func:" "This function is used by :c:func:`PyObject_SetItem` and :c:func:"
"`PyObject_DelItem`. It has the same signature as :c:func:" "`PyObject_DelItem`. It has the same signature as :c:func:"
@ -1418,30 +1414,30 @@ msgid ""
"deletion." "deletion."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1191 #: ../Doc/c-api/typeobj.rst:1176
msgid "Sequence Object Structures" msgid "Sequence Object Structures"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1198 #: ../Doc/c-api/typeobj.rst:1183
msgid "" msgid ""
"This structure holds pointers to the functions which an object uses to " "This structure holds pointers to the functions which an object uses to "
"implement the sequence protocol." "implement the sequence protocol."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1203 #: ../Doc/c-api/typeobj.rst:1188
msgid "" msgid ""
"This function is used by :c:func:`PySequence_Size` and :c:func:" "This function is used by :c:func:`PySequence_Size` and :c:func:"
"`PyObject_Size`, and has the same signature." "`PyObject_Size`, and has the same signature."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1208 #: ../Doc/c-api/typeobj.rst:1193
msgid "" msgid ""
"This function is used by :c:func:`PySequence_Concat` and has the same " "This function is used by :c:func:`PySequence_Concat` and has the same "
"signature. It is also used by the ``+`` operator, after trying the numeric " "signature. It is also used by the ``+`` operator, after trying the numeric "
"addition via the :c:member:`~PyTypeObject.tp_as_number.nb_add` slot." "addition via the :c:member:`~PyTypeObject.tp_as_number.nb_add` slot."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1214 #: ../Doc/c-api/typeobj.rst:1199
msgid "" msgid ""
"This function is used by :c:func:`PySequence_Repeat` and has the same " "This function is used by :c:func:`PySequence_Repeat` and has the same "
"signature. It is also used by the ``*`` operator, after trying numeric " "signature. It is also used by the ``*`` operator, after trying numeric "
@ -1449,14 +1445,14 @@ msgid ""
"slot." "slot."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1221 #: ../Doc/c-api/typeobj.rst:1206
msgid "" msgid ""
"This function is used by :c:func:`PySequence_GetItem` and has the same " "This function is used by :c:func:`PySequence_GetItem` and has the same "
"signature. This slot must be filled for the :c:func:`PySequence_Check` " "signature. This slot must be filled for the :c:func:`PySequence_Check` "
"function to return ``1``, it can be *NULL* otherwise." "function to return ``1``, it can be *NULL* otherwise."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1225 #: ../Doc/c-api/typeobj.rst:1210
msgid "" msgid ""
"Negative indexes are handled as follows: if the :attr:`sq_length` slot is " "Negative indexes are handled as follows: if the :attr:`sq_length` slot is "
"filled, it is called and the sequence length is used to compute a positive " "filled, it is called and the sequence length is used to compute a positive "
@ -1464,98 +1460,98 @@ msgid ""
"the index is passed as is to the function." "the index is passed as is to the function."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1232 #: ../Doc/c-api/typeobj.rst:1217
msgid "" msgid ""
"This function is used by :c:func:`PySequence_SetItem` and has the same " "This function is used by :c:func:`PySequence_SetItem` and has the same "
"signature. This slot may be left to *NULL* if the object does not support " "signature. This slot may be left to *NULL* if the object does not support "
"item assignment and deletion." "item assignment and deletion."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1238 #: ../Doc/c-api/typeobj.rst:1223
msgid "" msgid ""
"This function may be used by :c:func:`PySequence_Contains` and has the same " "This function may be used by :c:func:`PySequence_Contains` and has the same "
"signature. This slot may be left to *NULL*, in this case :c:func:" "signature. This slot may be left to *NULL*, in this case :c:func:"
"`PySequence_Contains` simply traverses the sequence until it finds a match." "`PySequence_Contains` simply traverses the sequence until it finds a match."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1245 #: ../Doc/c-api/typeobj.rst:1230
msgid "" msgid ""
"This function is used by :c:func:`PySequence_InPlaceConcat` and has the same " "This function is used by :c:func:`PySequence_InPlaceConcat` and has the same "
"signature. It should modify its first operand, and return it." "signature. It should modify its first operand, and return it."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1250 #: ../Doc/c-api/typeobj.rst:1235
msgid "" msgid ""
"This function is used by :c:func:`PySequence_InPlaceRepeat` and has the same " "This function is used by :c:func:`PySequence_InPlaceRepeat` and has the same "
"signature. It should modify its first operand, and return it." "signature. It should modify its first operand, and return it."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1260 #: ../Doc/c-api/typeobj.rst:1245
msgid "Buffer Object Structures" msgid "Buffer Object Structures"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1268 #: ../Doc/c-api/typeobj.rst:1253
msgid "" msgid ""
"This structure holds pointers to the functions required by the :ref:`Buffer " "This structure holds pointers to the functions required by the :ref:`Buffer "
"protocol <bufferobjects>`. The protocol defines how an exporter object can " "protocol <bufferobjects>`. The protocol defines how an exporter object can "
"expose its internal data to consumer objects." "expose its internal data to consumer objects."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1274 ../Doc/c-api/typeobj.rst:1323 #: ../Doc/c-api/typeobj.rst:1259 ../Doc/c-api/typeobj.rst:1308
#: ../Doc/c-api/typeobj.rst:1376 ../Doc/c-api/typeobj.rst:1387 #: ../Doc/c-api/typeobj.rst:1361 ../Doc/c-api/typeobj.rst:1372
#: ../Doc/c-api/typeobj.rst:1398 #: ../Doc/c-api/typeobj.rst:1383
msgid "The signature of this function is::" msgid "The signature of this function is::"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1278 #: ../Doc/c-api/typeobj.rst:1263
msgid "" msgid ""
"Handle a request to *exporter* to fill in *view* as specified by *flags*. " "Handle a request to *exporter* to fill in *view* as specified by *flags*. "
"Except for point (3), an implementation of this function MUST take these " "Except for point (3), an implementation of this function MUST take these "
"steps:" "steps:"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1282 #: ../Doc/c-api/typeobj.rst:1267
msgid "" msgid ""
"Check if the request can be met. If not, raise :c:data:`PyExc_BufferError`, " "Check if the request can be met. If not, raise :c:data:`PyExc_BufferError`, "
"set :c:data:`view->obj` to *NULL* and return ``-1``." "set :c:data:`view->obj` to *NULL* and return ``-1``."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1285 #: ../Doc/c-api/typeobj.rst:1270
msgid "Fill in the requested fields." msgid "Fill in the requested fields."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1287 #: ../Doc/c-api/typeobj.rst:1272
msgid "Increment an internal counter for the number of exports." msgid "Increment an internal counter for the number of exports."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1289 #: ../Doc/c-api/typeobj.rst:1274
msgid "" msgid ""
"Set :c:data:`view->obj` to *exporter* and increment :c:data:`view->obj`." "Set :c:data:`view->obj` to *exporter* and increment :c:data:`view->obj`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1291 #: ../Doc/c-api/typeobj.rst:1276
msgid "Return ``0``." msgid "Return ``0``."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1293 #: ../Doc/c-api/typeobj.rst:1278
msgid "" msgid ""
"If *exporter* is part of a chain or tree of buffer providers, two main " "If *exporter* is part of a chain or tree of buffer providers, two main "
"schemes can be used:" "schemes can be used:"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1296 #: ../Doc/c-api/typeobj.rst:1281
msgid "" msgid ""
"Re-export: Each member of the tree acts as the exporting object and sets :c:" "Re-export: Each member of the tree acts as the exporting object and sets :c:"
"data:`view->obj` to a new reference to itself." "data:`view->obj` to a new reference to itself."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1299 #: ../Doc/c-api/typeobj.rst:1284
msgid "" msgid ""
"Redirect: The buffer request is redirected to the root object of the tree. " "Redirect: The buffer request is redirected to the root object of the tree. "
"Here, :c:data:`view->obj` will be a new reference to the root object." "Here, :c:data:`view->obj` will be a new reference to the root object."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1303 #: ../Doc/c-api/typeobj.rst:1288
msgid "" msgid ""
"The individual fields of *view* are described in section :ref:`Buffer " "The individual fields of *view* are described in section :ref:`Buffer "
"structure <buffer-structure>`, the rules how an exporter must react to " "structure <buffer-structure>`, the rules how an exporter must react to "
@ -1563,7 +1559,7 @@ msgid ""
"types>`." "types>`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1308 #: ../Doc/c-api/typeobj.rst:1293
msgid "" msgid ""
"All memory pointed to in the :c:type:`Py_buffer` structure belongs to the " "All memory pointed to in the :c:type:`Py_buffer` structure belongs to the "
"exporter and must remain valid until there are no consumers left. :c:member:" "exporter and must remain valid until there are no consumers left. :c:member:"
@ -1572,19 +1568,19 @@ msgid ""
"internal` are read-only for the consumer." "internal` are read-only for the consumer."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1315 #: ../Doc/c-api/typeobj.rst:1300
msgid "" msgid ""
":c:func:`PyBuffer_FillInfo` provides an easy way of exposing a simple bytes " ":c:func:`PyBuffer_FillInfo` provides an easy way of exposing a simple bytes "
"buffer while dealing correctly with all request types." "buffer while dealing correctly with all request types."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1318 #: ../Doc/c-api/typeobj.rst:1303
msgid "" msgid ""
":c:func:`PyObject_GetBuffer` is the interface for the consumer that wraps " ":c:func:`PyObject_GetBuffer` is the interface for the consumer that wraps "
"this function." "this function."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1327 #: ../Doc/c-api/typeobj.rst:1312
msgid "" msgid ""
"Handle a request to release the resources of the buffer. If no resources " "Handle a request to release the resources of the buffer. If no resources "
"need to be released, :c:member:`PyBufferProcs.bf_releasebuffer` may be " "need to be released, :c:member:`PyBufferProcs.bf_releasebuffer` may be "
@ -1592,15 +1588,15 @@ msgid ""
"these optional steps:" "these optional steps:"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1332 #: ../Doc/c-api/typeobj.rst:1317
msgid "Decrement an internal counter for the number of exports." msgid "Decrement an internal counter for the number of exports."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1334 #: ../Doc/c-api/typeobj.rst:1319
msgid "If the counter is ``0``, free all memory associated with *view*." msgid "If the counter is ``0``, free all memory associated with *view*."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1336 #: ../Doc/c-api/typeobj.rst:1321
msgid "" msgid ""
"The exporter MUST use the :c:member:`~Py_buffer.internal` field to keep " "The exporter MUST use the :c:member:`~Py_buffer.internal` field to keep "
"track of buffer-specific resources. This field is guaranteed to remain " "track of buffer-specific resources. This field is guaranteed to remain "
@ -1608,52 +1604,52 @@ msgid ""
"*view* argument." "*view* argument."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1342 #: ../Doc/c-api/typeobj.rst:1327
msgid "" msgid ""
"This function MUST NOT decrement :c:data:`view->obj`, since that is done " "This function MUST NOT decrement :c:data:`view->obj`, since that is done "
"automatically in :c:func:`PyBuffer_Release` (this scheme is useful for " "automatically in :c:func:`PyBuffer_Release` (this scheme is useful for "
"breaking reference cycles)." "breaking reference cycles)."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1347 #: ../Doc/c-api/typeobj.rst:1332
msgid "" msgid ""
":c:func:`PyBuffer_Release` is the interface for the consumer that wraps this " ":c:func:`PyBuffer_Release` is the interface for the consumer that wraps this "
"function." "function."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1355 #: ../Doc/c-api/typeobj.rst:1340
msgid "Async Object Structures" msgid "Async Object Structures"
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1363 #: ../Doc/c-api/typeobj.rst:1348
msgid "" msgid ""
"This structure holds pointers to the functions required to implement :term:" "This structure holds pointers to the functions required to implement :term:"
"`awaitable` and :term:`asynchronous iterator` objects." "`awaitable` and :term:`asynchronous iterator` objects."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1380 #: ../Doc/c-api/typeobj.rst:1365
msgid "" msgid ""
"The returned object must be an iterator, i.e. :c:func:`PyIter_Check` must " "The returned object must be an iterator, i.e. :c:func:`PyIter_Check` must "
"return ``1`` for it." "return ``1`` for it."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1383 #: ../Doc/c-api/typeobj.rst:1368
msgid "" msgid ""
"This slot may be set to *NULL* if an object is not an :term:`awaitable`." "This slot may be set to *NULL* if an object is not an :term:`awaitable`."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1391 #: ../Doc/c-api/typeobj.rst:1376
msgid "" msgid ""
"Must return an :term:`awaitable` object. See :meth:`__anext__` for details." "Must return an :term:`awaitable` object. See :meth:`__anext__` for details."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1393 #: ../Doc/c-api/typeobj.rst:1378
msgid "" msgid ""
"This slot may be set to *NULL* if an object does not implement asynchronous " "This slot may be set to *NULL* if an object does not implement asynchronous "
"iteration protocol." "iteration protocol."
msgstr "" msgstr ""
#: ../Doc/c-api/typeobj.rst:1402 #: ../Doc/c-api/typeobj.rst:1387
msgid "" msgid ""
"Must return an :term:`awaitable` object. See :meth:`__anext__` for details. " "Must return an :term:`awaitable` object. See :meth:`__anext__` for details. "
"This slot may be set to *NULL*." "This slot may be set to *NULL*."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Distributing Python Modules" msgid "Distributing Python Modules"
msgstr "Distribuer des Modules Python" msgstr "Distribuer des Modules Python"
#: ../Doc/distributing/index.rst:0
msgid "Email"
msgstr ""
#: ../Doc/distributing/index.rst:7 #: ../Doc/distributing/index.rst:7
msgid "distutils-sig@python.org" msgid "distutils-sig@python.org"
msgstr "distutils-sig@python.org" msgstr "distutils-sig@python.org"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,18 +21,10 @@ msgstr ""
msgid "Distributing Python Modules (Legacy version)" msgid "Distributing Python Modules (Legacy version)"
msgstr "" msgstr ""
#: ../Doc/distutils/index.rst:0
msgid "Authors"
msgstr ""
#: ../Doc/distutils/index.rst:7 #: ../Doc/distutils/index.rst:7
msgid "Greg Ward, Anthony Baxter" msgid "Greg Ward, Anthony Baxter"
msgstr "" msgstr ""
#: ../Doc/distutils/index.rst:0
msgid "Email"
msgstr ""
#: ../Doc/distutils/index.rst:8 #: ../Doc/distutils/index.rst:8
msgid "distutils-sig@python.org" msgid "distutils-sig@python.org"
msgstr "distutils-sig@python.org" msgstr "distutils-sig@python.org"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -38,6 +38,10 @@ msgstr ""
"le lancement de programmes depuis la ligne de commande de Windows alors tout " "le lancement de programmes depuis la ligne de commande de Windows alors tout "
"semblera évident; Sinon, vous auriez besoin d'être un peu guidé." "semblera évident; Sinon, vous auriez besoin d'être un peu guidé."
#: ../Doc/faq/windows.rst:0
msgid "|Python Development on XP|_"
msgstr "Développement |Python sur XP|_"
#: ../Doc/faq/windows.rst:27 #: ../Doc/faq/windows.rst:27
msgid "" msgid ""
"This series of screencasts aims to get you up and running with Python on " "This series of screencasts aims to get you up and running with Python on "
@ -125,6 +129,10 @@ msgid ""
"``>>>``, gives you a message like::" "``>>>``, gives you a message like::"
msgstr "" msgstr ""
#: ../Doc/faq/windows.rst:0
msgid "|Adding Python to DOS Path|_"
msgstr ""
#: ../Doc/faq/windows.rst:102 #: ../Doc/faq/windows.rst:102
msgid "" msgid ""
"Python is not added to the DOS path by default. This screencast will walk " "Python is not added to the DOS path by default. This screencast will walk "
@ -447,6 +455,3 @@ msgid ""
"will be able to handle it. (If your copy of WinZip doesn't, get a newer one " "will be able to handle it. (If your copy of WinZip doesn't, get a newer one "
"from https://www.winzip.com.)" "from https://www.winzip.com.)"
msgstr "" msgstr ""
#~ msgid "|Python Development on XP|_"
#~ msgstr "Développement |Python sur XP|_"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 14:06+0200\n" "PO-Revision-Date: 2017-08-10 14:06+0200\n"
"Last-Translator: Hugo Ludmann <ludmann.h@gmail.com>\n" "Last-Translator: Hugo Ludmann <ludmann.h@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Argparse Tutorial" msgid "Argparse Tutorial"
msgstr "Tutoriel Argparse" msgstr "Tutoriel Argparse"
#: ../Doc/howto/argparse.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/argparse.rst:5 #: ../Doc/howto/argparse.rst:5
msgid "Tshepang Lekhonkhobe" msgid "Tshepang Lekhonkhobe"
msgstr "Tshepang Lekhonkhobe" msgstr "Tshepang Lekhonkhobe"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-11 19:00+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:58+0200\n" "PO-Revision-Date: 2017-08-10 00:58+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Argument Clinic How-To" msgid "Argument Clinic How-To"
msgstr "" msgstr ""
#: ../Doc/howto/clinic.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/clinic.rst:7 #: ../Doc/howto/clinic.rst:7
msgid "Larry Hastings" msgid "Larry Hastings"
msgstr "" msgstr ""
#: ../Doc/howto/clinic.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/clinic.rst:12 #: ../Doc/howto/clinic.rst:12
msgid "" msgid ""
"Argument Clinic is a preprocessor for CPython C files. Its purpose is to " "Argument Clinic is a preprocessor for CPython C files. Its purpose is to "
@ -2432,6 +2432,3 @@ msgid ""
"Since Python comments are different from C comments, Argument Clinic blocks " "Since Python comments are different from C comments, Argument Clinic blocks "
"embedded in Python files look slightly different. They look like this:" "embedded in Python files look slightly different. They look like this:"
msgstr "" msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Porting Extension Modules to Python 3" msgid "Porting Extension Modules to Python 3"
msgstr "" msgstr ""
#: ../Doc/howto/cporting.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/cporting.rst:9 #: ../Doc/howto/cporting.rst:9
msgid "Benjamin Peterson" msgid "Benjamin Peterson"
msgstr "Benjamin Peterson" msgstr "Benjamin Peterson"
#: ../Doc/howto/cporting.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/cporting.rst:14 #: ../Doc/howto/cporting.rst:14
msgid "" msgid ""
"Although changing the C-API was not one of Python 3's objectives, the many " "Although changing the C-API was not one of Python 3's objectives, the many "
@ -190,6 +190,3 @@ msgid ""
"<http://cython.org/>`_. It translates a Python-like language to C. The " "<http://cython.org/>`_. It translates a Python-like language to C. The "
"extension modules it creates are compatible with Python 3 and Python 2." "extension modules it creates are compatible with Python 3 and Python 2."
msgstr "" msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,22 +21,18 @@ msgstr ""
msgid "Curses Programming with Python" msgid "Curses Programming with Python"
msgstr "" msgstr ""
#: ../Doc/howto/curses.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/curses.rst:7 #: ../Doc/howto/curses.rst:7
msgid "A.M. Kuchling, Eric S. Raymond" msgid "A.M. Kuchling, Eric S. Raymond"
msgstr "" msgstr ""
#: ../Doc/howto/curses.rst:0
msgid "Release"
msgstr "Version"
#: ../Doc/howto/curses.rst:8 #: ../Doc/howto/curses.rst:8
msgid "2.04" msgid "2.04"
msgstr "" msgstr ""
#: ../Doc/howto/curses.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/curses.rst:13 #: ../Doc/howto/curses.rst:13
msgid "" msgid ""
"This document describes how to use the :mod:`curses` extension module to " "This document describes how to use the :mod:`curses` extension module to "
@ -735,5 +731,5 @@ msgid ""
"demonstrating some applications written using Urwid." "demonstrating some applications written using Urwid."
msgstr "" msgstr ""
#~ msgid "Abstract" #~ msgid "Release"
#~ msgstr "Résumé" #~ msgstr "Version"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,22 +21,18 @@ msgstr ""
msgid "Descriptor HowTo Guide" msgid "Descriptor HowTo Guide"
msgstr "" msgstr ""
#: ../Doc/howto/descriptor.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/descriptor.rst:5 #: ../Doc/howto/descriptor.rst:5
msgid "Raymond Hettinger" msgid "Raymond Hettinger"
msgstr "" msgstr ""
#: ../Doc/howto/descriptor.rst:0
msgid "Contact"
msgstr ""
#: ../Doc/howto/descriptor.rst:6 #: ../Doc/howto/descriptor.rst:6
msgid "<python at rcn dot com>" msgid "<python at rcn dot com>"
msgstr "" msgstr ""
#: ../Doc/howto/descriptor.rst:0
msgid "Contents"
msgstr ""
#: ../Doc/howto/descriptor.rst:11 #: ../Doc/howto/descriptor.rst:11
msgid "Abstract" msgid "Abstract"
msgstr "Résumé" msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,18 +21,10 @@ msgstr ""
msgid "Functional Programming HOWTO" msgid "Functional Programming HOWTO"
msgstr "" msgstr ""
#: ../Doc/howto/functional.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/functional.rst:5 #: ../Doc/howto/functional.rst:5
msgid "A. M. Kuchling" msgid "A. M. Kuchling"
msgstr "" msgstr ""
#: ../Doc/howto/functional.rst:0
msgid "Release"
msgstr "Version"
#: ../Doc/howto/functional.rst:6 #: ../Doc/howto/functional.rst:6
msgid "0.32" msgid "0.32"
msgstr "" msgstr ""
@ -1376,3 +1368,6 @@ msgid ""
":pep:`342`: \"Coroutines via Enhanced Generators\" describes the new " ":pep:`342`: \"Coroutines via Enhanced Generators\" describes the new "
"generator features in Python 2.5." "generator features in Python 2.5."
msgstr "" msgstr ""
#~ msgid "Release"
#~ msgstr "Version"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Instrumenting CPython with DTrace and SystemTap" msgid "Instrumenting CPython with DTrace and SystemTap"
msgstr "" msgstr ""
#: ../Doc/howto/instrumentation.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/instrumentation.rst:9 #: ../Doc/howto/instrumentation.rst:9
msgid "David Malcolm" msgid "David Malcolm"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "An introduction to the ipaddress module" msgid "An introduction to the ipaddress module"
msgstr "" msgstr ""
#: ../Doc/howto/ipaddress.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/ipaddress.rst:11 #: ../Doc/howto/ipaddress.rst:11
msgid "Peter Moody" msgid "Peter Moody"
msgstr "" msgstr ""
@ -33,6 +29,10 @@ msgstr ""
msgid "Nick Coghlan" msgid "Nick Coghlan"
msgstr "" msgstr ""
#: ../Doc/howto/ipaddress.rst:0
msgid "Overview"
msgstr ""
#: ../Doc/howto/ipaddress.rst:16 #: ../Doc/howto/ipaddress.rst:16
msgid "" msgid ""
"This document aims to provide a gentle introduction to the :mod:`ipaddress` " "This document aims to provide a gentle introduction to the :mod:`ipaddress` "

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Logging Cookbook" msgid "Logging Cookbook"
msgstr "" msgstr ""
#: ../Doc/howto/logging-cookbook.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/logging-cookbook.rst:7 #: ../Doc/howto/logging-cookbook.rst:7
msgid "Vinay Sajip <vinay_sajip at red-dove dot com>" msgid "Vinay Sajip <vinay_sajip at red-dove dot com>"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Logging HOWTO" msgid "Logging HOWTO"
msgstr "" msgstr ""
#: ../Doc/howto/logging.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/logging.rst:5 #: ../Doc/howto/logging.rst:5
msgid "Vinay Sajip <vinay_sajip at red-dove dot com>" msgid "Vinay Sajip <vinay_sajip at red-dove dot com>"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Porting Python 2 Code to Python 3" msgid "Porting Python 2 Code to Python 3"
msgstr "" msgstr ""
#: ../Doc/howto/pyporting.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/pyporting.rst:7 #: ../Doc/howto/pyporting.rst:7
msgid "Brett Cannon" msgid "Brett Cannon"
msgstr "" msgstr ""
#: ../Doc/howto/pyporting.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/pyporting.rst:11 #: ../Doc/howto/pyporting.rst:11
msgid "" msgid ""
"With Python 3 being the future of Python while Python 2 is still in active " "With Python 3 being the future of Python while Python 2 is still in active "
@ -631,6 +631,3 @@ msgid ""
"binary data, helping to make sure everything functions as expected in both " "binary data, helping to make sure everything functions as expected in both "
"versions of Python." "versions of Python."
msgstr "" msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:58+0200\n" "PO-Revision-Date: 2017-08-10 00:58+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Regular Expression HOWTO" msgid "Regular Expression HOWTO"
msgstr "" msgstr ""
#: ../Doc/howto/regex.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/regex.rst:7 #: ../Doc/howto/regex.rst:7
msgid "A.M. Kuchling <amk@amk.ca>" msgid "A.M. Kuchling <amk@amk.ca>"
msgstr "" msgstr ""
#: ../Doc/howto/regex.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/regex.rst:18 #: ../Doc/howto/regex.rst:18
msgid "" msgid ""
"This document is an introductory tutorial to using regular expressions in " "This document is an introductory tutorial to using regular expressions in "
@ -1826,6 +1826,3 @@ msgid ""
"edition covered Python's now-removed :mod:`regex` module, which won't help " "edition covered Python's now-removed :mod:`regex` module, which won't help "
"you much.) Consider checking it out from your library." "you much.) Consider checking it out from your library."
msgstr "" msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Socket Programming HOWTO" msgid "Socket Programming HOWTO"
msgstr "" msgstr ""
#: ../Doc/howto/sockets.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/sockets.rst:7 #: ../Doc/howto/sockets.rst:7
msgid "Gordon McMillan" msgid "Gordon McMillan"
msgstr "" msgstr ""
#: ../Doc/howto/sockets.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/sockets.rst:12 #: ../Doc/howto/sockets.rst:12
msgid "" msgid ""
"Sockets are used nearly everywhere, but are one of the most severely " "Sockets are used nearly everywhere, but are one of the most severely "
@ -475,6 +475,3 @@ msgid ""
"differently on Windows. In fact, on Windows I usually use threads (which " "differently on Windows. In fact, on Windows I usually use threads (which "
"work very, very well) with my sockets." "work very, very well) with my sockets."
msgstr "" msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,18 +21,10 @@ msgstr ""
msgid "Sorting HOW TO" msgid "Sorting HOW TO"
msgstr "" msgstr ""
#: ../Doc/howto/sorting.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/sorting.rst:6 #: ../Doc/howto/sorting.rst:6
msgid "Andrew Dalke and Raymond Hettinger" msgid "Andrew Dalke and Raymond Hettinger"
msgstr "" msgstr ""
#: ../Doc/howto/sorting.rst:0
msgid "Release"
msgstr "Version"
#: ../Doc/howto/sorting.rst:7 #: ../Doc/howto/sorting.rst:7
msgid "0.1" msgid "0.1"
msgstr "" msgstr ""
@ -319,3 +311,6 @@ msgid ""
"grades are stored in a dictionary, they can be used to sort a separate list " "grades are stored in a dictionary, they can be used to sort a separate list "
"of student names:" "of student names:"
msgstr "" msgstr ""
#~ msgid "Release"
#~ msgstr "Version"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Unicode HOWTO" msgid "Unicode HOWTO"
msgstr "" msgstr ""
#: ../Doc/howto/unicode.rst:0
msgid "Release"
msgstr "Version"
#: ../Doc/howto/unicode.rst:7 #: ../Doc/howto/unicode.rst:7
msgid "1.12" msgid "1.12"
msgstr "" msgstr ""
@ -910,3 +906,6 @@ msgid ""
"Gedminas, Kent Johnson, Ken Krugler, Marc-André Lemburg, Martin von Löwis, " "Gedminas, Kent Johnson, Ken Krugler, Marc-André Lemburg, Martin von Löwis, "
"Terry J. Reedy, Chad Whitacre." "Terry J. Reedy, Chad Whitacre."
msgstr "" msgstr ""
#~ msgid "Release"
#~ msgstr "Version"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "HOWTO Fetch Internet Resources Using The urllib Package" msgid "HOWTO Fetch Internet Resources Using The urllib Package"
msgstr "" msgstr ""
#: ../Doc/howto/urllib2.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/urllib2.rst:7 #: ../Doc/howto/urllib2.rst:7
msgid "`Michael Foord <http://www.voidspace.org.uk/python/index.shtml>`_" msgid "`Michael Foord <http://www.voidspace.org.uk/python/index.shtml>`_"
msgstr "" msgstr ""
@ -40,6 +36,10 @@ msgstr ""
msgid "Introduction" msgid "Introduction"
msgstr "Introduction" msgstr "Introduction"
#: ../Doc/howto/urllib2.rst:0
msgid "Related Articles"
msgstr ""
#: ../Doc/howto/urllib2.rst:22 #: ../Doc/howto/urllib2.rst:22
msgid "" msgid ""
"You may also find useful the following article on fetching web resources " "You may also find useful the following article on fetching web resources "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-05-27 10:29+0200\n" "PO-Revision-Date: 2017-05-27 10:29+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Installing Python Modules (Legacy version)" msgid "Installing Python Modules (Legacy version)"
msgstr "installation des modules python (Version historique)" msgstr "installation des modules python (Version historique)"
#: ../Doc/install/index.rst:0
msgid "Author"
msgstr ""
#: ../Doc/install/index.rst:9 #: ../Doc/install/index.rst:9
msgid "Greg Ward" msgid "Greg Ward"
msgstr "Greg Ward" msgstr "Greg Ward"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Installing Python Modules" msgid "Installing Python Modules"
msgstr "L'installation de modules Python" msgstr "L'installation de modules Python"
#: ../Doc/installing/index.rst:0
msgid "Email"
msgstr ""
#: ../Doc/installing/index.rst:9 #: ../Doc/installing/index.rst:9
msgid "distutils-sig@python.org" msgid "distutils-sig@python.org"
msgstr "distutils-sig@python.org" msgstr "distutils-sig@python.org"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -29,6 +29,10 @@ msgstr ""
msgid "**Source code:** :source:`Lib/argparse.py`" msgid "**Source code:** :source:`Lib/argparse.py`"
msgstr "**Code source:** :source:`Lib/argparse.py`" msgstr "**Code source:** :source:`Lib/argparse.py`"
#: ../Doc/library/argparse.rst:0
msgid "Tutorial"
msgstr "Tutoriel"
#: ../Doc/library/argparse.rst:18 #: ../Doc/library/argparse.rst:18
msgid "" msgid ""
"This page contains the API reference information. For a more gentle " "This page contains the API reference information. For a more gentle "
@ -1703,6 +1707,3 @@ msgid ""
"``parser.add_argument('--version', action='version', version='<the " "``parser.add_argument('--version', action='version', version='<the "
"version>')``." "version>')``."
msgstr "" msgstr ""
#~ msgid "Tutorial"
#~ msgstr "Tutoriel"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -369,55 +369,27 @@ msgstr ""
msgid "The default mappings are:" msgid "The default mappings are:"
msgstr "" msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "subject"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:324 #: ../Doc/library/email.headerregistry.rst:324
msgid "UniqueUnstructuredHeader" msgid "UniqueUnstructuredHeader"
msgstr "UniqueUnstructuredHeader" msgstr "UniqueUnstructuredHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "date"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:325 #: ../Doc/library/email.headerregistry.rst:325
#: ../Doc/library/email.headerregistry.rst:327 #: ../Doc/library/email.headerregistry.rst:327
msgid "UniqueDateHeader" msgid "UniqueDateHeader"
msgstr "UniqueDateHeader" msgstr "UniqueDateHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-date"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:326 #: ../Doc/library/email.headerregistry.rst:326
msgid "DateHeader" msgid "DateHeader"
msgstr "DateHeader" msgstr "DateHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "orig-date"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "sender"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:328 #: ../Doc/library/email.headerregistry.rst:328
msgid "UniqueSingleAddressHeader" msgid "UniqueSingleAddressHeader"
msgstr "UniqueSingleAddressHeader" msgstr "UniqueSingleAddressHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-sender"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:329 #: ../Doc/library/email.headerregistry.rst:329
msgid "SingleAddressHeader" msgid "SingleAddressHeader"
msgstr "SingleAddressHeader" msgstr "SingleAddressHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "to"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:330 #: ../Doc/library/email.headerregistry.rst:330
#: ../Doc/library/email.headerregistry.rst:332 #: ../Doc/library/email.headerregistry.rst:332
#: ../Doc/library/email.headerregistry.rst:334 #: ../Doc/library/email.headerregistry.rst:334
@ -425,36 +397,12 @@ msgstr ""
msgid "UniqueAddressHeader" msgid "UniqueAddressHeader"
msgstr "UniqueAddressHeader" msgstr "UniqueAddressHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-to"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:331 #: ../Doc/library/email.headerregistry.rst:331
#: ../Doc/library/email.headerregistry.rst:333 #: ../Doc/library/email.headerregistry.rst:333
#: ../Doc/library/email.headerregistry.rst:335 #: ../Doc/library/email.headerregistry.rst:335
msgid "AddressHeader" msgid "AddressHeader"
msgstr "AddressHeader" msgstr "AddressHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "cc"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-cc"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "from"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-from"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "reply-to"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:338 #: ../Doc/library/email.headerregistry.rst:338
msgid "``HeaderRegistry`` has the following methods:" msgid "``HeaderRegistry`` has the following methods:"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -435,18 +435,10 @@ msgstr ""
msgid "The complete signature is::" msgid "The complete signature is::"
msgstr "" msgstr ""
#: ../Doc/library/enum.rst:0
msgid "value"
msgstr "valeur"
#: ../Doc/library/enum.rst:505 #: ../Doc/library/enum.rst:505
msgid "What the new Enum class will record as its name." msgid "What the new Enum class will record as its name."
msgstr "" msgstr ""
#: ../Doc/library/enum.rst:0
msgid "names"
msgstr ""
#: ../Doc/library/enum.rst:507 #: ../Doc/library/enum.rst:507
msgid "" msgid ""
"The Enum members. This can be a whitespace or comma separated string " "The Enum members. This can be a whitespace or comma separated string "
@ -465,34 +457,18 @@ msgstr ""
msgid "or a mapping::" msgid "or a mapping::"
msgstr "" msgstr ""
#: ../Doc/library/enum.rst:0
msgid "module"
msgstr "module"
#: ../Doc/library/enum.rst:524 #: ../Doc/library/enum.rst:524
msgid "name of module where new Enum class can be found." msgid "name of module where new Enum class can be found."
msgstr "" msgstr ""
#: ../Doc/library/enum.rst:0
msgid "qualname"
msgstr ""
#: ../Doc/library/enum.rst:526 #: ../Doc/library/enum.rst:526
msgid "where in module new Enum class can be found." msgid "where in module new Enum class can be found."
msgstr "" msgstr ""
#: ../Doc/library/enum.rst:0
msgid "type"
msgstr "type"
#: ../Doc/library/enum.rst:528 #: ../Doc/library/enum.rst:528
msgid "type to mix in to new Enum class." msgid "type to mix in to new Enum class."
msgstr "" msgstr ""
#: ../Doc/library/enum.rst:0
msgid "start"
msgstr ""
#: ../Doc/library/enum.rst:530 #: ../Doc/library/enum.rst:530
msgid "number to start counting at if only names are passed in." msgid "number to start counting at if only names are passed in."
msgstr "" msgstr ""
@ -954,3 +930,12 @@ msgid ""
"If a combination of Flag members is not named, the :func:`repr` will include " "If a combination of Flag members is not named, the :func:`repr` will include "
"all named flags and all named combinations of flags that are in the value::" "all named flags and all named combinations of flags that are in the value::"
msgstr "" msgstr ""
#~ msgid "value"
#~ msgstr "valeur"
#~ msgid "module"
#~ msgstr "module"
#~ msgid "type"
#~ msgstr "type"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 01:00+0200\n" "PO-Revision-Date: 2017-08-10 01:00+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -582,24 +582,24 @@ msgid ""
"sent to users and later verify them to make sure they weren't tampered with::" "sent to users and later verify them to make sure they weren't tampered with::"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:523 #: ../Doc/library/hashlib.rst:524
msgid "" msgid ""
"Even though there's a native keyed hashing mode, BLAKE2 can, of course, be " "Even though there's a native keyed hashing mode, BLAKE2 can, of course, be "
"used in HMAC construction with :mod:`hmac` module::" "used in HMAC construction with :mod:`hmac` module::"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:534 #: ../Doc/library/hashlib.rst:535
msgid "Randomized hashing" msgid "Randomized hashing"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:536 #: ../Doc/library/hashlib.rst:537
msgid "" msgid ""
"By setting *salt* parameter users can introduce randomization to the hash " "By setting *salt* parameter users can introduce randomization to the hash "
"function. Randomized hashing is useful for protecting against collision " "function. Randomized hashing is useful for protecting against collision "
"attacks on the hash function used in digital signatures." "attacks on the hash function used in digital signatures."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:540 #: ../Doc/library/hashlib.rst:541
msgid "" msgid ""
"Randomized hashing is designed for situations where one party, the message " "Randomized hashing is designed for situations where one party, the message "
"preparer, generates all or part of a message to be signed by a second party, " "preparer, generates all or part of a message to be signed by a second party, "
@ -620,37 +620,37 @@ msgid ""
"message are prepared by the signer." "message are prepared by the signer."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:559 #: ../Doc/library/hashlib.rst:560
msgid "" msgid ""
"(`NIST SP-800-106 \"Randomized Hashing for Digital Signatures\" <http://csrc." "(`NIST SP-800-106 \"Randomized Hashing for Digital Signatures\" <http://csrc."
"nist.gov/publications/nistpubs/800-106/NIST-SP-800-106.pdf>`_)" "nist.gov/publications/nistpubs/800-106/NIST-SP-800-106.pdf>`_)"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:562 #: ../Doc/library/hashlib.rst:563
msgid "" msgid ""
"In BLAKE2 the salt is processed as a one-time input to the hash function " "In BLAKE2 the salt is processed as a one-time input to the hash function "
"during initialization, rather than as an input to each compression function." "during initialization, rather than as an input to each compression function."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:567 #: ../Doc/library/hashlib.rst:568
msgid "" msgid ""
"*Salted hashing* (or just hashing) with BLAKE2 or any other general-purpose " "*Salted hashing* (or just hashing) with BLAKE2 or any other general-purpose "
"cryptographic hash function, such as SHA-256, is not suitable for hashing " "cryptographic hash function, such as SHA-256, is not suitable for hashing "
"passwords. See `BLAKE2 FAQ <https://blake2.net/#qa>`_ for more information." "passwords. See `BLAKE2 FAQ <https://blake2.net/#qa>`_ for more information."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:590 #: ../Doc/library/hashlib.rst:591
msgid "Personalization" msgid "Personalization"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:592 #: ../Doc/library/hashlib.rst:593
msgid "" msgid ""
"Sometimes it is useful to force hash function to produce different digests " "Sometimes it is useful to force hash function to produce different digests "
"for the same input for different purposes. Quoting the authors of the Skein " "for the same input for different purposes. Quoting the authors of the Skein "
"hash function:" "hash function:"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:596 #: ../Doc/library/hashlib.rst:597
msgid "" msgid ""
"We recommend that all application designers seriously consider doing this; " "We recommend that all application designers seriously consider doing this; "
"we have seen many protocols where a hash that is computed in one part of the " "we have seen many protocols where a hash that is computed in one part of the "
@ -660,41 +660,41 @@ msgid ""
"hash function used in the protocol summarily stops this type of attack." "hash function used in the protocol summarily stops this type of attack."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:603 #: ../Doc/library/hashlib.rst:604
msgid "" msgid ""
"(`The Skein Hash Function Family <http://www.skein-hash.info/sites/default/" "(`The Skein Hash Function Family <http://www.skein-hash.info/sites/default/"
"files/skein1.3.pdf>`_, p. 21)" "files/skein1.3.pdf>`_, p. 21)"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:607 #: ../Doc/library/hashlib.rst:608
msgid "BLAKE2 can be personalized by passing bytes to the *person* argument::" msgid "BLAKE2 can be personalized by passing bytes to the *person* argument::"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:621 #: ../Doc/library/hashlib.rst:622
msgid "" msgid ""
"Personalization together with the keyed mode can also be used to derive " "Personalization together with the keyed mode can also be used to derive "
"different keys from a single one." "different keys from a single one."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:635 #: ../Doc/library/hashlib.rst:636
msgid "Tree mode" msgid "Tree mode"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:637 #: ../Doc/library/hashlib.rst:638
msgid "Here's an example of hashing a minimal tree with two leaf nodes::" msgid "Here's an example of hashing a minimal tree with two leaf nodes::"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:643 #: ../Doc/library/hashlib.rst:644
msgid "" msgid ""
"This example uses 64-byte internal digests, and returns the 32-byte final " "This example uses 64-byte internal digests, and returns the 32-byte final "
"digest::" "digest::"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:673 #: ../Doc/library/hashlib.rst:674
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:675 #: ../Doc/library/hashlib.rst:676
msgid "" msgid ""
"BLAKE2_ was designed by *Jean-Philippe Aumasson*, *Samuel Neves*, *Zooko " "BLAKE2_ was designed by *Jean-Philippe Aumasson*, *Samuel Neves*, *Zooko "
"Wilcox-O'Hearn*, and *Christian Winnerlein* based on SHA-3_ finalist BLAKE_ " "Wilcox-O'Hearn*, and *Christian Winnerlein* based on SHA-3_ finalist BLAKE_ "
@ -702,102 +702,102 @@ msgid ""
"*Raphael C.-W. Phan*." "*Raphael C.-W. Phan*."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:680 #: ../Doc/library/hashlib.rst:681
msgid "" msgid ""
"It uses core algorithm from ChaCha_ cipher designed by *Daniel J. " "It uses core algorithm from ChaCha_ cipher designed by *Daniel J. "
"Bernstein*." "Bernstein*."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:682 #: ../Doc/library/hashlib.rst:683
msgid "" msgid ""
"The stdlib implementation is based on pyblake2_ module. It was written by " "The stdlib implementation is based on pyblake2_ module. It was written by "
"*Dmitry Chestnykh* based on C implementation written by *Samuel Neves*. The " "*Dmitry Chestnykh* based on C implementation written by *Samuel Neves*. The "
"documentation was copied from pyblake2_ and written by *Dmitry Chestnykh*." "documentation was copied from pyblake2_ and written by *Dmitry Chestnykh*."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:686 #: ../Doc/library/hashlib.rst:687
msgid "The C code was partly rewritten for Python by *Christian Heimes*." msgid "The C code was partly rewritten for Python by *Christian Heimes*."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:688 #: ../Doc/library/hashlib.rst:689
msgid "" msgid ""
"The following public domain dedication applies for both C hash function " "The following public domain dedication applies for both C hash function "
"implementation, extension code, and this documentation:" "implementation, extension code, and this documentation:"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:691 #: ../Doc/library/hashlib.rst:692
msgid "" msgid ""
"To the extent possible under law, the author(s) have dedicated all copyright " "To the extent possible under law, the author(s) have dedicated all copyright "
"and related and neighboring rights to this software to the public domain " "and related and neighboring rights to this software to the public domain "
"worldwide. This software is distributed without any warranty." "worldwide. This software is distributed without any warranty."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:695 #: ../Doc/library/hashlib.rst:696
msgid "" msgid ""
"You should have received a copy of the CC0 Public Domain Dedication along " "You should have received a copy of the CC0 Public Domain Dedication along "
"with this software. If not, see http://creativecommons.org/publicdomain/" "with this software. If not, see http://creativecommons.org/publicdomain/"
"zero/1.0/." "zero/1.0/."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:699 #: ../Doc/library/hashlib.rst:700
msgid "" msgid ""
"The following people have helped with development or contributed their " "The following people have helped with development or contributed their "
"changes to the project and the public domain according to the Creative " "changes to the project and the public domain according to the Creative "
"Commons Public Domain Dedication 1.0 Universal:" "Commons Public Domain Dedication 1.0 Universal:"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:703 #: ../Doc/library/hashlib.rst:704
msgid "*Alexandr Sokolovskiy*" msgid "*Alexandr Sokolovskiy*"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:718 #: ../Doc/library/hashlib.rst:719
msgid "Module :mod:`hmac`" msgid "Module :mod:`hmac`"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:718 #: ../Doc/library/hashlib.rst:719
msgid "A module to generate message authentication codes using hashes." msgid "A module to generate message authentication codes using hashes."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:721 #: ../Doc/library/hashlib.rst:722
msgid "Module :mod:`base64`" msgid "Module :mod:`base64`"
msgstr "Module :mod:`base64`" msgstr "Module :mod:`base64`"
#: ../Doc/library/hashlib.rst:721 #: ../Doc/library/hashlib.rst:722
msgid "Another way to encode binary hashes for non-binary environments." msgid "Another way to encode binary hashes for non-binary environments."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:724 #: ../Doc/library/hashlib.rst:725
msgid "https://blake2.net" msgid "https://blake2.net"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:724 #: ../Doc/library/hashlib.rst:725
msgid "Official BLAKE2 website." msgid "Official BLAKE2 website."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:727 #: ../Doc/library/hashlib.rst:728
msgid "http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf" msgid "http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:727 #: ../Doc/library/hashlib.rst:728
msgid "The FIPS 180-2 publication on Secure Hash Algorithms." msgid "The FIPS 180-2 publication on Secure Hash Algorithms."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:731 #: ../Doc/library/hashlib.rst:732
msgid "" msgid ""
"https://en.wikipedia.org/wiki/" "https://en.wikipedia.org/wiki/"
"Cryptographic_hash_function#Cryptographic_hash_algorithms" "Cryptographic_hash_function#Cryptographic_hash_algorithms"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:730 #: ../Doc/library/hashlib.rst:731
msgid "" msgid ""
"Wikipedia article with information on which algorithms have known issues and " "Wikipedia article with information on which algorithms have known issues and "
"what that means regarding their use." "what that means regarding their use."
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:733 #: ../Doc/library/hashlib.rst:734
msgid "https://www.ietf.org/rfc/rfc2898.txt" msgid "https://www.ietf.org/rfc/rfc2898.txt"
msgstr "" msgstr ""
#: ../Doc/library/hashlib.rst:734 #: ../Doc/library/hashlib.rst:735
msgid "PKCS #5: Password-Based Cryptography Specification Version 2.0" msgid "PKCS #5: Password-Based Cryptography Specification Version 2.0"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -222,28 +222,28 @@ msgstr ""
msgid "Redo the last undone change to the current window." msgid "Redo the last undone change to the current window."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:323 #: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:325
msgid "Cut" msgid "Cut"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:323 #: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:325
msgid "" msgid ""
"Copy selection into the system-wide clipboard; then delete the selection." "Copy selection into the system-wide clipboard; then delete the selection."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:326 #: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:328
msgid "Copy" msgid "Copy"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:326 #: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:328
msgid "Copy selection into the system-wide clipboard." msgid "Copy selection into the system-wide clipboard."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:329 #: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:331
msgid "Paste" msgid "Paste"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:329 #: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:331
msgid "Insert contents of the system-wide clipboard into the current window." msgid "Insert contents of the system-wide clipboard into the current window."
msgstr "" msgstr ""
@ -428,32 +428,34 @@ msgid ""
"will be formatted to less than N columns, where N defaults to 72." "will be formatted to less than N columns, where N defaults to 72."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:193 #: ../Doc/library/idle.rst:195
msgid "Strip trailing whitespace" msgid "Strip trailing whitespace"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:193 #: ../Doc/library/idle.rst:193
msgid "" msgid ""
"Remove any space characters after the last non-space character of a line." "Remove trailing space and other whitespace characters after the last non-"
"whitespace character of a line by applying str.rstrip to each line, "
"including lines within multiline strings."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:199 #: ../Doc/library/idle.rst:201
msgid "Run menu (Editor window only)" msgid "Run menu (Editor window only)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:202 #: ../Doc/library/idle.rst:204
msgid "Python Shell" msgid "Python Shell"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:202 #: ../Doc/library/idle.rst:204
msgid "Open or wake up the Python Shell window." msgid "Open or wake up the Python Shell window."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:209 #: ../Doc/library/idle.rst:211
msgid "Check Module" msgid "Check Module"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:205 #: ../Doc/library/idle.rst:207
msgid "" msgid ""
"Check the syntax of the module currently open in the Editor window. If the " "Check the syntax of the module currently open in the Editor window. If the "
"module has not been saved IDLE will either prompt the user to save or " "module has not been saved IDLE will either prompt the user to save or "
@ -462,11 +464,11 @@ msgid ""
"window." "window."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:218 #: ../Doc/library/idle.rst:220
msgid "Run Module" msgid "Run Module"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:212 #: ../Doc/library/idle.rst:214
msgid "" msgid ""
"Do Check Module (above). If no error, restart the shell to clean the " "Do Check Module (above). If no error, restart the shell to clean the "
"environment, then execute the module. Output is displayed in the Shell " "environment, then execute the module. Output is displayed in the Shell "
@ -476,43 +478,43 @@ msgid ""
"similar to executing a file with ``python -i file`` at a command line." "similar to executing a file with ``python -i file`` at a command line."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:221 #: ../Doc/library/idle.rst:223
msgid "Shell menu (Shell window only)" msgid "Shell menu (Shell window only)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:224 #: ../Doc/library/idle.rst:226
msgid "View Last Restart" msgid "View Last Restart"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:224 #: ../Doc/library/idle.rst:226
msgid "Scroll the shell window to the last Shell restart." msgid "Scroll the shell window to the last Shell restart."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:227 #: ../Doc/library/idle.rst:229
msgid "Restart Shell" msgid "Restart Shell"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:227 #: ../Doc/library/idle.rst:229
msgid "Restart the shell to clean the environment." msgid "Restart the shell to clean the environment."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:230 #: ../Doc/library/idle.rst:232
msgid "Interrupt Execution" msgid "Interrupt Execution"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:230 #: ../Doc/library/idle.rst:232
msgid "Stop a running program." msgid "Stop a running program."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:233 #: ../Doc/library/idle.rst:235
msgid "Debug menu (Shell window only)" msgid "Debug menu (Shell window only)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:240 #: ../Doc/library/idle.rst:242
msgid "Go to File/Line" msgid "Go to File/Line"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:236 #: ../Doc/library/idle.rst:238
msgid "" msgid ""
"Look on the current line. with the cursor, and the line above for a filename " "Look on the current line. with the cursor, and the line above for a filename "
"and line number. If found, open the file if not already open, and show the " "and line number. If found, open the file if not already open, and show the "
@ -521,45 +523,45 @@ msgid ""
"Shell window and Output windows." "Shell window and Output windows."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:249 #: ../Doc/library/idle.rst:251
msgid "Debugger (toggle)" msgid "Debugger (toggle)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:247 #: ../Doc/library/idle.rst:249
msgid "" msgid ""
"When activated, code entered in the Shell or run from an Editor will run " "When activated, code entered in the Shell or run from an Editor will run "
"under the debugger. In the Editor, breakpoints can be set with the context " "under the debugger. In the Editor, breakpoints can be set with the context "
"menu. This feature is still incomplete and somewhat experimental." "menu. This feature is still incomplete and somewhat experimental."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:253 #: ../Doc/library/idle.rst:255
msgid "Stack Viewer" msgid "Stack Viewer"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:252 #: ../Doc/library/idle.rst:254
msgid "" msgid ""
"Show the stack traceback of the last exception in a tree widget, with access " "Show the stack traceback of the last exception in a tree widget, with access "
"to locals and globals." "to locals and globals."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:256 #: ../Doc/library/idle.rst:258
msgid "Auto-open Stack Viewer" msgid "Auto-open Stack Viewer"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:256 #: ../Doc/library/idle.rst:258
msgid "" msgid ""
"Toggle automatically opening the stack viewer on an unhandled exception." "Toggle automatically opening the stack viewer on an unhandled exception."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:259 #: ../Doc/library/idle.rst:261
msgid "Options menu (Shell and Editor)" msgid "Options menu (Shell and Editor)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:271 #: ../Doc/library/idle.rst:273
msgid "Configure IDLE" msgid "Configure IDLE"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:262 #: ../Doc/library/idle.rst:264
msgid "" msgid ""
"Open a configuration dialog and change preferences for the following: fonts, " "Open a configuration dialog and change preferences for the following: fonts, "
"indentation, keybindings, text color themes, startup windows and size, " "indentation, keybindings, text color themes, startup windows and size, "
@ -569,101 +571,101 @@ msgid ""
"new custom theme." "new custom theme."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:269 #: ../Doc/library/idle.rst:271
msgid "" msgid ""
"Non-default user settings are saved in a .idlerc directory in the user's " "Non-default user settings are saved in a .idlerc directory in the user's "
"home directory. Problems caused by bad user configuration files are solved " "home directory. Problems caused by bad user configuration files are solved "
"by editing or deleting one or more of the files in .idlerc." "by editing or deleting one or more of the files in .idlerc."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:275 #: ../Doc/library/idle.rst:277
msgid "Code Context (toggle)(Editor Window only)" msgid "Code Context (toggle)(Editor Window only)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:274 #: ../Doc/library/idle.rst:276
msgid "" msgid ""
"Open a pane at the top of the edit window which shows the block context of " "Open a pane at the top of the edit window which shows the block context of "
"the code which has scrolled above the top of the window." "the code which has scrolled above the top of the window."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:278 #: ../Doc/library/idle.rst:280
msgid "Window menu (Shell and Editor)" msgid "Window menu (Shell and Editor)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:283 #: ../Doc/library/idle.rst:285
msgid "Zoom Height" msgid "Zoom Height"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:281 #: ../Doc/library/idle.rst:283
msgid "" msgid ""
"Toggles the window between normal size and maximum height. The initial size " "Toggles the window between normal size and maximum height. The initial size "
"defaults to 40 lines by 80 chars unless changed on the General tab of the " "defaults to 40 lines by 80 chars unless changed on the General tab of the "
"Configure IDLE dialog." "Configure IDLE dialog."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:285 #: ../Doc/library/idle.rst:287
msgid "" msgid ""
"The rest of this menu lists the names of all open windows; select one to " "The rest of this menu lists the names of all open windows; select one to "
"bring it to the foreground (deiconifying it if necessary)." "bring it to the foreground (deiconifying it if necessary)."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:289 #: ../Doc/library/idle.rst:291
msgid "Help menu (Shell and Editor)" msgid "Help menu (Shell and Editor)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:292 #: ../Doc/library/idle.rst:294
msgid "About IDLE" msgid "About IDLE"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:292 #: ../Doc/library/idle.rst:294
msgid "Display version, copyright, license, credits, and more." msgid "Display version, copyright, license, credits, and more."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:296 #: ../Doc/library/idle.rst:298
msgid "IDLE Help" msgid "IDLE Help"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:295 #: ../Doc/library/idle.rst:297
msgid "" msgid ""
"Display a help file for IDLE detailing the menu options, basic editing and " "Display a help file for IDLE detailing the menu options, basic editing and "
"navigation, and other tips." "navigation, and other tips."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:300 #: ../Doc/library/idle.rst:302
msgid "Python Docs" msgid "Python Docs"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:299 #: ../Doc/library/idle.rst:301
msgid "" msgid ""
"Access local Python documentation, if installed, or start a web browser and " "Access local Python documentation, if installed, or start a web browser and "
"open docs.python.org showing the latest Python documentation." "open docs.python.org showing the latest Python documentation."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:303 #: ../Doc/library/idle.rst:305
msgid "Turtle Demo" msgid "Turtle Demo"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:303 #: ../Doc/library/idle.rst:305
msgid "Run the turtledemo module with example python code and turtle drawings." msgid "Run the turtledemo module with example python code and turtle drawings."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:305 #: ../Doc/library/idle.rst:307
msgid "" msgid ""
"Additional help sources may be added here with the Configure IDLE dialog " "Additional help sources may be added here with the Configure IDLE dialog "
"under the General tab." "under the General tab."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:317 #: ../Doc/library/idle.rst:319
msgid "Context Menus" msgid "Context Menus"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:319 #: ../Doc/library/idle.rst:321
msgid "" msgid ""
"Open a context menu by right-clicking in a window (Control-click on OS X). " "Open a context menu by right-clicking in a window (Control-click on OS X). "
"Context menus have the standard clipboard functions also on the Edit menu." "Context menus have the standard clipboard functions also on the Edit menu."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:331 #: ../Doc/library/idle.rst:333
msgid "" msgid ""
"Editor windows also have breakpoint functions. Lines with a breakpoint set " "Editor windows also have breakpoint functions. Lines with a breakpoint set "
"are specially marked. Breakpoints only have an effect when running under " "are specially marked. Breakpoints only have an effect when running under "
@ -671,121 +673,121 @@ msgid ""
"directory." "directory."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:336 #: ../Doc/library/idle.rst:338
msgid "Set Breakpoint" msgid "Set Breakpoint"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:336 #: ../Doc/library/idle.rst:338
msgid "Set a breakpoint on the current line." msgid "Set a breakpoint on the current line."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:339 #: ../Doc/library/idle.rst:341
msgid "Clear Breakpoint" msgid "Clear Breakpoint"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:339 #: ../Doc/library/idle.rst:341
msgid "Clear the breakpoint on that line." msgid "Clear the breakpoint on that line."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:341 #: ../Doc/library/idle.rst:343
msgid "Shell and Output windows have the following." msgid "Shell and Output windows have the following."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:345 #: ../Doc/library/idle.rst:347
msgid "Go to file/line" msgid "Go to file/line"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:344 #: ../Doc/library/idle.rst:346
msgid "Same as in Debug menu." msgid "Same as in Debug menu."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:348 #: ../Doc/library/idle.rst:350
msgid "Editing and navigation" msgid "Editing and navigation"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:350 #: ../Doc/library/idle.rst:352
msgid "" msgid ""
"In this section, 'C' refers to the :kbd:`Control` key on Windows and Unix " "In this section, 'C' refers to the :kbd:`Control` key on Windows and Unix "
"and the :kbd:`Command` key on Mac OSX." "and the :kbd:`Command` key on Mac OSX."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:353 #: ../Doc/library/idle.rst:355
msgid ":kbd:`Backspace` deletes to the left; :kbd:`Del` deletes to the right" msgid ":kbd:`Backspace` deletes to the left; :kbd:`Del` deletes to the right"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:355 #: ../Doc/library/idle.rst:357
msgid "" msgid ""
":kbd:`C-Backspace` delete word left; :kbd:`C-Del` delete word to the right" ":kbd:`C-Backspace` delete word left; :kbd:`C-Del` delete word to the right"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:357 #: ../Doc/library/idle.rst:359
msgid "Arrow keys and :kbd:`Page Up`/:kbd:`Page Down` to move around" msgid "Arrow keys and :kbd:`Page Up`/:kbd:`Page Down` to move around"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:359 #: ../Doc/library/idle.rst:361
msgid ":kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves by words" msgid ":kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves by words"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:361 #: ../Doc/library/idle.rst:363
msgid ":kbd:`Home`/:kbd:`End` go to begin/end of line" msgid ":kbd:`Home`/:kbd:`End` go to begin/end of line"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:363 #: ../Doc/library/idle.rst:365
msgid ":kbd:`C-Home`/:kbd:`C-End` go to begin/end of file" msgid ":kbd:`C-Home`/:kbd:`C-End` go to begin/end of file"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:365 #: ../Doc/library/idle.rst:367
msgid "Some useful Emacs bindings are inherited from Tcl/Tk:" msgid "Some useful Emacs bindings are inherited from Tcl/Tk:"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:367 #: ../Doc/library/idle.rst:369
msgid ":kbd:`C-a` beginning of line" msgid ":kbd:`C-a` beginning of line"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:369 #: ../Doc/library/idle.rst:371
msgid ":kbd:`C-e` end of line" msgid ":kbd:`C-e` end of line"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:371 #: ../Doc/library/idle.rst:373
msgid ":kbd:`C-k` kill line (but doesn't put it in clipboard)" msgid ":kbd:`C-k` kill line (but doesn't put it in clipboard)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:373 #: ../Doc/library/idle.rst:375
msgid ":kbd:`C-l` center window around the insertion point" msgid ":kbd:`C-l` center window around the insertion point"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:375 #: ../Doc/library/idle.rst:377
msgid "" msgid ""
":kbd:`C-b` go backward one character without deleting (usually you can also " ":kbd:`C-b` go backward one character without deleting (usually you can also "
"use the cursor key for this)" "use the cursor key for this)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:378 #: ../Doc/library/idle.rst:380
msgid "" msgid ""
":kbd:`C-f` go forward one character without deleting (usually you can also " ":kbd:`C-f` go forward one character without deleting (usually you can also "
"use the cursor key for this)" "use the cursor key for this)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:381 #: ../Doc/library/idle.rst:383
msgid "" msgid ""
":kbd:`C-p` go up one line (usually you can also use the cursor key for this)" ":kbd:`C-p` go up one line (usually you can also use the cursor key for this)"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:384 #: ../Doc/library/idle.rst:386
msgid ":kbd:`C-d` delete next character" msgid ":kbd:`C-d` delete next character"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:386 #: ../Doc/library/idle.rst:388
msgid "" msgid ""
"Standard keybindings (like :kbd:`C-c` to copy and :kbd:`C-v` to paste) may " "Standard keybindings (like :kbd:`C-c` to copy and :kbd:`C-v` to paste) may "
"work. Keybindings are selected in the Configure IDLE dialog." "work. Keybindings are selected in the Configure IDLE dialog."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:391 #: ../Doc/library/idle.rst:393
msgid "Automatic indentation" msgid "Automatic indentation"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:393 #: ../Doc/library/idle.rst:395
msgid "" msgid ""
"After a block-opening statement, the next line is indented by 4 spaces (in " "After a block-opening statement, the next line is indented by 4 spaces (in "
"the Python Shell window by one tab). After certain keywords (break, return " "the Python Shell window by one tab). After certain keywords (break, return "
@ -795,21 +797,21 @@ msgid ""
"tabs are restricted to four spaces due to Tcl/Tk limitations." "tabs are restricted to four spaces due to Tcl/Tk limitations."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:400 #: ../Doc/library/idle.rst:402
msgid "See also the indent/dedent region commands in the edit menu." msgid "See also the indent/dedent region commands in the edit menu."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:403 #: ../Doc/library/idle.rst:405
msgid "Completions" msgid "Completions"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:405 #: ../Doc/library/idle.rst:407
msgid "" msgid ""
"Completions are supplied for functions, classes, and attributes of classes, " "Completions are supplied for functions, classes, and attributes of classes, "
"both built-in and user-defined. Completions are also provided for filenames." "both built-in and user-defined. Completions are also provided for filenames."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:409 #: ../Doc/library/idle.rst:411
msgid "" msgid ""
"The AutoCompleteWindow (ACW) will open after a predefined delay (default is " "The AutoCompleteWindow (ACW) will open after a predefined delay (default is "
"two seconds) after a '.' or (in a string) an os.sep is typed. If after one " "two seconds) after a '.' or (in a string) an os.sep is typed. If after one "
@ -817,13 +819,13 @@ msgid ""
"ACW will open immediately if a possible continuation is found." "ACW will open immediately if a possible continuation is found."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:414 #: ../Doc/library/idle.rst:416
msgid "" msgid ""
"If there is only one possible completion for the characters entered, a :kbd:" "If there is only one possible completion for the characters entered, a :kbd:"
"`Tab` will supply that completion without opening the ACW." "`Tab` will supply that completion without opening the ACW."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:417 #: ../Doc/library/idle.rst:419
msgid "" msgid ""
"'Show Completions' will force open a completions window, by default the :kbd:" "'Show Completions' will force open a completions window, by default the :kbd:"
"`C-space` will open a completions window. In an empty string, this will " "`C-space` will open a completions window. In an empty string, this will "
@ -833,7 +835,7 @@ msgid ""
"the ACW will attempt to be more specific." "the ACW will attempt to be more specific."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:424 #: ../Doc/library/idle.rst:426
msgid "" msgid ""
"If a string of characters is typed, the ACW selection will jump to the entry " "If a string of characters is typed, the ACW selection will jump to the entry "
"most closely matching those characters. Entering a :kbd:`tab` will cause " "most closely matching those characters. Entering a :kbd:`tab` will cause "
@ -843,18 +845,18 @@ msgid ""
"and the scroll wheel all operate on the ACW." "and the scroll wheel all operate on the ACW."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:431 #: ../Doc/library/idle.rst:433
msgid "" msgid ""
"\"Hidden\" attributes can be accessed by typing the beginning of hidden name " "\"Hidden\" attributes can be accessed by typing the beginning of hidden name "
"after a '.', e.g. '_'. This allows access to modules with ``__all__`` set, " "after a '.', e.g. '_'. This allows access to modules with ``__all__`` set, "
"or to class-private attributes." "or to class-private attributes."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:435 #: ../Doc/library/idle.rst:437
msgid "Completions and the 'Expand Word' facility can save a lot of typing!" msgid "Completions and the 'Expand Word' facility can save a lot of typing!"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:437 #: ../Doc/library/idle.rst:439
msgid "" msgid ""
"Completions are currently limited to those in the namespaces. Names in an " "Completions are currently limited to those in the namespaces. Names in an "
"Editor window which are not via ``__main__`` and :data:`sys.modules` will " "Editor window which are not via ``__main__`` and :data:`sys.modules` will "
@ -863,17 +865,17 @@ msgid ""
"so much can be found by default, e.g. the re module." "so much can be found by default, e.g. the re module."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:443 #: ../Doc/library/idle.rst:445
msgid "" msgid ""
"If you don't like the ACW popping up unbidden, simply make the delay longer " "If you don't like the ACW popping up unbidden, simply make the delay longer "
"or disable the extension." "or disable the extension."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:447 #: ../Doc/library/idle.rst:449
msgid "Calltips" msgid "Calltips"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:449 #: ../Doc/library/idle.rst:451
msgid "" msgid ""
"A calltip is shown when one types :kbd:`(` after the name of an *accessible* " "A calltip is shown when one types :kbd:`(` after the name of an *accessible* "
"function. A name expression may include dots and subscripts. A calltip " "function. A name expression may include dots and subscripts. A calltip "
@ -882,7 +884,7 @@ msgid ""
"definition, the menu or shortcut display a calltip." "definition, the menu or shortcut display a calltip."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:455 #: ../Doc/library/idle.rst:457
msgid "" msgid ""
"A calltip consists of the function signature and the first line of the " "A calltip consists of the function signature and the first line of the "
"docstring. For builtins without an accessible signature, the calltip " "docstring. For builtins without an accessible signature, the calltip "
@ -890,14 +892,14 @@ msgid ""
"details may change." "details may change."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:460 #: ../Doc/library/idle.rst:462
msgid "" msgid ""
"The set of *accessible* functions depends on what modules have been imported " "The set of *accessible* functions depends on what modules have been imported "
"into the user process, including those imported by Idle itself, and what " "into the user process, including those imported by Idle itself, and what "
"definitions have been run, all since the last restart." "definitions have been run, all since the last restart."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:464 #: ../Doc/library/idle.rst:466
msgid "" msgid ""
"For example, restart the Shell and enter ``itertools.count(``. A calltip " "For example, restart the Shell and enter ``itertools.count(``. A calltip "
"appears because Idle imports itertools into the user process for its own " "appears because Idle imports itertools into the user process for its own "
@ -906,53 +908,53 @@ msgid ""
"``import turtle`` and then ``turtle.write(`` will work." "``import turtle`` and then ``turtle.write(`` will work."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:470 #: ../Doc/library/idle.rst:472
msgid "" msgid ""
"In an editor, import statements have no effect until one runs the file. One " "In an editor, import statements have no effect until one runs the file. One "
"might want to run a file after writing the import statements at the top, or " "might want to run a file after writing the import statements at the top, or "
"immediately run an existing file before editing." "immediately run an existing file before editing."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:475 #: ../Doc/library/idle.rst:477
msgid "Python Shell window" msgid "Python Shell window"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:477 #: ../Doc/library/idle.rst:479
msgid ":kbd:`C-c` interrupts executing command" msgid ":kbd:`C-c` interrupts executing command"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:479 #: ../Doc/library/idle.rst:481
msgid "" msgid ""
":kbd:`C-d` sends end-of-file; closes window if typed at a ``>>>`` prompt" ":kbd:`C-d` sends end-of-file; closes window if typed at a ``>>>`` prompt"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:481 #: ../Doc/library/idle.rst:483
msgid ":kbd:`Alt-/` (Expand word) is also useful to reduce typing" msgid ":kbd:`Alt-/` (Expand word) is also useful to reduce typing"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:483 #: ../Doc/library/idle.rst:485
msgid "Command history" msgid "Command history"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:485 #: ../Doc/library/idle.rst:487
msgid "" msgid ""
":kbd:`Alt-p` retrieves previous command matching what you have typed. On OS " ":kbd:`Alt-p` retrieves previous command matching what you have typed. On OS "
"X use :kbd:`C-p`." "X use :kbd:`C-p`."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:488 #: ../Doc/library/idle.rst:490
msgid ":kbd:`Alt-n` retrieves next. On OS X use :kbd:`C-n`." msgid ":kbd:`Alt-n` retrieves next. On OS X use :kbd:`C-n`."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:490 #: ../Doc/library/idle.rst:492
msgid ":kbd:`Return` while on any previous command retrieves that command" msgid ":kbd:`Return` while on any previous command retrieves that command"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:494 #: ../Doc/library/idle.rst:496
msgid "Text colors" msgid "Text colors"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:496 #: ../Doc/library/idle.rst:498
msgid "" msgid ""
"Idle defaults to black on white text, but colors text with special meanings. " "Idle defaults to black on white text, but colors text with special meanings. "
"For the shell, these are shell output, shell error, user output, and user " "For the shell, these are shell output, shell error, user output, and user "
@ -962,7 +964,7 @@ msgid ""
"(when present), found text (when possible), and selected text." "(when present), found text (when possible), and selected text."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:503 #: ../Doc/library/idle.rst:505
msgid "" msgid ""
"Text coloring is done in the background, so uncolorized text is occasionally " "Text coloring is done in the background, so uncolorized text is occasionally "
"visible. To change the color scheme, use the Configure IDLE dialog " "visible. To change the color scheme, use the Configure IDLE dialog "
@ -970,11 +972,11 @@ msgid ""
"and text in popups and dialogs is not user-configurable." "and text in popups and dialogs is not user-configurable."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:510 #: ../Doc/library/idle.rst:512
msgid "Startup and code execution" msgid "Startup and code execution"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:512 #: ../Doc/library/idle.rst:514
msgid "" msgid ""
"Upon startup with the ``-s`` option, IDLE will execute the file referenced " "Upon startup with the ``-s`` option, IDLE will execute the file referenced "
"by the environment variables :envvar:`IDLESTARTUP` or :envvar:" "by the environment variables :envvar:`IDLESTARTUP` or :envvar:"
@ -986,7 +988,7 @@ msgid ""
"modules." "modules."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:520 #: ../Doc/library/idle.rst:522
msgid "" msgid ""
"In addition, ``Tk`` also loads a startup file if it is present. Note that " "In addition, ``Tk`` also loads a startup file if it is present. Note that "
"the Tk file is loaded unconditionally. This additional file is ``.Idle.py`` " "the Tk file is loaded unconditionally. This additional file is ``.Idle.py`` "
@ -995,15 +997,15 @@ msgid ""
"importing functions to be used from IDLE's Python shell." "importing functions to be used from IDLE's Python shell."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:528 #: ../Doc/library/idle.rst:530
msgid "Command line usage" msgid "Command line usage"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:544 #: ../Doc/library/idle.rst:546
msgid "If there are arguments:" msgid "If there are arguments:"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:546 #: ../Doc/library/idle.rst:548
msgid "" msgid ""
"If ``-``, ``-c``, or ``r`` is used, all arguments are placed in ``sys." "If ``-``, ``-c``, or ``r`` is used, all arguments are placed in ``sys."
"argv[1:...]`` and ``sys.argv[0]`` is set to ``''``, ``'-c'``, or ``'-r'``. " "argv[1:...]`` and ``sys.argv[0]`` is set to ``''``, ``'-c'``, or ``'-r'``. "
@ -1011,17 +1013,17 @@ msgid ""
"dialog." "dialog."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:551 #: ../Doc/library/idle.rst:553
msgid "" msgid ""
"Otherwise, arguments are files opened for editing and ``sys.argv`` reflects " "Otherwise, arguments are files opened for editing and ``sys.argv`` reflects "
"the arguments passed to IDLE itself." "the arguments passed to IDLE itself."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:556 #: ../Doc/library/idle.rst:558
msgid "Startup failure" msgid "Startup failure"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:558 #: ../Doc/library/idle.rst:560
msgid "" msgid ""
"IDLE uses a socket to communicate between the IDLE GUI process and the user " "IDLE uses a socket to communicate between the IDLE GUI process and the user "
"code execution process. A connection must be established whenever the Shell " "code execution process. A connection must be established whenever the Shell "
@ -1031,7 +1033,7 @@ msgid ""
"user here. It then exits." "user here. It then exits."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:565 #: ../Doc/library/idle.rst:567
msgid "" msgid ""
"A common cause of failure is a user-written file with the same name as a " "A common cause of failure is a user-written file with the same name as a "
"standard library module, such as *random.py* and *tkinter.py*. When such a " "standard library module, such as *random.py* and *tkinter.py*. When such a "
@ -1040,7 +1042,7 @@ msgid ""
"file." "file."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:571 #: ../Doc/library/idle.rst:573
msgid "" msgid ""
"Though less common than in the past, an antivirus or firewall program may " "Though less common than in the past, an antivirus or firewall program may "
"stop the connection. If the program cannot be taught to allow the " "stop the connection. If the program cannot be taught to allow the "
@ -1050,7 +1052,7 @@ msgid ""
"connections." "connections."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:578 #: ../Doc/library/idle.rst:580
msgid "" msgid ""
"Python installation issues occasionally stop IDLE: multiple versions can " "Python installation issues occasionally stop IDLE: multiple versions can "
"clash, or a single installation might need admin access. If one undo the " "clash, or a single installation might need admin access. If one undo the "
@ -1058,7 +1060,7 @@ msgid ""
"completely remove Python and start over." "completely remove Python and start over."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:583 #: ../Doc/library/idle.rst:585
msgid "" msgid ""
"A zombie pythonw.exe process could be a problem. On Windows, use Task " "A zombie pythonw.exe process could be a problem. On Windows, use Task "
"Manager to detect and stop one. Sometimes a restart initiated by a program " "Manager to detect and stop one. Sometimes a restart initiated by a program "
@ -1066,7 +1068,7 @@ msgid ""
"error box or Restart Shell on the Shell menu may fix a temporary problem." "error box or Restart Shell on the Shell menu may fix a temporary problem."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:588 #: ../Doc/library/idle.rst:590
msgid "" msgid ""
"When IDLE first starts, it attempts to read user configuration files in ~/." "When IDLE first starts, it attempts to read user configuration files in ~/."
"idlerc/ (~ is one's home directory). If there is a problem, an error " "idlerc/ (~ is one's home directory). If there is a problem, an error "
@ -1076,36 +1078,36 @@ msgid ""
"be to delete one or more of the configuration files." "be to delete one or more of the configuration files."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:595 #: ../Doc/library/idle.rst:597
msgid "" msgid ""
"If IDLE quits with no message, and it was not started from a console, try " "If IDLE quits with no message, and it was not started from a console, try "
"starting from a console (``python -m idlelib)`` and see if a message appears." "starting from a console (``python -m idlelib)`` and see if a message appears."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:600 #: ../Doc/library/idle.rst:602
msgid "IDLE-console differences" msgid "IDLE-console differences"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:602 #: ../Doc/library/idle.rst:604
msgid "" msgid ""
"As much as possible, the result of executing Python code with IDLE is the " "With rare exceptions, the result of executing Python code with IDLE is "
"same as executing the same code in a console window. However, the different " "intended to be the same as executing the same code in a console window. "
"interface and operation occasionally affect visible results. For instance, " "However, the different interface and operation occasionally affect visible "
"``sys.modules`` starts with more entries." "results. For instance, ``sys.modules`` starts with more entries."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:607 #: ../Doc/library/idle.rst:609
msgid "" msgid ""
"IDLE also replaces ``sys.stdin``, ``sys.stdout``, and ``sys.stderr`` with " "IDLE also replaces ``sys.stdin``, ``sys.stdout``, and ``sys.stderr`` with "
"objects that get input from and send output to the Shell window. When this " "objects that get input from and send output to the Shell window. When Shell "
"window has the focus, it controls the keyboard and screen. This is normally " "has the focus, it controls the keyboard and screen. This is normally "
"transparent, but functions that directly access the keyboard and screen will " "transparent, but functions that directly access the keyboard and screen will "
"not work. If ``sys`` is reset with ``importlib.reload(sys)``, IDLE's " "not work. If ``sys`` is reset with ``importlib.reload(sys)``, IDLE's "
"changes are lost and things like ``input``, ``raw_input``, and ``print`` " "changes are lost and things like ``input``, ``raw_input``, and ``print`` "
"will not work correctly." "will not work correctly."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:615 #: ../Doc/library/idle.rst:617
msgid "" msgid ""
"With IDLE's Shell, one enters, edits, and recalls complete statements. Some " "With IDLE's Shell, one enters, edits, and recalls complete statements. Some "
"consoles only work with a single physical line at a time. IDLE uses " "consoles only work with a single physical line at a time. IDLE uses "
@ -1113,11 +1115,43 @@ msgid ""
"defined for each statement." "defined for each statement."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:621 #: ../Doc/library/idle.rst:623
msgid "Developing tkinter applications"
msgstr ""
#: ../Doc/library/idle.rst:625
msgid ""
"IDLE is intentionally different from standard Python in order to facilitate "
"development of tkinter programs. Enter ``import tkinter as tk; root = tk."
"Tk()`` in standard Python and nothing appears. Enter the same in IDLE and a "
"tk window appears. In standard Python, one must also enter ``root."
"update()`` to see the window. IDLE does the equivalent in the background, "
"about 20 times a second, which is about every 50 milleseconds. Next enter "
"``b = tk.Button(root, text='button'); b.pack()``. Again, nothing visibly "
"changes in standard Python until one enters ``root.update()``."
msgstr ""
#: ../Doc/library/idle.rst:634
msgid ""
"Most tkinter programs run ``root.mainloop()``, which usually does not return "
"until the tk app is destroyed. If the program is run with ``python -i`` or "
"from an IDLE editor, a ``>>>`` shell prompt does not appear until "
"``mainloop()`` returns, at which time there is nothing left to interact with."
msgstr ""
#: ../Doc/library/idle.rst:640
msgid ""
"When running a tkinter program from an IDLE editor, one can comment out the "
"mainloop call. One then gets a shell prompt immediately and can interact "
"with the live application. One just has to remember to re-enable the "
"mainloop call when running in standard Python."
msgstr ""
#: ../Doc/library/idle.rst:646
msgid "Running without a subprocess" msgid "Running without a subprocess"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:623 #: ../Doc/library/idle.rst:648
msgid "" msgid ""
"By default, IDLE executes user code in a separate subprocess via a socket, " "By default, IDLE executes user code in a separate subprocess via a socket, "
"which uses the internal loopback interface. This connection is not " "which uses the internal loopback interface. This connection is not "
@ -1125,7 +1159,7 @@ msgid ""
"firewall software complains anyway, you can ignore it." "firewall software complains anyway, you can ignore it."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:628 #: ../Doc/library/idle.rst:653
msgid "" msgid ""
"If the attempt to make the socket connection fails, Idle will notify you. " "If the attempt to make the socket connection fails, Idle will notify you. "
"Such failures are sometimes transient, but if persistent, the problem may be " "Such failures are sometimes transient, but if persistent, the problem may be "
@ -1134,7 +1168,7 @@ msgid ""
"command line switch." "command line switch."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:634 #: ../Doc/library/idle.rst:659
msgid "" msgid ""
"If IDLE is started with the -n command line switch it will run in a single " "If IDLE is started with the -n command line switch it will run in a single "
"process and will not create the subprocess which runs the RPC Python " "process and will not create the subprocess which runs the RPC Python "
@ -1148,15 +1182,15 @@ msgid ""
"at all possible." "at all possible."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:649 #: ../Doc/library/idle.rst:674
msgid "Help and preferences" msgid "Help and preferences"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:652 #: ../Doc/library/idle.rst:677
msgid "Additional help sources" msgid "Additional help sources"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:654 #: ../Doc/library/idle.rst:679
msgid "" msgid ""
"IDLE includes a help menu entry called \"Python Docs\" that will open the " "IDLE includes a help menu entry called \"Python Docs\" that will open the "
"extensive sources of help, including tutorials, available at docs.python." "extensive sources of help, including tutorials, available at docs.python."
@ -1165,11 +1199,11 @@ msgid ""
"of IDLE for more information." "of IDLE for more information."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:662 #: ../Doc/library/idle.rst:687
msgid "Setting preferences" msgid "Setting preferences"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:664 #: ../Doc/library/idle.rst:689
msgid "" msgid ""
"The font preferences, highlighting, keys, and general preferences can be " "The font preferences, highlighting, keys, and general preferences can be "
"changed via Configure IDLE on the Option menu. Keys can be user defined; " "changed via Configure IDLE on the Option menu. Keys can be user defined; "
@ -1177,15 +1211,15 @@ msgid ""
"custom key set in the Configure IDLE dialog under the keys tab." "custom key set in the Configure IDLE dialog under the keys tab."
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:671 #: ../Doc/library/idle.rst:696
msgid "Extensions" msgid "Extensions"
msgstr "" msgstr ""
#: ../Doc/library/idle.rst:673 #: ../Doc/library/idle.rst:698
msgid "" msgid ""
"IDLE contains an extension facility. Preferences for extensions can be " "IDLE contains an extension facility. Preferences for extensions can be "
"changed with Configure Extensions. See the beginning of config-extensions." "changed with the Extensions tab of the preferences dialog. See the beginning "
"def in the idlelib directory for further information. The only current " "of config-extensions.def in the idlelib directory for further information. "
"default extension is zoomheight. It exists as an extension primarily to be " "The only current default extension is zzdummy, an example also used for "
"an example and for testing purposes." "testing."
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -25,6 +25,10 @@ msgstr ""
msgid "**Source code:** :source:`Lib/logging/config.py`" msgid "**Source code:** :source:`Lib/logging/config.py`"
msgstr "" msgstr ""
#: ../Doc/library/logging.config.rst:0
msgid "Important"
msgstr ""
#: ../Doc/library/logging.config.rst:14 #: ../Doc/library/logging.config.rst:14
msgid "" msgid ""
"This page contains only reference information. For tutorials, please see" "This page contains only reference information. For tutorials, please see"
@ -136,10 +140,6 @@ msgid ""
"chosen configuration)." "chosen configuration)."
msgstr "" msgstr ""
#: ../Doc/library/logging.config.rst:0
msgid "Parameters"
msgstr ""
#: ../Doc/library/logging.config.rst:90 #: ../Doc/library/logging.config.rst:90
msgid "" msgid ""
"A filename, or a file-like object, or an instance derived from :class:" "A filename, or a file-like object, or an instance derived from :class:"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -25,6 +25,10 @@ msgstr ""
msgid "**Source code:** :source:`Lib/logging/handlers.py`" msgid "**Source code:** :source:`Lib/logging/handlers.py`"
msgstr "" msgstr ""
#: ../Doc/library/logging.handlers.rst:0
msgid "Important"
msgstr ""
#: ../Doc/library/logging.handlers.rst:14 #: ../Doc/library/logging.handlers.rst:14
msgid "" msgid ""
"This page contains only reference information. For tutorials, please see" "This page contains only reference information. For tutorials, please see"
@ -271,10 +275,6 @@ msgid ""
"callable (the default is ``None``), the name is returned unchanged." "callable (the default is ``None``), the name is returned unchanged."
msgstr "" msgstr ""
#: ../Doc/library/logging.handlers.rst:0
msgid "Parameters"
msgstr ""
#: ../Doc/library/logging.handlers.rst:231 #: ../Doc/library/logging.handlers.rst:231
msgid "The default name for the log file." msgid "The default name for the log file."
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 14:05+0200\n" "PO-Revision-Date: 2017-08-10 14:05+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -25,6 +25,10 @@ msgstr ""
msgid "**Source code:** :source:`Lib/logging/__init__.py`" msgid "**Source code:** :source:`Lib/logging/__init__.py`"
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:0
msgid "Important"
msgstr ""
#: ../Doc/library/logging.rst:16 #: ../Doc/library/logging.rst:16
msgid "" msgid ""
"This page contains the API reference information. For tutorial information " "This page contains the API reference information. For tutorial information "
@ -821,10 +825,6 @@ msgid ""
"record." "record."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:0
msgid "Parameters"
msgstr ""
#: ../Doc/library/logging.rst:658 #: ../Doc/library/logging.rst:658
msgid "" msgid ""
"The name of the logger used to log the event represented by this LogRecord. " "The name of the logger used to log the event represented by this LogRecord. "
@ -950,7 +950,7 @@ msgstr "Format"
msgid "Description" msgid "Description"
msgstr "Description" msgstr "Description"
#: ../Doc/library/logging.rst:742 ../Doc/library/logging.rst:0 #: ../Doc/library/logging.rst:742
msgid "args" msgid "args"
msgstr "" msgstr ""
@ -995,7 +995,7 @@ msgid ""
"time`)." "time`)."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:756 ../Doc/library/logging.rst:0 #: ../Doc/library/logging.rst:756
msgid "exc_info" msgid "exc_info"
msgstr "exc_info" msgstr "exc_info"
@ -1108,7 +1108,7 @@ msgid ""
"`Formatter.format` is invoked." "`Formatter.format` is invoked."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:784 ../Doc/library/logging.rst:0 #: ../Doc/library/logging.rst:784
msgid "msg" msgid "msg"
msgstr "" msgstr ""
@ -1119,7 +1119,7 @@ msgid ""
"messages`)." "messages`)."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:789 ../Doc/library/logging.rst:0 #: ../Doc/library/logging.rst:789
msgid "name" msgid "name"
msgstr "" msgstr ""
@ -1660,26 +1660,14 @@ msgstr ""
msgid "The logger name." msgid "The logger name."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:0
msgid "level"
msgstr "level"
#: ../Doc/library/logging.rst:1185 #: ../Doc/library/logging.rst:1185
msgid "The logging level (numeric)." msgid "The logging level (numeric)."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:0
msgid "fn"
msgstr "fn"
#: ../Doc/library/logging.rst:1186 #: ../Doc/library/logging.rst:1186
msgid "The full pathname of the file where the logging call was made." msgid "The full pathname of the file where the logging call was made."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:0
msgid "lno"
msgstr "lno"
#: ../Doc/library/logging.rst:1187 #: ../Doc/library/logging.rst:1187
msgid "The line number in the file where the logging call was made." msgid "The line number in the file where the logging call was made."
msgstr "" msgstr ""
@ -1696,28 +1684,16 @@ msgstr ""
msgid "An exception tuple, or ``None``." msgid "An exception tuple, or ``None``."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:0
msgid "func"
msgstr "func"
#: ../Doc/library/logging.rst:1191 #: ../Doc/library/logging.rst:1191
msgid "The name of the function or method which invoked the logging call." msgid "The name of the function or method which invoked the logging call."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:0
msgid "sinfo"
msgstr "sinfo"
#: ../Doc/library/logging.rst:1193 #: ../Doc/library/logging.rst:1193
msgid "" msgid ""
"A stack traceback such as is provided by :func:`traceback.print_stack`, " "A stack traceback such as is provided by :func:`traceback.print_stack`, "
"showing the call hierarchy." "showing the call hierarchy."
msgstr "" msgstr ""
#: ../Doc/library/logging.rst:0
msgid "kwargs"
msgstr ""
#: ../Doc/library/logging.rst:1195 #: ../Doc/library/logging.rst:1195
msgid "Additional keyword arguments." msgid "Additional keyword arguments."
msgstr "" msgstr ""
@ -1807,3 +1783,18 @@ msgid ""
"2.1.x and 2.2.x, which do not include the :mod:`logging` package in the " "2.1.x and 2.2.x, which do not include the :mod:`logging` package in the "
"standard library." "standard library."
msgstr "" msgstr ""
#~ msgid "level"
#~ msgstr "level"
#~ msgid "fn"
#~ msgstr "fn"
#~ msgid "lno"
#~ msgstr "lno"
#~ msgid "func"
#~ msgstr "func"
#~ msgid "sinfo"
#~ msgstr "sinfo"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1135,10 +1135,6 @@ msgid ""
"`setblocking` or :meth:`settimeout`." "`setblocking` or :meth:`settimeout`."
msgstr "" msgstr ""
#: ../Doc/library/socket.rst:0
msgid "platform"
msgstr ""
#: ../Doc/library/socket.rst:1026 #: ../Doc/library/socket.rst:1026
msgid "Windows" msgid "Windows"
msgstr "Windows" msgstr "Windows"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-09-12 13:41+0200\n" "PO-Revision-Date: 2017-09-12 13:41+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -333,8 +333,8 @@ msgstr ""
#: ../Doc/library/ssl.rst:219 #: ../Doc/library/ssl.rst:219
msgid "" msgid ""
"The *ciphers* parameter sets the available ciphers for this SSL object. It " "The *ciphers* parameter sets the available ciphers for this SSL object. It "
"should be a string in the `OpenSSL cipher list format <https://www.openssl." "should be a string in the `OpenSSL cipher list format <https://wiki.openssl."
"org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>`_." "org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_."
msgstr "" msgstr ""
#: ../Doc/library/ssl.rst:223 #: ../Doc/library/ssl.rst:223
@ -1641,10 +1641,10 @@ msgstr ""
#: ../Doc/library/ssl.rst:1446 #: ../Doc/library/ssl.rst:1446
msgid "" msgid ""
"Set the available ciphers for sockets created with this context. It should " "Set the available ciphers for sockets created with this context. It should "
"be a string in the `OpenSSL cipher list format <https://www.openssl.org/docs/" "be a string in the `OpenSSL cipher list format <https://wiki.openssl.org/"
"apps/ciphers.html#CIPHER-LIST-FORMAT>`_. If no cipher can be selected " "index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_. If no cipher can be "
"(because compile-time options or other configuration forbids use of all the " "selected (because compile-time options or other configuration forbids use of "
"specified ciphers), an :class:`SSLError` will be raised." "all the specified ciphers), an :class:`SSLError` will be raised."
msgstr "" msgstr ""
#: ../Doc/library/ssl.rst:1454 #: ../Doc/library/ssl.rst:1454

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -35,21 +35,22 @@ msgstr ""
#: ../Doc/library/tokenize.rst:19 #: ../Doc/library/tokenize.rst:19
msgid "" msgid ""
"To simplify token stream handling, all :ref:`operators` and :ref:" "To simplify token stream handling, all :ref:`operator <operators>` and :ref:"
"`delimiters` tokens are returned using the generic :data:`token.OP` token " "`delimiter <delimiters>` tokens and :data:`Ellipsis` are returned using the "
"type. The exact type can be determined by checking the ``exact_type`` " "generic :data:`~token.OP` token type. The exact type can be determined by "
"property on the :term:`named tuple` returned from :func:`tokenize.tokenize`." "checking the ``exact_type`` property on the :term:`named tuple` returned "
"from :func:`tokenize.tokenize`."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:25 #: ../Doc/library/tokenize.rst:26
msgid "Tokenizing Input" msgid "Tokenizing Input"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:27 #: ../Doc/library/tokenize.rst:28
msgid "The primary entry point is a :term:`generator`:" msgid "The primary entry point is a :term:`generator`:"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:31 #: ../Doc/library/tokenize.rst:32
msgid "" msgid ""
"The :func:`.tokenize` generator requires one argument, *readline*, which " "The :func:`.tokenize` generator requires one argument, *readline*, which "
"must be a callable object which provides the same interface as the :meth:`io." "must be a callable object which provides the same interface as the :meth:`io."
@ -57,7 +58,7 @@ msgid ""
"return one line of input as bytes." "return one line of input as bytes."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:36 #: ../Doc/library/tokenize.rst:37
msgid "" msgid ""
"The generator produces 5-tuples with these members: the token type; the " "The generator produces 5-tuples with these members: the token type; the "
"token string; a 2-tuple ``(srow, scol)`` of ints specifying the row and " "token string; a 2-tuple ``(srow, scol)`` of ints specifying the row and "
@ -69,7 +70,7 @@ msgid ""
"end line``." "end line``."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:45 #: ../Doc/library/tokenize.rst:46
msgid "" msgid ""
"The returned :term:`named tuple` has an additional property named " "The returned :term:`named tuple` has an additional property named "
"``exact_type`` that contains the exact operator type for :data:`token.OP` " "``exact_type`` that contains the exact operator type for :data:`token.OP` "
@ -77,59 +78,59 @@ msgid ""
"``type`` field." "``type`` field."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:50 #: ../Doc/library/tokenize.rst:51
msgid "Added support for named tuples." msgid "Added support for named tuples."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:53 #: ../Doc/library/tokenize.rst:54
msgid "Added support for ``exact_type``." msgid "Added support for ``exact_type``."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:56 #: ../Doc/library/tokenize.rst:57
msgid "" msgid ""
":func:`.tokenize` determines the source encoding of the file by looking for " ":func:`.tokenize` determines the source encoding of the file by looking for "
"a UTF-8 BOM or encoding cookie, according to :pep:`263`." "a UTF-8 BOM or encoding cookie, according to :pep:`263`."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:60 #: ../Doc/library/tokenize.rst:61
msgid "" msgid ""
"All constants from the :mod:`token` module are also exported from :mod:" "All constants from the :mod:`token` module are also exported from :mod:"
"`tokenize`, as are three additional token type values:" "`tokenize`, as are three additional token type values:"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:65 #: ../Doc/library/tokenize.rst:66
msgid "Token value used to indicate a comment." msgid "Token value used to indicate a comment."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:70 #: ../Doc/library/tokenize.rst:71
msgid "" msgid ""
"Token value used to indicate a non-terminating newline. The NEWLINE token " "Token value used to indicate a non-terminating newline. The NEWLINE token "
"indicates the end of a logical line of Python code; NL tokens are generated " "indicates the end of a logical line of Python code; NL tokens are generated "
"when a logical line of code is continued over multiple physical lines." "when a logical line of code is continued over multiple physical lines."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:77 #: ../Doc/library/tokenize.rst:78
msgid "" msgid ""
"Token value that indicates the encoding used to decode the source bytes into " "Token value that indicates the encoding used to decode the source bytes into "
"text. The first token returned by :func:`.tokenize` will always be an " "text. The first token returned by :func:`.tokenize` will always be an "
"ENCODING token." "ENCODING token."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:82 #: ../Doc/library/tokenize.rst:83
msgid "" msgid ""
"Another function is provided to reverse the tokenization process. This is " "Another function is provided to reverse the tokenization process. This is "
"useful for creating tools that tokenize a script, modify the token stream, " "useful for creating tools that tokenize a script, modify the token stream, "
"and write back the modified script." "and write back the modified script."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:89 #: ../Doc/library/tokenize.rst:90
msgid "" msgid ""
"Converts tokens back into Python source code. The *iterable* must return " "Converts tokens back into Python source code. The *iterable* must return "
"sequences with at least two elements, the token type and the token string. " "sequences with at least two elements, the token type and the token string. "
"Any additional sequence elements are ignored." "Any additional sequence elements are ignored."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:93 #: ../Doc/library/tokenize.rst:94
msgid "" msgid ""
"The reconstructed script is returned as a single string. The result is " "The reconstructed script is returned as a single string. The result is "
"guaranteed to tokenize back to match the input so that the conversion is " "guaranteed to tokenize back to match the input so that the conversion is "
@ -138,32 +139,32 @@ msgid ""
"may change." "may change."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:99 #: ../Doc/library/tokenize.rst:100
msgid "" msgid ""
"It returns bytes, encoded using the ENCODING token, which is the first token " "It returns bytes, encoded using the ENCODING token, which is the first token "
"sequence output by :func:`.tokenize`." "sequence output by :func:`.tokenize`."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:103 #: ../Doc/library/tokenize.rst:104
msgid "" msgid ""
":func:`.tokenize` needs to detect the encoding of source files it tokenizes. " ":func:`.tokenize` needs to detect the encoding of source files it tokenizes. "
"The function it uses to do this is available:" "The function it uses to do this is available:"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:108 #: ../Doc/library/tokenize.rst:109
msgid "" msgid ""
"The :func:`detect_encoding` function is used to detect the encoding that " "The :func:`detect_encoding` function is used to detect the encoding that "
"should be used to decode a Python source file. It requires one argument, " "should be used to decode a Python source file. It requires one argument, "
"readline, in the same way as the :func:`.tokenize` generator." "readline, in the same way as the :func:`.tokenize` generator."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:112 #: ../Doc/library/tokenize.rst:113
msgid "" msgid ""
"It will call readline a maximum of twice, and return the encoding used (as a " "It will call readline a maximum of twice, and return the encoding used (as a "
"string) and a list of any lines (not decoded from bytes) it has read in." "string) and a list of any lines (not decoded from bytes) it has read in."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:116 #: ../Doc/library/tokenize.rst:117
msgid "" msgid ""
"It detects the encoding from the presence of a UTF-8 BOM or an encoding " "It detects the encoding from the presence of a UTF-8 BOM or an encoding "
"cookie as specified in :pep:`263`. If both a BOM and a cookie are present, " "cookie as specified in :pep:`263`. If both a BOM and a cookie are present, "
@ -171,84 +172,84 @@ msgid ""
"``'utf-8-sig'`` will be returned as an encoding." "``'utf-8-sig'`` will be returned as an encoding."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:121 #: ../Doc/library/tokenize.rst:122
msgid "" msgid ""
"If no encoding is specified, then the default of ``'utf-8'`` will be " "If no encoding is specified, then the default of ``'utf-8'`` will be "
"returned." "returned."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:124 #: ../Doc/library/tokenize.rst:125
msgid "" msgid ""
"Use :func:`.open` to open Python source files: it uses :func:" "Use :func:`.open` to open Python source files: it uses :func:"
"`detect_encoding` to detect the file encoding." "`detect_encoding` to detect the file encoding."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:130 #: ../Doc/library/tokenize.rst:131
msgid "" msgid ""
"Open a file in read only mode using the encoding detected by :func:" "Open a file in read only mode using the encoding detected by :func:"
"`detect_encoding`." "`detect_encoding`."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:137 #: ../Doc/library/tokenize.rst:138
msgid "" msgid ""
"Raised when either a docstring or expression that may be split over several " "Raised when either a docstring or expression that may be split over several "
"lines is not completed anywhere in the file, for example::" "lines is not completed anywhere in the file, for example::"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:143 #: ../Doc/library/tokenize.rst:144
msgid "or::" msgid "or::"
msgstr "ou : ::" msgstr "ou : ::"
#: ../Doc/library/tokenize.rst:149 #: ../Doc/library/tokenize.rst:150
msgid "" msgid ""
"Note that unclosed single-quoted strings do not cause an error to be raised. " "Note that unclosed single-quoted strings do not cause an error to be raised. "
"They are tokenized as ``ERRORTOKEN``, followed by the tokenization of their " "They are tokenized as ``ERRORTOKEN``, followed by the tokenization of their "
"contents." "contents."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:157 #: ../Doc/library/tokenize.rst:158
msgid "Command-Line Usage" msgid "Command-Line Usage"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:161 #: ../Doc/library/tokenize.rst:162
msgid "" msgid ""
"The :mod:`tokenize` module can be executed as a script from the command " "The :mod:`tokenize` module can be executed as a script from the command "
"line. It is as simple as:" "line. It is as simple as:"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:168 #: ../Doc/library/tokenize.rst:169
msgid "The following options are accepted:" msgid "The following options are accepted:"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:174 #: ../Doc/library/tokenize.rst:175
msgid "show this help message and exit" msgid "show this help message and exit"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:178 #: ../Doc/library/tokenize.rst:179
msgid "display token names using the exact type" msgid "display token names using the exact type"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:180 #: ../Doc/library/tokenize.rst:181
msgid "" msgid ""
"If :file:`filename.py` is specified its contents are tokenized to stdout. " "If :file:`filename.py` is specified its contents are tokenized to stdout. "
"Otherwise, tokenization is performed on stdin." "Otherwise, tokenization is performed on stdin."
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:184 #: ../Doc/library/tokenize.rst:185
msgid "Examples" msgid "Examples"
msgstr "Exemples" msgstr "Exemples"
#: ../Doc/library/tokenize.rst:186 #: ../Doc/library/tokenize.rst:187
msgid "" msgid ""
"Example of a script rewriter that transforms float literals into Decimal " "Example of a script rewriter that transforms float literals into Decimal "
"objects::" "objects::"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:228 #: ../Doc/library/tokenize.rst:229
msgid "Example of tokenizing from the command line. The script::" msgid "Example of tokenizing from the command line. The script::"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:235 #: ../Doc/library/tokenize.rst:236
msgid "" msgid ""
"will be tokenized to the following output where the first column is the " "will be tokenized to the following output where the first column is the "
"range of the line/column coordinates where the token is found, the second " "range of the line/column coordinates where the token is found, the second "
@ -256,6 +257,6 @@ msgid ""
"token (if any)" "token (if any)"
msgstr "" msgstr ""
#: ../Doc/library/tokenize.rst:263 #: ../Doc/library/tokenize.rst:264
msgid "The exact token type names can be displayed using the ``-e`` option:" msgid "The exact token type names can be displayed using the ``-e`` option:"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-11 19:00+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -45,6 +45,10 @@ msgid ""
"degrees clockwise." "degrees clockwise."
msgstr "" msgstr ""
#: ../Doc/library/turtle.rst:0
msgid "Turtle star"
msgstr ""
#: ../Doc/library/turtle.rst:33 #: ../Doc/library/turtle.rst:33
msgid "" msgid ""
"Turtle can draw intricate shapes using programs that repeat simple moves." "Turtle can draw intricate shapes using programs that repeat simple moves."
@ -610,10 +614,6 @@ msgid ""
"``turtle``." "``turtle``."
msgstr "" msgstr ""
#: ../Doc/library/turtle.rst:0
msgid "Parameters"
msgstr ""
#: ../Doc/library/turtle.rst:247 ../Doc/library/turtle.rst:290 #: ../Doc/library/turtle.rst:247 ../Doc/library/turtle.rst:290
#: ../Doc/library/turtle.rst:313 ../Doc/library/turtle.rst:369 #: ../Doc/library/turtle.rst:313 ../Doc/library/turtle.rst:369
#: ../Doc/library/turtle.rst:390 ../Doc/library/turtle.rst:411 #: ../Doc/library/turtle.rst:390 ../Doc/library/turtle.rst:411

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -2235,7 +2235,7 @@ msgstr ""
#: ../Doc/reference/datamodel.rst:1877 #: ../Doc/reference/datamodel.rst:1877
msgid "" msgid ""
"The potential uses for metaclasses are boundless. Some ideas that have been " "The potential uses for metaclasses are boundless. Some ideas that have been "
"explored include logging, interface checking, automatic delegation, " "explored include enum, logging, interface checking, automatic delegation, "
"automatic property creation, proxies, frameworks, and automatic resource " "automatic property creation, proxies, frameworks, and automatic resource "
"locking/synchronization." "locking/synchronization."
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -1879,7 +1879,9 @@ msgid "``*``, ``@``, ``/``, ``//``, ``%``"
msgstr "``*``, ``@``, ``/``, ``//``, ``%``" msgstr "``*``, ``@``, ``/``, ``//``, ``%``"
#: ../Doc/reference/expressions.rst:1694 #: ../Doc/reference/expressions.rst:1694
msgid "Multiplication, matrix multiplication division, remainder [#]_" msgid ""
"Multiplication, matrix multiplication, division, floor division, remainder "
"[#]_"
msgstr "" msgstr ""
#: ../Doc/reference/expressions.rst:1698 #: ../Doc/reference/expressions.rst:1698

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -892,101 +892,101 @@ msgstr ""
msgid "Some examples of formatted string literals::" msgid "Some examples of formatted string literals::"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:680 #: ../Doc/reference/lexical_analysis.rst:686
msgid "" msgid ""
"A consequence of sharing the same syntax as regular string literals is that " "A consequence of sharing the same syntax as regular string literals is that "
"characters in the replacement fields must not conflict with the quoting used " "characters in the replacement fields must not conflict with the quoting used "
"in the outer formatted string literal::" "in the outer formatted string literal::"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:687 #: ../Doc/reference/lexical_analysis.rst:693
msgid "" msgid ""
"Backslashes are not allowed in format expressions and will raise an error::" "Backslashes are not allowed in format expressions and will raise an error::"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:692 #: ../Doc/reference/lexical_analysis.rst:698
msgid "" msgid ""
"To include a value in which a backslash escape is required, create a " "To include a value in which a backslash escape is required, create a "
"temporary variable." "temporary variable."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:699 #: ../Doc/reference/lexical_analysis.rst:705
msgid "" msgid ""
"Formatted string literals cannot be used as docstrings, even if they do not " "Formatted string literals cannot be used as docstrings, even if they do not "
"include expressions." "include expressions."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:710 #: ../Doc/reference/lexical_analysis.rst:716
msgid "" msgid ""
"See also :pep:`498` for the proposal that added formatted string literals, " "See also :pep:`498` for the proposal that added formatted string literals, "
"and :meth:`str.format`, which uses a related format string mechanism." "and :meth:`str.format`, which uses a related format string mechanism."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:717 #: ../Doc/reference/lexical_analysis.rst:723
msgid "Numeric literals" msgid "Numeric literals"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:723 #: ../Doc/reference/lexical_analysis.rst:729
msgid "" msgid ""
"There are three types of numeric literals: integers, floating point numbers, " "There are three types of numeric literals: integers, floating point numbers, "
"and imaginary numbers. There are no complex literals (complex numbers can " "and imaginary numbers. There are no complex literals (complex numbers can "
"be formed by adding a real number and an imaginary number)." "be formed by adding a real number and an imaginary number)."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:727 #: ../Doc/reference/lexical_analysis.rst:733
msgid "" msgid ""
"Note that numeric literals do not include a sign; a phrase like ``-1`` is " "Note that numeric literals do not include a sign; a phrase like ``-1`` is "
"actually an expression composed of the unary operator '``-``' and the " "actually an expression composed of the unary operator '``-``' and the "
"literal ``1``." "literal ``1``."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:735 #: ../Doc/reference/lexical_analysis.rst:741
msgid "Integer literals" msgid "Integer literals"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:737 #: ../Doc/reference/lexical_analysis.rst:743
msgid "Integer literals are described by the following lexical definitions:" msgid "Integer literals are described by the following lexical definitions:"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:751 #: ../Doc/reference/lexical_analysis.rst:757
msgid "" msgid ""
"There is no limit for the length of integer literals apart from what can be " "There is no limit for the length of integer literals apart from what can be "
"stored in available memory." "stored in available memory."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:754 #: ../Doc/reference/lexical_analysis.rst:760
msgid "" msgid ""
"Underscores are ignored for determining the numeric value of the literal. " "Underscores are ignored for determining the numeric value of the literal. "
"They can be used to group digits for enhanced readability. One underscore " "They can be used to group digits for enhanced readability. One underscore "
"can occur between digits, and after base specifiers like ``0x``." "can occur between digits, and after base specifiers like ``0x``."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:758 #: ../Doc/reference/lexical_analysis.rst:764
msgid "" msgid ""
"Note that leading zeros in a non-zero decimal number are not allowed. This " "Note that leading zeros in a non-zero decimal number are not allowed. This "
"is for disambiguation with C-style octal literals, which Python used before " "is for disambiguation with C-style octal literals, which Python used before "
"version 3.0." "version 3.0."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:762 #: ../Doc/reference/lexical_analysis.rst:768
msgid "Some examples of integer literals::" msgid "Some examples of integer literals::"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:768 #: ../Doc/reference/lexical_analysis.rst:774
#: ../Doc/reference/lexical_analysis.rst:800 #: ../Doc/reference/lexical_analysis.rst:806
msgid "Underscores are now allowed for grouping purposes in literals." msgid "Underscores are now allowed for grouping purposes in literals."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:775 #: ../Doc/reference/lexical_analysis.rst:781
msgid "Floating point literals" msgid "Floating point literals"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:777 #: ../Doc/reference/lexical_analysis.rst:783
msgid "" msgid ""
"Floating point literals are described by the following lexical definitions:" "Floating point literals are described by the following lexical definitions:"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:787 #: ../Doc/reference/lexical_analysis.rst:793
msgid "" msgid ""
"Note that the integer and exponent parts are always interpreted using radix " "Note that the integer and exponent parts are always interpreted using radix "
"10. For example, ``077e010`` is legal, and denotes the same number as " "10. For example, ``077e010`` is legal, and denotes the same number as "
@ -995,26 +995,26 @@ msgid ""
"grouping." "grouping."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:792 #: ../Doc/reference/lexical_analysis.rst:798
msgid "Some examples of floating point literals::" msgid "Some examples of floating point literals::"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:796 #: ../Doc/reference/lexical_analysis.rst:802
msgid "" msgid ""
"Note that numeric literals do not include a sign; a phrase like ``-1`` is " "Note that numeric literals do not include a sign; a phrase like ``-1`` is "
"actually an expression composed of the unary operator ``-`` and the literal " "actually an expression composed of the unary operator ``-`` and the literal "
"``1``." "``1``."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:807 #: ../Doc/reference/lexical_analysis.rst:813
msgid "Imaginary literals" msgid "Imaginary literals"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:809 #: ../Doc/reference/lexical_analysis.rst:815
msgid "Imaginary literals are described by the following lexical definitions:" msgid "Imaginary literals are described by the following lexical definitions:"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:814 #: ../Doc/reference/lexical_analysis.rst:820
msgid "" msgid ""
"An imaginary literal yields a complex number with a real part of 0.0. " "An imaginary literal yields a complex number with a real part of 0.0. "
"Complex numbers are represented as a pair of floating point numbers and have " "Complex numbers are represented as a pair of floating point numbers and have "
@ -1023,23 +1023,23 @@ msgid ""
"Some examples of imaginary literals::" "Some examples of imaginary literals::"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:826 #: ../Doc/reference/lexical_analysis.rst:832
msgid "Operators" msgid "Operators"
msgstr "Opérateurs" msgstr "Opérateurs"
#: ../Doc/reference/lexical_analysis.rst:830 #: ../Doc/reference/lexical_analysis.rst:836
msgid "The following tokens are operators:" msgid "The following tokens are operators:"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:843 #: ../Doc/reference/lexical_analysis.rst:849
msgid "Delimiters" msgid "Delimiters"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:847 #: ../Doc/reference/lexical_analysis.rst:853
msgid "The following tokens serve as delimiters in the grammar:" msgid "The following tokens serve as delimiters in the grammar:"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:856 #: ../Doc/reference/lexical_analysis.rst:862
msgid "" msgid ""
"The period can also occur in floating-point and imaginary literals. A " "The period can also occur in floating-point and imaginary literals. A "
"sequence of three periods has a special meaning as an ellipsis literal. The " "sequence of three periods has a special meaning as an ellipsis literal. The "
@ -1047,22 +1047,22 @@ msgid ""
"as delimiters, but also perform an operation." "as delimiters, but also perform an operation."
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:861 #: ../Doc/reference/lexical_analysis.rst:867
msgid "" msgid ""
"The following printing ASCII characters have special meaning as part of " "The following printing ASCII characters have special meaning as part of "
"other tokens or are otherwise significant to the lexical analyzer:" "other tokens or are otherwise significant to the lexical analyzer:"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:868 #: ../Doc/reference/lexical_analysis.rst:874
msgid "" msgid ""
"The following printing ASCII characters are not used in Python. Their " "The following printing ASCII characters are not used in Python. Their "
"occurrence outside string literals and comments is an unconditional error:" "occurrence outside string literals and comments is an unconditional error:"
msgstr "" msgstr ""
#: ../Doc/reference/lexical_analysis.rst:877 #: ../Doc/reference/lexical_analysis.rst:883
msgid "Footnotes" msgid "Footnotes"
msgstr "Notes" msgstr "Notes"
#: ../Doc/reference/lexical_analysis.rst:878 #: ../Doc/reference/lexical_analysis.rst:884
msgid "http://www.unicode.org/Public/9.0.0/ucd/NameAliases.txt" msgid "http://www.unicode.org/Public/9.0.0/ucd/NameAliases.txt"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-05-16 13:58+0200\n" "PO-Revision-Date: 2017-05-16 13:58+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -69,17 +69,45 @@ msgstr "Liste de Livres"
msgid "Audio/Visual Talks" msgid "Audio/Visual Talks"
msgstr "Discours audiovisuels" msgstr "Discours audiovisuels"
#: ../Doc/tools/templates/customsourcelink.html:3 #: ../Doc/tools/templates/layout.html:10
msgid "This Page" msgid "Documentation "
msgstr "Cette Page" msgstr "Documentation"
#: ../Doc/tools/templates/customsourcelink.html:5 #: ../Doc/tools/templates/layout.html:21
msgid "Report a Bug" msgid "Quick search"
msgstr "Rapporter un bug" msgstr "Recherche rapide"
#: ../Doc/tools/templates/customsourcelink.html:8 #: ../Doc/tools/templates/layout.html:22
msgid "Show Source" msgid "Go"
msgstr "Voir la source" msgstr "Go"
#: ../Doc/tools/templates/layout.html:108
#: ../Doc/tools/templates/indexcontent.html:63
msgid "Copyright"
msgstr "Copyright"
#: ../Doc/tools/templates/layout.html:110
msgid "The Python Software Foundation is a non-profit corporation."
msgstr "La Python Software Foundation est une organisation à but non lucratif."
#: ../Doc/tools/templates/layout.html:111
msgid "Please donate."
msgstr "Les dons sont les bienvenus."
#: ../Doc/tools/templates/layout.html:113
msgid "Last updated on %(last_updated)s."
msgstr "Dernière mise-à-jour le %(last_updated)s."
#: ../Doc/tools/templates/layout.html:114
msgid "<a href=\"%(pathto_bugs)s\">Found a bug</a>?"
msgstr "<a href=\"%(pathto_bugs)s\">Vous avez trouvé un bug</a> ?"
#: ../Doc/tools/templates/layout.html:116
msgid ""
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
"%(sphinx_version)s."
msgstr ""
"Crée via <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s."
#: ../Doc/tools/templates/indexcontent.html:8 #: ../Doc/tools/templates/indexcontent.html:8
msgid "Welcome! This is the documentation for Python %(release)s." msgid "Welcome! This is the documentation for Python %(release)s."
@ -239,42 +267,14 @@ msgstr "À propos de la documentation"
msgid "History and License of Python" msgid "History and License of Python"
msgstr "Histoire et Licence de Python" msgstr "Histoire et Licence de Python"
#: ../Doc/tools/templates/indexcontent.html:63 #: ../Doc/tools/templates/customsourcelink.html:3
#: ../Doc/tools/templates/layout.html:108 msgid "This Page"
msgid "Copyright" msgstr "Cette Page"
msgstr "Copyright"
#: ../Doc/tools/templates/layout.html:10 #: ../Doc/tools/templates/customsourcelink.html:5
msgid "Documentation " msgid "Report a Bug"
msgstr "Documentation" msgstr "Rapporter un bug"
#: ../Doc/tools/templates/layout.html:21 #: ../Doc/tools/templates/customsourcelink.html:8
msgid "Quick search" msgid "Show Source"
msgstr "Recherche rapide" msgstr "Voir la source"
#: ../Doc/tools/templates/layout.html:22
msgid "Go"
msgstr "Go"
#: ../Doc/tools/templates/layout.html:110
msgid "The Python Software Foundation is a non-profit corporation."
msgstr "La Python Software Foundation est une organisation à but non lucratif."
#: ../Doc/tools/templates/layout.html:111
msgid "Please donate."
msgstr "Les dons sont les bienvenus."
#: ../Doc/tools/templates/layout.html:113
msgid "Last updated on %(last_updated)s."
msgstr "Dernière mise-à-jour le %(last_updated)s."
#: ../Doc/tools/templates/layout.html:114
msgid "<a href=\"%(pathto_bugs)s\">Found a bug</a>?"
msgstr "<a href=\"%(pathto_bugs)s\">Vous avez trouvé un bug</a> ?"
#: ../Doc/tools/templates/layout.html:116
msgid ""
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
"%(sphinx_version)s."
msgstr ""
"Crée via <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Using Python on a Macintosh" msgid "Using Python on a Macintosh"
msgstr "Utilisation de Python sur un Macintosh" msgstr "Utilisation de Python sur un Macintosh"
#: ../Doc/using/mac.rst:0
msgid "Author"
msgstr ""
#: ../Doc/using/mac.rst:8 #: ../Doc/using/mac.rst:8
msgid "Bob Savage <bobsavage@mac.com>" msgid "Bob Savage <bobsavage@mac.com>"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.0" msgid "What's New in Python 2.0"
msgstr "Nouveautés de Python 2.0" msgstr "Nouveautés de Python 2.0"
#: ../Doc/whatsnew/2.0.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.0.rst:5 #: ../Doc/whatsnew/2.0.rst:5
msgid "A.M. Kuchling and Moshe Zadka" msgid "A.M. Kuchling and Moshe Zadka"
msgstr "A.M. Kuchling et Moshe Zadka" msgstr "A.M. Kuchling et Moshe Zadka"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.1" msgid "What's New in Python 2.1"
msgstr "Nouveautés de Python 2.1" msgstr "Nouveautés de Python 2.1"
#: ../Doc/whatsnew/2.1.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.1.rst:5 #: ../Doc/whatsnew/2.1.rst:5
msgid "A.M. Kuchling" msgid "A.M. Kuchling"
msgstr "A.M. Kuchling" msgstr "A.M. Kuchling"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.2" msgid "What's New in Python 2.2"
msgstr "Nouveautés de Python 2.2" msgstr "Nouveautés de Python 2.2"
#: ../Doc/whatsnew/2.2.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.2.rst:5 #: ../Doc/whatsnew/2.2.rst:5
msgid "A.M. Kuchling" msgid "A.M. Kuchling"
msgstr "A.M. Kuchling" msgstr "A.M. Kuchling"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.3" msgid "What's New in Python 2.3"
msgstr "Nouveautés de Python 2.3" msgstr "Nouveautés de Python 2.3"
#: ../Doc/whatsnew/2.3.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.3.rst:5 #: ../Doc/whatsnew/2.3.rst:5
msgid "A.M. Kuchling" msgid "A.M. Kuchling"
msgstr "A.M. Kuchling" msgstr "A.M. Kuchling"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.4" msgid "What's New in Python 2.4"
msgstr "Nouveautés de Python 2.4" msgstr "Nouveautés de Python 2.4"
#: ../Doc/whatsnew/2.4.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.4.rst:5 #: ../Doc/whatsnew/2.4.rst:5
msgid "A.M. Kuchling" msgid "A.M. Kuchling"
msgstr "A.M. Kuchling" msgstr "A.M. Kuchling"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:53+0200\n" "PO-Revision-Date: 2017-08-10 00:53+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.5" msgid "What's New in Python 2.5"
msgstr "Nouveautés de Python 2.5" msgstr "Nouveautés de Python 2.5"
#: ../Doc/whatsnew/2.5.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.5.rst:5 #: ../Doc/whatsnew/2.5.rst:5
msgid "A.M. Kuchling" msgid "A.M. Kuchling"
msgstr "A.M. Kuchling" msgstr "A.M. Kuchling"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:53+0200\n" "PO-Revision-Date: 2017-08-10 00:53+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.6" msgid "What's New in Python 2.6"
msgstr "Nouveautés de Python 2.6" msgstr "Nouveautés de Python 2.6"
#: ../Doc/whatsnew/2.6.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.6.rst:9 #: ../Doc/whatsnew/2.6.rst:9
msgid "A.M. Kuchling (amk at amk.ca)" msgid "A.M. Kuchling (amk at amk.ca)"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:52+0200\n" "PO-Revision-Date: 2017-08-10 00:52+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.7" msgid "What's New in Python 2.7"
msgstr "Nouveautés de Python 2.7" msgstr "Nouveautés de Python 2.7"
#: ../Doc/whatsnew/2.7.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.7.rst:5 #: ../Doc/whatsnew/2.7.rst:5
msgid "A.M. Kuchling (amk at amk.ca)" msgid "A.M. Kuchling (amk at amk.ca)"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.0" msgid "What's New In Python 3.0"
msgstr "Nouveautés de Python 3.0" msgstr "Nouveautés de Python 3.0"
#: ../Doc/whatsnew/3.0.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/3.0.rst:7 #: ../Doc/whatsnew/3.0.rst:7
msgid "Guido van Rossum" msgid "Guido van Rossum"
msgstr "Guido van Rossum" msgstr "Guido van Rossum"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.1" msgid "What's New In Python 3.1"
msgstr "Nouveautés de Python 3.1" msgstr "Nouveautés de Python 3.1"
#: ../Doc/whatsnew/3.1.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/3.1.rst:5 #: ../Doc/whatsnew/3.1.rst:5
msgid "Raymond Hettinger" msgid "Raymond Hettinger"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.2" msgid "What's New In Python 3.2"
msgstr "Nouveautés de Python 3.2" msgstr "Nouveautés de Python 3.2"
#: ../Doc/whatsnew/3.2.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/3.2.rst:5 #: ../Doc/whatsnew/3.2.rst:5
msgid "Raymond Hettinger" msgid "Raymond Hettinger"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.4" msgid "What's New In Python 3.4"
msgstr "Nouveautés de Python 3.4" msgstr "Nouveautés de Python 3.4"
#: ../Doc/whatsnew/3.4.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/3.4.rst:5 #: ../Doc/whatsnew/3.4.rst:5
msgid "R. David Murray <rdmurray@bitdance.com> (Editor)" msgid "R. David Murray <rdmurray@bitdance.com> (Editor)"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:52+0200\n" "PO-Revision-Date: 2017-08-10 00:52+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.5" msgid "What's New In Python 3.5"
msgstr "Nouveautés de Python 3.5" msgstr "Nouveautés de Python 3.5"
#: ../Doc/whatsnew/3.5.rst:0
msgid "Editors"
msgstr ""
#: ../Doc/whatsnew/3.5.rst:5 #: ../Doc/whatsnew/3.5.rst:5
msgid "Elvis Pranskevichus <elvis@magic.io>, Yury Selivanov <yury@magic.io>" msgid "Elvis Pranskevichus <elvis@magic.io>, Yury Selivanov <yury@magic.io>"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-05-27 14:24+0200\n" "PO-Revision-Date: 2017-05-27 14:24+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n" "Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.6" msgid "What's New In Python 3.6"
msgstr "" msgstr ""
#: ../Doc/whatsnew/3.6.rst:0
msgid "Editors"
msgstr ""
#: ../Doc/whatsnew/3.6.rst:5 #: ../Doc/whatsnew/3.6.rst:5
msgid "Elvis Pranskevichus <elvis@magic.io>, Yury Selivanov <yury@magic.io>" msgid "Elvis Pranskevichus <elvis@magic.io>, Yury Selivanov <yury@magic.io>"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n" "POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -32,9 +32,12 @@ msgstr ""
"quiconque souhaitant être à jour suite à une nouvelle sortie." "quiconque souhaitant être à jour suite à une nouvelle sortie."
#: ../Doc/whatsnew/index.rst:30 #: ../Doc/whatsnew/index.rst:30
#, fuzzy
msgid "" msgid ""
"The \"Changelog\" is a HTML version of the file :source:`Misc/NEWS` which " "The \"Changelog\" is an HTML version of the `file built <https://pypi.org/"
"contains *all* nontrivial changes to Python for the current version." "project/blurb>`_ from the contents of the :source:`Misc/NEWS.d` directory "
"tree, which contains *all* nontrivial changes to Python for the current "
"version."
msgstr "" msgstr ""
"Le « Changelog » est une version HTML du fichier :source:`Misc/NEWS` qui " "Le « Changelog » est une version HTML du fichier :source:`Misc/NEWS` qui "
"contient *tous* les changements non-triviaux de Python pour la version " "contient *tous* les changements non-triviaux de Python pour la version "