comparison env/lib/python3.9/site-packages/docutils/parsers/rst/languages/ru.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 # -*- coding: utf-8 -*-
2 # $Id: ru.py 7123 2011-09-12 08:28:31Z milde $
3 # Author: Roman Suzi <rnd@onego.ru>
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 Russian-language mappings for language-dependent features of
13 reStructuredText.
14 """
15
16 __docformat__ = 'reStructuredText'
17
18 directives = {
19 u'блок-строк': u'line-block',
20 u'meta': u'meta',
21 u'математика': 'math',
22 u'обработанный-литерал': u'parsed-literal',
23 u'выделенная-цитата': u'pull-quote',
24 u'код': 'code',
25 u'compound (translation required)': 'compound',
26 u'контейнер': 'container',
27 u'таблица': 'table',
28 u'csv-table (translation required)': 'csv-table',
29 u'list-table (translation required)': 'list-table',
30 u'сырой': u'raw',
31 u'замена': u'replace',
32 u'тестовая-директива-restructuredtext': u'restructuredtext-test-directive',
33 u'целевые-сноски': u'target-notes',
34 u'unicode': u'unicode',
35 u'дата': u'date',
36 u'боковая-полоса': u'sidebar',
37 u'важно': u'important',
38 u'включать': u'include',
39 u'внимание': u'attention',
40 u'выделение': u'highlights',
41 u'замечание': u'admonition',
42 u'изображение': u'image',
43 u'класс': u'class',
44 u'роль': 'role',
45 u'default-role (translation required)': 'default-role',
46 u'титул': 'title',
47 u'номер-раздела': u'sectnum',
48 u'нумерация-разделов': u'sectnum',
49 u'опасно': u'danger',
50 u'осторожно': u'caution',
51 u'ошибка': u'error',
52 u'подсказка': u'tip',
53 u'предупреждение': u'warning',
54 u'примечание': u'note',
55 u'рисунок': u'figure',
56 u'рубрика': u'rubric',
57 u'совет': u'hint',
58 u'содержание': u'contents',
59 u'тема': u'topic',
60 u'эпиграф': u'epigraph',
61 u'header (translation required)': 'header',
62 u'footer (translation required)': 'footer',}
63 """Russian name to registered (in directives/__init__.py) directive name
64 mapping."""
65
66 roles = {
67 u'акроним': 'acronym',
68 u'код': 'code',
69 u'анонимная-ссылка': 'anonymous-reference',
70 u'буквально': 'literal',
71 u'математика': 'math',
72 u'верхний-индекс': 'superscript',
73 u'выделение': 'emphasis',
74 u'именованная-ссылка': 'named-reference',
75 u'индекс': 'index',
76 u'нижний-индекс': 'subscript',
77 u'сильное-выделение': 'strong',
78 u'сокращение': 'abbreviation',
79 u'ссылка-замена': 'substitution-reference',
80 u'ссылка-на-pep': 'pep-reference',
81 u'ссылка-на-rfc': 'rfc-reference',
82 u'ссылка-на-uri': 'uri-reference',
83 u'ссылка-на-заглавие': 'title-reference',
84 u'ссылка-на-сноску': 'footnote-reference',
85 u'цитатная-ссылка': 'citation-reference',
86 u'цель': 'target',
87 u'сырой': 'raw',}
88 """Mapping of Russian role names to canonical role names for interpreted text.
89 """