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