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

68 lines
2.3 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"
2018-09-28 09:36:32 +00:00
"PO-Revision-Date: 2018-09-28 11:33+0200\n"
2017-08-11 17:15:07 +00:00
"Last-Translator: Julien Palard <julien@palard.fr>\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"
2017-08-09 22:23:54 +00:00
"X-Generator: Poedit 1.8.11\n"
2016-10-30 09:46:26 +00:00
#: library/filesys.rst:5
2016-10-30 09:46:26 +00:00
msgid "File and Directory Access"
2017-11-22 07:51:34 +00:00
msgstr "Accès aux Fichiers et aux Dossiers"
2016-10-30 09:46:26 +00:00
#: library/filesys.rst:7
2016-10-30 09:46:26 +00:00
msgid ""
"The modules described in this chapter deal with disk files and directories. "
"For example, there are modules for reading the properties of files, "
"manipulating paths in a portable way, and creating temporary files. The "
"full list of modules in this chapter is:"
msgstr ""
2017-11-22 07:51:34 +00:00
"Les modules décrits dans ce chapitre servent à accéder aux fichiers et aux "
"dossiers. Des modules, par exemple, pour lire les propriétés des fichiers, "
"manipuler des chemins de manière portable, et créer des fichiers "
"temporaires. La liste exhaustive des modules de ce chapitre est :"
2016-10-30 09:46:26 +00:00
#: library/filesys.rst:31
2016-10-30 09:46:26 +00:00
msgid "Module :mod:`os`"
msgstr "Module :mod:`os`"
#: library/filesys.rst:30
2016-10-30 09:46:26 +00:00
msgid ""
"Operating system interfaces, including functions to work with files at a "
"lower level than Python :term:`file objects <file object>`."
msgstr ""
2017-11-22 07:51:34 +00:00
"Interfaces du système d'exploitation, incluant des fonctions pour travailler "
"avec des fichiers dans un niveau plus bas que les :term:`objets fichiers "
"<file object>` de Python."
2016-10-30 09:46:26 +00:00
#: library/filesys.rst:35
2016-10-30 09:46:26 +00:00
msgid "Module :mod:`io`"
2017-08-09 22:23:54 +00:00
msgstr "Module :mod:`io`"
2016-10-30 09:46:26 +00:00
#: library/filesys.rst:34
2016-10-30 09:46:26 +00:00
msgid ""
"Python's built-in I/O library, including both abstract classes and some "
"concrete classes such as file I/O."
msgstr ""
2018-09-28 09:36:32 +00:00
"Bibliothèque d'entrées/sorties native de Python, incluant des classes "
"abstraites et concrètes tel que les I/O sur les fichiers."
2016-10-30 09:46:26 +00:00
#: library/filesys.rst:37
2016-10-30 09:46:26 +00:00
msgid "Built-in function :func:`open`"
msgstr "Fonction native :func:`open`"
#: library/filesys.rst:38
2016-10-30 09:46:26 +00:00
msgid "The standard way to open files for reading and writing with Python."
msgstr ""
2017-11-22 07:51:34 +00:00
"Le moyen classique pour ouvrir des fichiers pour les lire ou y écrire avec "
"Python."