Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/parsers/rst/languages/sk.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: sk.py 7119 2011-09-02 13:00:23Z milde $ | |
2 # Author: Miroslav Vasko <zemiak@zoznam.sk> | |
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 Slovak-language mappings for language-dependent features of | |
12 reStructuredText. | |
13 """ | |
14 | |
15 __docformat__ = 'reStructuredText' | |
16 | |
17 | |
18 directives = { | |
19 u'pozor': 'attention', | |
20 u'opatrne': 'caution', | |
21 u'code (translation required)': 'code', | |
22 u'nebezpe\xe8enstvo': 'danger', | |
23 u'chyba': 'error', | |
24 u'rada': 'hint', | |
25 u'd\xf4le\x9eit\xe9': 'important', | |
26 u'pozn\xe1mka': 'note', | |
27 u'tip (translation required)': 'tip', | |
28 u'varovanie': 'warning', | |
29 u'admonition (translation required)': 'admonition', | |
30 u'sidebar (translation required)': 'sidebar', | |
31 u't\xe9ma': 'topic', | |
32 u'blok-riadkov': 'line-block', | |
33 u'parsed-literal': 'parsed-literal', | |
34 u'rubric (translation required)': 'rubric', | |
35 u'epigraph (translation required)': 'epigraph', | |
36 u'highlights (translation required)': 'highlights', | |
37 u'pull-quote (translation required)': 'pull-quote', | |
38 u'compound (translation required)': 'compound', | |
39 u'container (translation required)': 'container', | |
40 #u'questions': 'questions', | |
41 #u'qa': 'questions', | |
42 #u'faq': 'questions', | |
43 u'table (translation required)': 'table', | |
44 u'csv-table (translation required)': 'csv-table', | |
45 u'list-table (translation required)': 'list-table', | |
46 u'meta': 'meta', | |
47 'math (translation required)': 'math', | |
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'code (translation required)': 'code', | |
76 u'index (translation required)': 'index', | |
77 u'subscript (translation required)': 'subscript', | |
78 u'superscript (translation required)': 'superscript', | |
79 u'title-reference (translation required)': 'title-reference', | |
80 u'pep-reference (translation required)': 'pep-reference', | |
81 u'rfc-reference (translation required)': 'rfc-reference', | |
82 u'emphasis (translation required)': 'emphasis', | |
83 u'strong (translation required)': 'strong', | |
84 u'literal (translation required)': 'literal', | |
85 'math (translation required)': 'math', | |
86 u'named-reference (translation required)': 'named-reference', | |
87 u'anonymous-reference (translation required)': 'anonymous-reference', | |
88 u'footnote-reference (translation required)': 'footnote-reference', | |
89 u'citation-reference (translation required)': 'citation-reference', | |
90 u'substitution-reference (translation required)': 'substitution-reference', | |
91 u'target (translation required)': 'target', | |
92 u'uri-reference (translation required)': 'uri-reference', | |
93 u'raw (translation required)': 'raw',} | |
94 """Mapping of Slovak role names to canonical role names for interpreted text. | |
95 """ |