1 | # Authors: David Goodger; Gunnar Schwant |
---|
2 | # Contact: goodger@users.sourceforge.net |
---|
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 | German language mappings for language-dependent features of Docutils. |
---|
14 | """ |
---|
15 | |
---|
16 | __docformat__ = 'reStructuredText' |
---|
17 | |
---|
18 | labels = { |
---|
19 | 'author': 'Autor', |
---|
20 | 'authors': 'Autoren', |
---|
21 | 'organization': 'Organisation', |
---|
22 | 'address': 'Adresse', |
---|
23 | 'contact': 'Kontakt', |
---|
24 | 'version': 'Version', |
---|
25 | 'revision': 'Revision', |
---|
26 | 'status': 'Status', |
---|
27 | 'date': 'Datum', |
---|
28 | 'dedication': 'Widmung', |
---|
29 | 'copyright': 'Copyright', |
---|
30 | 'abstract': 'Zusammenfassung', |
---|
31 | 'attention': 'Achtung!', |
---|
32 | 'caution': 'Vorsicht!', |
---|
33 | 'danger': '!GEFAHR!', |
---|
34 | 'error': 'Fehler', |
---|
35 | 'hint': 'Hinweis', |
---|
36 | 'important': 'Wichtig', |
---|
37 | 'note': 'Bemerkung', |
---|
38 | 'tip': 'Tipp', |
---|
39 | 'warning': 'Warnung', |
---|
40 | 'contents': 'Inhalt'} |
---|
41 | """Mapping of node class name to label text.""" |
---|
42 | |
---|
43 | bibliographic_fields = { |
---|
44 | 'autor': 'author', |
---|
45 | 'autoren': 'authors', |
---|
46 | 'organisation': 'organization', |
---|
47 | 'adresse': 'address', |
---|
48 | 'kontakt': 'contact', |
---|
49 | 'version': 'version', |
---|
50 | 'revision': 'revision', |
---|
51 | 'status': 'status', |
---|
52 | 'datum': 'date', |
---|
53 | 'copyright': 'copyright', |
---|
54 | 'widmung': 'dedication', |
---|
55 | 'zusammenfassung': 'abstract'} |
---|
56 | """German (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.""" |
---|