1 | # Author: Marek Blaha |
---|
2 | # Contact: mb@dat.cz |
---|
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 | Czech-language mappings for language-dependent features of Docutils. |
---|
14 | """ |
---|
15 | |
---|
16 | __docformat__ = 'reStructuredText' |
---|
17 | |
---|
18 | labels = { |
---|
19 | # fixed: language-dependent |
---|
20 | 'author': u'Autor', |
---|
21 | 'authors': u'Auto\u0159i', |
---|
22 | 'organization': u'Organizace', |
---|
23 | 'address': u'Adresa', |
---|
24 | 'contact': u'Kontakt', |
---|
25 | 'version': u'Verze', |
---|
26 | 'revision': u'Revize', |
---|
27 | 'status': u'Stav', |
---|
28 | 'date': u'Datum', |
---|
29 | 'copyright': u'Copyright', |
---|
30 | 'dedication': u'V\u011Bnov\u00E1n\u00ED', |
---|
31 | 'abstract': u'Abstrakt', |
---|
32 | 'attention': u'Pozor!', |
---|
33 | 'caution': u'Opatrn\u011B!', |
---|
34 | 'danger': u'!NEBEZPE\u010C\u00CD!', |
---|
35 | 'error': u'Chyba', |
---|
36 | 'hint': u'Rada', |
---|
37 | 'important': u'D\u016Fle\u017Eit\u00E9', |
---|
38 | 'note': u'Pozn\u00E1mka', |
---|
39 | 'tip': u'Tip', |
---|
40 | 'warning': u'Varov\u00E1n\u00ED', |
---|
41 | 'contents': u'Obsah'} |
---|
42 | """Mapping of node class name to label text.""" |
---|
43 | |
---|
44 | bibliographic_fields = { |
---|
45 | # language-dependent: fixed |
---|
46 | u'autor': 'author', |
---|
47 | u'auto\u0159i': 'authors', |
---|
48 | u'organizace': 'organization', |
---|
49 | u'adresa': 'address', |
---|
50 | u'kontakt': 'contact', |
---|
51 | u'verze': 'version', |
---|
52 | u'revize': 'revision', |
---|
53 | u'stav': 'status', |
---|
54 | u'datum': 'date', |
---|
55 | u'copyright': 'copyright', |
---|
56 | u'v\u011Bnov\u00E1n\u00ED': 'dedication', |
---|
57 | u'abstrakt': 'abstract'} |
---|
58 | """Czech (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.""" |
---|