buildframework/helium/external/python/lib/2.5/docutils-0.5-py2.5.egg/docutils/languages/ru.py
changeset 179 d8ac696cc51f
parent 1 be27ed110b50
child 180 e02a83d4c571
child 592 3215c239276a
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
     1 # $Id: ru.py 4564 2006-05-21 20:44:42Z wiemann $
       
     2 # Author: Roman Suzi <rnd@onego.ru>
       
     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 Russian-language mappings for language-dependent features of Docutils.
       
    12 """
       
    13 
       
    14 __docformat__ = 'reStructuredText'
       
    15 
       
    16 labels = {
       
    17       u'abstract': u'\u0410\u043d\u043d\u043e\u0442\u0430\u0446\u0438\u044f',
       
    18       u'address': u'\u0410\u0434\u0440\u0435\u0441',
       
    19       u'attention': u'\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435!',
       
    20       u'author': u'\u0410\u0432\u0442\u043e\u0440',
       
    21       u'authors': u'\u0410\u0432\u0442\u043e\u0440\u044b',
       
    22       u'caution': u'\u041e\u0441\u0442\u043e\u0440\u043e\u0436\u043d\u043e!',
       
    23       u'contact': u'\u041a\u043e\u043d\u0442\u0430\u043a\u0442',
       
    24       u'contents':
       
    25       u'\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435',
       
    26       u'copyright': u'\u041f\u0440\u0430\u0432\u0430 '
       
    27       u'\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f',
       
    28       u'danger': u'\u041e\u041f\u0410\u0421\u041d\u041e!',
       
    29       u'date': u'\u0414\u0430\u0442\u0430',
       
    30       u'dedication':
       
    31       u'\u041f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u0438\u0435',
       
    32       u'error': u'\u041e\u0448\u0438\u0431\u043a\u0430',
       
    33       u'hint': u'\u0421\u043e\u0432\u0435\u0442',
       
    34       u'important': u'\u0412\u0430\u0436\u043d\u043e',
       
    35       u'note': u'\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435',
       
    36       u'organization':
       
    37       u'\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f',
       
    38       u'revision': u'\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f',
       
    39       u'status': u'\u0421\u0442\u0430\u0442\u0443\u0441',
       
    40       u'tip': u'\u041f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430',
       
    41       u'version': u'\u0412\u0435\u0440\u0441\u0438\u044f',
       
    42       u'warning': u'\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436'
       
    43       u'\u0434\u0435\u043d\u0438\u0435'}
       
    44 """Mapping of node class name to label text."""
       
    45 
       
    46 bibliographic_fields = {
       
    47       u'\u0430\u043d\u043d\u043e\u0442\u0430\u0446\u0438\u044f': u'abstract',
       
    48       u'\u0430\u0434\u0440\u0435\u0441': u'address',
       
    49       u'\u0430\u0432\u0442\u043e\u0440': u'author',
       
    50       u'\u0430\u0432\u0442\u043e\u0440\u044b': u'authors',
       
    51       u'\u043a\u043e\u043d\u0442\u0430\u043a\u0442': u'contact',
       
    52       u'\u043f\u0440\u0430\u0432\u0430 \u043a\u043e\u043f\u0438\u0440\u043e'
       
    53       u'\u0432\u0430\u043d\u0438\u044f': u'copyright',
       
    54       u'\u0434\u0430\u0442\u0430': u'date',
       
    55       u'\u043f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u0438\u0435':
       
    56       u'dedication',
       
    57       u'\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f':
       
    58       u'organization',
       
    59       u'\u0440\u0435\u0434\u0430\u043a\u0446\u0438\u044f': u'revision',
       
    60       u'\u0441\u0442\u0430\u0442\u0443\u0441': u'status',
       
    61       u'\u0432\u0435\u0440\u0441\u0438\u044f': u'version'}
       
    62 """Russian (lowcased) to canonical name mapping for bibliographic fields."""
       
    63 
       
    64 author_separators =  [';', ',']
       
    65 """List of separator strings for the 'Authors' bibliographic field. Tried in
       
    66 order."""