1
0
Fork 0
python-docs-fr/using/unix.po

238 lines
6.3 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 ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
2018-11-29 15:13:39 +00:00
"POT-Creation-Date: 2018-11-29 16:06+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"
#: ../Doc/using/unix.rst:7
msgid "Using Python on Unix platforms"
msgstr ""
#: ../Doc/using/unix.rst:13
msgid "Getting and installing the latest version of Python"
msgstr ""
#: ../Doc/using/unix.rst:16
msgid "On Linux"
msgstr ""
#: ../Doc/using/unix.rst:18
msgid ""
"Python comes preinstalled on most Linux distributions, and is available as a "
"package on all others. However there are certain features you might want to "
"use that are not available on your distro's package. You can easily compile "
"the latest version of Python from source."
msgstr ""
#: ../Doc/using/unix.rst:23
msgid ""
"In the event that Python doesn't come preinstalled and isn't in the "
"repositories as well, you can easily make packages for your own distro. "
"Have a look at the following links:"
msgstr ""
#: ../Doc/using/unix.rst:29
msgid "https://www.debian.org/doc/manuals/maint-guide/first.en.html"
msgstr ""
#: ../Doc/using/unix.rst:30
msgid "for Debian users"
msgstr ""
#: ../Doc/using/unix.rst:31
msgid "https://en.opensuse.org/Portal:Packaging"
msgstr ""
#: ../Doc/using/unix.rst:32
msgid "for OpenSuse users"
msgstr ""
#: ../Doc/using/unix.rst:33
msgid ""
2018-06-28 13:32:56 +00:00
"https://docs-old.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/"
2016-10-30 09:46:26 +00:00
"RPM_Guide/ch-creating-rpms.html"
msgstr ""
#: ../Doc/using/unix.rst:34
msgid "for Fedora users"
msgstr ""
#: ../Doc/using/unix.rst:35
msgid "http://www.slackbook.org/html/package-management-making-packages.html"
msgstr ""
#: ../Doc/using/unix.rst:36
msgid "for Slackware users"
msgstr ""
#: ../Doc/using/unix.rst:40
msgid "On FreeBSD and OpenBSD"
msgstr ""
#: ../Doc/using/unix.rst:42
msgid "FreeBSD users, to add the package use::"
msgstr ""
#: ../Doc/using/unix.rst:46
2018-03-23 08:57:03 +00:00
msgid "OpenBSD users, to add the package use::"
2016-10-30 09:46:26 +00:00
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:52
2016-10-30 09:46:26 +00:00
msgid "For example i386 users get the 2.5.1 version of Python using::"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:58
2016-10-30 09:46:26 +00:00
msgid "On OpenSolaris"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:60
2016-10-30 09:46:26 +00:00
msgid ""
"You can get Python from `OpenCSW <https://www.opencsw.org/>`_. Various "
"versions of Python are available and can be installed with e.g. ``pkgutil -i "
"python27``."
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:67
2016-10-30 09:46:26 +00:00
msgid "Building Python"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:69
2016-10-30 09:46:26 +00:00
msgid ""
"If you want to compile CPython yourself, first thing you should do is get "
"the `source <https://www.python.org/downloads/source/>`_. You can download "
2017-09-12 11:40:22 +00:00
"either the latest release's source or just grab a fresh `clone <https://"
"devguide.python.org/setup/#getting-the-source-code>`_. (If you want to "
2016-10-30 09:46:26 +00:00
"contribute patches, you will need a clone.)"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:75
2016-10-30 09:46:26 +00:00
msgid "The build process consists in the usual ::"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:81
2016-10-30 09:46:26 +00:00
msgid ""
"invocations. Configuration options and caveats for specific Unix platforms "
2017-05-27 17:46:38 +00:00
"are extensively documented in the :source:`README.rst` file in the root of "
"the Python source tree."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:87
2016-10-30 09:46:26 +00:00
msgid ""
"``make install`` can overwrite or masquerade the :file:`python3` binary. "
"``make altinstall`` is therefore recommended instead of ``make install`` "
"since it only installs :file:`{exec_prefix}/bin/python{version}`."
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:93
2016-10-30 09:46:26 +00:00
msgid "Python-related paths and files"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:95
2016-10-30 09:46:26 +00:00
msgid ""
"These are subject to difference depending on local installation "
"conventions; :envvar:`prefix` (``${prefix}``) and :envvar:`exec_prefix` (``"
"${exec_prefix}``) are installation-dependent and should be interpreted as "
"for GNU software; they may be the same."
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:100
2016-10-30 09:46:26 +00:00
msgid ""
"For example, on most Linux systems, the default for both is :file:`/usr`."
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:103
2016-10-30 09:46:26 +00:00
msgid "File/directory"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:103
2016-10-30 09:46:26 +00:00
msgid "Meaning"
msgstr "Signification"
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:105
2016-10-30 09:46:26 +00:00
msgid ":file:`{exec_prefix}/bin/python3`"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:105
2016-10-30 09:46:26 +00:00
msgid "Recommended location of the interpreter."
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:107
2016-10-30 09:46:26 +00:00
msgid ""
":file:`{prefix}/lib/python{version}`, :file:`{exec_prefix}/lib/"
"python{version}`"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:107
2016-10-30 09:46:26 +00:00
msgid ""
"Recommended locations of the directories containing the standard modules."
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:110
2016-10-30 09:46:26 +00:00
msgid ""
":file:`{prefix}/include/python{version}`, :file:`{exec_prefix}/include/"
"python{version}`"
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:110
2016-10-30 09:46:26 +00:00
msgid ""
"Recommended locations of the directories containing the include files needed "
"for developing Python extensions and embedding the interpreter."
msgstr ""
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:118
2016-10-30 09:46:26 +00:00
msgid "Miscellaneous"
2018-11-30 17:31:12 +00:00
msgstr "Divers"
2016-10-30 09:46:26 +00:00
2018-03-23 08:57:03 +00:00
#: ../Doc/using/unix.rst:120
2016-10-30 09:46:26 +00:00
msgid ""
"To easily use Python scripts on Unix, you need to make them executable, e.g. "
2018-04-28 22:28:01 +00:00
"with"
2016-10-30 09:46:26 +00:00
msgstr ""
2018-04-28 22:28:01 +00:00
#: ../Doc/using/unix.rst:127
2016-10-30 09:46:26 +00:00
msgid ""
"and put an appropriate Shebang line at the top of the script. A good choice "
"is usually ::"
msgstr ""
2018-04-28 22:28:01 +00:00
#: ../Doc/using/unix.rst:132
2016-10-30 09:46:26 +00:00
msgid ""
"which searches for the Python interpreter in the whole :envvar:`PATH`. "
"However, some Unices may not have the :program:`env` command, so you may "
"need to hardcode ``/usr/bin/python3`` as the interpreter path."
msgstr ""
2018-04-28 22:28:01 +00:00
#: ../Doc/using/unix.rst:136
2016-10-30 09:46:26 +00:00
msgid ""
"To use shell commands in your Python scripts, look at the :mod:`subprocess` "
"module."
msgstr ""
2018-04-28 22:28:01 +00:00
#: ../Doc/using/unix.rst:140
2017-04-02 20:14:06 +00:00
msgid "Editors and IDEs"
2016-10-30 09:46:26 +00:00
msgstr ""
2018-04-28 22:28:01 +00:00
#: ../Doc/using/unix.rst:142
2016-10-30 09:46:26 +00:00
msgid ""
2017-04-02 20:14:06 +00:00
"There are a number of IDEs that support Python programming language. Many "
2018-11-29 15:13:39 +00:00
"editors and IDEs provide syntax highlighting, debugging tools, and :pep:`8` "
2017-04-02 20:14:06 +00:00
"checks."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-04-28 22:28:01 +00:00
#: ../Doc/using/unix.rst:145
2016-10-30 09:46:26 +00:00
msgid ""
2017-04-02 20:14:06 +00:00
"Please go to `Python Editors <https://wiki.python.org/moin/PythonEditors>`_ "
"and `Integrated Development Environments <https://wiki.python.org/moin/"
"IntegratedDevelopmentEnvironments>`_ for a comprehensive list."
2016-10-30 09:46:26 +00:00
msgstr ""