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

151 lines
3.4 KiB
Plaintext

# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-22 23:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/grp.rst:2
msgid ":mod:`grp` --- The group database"
msgstr ""
#: library/grp.rst:10
msgid ""
"This module provides access to the Unix group database. It is available on "
"all Unix versions."
msgstr ""
#: library/grp.rst:13
msgid ""
"Group database entries are reported as a tuple-like object, whose attributes "
"correspond to the members of the ``group`` structure (Attribute field below, "
"see ``<grp.h>``):"
msgstr ""
#: library/grp.rst:18
msgid "Index"
msgstr "Index"
#: library/grp.rst:18
msgid "Attribute"
msgstr "Attribut"
#: library/grp.rst:18
msgid "Meaning"
msgstr "Signification"
#: library/grp.rst:20
msgid "0"
msgstr "0"
#: library/grp.rst:20
msgid "gr_name"
msgstr "gr_name"
#: library/grp.rst:20
msgid "the name of the group"
msgstr ""
#: library/grp.rst:22
msgid "1"
msgstr "1"
#: library/grp.rst:22
msgid "gr_passwd"
msgstr "gr_passwd"
#: library/grp.rst:22
msgid "the (encrypted) group password; often empty"
msgstr ""
#: library/grp.rst:25
msgid "2"
msgstr "2"
#: library/grp.rst:25
msgid "gr_gid"
msgstr "gr_gid"
#: library/grp.rst:25
msgid "the numerical group ID"
msgstr ""
#: library/grp.rst:27
msgid "3"
msgstr "3"
#: library/grp.rst:27
msgid "gr_mem"
msgstr "gr_mem"
#: library/grp.rst:27
msgid "all the group member's user names"
msgstr ""
#: library/grp.rst:31
msgid ""
"The gid is an integer, name and password are strings, and the member list is "
"a list of strings. (Note that most users are not explicitly listed as "
"members of the group they are in according to the password database. Check "
"both databases to get complete membership information. Also note that a "
"``gr_name`` that starts with a ``+`` or ``-`` is likely to be a YP/NIS "
"reference and may not be accessible via :func:`getgrnam` or :func:"
"`getgrgid`.)"
msgstr ""
#: library/grp.rst:38
msgid "It defines the following items:"
msgstr ""
#: library/grp.rst:43
msgid ""
"Return the group database entry for the given numeric group ID. :exc:"
"`KeyError` is raised if the entry asked for cannot be found."
msgstr ""
#: library/grp.rst:46
msgid ""
"Since Python 3.6 the support of non-integer arguments like floats or strings "
"in :func:`getgrgid` is deprecated."
msgstr ""
#: library/grp.rst:52
msgid ""
"Return the group database entry for the given group name. :exc:`KeyError` is "
"raised if the entry asked for cannot be found."
msgstr ""
#: library/grp.rst:58
msgid "Return a list of all available group entries, in arbitrary order."
msgstr ""
#: library/grp.rst:64
msgid "Module :mod:`pwd`"
msgstr "Module :mod:`pwd`"
#: library/grp.rst:64
#, fuzzy
msgid "An interface to the user database, similar to this."
msgstr "Interface pour la base de données des groupes, similaire à celle-ci."
#: library/grp.rst:66
#, fuzzy
msgid "Module :mod:`spwd`"
msgstr "Module :mod:`pwd`"
#: library/grp.rst:67
#, fuzzy
msgid "An interface to the shadow password database, similar to this."
msgstr ""
"Interface pour la base de données (normale) des mots de passe, semblable à "
"ceci."