1
0
Fork 0
python-docs-fr/library/datatypes.po

47 lines
1.8 KiB
Plaintext
Raw Permalink Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
2020-09-11 07:11:46 +00:00
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
2019-11-18 16:09:06 +00:00
"PO-Revision-Date: 2019-11-17 23:05+0100\n"
"Last-Translator: Jules Lasne <jules.lasne@gmail.com>\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
2019-11-18 16:09:06 +00:00
"X-Generator: Poedit 2.2.4\n"
2016-10-30 09:46:26 +00:00
#: library/datatypes.rst:5
2016-10-30 09:46:26 +00:00
msgid "Data Types"
msgstr "Types de données"
2016-10-30 09:46:26 +00:00
#: library/datatypes.rst:7
2016-10-30 09:46:26 +00:00
msgid ""
"The modules described in this chapter provide a variety of specialized data "
2019-10-09 16:10:12 +00:00
"types such as dates and times, fixed-type arrays, heap queues, double-ended "
"queues, and enumerations."
2016-10-30 09:46:26 +00:00
msgstr ""
2017-11-05 10:52:27 +00:00
"Les modules documentés dans ce chapitre fournissent une gamme de types de "
"données spécialisés tel que les dates et les heures, les listes à type "
"prédéfini, les *heap queue*, les queues synchronisées et les énumérations."
2016-10-30 09:46:26 +00:00
#: library/datatypes.rst:11
2016-10-30 09:46:26 +00:00
msgid ""
"Python also provides some built-in data types, in particular, :class:"
"`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and :class:"
"`tuple`. The :class:`str` class is used to hold Unicode strings, and the :"
2019-10-09 16:10:12 +00:00
"class:`bytes` and :class:`bytearray` classes are used to hold binary data."
2016-10-30 09:46:26 +00:00
msgstr ""
2017-11-05 10:52:27 +00:00
"Python fournit aussi quelques types natifs, typiquement :class:`dict`, :"
2017-11-21 20:22:38 +00:00
"class:`list`, :class:`set`, :class:`frozenset`, et :class:`tuple`. La "
2019-11-18 16:09:06 +00:00
"classe :class:`str` est utilisée pour stocker des chaînes Unicode, et les "
"classes :class:`bytes` et :class:`bytearray` des données binaires."
2016-10-30 09:46:26 +00:00
#: library/datatypes.rst:17
2016-10-30 09:46:26 +00:00
msgid "The following modules are documented in this chapter:"
2017-11-05 10:52:27 +00:00
msgstr "Les modules suivants sont documentés dans ce chapitre :"