1 | # Author: Marcelo Huerta San Martin |
---|
2 | # Contact: richieadler@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 | Esperanto-language mappings for language-dependent features of Docutils. |
---|
14 | """ |
---|
15 | |
---|
16 | __docformat__ = 'reStructuredText' |
---|
17 | |
---|
18 | labels = { |
---|
19 | # fixed: language-dependent |
---|
20 | 'author': u'A\u016dtoro', |
---|
21 | 'authors': u'A\u016dtoroj', |
---|
22 | 'organization': u'Organizo', |
---|
23 | 'address': u'Adreso', |
---|
24 | 'contact': u'Kontakto', |
---|
25 | 'version': u'Versio', |
---|
26 | 'revision': u'Revido', |
---|
27 | 'status': u'Stato', |
---|
28 | 'date': u'Dato', |
---|
29 | # 'copyright': u'Kopirajto', |
---|
30 | 'copyright': u'A\u016dtorrajto', |
---|
31 | 'dedication': u'Dedi\u0109o', |
---|
32 | 'abstract': u'Resumo', |
---|
33 | 'attention': u'Atentu!', |
---|
34 | 'caution': u'Zorgu!', |
---|
35 | 'danger': u'DAN\u011cERO!', |
---|
36 | 'error': u'Eraro', |
---|
37 | 'hint': u'Spuro', |
---|
38 | 'important': u'Grava', |
---|
39 | 'note': u'Noto', |
---|
40 | 'tip': u'Helpeto', |
---|
41 | 'warning': u'Averto', |
---|
42 | 'contents': u'Enhavo'} |
---|
43 | """Mapping of node class name to label text.""" |
---|
44 | |
---|
45 | bibliographic_fields = { |
---|
46 | # language-dependent: fixed |
---|
47 | 'a\u016dtoro': 'author', |
---|
48 | 'a\u016dtoroj': 'authors', |
---|
49 | 'organizo': 'organization', |
---|
50 | 'adreso': 'address', |
---|
51 | 'kontakto': 'contact', |
---|
52 | 'versio': 'version', |
---|
53 | 'revido': 'revision', |
---|
54 | 'stato': 'status', |
---|
55 | 'dato': 'date', |
---|
56 | 'a\u016dtorrajto': 'copyright', |
---|
57 | 'dedi\u0109o': 'dedication', |
---|
58 | 'resumo': 'abstract'} |
---|
59 | """Esperanto (lowcased) to canonical name mapping for bibliographic fields.""" |
---|
60 | |
---|
61 | author_separators = [';', ','] |
---|
62 | """List of separator strings for the 'Authors' bibliographic field. Tried in |
---|
63 | order.""" |
---|