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

182 lines
5.7 KiB
Plaintext
Raw 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"
"POT-Creation-Date: 2021-03-19 16:59+0100\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"
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"
#: library/syslog.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`syslog` --- Unix syslog library routines"
msgstr ""
#: library/syslog.rst:10
2016-10-30 09:46:26 +00:00
msgid ""
"This module provides an interface to the Unix ``syslog`` library routines. "
"Refer to the Unix manual pages for a detailed description of the ``syslog`` "
"facility."
msgstr ""
#: library/syslog.rst:14
2016-10-30 09:46:26 +00:00
msgid ""
"This module wraps the system ``syslog`` family of routines. A pure Python "
"library that can speak to a syslog server is available in the :mod:`logging."
"handlers` module as :class:`SysLogHandler`."
msgstr ""
#: library/syslog.rst:18
2016-10-30 09:46:26 +00:00
msgid "The module defines the following functions:"
msgstr "Le module définit les fonctions suivantes :"
2016-10-30 09:46:26 +00:00
#: library/syslog.rst:24
2016-10-30 09:46:26 +00:00
msgid ""
"Send the string *message* to the system logger. A trailing newline is added "
"if necessary. Each message is tagged with a priority composed of a "
"*facility* and a *level*. The optional *priority* argument, which defaults "
"to :const:`LOG_INFO`, determines the message priority. If the facility is "
"not encoded in *priority* using logical-or (``LOG_INFO | LOG_USER``), the "
"value given in the :func:`openlog` call is used."
msgstr ""
#: library/syslog.rst:31
2016-10-30 09:46:26 +00:00
msgid ""
"If :func:`openlog` has not been called prior to the call to :func:`syslog`, "
"``openlog()`` will be called with no arguments."
msgstr ""
#: library/syslog.rst:34
2020-05-24 14:31:50 +00:00
msgid ""
"Raises an :ref:`auditing event <auditing>` ``syslog.syslog`` with arguments "
"``priority``, ``message``."
msgstr ""
#: library/syslog.rst:39
2016-10-30 09:46:26 +00:00
msgid ""
"Logging options of subsequent :func:`syslog` calls can be set by calling :"
"func:`openlog`. :func:`syslog` will call :func:`openlog` with no arguments "
"if the log is not currently open."
msgstr ""
#: library/syslog.rst:43
2016-10-30 09:46:26 +00:00
msgid ""
"The optional *ident* keyword argument is a string which is prepended to "
"every message, and defaults to ``sys.argv[0]`` with leading path components "
"stripped. The optional *logoption* keyword argument (default is 0) is a bit "
"field -- see below for possible values to combine. The optional *facility* "
"keyword argument (default is :const:`LOG_USER`) sets the default facility "
"for messages which do not have a facility explicitly encoded."
msgstr ""
#: library/syslog.rst:50
2020-05-24 14:31:50 +00:00
msgid ""
"Raises an :ref:`auditing event <auditing>` ``syslog.openlog`` with arguments "
"``ident``, ``logoption``, ``facility``."
msgstr ""
#: library/syslog.rst:52
2016-10-30 09:46:26 +00:00
msgid ""
"In previous versions, keyword arguments were not allowed, and *ident* was "
"required. The default for *ident* was dependent on the system libraries, "
2018-09-15 20:37:31 +00:00
"and often was ``python`` instead of the name of the Python program file."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/syslog.rst:60
2016-10-30 09:46:26 +00:00
msgid ""
"Reset the syslog module values and call the system library ``closelog()``."
msgstr ""
#: library/syslog.rst:62
2016-10-30 09:46:26 +00:00
msgid ""
"This causes the module to behave as it does when initially imported. For "
"example, :func:`openlog` will be called on the first :func:`syslog` call "
"(if :func:`openlog` hasn't already been called), and *ident* and other :func:"
"`openlog` parameters are reset to defaults."
msgstr ""
#: library/syslog.rst:67
2020-05-24 14:31:50 +00:00
msgid ""
"Raises an :ref:`auditing event <auditing>` ``syslog.closelog`` with no "
"arguments."
msgstr ""
#: library/syslog.rst:72
2016-10-30 09:46:26 +00:00
msgid ""
"Set the priority mask to *maskpri* and return the previous mask value. "
"Calls to :func:`syslog` with a priority level not set in *maskpri* are "
"ignored. The default is to log all priorities. The function "
"``LOG_MASK(pri)`` calculates the mask for the individual priority *pri*. "
"The function ``LOG_UPTO(pri)`` calculates the mask for all priorities up to "
"and including *pri*."
msgstr ""
#: library/syslog.rst:79
2020-05-24 14:31:50 +00:00
msgid ""
"Raises an :ref:`auditing event <auditing>` ``syslog.setlogmask`` with "
"argument ``maskpri``."
msgstr ""
#: library/syslog.rst:81
2016-10-30 09:46:26 +00:00
msgid "The module defines the following constants:"
msgstr ""
#: library/syslog.rst:86
2016-10-30 09:46:26 +00:00
msgid "Priority levels (high to low):"
msgstr ""
#: library/syslog.rst:84
2016-10-30 09:46:26 +00:00
msgid ""
":const:`LOG_EMERG`, :const:`LOG_ALERT`, :const:`LOG_CRIT`, :const:"
"`LOG_ERR`, :const:`LOG_WARNING`, :const:`LOG_NOTICE`, :const:`LOG_INFO`, :"
"const:`LOG_DEBUG`."
msgstr ""
#: library/syslog.rst:93
2016-10-30 09:46:26 +00:00
msgid "Facilities:"
msgstr ""
#: library/syslog.rst:89
2016-10-30 09:46:26 +00:00
msgid ""
":const:`LOG_KERN`, :const:`LOG_USER`, :const:`LOG_MAIL`, :const:"
"`LOG_DAEMON`, :const:`LOG_AUTH`, :const:`LOG_LPR`, :const:`LOG_NEWS`, :const:"
"`LOG_UUCP`, :const:`LOG_CRON`, :const:`LOG_SYSLOG`, :const:`LOG_LOCAL0` to :"
"const:`LOG_LOCAL7`, and, if defined in ``<syslog.h>``, :const:`LOG_AUTHPRIV`."
msgstr ""
#: library/syslog.rst:99
2016-10-30 09:46:26 +00:00
msgid "Log options:"
msgstr ""
#: library/syslog.rst:96
2016-10-30 09:46:26 +00:00
msgid ""
":const:`LOG_PID`, :const:`LOG_CONS`, :const:`LOG_NDELAY`, and, if defined in "
"``<syslog.h>``, :const:`LOG_ODELAY`, :const:`LOG_NOWAIT`, and :const:"
"`LOG_PERROR`."
msgstr ""
#: library/syslog.rst:102
2016-10-30 09:46:26 +00:00
msgid "Examples"
msgstr "Exemples"
#: library/syslog.rst:105
2016-10-30 09:46:26 +00:00
msgid "Simple example"
msgstr ""
#: library/syslog.rst:107
2016-10-30 09:46:26 +00:00
msgid "A simple set of examples::"
msgstr ""
#: library/syslog.rst:115
2016-10-30 09:46:26 +00:00
msgid ""
"An example of setting some log options, these would include the process ID "
"in logged messages, and write the messages to the destination facility used "
"for mail logging::"
msgstr ""