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

71 lines
2.3 KiB
Plaintext
Raw Normal View History

2016-10-30 09:46:26 +00:00
# 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"
2017-04-02 20:14:06 +00:00
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
2016-10-30 09:46:26 +00:00
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
2017-04-02 20:14:06 +00:00
"Language: \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"
#: ../Doc/library/getpass.rst:2
msgid ":mod:`getpass` --- Portable password input"
msgstr ""
#: ../Doc/library/getpass.rst:11
msgid "**Source code:** :source:`Lib/getpass.py`"
msgstr ""
#: ../Doc/library/getpass.rst:15
msgid "The :mod:`getpass` module provides two functions:"
msgstr ""
#: ../Doc/library/getpass.rst:20
msgid ""
"Prompt the user for a password without echoing. The user is prompted using "
"the string *prompt*, which defaults to ``'Password: '``. On Unix, the "
"prompt is written to the file-like object *stream* using the replace error "
"handler if needed. *stream* defaults to the controlling terminal (:file:`/"
"dev/tty`) or if that is unavailable to ``sys.stderr`` (this argument is "
"ignored on Windows)."
msgstr ""
#: ../Doc/library/getpass.rst:27
msgid ""
"If echo free input is unavailable getpass() falls back to printing a warning "
"message to *stream* and reading from ``sys.stdin`` and issuing a :exc:"
"`GetPassWarning`."
msgstr ""
#: ../Doc/library/getpass.rst:32
msgid ""
"If you call getpass from within IDLE, the input may be done in the terminal "
"you launched IDLE from rather than the idle window itself."
msgstr ""
#: ../Doc/library/getpass.rst:37
msgid "A :exc:`UserWarning` subclass issued when password input may be echoed."
msgstr ""
#: ../Doc/library/getpass.rst:42
msgid "Return the \"login name\" of the user."
msgstr ""
#: ../Doc/library/getpass.rst:44
msgid ""
"This function checks the environment variables :envvar:`LOGNAME`, :envvar:"
"`USER`, :envvar:`LNAME` and :envvar:`USERNAME`, in order, and returns the "
"value of the first one which is set to a non-empty string. If none are set, "
"the login name from the password database is returned on systems which "
"support the :mod:`pwd` module, otherwise, an exception is raised."
msgstr ""