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

183 lines
4.1 KiB
Plaintext

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-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 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\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"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/pwd.rst:2
msgid ":mod:`pwd` --- The password database"
msgstr ""
#: ../Doc/library/pwd.rst:10
msgid ""
"This module provides access to the Unix user account and password database. "
"It is available on all Unix versions."
msgstr ""
#: ../Doc/library/pwd.rst:13
msgid ""
"Password database entries are reported as a tuple-like object, whose "
"attributes correspond to the members of the ``passwd`` structure (Attribute "
"field below, see ``<pwd.h>``):"
msgstr ""
#: ../Doc/library/pwd.rst:18
msgid "Index"
msgstr ""
#: ../Doc/library/pwd.rst:18
msgid "Attribute"
msgstr "Attribut"
#: ../Doc/library/pwd.rst:18
msgid "Meaning"
msgstr "Signification"
#: ../Doc/library/pwd.rst:20
msgid "0"
msgstr "0"
#: ../Doc/library/pwd.rst:20
msgid "``pw_name``"
msgstr "``pw_name``"
#: ../Doc/library/pwd.rst:20
msgid "Login name"
msgstr ""
#: ../Doc/library/pwd.rst:22
msgid "1"
msgstr "1"
#: ../Doc/library/pwd.rst:22
msgid "``pw_passwd``"
msgstr "``pw_passwd``"
#: ../Doc/library/pwd.rst:22
msgid "Optional encrypted password"
msgstr ""
#: ../Doc/library/pwd.rst:24
msgid "2"
msgstr "2"
#: ../Doc/library/pwd.rst:24
msgid "``pw_uid``"
msgstr "``pw_uid``"
#: ../Doc/library/pwd.rst:24
msgid "Numerical user ID"
msgstr ""
#: ../Doc/library/pwd.rst:26
msgid "3"
msgstr "3"
#: ../Doc/library/pwd.rst:26
msgid "``pw_gid``"
msgstr "``pw_gid``"
#: ../Doc/library/pwd.rst:26
msgid "Numerical group ID"
msgstr ""
#: ../Doc/library/pwd.rst:28
msgid "4"
msgstr "4"
#: ../Doc/library/pwd.rst:28
msgid "``pw_gecos``"
msgstr "``pw_gecos``"
#: ../Doc/library/pwd.rst:28
msgid "User name or comment field"
msgstr ""
#: ../Doc/library/pwd.rst:30
msgid "5"
msgstr "5"
#: ../Doc/library/pwd.rst:30
msgid "``pw_dir``"
msgstr "``pw_dir``"
#: ../Doc/library/pwd.rst:30
msgid "User home directory"
msgstr ""
#: ../Doc/library/pwd.rst:32
msgid "6"
msgstr "6"
#: ../Doc/library/pwd.rst:32
msgid "``pw_shell``"
msgstr "``pw_shell``"
#: ../Doc/library/pwd.rst:32
msgid "User command interpreter"
msgstr ""
#: ../Doc/library/pwd.rst:35
msgid ""
"The uid and gid items are integers, all others are strings. :exc:`KeyError` "
"is raised if the entry asked for cannot be found."
msgstr ""
#: ../Doc/library/pwd.rst:42
msgid ""
"In traditional Unix the field ``pw_passwd`` usually contains a password "
"encrypted with a DES derived algorithm (see module :mod:`crypt`). However "
"most modern unices use a so-called *shadow password* system. On those "
"unices the *pw_passwd* field only contains an asterisk (``'*'``) or the "
"letter ``'x'`` where the encrypted password is stored in a file :file:`/etc/"
"shadow` which is not world readable. Whether the *pw_passwd* field contains "
"anything useful is system-dependent. If available, the :mod:`spwd` module "
"should be used where access to the encrypted password is required."
msgstr ""
#: ../Doc/library/pwd.rst:51
msgid "It defines the following items:"
msgstr ""
#: ../Doc/library/pwd.rst:56
msgid "Return the password database entry for the given numeric user ID."
msgstr ""
#: ../Doc/library/pwd.rst:61
msgid "Return the password database entry for the given user name."
msgstr ""
#: ../Doc/library/pwd.rst:66
msgid ""
"Return a list of all available password database entries, in arbitrary order."
msgstr ""
#: ../Doc/library/pwd.rst:72
msgid "Module :mod:`grp`"
msgstr ""
#: ../Doc/library/pwd.rst:72
msgid "An interface to the group database, similar to this."
msgstr ""
#: ../Doc/library/pwd.rst:74
msgid "Module :mod:`spwd`"
msgstr ""
#: ../Doc/library/pwd.rst:75
msgid "An interface to the shadow password database, similar to this."
msgstr ""