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