1 | # Author: Roman Suzi |
---|
2 | # Contact: rnd@onego.ru |
---|
3 | # Revision: $Revision: 2999 $ |
---|
4 | # Date: $Date: 2005-03-03 20:35:02 +0100 (Thu, 03 Mar 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 | Russian-language mappings for language-dependent features of Docutils. |
---|
14 | """ |
---|
15 | |
---|
16 | __docformat__ = 'reStructuredText' |
---|
17 | |
---|
18 | labels = { |
---|
19 | u'abstract': u'\u0410\u043d\u043d\u043e\u0442\u0430\u0446\u0438\u044f', |
---|
20 | u'address': u'\u0410\u0434\u0440\u0435\u0441', |
---|
21 | u'attention': u'\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435!', |
---|
22 | u'author': u'\u0410\u0432\u0442\u043e\u0440', |
---|
23 | u'authors': u'\u0410\u0432\u0442\u043e\u0440\u044b', |
---|
24 | u'caution': u'\u041e\u0441\u0442\u043e\u0440\u043e\u0436\u043d\u043e!', |
---|
25 | u'contact': u'\u041a\u043e\u043d\u0442\u0430\u043a\u0442', |
---|
26 | u'contents': |
---|
27 | u'\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435', |
---|
28 | u'copyright': u'\u041f\u0440\u0430\u0432\u0430 ' |
---|
29 | u'\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f', |
---|
30 | u'danger': u'\u041e\u041f\u0410\u0421\u041d\u041e!', |
---|
31 | u'date': u'\u0414\u0430\u0442\u0430', |
---|
32 | u'dedication': |
---|
33 | u'\u041f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u0438\u0435', |
---|
34 | u'error': u'\u041e\u0448\u0438\u0431\u043a\u0430', |
---|
35 | u'hint': u'\u0421\u043e\u0432\u0435\u0442', |
---|
36 | u'important': u'\u0412\u0430\u0436\u043d\u043e', |
---|
37 | u'note': u'\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435', |
---|
38 | u'organization': |
---|
39 | u'\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f', |
---|
40 | u'revision': u'\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f', |
---|
41 | u'status': u'\u0421\u0442\u0430\u0442\u0443\u0441', |
---|
42 | u'tip': u'\u041f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430', |
---|
43 | u'version': u'\u0412\u0435\u0440\u0441\u0438\u044f', |
---|
44 | u'warning': u'\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436' |
---|
45 | u'\u0434\u0435\u043d\u0438\u0435'} |
---|
46 | """Mapping of node class name to label text.""" |
---|
47 | |
---|
48 | bibliographic_fields = { |
---|
49 | u'\u0430\u043d\u043d\u043e\u0442\u0430\u0446\u0438\u044f': u'abstract', |
---|
50 | u'\u0430\u0434\u0440\u0435\u0441': u'address', |
---|
51 | u'\u0430\u0432\u0442\u043e\u0440': u'author', |
---|
52 | u'\u0430\u0432\u0442\u043e\u0440\u044b': u'authors', |
---|
53 | u'\u043a\u043e\u043d\u0442\u0430\u043a\u0442': u'contact', |
---|
54 | u'\u043f\u0440\u0430\u0432\u0430 \u043a\u043e\u043f\u0438\u0440\u043e' |
---|
55 | u'\u0432\u0430\u043d\u0438\u044f': u'copyright', |
---|
56 | u'\u0434\u0430\u0442\u0430': u'date', |
---|
57 | u'\u043f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u0438\u0435': |
---|
58 | u'dedication', |
---|
59 | u'\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f': |
---|
60 | u'organization', |
---|
61 | u'\u0440\u0435\u0434\u0430\u043a\u0446\u0438\u044f': u'revision', |
---|
62 | u'\u0441\u0442\u0430\u0442\u0443\u0441': u'status', |
---|
63 | u'\u0432\u0435\u0440\u0441\u0438\u044f': u'version'} |
---|
64 | """Russian (lowcased) to canonical name mapping for bibliographic fields.""" |
---|
65 | |
---|
66 | author_separators = [';', ','] |
---|
67 | """List of separator strings for the 'Authors' bibliographic field. Tried in |
---|
68 | order.""" |
---|