python-docs-fr/library/fnmatch.po

150 lines
5.1 KiB
Plaintext

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2016, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-10-30 10:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/fnmatch.rst:2
msgid ":mod:`fnmatch` --- Unix filename pattern matching"
msgstr ":mod:`fnmatch` --- Filtrage par motif des noms de fichiers Unix"
#: ../Doc/library/fnmatch.rst:12
msgid "**Source code:** :source:`Lib/fnmatch.py`"
msgstr "**Code source :** :source:`Lib/fnmatch.py`"
#: ../Doc/library/fnmatch.rst:16
msgid ""
"This module provides support for Unix shell-style wildcards, which are *not* "
"the same as regular expressions (which are documented in the :mod:`re` "
"module). The special characters used in shell-style wildcards are:"
msgstr ""
"Ce module fournit la gestion des caractères de remplacement de style shell "
"Unix, qui ne sont *pas* identiques à ceux utilisés dans les expressions "
"régulières (documentés dans le module :mod:`re`). Les caractères spéciaux "
"utilisés comme caractères de remplacement de style shell sont :"
#: ../Doc/library/fnmatch.rst:21
msgid "Pattern"
msgstr "Motif"
#: ../Doc/library/fnmatch.rst:21
msgid "Meaning"
msgstr "Signification"
#: ../Doc/library/fnmatch.rst:23
msgid "``*``"
msgstr "``*``"
#: ../Doc/library/fnmatch.rst:23
msgid "matches everything"
msgstr "reconnaît n'importe quoi"
#: ../Doc/library/fnmatch.rst:25
msgid "``?``"
msgstr "``?``"
#: ../Doc/library/fnmatch.rst:25
msgid "matches any single character"
msgstr "reconnaît n'importe quel caractère unique"
#: ../Doc/library/fnmatch.rst:27
msgid "``[seq]``"
msgstr "``[seq]``"
#: ../Doc/library/fnmatch.rst:27
msgid "matches any character in *seq*"
msgstr "reconnaît n'importe quel caractère dans *seq*"
#: ../Doc/library/fnmatch.rst:29
msgid "``[!seq]``"
msgstr "``[!seq]``"
#: ../Doc/library/fnmatch.rst:29
msgid "matches any character not in *seq*"
msgstr "reconnaît n'importe quel caractère qui n'est pas dans *seq*"
#: ../Doc/library/fnmatch.rst:32
msgid ""
"For a literal match, wrap the meta-characters in brackets. For example, "
"``'[?]'`` matches the character ``'?'``."
msgstr ""
"Pour une correspondance littérale, il faut entourer le métacaractère par des "
"crochets. Par exemple, ``'[?]'`` reconnaît le caractère ``'?'``."
#: ../Doc/library/fnmatch.rst:37
msgid ""
"Note that the filename separator (``'/'`` on Unix) is *not* special to this "
"module. See module :mod:`glob` for pathname expansion (:mod:`glob` uses :"
"func:`fnmatch` to match pathname segments). Similarly, filenames starting "
"with a period are not special for this module, and are matched by the ``*`` "
"and ``?`` patterns."
msgstr ""
"Notons que le séparateur de nom de fichiers (``'/'`` sous Unix) n'est *pas* "
"traité de manière spéciale par ce module. Voir le module :mod:`glob` pour la "
"recherche de chemins (:mod:`glob` utilise :func:`fnmatch` pour reconnaître "
"les composants d'un chemin). De la même manière, les noms de fichiers "
"commençant par une virgule ne sont pas traités de manière spéciale par ce "
"module, et sont reconnus par les motifs ``*`` et ``?``."
#: ../Doc/library/fnmatch.rst:46
msgid ""
"Test whether the *filename* string matches the *pattern* string, returning :"
"const:`True` or :const:`False`. If the operating system is case-"
"insensitive, then both parameters will be normalized to all lower- or upper-"
"case before the comparison is performed. :func:`fnmatchcase` can be used to "
"perform a case-sensitive comparison, regardless of whether that's standard "
"for the operating system."
msgstr ""
#: ../Doc/library/fnmatch.rst:53
msgid ""
"This example will print all file names in the current directory with the "
"extension ``.txt``::"
msgstr ""
"Cet exemple affiche tous les noms de fichiers du répertoire courant ayant "
"pour extension ``.txt`` : ::"
#: ../Doc/library/fnmatch.rst:66
msgid ""
"Test whether *filename* matches *pattern*, returning :const:`True` or :const:"
"`False`; the comparison is case-sensitive."
msgstr ""
#: ../Doc/library/fnmatch.rst:72
msgid ""
"Return the subset of the list of *names* that match *pattern*. It is the "
"same as ``[n for n in names if fnmatch(n, pattern)]``, but implemented more "
"efficiently."
msgstr ""
"Renvoie un sous-ensemble de la liste *names* correspondant au motif "
"*pattern*. Similaire à ``[n for n in names if fnmatch(n, pattern)]``, mais "
"implémenté plus efficacement."
#: ../Doc/library/fnmatch.rst:80
msgid "Return the shell-style *pattern* converted to a regular expression."
msgstr ""
#: ../Doc/library/fnmatch.rst:82
msgid "Example:"
msgstr "Exemple :"
#: ../Doc/library/fnmatch.rst:96
msgid "Module :mod:`glob`"
msgstr "Module :mod:`glob`"
#: ../Doc/library/fnmatch.rst:97
msgid "Unix shell-style path expansion."
msgstr "Recherche de chemins de style shell Unix"