Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/fr.py @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
| author | guerler |
|---|---|
| date | Fri, 31 Jul 2020 00:18:57 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:d30785e31577 |
|---|---|
| 1 # $Id: fr.py 4564 2006-05-21 20:44:42Z wiemann $ | |
| 2 # Author: Stefane Fermigier <sf@fermigier.com> | |
| 3 # Copyright: This module has been placed in the public domain. | |
| 4 | |
| 5 # New language mappings are welcome. Before doing a new translation, please | |
| 6 # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be | |
| 7 # translated for each language: one in docutils/languages, the other in | |
| 8 # docutils/parsers/rst/languages. | |
| 9 | |
| 10 """ | |
| 11 French-language mappings for language-dependent features of Docutils. | |
| 12 """ | |
| 13 | |
| 14 __docformat__ = 'reStructuredText' | |
| 15 | |
| 16 labels = { | |
| 17 u'author': u'Auteur', | |
| 18 u'authors': u'Auteurs', | |
| 19 u'organization': u'Organisation', | |
| 20 u'address': u'Adresse', | |
| 21 u'contact': u'Contact', | |
| 22 u'version': u'Version', | |
| 23 u'revision': u'R\u00e9vision', | |
| 24 u'status': u'Statut', | |
| 25 u'date': u'Date', | |
| 26 u'copyright': u'Copyright', | |
| 27 u'dedication': u'D\u00e9dicace', | |
| 28 u'abstract': u'R\u00e9sum\u00e9', | |
| 29 u'attention': u'Attention!', | |
| 30 u'caution': u'Avertissement!', | |
| 31 u'danger': u'!DANGER!', | |
| 32 u'error': u'Erreur', | |
| 33 u'hint': u'Indication', | |
| 34 u'important': u'Important', | |
| 35 u'note': u'Note', | |
| 36 u'tip': u'Astuce', | |
| 37 u'warning': u'Avis', | |
| 38 u'contents': u'Sommaire'} | |
| 39 """Mapping of node class name to label text.""" | |
| 40 | |
| 41 bibliographic_fields = { | |
| 42 u'auteur': u'author', | |
| 43 u'auteurs': u'authors', | |
| 44 u'organisation': u'organization', | |
| 45 u'adresse': u'address', | |
| 46 u'contact': u'contact', | |
| 47 u'version': u'version', | |
| 48 u'r\u00e9vision': u'revision', | |
| 49 u'statut': u'status', | |
| 50 u'date': u'date', | |
| 51 u'copyright': u'copyright', | |
| 52 u'd\u00e9dicace': u'dedication', | |
| 53 u'r\u00e9sum\u00e9': u'abstract'} | |
| 54 """French (lowcased) to canonical name mapping for bibliographic fields.""" | |
| 55 | |
| 56 author_separators = [';', ','] | |
| 57 """List of separator strings for the 'Authors' bibliographic field. Tried in | |
| 58 order.""" |
