1 | # Author: Martijn Pieters |
---|
2 | # Contact: mjpieters@users.sourceforge.net |
---|
3 | # Revision: $Revision: 3058 $ |
---|
4 | # Date: $Date: 2005-03-18 21:09:22 +0100 (Fri, 18 Mar 2005) $ |
---|
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 | Dutch-language mappings for language-dependent features of Docutils. |
---|
14 | """ |
---|
15 | |
---|
16 | __docformat__ = 'reStructuredText' |
---|
17 | |
---|
18 | labels = { |
---|
19 | # fixed: language-dependent |
---|
20 | 'author': 'Auteur', |
---|
21 | 'authors': 'Auteurs', |
---|
22 | 'organization': 'Organisatie', |
---|
23 | 'address': 'Adres', |
---|
24 | 'contact': 'Contact', |
---|
25 | 'version': 'Versie', |
---|
26 | 'revision': 'Revisie', |
---|
27 | 'status': 'Status', |
---|
28 | 'date': 'Datum', |
---|
29 | 'copyright': 'Copyright', |
---|
30 | 'dedication': 'Toewijding', |
---|
31 | 'abstract': 'Samenvatting', |
---|
32 | 'attention': 'Attentie!', |
---|
33 | 'caution': 'Let op!', |
---|
34 | 'danger': '!GEVAAR!', |
---|
35 | 'error': 'Fout', |
---|
36 | 'hint': 'Hint', |
---|
37 | 'important': 'Belangrijk', |
---|
38 | 'note': 'Opmerking', |
---|
39 | 'tip': 'Tip', |
---|
40 | 'warning': 'Waarschuwing', |
---|
41 | 'contents': 'Inhoud'} |
---|
42 | """Mapping of node class name to label text.""" |
---|
43 | |
---|
44 | bibliographic_fields = { |
---|
45 | # language-dependent: fixed |
---|
46 | 'auteur': 'author', |
---|
47 | 'auteurs': 'authors', |
---|
48 | 'organisatie': 'organization', |
---|
49 | 'adres': 'address', |
---|
50 | 'contact': 'contact', |
---|
51 | 'versie': 'version', |
---|
52 | 'revisie': 'revision', |
---|
53 | 'status': 'status', |
---|
54 | 'datum': 'date', |
---|
55 | 'copyright': 'copyright', |
---|
56 | 'toewijding': 'dedication', |
---|
57 | 'samenvatting': 'abstract'} |
---|
58 | """Dutch (lowcased) to canonical name mapping for bibliographic fields.""" |
---|
59 | |
---|
60 | author_separators = [';', ','] |
---|
61 | """List of separator strings for the 'Authors' bibliographic field. Tried in |
---|
62 | order.""" |
---|