├── .gitignore ├── 3.6 ├── howto │ ├── argparse.mo │ └── index.po ├── contents.po ├── faq │ └── index.po ├── library │ ├── windows.po │ ├── netdata.po │ ├── misc.po │ ├── fileformats.po │ ├── superseded.po │ ├── python.po │ ├── concurrent.po │ ├── unix.po │ ├── mm.po │ ├── crypto.po │ ├── modules.po │ ├── debug.po │ ├── functional.po │ ├── archiving.po │ ├── language.po │ ├── markup.po │ ├── distribution.po │ ├── internet.po │ ├── frameworks.po │ ├── i18n.po │ ├── allos.po │ ├── text.po │ ├── concurrency.po │ ├── persistence.po │ ├── ipc.po │ ├── custominterp.po │ ├── numeric.po │ ├── development.po │ ├── keyword.po │ ├── xmlrpc.po │ ├── datatypes.po │ ├── urllib.po │ ├── binary.po │ ├── macpath.po │ ├── __main__.po │ ├── symbol.po │ └── _dummy_thread.po ├── c-api │ ├── objimpl.po │ ├── utilities.po │ ├── index.po │ ├── descriptor.po │ ├── iter.po │ ├── none.po │ └── coro.po ├── distutils │ └── uploading.po ├── reference │ ├── grammar.po │ └── index.po ├── using │ └── index.po └── whatsnew │ └── index.po ├── requirements.txt ├── README.rst ├── .gitattributes ├── scripts ├── podiff ├── check_requirements.sh ├── bulk-msgmerge.sh ├── index.md ├── patches │ ├── fix-version-switch-on-afpy-servers.patch │ └── polib.patch ├── index.tpl ├── fix_style.py └── gen_tx_config.py ├── 2.7 ├── contents.po ├── faq │ └── index.po ├── library │ ├── windows.po │ ├── netdata.po │ ├── sun.po │ ├── misc.po │ ├── sgi.po │ ├── fileformats.po │ ├── python.po │ ├── crypto.po │ ├── unix.po │ ├── mm.po │ ├── modules.po │ ├── debug.po │ ├── archiving.po │ ├── language.po │ ├── distribution.po │ ├── someos.po │ ├── internet.po │ ├── frameworks.po │ ├── i18n.po │ ├── allos.po │ ├── __main__.po │ ├── ipc.po │ ├── custominterp.po │ ├── development.po │ ├── numeric.po │ ├── macpath.po │ ├── strings.po │ ├── keyword.po │ ├── persistence.po │ ├── mac.po │ ├── colorpicker.po │ ├── datatypes.po │ ├── filesys.po │ ├── dummy_threading.po │ ├── whichdb.po │ ├── importlib.po │ ├── autogil.po │ ├── symbol.po │ ├── tty.po │ └── markup.po ├── c-api │ ├── objimpl.po │ ├── utilities.po │ ├── index.po │ ├── descriptor.po │ ├── none.po │ ├── gen.po │ └── iter.po ├── distutils │ ├── uploading.po │ └── commandref.po ├── reference │ ├── grammar.po │ └── index.po ├── whatsnew │ └── index.po ├── using │ └── index.po └── howto │ └── index.po └── 3.5 ├── contents.po ├── faq └── index.po ├── library ├── windows.po ├── netdata.po ├── misc.po ├── fileformats.po ├── superseded.po ├── python.po ├── concurrent.po ├── unix.po ├── mm.po ├── crypto.po ├── modules.po ├── debug.po ├── functional.po ├── archiving.po ├── language.po ├── markup.po ├── distribution.po ├── internet.po ├── frameworks.po ├── i18n.po ├── allos.po ├── text.po ├── concurrency.po ├── persistence.po ├── ipc.po ├── custominterp.po ├── numeric.po ├── development.po ├── keyword.po ├── xmlrpc.po ├── datatypes.po ├── urllib.po ├── binary.po ├── macpath.po ├── __main__.po ├── symbol.po ├── _dummy_thread.po └── dummy_threading.po ├── c-api ├── objimpl.po ├── utilities.po ├── index.po ├── descriptor.po ├── iter.po ├── none.po └── coro.po ├── distutils └── uploading.po ├── reference ├── grammar.po └── index.po ├── using └── index.po ├── howto └── index.po └── whatsnew └── index.po /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .tx/ 3 | *.sw[a-z] 4 | gen/ 5 | www/ 6 | __pycache__/ 7 | -------------------------------------------------------------------------------- /3.6/howto/argparse.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFPy/python_doc_fr/HEAD/3.6/howto/argparse.mo -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=1.4.0 2 | polib 3 | tqdm 4 | tabulate 5 | markdown 6 | transifex-client 7 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | This repository have moved to `python/python-docs-fr 2 | `_. 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Usefull with: 2 | # git config diff.podiff.textconv scripts/podiff 3 | 4 | *.po diff=podiff 5 | *.pot diff=podiff 6 | -------------------------------------------------------------------------------- /scripts/podiff: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Usefull to clean po file before diffing them. 4 | # See .gitattributes to learn how to use it. 5 | # 6 | grep -v '^#:' "$1" 7 | -------------------------------------------------------------------------------- /scripts/check_requirements.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | need() 4 | { 5 | if ! command -v "$1" >/dev/null 2>&1 6 | then 7 | echo "'$1' command not found, please install it." >&2 8 | exit 1 9 | fi 10 | } 11 | 12 | while [ -n "$1" ] 13 | do 14 | need "$1" 15 | shift 16 | done 17 | -------------------------------------------------------------------------------- /scripts/bulk-msgmerge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # Merges (or copy if not exists) sphinx pot files into our po hierarchy. 5 | # In other words, msgmerges new sphinx pot files with our po files. 6 | # 7 | 8 | POT_PATH="$1" 9 | PO_PATH="$2" 10 | 11 | find "$POT_PATH" -name '*.pot' | 12 | while read -r POT 13 | do 14 | PO="$PO_PATH/$(echo "$POT" | sed "s#$POT_PATH##; s#\.pot\$#.po#")" 15 | mkdir -p "$(dirname "$PO")" 16 | if [ -f "$PO" ]; 17 | then 18 | msgmerge --force-po -U "$PO" "$POT" 19 | else 20 | msgcat -o "$PO" "$POT" 21 | fi 22 | done 23 | -------------------------------------------------------------------------------- /scripts/index.md: -------------------------------------------------------------------------------- 1 | # Traduction de la documentation de Python en français 2 | 3 | L'AFPY héberge ici une tentative de traduction de la doc de Python en français. 4 | 5 | Les traductions sont hébergées sur [github](https://github.com/AFPy/python_doc_fr). 6 | 7 | - [Documentation de Python 2.7](2.7/) 8 | ([tgz](2.7.tar.gz), 9 | [tbz2](2.7.tar.bz2), 10 | [zip](2.7.zip)) 11 | - [Documentation de Python 3.5](3.5/) 12 | ([tgz](3.5.tar.gz), 13 | [tbz2](3.5.tar.bz2), 14 | [zip](3.5.zip)) 15 | - [Documentation de Python 3.6](3.6/) 16 | ([tgz](3.6.tar.gz), 17 | [tbz2](3.6.tar.bz2), 18 | [zip](3.6.zip)) 19 | -------------------------------------------------------------------------------- /scripts/patches/fix-version-switch-on-afpy-servers.patch: -------------------------------------------------------------------------------- 1 | diff --git a/Doc/tools/static/version_switch.js b/Doc/tools/static/version_switch.js 2 | index 7289a4d..c3cc107 100644 3 | --- a/Doc/tools/static/version_switch.js 4 | +++ b/Doc/tools/static/version_switch.js 5 | @@ -27,8 +27,8 @@ 6 | } 7 | 8 | function patch_url(url, new_version) { 9 | - var url_re = /\.org\/(\d|py3k|dev|((release\/)?\d\.\d[\w\d\.]*))\//, 10 | - new_url = url.replace(url_re, '.org/' + new_version + '/'); 11 | + var url_re = /\/(\d|py3k|dev|((release\/)?\d\.\d[\w\d\.]*))\//, 12 | + new_url = url.replace(url_re, '/' + new_version + '/'); 13 | 14 | if (new_url == url && !new_url.match(url_re)) { 15 | // python 2 url without version? 16 | -------------------------------------------------------------------------------- /2.7/contents.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/contents.rst:3 20 | msgid "Python Documentation contents" 21 | msgstr "Contenu de la documentation Python" 22 | -------------------------------------------------------------------------------- /3.5/contents.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/contents.rst:3 20 | msgid "Python Documentation contents" 21 | msgstr "Contenu de la documentation Python" 22 | -------------------------------------------------------------------------------- /2.7/faq/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/faq/index.rst:5 20 | msgid "Python Frequently Asked Questions" 21 | msgstr "Questions fréquemment posées sur Python" 22 | -------------------------------------------------------------------------------- /3.5/faq/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/faq/index.rst:5 20 | msgid "Python Frequently Asked Questions" 21 | msgstr "Questions fréquemment posées sur Python" 22 | -------------------------------------------------------------------------------- /3.6/contents.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/contents.rst:3 21 | msgid "Python Documentation contents" 22 | msgstr "Contenu de la documentation Python" 23 | -------------------------------------------------------------------------------- /3.6/faq/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/faq/index.rst:5 21 | msgid "Python Frequently Asked Questions" 22 | msgstr "Questions fréquemment posées sur Python" 23 | -------------------------------------------------------------------------------- /scripts/index.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | AFPY - Python Doc 9 | 17 | 18 | 19 | %s 20 | 21 | 22 | -------------------------------------------------------------------------------- /2.7/library/windows.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/windows.rst:5 20 | msgid "MS Windows Specific Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/windows.rst:7 24 | msgid "" 25 | "This chapter describes modules that are only available on MS Windows " 26 | "platforms." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.5/library/windows.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/windows.rst:5 20 | msgid "MS Windows Specific Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/windows.rst:7 24 | msgid "" 25 | "This chapter describes modules that are only available on MS Windows " 26 | "platforms." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /2.7/c-api/objimpl.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/objimpl.rst:8 20 | msgid "Object Implementation Support" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/objimpl.rst:10 24 | msgid "" 25 | "This chapter describes the functions, types, and macros used when defining " 26 | "new object types." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /2.7/distutils/uploading.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/distutils/uploading.rst:5 20 | msgid "Uploading Packages to the Package Index" 21 | msgstr "" 22 | 23 | #: ../Doc/distutils/uploading.rst:7 24 | msgid "" 25 | "The contents of this page have moved to the section :ref:`package-index`." 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /2.7/library/netdata.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/netdata.rst:6 20 | msgid "Internet Data Handling" 21 | msgstr "" 22 | 23 | #: ../Doc/library/netdata.rst:8 24 | msgid "" 25 | "This chapter describes modules which support handling data formats commonly " 26 | "used on the Internet." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.5/c-api/objimpl.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/objimpl.rst:7 20 | msgid "Object Implementation Support" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/objimpl.rst:9 24 | msgid "" 25 | "This chapter describes the functions, types, and macros used when defining " 26 | "new object types." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.5/distutils/uploading.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/distutils/uploading.rst:5 20 | msgid "Uploading Packages to the Package Index" 21 | msgstr "" 22 | 23 | #: ../Doc/distutils/uploading.rst:7 24 | msgid "" 25 | "The contents of this page have moved to the section :ref:`package-index`." 26 | msgstr "" 27 | -------------------------------------------------------------------------------- /3.5/library/netdata.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/netdata.rst:6 20 | msgid "Internet Data Handling" 21 | msgstr "" 22 | 23 | #: ../Doc/library/netdata.rst:8 24 | msgid "" 25 | "This chapter describes modules which support handling data formats commonly " 26 | "used on the Internet." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.6/library/windows.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/windows.rst:5 21 | msgid "MS Windows Specific Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/windows.rst:7 25 | msgid "" 26 | "This chapter describes modules that are only available on MS Windows " 27 | "platforms." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.6/c-api/objimpl.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/c-api/objimpl.rst:7 21 | msgid "Object Implementation Support" 22 | msgstr "" 23 | 24 | #: ../Doc/c-api/objimpl.rst:9 25 | msgid "" 26 | "This chapter describes the functions, types, and macros used when defining " 27 | "new object types." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.6/distutils/uploading.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/distutils/uploading.rst:5 21 | msgid "Uploading Packages to the Package Index" 22 | msgstr "" 23 | 24 | #: ../Doc/distutils/uploading.rst:7 25 | msgid "" 26 | "The contents of this page have moved to the section :ref:`package-index`." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.6/library/netdata.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/netdata.rst:6 21 | msgid "Internet Data Handling" 22 | msgstr "" 23 | 24 | #: ../Doc/library/netdata.rst:8 25 | msgid "" 26 | "This chapter describes modules which support handling data formats commonly " 27 | "used on the Internet." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /2.7/library/sun.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/sun.rst:6 20 | msgid "SunOS Specific Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/sun.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide interfaces to features that " 26 | "are unique to SunOS 5 (also known as Solaris version 2)." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /2.7/reference/grammar.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/reference/grammar.rst:2 20 | msgid "Full Grammar specification" 21 | msgstr "" 22 | 23 | #: ../Doc/reference/grammar.rst:4 24 | msgid "" 25 | "This is the full Python grammar, as it is read by the parser generator and " 26 | "used to parse Python source files:" 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.5/reference/grammar.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/reference/grammar.rst:2 20 | msgid "Full Grammar specification" 21 | msgstr "" 22 | 23 | #: ../Doc/reference/grammar.rst:4 24 | msgid "" 25 | "This is the full Python grammar, as it is read by the parser generator and " 26 | "used to parse Python source files:" 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /2.7/library/misc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/misc.rst:6 20 | msgid "Miscellaneous Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/misc.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide miscellaneous services that " 26 | "are available in all Python versions. Here's an overview:" 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /2.7/library/sgi.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/sgi.rst:6 20 | msgid "SGI IRIX Specific Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/sgi.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide interfaces to features that " 26 | "are unique to SGI's IRIX operating system (versions 4 and 5)." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.5/library/misc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/misc.rst:5 20 | msgid "Miscellaneous Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/misc.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide miscellaneous services that " 26 | "are available in all Python versions. Here's an overview:" 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /2.7/library/fileformats.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/fileformats.rst:6 20 | msgid "File Formats" 21 | msgstr "" 22 | 23 | #: ../Doc/library/fileformats.rst:8 24 | msgid "" 25 | "The modules described in this chapter parse various miscellaneous file " 26 | "formats that aren't markup languages or are related to e-mail." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.5/library/fileformats.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/fileformats.rst:5 20 | msgid "File Formats" 21 | msgstr "" 22 | 23 | #: ../Doc/library/fileformats.rst:7 24 | msgid "" 25 | "The modules described in this chapter parse various miscellaneous file " 26 | "formats that aren't markup languages and are not related to e-mail." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.6/reference/grammar.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/reference/grammar.rst:2 21 | msgid "Full Grammar specification" 22 | msgstr "" 23 | 24 | #: ../Doc/reference/grammar.rst:4 25 | msgid "" 26 | "This is the full Python grammar, as it is read by the parser generator and " 27 | "used to parse Python source files:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.5/library/superseded.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/superseded.rst:5 20 | msgid "Superseded Modules" 21 | msgstr "" 22 | 23 | #: ../Doc/library/superseded.rst:7 24 | msgid "" 25 | "The modules described in this chapter are deprecated and only kept for " 26 | "backwards compatibility. They have been superseded by other modules." 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /3.6/library/misc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/misc.rst:5 21 | msgid "Miscellaneous Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/misc.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide miscellaneous services that " 27 | "are available in all Python versions. Here's an overview:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.6/library/fileformats.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/fileformats.rst:5 21 | msgid "File Formats" 22 | msgstr "" 23 | 24 | #: ../Doc/library/fileformats.rst:7 25 | msgid "" 26 | "The modules described in this chapter parse various miscellaneous file " 27 | "formats that aren't markup languages and are not related to e-mail." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.6/library/superseded.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/superseded.rst:5 21 | msgid "Superseded Modules" 22 | msgstr "" 23 | 24 | #: ../Doc/library/superseded.rst:7 25 | msgid "" 26 | "The modules described in this chapter are deprecated and only kept for " 27 | "backwards compatibility. They have been superseded by other modules." 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /2.7/library/python.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/python.rst:6 20 | msgid "Python Runtime Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/python.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide a wide range of services " 26 | "related to the Python interpreter and its interaction with its environment. " 27 | "Here's an overview:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.5/library/python.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/python.rst:5 20 | msgid "Python Runtime Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/python.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide a wide range of services " 26 | "related to the Python interpreter and its interaction with its environment. " 27 | "Here's an overview:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /2.7/library/crypto.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/crypto.rst:6 20 | msgid "Cryptographic Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/crypto.rst:10 24 | msgid "" 25 | "The modules described in this chapter implement various algorithms of a " 26 | "cryptographic nature. They are available at the discretion of the " 27 | "installation. Here's an overview:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.5/library/concurrent.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/concurrent.rst:2 20 | msgid "The :mod:`concurrent` package" 21 | msgstr "" 22 | 23 | #: ../Doc/library/concurrent.rst:4 24 | msgid "Currently, there is only one module in this package:" 25 | msgstr "" 26 | 27 | #: ../Doc/library/concurrent.rst:6 28 | msgid ":mod:`concurrent.futures` -- Launching parallel tasks" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /2.7/library/unix.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/unix.rst:6 20 | msgid "Unix Specific Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/unix.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide interfaces to features that " 26 | "are unique to the Unix operating system, or in some cases to some or many " 27 | "variants of it. Here's an overview:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.5/library/unix.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/unix.rst:5 20 | msgid "Unix Specific Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/unix.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide interfaces to features that " 26 | "are unique to the Unix operating system, or in some cases to some or many " 27 | "variants of it. Here's an overview:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.6/library/python.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/python.rst:5 21 | msgid "Python Runtime Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/python.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide a wide range of services " 27 | "related to the Python interpreter and its interaction with its environment. " 28 | "Here's an overview:" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /2.7/library/mm.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/mm.rst:6 20 | msgid "Multimedia Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/mm.rst:8 24 | msgid "" 25 | "The modules described in this chapter implement various algorithms or " 26 | "interfaces that are mainly useful for multimedia applications. They are " 27 | "available at the discretion of the installation. Here's an overview:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.5/library/mm.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/mm.rst:5 20 | msgid "Multimedia Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/mm.rst:7 24 | msgid "" 25 | "The modules described in this chapter implement various algorithms or " 26 | "interfaces that are mainly useful for multimedia applications. They are " 27 | "available at the discretion of the installation. Here's an overview:" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /3.6/library/concurrent.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/concurrent.rst:2 21 | msgid "The :mod:`concurrent` package" 22 | msgstr "" 23 | 24 | #: ../Doc/library/concurrent.rst:4 25 | msgid "Currently, there is only one module in this package:" 26 | msgstr "" 27 | 28 | #: ../Doc/library/concurrent.rst:6 29 | msgid ":mod:`concurrent.futures` -- Launching parallel tasks" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.6/library/unix.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/unix.rst:5 21 | msgid "Unix Specific Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/unix.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide interfaces to features that " 27 | "are unique to the Unix operating system, or in some cases to some or many " 28 | "variants of it. Here's an overview:" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.6/library/mm.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/mm.rst:5 21 | msgid "Multimedia Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/mm.rst:7 25 | msgid "" 26 | "The modules described in this chapter implement various algorithms or " 27 | "interfaces that are mainly useful for multimedia applications. They are " 28 | "available at the discretion of the installation. Here's an overview:" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /2.7/c-api/utilities.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/utilities.rst:8 20 | msgid "Utilities" 21 | msgstr "Utilitaires" 22 | 23 | #: ../Doc/c-api/utilities.rst:10 24 | msgid "" 25 | "The functions in this chapter perform various utility tasks, ranging from " 26 | "helping C code be more portable across platforms, using Python modules from " 27 | "C, and parsing function arguments and constructing Python values from C " 28 | "values." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.5/c-api/utilities.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/utilities.rst:7 20 | msgid "Utilities" 21 | msgstr "Utilitaires" 22 | 23 | #: ../Doc/c-api/utilities.rst:9 24 | msgid "" 25 | "The functions in this chapter perform various utility tasks, ranging from " 26 | "helping C code be more portable across platforms, using Python modules from " 27 | "C, and parsing function arguments and constructing Python values from C " 28 | "values." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.5/library/crypto.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/crypto.rst:5 20 | msgid "Cryptographic Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/crypto.rst:9 24 | msgid "" 25 | "The modules described in this chapter implement various algorithms of a " 26 | "cryptographic nature. They are available at the discretion of the " 27 | "installation. On Unix systems, the :mod:`crypt` module may also be " 28 | "available. Here's an overview:" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /2.7/library/modules.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/modules.rst:6 20 | msgid "Importing Modules" 21 | msgstr "" 22 | 23 | #: ../Doc/library/modules.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide new ways to import other " 26 | "Python modules and hooks for customizing the import process." 27 | msgstr "" 28 | 29 | #: ../Doc/library/modules.rst:11 30 | msgid "The full list of modules described in this chapter is:" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /3.5/library/modules.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/modules.rst:5 20 | msgid "Importing Modules" 21 | msgstr "" 22 | 23 | #: ../Doc/library/modules.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide new ways to import other " 26 | "Python modules and hooks for customizing the import process." 27 | msgstr "" 28 | 29 | #: ../Doc/library/modules.rst:10 30 | msgid "The full list of modules described in this chapter is:" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /3.6/c-api/utilities.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/c-api/utilities.rst:7 21 | msgid "Utilities" 22 | msgstr "Utilitaires" 23 | 24 | #: ../Doc/c-api/utilities.rst:9 25 | msgid "" 26 | "The functions in this chapter perform various utility tasks, ranging from " 27 | "helping C code be more portable across platforms, using Python modules from " 28 | "C, and parsing function arguments and constructing Python values from C " 29 | "values." 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.6/library/crypto.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/crypto.rst:5 21 | msgid "Cryptographic Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/crypto.rst:9 25 | msgid "" 26 | "The modules described in this chapter implement various algorithms of a " 27 | "cryptographic nature. They are available at the discretion of the " 28 | "installation. On Unix systems, the :mod:`crypt` module may also be " 29 | "available. Here's an overview:" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.6/library/modules.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/modules.rst:5 21 | msgid "Importing Modules" 22 | msgstr "" 23 | 24 | #: ../Doc/library/modules.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide new ways to import other " 27 | "Python modules and hooks for customizing the import process." 28 | msgstr "" 29 | 30 | #: ../Doc/library/modules.rst:10 31 | msgid "The full list of modules described in this chapter is:" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /2.7/c-api/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/index.rst:5 20 | msgid "Python/C API Reference Manual" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/index.rst:7 24 | msgid "" 25 | "This manual documents the API used by C and C++ programmers who want to " 26 | "write extension modules or embed Python. It is a companion to :ref:" 27 | "`extending-index`, which describes the general principles of extension " 28 | "writing but does not document the API functions in detail." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.5/c-api/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/index.rst:5 20 | msgid "Python/C API Reference Manual" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/index.rst:7 24 | msgid "" 25 | "This manual documents the API used by C and C++ programmers who want to " 26 | "write extension modules or embed Python. It is a companion to :ref:" 27 | "`extending-index`, which describes the general principles of extension " 28 | "writing but does not document the API functions in detail." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /2.7/library/debug.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/debug.rst:3 20 | msgid "Debugging and Profiling" 21 | msgstr "" 22 | 23 | #: ../Doc/library/debug.rst:5 24 | msgid "" 25 | "These libraries help you with Python development: the debugger enables you " 26 | "to step through code, analyze stack frames and set breakpoints etc., and the " 27 | "profilers run code and give you a detailed breakdown of execution times, " 28 | "allowing you to identify bottlenecks in your programs." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.5/library/debug.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/debug.rst:3 20 | msgid "Debugging and Profiling" 21 | msgstr "" 22 | 23 | #: ../Doc/library/debug.rst:5 24 | msgid "" 25 | "These libraries help you with Python development: the debugger enables you " 26 | "to step through code, analyze stack frames and set breakpoints etc., and the " 27 | "profilers run code and give you a detailed breakdown of execution times, " 28 | "allowing you to identify bottlenecks in your programs." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /2.7/library/archiving.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/archiving.rst:6 20 | msgid "Data Compression and Archiving" 21 | msgstr "Compression de donnée et archivage" 22 | 23 | #: ../Doc/library/archiving.rst:8 24 | msgid "" 25 | "The modules described in this chapter support data compression with the " 26 | "zlib, gzip, and bzip2 algorithms, and the creation of ZIP- and tar-format " 27 | "archives. See also :ref:`archiving-operations` provided by the :mod:`shutil` " 28 | "module." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.5/library/functional.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/functional.rst:3 20 | msgid "Functional Programming Modules" 21 | msgstr "" 22 | 23 | #: ../Doc/library/functional.rst:5 24 | msgid "" 25 | "The modules described in this chapter provide functions and classes that " 26 | "support a functional programming style, and general operations on callables." 27 | msgstr "" 28 | 29 | #: ../Doc/library/functional.rst:8 30 | msgid "The following modules are documented in this chapter:" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /3.5/library/archiving.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/archiving.rst:5 20 | msgid "Data Compression and Archiving" 21 | msgstr "Compression de donnée et archivage" 22 | 23 | #: ../Doc/library/archiving.rst:7 24 | msgid "" 25 | "The modules described in this chapter support data compression with the " 26 | "zlib, gzip, bzip2 and lzma algorithms, and the creation of ZIP- and tar-" 27 | "format archives. See also :ref:`archiving-operations` provided by the :mod:" 28 | "`shutil` module." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.6/c-api/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/c-api/index.rst:5 21 | msgid "Python/C API Reference Manual" 22 | msgstr "" 23 | 24 | #: ../Doc/c-api/index.rst:7 25 | msgid "" 26 | "This manual documents the API used by C and C++ programmers who want to " 27 | "write extension modules or embed Python. It is a companion to :ref:" 28 | "`extending-index`, which describes the general principles of extension " 29 | "writing but does not document the API functions in detail." 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /2.7/library/language.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/language.rst:6 20 | msgid "Python Language Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/language.rst:8 24 | msgid "" 25 | "Python provides a number of modules to assist in working with the Python " 26 | "language. These modules support tokenizing, parsing, syntax analysis, " 27 | "bytecode disassembly, and various other facilities." 28 | msgstr "" 29 | 30 | #: ../Doc/library/language.rst:12 31 | msgid "These modules include:" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /3.5/library/language.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/language.rst:5 20 | msgid "Python Language Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/language.rst:7 24 | msgid "" 25 | "Python provides a number of modules to assist in working with the Python " 26 | "language. These modules support tokenizing, parsing, syntax analysis, " 27 | "bytecode disassembly, and various other facilities." 28 | msgstr "" 29 | 30 | #: ../Doc/library/language.rst:11 31 | msgid "These modules include:" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /3.6/library/debug.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/debug.rst:3 21 | msgid "Debugging and Profiling" 22 | msgstr "" 23 | 24 | #: ../Doc/library/debug.rst:5 25 | msgid "" 26 | "These libraries help you with Python development: the debugger enables you " 27 | "to step through code, analyze stack frames and set breakpoints etc., and the " 28 | "profilers run code and give you a detailed breakdown of execution times, " 29 | "allowing you to identify bottlenecks in your programs." 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.6/library/functional.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/functional.rst:3 21 | msgid "Functional Programming Modules" 22 | msgstr "" 23 | 24 | #: ../Doc/library/functional.rst:5 25 | msgid "" 26 | "The modules described in this chapter provide functions and classes that " 27 | "support a functional programming style, and general operations on callables." 28 | msgstr "" 29 | 30 | #: ../Doc/library/functional.rst:8 31 | msgid "The following modules are documented in this chapter:" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /2.7/library/distribution.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/distribution.rst:3 20 | msgid "Software Packaging and Distribution" 21 | msgstr "" 22 | 23 | #: ../Doc/library/distribution.rst:5 24 | msgid "" 25 | "These libraries help you with publishing and installing Python software. " 26 | "While these modules are designed to work in conjunction with the `Python " 27 | "Package Index `__, they can also be used with a " 28 | "local index server, or without any index server at all." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.5/library/markup.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/markup.rst:5 20 | msgid "Structured Markup Processing Tools" 21 | msgstr "" 22 | 23 | #: ../Doc/library/markup.rst:7 24 | msgid "" 25 | "Python supports a variety of modules to work with various forms of " 26 | "structured data markup. This includes modules to work with the Standard " 27 | "Generalized Markup Language (SGML) and the Hypertext Markup Language (HTML), " 28 | "and several interfaces for working with the Extensible Markup Language (XML)." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.6/library/archiving.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/archiving.rst:5 21 | msgid "Data Compression and Archiving" 22 | msgstr "Compression de donnée et archivage" 23 | 24 | #: ../Doc/library/archiving.rst:7 25 | msgid "" 26 | "The modules described in this chapter support data compression with the " 27 | "zlib, gzip, bzip2 and lzma algorithms, and the creation of ZIP- and tar-" 28 | "format archives. See also :ref:`archiving-operations` provided by the :mod:" 29 | "`shutil` module." 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.5/library/distribution.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/distribution.rst:3 20 | msgid "Software Packaging and Distribution" 21 | msgstr "" 22 | 23 | #: ../Doc/library/distribution.rst:5 24 | msgid "" 25 | "These libraries help you with publishing and installing Python software. " 26 | "While these modules are designed to work in conjunction with the `Python " 27 | "Package Index `__, they can also be used with " 28 | "a local index server, or without any index server at all." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /3.6/library/language.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/language.rst:5 21 | msgid "Python Language Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/language.rst:7 25 | msgid "" 26 | "Python provides a number of modules to assist in working with the Python " 27 | "language. These modules support tokenizing, parsing, syntax analysis, " 28 | "bytecode disassembly, and various other facilities." 29 | msgstr "" 30 | 31 | #: ../Doc/library/language.rst:11 32 | msgid "These modules include:" 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /2.7/library/someos.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/someos.rst:6 20 | msgid "Optional Operating System Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/someos.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide interfaces to operating system " 26 | "features that are available on selected operating systems only. The " 27 | "interfaces are generally modeled after the Unix or C interfaces but they are " 28 | "available on some other systems as well (e.g. Windows or NT). Here's an " 29 | "overview:" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.6/library/markup.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/markup.rst:5 21 | msgid "Structured Markup Processing Tools" 22 | msgstr "" 23 | 24 | #: ../Doc/library/markup.rst:7 25 | msgid "" 26 | "Python supports a variety of modules to work with various forms of " 27 | "structured data markup. This includes modules to work with the Standard " 28 | "Generalized Markup Language (SGML) and the Hypertext Markup Language (HTML), " 29 | "and several interfaces for working with the Extensible Markup Language (XML)." 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /2.7/library/internet.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/internet.rst:6 20 | msgid "Internet Protocols and Support" 21 | msgstr "" 22 | 23 | #: ../Doc/library/internet.rst:15 24 | msgid "" 25 | "The modules described in this chapter implement Internet protocols and " 26 | "support for related technology. They are all implemented in Python. Most of " 27 | "these modules require the presence of the system-dependent module :mod:" 28 | "`socket`, which is currently supported on most popular platforms. Here is " 29 | "an overview:" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.5/library/internet.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/internet.rst:5 20 | msgid "Internet Protocols and Support" 21 | msgstr "" 22 | 23 | #: ../Doc/library/internet.rst:14 24 | msgid "" 25 | "The modules described in this chapter implement Internet protocols and " 26 | "support for related technology. They are all implemented in Python. Most of " 27 | "these modules require the presence of the system-dependent module :mod:" 28 | "`socket`, which is currently supported on most popular platforms. Here is " 29 | "an overview:" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.6/library/distribution.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/distribution.rst:3 21 | msgid "Software Packaging and Distribution" 22 | msgstr "" 23 | 24 | #: ../Doc/library/distribution.rst:5 25 | msgid "" 26 | "These libraries help you with publishing and installing Python software. " 27 | "While these modules are designed to work in conjunction with the `Python " 28 | "Package Index `__, they can also be used with " 29 | "a local index server, or without any index server at all." 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /2.7/library/frameworks.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/frameworks.rst:6 20 | msgid "Program Frameworks" 21 | msgstr "" 22 | 23 | #: ../Doc/library/frameworks.rst:8 24 | msgid "" 25 | "The modules described in this chapter are frameworks that will largely " 26 | "dictate the structure of your program. Currently the modules described " 27 | "here are all oriented toward writing command-line interfaces." 28 | msgstr "" 29 | 30 | #: ../Doc/library/frameworks.rst:12 31 | msgid "The full list of modules described in this chapter is:" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /3.5/library/frameworks.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/frameworks.rst:5 20 | msgid "Program Frameworks" 21 | msgstr "" 22 | 23 | #: ../Doc/library/frameworks.rst:7 24 | msgid "" 25 | "The modules described in this chapter are frameworks that will largely " 26 | "dictate the structure of your program. Currently the modules described " 27 | "here are all oriented toward writing command-line interfaces." 28 | msgstr "" 29 | 30 | #: ../Doc/library/frameworks.rst:11 31 | msgid "The full list of modules described in this chapter is:" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /2.7/library/i18n.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/i18n.rst:6 20 | msgid "Internationalization" 21 | msgstr "" 22 | 23 | #: ../Doc/library/i18n.rst:8 24 | msgid "" 25 | "The modules described in this chapter help you write software that is " 26 | "independent of language and locale by providing mechanisms for selecting a " 27 | "language to be used in program messages or by tailoring output to match " 28 | "local conventions." 29 | msgstr "" 30 | 31 | #: ../Doc/library/i18n.rst:13 32 | msgid "The list of modules described in this chapter is:" 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /3.5/library/i18n.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/i18n.rst:5 20 | msgid "Internationalization" 21 | msgstr "" 22 | 23 | #: ../Doc/library/i18n.rst:7 24 | msgid "" 25 | "The modules described in this chapter help you write software that is " 26 | "independent of language and locale by providing mechanisms for selecting a " 27 | "language to be used in program messages or by tailoring output to match " 28 | "local conventions." 29 | msgstr "" 30 | 31 | #: ../Doc/library/i18n.rst:12 32 | msgid "The list of modules described in this chapter is:" 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /3.6/library/internet.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/internet.rst:5 21 | msgid "Internet Protocols and Support" 22 | msgstr "" 23 | 24 | #: ../Doc/library/internet.rst:14 25 | msgid "" 26 | "The modules described in this chapter implement Internet protocols and " 27 | "support for related technology. They are all implemented in Python. Most of " 28 | "these modules require the presence of the system-dependent module :mod:" 29 | "`socket`, which is currently supported on most popular platforms. Here is " 30 | "an overview:" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /3.6/library/frameworks.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/frameworks.rst:5 21 | msgid "Program Frameworks" 22 | msgstr "" 23 | 24 | #: ../Doc/library/frameworks.rst:7 25 | msgid "" 26 | "The modules described in this chapter are frameworks that will largely " 27 | "dictate the structure of your program. Currently the modules described " 28 | "here are all oriented toward writing command-line interfaces." 29 | msgstr "" 30 | 31 | #: ../Doc/library/frameworks.rst:11 32 | msgid "The full list of modules described in this chapter is:" 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /3.6/library/i18n.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/i18n.rst:5 21 | msgid "Internationalization" 22 | msgstr "" 23 | 24 | #: ../Doc/library/i18n.rst:7 25 | msgid "" 26 | "The modules described in this chapter help you write software that is " 27 | "independent of language and locale by providing mechanisms for selecting a " 28 | "language to be used in program messages or by tailoring output to match " 29 | "local conventions." 30 | msgstr "" 31 | 32 | #: ../Doc/library/i18n.rst:12 33 | msgid "The list of modules described in this chapter is:" 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /2.7/library/allos.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/allos.rst:6 20 | msgid "Generic Operating System Services" 21 | msgstr "Services génériques du système d'exploitation" 22 | 23 | #: ../Doc/library/allos.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide interfaces to operating system " 26 | "features that are available on (almost) all operating systems, such as files " 27 | "and a clock. The interfaces are generally modeled after the Unix or C " 28 | "interfaces, but they are available on most other systems as well. Here's an " 29 | "overview:" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.5/library/allos.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/allos.rst:5 20 | msgid "Generic Operating System Services" 21 | msgstr "Services génériques du système d'exploitation" 22 | 23 | #: ../Doc/library/allos.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide interfaces to operating system " 26 | "features that are available on (almost) all operating systems, such as files " 27 | "and a clock. The interfaces are generally modeled after the Unix or C " 28 | "interfaces, but they are available on most other systems as well. Here's an " 29 | "overview:" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /2.7/library/__main__.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/__main__.rst:3 20 | msgid ":mod:`__main__` --- Top-level script environment" 21 | msgstr ":mod:`__main__` --- Environnement premier du script" 22 | 23 | #: ../Doc/library/__main__.rst:9 24 | msgid "" 25 | "This module represents the (otherwise anonymous) scope in which the " 26 | "interpreter's main program executes --- commands read either from standard " 27 | "input, from a script file, or from an interactive prompt. It is this " 28 | "environment in which the idiomatic \"conditional script\" stanza causes a " 29 | "script to run::" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /3.6/library/allos.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/allos.rst:5 21 | msgid "Generic Operating System Services" 22 | msgstr "Services génériques du système d'exploitation" 23 | 24 | #: ../Doc/library/allos.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide interfaces to operating system " 27 | "features that are available on (almost) all operating systems, such as files " 28 | "and a clock. The interfaces are generally modeled after the Unix or C " 29 | "interfaces, but they are available on most other systems as well. Here's an " 30 | "overview:" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /3.5/library/text.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/text.rst:6 20 | msgid "Text Processing Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/text.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide a wide range of string " 26 | "manipulation operations and other text processing services." 27 | msgstr "" 28 | 29 | #: ../Doc/library/text.rst:11 30 | msgid "" 31 | "The :mod:`codecs` module described under :ref:`binaryservices` is also " 32 | "highly relevant to text processing. In addition, see the documentation for " 33 | "Python's built-in string type in :ref:`textseq`." 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /scripts/patches/polib.patch: -------------------------------------------------------------------------------- 1 | 485a486 2 | > 'Language', 3 | 489d489 4 | < 'Language', 5 | 956,958d955 6 | < if self.obsolete: 7 | < return _BaseEntry.__unicode__(self, wrapwidth) 8 | < 9 | 961c958,961 10 | < comments = [('comment', '#. '), ('tcomment', '# ')] 11 | --- 12 | > if self.obsolete: 13 | > comments = [('tcomment', '# ')] 14 | > else: 15 | > comments = [('comment', '#. '), ('tcomment', '# ')] 16 | 978c978 17 | < if self.occurrences: 18 | --- 19 | > if not self.obsolete and self.occurrences: 20 | 1007a1008,1011 21 | > if self.obsolete: 22 | > prefix = "#~| " 23 | > else: 24 | > prefix = "#| " 25 | 1011c1015 26 | < ret += self._str_field(f, "#| ", "", val, wrapwidth) 27 | --- 28 | > ret += self._str_field(f, prefix, "", val, wrapwidth) 29 | 1015,1018d1018 30 | < 31 | < assert isinstance(ret, text_type) 32 | < #if type(ret) != types.UnicodeType: 33 | < # return unicode(ret, self.encoding) 34 | 1493c1493 35 | < fil, line = occurrence.split(':') 36 | --- 37 | > fil, line = occurrence.rsplit(':', 1) 38 | -------------------------------------------------------------------------------- /3.6/library/text.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/text.rst:6 21 | msgid "Text Processing Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/text.rst:8 25 | msgid "" 26 | "The modules described in this chapter provide a wide range of string " 27 | "manipulation operations and other text processing services." 28 | msgstr "" 29 | 30 | #: ../Doc/library/text.rst:11 31 | msgid "" 32 | "The :mod:`codecs` module described under :ref:`binaryservices` is also " 33 | "highly relevant to text processing. In addition, see the documentation for " 34 | "Python's built-in string type in :ref:`textseq`." 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /2.7/whatsnew/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/whatsnew/index.rst:5 20 | msgid "What's New in Python" 21 | msgstr "Nouveautés de Python" 22 | 23 | #: ../Doc/whatsnew/index.rst:7 24 | msgid "" 25 | "The \"What's New in Python\" series of essays takes tours through the most " 26 | "important changes between major Python versions. They are a \"must read\" " 27 | "for anyone wishing to stay up-to-date after a new release." 28 | msgstr "" 29 | "La série d'essais \"Quoi de neuf dans Python\" reprend les plus importants " 30 | "changements entres les versions majeures de Python. Elles sont à lire pour " 31 | "quiconque souhaitant être à jour suite à une nouvelle sortie." 32 | -------------------------------------------------------------------------------- /3.5/library/concurrency.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/concurrency.rst:5 20 | msgid "Concurrent Execution" 21 | msgstr "" 22 | 23 | #: ../Doc/library/concurrency.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide support for concurrent " 26 | "execution of code. The appropriate choice of tool will depend on the task to " 27 | "be executed (CPU bound vs IO bound) and preferred style of development " 28 | "(event driven cooperative multitasking vs preemptive multitasking). Here's " 29 | "an overview:" 30 | msgstr "" 31 | 32 | #: ../Doc/library/concurrency.rst:25 33 | msgid "The following are support modules for some of the above services:" 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /3.6/library/concurrency.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/concurrency.rst:5 21 | msgid "Concurrent Execution" 22 | msgstr "" 23 | 24 | #: ../Doc/library/concurrency.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide support for concurrent " 27 | "execution of code. The appropriate choice of tool will depend on the task to " 28 | "be executed (CPU bound vs IO bound) and preferred style of development " 29 | "(event driven cooperative multitasking vs preemptive multitasking). Here's " 30 | "an overview:" 31 | msgstr "" 32 | 33 | #: ../Doc/library/concurrency.rst:25 34 | msgid "The following are support modules for some of the above services:" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /2.7/c-api/descriptor.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/descriptor.rst:6 20 | msgid "Descriptor Objects" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/descriptor.rst:8 24 | msgid "" 25 | "\"Descriptors\" are objects that describe some attribute of an object. They " 26 | "are found in the dictionary of type objects." 27 | msgstr "" 28 | 29 | #: ../Doc/c-api/descriptor.rst:14 30 | msgid "The type object for the built-in descriptor types." 31 | msgstr "" 32 | 33 | #: ../Doc/c-api/descriptor.rst:46 34 | msgid "" 35 | "Return true if the descriptor objects *descr* describes a data attribute, or " 36 | "false if it describes a method. *descr* must be a descriptor object; there " 37 | "is no error checking." 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /2.7/using/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/using/index.rst:5 20 | msgid "Python Setup and Usage" 21 | msgstr "Installation et Utilisation de Python [en]" 22 | 23 | #: ../Doc/using/index.rst:8 24 | msgid "" 25 | "This part of the documentation is devoted to general information on the " 26 | "setup of the Python environment on different platform, the invocation of the " 27 | "interpreter and things that make working with Python easier." 28 | msgstr "" 29 | "Cette partie de la documentation est consacrée aux informations générales au " 30 | "sujet de installation de l'environnement Python sur différentes " 31 | "plateformes, l'invocation de l'interpréteur et des choses qui facilitent le " 32 | "travail avec Python." 33 | -------------------------------------------------------------------------------- /3.5/c-api/descriptor.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/descriptor.rst:6 20 | msgid "Descriptor Objects" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/descriptor.rst:8 24 | msgid "" 25 | "\"Descriptors\" are objects that describe some attribute of an object. They " 26 | "are found in the dictionary of type objects." 27 | msgstr "" 28 | 29 | #: ../Doc/c-api/descriptor.rst:15 30 | msgid "The type object for the built-in descriptor types." 31 | msgstr "" 32 | 33 | #: ../Doc/c-api/descriptor.rst:35 34 | msgid "" 35 | "Return true if the descriptor objects *descr* describes a data attribute, or " 36 | "false if it describes a method. *descr* must be a descriptor object; there " 37 | "is no error checking." 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /3.5/using/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/using/index.rst:5 20 | msgid "Python Setup and Usage" 21 | msgstr "Installation et Utilisation de Python [en]" 22 | 23 | #: ../Doc/using/index.rst:8 24 | msgid "" 25 | "This part of the documentation is devoted to general information on the " 26 | "setup of the Python environment on different platform, the invocation of the " 27 | "interpreter and things that make working with Python easier." 28 | msgstr "" 29 | "Cette partie de la documentation est consacrée aux informations générales au " 30 | "sujet de installation de l'environnement Python sur différentes " 31 | "plateformes, l'invocation de l'interpréteur et des choses qui facilitent le " 32 | "travail avec Python." 33 | -------------------------------------------------------------------------------- /3.5/library/persistence.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/persistence.rst:5 20 | msgid "Data Persistence" 21 | msgstr "" 22 | 23 | #: ../Doc/library/persistence.rst:7 24 | msgid "" 25 | "The modules described in this chapter support storing Python data in a " 26 | "persistent form on disk. The :mod:`pickle` and :mod:`marshal` modules can " 27 | "turn many Python data types into a stream of bytes and then recreate the " 28 | "objects from the bytes. The various DBM-related modules support a family of " 29 | "hash-based file formats that store a mapping of strings to other strings." 30 | msgstr "" 31 | 32 | #: ../Doc/library/persistence.rst:13 33 | msgid "The list of modules described in this chapter is:" 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /3.5/library/ipc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/ipc.rst:5 20 | msgid "Interprocess Communication and Networking" 21 | msgstr "" 22 | 23 | #: ../Doc/library/ipc.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide mechanisms for different " 26 | "processes to communicate." 27 | msgstr "" 28 | 29 | #: ../Doc/library/ipc.rst:10 30 | msgid "" 31 | "Some modules only work for two processes that are on the same machine, e.g. :" 32 | "mod:`signal` and :mod:`mmap`. Other modules support networking protocols " 33 | "that two or more processes can use to communicate across machines." 34 | msgstr "" 35 | 36 | #: ../Doc/library/ipc.rst:14 37 | msgid "The list of modules described in this chapter is:" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /2.7/library/ipc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/ipc.rst:6 20 | msgid "Interprocess Communication and Networking" 21 | msgstr "" 22 | 23 | #: ../Doc/library/ipc.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide mechanisms for different " 26 | "processes to communicate." 27 | msgstr "" 28 | 29 | #: ../Doc/library/ipc.rst:11 30 | msgid "" 31 | "Some modules only work for two processes that are on the same machine, e.g. :" 32 | "mod:`signal` and :mod:`subprocess`. Other modules support networking " 33 | "protocols that two or more processes can use to communicate across machines." 34 | msgstr "" 35 | 36 | #: ../Doc/library/ipc.rst:15 37 | msgid "The list of modules described in this chapter is:" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /3.6/c-api/descriptor.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/c-api/descriptor.rst:6 21 | msgid "Descriptor Objects" 22 | msgstr "" 23 | 24 | #: ../Doc/c-api/descriptor.rst:8 25 | msgid "" 26 | "\"Descriptors\" are objects that describe some attribute of an object. They " 27 | "are found in the dictionary of type objects." 28 | msgstr "" 29 | 30 | #: ../Doc/c-api/descriptor.rst:15 31 | msgid "The type object for the built-in descriptor types." 32 | msgstr "" 33 | 34 | #: ../Doc/c-api/descriptor.rst:35 35 | msgid "" 36 | "Return true if the descriptor objects *descr* describes a data attribute, or " 37 | "false if it describes a method. *descr* must be a descriptor object; there " 38 | "is no error checking." 39 | msgstr "" 40 | -------------------------------------------------------------------------------- /3.6/using/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/using/index.rst:5 21 | msgid "Python Setup and Usage" 22 | msgstr "Installation et Utilisation de Python [en]" 23 | 24 | #: ../Doc/using/index.rst:8 25 | msgid "" 26 | "This part of the documentation is devoted to general information on the " 27 | "setup of the Python environment on different platform, the invocation of the " 28 | "interpreter and things that make working with Python easier." 29 | msgstr "" 30 | "Cette partie de la documentation est consacrée aux informations générales au " 31 | "sujet de installation de l'environnement Python sur différentes " 32 | "plateformes, l'invocation de l'interpréteur et des choses qui facilitent le " 33 | "travail avec Python." 34 | -------------------------------------------------------------------------------- /2.7/library/custominterp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/custominterp.rst:6 20 | msgid "Custom Python Interpreters" 21 | msgstr "" 22 | 23 | #: ../Doc/library/custominterp.rst:8 24 | msgid "" 25 | "The modules described in this chapter allow writing interfaces similar to " 26 | "Python's interactive interpreter. If you want a Python interpreter that " 27 | "supports some special feature in addition to the Python language, you should " 28 | "look at the :mod:`code` module. (The :mod:`codeop` module is lower-level, " 29 | "used to support compiling a possibly-incomplete chunk of Python code.)" 30 | msgstr "" 31 | 32 | #: ../Doc/library/custominterp.rst:14 33 | msgid "The full list of modules described in this chapter is:" 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /3.5/library/custominterp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/custominterp.rst:5 20 | msgid "Custom Python Interpreters" 21 | msgstr "" 22 | 23 | #: ../Doc/library/custominterp.rst:7 24 | msgid "" 25 | "The modules described in this chapter allow writing interfaces similar to " 26 | "Python's interactive interpreter. If you want a Python interpreter that " 27 | "supports some special feature in addition to the Python language, you should " 28 | "look at the :mod:`code` module. (The :mod:`codeop` module is lower-level, " 29 | "used to support compiling a possibly-incomplete chunk of Python code.)" 30 | msgstr "" 31 | 32 | #: ../Doc/library/custominterp.rst:13 33 | msgid "The full list of modules described in this chapter is:" 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /3.6/library/persistence.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/persistence.rst:5 21 | msgid "Data Persistence" 22 | msgstr "" 23 | 24 | #: ../Doc/library/persistence.rst:7 25 | msgid "" 26 | "The modules described in this chapter support storing Python data in a " 27 | "persistent form on disk. The :mod:`pickle` and :mod:`marshal` modules can " 28 | "turn many Python data types into a stream of bytes and then recreate the " 29 | "objects from the bytes. The various DBM-related modules support a family of " 30 | "hash-based file formats that store a mapping of strings to other strings." 31 | msgstr "" 32 | 33 | #: ../Doc/library/persistence.rst:13 34 | msgid "The list of modules described in this chapter is:" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /3.6/library/ipc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/ipc.rst:5 21 | msgid "Interprocess Communication and Networking" 22 | msgstr "" 23 | 24 | #: ../Doc/library/ipc.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide mechanisms for different " 27 | "processes to communicate." 28 | msgstr "" 29 | 30 | #: ../Doc/library/ipc.rst:10 31 | msgid "" 32 | "Some modules only work for two processes that are on the same machine, e.g. :" 33 | "mod:`signal` and :mod:`mmap`. Other modules support networking protocols " 34 | "that two or more processes can use to communicate across machines." 35 | msgstr "" 36 | 37 | #: ../Doc/library/ipc.rst:14 38 | msgid "The list of modules described in this chapter is:" 39 | msgstr "" 40 | -------------------------------------------------------------------------------- /3.6/library/custominterp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/custominterp.rst:5 21 | msgid "Custom Python Interpreters" 22 | msgstr "" 23 | 24 | #: ../Doc/library/custominterp.rst:7 25 | msgid "" 26 | "The modules described in this chapter allow writing interfaces similar to " 27 | "Python's interactive interpreter. If you want a Python interpreter that " 28 | "supports some special feature in addition to the Python language, you should " 29 | "look at the :mod:`code` module. (The :mod:`codeop` module is lower-level, " 30 | "used to support compiling a possibly-incomplete chunk of Python code.)" 31 | msgstr "" 32 | 33 | #: ../Doc/library/custominterp.rst:13 34 | msgid "The full list of modules described in this chapter is:" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /3.5/library/numeric.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/numeric.rst:6 20 | msgid "Numeric and Mathematical Modules" 21 | msgstr "" 22 | 23 | #: ../Doc/library/numeric.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide numeric and math-related " 26 | "functions and data types. The :mod:`numbers` module defines an abstract " 27 | "hierarchy of numeric types. The :mod:`math` and :mod:`cmath` modules contain " 28 | "various mathematical functions for floating-point and complex numbers. The :" 29 | "mod:`decimal` module supports exact representations of decimal numbers, " 30 | "using arbitrary precision arithmetic." 31 | msgstr "" 32 | 33 | #: ../Doc/library/numeric.rst:15 34 | msgid "The following modules are documented in this chapter:" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /2.7/library/development.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/development.rst:6 20 | msgid "Development Tools" 21 | msgstr "" 22 | 23 | #: ../Doc/library/development.rst:8 24 | msgid "" 25 | "The modules described in this chapter help you write software. For example, " 26 | "the :mod:`pydoc` module takes a module and generates documentation based on " 27 | "the module's contents. The :mod:`doctest` and :mod:`unittest` modules " 28 | "contains frameworks for writing unit tests that automatically exercise code " 29 | "and verify that the expected output is produced. :program:`2to3` can " 30 | "translate Python 2.x source code into valid Python 3.x code." 31 | msgstr "" 32 | 33 | #: ../Doc/library/development.rst:15 34 | msgid "The list of modules described in this chapter is:" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /2.7/library/numeric.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/numeric.rst:6 20 | msgid "Numeric and Mathematical Modules" 21 | msgstr "" 22 | 23 | #: ../Doc/library/numeric.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide numeric and math-related " 26 | "functions and data types. The :mod:`numbers` module defines an abstract " 27 | "hierarchy of numeric types. The :mod:`math` and :mod:`cmath` modules contain " 28 | "various mathematical functions for floating-point and complex numbers. For " 29 | "users more interested in decimal accuracy than in speed, the :mod:`decimal` " 30 | "module supports exact representations of decimal numbers." 31 | msgstr "" 32 | 33 | #: ../Doc/library/numeric.rst:15 34 | msgid "The following modules are documented in this chapter:" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /3.5/library/development.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/development.rst:5 20 | msgid "Development Tools" 21 | msgstr "" 22 | 23 | #: ../Doc/library/development.rst:7 24 | msgid "" 25 | "The modules described in this chapter help you write software. For example, " 26 | "the :mod:`pydoc` module takes a module and generates documentation based on " 27 | "the module's contents. The :mod:`doctest` and :mod:`unittest` modules " 28 | "contains frameworks for writing unit tests that automatically exercise code " 29 | "and verify that the expected output is produced. :program:`2to3` can " 30 | "translate Python 2.x source code into valid Python 3.x code." 31 | msgstr "" 32 | 33 | #: ../Doc/library/development.rst:14 34 | msgid "The list of modules described in this chapter is:" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /3.6/library/numeric.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/numeric.rst:6 21 | msgid "Numeric and Mathematical Modules" 22 | msgstr "" 23 | 24 | #: ../Doc/library/numeric.rst:8 25 | msgid "" 26 | "The modules described in this chapter provide numeric and math-related " 27 | "functions and data types. The :mod:`numbers` module defines an abstract " 28 | "hierarchy of numeric types. The :mod:`math` and :mod:`cmath` modules contain " 29 | "various mathematical functions for floating-point and complex numbers. The :" 30 | "mod:`decimal` module supports exact representations of decimal numbers, " 31 | "using arbitrary precision arithmetic." 32 | msgstr "" 33 | 34 | #: ../Doc/library/numeric.rst:15 35 | msgid "The following modules are documented in this chapter:" 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /2.7/library/macpath.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/macpath.rst:3 20 | msgid ":mod:`macpath` --- Mac OS 9 path manipulation functions" 21 | msgstr "" 22 | 23 | #: ../Doc/library/macpath.rst:9 24 | msgid "" 25 | "This module is the Mac OS 9 (and earlier) implementation of the :mod:`os." 26 | "path` module. It can be used to manipulate old-style Macintosh pathnames on " 27 | "Mac OS X (or any other platform)." 28 | msgstr "" 29 | 30 | #: ../Doc/library/macpath.rst:13 31 | msgid "" 32 | "The following functions are available in this module: :func:`normcase`, :" 33 | "func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`, :" 34 | "func:`isfile`, :func:`walk`, :func:`exists`. For other functions available " 35 | "in :mod:`os.path` dummy counterparts are available." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /2.7/library/strings.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/strings.rst:6 20 | msgid "String Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/strings.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide a wide range of string " 26 | "manipulation operations." 27 | msgstr "" 28 | 29 | #: ../Doc/library/strings.rst:11 30 | msgid "" 31 | "In addition, Python's built-in string classes support the sequence type " 32 | "methods described in the :ref:`typesseq` section, and also the string-" 33 | "specific methods described in the :ref:`string-methods` section. To output " 34 | "formatted strings use template strings or the ``%`` operator described in " 35 | "the :ref:`string-formatting` section. Also, see the :mod:`re` module for " 36 | "string functions based on regular expressions." 37 | msgstr "" 38 | -------------------------------------------------------------------------------- /3.6/library/development.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/development.rst:5 21 | msgid "Development Tools" 22 | msgstr "" 23 | 24 | #: ../Doc/library/development.rst:7 25 | msgid "" 26 | "The modules described in this chapter help you write software. For example, " 27 | "the :mod:`pydoc` module takes a module and generates documentation based on " 28 | "the module's contents. The :mod:`doctest` and :mod:`unittest` modules " 29 | "contains frameworks for writing unit tests that automatically exercise code " 30 | "and verify that the expected output is produced. :program:`2to3` can " 31 | "translate Python 2.x source code into valid Python 3.x code." 32 | msgstr "" 33 | 34 | #: ../Doc/library/development.rst:14 35 | msgid "The list of modules described in this chapter is:" 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /2.7/c-api/none.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/none.rst:6 20 | msgid "The ``None`` Object" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/none.rst:10 24 | msgid "" 25 | "Note that the :c:type:`PyTypeObject` for ``None`` is not directly exposed in " 26 | "the Python/C API. Since ``None`` is a singleton, testing for object " 27 | "identity (using ``==`` in C) is sufficient. There is no :c:func:" 28 | "`PyNone_Check` function for the same reason." 29 | msgstr "" 30 | 31 | #: ../Doc/c-api/none.rst:18 32 | msgid "" 33 | "The Python ``None`` object, denoting lack of value. This object has no " 34 | "methods. It needs to be treated just like any other object with respect to " 35 | "reference counts." 36 | msgstr "" 37 | 38 | #: ../Doc/c-api/none.rst:25 39 | msgid "Properly handle returning :c:data:`Py_None` from within a C function." 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /2.7/reference/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/reference/index.rst:5 20 | msgid "The Python Language Reference" 21 | msgstr "" 22 | 23 | #: ../Doc/reference/index.rst:7 24 | msgid "" 25 | "This reference manual describes the syntax and \"core semantics\" of the " 26 | "language. It is terse, but attempts to be exact and complete. The semantics " 27 | "of non-essential built-in object types and of the built-in functions and " 28 | "modules are described in :ref:`library-index`. For an informal introduction " 29 | "to the language, see :ref:`tutorial-index`. For C or C++ programmers, two " 30 | "additional manuals exist: :ref:`extending-index` describes the high-level " 31 | "picture of how to write a Python extension module, and the :ref:`c-api-" 32 | "index` describes the interfaces available to C/C++ programmers in detail." 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /3.5/reference/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/reference/index.rst:5 20 | msgid "The Python Language Reference" 21 | msgstr "" 22 | 23 | #: ../Doc/reference/index.rst:7 24 | msgid "" 25 | "This reference manual describes the syntax and \"core semantics\" of the " 26 | "language. It is terse, but attempts to be exact and complete. The semantics " 27 | "of non-essential built-in object types and of the built-in functions and " 28 | "modules are described in :ref:`library-index`. For an informal introduction " 29 | "to the language, see :ref:`tutorial-index`. For C or C++ programmers, two " 30 | "additional manuals exist: :ref:`extending-index` describes the high-level " 31 | "picture of how to write a Python extension module, and the :ref:`c-api-" 32 | "index` describes the interfaces available to C/C++ programmers in detail." 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /2.7/library/keyword.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/keyword.rst:2 20 | msgid ":mod:`keyword` --- Testing for Python keywords" 21 | msgstr "" 22 | 23 | #: ../Doc/library/keyword.rst:7 24 | msgid "**Source code:** :source:`Lib/keyword.py`" 25 | msgstr "**Code source :** :source:`Lib/keyword.py`" 26 | 27 | #: ../Doc/library/keyword.rst:11 28 | msgid "" 29 | "This module allows a Python program to determine if a string is a keyword." 30 | msgstr "" 31 | 32 | #: ../Doc/library/keyword.rst:16 33 | msgid "Return true if *s* is a Python keyword." 34 | msgstr "" 35 | 36 | #: ../Doc/library/keyword.rst:21 37 | msgid "" 38 | "Sequence containing all the keywords defined for the interpreter. If any " 39 | "keywords are defined to only be active when particular :mod:`__future__` " 40 | "statements are in effect, these will be included as well." 41 | msgstr "" 42 | -------------------------------------------------------------------------------- /3.5/library/keyword.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/keyword.rst:2 20 | msgid ":mod:`keyword` --- Testing for Python keywords" 21 | msgstr "" 22 | 23 | #: ../Doc/library/keyword.rst:7 24 | msgid "**Source code:** :source:`Lib/keyword.py`" 25 | msgstr "**Code source :** :source:`Lib/keyword.py`" 26 | 27 | #: ../Doc/library/keyword.rst:11 28 | msgid "" 29 | "This module allows a Python program to determine if a string is a keyword." 30 | msgstr "" 31 | 32 | #: ../Doc/library/keyword.rst:16 33 | msgid "Return true if *s* is a Python keyword." 34 | msgstr "" 35 | 36 | #: ../Doc/library/keyword.rst:21 37 | msgid "" 38 | "Sequence containing all the keywords defined for the interpreter. If any " 39 | "keywords are defined to only be active when particular :mod:`__future__` " 40 | "statements are in effect, these will be included as well." 41 | msgstr "" 42 | -------------------------------------------------------------------------------- /3.5/library/xmlrpc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/xmlrpc.rst:2 20 | msgid ":mod:`xmlrpc` --- XMLRPC server and client modules" 21 | msgstr "" 22 | 23 | #: ../Doc/library/xmlrpc.rst:4 24 | msgid "" 25 | "XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a " 26 | "transport. With it, a client can call methods with parameters on a remote " 27 | "server (the server is named by a URI) and get back structured data." 28 | msgstr "" 29 | 30 | #: ../Doc/library/xmlrpc.rst:8 31 | msgid "" 32 | "``xmlrpc`` is a package that collects server and client modules implementing " 33 | "XML-RPC. The modules are:" 34 | msgstr "" 35 | 36 | #: ../Doc/library/xmlrpc.rst:11 37 | msgid ":mod:`xmlrpc.client`" 38 | msgstr ":mod:`xmlrpc.client`" 39 | 40 | #: ../Doc/library/xmlrpc.rst:12 41 | msgid ":mod:`xmlrpc.server`" 42 | msgstr ":mod:`xmlrpc.server`" 43 | -------------------------------------------------------------------------------- /3.6/reference/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/reference/index.rst:5 21 | msgid "The Python Language Reference" 22 | msgstr "" 23 | 24 | #: ../Doc/reference/index.rst:7 25 | msgid "" 26 | "This reference manual describes the syntax and \"core semantics\" of the " 27 | "language. It is terse, but attempts to be exact and complete. The semantics " 28 | "of non-essential built-in object types and of the built-in functions and " 29 | "modules are described in :ref:`library-index`. For an informal introduction " 30 | "to the language, see :ref:`tutorial-index`. For C or C++ programmers, two " 31 | "additional manuals exist: :ref:`extending-index` describes the high-level " 32 | "picture of how to write a Python extension module, and the :ref:`c-api-" 33 | "index` describes the interfaces available to C/C++ programmers in detail." 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /3.5/library/datatypes.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/datatypes.rst:5 20 | msgid "Data Types" 21 | msgstr "" 22 | 23 | #: ../Doc/library/datatypes.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide a variety of specialized data " 26 | "types such as dates and times, fixed-type arrays, heap queues, synchronized " 27 | "queues, and sets." 28 | msgstr "" 29 | 30 | #: ../Doc/library/datatypes.rst:11 31 | msgid "" 32 | "Python also provides some built-in data types, in particular, :class:" 33 | "`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and :class:" 34 | "`tuple`. The :class:`str` class is used to hold Unicode strings, and the :" 35 | "class:`bytes` class is used to hold binary data." 36 | msgstr "" 37 | 38 | #: ../Doc/library/datatypes.rst:16 39 | msgid "The following modules are documented in this chapter:" 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /3.6/library/keyword.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/keyword.rst:2 21 | msgid ":mod:`keyword` --- Testing for Python keywords" 22 | msgstr "" 23 | 24 | #: ../Doc/library/keyword.rst:7 25 | msgid "**Source code:** :source:`Lib/keyword.py`" 26 | msgstr "**Code source :** :source:`Lib/keyword.py`" 27 | 28 | #: ../Doc/library/keyword.rst:11 29 | msgid "" 30 | "This module allows a Python program to determine if a string is a keyword." 31 | msgstr "" 32 | 33 | #: ../Doc/library/keyword.rst:16 34 | msgid "Return true if *s* is a Python keyword." 35 | msgstr "" 36 | 37 | #: ../Doc/library/keyword.rst:21 38 | msgid "" 39 | "Sequence containing all the keywords defined for the interpreter. If any " 40 | "keywords are defined to only be active when particular :mod:`__future__` " 41 | "statements are in effect, these will be included as well." 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /3.6/library/xmlrpc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/xmlrpc.rst:2 21 | msgid ":mod:`xmlrpc` --- XMLRPC server and client modules" 22 | msgstr "" 23 | 24 | #: ../Doc/library/xmlrpc.rst:4 25 | msgid "" 26 | "XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a " 27 | "transport. With it, a client can call methods with parameters on a remote " 28 | "server (the server is named by a URI) and get back structured data." 29 | msgstr "" 30 | 31 | #: ../Doc/library/xmlrpc.rst:8 32 | msgid "" 33 | "``xmlrpc`` is a package that collects server and client modules implementing " 34 | "XML-RPC. The modules are:" 35 | msgstr "" 36 | 37 | #: ../Doc/library/xmlrpc.rst:11 38 | msgid ":mod:`xmlrpc.client`" 39 | msgstr ":mod:`xmlrpc.client`" 40 | 41 | #: ../Doc/library/xmlrpc.rst:12 42 | msgid ":mod:`xmlrpc.server`" 43 | msgstr ":mod:`xmlrpc.server`" 44 | -------------------------------------------------------------------------------- /2.7/library/persistence.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/persistence.rst:6 20 | msgid "Data Persistence" 21 | msgstr "" 22 | 23 | #: ../Doc/library/persistence.rst:8 24 | msgid "" 25 | "The modules described in this chapter support storing Python data in a " 26 | "persistent form on disk. The :mod:`pickle` and :mod:`marshal` modules can " 27 | "turn many Python data types into a stream of bytes and then recreate the " 28 | "objects from the bytes. The various DBM-related modules support a family of " 29 | "hash-based file formats that store a mapping of strings to other strings. " 30 | "The :mod:`bsddb` module also provides such disk-based string-to-string " 31 | "mappings based on hashing, and also supports B-Tree and record-based formats." 32 | msgstr "" 33 | 34 | #: ../Doc/library/persistence.rst:16 35 | msgid "The list of modules described in this chapter is:" 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /3.6/library/datatypes.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/datatypes.rst:5 21 | msgid "Data Types" 22 | msgstr "" 23 | 24 | #: ../Doc/library/datatypes.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide a variety of specialized data " 27 | "types such as dates and times, fixed-type arrays, heap queues, synchronized " 28 | "queues, and sets." 29 | msgstr "" 30 | 31 | #: ../Doc/library/datatypes.rst:11 32 | msgid "" 33 | "Python also provides some built-in data types, in particular, :class:" 34 | "`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and :class:" 35 | "`tuple`. The :class:`str` class is used to hold Unicode strings, and the :" 36 | "class:`bytes` class is used to hold binary data." 37 | msgstr "" 38 | 39 | #: ../Doc/library/datatypes.rst:16 40 | msgid "The following modules are documented in this chapter:" 41 | msgstr "" 42 | -------------------------------------------------------------------------------- /2.7/library/mac.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/mac.rst:5 20 | msgid "Mac OS X specific services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/mac.rst:7 24 | msgid "" 25 | "This chapter describes modules that are only available on the Mac OS X " 26 | "platform." 27 | msgstr "" 28 | 29 | #: ../Doc/library/mac.rst:9 30 | msgid "" 31 | "See the chapters :ref:`mac-scripting` and :ref:`undoc-mac-modules` for more " 32 | "modules, and the HOWTO :ref:`using-on-mac` for a general introduction to Mac-" 33 | "specific Python programming." 34 | msgstr "" 35 | 36 | #: ../Doc/library/mac.rst:15 37 | msgid "" 38 | "Most of the OS X APIs that these modules use are deprecated or removed in " 39 | "recent versions of OS X. Many are not available when Python is executing in " 40 | "64-bit mode. These modules have been removed in Python 3. You should avoid " 41 | "using them in Python 2." 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /3.5/library/urllib.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/urllib.rst:2 20 | msgid ":mod:`urllib` --- URL handling modules" 21 | msgstr "" 22 | 23 | #: ../Doc/library/urllib.rst:6 24 | msgid "**Source code:** :source:`Lib/urllib/`" 25 | msgstr "" 26 | 27 | #: ../Doc/library/urllib.rst:10 28 | msgid "" 29 | "``urllib`` is a package that collects several modules for working with URLs:" 30 | msgstr "" 31 | 32 | #: ../Doc/library/urllib.rst:12 33 | msgid ":mod:`urllib.request` for opening and reading URLs" 34 | msgstr "" 35 | 36 | #: ../Doc/library/urllib.rst:13 37 | msgid "" 38 | ":mod:`urllib.error` containing the exceptions raised by :mod:`urllib.request`" 39 | msgstr "" 40 | 41 | #: ../Doc/library/urllib.rst:14 42 | msgid ":mod:`urllib.parse` for parsing URLs" 43 | msgstr "" 44 | 45 | #: ../Doc/library/urllib.rst:15 46 | msgid ":mod:`urllib.robotparser` for parsing ``robots.txt`` files" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /3.5/library/binary.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/binary.rst:5 20 | msgid "Binary Data Services" 21 | msgstr "" 22 | 23 | #: ../Doc/library/binary.rst:7 24 | msgid "" 25 | "The modules described in this chapter provide some basic services operations " 26 | "for manipulation of binary data. Other operations on binary data, " 27 | "specifically in relation to file formats and network protocols, are " 28 | "described in the relevant sections." 29 | msgstr "" 30 | 31 | #: ../Doc/library/binary.rst:12 32 | msgid "" 33 | "Some libraries described under :ref:`textservices` also work with either " 34 | "ASCII-compatible binary formats (for example, :mod:`re`) or all binary data " 35 | "(for example, :mod:`difflib`)." 36 | msgstr "" 37 | 38 | #: ../Doc/library/binary.rst:16 39 | msgid "" 40 | "In addition, see the documentation for Python's built-in binary data types " 41 | "in :ref:`binaryseq`." 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /3.5/c-api/iter.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/iter.rst:6 20 | msgid "Iterator Protocol" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/iter.rst:8 24 | msgid "There are two functions specifically for working with iterators." 25 | msgstr "" 26 | 27 | #: ../Doc/c-api/iter.rst:12 28 | msgid "Return true if the object *o* supports the iterator protocol." 29 | msgstr "" 30 | 31 | #: ../Doc/c-api/iter.rst:17 32 | msgid "" 33 | "Return the next value from the iteration *o*. The object must be an " 34 | "iterator (it is up to the caller to check this). If there are no remaining " 35 | "values, returns *NULL* with no exception set. If an error occurs while " 36 | "retrieving the item, returns *NULL* and passes along the exception." 37 | msgstr "" 38 | 39 | #: ../Doc/c-api/iter.rst:22 40 | msgid "" 41 | "To write a loop which iterates over an iterator, the C code should look " 42 | "something like this::" 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /3.5/library/macpath.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/macpath.rst:2 20 | msgid ":mod:`macpath` --- Mac OS 9 path manipulation functions" 21 | msgstr "" 22 | 23 | #: ../Doc/library/macpath.rst:7 24 | msgid "**Source code:** :source:`Lib/macpath.py`" 25 | msgstr "" 26 | 27 | #: ../Doc/library/macpath.rst:11 28 | msgid "" 29 | "This module is the Mac OS 9 (and earlier) implementation of the :mod:`os." 30 | "path` module. It can be used to manipulate old-style Macintosh pathnames on " 31 | "Mac OS X (or any other platform)." 32 | msgstr "" 33 | 34 | #: ../Doc/library/macpath.rst:15 35 | msgid "" 36 | "The following functions are available in this module: :func:`normcase`, :" 37 | "func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`, :" 38 | "func:`isfile`, :func:`walk`, :func:`exists`. For other functions available " 39 | "in :mod:`os.path` dummy counterparts are available." 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /3.5/c-api/none.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/none.rst:6 20 | msgid "The ``None`` Object" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/none.rst:10 24 | msgid "" 25 | "Note that the :c:type:`PyTypeObject` for ``None`` is not directly exposed in " 26 | "the Python/C API. Since ``None`` is a singleton, testing for object " 27 | "identity (using ``==`` in C) is sufficient. There is no :c:func:" 28 | "`PyNone_Check` function for the same reason." 29 | msgstr "" 30 | 31 | #: ../Doc/c-api/none.rst:18 32 | msgid "" 33 | "The Python ``None`` object, denoting lack of value. This object has no " 34 | "methods. It needs to be treated just like any other object with respect to " 35 | "reference counts." 36 | msgstr "" 37 | 38 | #: ../Doc/c-api/none.rst:25 39 | msgid "" 40 | "Properly handle returning :c:data:`Py_None` from within a C function (that " 41 | "is, increment the reference count of ``None`` and return it.)" 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /3.6/library/urllib.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/urllib.rst:2 21 | msgid ":mod:`urllib` --- URL handling modules" 22 | msgstr "" 23 | 24 | #: ../Doc/library/urllib.rst:6 25 | msgid "**Source code:** :source:`Lib/urllib/`" 26 | msgstr "" 27 | 28 | #: ../Doc/library/urllib.rst:10 29 | msgid "" 30 | "``urllib`` is a package that collects several modules for working with URLs:" 31 | msgstr "" 32 | 33 | #: ../Doc/library/urllib.rst:12 34 | msgid ":mod:`urllib.request` for opening and reading URLs" 35 | msgstr "" 36 | 37 | #: ../Doc/library/urllib.rst:13 38 | msgid "" 39 | ":mod:`urllib.error` containing the exceptions raised by :mod:`urllib.request`" 40 | msgstr "" 41 | 42 | #: ../Doc/library/urllib.rst:14 43 | msgid ":mod:`urllib.parse` for parsing URLs" 44 | msgstr "" 45 | 46 | #: ../Doc/library/urllib.rst:15 47 | msgid ":mod:`urllib.robotparser` for parsing ``robots.txt`` files" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /3.6/library/binary.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/binary.rst:5 21 | msgid "Binary Data Services" 22 | msgstr "" 23 | 24 | #: ../Doc/library/binary.rst:7 25 | msgid "" 26 | "The modules described in this chapter provide some basic services operations " 27 | "for manipulation of binary data. Other operations on binary data, " 28 | "specifically in relation to file formats and network protocols, are " 29 | "described in the relevant sections." 30 | msgstr "" 31 | 32 | #: ../Doc/library/binary.rst:12 33 | msgid "" 34 | "Some libraries described under :ref:`textservices` also work with either " 35 | "ASCII-compatible binary formats (for example, :mod:`re`) or all binary data " 36 | "(for example, :mod:`difflib`)." 37 | msgstr "" 38 | 39 | #: ../Doc/library/binary.rst:16 40 | msgid "" 41 | "In addition, see the documentation for Python's built-in binary data types " 42 | "in :ref:`binaryseq`." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /3.6/c-api/iter.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/c-api/iter.rst:6 21 | msgid "Iterator Protocol" 22 | msgstr "" 23 | 24 | #: ../Doc/c-api/iter.rst:8 25 | msgid "There are two functions specifically for working with iterators." 26 | msgstr "" 27 | 28 | #: ../Doc/c-api/iter.rst:12 29 | msgid "Return true if the object *o* supports the iterator protocol." 30 | msgstr "" 31 | 32 | #: ../Doc/c-api/iter.rst:17 33 | msgid "" 34 | "Return the next value from the iteration *o*. The object must be an " 35 | "iterator (it is up to the caller to check this). If there are no remaining " 36 | "values, returns *NULL* with no exception set. If an error occurs while " 37 | "retrieving the item, returns *NULL* and passes along the exception." 38 | msgstr "" 39 | 40 | #: ../Doc/c-api/iter.rst:22 41 | msgid "" 42 | "To write a loop which iterates over an iterator, the C code should look " 43 | "something like this::" 44 | msgstr "" 45 | -------------------------------------------------------------------------------- /3.6/library/macpath.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/macpath.rst:2 21 | msgid ":mod:`macpath` --- Mac OS 9 path manipulation functions" 22 | msgstr "" 23 | 24 | #: ../Doc/library/macpath.rst:7 25 | msgid "**Source code:** :source:`Lib/macpath.py`" 26 | msgstr "" 27 | 28 | #: ../Doc/library/macpath.rst:11 29 | msgid "" 30 | "This module is the Mac OS 9 (and earlier) implementation of the :mod:`os." 31 | "path` module. It can be used to manipulate old-style Macintosh pathnames on " 32 | "Mac OS X (or any other platform)." 33 | msgstr "" 34 | 35 | #: ../Doc/library/macpath.rst:15 36 | msgid "" 37 | "The following functions are available in this module: :func:`normcase`, :" 38 | "func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`, :" 39 | "func:`isfile`, :func:`walk`, :func:`exists`. For other functions available " 40 | "in :mod:`os.path` dummy counterparts are available." 41 | msgstr "" 42 | -------------------------------------------------------------------------------- /2.7/library/colorpicker.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/colorpicker.rst:3 20 | msgid ":mod:`ColorPicker` --- Color selection dialog" 21 | msgstr "" 22 | 23 | #: ../Doc/library/colorpicker.rst:13 24 | msgid "" 25 | "The :mod:`ColorPicker` module provides access to the standard color picker " 26 | "dialog." 27 | msgstr "" 28 | 29 | #: ../Doc/library/colorpicker.rst:18 30 | msgid "This module has been removed in Python 3.x." 31 | msgstr "" 32 | 33 | #: ../Doc/library/colorpicker.rst:23 34 | msgid "" 35 | "Show a standard color selection dialog and allow the user to select a color. " 36 | "The user is given instruction by the *prompt* string, and the default color " 37 | "is set to *rgb*. *rgb* must be a tuple giving the red, green, and blue " 38 | "components of the color. :func:`GetColor` returns a tuple giving the user's " 39 | "selected color and a flag indicating whether they accepted the selection of " 40 | "cancelled." 41 | msgstr "" 42 | -------------------------------------------------------------------------------- /2.7/library/datatypes.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/datatypes.rst:6 20 | msgid "Data Types" 21 | msgstr "" 22 | 23 | #: ../Doc/library/datatypes.rst:8 24 | msgid "" 25 | "The modules described in this chapter provide a variety of specialized data " 26 | "types such as dates and times, fixed-type arrays, heap queues, synchronized " 27 | "queues, and sets." 28 | msgstr "" 29 | 30 | #: ../Doc/library/datatypes.rst:12 31 | msgid "" 32 | "Python also provides some built-in data types, in particular, :class:" 33 | "`dict`, :class:`list`, :class:`set` (which along with :class:`frozenset`, " 34 | "replaces the deprecated :mod:`sets` module), and :class:`tuple`. The :class:" 35 | "`str` class can be used to handle binary data and 8-bit text, and the :class:" 36 | "`unicode` class to handle Unicode text." 37 | msgstr "" 38 | 39 | #: ../Doc/library/datatypes.rst:18 40 | msgid "The following modules are documented in this chapter:" 41 | msgstr "" 42 | -------------------------------------------------------------------------------- /3.6/c-api/none.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/c-api/none.rst:6 21 | msgid "The ``None`` Object" 22 | msgstr "" 23 | 24 | #: ../Doc/c-api/none.rst:10 25 | msgid "" 26 | "Note that the :c:type:`PyTypeObject` for ``None`` is not directly exposed in " 27 | "the Python/C API. Since ``None`` is a singleton, testing for object " 28 | "identity (using ``==`` in C) is sufficient. There is no :c:func:" 29 | "`PyNone_Check` function for the same reason." 30 | msgstr "" 31 | 32 | #: ../Doc/c-api/none.rst:18 33 | msgid "" 34 | "The Python ``None`` object, denoting lack of value. This object has no " 35 | "methods. It needs to be treated just like any other object with respect to " 36 | "reference counts." 37 | msgstr "" 38 | 39 | #: ../Doc/c-api/none.rst:25 40 | msgid "" 41 | "Properly handle returning :c:data:`Py_None` from within a C function (that " 42 | "is, increment the reference count of ``None`` and return it.)" 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /2.7/howto/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/howto/index.rst:3 20 | msgid "Python HOWTOs" 21 | msgstr "Les HOWTOs de Python" 22 | 23 | #: ../Doc/howto/index.rst:5 24 | msgid "" 25 | "Python HOWTOs are documents that cover a single, specific topic, and attempt " 26 | "to cover it fairly completely. Modelled on the Linux Documentation Project's " 27 | "HOWTO collection, this collection is an effort to foster documentation " 28 | "that's more detailed than the Python Library Reference." 29 | msgstr "" 30 | "les Guides Pratique Python sont des documents couvrant chacun un sujet " 31 | "unique et spécifique de la manière la plus complète possible. Créés à partir " 32 | "de la suite Documentation Project's HOWTO Linux, cette suite essaie de " 33 | "promouvoir les documentations plus détaillées que la Python Library " 34 | "Reference." 35 | 36 | #: ../Doc/howto/index.rst:11 37 | msgid "Currently, the HOWTOs are:" 38 | msgstr "Actuellement, les HOWTOs sont :" 39 | -------------------------------------------------------------------------------- /3.5/c-api/coro.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/coro.rst:6 20 | msgid "Coroutine Objects" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/coro.rst:10 24 | msgid "" 25 | "Coroutine objects are what functions declared with an ``async`` keyword " 26 | "return." 27 | msgstr "" 28 | 29 | #: ../Doc/c-api/coro.rst:16 30 | msgid "The C structure used for coroutine objects." 31 | msgstr "" 32 | 33 | #: ../Doc/c-api/coro.rst:21 34 | msgid "The type object corresponding to coroutine objects." 35 | msgstr "" 36 | 37 | #: ../Doc/c-api/coro.rst:26 38 | msgid "Return true if *ob*'s type is *PyCoro_Type*; *ob* must not be *NULL*." 39 | msgstr "" 40 | 41 | #: ../Doc/c-api/coro.rst:31 42 | msgid "" 43 | "Create and return a new coroutine object based on the *frame* object, with " 44 | "``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference " 45 | "to *frame* is stolen by this function. The *frame* argument must not be " 46 | "*NULL*." 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /3.5/howto/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/howto/index.rst:3 20 | msgid "Python HOWTOs" 21 | msgstr "Les HOWTOs de Python" 22 | 23 | #: ../Doc/howto/index.rst:5 24 | msgid "" 25 | "Python HOWTOs are documents that cover a single, specific topic, and attempt " 26 | "to cover it fairly completely. Modelled on the Linux Documentation Project's " 27 | "HOWTO collection, this collection is an effort to foster documentation " 28 | "that's more detailed than the Python Library Reference." 29 | msgstr "" 30 | "les Guides Pratique Python sont des documents couvrant chacun un sujet " 31 | "unique et spécifique de la manière la plus complète possible. Créés à partir " 32 | "de la suite Documentation Project's HOWTO Linux, cette suite essaie de " 33 | "promouvoir les documentations plus détaillées que la Python Library " 34 | "Reference." 35 | 36 | #: ../Doc/howto/index.rst:11 37 | msgid "Currently, the HOWTOs are:" 38 | msgstr "Actuellement, les HOWTOs sont :" 39 | -------------------------------------------------------------------------------- /3.6/c-api/coro.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/c-api/coro.rst:6 21 | msgid "Coroutine Objects" 22 | msgstr "" 23 | 24 | #: ../Doc/c-api/coro.rst:10 25 | msgid "" 26 | "Coroutine objects are what functions declared with an ``async`` keyword " 27 | "return." 28 | msgstr "" 29 | 30 | #: ../Doc/c-api/coro.rst:16 31 | msgid "The C structure used for coroutine objects." 32 | msgstr "" 33 | 34 | #: ../Doc/c-api/coro.rst:21 35 | msgid "The type object corresponding to coroutine objects." 36 | msgstr "" 37 | 38 | #: ../Doc/c-api/coro.rst:26 39 | msgid "Return true if *ob*'s type is *PyCoro_Type*; *ob* must not be *NULL*." 40 | msgstr "" 41 | 42 | #: ../Doc/c-api/coro.rst:31 43 | msgid "" 44 | "Create and return a new coroutine object based on the *frame* object, with " 45 | "``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference " 46 | "to *frame* is stolen by this function. The *frame* argument must not be " 47 | "*NULL*." 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /3.6/howto/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/howto/index.rst:3 21 | msgid "Python HOWTOs" 22 | msgstr "Les HOWTOs de Python" 23 | 24 | #: ../Doc/howto/index.rst:5 25 | msgid "" 26 | "Python HOWTOs are documents that cover a single, specific topic, and attempt " 27 | "to cover it fairly completely. Modelled on the Linux Documentation Project's " 28 | "HOWTO collection, this collection is an effort to foster documentation " 29 | "that's more detailed than the Python Library Reference." 30 | msgstr "" 31 | "les Guides Pratique Python sont des documents couvrant chacun un sujet " 32 | "unique et spécifique de la manière la plus complète possible. Créés à partir " 33 | "de la suite Documentation Project's HOWTO Linux, cette suite essaie de " 34 | "promouvoir les documentations plus détaillées que la Python Library " 35 | "Reference." 36 | 37 | #: ../Doc/howto/index.rst:11 38 | msgid "Currently, the HOWTOs are:" 39 | msgstr "Actuellement, les HOWTOs sont :" 40 | -------------------------------------------------------------------------------- /2.7/library/filesys.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/filesys.rst:6 20 | msgid "File and Directory Access" 21 | msgstr "" 22 | 23 | #: ../Doc/library/filesys.rst:8 24 | msgid "" 25 | "The modules described in this chapter deal with disk files and directories. " 26 | "For example, there are modules for reading the properties of files, " 27 | "manipulating paths in a portable way, and creating temporary files. The " 28 | "full list of modules in this chapter is:" 29 | msgstr "" 30 | 31 | #: ../Doc/library/filesys.rst:33 32 | msgid "Section :ref:`bltin-file-objects`" 33 | msgstr "" 34 | 35 | #: ../Doc/library/filesys.rst:33 36 | msgid "A description of Python's built-in file objects." 37 | msgstr "" 38 | 39 | #: ../Doc/library/filesys.rst:36 40 | msgid "Module :mod:`os`" 41 | msgstr "Module :mod:`os`" 42 | 43 | #: ../Doc/library/filesys.rst:36 44 | msgid "" 45 | "Operating system interfaces, including functions to work with files at a " 46 | "lower level than the built-in file object." 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /2.7/distutils/commandref.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/distutils/commandref.rst:5 20 | msgid "Command Reference" 21 | msgstr "" 22 | 23 | #: ../Doc/distutils/commandref.rst:22 24 | msgid "Installing modules: the :command:`install` command family" 25 | msgstr "" 26 | 27 | #: ../Doc/distutils/commandref.rst:24 28 | msgid "" 29 | "The install command ensures that the build commands have been run and then " 30 | "runs the subcommands :command:`install_lib`, :command:`install_data` and :" 31 | "command:`install_scripts`." 32 | msgstr "" 33 | 34 | #: ../Doc/distutils/commandref.rst:35 35 | msgid ":command:`install_data`" 36 | msgstr "" 37 | 38 | #: ../Doc/distutils/commandref.rst:37 39 | msgid "This command installs all data files provided with the distribution." 40 | msgstr "" 41 | 42 | #: ../Doc/distutils/commandref.rst:43 43 | msgid ":command:`install_scripts`" 44 | msgstr "" 45 | 46 | #: ../Doc/distutils/commandref.rst:45 47 | msgid "This command installs all (Python) scripts in the distribution." 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /2.7/library/dummy_threading.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/dummy_threading.rst:2 20 | msgid "" 21 | ":mod:`dummy_threading` --- Drop-in replacement for the :mod:`threading` " 22 | "module" 23 | msgstr "" 24 | 25 | #: ../Doc/library/dummy_threading.rst:7 26 | msgid "**Source code:** :source:`Lib/dummy_threading.py`" 27 | msgstr "**Code source :** :source:`Lib/dummy_threading.py`" 28 | 29 | #: ../Doc/library/dummy_threading.rst:11 30 | msgid "" 31 | "This module provides a duplicate interface to the :mod:`threading` module. " 32 | "It is meant to be imported when the :mod:`thread` module is not provided on " 33 | "a platform." 34 | msgstr "" 35 | 36 | #: ../Doc/library/dummy_threading.rst:15 37 | msgid "Suggested usage is::" 38 | msgstr "Utilisation suggérée : " 39 | 40 | #: ../Doc/library/dummy_threading.rst:22 41 | msgid "" 42 | "Be careful to not use this module where deadlock might occur from a thread " 43 | "being created that blocks waiting for another thread to be created. This " 44 | "often occurs with blocking I/O." 45 | msgstr "" 46 | -------------------------------------------------------------------------------- /3.5/whatsnew/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/whatsnew/index.rst:5 20 | msgid "What's New in Python" 21 | msgstr "Nouveautés de Python" 22 | 23 | #: ../Doc/whatsnew/index.rst:7 24 | msgid "" 25 | "The \"What's New in Python\" series of essays takes tours through the most " 26 | "important changes between major Python versions. They are a \"must read\" " 27 | "for anyone wishing to stay up-to-date after a new release." 28 | msgstr "" 29 | "La série d'essais \"Quoi de neuf dans Python\" reprend les plus importants " 30 | "changements entres les versions majeures de Python. Elles sont à lire pour " 31 | "quiconque souhaitant être à jour suite à une nouvelle sortie." 32 | 33 | #: ../Doc/whatsnew/index.rst:29 34 | msgid "" 35 | "The \"Changelog\" is a HTML version of the file :source:`Misc/NEWS` which " 36 | "contains *all* nontrivial changes to Python for the current version." 37 | msgstr "" 38 | "Le « Changelog » est une version HTML du fichier :source:`Misc/NEWS` qui " 39 | "contient *tous* les changements non-triviaux de Python pour la version " 40 | "courante." 41 | -------------------------------------------------------------------------------- /scripts/fix_style.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | """Fix style of uncommited po files, or all if --all is given. 4 | 5 | The "tac|tac" trick is an equivalent to "sponge" but as tac is in 6 | coreutils we're avoiding you to install a new packet. Without 7 | `tac|tac` or `sponge`, `msgcat` may start to write in the po file 8 | before having finised to read it, yielding unpredictible behavior. 9 | (Yep we also can write to another file and mv it, like sed -i does.) 10 | """ 11 | 12 | from tqdm import tqdm 13 | from glob import glob 14 | from shlex import quote 15 | from subprocess import check_output 16 | 17 | 18 | def fix_style(all_files=False, no_wrap=False): 19 | find_modified_files = "git status | grep 'modified.*\.po$' | rev | cut -d' ' -f1 | rev" 20 | for po in tqdm(glob('**/*.po', recursive=True) if all_files else 21 | check_output(find_modified_files, shell=True).decode().split(), 22 | desc="Fixing indentation in po files"): 23 | check_output('tac {} | tac | msgcat - -o {} {}'.format( 24 | quote(po), quote(po), '--no-wrap' if no_wrap else ''), 25 | shell=True) 26 | 27 | if __name__ == '__main__': 28 | import argparse 29 | parser = argparse.ArgumentParser( 30 | description='Ensure po files are using the standard gettext format') 31 | parser.add_argument('--all', '-a', action='store_true', 32 | help='Recheck all files, not only modified ones.') 33 | parser.add_argument('--no-wrap', action='store_true', 34 | help='see `man msgcat`, usefull for sed.') 35 | args = parser.parse_args() 36 | fix_style(args.all, args.no_wrap) 37 | -------------------------------------------------------------------------------- /2.7/library/whichdb.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/whichdb.rst:2 20 | msgid ":mod:`whichdb` --- Guess which DBM module created a database" 21 | msgstr "" 22 | 23 | #: ../Doc/library/whichdb.rst:8 24 | msgid "" 25 | "The :mod:`whichdb` module's only function has been put into the :mod:`dbm` " 26 | "module in Python 3. The :term:`2to3` tool will automatically adapt imports " 27 | "when converting your sources to Python 3." 28 | msgstr "" 29 | 30 | #: ../Doc/library/whichdb.rst:13 31 | msgid "" 32 | "The single function in this module attempts to guess which of the several " 33 | "simple database modules available--\\ :mod:`dbm`, :mod:`gdbm`, or :mod:" 34 | "`dbhash`\\ --should be used to open a given file." 35 | msgstr "" 36 | 37 | #: ../Doc/library/whichdb.rst:20 38 | msgid "" 39 | "Returns one of the following values: ``None`` if the file can't be opened " 40 | "because it's unreadable or doesn't exist; the empty string (``''``) if the " 41 | "file's format can't be guessed; or a string containing the required module " 42 | "name, such as ``'dbm'`` or ``'gdbm'``." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /3.6/whatsnew/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/whatsnew/index.rst:5 21 | msgid "What's New in Python" 22 | msgstr "Nouveautés de Python" 23 | 24 | #: ../Doc/whatsnew/index.rst:7 25 | msgid "" 26 | "The \"What's New in Python\" series of essays takes tours through the most " 27 | "important changes between major Python versions. They are a \"must read\" " 28 | "for anyone wishing to stay up-to-date after a new release." 29 | msgstr "" 30 | "La série d'essais \"Quoi de neuf dans Python\" reprend les plus importants " 31 | "changements entres les versions majeures de Python. Elles sont à lire pour " 32 | "quiconque souhaitant être à jour suite à une nouvelle sortie." 33 | 34 | #: ../Doc/whatsnew/index.rst:30 35 | msgid "" 36 | "The \"Changelog\" is a HTML version of the file :source:`Misc/NEWS` which " 37 | "contains *all* nontrivial changes to Python for the current version." 38 | msgstr "" 39 | "Le « Changelog » est une version HTML du fichier :source:`Misc/NEWS` qui " 40 | "contient *tous* les changements non-triviaux de Python pour la version " 41 | "courante." 42 | -------------------------------------------------------------------------------- /2.7/library/importlib.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/importlib.rst:2 20 | msgid ":mod:`importlib` -- Convenience wrappers for :func:`__import__`" 21 | msgstr "" 22 | 23 | #: ../Doc/library/importlib.rst:12 24 | msgid "" 25 | "This module is a minor subset of what is available in the more full-featured " 26 | "package of the same name from Python 3.1 that provides a complete " 27 | "implementation of :keyword:`import`. What is here has been provided to help " 28 | "ease in transitioning from 2.7 to 3.1." 29 | msgstr "" 30 | 31 | #: ../Doc/library/importlib.rst:20 32 | msgid "" 33 | "Import a module. The *name* argument specifies what module to import in " 34 | "absolute or relative terms (e.g. either ``pkg.mod`` or ``..mod``). If the " 35 | "name is specified in relative terms, then the *package* argument must be " 36 | "specified to the package which is to act as the anchor for resolving the " 37 | "package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import " 38 | "``pkg.mod``). The specified module will be inserted into :data:`sys." 39 | "modules` and returned." 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /3.5/library/__main__.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/__main__.rst:3 20 | msgid ":mod:`__main__` --- Top-level script environment" 21 | msgstr ":mod:`__main__` --- Environnement premier du script" 22 | 23 | #: ../Doc/library/__main__.rst:10 24 | msgid "" 25 | "``'__main__'`` is the name of the scope in which top-level code executes. A " 26 | "module's __name__ is set equal to ``'__main__'`` when read from standard " 27 | "input, a script, or from an interactive prompt." 28 | msgstr "" 29 | 30 | #: ../Doc/library/__main__.rst:14 31 | msgid "" 32 | "A module can discover whether or not it is running in the main scope by " 33 | "checking its own ``__name__``, which allows a common idiom for conditionally " 34 | "executing code in a module when it is run as a script or with ``python -m`` " 35 | "but not when it is imported::" 36 | msgstr "" 37 | 38 | #: ../Doc/library/__main__.rst:23 39 | msgid "" 40 | "For a package, the same effect can be achieved by including a ``__main__." 41 | "py`` module, the contents of which will be executed when the module is run " 42 | "with ``-m``." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /3.6/library/__main__.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/__main__.rst:3 21 | msgid ":mod:`__main__` --- Top-level script environment" 22 | msgstr ":mod:`__main__` --- Environnement premier du script" 23 | 24 | #: ../Doc/library/__main__.rst:10 25 | msgid "" 26 | "``'__main__'`` is the name of the scope in which top-level code executes. A " 27 | "module's __name__ is set equal to ``'__main__'`` when read from standard " 28 | "input, a script, or from an interactive prompt." 29 | msgstr "" 30 | 31 | #: ../Doc/library/__main__.rst:14 32 | msgid "" 33 | "A module can discover whether or not it is running in the main scope by " 34 | "checking its own ``__name__``, which allows a common idiom for conditionally " 35 | "executing code in a module when it is run as a script or with ``python -m`` " 36 | "but not when it is imported::" 37 | msgstr "" 38 | 39 | #: ../Doc/library/__main__.rst:23 40 | msgid "" 41 | "For a package, the same effect can be achieved by including a ``__main__." 42 | "py`` module, the contents of which will be executed when the module is run " 43 | "with ``-m``." 44 | msgstr "" 45 | -------------------------------------------------------------------------------- /2.7/c-api/gen.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/gen.rst:6 20 | msgid "Generator Objects" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/gen.rst:8 24 | msgid "" 25 | "Generator objects are what Python uses to implement generator iterators. " 26 | "They are normally created by iterating over a function that yields values, " 27 | "rather than explicitly calling :c:func:`PyGen_New`." 28 | msgstr "" 29 | 30 | #: ../Doc/c-api/gen.rst:15 31 | msgid "The C structure used for generator objects." 32 | msgstr "" 33 | 34 | #: ../Doc/c-api/gen.rst:20 35 | msgid "The type object corresponding to generator objects." 36 | msgstr "" 37 | 38 | #: ../Doc/c-api/gen.rst:25 39 | msgid "Return true if *ob* is a generator object; *ob* must not be *NULL*." 40 | msgstr "" 41 | 42 | #: ../Doc/c-api/gen.rst:30 43 | msgid "" 44 | "Return true if *ob*'s type is *PyGen_Type* is a generator object; *ob* must " 45 | "not be *NULL*." 46 | msgstr "" 47 | 48 | #: ../Doc/c-api/gen.rst:36 49 | msgid "" 50 | "Create and return a new generator object based on the *frame* object. A " 51 | "reference to *frame* is stolen by this function. The parameter must not be " 52 | "*NULL*." 53 | msgstr "" 54 | -------------------------------------------------------------------------------- /2.7/library/autogil.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/autogil.rst:3 20 | msgid ":mod:`autoGIL` --- Global Interpreter Lock handling in event loops" 21 | msgstr "" 22 | 23 | #: ../Doc/library/autogil.rst:12 24 | msgid "" 25 | "The :mod:`autoGIL` module provides a function :func:`installAutoGIL` that " 26 | "automatically locks and unlocks Python's :term:`Global Interpreter Lock` " 27 | "when running an event loop." 28 | msgstr "" 29 | 30 | #: ../Doc/library/autogil.rst:18 31 | msgid "This module has been removed in Python 3.x." 32 | msgstr "" 33 | 34 | #: ../Doc/library/autogil.rst:23 35 | msgid "" 36 | "Raised if the observer callback cannot be installed, for example because the " 37 | "current thread does not have a run loop." 38 | msgstr "" 39 | 40 | #: ../Doc/library/autogil.rst:29 41 | msgid "" 42 | "Install an observer callback in the event loop (CFRunLoop) for the current " 43 | "thread, that will lock and unlock the Global Interpreter Lock (GIL) at " 44 | "appropriate times, allowing other Python threads to run while the event loop " 45 | "is idle." 46 | msgstr "" 47 | 48 | #: ../Doc/library/autogil.rst:34 49 | msgid "Availability: OSX 10.1 or later." 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /2.7/library/symbol.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/symbol.rst:2 20 | msgid ":mod:`symbol` --- Constants used with Python parse trees" 21 | msgstr "" 22 | 23 | #: ../Doc/library/symbol.rst:8 24 | msgid "**Source code:** :source:`Lib/symbol.py`" 25 | msgstr "**Code source :** :source:`Lib/symbol.py`" 26 | 27 | #: ../Doc/library/symbol.rst:12 28 | msgid "" 29 | "This module provides constants which represent the numeric values of " 30 | "internal nodes of the parse tree. Unlike most Python constants, these use " 31 | "lower-case names. Refer to the file :file:`Grammar/Grammar` in the Python " 32 | "distribution for the definitions of the names in the context of the language " 33 | "grammar. The specific numeric values which the names map to may change " 34 | "between Python versions." 35 | msgstr "" 36 | 37 | #: ../Doc/library/symbol.rst:19 38 | msgid "This module also provides one additional data object:" 39 | msgstr "" 40 | 41 | #: ../Doc/library/symbol.rst:24 42 | msgid "" 43 | "Dictionary mapping the numeric values of the constants defined in this " 44 | "module back to name strings, allowing more human-readable representation of " 45 | "parse trees to be generated." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /3.5/library/symbol.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/symbol.rst:2 20 | msgid ":mod:`symbol` --- Constants used with Python parse trees" 21 | msgstr "" 22 | 23 | #: ../Doc/library/symbol.rst:9 24 | msgid "**Source code:** :source:`Lib/symbol.py`" 25 | msgstr "**Code source :** :source:`Lib/symbol.py`" 26 | 27 | #: ../Doc/library/symbol.rst:13 28 | msgid "" 29 | "This module provides constants which represent the numeric values of " 30 | "internal nodes of the parse tree. Unlike most Python constants, these use " 31 | "lower-case names. Refer to the file :file:`Grammar/Grammar` in the Python " 32 | "distribution for the definitions of the names in the context of the language " 33 | "grammar. The specific numeric values which the names map to may change " 34 | "between Python versions." 35 | msgstr "" 36 | 37 | #: ../Doc/library/symbol.rst:20 38 | msgid "This module also provides one additional data object:" 39 | msgstr "" 40 | 41 | #: ../Doc/library/symbol.rst:25 42 | msgid "" 43 | "Dictionary mapping the numeric values of the constants defined in this " 44 | "module back to name strings, allowing more human-readable representation of " 45 | "parse trees to be generated." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /3.6/library/symbol.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/symbol.rst:2 21 | msgid ":mod:`symbol` --- Constants used with Python parse trees" 22 | msgstr "" 23 | 24 | #: ../Doc/library/symbol.rst:9 25 | msgid "**Source code:** :source:`Lib/symbol.py`" 26 | msgstr "**Code source :** :source:`Lib/symbol.py`" 27 | 28 | #: ../Doc/library/symbol.rst:13 29 | msgid "" 30 | "This module provides constants which represent the numeric values of " 31 | "internal nodes of the parse tree. Unlike most Python constants, these use " 32 | "lower-case names. Refer to the file :file:`Grammar/Grammar` in the Python " 33 | "distribution for the definitions of the names in the context of the language " 34 | "grammar. The specific numeric values which the names map to may change " 35 | "between Python versions." 36 | msgstr "" 37 | 38 | #: ../Doc/library/symbol.rst:20 39 | msgid "This module also provides one additional data object:" 40 | msgstr "" 41 | 42 | #: ../Doc/library/symbol.rst:25 43 | msgid "" 44 | "Dictionary mapping the numeric values of the constants defined in this " 45 | "module back to name strings, allowing more human-readable representation of " 46 | "parse trees to be generated." 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /scripts/gen_tx_config.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | import argparse 5 | 6 | # Map of tx projects slugs with our directories: 7 | PROJECTS = {'python-35': '3.5/', 8 | 'python-36': '3.6/', 9 | 'python-27': '2.7/'} 10 | 11 | 12 | def parse_args(): 13 | parser = argparse.ArgumentParser( 14 | description='Generates a .tx/config from our files.') 15 | parser.add_argument('config', metavar='.tx/config', 16 | help='Output config file.') 17 | return parser.parse_args() 18 | 19 | 20 | def conf_for_file(project_slug, root, po_file): 21 | version = root.strip('/') 22 | resource_slug = po_file[:-3].replace('/', '--').replace('.', '_') 23 | if resource_slug == 'glossary': 24 | # Reserved by transifex :-( 25 | resource_slug = 'glossary_' 26 | return """[{}.{}] 27 | trans.fr = {} 28 | type = PO 29 | source_lang = en 30 | source_file = {} 31 | 32 | """.format(project_slug, resource_slug, 33 | os.path.join('.tx', root, po_file), 34 | os.path.join('gen', 'src', version, 'pot', po_file[:-3] + '.pot')) 35 | 36 | 37 | def main(config): 38 | with open(config, 'w') as config_file: 39 | config_file.write("[main]\nhost = https://www.transifex.com\n") 40 | for slug, root in PROJECTS.items(): 41 | if root[-1] != '/': 42 | root = root + '/' 43 | for relative_root, dirs, files in os.walk(root): 44 | for po_file in files: 45 | if not po_file.endswith('.po'): 46 | continue 47 | config_file.write(conf_for_file(slug, root, os.path.join( 48 | relative_root, po_file)[len(root):])) 49 | 50 | 51 | if __name__ == '__main__': 52 | main(**vars(parse_args())) 53 | -------------------------------------------------------------------------------- /2.7/c-api/iter.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/c-api/iter.rst:6 20 | msgid "Iterator Protocol" 21 | msgstr "" 22 | 23 | #: ../Doc/c-api/iter.rst:10 24 | msgid "There are two functions specifically for working with iterators." 25 | msgstr "" 26 | 27 | #: ../Doc/c-api/iter.rst:15 28 | msgid "Return true if the object *o* supports the iterator protocol." 29 | msgstr "" 30 | 31 | #: ../Doc/c-api/iter.rst:17 32 | msgid "" 33 | "This function can return a false positive in the case of old-style classes " 34 | "because those classes always define a :c:member:`tp_iternext` slot with " 35 | "logic that either invokes a :meth:`next` method or raises a :exc:`TypeError`." 36 | msgstr "" 37 | 38 | #: ../Doc/c-api/iter.rst:24 39 | msgid "" 40 | "Return the next value from the iteration *o*. The object must be an " 41 | "iterator (it is up to the caller to check this). If there are no remaining " 42 | "values, returns *NULL* with no exception set. If an error occurs while " 43 | "retrieving the item, returns *NULL* and passes along the exception." 44 | msgstr "" 45 | 46 | #: ../Doc/c-api/iter.rst:29 47 | msgid "" 48 | "To write a loop which iterates over an iterator, the C code should look " 49 | "something like this::" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /2.7/library/tty.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/tty.rst:3 20 | msgid ":mod:`tty` --- Terminal control functions" 21 | msgstr "" 22 | 23 | #: ../Doc/library/tty.rst:12 24 | msgid "" 25 | "The :mod:`tty` module defines functions for putting the tty into cbreak and " 26 | "raw modes." 27 | msgstr "" 28 | 29 | #: ../Doc/library/tty.rst:15 30 | msgid "" 31 | "Because it requires the :mod:`termios` module, it will work only on Unix." 32 | msgstr "" 33 | 34 | #: ../Doc/library/tty.rst:17 35 | msgid "The :mod:`tty` module defines the following functions:" 36 | msgstr "" 37 | 38 | #: ../Doc/library/tty.rst:22 39 | msgid "" 40 | "Change the mode of the file descriptor *fd* to raw. If *when* is omitted, it " 41 | "defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios." 42 | "tcsetattr`." 43 | msgstr "" 44 | 45 | #: ../Doc/library/tty.rst:29 46 | msgid "" 47 | "Change the mode of file descriptor *fd* to cbreak. If *when* is omitted, it " 48 | "defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios." 49 | "tcsetattr`." 50 | msgstr "" 51 | 52 | #: ../Doc/library/tty.rst:36 53 | msgid "Module :mod:`termios`" 54 | msgstr "" 55 | 56 | #: ../Doc/library/tty.rst:37 57 | msgid "Low-level terminal control interface." 58 | msgstr "" 59 | -------------------------------------------------------------------------------- /3.5/library/_dummy_thread.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/_dummy_thread.rst:2 20 | msgid "" 21 | ":mod:`_dummy_thread` --- Drop-in replacement for the :mod:`_thread` module" 22 | msgstr "" 23 | 24 | #: ../Doc/library/_dummy_thread.rst:7 25 | msgid "**Source code:** :source:`Lib/_dummy_thread.py`" 26 | msgstr "**Code source:** :source:`Lib/_dummy_thread.py`" 27 | 28 | #: ../Doc/library/_dummy_thread.rst:11 29 | msgid "" 30 | "This module provides a duplicate interface to the :mod:`_thread` module. It " 31 | "is meant to be imported when the :mod:`_thread` module is not provided on a " 32 | "platform." 33 | msgstr "" 34 | 35 | #: ../Doc/library/_dummy_thread.rst:15 36 | msgid "Suggested usage is::" 37 | msgstr "Utilisation suggérée : " 38 | 39 | #: ../Doc/library/_dummy_thread.rst:22 40 | msgid "" 41 | "Be careful to not use this module where deadlock might occur from a thread " 42 | "being created that blocks waiting for another thread to be created. This " 43 | "often occurs with blocking I/O." 44 | msgstr "" 45 | "Soyez prudent de ne pas utiliser ce module lorsqu'un deadlock peut se " 46 | "produire à partir d'un thread en cours de création qui bloque en attentant " 47 | "qu'un autre thread soit créé. Cela se produit souvent avec des I/O bloquants." 48 | -------------------------------------------------------------------------------- /3.6/library/_dummy_thread.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.6\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-04-02 22:11+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: ../Doc/library/_dummy_thread.rst:2 21 | msgid "" 22 | ":mod:`_dummy_thread` --- Drop-in replacement for the :mod:`_thread` module" 23 | msgstr "" 24 | 25 | #: ../Doc/library/_dummy_thread.rst:7 26 | msgid "**Source code:** :source:`Lib/_dummy_thread.py`" 27 | msgstr "**Code source:** :source:`Lib/_dummy_thread.py`" 28 | 29 | #: ../Doc/library/_dummy_thread.rst:11 30 | msgid "" 31 | "This module provides a duplicate interface to the :mod:`_thread` module. It " 32 | "is meant to be imported when the :mod:`_thread` module is not provided on a " 33 | "platform." 34 | msgstr "" 35 | 36 | #: ../Doc/library/_dummy_thread.rst:15 37 | msgid "Suggested usage is::" 38 | msgstr "Utilisation suggérée : " 39 | 40 | #: ../Doc/library/_dummy_thread.rst:22 41 | msgid "" 42 | "Be careful to not use this module where deadlock might occur from a thread " 43 | "being created that blocks waiting for another thread to be created. This " 44 | "often occurs with blocking I/O." 45 | msgstr "" 46 | "Soyez prudent de ne pas utiliser ce module lorsqu'un deadlock peut se " 47 | "produire à partir d'un thread en cours de création qui bloque en attentant " 48 | "qu'un autre thread soit créé. Cela se produit souvent avec des I/O bloquants." 49 | -------------------------------------------------------------------------------- /2.7/library/markup.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 1990-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 2.7\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:44+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/markup.rst:5 20 | msgid "Structured Markup Processing Tools" 21 | msgstr "" 22 | 23 | #: ../Doc/library/markup.rst:7 24 | msgid "" 25 | "Python supports a variety of modules to work with various forms of " 26 | "structured data markup. This includes modules to work with the Standard " 27 | "Generalized Markup Language (SGML) and the Hypertext Markup Language (HTML), " 28 | "and several interfaces for working with the Extensible Markup Language (XML)." 29 | msgstr "" 30 | 31 | #: ../Doc/library/markup.rst:12 32 | msgid "" 33 | "It is important to note that modules in the :mod:`xml` package require that " 34 | "there be at least one SAX-compliant XML parser available. Starting with " 35 | "Python 2.3, the Expat parser is included with Python, so the :mod:`xml." 36 | "parsers.expat` module will always be available. You may still want to be " 37 | "aware of the `PyXML add-on package `_; that " 38 | "package provides an extended set of XML libraries for Python." 39 | msgstr "" 40 | 41 | #: ../Doc/library/markup.rst:19 42 | msgid "" 43 | "The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the " 44 | "definition of the Python bindings for the DOM and SAX interfaces." 45 | msgstr "" 46 | -------------------------------------------------------------------------------- /3.5/library/dummy_threading.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001-2016, Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.5\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-10-30 10:42+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../Doc/library/dummy_threading.rst:2 20 | msgid "" 21 | ":mod:`dummy_threading` --- Drop-in replacement for the :mod:`threading` " 22 | "module" 23 | msgstr "" 24 | 25 | #: ../Doc/library/dummy_threading.rst:7 26 | msgid "**Source code:** :source:`Lib/dummy_threading.py`" 27 | msgstr "**Code source :** :source:`Lib/dummy_threading.py`" 28 | 29 | #: ../Doc/library/dummy_threading.rst:11 30 | msgid "" 31 | "This module provides a duplicate interface to the :mod:`threading` module. " 32 | "It is meant to be imported when the :mod:`_thread` module is not provided on " 33 | "a platform." 34 | msgstr "" 35 | 36 | #: ../Doc/library/dummy_threading.rst:15 37 | msgid "Suggested usage is::" 38 | msgstr "Utilisation suggérée : " 39 | 40 | #: ../Doc/library/dummy_threading.rst:22 41 | msgid "" 42 | "Be careful to not use this module where deadlock might occur from a thread " 43 | "being created that blocks waiting for another thread to be created. This " 44 | "often occurs with blocking I/O." 45 | msgstr "" 46 | "Soyez prudent de ne pas utiliser ce module lorsqu'un deadlock peut se " 47 | "produire à partir d'un thread en cours de création qui bloque en attentant " 48 | "qu'un autre thread soit créé. Cela se produit souvent avec des I/O bloquants." 49 | --------------------------------------------------------------------------------