Hi, gettext_compact=0.

This commit is contained in:
Julien Palard 2016-10-30 10:46:26 +01:00
commit 84e5545ebb

1075
using/cmdline.po Normal file

File diff suppressed because it is too large Load diff

28
using/index.po Normal file
View file

@ -0,0 +1,28 @@
# 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: 2016-10-30 10:40+0100\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/using/index.rst:5
msgid "Python Setup and Usage"
msgstr "Installation et Utilisation de Python [en]"
#: ../Doc/using/index.rst:8
msgid ""
"This part of the documentation is devoted to general information on the "
"setup of the Python environment on different platform, the invocation of the "
"interpreter and things that make working with Python easier."
msgstr ""

284
using/mac.po Normal file
View file

@ -0,0 +1,284 @@
# 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: 2016-10-30 10:40+0100\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/using/mac.rst:6
msgid "Using Python on a Macintosh"
msgstr ""
#: ../Doc/using/mac.rst:8
msgid "Bob Savage <bobsavage@mac.com>"
msgstr ""
#: ../Doc/using/mac.rst:11
msgid ""
"Python on a Macintosh running Mac OS X is in principle very similar to "
"Python on any other Unix platform, but there are a number of additional "
"features such as the IDE and the Package Manager that are worth pointing out."
msgstr ""
#: ../Doc/using/mac.rst:18
msgid "Getting and Installing MacPython"
msgstr ""
#: ../Doc/using/mac.rst:20
msgid ""
"Mac OS X 10.8 comes with Python 2.7 pre-installed by Apple. If you wish, "
"you are invited to install the most recent version of Python 3 from the "
"Python website (https://www.python.org). A current \"universal binary\" "
"build of Python, which runs natively on the Mac's new Intel and legacy PPC "
"CPU's, is available there."
msgstr ""
#: ../Doc/using/mac.rst:26
msgid "What you get after installing is a number of things:"
msgstr ""
#: ../Doc/using/mac.rst:28
msgid ""
"A :file:`MacPython 3.6` folder in your :file:`Applications` folder. In here "
"you find IDLE, the development environment that is a standard part of "
"official Python distributions; PythonLauncher, which handles double-clicking "
"Python scripts from the Finder; and the \"Build Applet\" tool, which allows "
"you to package Python scripts as standalone applications on your system."
msgstr ""
#: ../Doc/using/mac.rst:34
msgid ""
"A framework :file:`/Library/Frameworks/Python.framework`, which includes the "
"Python executable and libraries. The installer adds this location to your "
"shell path. To uninstall MacPython, you can simply remove these three "
"things. A symlink to the Python executable is placed in /usr/local/bin/."
msgstr ""
#: ../Doc/using/mac.rst:39
msgid ""
"The Apple-provided build of Python is installed in :file:`/System/Library/"
"Frameworks/Python.framework` and :file:`/usr/bin/python`, respectively. You "
"should never modify or delete these, as they are Apple-controlled and are "
"used by Apple- or third-party software. Remember that if you choose to "
"install a newer Python version from python.org, you will have two different "
"but functional Python installations on your computer, so it will be "
"important that your paths and usages are consistent with what you want to do."
msgstr ""
#: ../Doc/using/mac.rst:47
msgid ""
"IDLE includes a help menu that allows you to access Python documentation. If "
"you are completely new to Python you should start reading the tutorial "
"introduction in that document."
msgstr ""
#: ../Doc/using/mac.rst:51
msgid ""
"If you are familiar with Python on other Unix platforms you should read the "
"section on running Python scripts from the Unix shell."
msgstr ""
#: ../Doc/using/mac.rst:56
msgid "How to run a Python script"
msgstr ""
#: ../Doc/using/mac.rst:58
msgid ""
"Your best way to get started with Python on Mac OS X is through the IDLE "
"integrated development environment, see section :ref:`ide` and use the Help "
"menu when the IDE is running."
msgstr ""
#: ../Doc/using/mac.rst:62
msgid ""
"If you want to run Python scripts from the Terminal window command line or "
"from the Finder you first need an editor to create your script. Mac OS X "
"comes with a number of standard Unix command line editors, :program:`vim` "
"and :program:`emacs` among them. If you want a more Mac-like editor, :"
"program:`BBEdit` or :program:`TextWrangler` from Bare Bones Software (see "
"http://www.barebones.com/products/bbedit/index.html) are good choices, as "
"is :program:`TextMate` (see https://macromates.com/). Other editors include :"
"program:`Gvim` (http://macvim.org) and :program:`Aquamacs` (http://aquamacs."
"org/)."
msgstr ""
#: ../Doc/using/mac.rst:72
msgid ""
"To run your script from the Terminal window you must make sure that :file:`/"
"usr/local/bin` is in your shell search path."
msgstr ""
#: ../Doc/using/mac.rst:75
msgid "To run your script from the Finder you have two options:"
msgstr ""
#: ../Doc/using/mac.rst:77
msgid "Drag it to :program:`PythonLauncher`"
msgstr ""
#: ../Doc/using/mac.rst:79
msgid ""
"Select :program:`PythonLauncher` as the default application to open your "
"script (or any .py script) through the finder Info window and double-click "
"it. :program:`PythonLauncher` has various preferences to control how your "
"script is launched. Option-dragging allows you to change these for one "
"invocation, or use its Preferences menu to change things globally."
msgstr ""
#: ../Doc/using/mac.rst:89
msgid "Running scripts with a GUI"
msgstr ""
#: ../Doc/using/mac.rst:91
msgid ""
"With older versions of Python, there is one Mac OS X quirk that you need to "
"be aware of: programs that talk to the Aqua window manager (in other words, "
"anything that has a GUI) need to be run in a special way. Use :program:"
"`pythonw` instead of :program:`python` to start such scripts."
msgstr ""
#: ../Doc/using/mac.rst:96
msgid ""
"With Python 3.6, you can use either :program:`python` or :program:`pythonw`."
msgstr ""
#: ../Doc/using/mac.rst:100
msgid "Configuration"
msgstr ""
#: ../Doc/using/mac.rst:102
msgid ""
"Python on OS X honors all standard Unix environment variables such as :"
"envvar:`PYTHONPATH`, but setting these variables for programs started from "
"the Finder is non-standard as the Finder does not read your :file:`.profile` "
"or :file:`.cshrc` at startup. You need to create a file :file:`~/.MacOSX/"
"environment.plist`. See Apple's Technical Document QA1067 for details."
msgstr ""
#: ../Doc/using/mac.rst:109
msgid ""
"For more information on installation Python packages in MacPython, see "
"section :ref:`mac-package-manager`."
msgstr ""
#: ../Doc/using/mac.rst:116
msgid "The IDE"
msgstr ""
#: ../Doc/using/mac.rst:118
msgid ""
"MacPython ships with the standard IDLE development environment. A good "
"introduction to using IDLE can be found at https://hkn.eecs.berkeley.edu/"
"~dyoo/python/idle_intro/index.html."
msgstr ""
#: ../Doc/using/mac.rst:126
msgid "Installing Additional Python Packages"
msgstr ""
#: ../Doc/using/mac.rst:128
msgid "There are several methods to install additional Python packages:"
msgstr ""
#: ../Doc/using/mac.rst:130
msgid ""
"Packages can be installed via the standard Python distutils mode (``python "
"setup.py install``)."
msgstr ""
#: ../Doc/using/mac.rst:133
msgid ""
"Many packages can also be installed via the :program:`setuptools` extension "
"or :program:`pip` wrapper, see https://pip.pypa.io/."
msgstr ""
#: ../Doc/using/mac.rst:138
msgid "GUI Programming on the Mac"
msgstr ""
#: ../Doc/using/mac.rst:140
msgid ""
"There are several options for building GUI applications on the Mac with "
"Python."
msgstr ""
#: ../Doc/using/mac.rst:142
msgid ""
"*PyObjC* is a Python binding to Apple's Objective-C/Cocoa framework, which "
"is the foundation of most modern Mac development. Information on PyObjC is "
"available from https://pythonhosted.org/pyobjc/."
msgstr ""
#: ../Doc/using/mac.rst:146
msgid ""
"The standard Python GUI toolkit is :mod:`tkinter`, based on the cross-"
"platform Tk toolkit (https://www.tcl.tk). An Aqua-native version of Tk is "
"bundled with OS X by Apple, and the latest version can be downloaded and "
"installed from https://www.activestate.com; it can also be built from source."
msgstr ""
#: ../Doc/using/mac.rst:151
msgid ""
"*wxPython* is another popular cross-platform GUI toolkit that runs natively "
"on Mac OS X. Packages and documentation are available from http://www."
"wxpython.org."
msgstr ""
#: ../Doc/using/mac.rst:154
msgid ""
"*PyQt* is another popular cross-platform GUI toolkit that runs natively on "
"Mac OS X. More information can be found at https://riverbankcomputing.com/"
"software/pyqt/intro."
msgstr ""
#: ../Doc/using/mac.rst:160
msgid "Distributing Python Applications on the Mac"
msgstr ""
#: ../Doc/using/mac.rst:162
msgid ""
"The \"Build Applet\" tool that is placed in the MacPython 3.6 folder is fine "
"for packaging small Python scripts on your own machine to run as a standard "
"Mac application. This tool, however, is not robust enough to distribute "
"Python applications to other users."
msgstr ""
#: ../Doc/using/mac.rst:167
msgid ""
"The standard tool for deploying standalone Python applications on the Mac "
"is :program:`py2app`. More information on installing and using py2app can be "
"found at http://undefined.org/python/#py2app."
msgstr ""
#: ../Doc/using/mac.rst:173
msgid "Other Resources"
msgstr "Autres Ressources"
#: ../Doc/using/mac.rst:175
msgid ""
"The MacPython mailing list is an excellent support resource for Python users "
"and developers on the Mac:"
msgstr ""
#: ../Doc/using/mac.rst:178
msgid "https://www.python.org/community/sigs/current/pythonmac-sig/"
msgstr ""
#: ../Doc/using/mac.rst:180
msgid "Another useful resource is the MacPython wiki:"
msgstr ""
#: ../Doc/using/mac.rst:182
msgid "https://wiki.python.org/moin/MacPython"
msgstr ""

