summaryrefslogtreecommitdiff
path: root/docs/_locale/fr/LC_MESSAGES/changelog.po
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_locale/fr/LC_MESSAGES/changelog.po')
-rw-r--r--docs/_locale/fr/LC_MESSAGES/changelog.po1014
1 files changed, 1014 insertions, 0 deletions
diff --git a/docs/_locale/fr/LC_MESSAGES/changelog.po b/docs/_locale/fr/LC_MESSAGES/changelog.po
new file mode 100644
index 0000000..f831354
--- /dev/null
+++ b/docs/_locale/fr/LC_MESSAGES/changelog.po
@@ -0,0 +1,1014 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2009-2020, Marcel Hellkamp
+# This file is distributed under the same license as the Bottle package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: bottle\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-12-31 18:35+0100\n"
+"PO-Revision-Date: 2020-12-31 17:35+0000\n"
+"Last-Translator: defnull <marc@gsites.de>\n"
+"Language-Team: French (http://www.transifex.com/bottle/bottle/language/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: ../../changelog.rst:6
+msgid "Release Notes and Changelog"
+msgstr ""
+
+#: ../../changelog.rst:9
+msgid "Release 0.13"
+msgstr ""
+
+#: ../../changelog.rst:11
+msgid "Not released yet."
+msgstr ""
+
+#: ../../changelog.rst:14
+msgid "Dropped support for Python versions that reached their end-of-life."
+msgstr ""
+
+#: ../../changelog.rst:15
+msgid ""
+"Keeping up support for ancient Python versions hinders adaptation of new "
+"features and serves no real purpose. If you need support for older Python "
+"versions, you can stay on bottle-0.12. The updated list of tested and "
+"supported python releases is as follows:"
+msgstr ""
+
+#: ../../changelog.rst:20
+msgid "Python 2.7 (>= 2.7.3)"
+msgstr ""
+
+#: ../../changelog.rst:21
+msgid "Python 3.6"
+msgstr ""
+
+#: ../../changelog.rst:22
+msgid "Python 3.7"
+msgstr ""
+
+#: ../../changelog.rst:23
+msgid "Python 3.8"
+msgstr ""
+
+#: ../../changelog.rst:24
+msgid "Python 3.9"
+msgstr ""
+
+#: ../../changelog.rst:25
+msgid "PyPy 2.7"
+msgstr ""
+
+#: ../../changelog.rst:26
+msgid "PyPy 3.6"
+msgstr ""
+
+#: ../../changelog.rst:27
+msgid "PyPy 3.7"
+msgstr ""
+
+#: ../../changelog.rst:29
+msgid ""
+"Support for Python 2.5 was marked as deprecated since 0.12. We decided to go"
+" a step further and also remove support for 2.6 and 3.1 to 3.5 even if it "
+"was never deprecated explicitly in bottle. This means that this release is "
+"*not* backwards compatible in Python <2.7.3 or <3.6 environments. "
+"Maintainers for distributions or systems that still use these old python "
+"versions should not update to Bottle 0.13 and stick with 0.12 instead."
+msgstr ""
+
+#: ../../changelog.rst:35
+msgid "Stabilized APIs"
+msgstr ""
+
+#: ../../changelog.rst:36
+msgid ""
+"The documented API of the :class:`ConfigDict` class is now considered stable"
+" and ready to use."
+msgstr ""
+
+#: ../../changelog.rst:38
+msgid "Deprecated APIs"
+msgstr ""
+
+#: ../../changelog.rst:39
+msgid ""
+"The old route syntax (``/hello/:name``) is deprecated in favor of the more "
+"readable and flexible ``/hello/<name>`` syntax."
+msgstr ""
+
+#: ../../changelog.rst:40
+msgid ""
+":meth:`Bottle.mount` now recognizes Bottle instance and will warn about "
+"parameters that are not compatible with the new mounting behavior. The old "
+"behavior (mount applications as WSGI callable) still works and is used as a "
+"fallback automatically."
+msgstr ""
+
+#: ../../changelog.rst:41
+msgid "The undocumented :func:`local_property` helper is now deprecated."
+msgstr ""
+
+#: ../../changelog.rst:42
+msgid ""
+"The server adapter for google app engine is not useful anymore and marked as"
+" deprecated."
+msgstr ""
+
+#: ../../changelog.rst:43
+msgid ""
+"Bottle uses pickle to store arbitrary objects into signed cookies. This is "
+"safe, as long as the signature key remains a secret. Unfortunately, people "
+"tend to push code with signature keys to github all the time, so we decided "
+"to remove pickle-support from bottle. Signed cookies will now issue a "
+"deprecation warning if the value is not a string, and support for non-string"
+" values will be removed in 0.14. The global :func:`cookie_encode`, "
+":func:`cookie_decode` and :func:`is_cookie_encoded` are now also deprecated."
+" If you are using this feature, think about using json to serialize your "
+"objects before storing them into cookies, or switch to a session system that"
+" stores data server-side instead of client-side."
+msgstr ""
+
+#: ../../changelog.rst:45
+msgid "Removed APIs (deprecated since 0.12)"
+msgstr ""
+
+#: ../../changelog.rst:46
+msgid ""
+"Plugins with the old API (``api=1`` or no api attribute) will no longer "
+"work."
+msgstr ""
+
+#: ../../changelog.rst:47
+msgid ""
+"Parameter order of :meth:`Bottle.mount` changed in 0.10. The old order will "
+"now result in an error instead of a warning."
+msgstr ""
+
+#: ../../changelog.rst:48
+msgid ""
+"The :class:`ConfigDict` class was introduced in 0.11 and changed during "
+"0.12. These changes are now final."
+msgstr ""
+
+#: ../../changelog.rst:50
+msgid ""
+"Attribute access and assignment was removed due to high overhead and limited"
+" usability."
+msgstr ""
+
+#: ../../changelog.rst:51
+msgid ""
+"Namespaced sub-instance creation was removed. ``config[\"a\"][\"b\"]`` has a"
+" high overhead and little benefit over ``config[\"a.b\"]``."
+msgstr ""
+
+#: ../../changelog.rst:52
+msgid ""
+":class:`ConfigDict` instances are no longer callable. This was a shortcut "
+"for :meth:`ConfigDict.update`."
+msgstr ""
+
+#: ../../changelog.rst:53
+msgid ""
+":class:`ConfigDict` constructor no longer accepts any parameters. Use the "
+"`load_*` methods instead."
+msgstr ""
+
+#: ../../changelog.rst:55
+msgid ""
+"Bottle 0.12 changed some aspects of the Simple Template Engine. These "
+"changes are now final and the old syntax will now longer work."
+msgstr ""
+
+#: ../../changelog.rst:57
+msgid ""
+"The magic ``{{rebase()}}`` call was replaced by a ``base`` variable. "
+"Example: ``{{base}}``"
+msgstr ""
+
+#: ../../changelog.rst:58
+msgid ""
+"In STPL Templates, the 'rebase' and 'include' keywords were replaced with "
+"functions in 0.12."
+msgstr ""
+
+#: ../../changelog.rst:59
+msgid ""
+"PEP-263 encoding strings are no longer recognized. Templates are always "
+"utf-8."
+msgstr ""
+
+#: ../../changelog.rst:61
+msgid ""
+"The 'geventSocketIO' server adapter was removed without notice. It did not "
+"work anyway."
+msgstr ""
+
+#: ../../changelog.rst:63
+msgid "Changes"
+msgstr ""
+
+#: ../../changelog.rst:64
+msgid "These changes might require special care when updating."
+msgstr ""
+
+#: ../../changelog.rst:66
+msgid ""
+"Signed cookies now use a stronger HMAC algorithm by default. This will "
+"result in old cookies to appear invalid after the update. Pass an explicit "
+"``digestmod=hashlib.md5`` to :meth:`Request.get_cookie` and "
+":meth:`Response.set_cookie` to get the old behavior."
+msgstr ""
+
+#: ../../changelog.rst:68
+msgid "Other Improvements"
+msgstr ""
+
+#: ../../changelog.rst:69
+msgid ""
+"Bottle() instances are now context managers. If used in a with-statement, "
+"the default application changes to the specific instance and the shortcuts "
+"for many instance methods can be used."
+msgstr ""
+
+#: ../../changelog.rst:70
+msgid ""
+"Added support for ``PATCH`` requests and the :meth:`Bottle.patch` decorator."
+msgstr ""
+
+#: ../../changelog.rst:71
+msgid ""
+"Added `aiohttp <http://aiohttp.readthedocs.io/en/stable/>`_ and `uvloop "
+"<https://github.com/MagicStack/uvloop>`_ server adapters."
+msgstr ""
+
+#: ../../changelog.rst:72
+msgid "Added command-line arguments for config from json or ini files."
+msgstr ""
+
+#: ../../changelog.rst:73
+msgid ""
+":meth:`Bottle.mount` now recognizes instances of :class:`Bottle` and mounts "
+"them with significantly less overhead than other WSGI applications."
+msgstr ""
+
+#: ../../changelog.rst:74
+msgid ""
+"The :attr:`Request.json` property now accepts ``application/json-rpc`` "
+"requests."
+msgstr ""
+
+#: ../../changelog.rst:75
+msgid ""
+":func:`static_file` gained support for ``ETag`` headers. It will generate "
+"ETags and recognizes ``If-None-Match`` headers."
+msgstr ""
+
+#: ../../changelog.rst:76
+msgid "Jinja2 templates will produce better error messages than before."
+msgstr ""
+
+#: ../../changelog.rst:82
+msgid "Release 0.12"
+msgstr ""
+
+#: ../../changelog.rst:84
+msgid "New SimpleTemplate parser implementation"
+msgstr ""
+
+#: ../../changelog.rst:86
+msgid "Support for multi-line code blocks (`<% ... %>`)."
+msgstr ""
+
+#: ../../changelog.rst:87
+msgid ""
+"The keywords `include` and `rebase` are functions now and can accept "
+"variable template names."
+msgstr ""
+
+#: ../../changelog.rst:89
+msgid ""
+"The new :attr:`BaseRequest.route` property returns the :class:`Route` that "
+"originally matched the request."
+msgstr ""
+
+#: ../../changelog.rst:90
+msgid ""
+"Removed the ``BaseRequest.MAX_PARAMS`` limit. The hash collision bug in "
+"CPythons dict() implementation was fixed over a year ago. If you are still "
+"using Python 2.5 in production, consider upgrading or at least make sure "
+"that you get security fixed from your distributor."
+msgstr ""
+
+#: ../../changelog.rst:91
+msgid "New :class:`ConfigDict` API (see :doc:`configuration`)"
+msgstr ""
+
+#: ../../changelog.rst:93
+msgid ""
+"More information can be found in this `development blog post "
+"<http://blog.bottlepy.org/2013/07/19/preview-bottle-012.html>`_."
+msgstr ""
+
+#: ../../changelog.rst:97
+msgid "Release 0.11"
+msgstr ""
+
+#: ../../changelog.rst:99
+msgid ""
+"Native support for Python 2.x and 3.x syntax. No need to run 2to3 anymore."
+msgstr ""
+
+#: ../../changelog.rst:100
+msgid ""
+"Support for partial downloads (``Range`` header) in :func:`static_file`."
+msgstr ""
+
+#: ../../changelog.rst:101
+msgid ""
+"The new :class:`ResourceManager` interface helps locating files bundled with"
+" an application."
+msgstr ""
+
+#: ../../changelog.rst:102
+msgid ""
+"Added a server adapter for `waitress "
+"<http://docs.pylonsproject.org/projects/waitress/en/latest/>`_."
+msgstr ""
+
+#: ../../changelog.rst:103
+msgid ""
+"New :meth:`Bottle.merge` method to install all routes from one application "
+"into another."
+msgstr ""
+
+#: ../../changelog.rst:104
+msgid ""
+"New :attr:`BaseRequest.app` property to get the application object that "
+"handles a request."
+msgstr ""
+
+#: ../../changelog.rst:105
+msgid ""
+"Added :meth:`FormsDict.decode()` to get an all-unicode version (needed by "
+"WTForms)."
+msgstr ""
+
+#: ../../changelog.rst:106
+msgid ":class:`MultiDict` and subclasses are now pickle-able."
+msgstr ""
+
+#: ../../changelog.rst:109
+msgid "API Changes"
+msgstr ""
+
+#: ../../changelog.rst:110
+msgid ""
+":attr:`Response.status` is a read-write property that can be assigned either"
+" a numeric status code or a status string with a reason phrase (``200 OK``)."
+" The return value is now a string to better match existing APIs (WebOb, "
+"werkzeug). To be absolutely clear, you can use the read-only properties "
+":attr:`BaseResponse.status_code` and :attr:`BaseResponse.status_line`."
+msgstr ""
+
+#: ../../changelog.rst:113
+msgid "API Deprecations"
+msgstr ""
+
+#: ../../changelog.rst:114
+msgid ""
+":class:`SimpleTALTemplate` is now deprecating. There seems to be no demand."
+msgstr ""
+
+#: ../../changelog.rst:117
+msgid "Release 0.10"
+msgstr ""
+
+#: ../../changelog.rst:119
+msgid "Plugin API v2"
+msgstr ""
+
+#: ../../changelog.rst:121
+msgid "To use the new API, set :attr:`Plugin.api` to ``2``."
+msgstr ""
+
+#: ../../changelog.rst:122
+msgid ""
+":meth:`Plugin.apply` receives a :class:`Route` object instead of a context "
+"dictionary as second parameter. The new object offers some additional "
+"information and may be extended in the future."
+msgstr ""
+
+#: ../../changelog.rst:123
+msgid ""
+"Plugin names are considered unique now. The topmost plugin with a given name"
+" on a given route is installed, all other plugins with the same name are "
+"silently ignored."
+msgstr ""
+
+#: ../../changelog.rst:125
+msgid "The Request/Response Objects"
+msgstr ""
+
+#: ../../changelog.rst:127
+msgid ""
+"Added :attr:`BaseRequest.json`, :attr:`BaseRequest.remote_route`, "
+":attr:`BaseRequest.remote_addr`, :attr:`BaseRequest.query` and "
+":attr:`BaseRequest.script_name`."
+msgstr ""
+
+#: ../../changelog.rst:128
+msgid ""
+"Added :attr:`BaseResponse.status_line` and :attr:`BaseResponse.status_code` "
+"attributes. In future releases, :attr:`BaseResponse.status` will return a "
+"string (e.g. ``200 OK``) instead of an integer to match the API of other "
+"common frameworks. To make the transition as smooth as possible, you should "
+"use the verbose attributes from now on."
+msgstr ""
+
+#: ../../changelog.rst:129
+msgid ""
+"Replaced :class:`MultiDict` with a specialized :class:`FormsDict` in many "
+"places. The new dict implementation allows attribute access and handles "
+"unicode form values transparently."
+msgstr ""
+
+#: ../../changelog.rst:131
+msgid "Templates"
+msgstr ""
+
+#: ../../changelog.rst:133
+msgid ""
+"Added three new functions to the SimpleTemplate default namespace that "
+"handle undefined variables: :func:`stpl.defined`, :func:`stpl.get` and "
+":func:`stpl.setdefault`."
+msgstr ""
+
+#: ../../changelog.rst:134
+msgid ""
+"The default escape function for SimpleTemplate now additionally escapes "
+"single and double quotes."
+msgstr ""
+
+#: ../../changelog.rst:136
+msgid "Routing"
+msgstr ""
+
+#: ../../changelog.rst:138
+msgid ""
+"A new route syntax (e.g. ``/object/<id:int>``) and support for route "
+"wildcard filters."
+msgstr ""
+
+#: ../../changelog.rst:139
+msgid "Four new wildcard filters: `int`, `float`, `path` and `re`."
+msgstr ""
+
+#: ../../changelog.rst:141
+msgid "Other changes"
+msgstr ""
+
+#: ../../changelog.rst:143
+msgid "Added command line interface to load applications and start servers."
+msgstr ""
+
+#: ../../changelog.rst:144
+msgid ""
+"Introduced a :class:`ConfigDict` that makes accessing configuration a lot "
+"easier (attribute access and auto-expanding namespaces)."
+msgstr ""
+
+#: ../../changelog.rst:145
+msgid "Added support for raw WSGI applications to :meth:`Bottle.mount`."
+msgstr ""
+
+#: ../../changelog.rst:146
+msgid ":meth:`Bottle.mount` parameter order changed."
+msgstr ""
+
+#: ../../changelog.rst:147
+msgid ""
+":meth:`Bottle.route` now accpets an import string for the ``callback`` "
+"parameter."
+msgstr ""
+
+#: ../../changelog.rst:148
+msgid "Dropped Gunicorn 0.8 support. Current supported version is 0.13."
+msgstr ""
+
+#: ../../changelog.rst:149
+msgid "Added custom options to Gunicorn server."
+msgstr ""
+
+#: ../../changelog.rst:150
+msgid ""
+"Finally dropped support for type filters. Replace with a custom plugin of "
+"needed."
+msgstr ""
+
+#: ../../changelog.rst:154
+msgid "Release 0.9"
+msgstr ""
+
+#: ../../changelog.rst:157
+msgid "Whats new?"
+msgstr ""
+
+#: ../../changelog.rst:158
+msgid ""
+"A brand new plugin-API. See :ref:`plugins` and :doc:`plugindev` for details."
+msgstr ""
+
+#: ../../changelog.rst:159
+msgid ""
+"The :func:`route` decorator got a lot of new features. See "
+":meth:`Bottle.route` for details."
+msgstr ""
+
+#: ../../changelog.rst:160
+msgid ""
+"New server adapters for `gevent <http://www.gevent.org/>`_, `meinheld "
+"<http://meinheld.org/>`_ and `bjoern "
+"<https://github.com/jonashaag/bjoern>`_."
+msgstr ""
+
+#: ../../changelog.rst:161
+msgid "Support for SimpleTAL templates."
+msgstr ""
+
+#: ../../changelog.rst:162
+msgid "Better runtime exception handling for mako templates in debug mode."
+msgstr ""
+
+#: ../../changelog.rst:163
+msgid "Lots of documentation, fixes and small improvements."
+msgstr ""
+
+#: ../../changelog.rst:164
+msgid "A new :data:`Request.urlparts` property."
+msgstr ""
+
+#: ../../changelog.rst:167
+msgid "Performance improvements"
+msgstr ""
+
+#: ../../changelog.rst:168
+msgid ""
+"The :class:`Router` now special-cases ``wsgi.run_once`` environments to "
+"speed up CGI."
+msgstr ""
+
+#: ../../changelog.rst:169
+msgid ""
+"Reduced module load time by ~30% and optimized template parser. See `8ccb2d "
+"</commit/8ccb2d>`_, `f72a7c </commit/f72a7c>`_ and `b14b9a "
+"</commit/b14b9a>`_ for details."
+msgstr ""
+
+#: ../../changelog.rst:170
+msgid ""
+"Support for \"App Caching\" on Google App Engine. See `af93ec "
+"</commit/af93ec>`_."
+msgstr ""
+
+#: ../../changelog.rst:171
+msgid ""
+"Some of the rarely used or deprecated features are now plugins that avoid "
+"overhead if the feature is not used."
+msgstr ""
+
+#: ../../changelog.rst:174 ../../changelog.rst:185
+msgid "API changes"
+msgstr ""
+
+#: ../../changelog.rst:175
+msgid ""
+"This release is mostly backward compatible, but some APIs are marked "
+"deprecated now and will be removed for the next release. Most noteworthy:"
+msgstr ""
+
+#: ../../changelog.rst:177
+msgid ""
+"The ``static`` route parameter is deprecated. You can escape wild-cards with"
+" a backslash."
+msgstr ""
+
+#: ../../changelog.rst:178
+msgid ""
+"Type-based output filters are deprecated. They can easily be replaced with "
+"plugins."
+msgstr ""
+
+#: ../../changelog.rst:182
+msgid "Release 0.8"
+msgstr ""
+
+#: ../../changelog.rst:186
+msgid "These changes may break compatibility with previous versions."
+msgstr ""
+
+#: ../../changelog.rst:188
+msgid ""
+"The built-in Key/Value database is not available anymore. It is marked "
+"deprecated since 0.6.4"
+msgstr ""
+
+#: ../../changelog.rst:189
+msgid "The Route syntax and behaviour changed."
+msgstr ""
+
+#: ../../changelog.rst:191
+msgid ""
+"Regular expressions must be encapsulated with ``#``. In 0.6 all non-"
+"alphanumeric characters not present in the regular expression were allowed."
+msgstr ""
+
+#: ../../changelog.rst:192
+msgid ""
+"Regular expressions not part of a route wildcard are escaped automatically. "
+"You don't have to escape dots or other regular control characters anymore. "
+"In 0.6 the whole URL was interpreted as a regular expression. You can use "
+"anonymous wildcards (``/index:#(\\.html)?#``) to achieve a similar "
+"behaviour."
+msgstr ""
+
+#: ../../changelog.rst:194
+msgid ""
+"The ``BreakTheBottle`` exception is gone. Use :class:`HTTPResponse` instead."
+msgstr ""
+
+#: ../../changelog.rst:195
+msgid ""
+"The :class:`SimpleTemplate` engine escapes HTML special characters in "
+"``{{bad_html}}`` expressions automatically. Use the new ``{{!good_html}}`` "
+"syntax to get old behaviour (no escaping)."
+msgstr ""
+
+#: ../../changelog.rst:196
+msgid ""
+"The :class:`SimpleTemplate` engine returns unicode strings instead of lists "
+"of byte strings."
+msgstr ""
+
+#: ../../changelog.rst:197
+msgid ""
+"``bottle.optimize()`` and the automatic route optimization is obsolete."
+msgstr ""
+
+#: ../../changelog.rst:198
+msgid "Some functions and attributes were renamed:"
+msgstr ""
+
+#: ../../changelog.rst:200
+msgid ":attr:`Request._environ` is now :attr:`Request.environ`"
+msgstr ""
+
+#: ../../changelog.rst:201
+msgid ":attr:`Response.header` is now :attr:`Response.headers`"
+msgstr ""
+
+#: ../../changelog.rst:202
+msgid ":func:`default_app` is obsolete. Use :func:`app` instead."
+msgstr ""
+
+#: ../../changelog.rst:204
+msgid "The default :func:`redirect` code changed from 307 to 303."
+msgstr ""
+
+#: ../../changelog.rst:205
+msgid "Removed support for ``@default``. Use ``@error(404)`` instead."
+msgstr ""
+
+#: ../../changelog.rst:209
+msgid "New features"
+msgstr ""
+
+#: ../../changelog.rst:210
+msgid "This is an incomplete list of new features and improved functionality."
+msgstr ""
+
+#: ../../changelog.rst:212
+msgid ""
+"The :class:`Request` object got new properties: :attr:`Request.body`, "
+":attr:`Request.auth`, :attr:`Request.url`, :attr:`Request.header`, "
+":attr:`Request.forms`, :attr:`Request.files`."
+msgstr ""
+
+#: ../../changelog.rst:213
+msgid ""
+"The :meth:`Response.set_cookie` and :meth:`Request.get_cookie` methods are "
+"now able to encode and decode python objects. This is called a *secure "
+"cookie* because the encoded values are signed and protected from changes on "
+"client side. All pickle-able data structures are allowed."
+msgstr ""
+
+#: ../../changelog.rst:214
+msgid ""
+"The new :class:`Router` class drastically improves performance for setups "
+"with lots of dynamic routes and supports named routes (named route + dict = "
+"URL string)."
+msgstr ""
+
+#: ../../changelog.rst:215
+msgid ""
+"It is now possible (and recommended) to return :exc:`HTTPError` and "
+":exc:`HTTPResponse` instances or other exception objects instead of raising "
+"them."
+msgstr ""
+
+#: ../../changelog.rst:216
+msgid ""
+"The new function :func:`static_file` equals :func:`send_file` but returns a "
+":exc:`HTTPResponse` or :exc:`HTTPError` instead of raising it. "
+":func:`send_file` is deprecated."
+msgstr ""
+
+#: ../../changelog.rst:217
+msgid ""
+"New :func:`get`, :func:`post`, :func:`put` and :func:`delete` decorators."
+msgstr ""
+
+#: ../../changelog.rst:218
+msgid "The :class:`SimpleTemplate` engine got full unicode support."
+msgstr ""
+
+#: ../../changelog.rst:219
+msgid "Lots of non-critical bugfixes."
+msgstr ""
+
+#: ../../changelog.rst:225
+msgid "Contributors"
+msgstr ""
+
+#: ../../../AUTHORS:1
+msgid ""
+"Bottle is written and maintained by Marcel Hellkamp <marc@bottlepy.org>."
+msgstr ""
+
+#: ../../../AUTHORS:3
+msgid ""
+"Thanks to all the people who found bugs, sent patches, spread the word, "
+"helped each other on the mailing-list and made this project possible. I hope"
+" the following (alphabetically sorted) list is complete. If you miss your "
+"name on that list (or want your name removed) please :doc:`tell me "
+"<contact>` or add it yourself."
+msgstr ""
+
+#: ../../../AUTHORS:5
+msgid "acasajus"
+msgstr ""
+
+#: ../../../AUTHORS:6
+msgid "Adam R. Smith"
+msgstr ""
+
+#: ../../../AUTHORS:7
+msgid "Alexey Borzenkov"
+msgstr ""
+
+#: ../../../AUTHORS:8
+msgid "Alexis Daboville"
+msgstr ""
+
+#: ../../../AUTHORS:9
+msgid "Anton I. Sipos"
+msgstr ""
+
+#: ../../../AUTHORS:10
+msgid "Anton Kolechkin"
+msgstr ""
+
+#: ../../../AUTHORS:11
+msgid "apexi200sx"
+msgstr ""
+
+#: ../../../AUTHORS:12
+msgid "apheage"
+msgstr ""
+
+#: ../../../AUTHORS:13
+msgid "BillMa"
+msgstr ""
+
+#: ../../../AUTHORS:14
+msgid "Brad Greenlee"
+msgstr ""
+
+#: ../../../AUTHORS:15
+msgid "Brandon Gilmore"
+msgstr ""
+
+#: ../../../AUTHORS:16
+msgid "Branko Vukelic"
+msgstr ""
+
+#: ../../../AUTHORS:17
+msgid "Brian Sierakowski"
+msgstr ""
+
+#: ../../../AUTHORS:18
+msgid "Brian Wickman"
+msgstr ""
+
+#: ../../../AUTHORS:19
+msgid "Carl Scharenberg"
+msgstr ""
+
+#: ../../../AUTHORS:20
+msgid "Damien Degois"
+msgstr ""
+
+#: ../../../AUTHORS:21
+msgid "David Buxton"
+msgstr ""
+
+#: ../../../AUTHORS:22
+msgid "Duane Johnson"
+msgstr ""
+
+#: ../../../AUTHORS:23
+msgid "fcamel"
+msgstr ""
+
+#: ../../../AUTHORS:24
+msgid "Frank Murphy"
+msgstr ""
+
+#: ../../../AUTHORS:25
+msgid "Frederic Junod"
+msgstr ""
+
+#: ../../../AUTHORS:26
+msgid "goldfaber3012"
+msgstr ""
+
+#: ../../../AUTHORS:27
+msgid "Greg Milby"
+msgstr ""
+
+#: ../../../AUTHORS:28
+msgid "gstein"
+msgstr ""
+
+#: ../../../AUTHORS:29
+msgid "Ian Davis"
+msgstr ""
+
+#: ../../../AUTHORS:30
+msgid "Itamar Nabriski"
+msgstr ""
+
+#: ../../../AUTHORS:31
+msgid "Iuri de Silvio"
+msgstr ""
+
+#: ../../../AUTHORS:32
+msgid "Jaimie Murdock"
+msgstr ""
+
+#: ../../../AUTHORS:33
+msgid "Jeff Nichols"
+msgstr ""
+
+#: ../../../AUTHORS:34
+msgid "Jeremy Kelley"
+msgstr ""
+
+#: ../../../AUTHORS:35
+msgid "joegester"
+msgstr ""
+
+#: ../../../AUTHORS:36
+msgid "Johannes Krampf"
+msgstr ""
+
+#: ../../../AUTHORS:37
+msgid "Jonas Haag"
+msgstr ""
+
+#: ../../../AUTHORS:38
+msgid "Joshua Roesslein"
+msgstr ""
+
+#: ../../../AUTHORS:39
+msgid "Judson Neer"
+msgstr ""
+
+#: ../../../AUTHORS:40
+msgid "Karl"
+msgstr ""
+
+#: ../../../AUTHORS:41
+msgid "Kevin Zuber"
+msgstr ""
+
+#: ../../../AUTHORS:42
+msgid "Kraken"
+msgstr ""
+
+#: ../../../AUTHORS:43
+msgid "Kyle Fritz"
+msgstr ""
+
+#: ../../../AUTHORS:44
+msgid "m35"
+msgstr ""
+
+#: ../../../AUTHORS:45
+msgid "Marcos Neves"
+msgstr ""
+
+#: ../../../AUTHORS:46
+msgid "masklinn"
+msgstr ""
+
+#: ../../../AUTHORS:47
+msgid "Michael Labbe"
+msgstr ""
+
+#: ../../../AUTHORS:48
+msgid "Michael Soulier"
+msgstr ""
+
+#: ../../../AUTHORS:49
+msgid "`reddit <http://reddit.com/r/python>`_"
+msgstr ""
+
+#: ../../../AUTHORS:50
+msgid "Nicolas Vanhoren"
+msgstr ""
+
+#: ../../../AUTHORS:51
+msgid "Oz N Tiram"
+msgstr ""
+
+#: ../../../AUTHORS:52
+msgid "Robert Rollins"
+msgstr ""
+
+#: ../../../AUTHORS:53
+msgid "rogererens"
+msgstr ""
+
+#: ../../../AUTHORS:54
+msgid "rwxrwx"
+msgstr ""
+
+#: ../../../AUTHORS:55
+msgid "Santiago Gala"
+msgstr ""
+
+#: ../../../AUTHORS:56
+msgid "Sean M. Collins"
+msgstr ""
+
+#: ../../../AUTHORS:57
+msgid "Sebastian Wollrath"
+msgstr ""
+
+#: ../../../AUTHORS:58
+msgid "Seth"
+msgstr ""
+
+#: ../../../AUTHORS:59
+msgid "Sigurd Høgsbro"
+msgstr ""
+
+#: ../../../AUTHORS:60
+msgid "Stuart Rackham"
+msgstr ""
+
+#: ../../../AUTHORS:61
+msgid "Sun Ning"
+msgstr ""
+
+#: ../../../AUTHORS:62
+msgid "Tomás A. Schertel"
+msgstr ""
+
+#: ../../../AUTHORS:63
+msgid "Tristan Zajonc"
+msgstr ""
+
+#: ../../../AUTHORS:64
+msgid "voltron"
+msgstr ""
+
+#: ../../../AUTHORS:65
+msgid "Wieland Hoffmann"
+msgstr ""
+
+#: ../../../AUTHORS:66
+msgid "zombat"
+msgstr ""
+
+#: ../../../AUTHORS:67
+msgid "Thiago Avelino"
+msgstr ""