1 | # Author: Miroslav Vasko |
---|
2 | # Contact: zemiak@zoznam.sk |
---|
3 | # Revision: $Revision: 4229 $ |
---|
4 | # Date: $Date: 2005-12-23 00:46:16 +0100 (Fri, 23 Dec 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 | Slovak-language mappings for language-dependent features of |
---|
14 | reStructuredText. |
---|
15 | """ |
---|
16 | |
---|
17 | __docformat__ = 'reStructuredText' |
---|
18 | |
---|
19 | |
---|
20 | directives = { |
---|
21 | u'pozor': 'attention', |
---|
22 | u'opatrne': 'caution', |
---|
23 | u'nebezpe\xe8enstvo': 'danger', |
---|
24 | u'chyba': 'error', |
---|
25 | u'rada': 'hint', |
---|
26 | u'd\xf4le\x9eit\xe9': 'important', |
---|
27 | u'pozn\xe1mka': 'note', |
---|
28 | u'tip (translation required)': 'tip', |
---|
29 | u'varovanie': 'warning', |
---|
30 | u'admonition (translation required)': 'admonition', |
---|
31 | u'sidebar (translation required)': 'sidebar', |
---|
32 | u't\xe9ma': 'topic', |
---|
33 | u'blok-riadkov': 'line-block', |
---|
34 | u'parsed-literal': 'parsed-literal', |
---|
35 | u'rubric (translation required)': 'rubric', |
---|
36 | u'epigraph (translation required)': 'epigraph', |
---|
37 | u'highlights (translation required)': 'highlights', |
---|
38 | u'pull-quote (translation required)': 'pull-quote', |
---|
39 | u'compound (translation required)': 'compound', |
---|
40 | u'container (translation required)': 'container', |
---|
41 | #u'questions': 'questions', |
---|
42 | #u'qa': 'questions', |
---|
43 | #u'faq': 'questions', |
---|
44 | u'table (translation required)': 'table', |
---|
45 | u'csv-table (translation required)': 'csv-table', |
---|
46 | u'list-table (translation required)': 'list-table', |
---|
47 | u'meta': 'meta', |
---|
48 | #u'imagemap': 'imagemap', |
---|
49 | u'obr\xe1zok': 'image', |
---|
50 | u'tvar': 'figure', |
---|
51 | u'vlo\x9ei\x9d': 'include', |
---|
52 | u'raw (translation required)': 'raw', |
---|
53 | u'nahradi\x9d': 'replace', |
---|
54 | u'unicode': 'unicode', |
---|
55 | u'd\u00E1tum': 'date', |
---|
56 | u'class (translation required)': 'class', |
---|
57 | u'role (translation required)': 'role', |
---|
58 | u'default-role (translation required)': 'default-role', |
---|
59 | u'title (translation required)': 'title', |
---|
60 | u'obsah': 'contents', |
---|
61 | u'\xe8as\x9d': 'sectnum', |
---|
62 | u'\xe8as\x9d-\xe8\xedslovanie': 'sectnum', |
---|
63 | u'cie\xbeov\xe9-pozn\xe1mky': 'target-notes', |
---|
64 | u'header (translation required)': 'header', |
---|
65 | u'footer (translation required)': 'footer', |
---|
66 | #u'footnotes': 'footnotes', |
---|
67 | #u'citations': 'citations', |
---|
68 | } |
---|
69 | """Slovak name to registered (in directives/__init__.py) directive name |
---|
70 | mapping.""" |
---|
71 | |
---|
72 | roles = { |
---|
73 | u'abbreviation (translation required)': 'abbreviation', |
---|
74 | u'acronym (translation required)': 'acronym', |
---|
75 | u'index (translation required)': 'index', |
---|
76 | u'subscript (translation required)': 'subscript', |
---|
77 | u'superscript (translation required)': 'superscript', |
---|
78 | u'title-reference (translation required)': 'title-reference', |
---|
79 | u'pep-reference (translation required)': 'pep-reference', |
---|
80 | u'rfc-reference (translation required)': 'rfc-reference', |
---|
81 | u'emphasis (translation required)': 'emphasis', |
---|
82 | u'strong (translation required)': 'strong', |
---|
83 | u'literal (translation required)': 'literal', |
---|
84 | u'named-reference (translation required)': 'named-reference', |
---|
85 | u'anonymous-reference (translation required)': 'anonymous-reference', |
---|
86 | u'footnote-reference (translation required)': 'footnote-reference', |
---|
87 | u'citation-reference (translation required)': 'citation-reference', |
---|
88 | u'substitution-reference (translation required)': 'substitution-reference', |
---|
89 | u'target (translation required)': 'target', |
---|
90 | u'uri-reference (translation required)': 'uri-reference', |
---|
91 | u'raw (translation required)': 'raw',} |
---|
92 | """Mapping of Slovak role names to canonical role names for interpreted text. |
---|
93 | """ |
---|