Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/parsers/rst/languages/lt.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 # -*- coding: utf-8 -*- | |
2 # $Id: lt.py 7668 2013-06-04 12:46:30Z milde $ | |
3 # Author: Dalius Dobravolskas <dalius.do...@gmail.com> | |
4 # Copyright: This module has been placed in the public domain. | |
5 | |
6 # New language mappings are welcome. Before doing a new translation, please | |
7 # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be | |
8 # translated for each language: one in docutils/languages, the other in | |
9 # docutils/parsers/rst/languages. | |
10 | |
11 """ | |
12 Lithuanian-language mappings for language-dependent features of | |
13 reStructuredText. | |
14 """ | |
15 | |
16 __docformat__ = 'reStructuredText' | |
17 | |
18 | |
19 directives = { | |
20 # language-dependent: fixed | |
21 u'dėmesio': 'attention', | |
22 u'atsargiai': 'caution', | |
23 u'code (translation required)': 'code', | |
24 u'pavojinga': 'danger', | |
25 u'klaida': 'error', | |
26 u'užuomina': 'hint', | |
27 u'svarbu': 'important', | |
28 u'pastaba': 'note', | |
29 u'patarimas': 'tip', | |
30 u'įspėjimas': 'warning', | |
31 u'perspėjimas': 'admonition', | |
32 u'šoninė-juosta': 'sidebar', | |
33 u'tema': 'topic', | |
34 u'linijinis-blokas': 'line-block', | |
35 u'išanalizuotas-literalas': 'parsed-literal', | |
36 u'rubrika': 'rubric', | |
37 u'epigrafas': 'epigraph', | |
38 u'pagridiniai-momentai': 'highlights', | |
39 u'atitraukta-citata': 'pull-quote', | |
40 u'sudėtinis-darinys': 'compound', | |
41 u'konteineris': 'container', | |
42 #'questions': 'questions', | |
43 u'lentelė': 'table', | |
44 u'csv-lentelė': 'csv-table', | |
45 u'sąrašo-lentelė': 'list-table', | |
46 #'qa': 'questions', | |
47 #'faq': 'questions', | |
48 u'meta': 'meta', | |
49 u'matematika': 'math', | |
50 #'imagemap': 'imagemap', | |
51 u'paveiksliukas': 'image', | |
52 u'iliustracija': 'figure', | |
53 u'pridėti': 'include', | |
54 u'žalia': 'raw', | |
55 u'pakeisti': 'replace', | |
56 u'unikodas': 'unicode', | |
57 u'data': 'date', | |
58 u'klasė': 'class', | |
59 u'rolė': 'role', | |
60 u'numatytoji-rolė': 'default-role', | |
61 u'titulas': 'title', | |
62 u'turinys': 'contents', | |
63 u'seknum': 'sectnum', | |
64 u'sekcijos-numeravimas': 'sectnum', | |
65 u'antraštė': 'header', | |
66 u'poraštė': 'footer', | |
67 #'footnotes': 'footnotes', | |
68 #'citations': 'citations', | |
69 u'nutaikytos-pastaba': 'target-notes', | |
70 u'restructuredtext-testinė-direktyva': 'restructuredtext-test-directive'} | |
71 """Lithuanian name to registered (in directives/__init__.py) directive name | |
72 mapping.""" | |
73 | |
74 roles = { | |
75 # language-dependent: fixed | |
76 'santrumpa': 'abbreviation', | |
77 'sa': 'abbreviation', | |
78 'akronimas': 'acronym', | |
79 'ak': 'acronym', | |
80 u'code (translation required)': 'code', | |
81 'indeksas': 'index', | |
82 'i': 'index', | |
83 u'apatinis-indeksas': 'subscript', | |
84 'sub': 'subscript', | |
85 u'viršutinis-indeksas': 'superscript', | |
86 'sup': 'superscript', | |
87 u'antrašės-nuoroda': 'title-reference', | |
88 u'antraštė': 'title-reference', | |
89 'a': 'title-reference', | |
90 'pep-nuoroda': 'pep-reference', | |
91 'pep': 'pep-reference', | |
92 'rfc-nuoroda': 'rfc-reference', | |
93 'rfc': 'rfc-reference', | |
94 u'paryškinimas': 'emphasis', | |
95 u'sustiprintas': 'strong', | |
96 u'literalas': 'literal', | |
97 u'matematika': 'math', | |
98 u'vardinė-nuoroda': 'named-reference', | |
99 u'anoniminė-nuoroda': 'anonymous-reference', | |
100 u'išnašos-nuoroda': 'footnote-reference', | |
101 u'citatos-nuoroda': 'citation-reference', | |
102 u'pakeitimo-nuoroda': 'substitution-reference', | |
103 u'taikinys': 'target', | |
104 u'uri-nuoroda': 'uri-reference', | |
105 'uri': 'uri-reference', | |
106 'url': 'uri-reference', | |
107 'žalia': 'raw',} | |
108 """Mapping of English role names to canonical role names for interpreted text. | |
109 """ |