251
using/unix.po Normal file
View file

@ -0,0 +1,251 @@
# 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: 2016-10-30 10:40+0100\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"
"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 ""
"https://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/"
"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
msgid "OpenBSD users use::"
msgstr ""
#: ../Doc/using/unix.rst:50
msgid "For example i386 users get the 2.5.1 version of Python using::"
msgstr ""
#: ../Doc/using/unix.rst:56
msgid "On OpenSolaris"
msgstr ""
#: ../Doc/using/unix.rst:58
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 ""
#: ../Doc/using/unix.rst:65
msgid "Building Python"
msgstr ""
#: ../Doc/using/unix.rst:67
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 "
"either the latest release's source or just grab a fresh `clone <https://docs."
"python.org/devguide/setup.html#getting-the-source-code>`_. (If you want to "
"contribute patches, you will need a clone.)"
msgstr ""
#: ../Doc/using/unix.rst:73
msgid "The build process consists in the usual ::"
msgstr ""
#: ../Doc/using/unix.rst:79
msgid ""
"invocations. Configuration options and caveats for specific Unix platforms "
"are extensively documented in the :source:`README` file in the root of the "
"Python source tree."
msgstr ""
#: ../Doc/using/unix.rst:85
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 ""
#: ../Doc/using/unix.rst:91
msgid "Python-related paths and files"
msgstr ""
#: ../Doc/using/unix.rst:93
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 ""
#: ../Doc/using/unix.rst:98
msgid ""
"For example, on most Linux systems, the default for both is :file:`/usr`."
msgstr ""
#: ../Doc/using/unix.rst:101
msgid "File/directory"
msgstr ""
#: ../Doc/using/unix.rst:101
msgid "Meaning"
msgstr "Signification"
#: ../Doc/using/unix.rst:103
msgid ":file:`{exec_prefix}/bin/python3`"
msgstr ""
#: ../Doc/using/unix.rst:103
msgid "Recommended location of the interpreter."
msgstr ""
#: ../Doc/using/unix.rst:105
msgid ""
":file:`{prefix}/lib/python{version}`, :file:`{exec_prefix}/lib/"
"python{version}`"
msgstr ""
#: ../Doc/using/unix.rst:105
msgid ""
"Recommended locations of the directories containing the standard modules."
msgstr ""
#: ../Doc/using/unix.rst:108
msgid ""
":file:`{prefix}/include/python{version}`, :file:`{exec_prefix}/include/"
"python{version}`"
msgstr ""
#: ../Doc/using/unix.rst:108
msgid ""
"Recommended locations of the directories containing the include files needed "
"for developing Python extensions and embedding the interpreter."
msgstr ""
#: ../Doc/using/unix.rst:116
msgid "Miscellaneous"
msgstr ""
#: ../Doc/using/unix.rst:118
msgid ""
"To easily use Python scripts on Unix, you need to make them executable, e.g. "
"with ::"
msgstr ""
#: ../Doc/using/unix.rst:123
msgid ""
"and put an appropriate Shebang line at the top of the script. A good choice "
"is usually ::"
msgstr ""
#: ../Doc/using/unix.rst:128
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 ""
#: ../Doc/using/unix.rst:132
msgid ""
"To use shell commands in your Python scripts, look at the :mod:`subprocess` "
"module."
msgstr ""
#: ../Doc/using/unix.rst:136
msgid "Editors"
msgstr ""
#: ../Doc/using/unix.rst:138
msgid ""
"Vim and Emacs are excellent editors which support Python very well. For "
"more information on how to code in Python in these editors, look at:"
msgstr ""
#: ../Doc/using/unix.rst:141
msgid "http://www.vim.org/scripts/script.php?script_id=790"
msgstr ""
#: ../Doc/using/unix.rst:142
msgid "https://sourceforge.net/projects/python-mode"
msgstr ""
#: ../Doc/using/unix.rst:144
msgid ""
"Geany is an excellent IDE with support for a lot of languages. For more "
"information, read: https://www.geany.org/"
msgstr ""
#: ../Doc/using/unix.rst:147
msgid ""
"Komodo edit is another extremely good IDE. It also has support for a lot of "
"languages. For more information, read https://komodoide.com/."
msgstr ""

1677
using/windows.po Normal file

File diff suppressed because it is too large Load diff