comparison env/lib/python3.9/site-packages/docutils/parsers/rst/languages/he.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 # Author: Meir Kriheli
2 # Id: $Id: he.py 7119 2011-09-02 13:00:23Z milde $
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 English-language mappings for language-dependent features of
12 reStructuredText.
13 """
14
15 __docformat__ = 'reStructuredText'
16
17
18 directives = {
19 # language-dependent: fixed
20 u'\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1': 'attention',
21 u'\u05d6\u05d4\u05d9\u05e8\u05d5\u05ea': 'caution',
22 u'code (translation required)': 'code',
23 u'\u05e1\u05db\u05e0\u05d4': 'danger',
24 u'\u05e9\u05d2\u05d9\u05d0\u05d4' : 'error',
25 u'\u05e8\u05de\u05d6': 'hint',
26 u'\u05d7\u05e9\u05d5\u05d1': 'important',
27 u'\u05d4\u05e2\u05e8\u05d4': 'note',
28 u'\u05d8\u05d9\u05e4': 'tip',
29 u'\u05d0\u05d6\u05d4\u05e8\u05d4': 'warning',
30 'admonition': 'admonition',
31 'sidebar': 'sidebar',
32 'topic': 'topic',
33 'line-block': 'line-block',
34 'parsed-literal': 'parsed-literal',
35 'rubric': 'rubric',
36 'epigraph': 'epigraph',
37 'highlights': 'highlights',
38 'pull-quote': 'pull-quote',
39 'compound': 'compound',
40 'container': 'container',
41 #'questions': 'questions',
42 'table': 'table',
43 'csv-table': 'csv-table',
44 'list-table': 'list-table',
45 #'qa': 'questions',
46 #'faq': 'questions',
47 'meta': 'meta',
48 'math (translation required)': 'math',
49 #'imagemap': 'imagemap',
50 u'\u05ea\u05de\u05d5\u05e0\u05d4': 'image',
51 'figure': 'figure',
52 'include': 'include',
53 'raw': 'raw',
54 'replace': 'replace',
55 'unicode': 'unicode',
56 'date': 'date',
57 u'\u05e1\u05d2\u05e0\u05d5\u05df': 'class',
58 'role': 'role',
59 'default-role': 'default-role',
60 'title': 'title',
61 u'\u05ea\u05d5\u05db\u05df': 'contents',
62 'sectnum': 'sectnum',
63 'section-numbering': 'sectnum',
64 'header': 'header',
65 'footer': 'footer',
66 #'footnotes': 'footnotes',
67 #'citations': 'citations',
68 'target-notes': 'target-notes',
69 'restructuredtext-test-directive': 'restructuredtext-test-directive'}
70 """English name to registered (in directives/__init__.py) directive name
71 mapping."""
72
73 roles = {
74 # language-dependent: fixed
75 'abbreviation': 'abbreviation',
76 'ab': 'abbreviation',
77 'acronym': 'acronym',
78 'ac': 'acronym',
79 u'code (translation required)': 'code',
80 'index': 'index',
81 'i': 'index',
82 u'\u05ea\u05d7\u05ea\u05d9': 'subscript',
83 'sub': 'subscript',
84 u'\u05e2\u05d9\u05dc\u05d9': 'superscript',
85 'sup': 'superscript',
86 'title-reference': 'title-reference',
87 'title': 'title-reference',
88 't': 'title-reference',
89 'pep-reference': 'pep-reference',
90 'pep': 'pep-reference',
91 'rfc-reference': 'rfc-reference',
92 'rfc': 'rfc-reference',
93 'emphasis': 'emphasis',
94 'strong': 'strong',
95 'literal': 'literal',
96 'math (translation required)': 'math',
97 'named-reference': 'named-reference',
98 'anonymous-reference': 'anonymous-reference',
99 'footnote-reference': 'footnote-reference',
100 'citation-reference': 'citation-reference',
101 'substitution-reference': 'substitution-reference',
102 'target': 'target',
103 'uri-reference': 'uri-reference',
104 'uri': 'uri-reference',
105 'url': 'uri-reference',
106 'raw': 'raw',}
107 """Mapping of English role names to canonical role names for interpreted text.
108 """