<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># -*- coding: utf-8 -*-
# $Id: ru.py 7125 2011-09-16 18:36:18Z milde $
# Author: Roman Suzi &lt;rnd@onego.ru&gt;
# Copyright: This module has been placed in the public domain.

# New language mappings are welcome.  Before doing a new translation, please
# read &lt;http://docutils.sf.net/docs/howto/i18n.html&gt;.  Two files must be
# translated for each language: one in docutils/languages, the other in
# docutils/parsers/rst/languages.

"""
Russian-language mappings for language-dependent features of Docutils.
"""

__docformat__ = 'reStructuredText'

labels = {
      u'abstract': u'РђРЅРЅРѕС‚Р°С†РёСЏ',
      u'address': u'РђРґСЂРµСЃ',
      u'attention': u'Р’РЅРёРјР°РЅРёРµ!',
      u'author': u'РђРІС‚РѕСЂ',
      u'authors': u'РђРІС‚РѕСЂС‹',
      u'caution': u'РћСЃС‚РѕСЂРѕР¶РЅРѕ!',
      u'contact': u'РљРѕРЅС‚Р°РєС‚',
      u'contents': u'РЎРѕРґРµСЂР¶Р°РЅРёРµ',
      u'copyright': u'РџСЂР°РІР° РєРѕРїРёСЂРѕРІР°РЅРёСЏ',
      u'danger': u'РћРџРђРЎРќРћ!',
      u'date': u'Р”Р°С‚Р°',
      u'dedication': u'РџРѕСЃРІСЏС‰РµРЅРёРµ',
      u'error': u'РћС€РёР±РєР°',
      u'hint': u'РЎРѕРІРµС‚',
      u'important': u'Р’Р°Р¶РЅРѕ',
      u'note': u'РџСЂРёРјРµС‡Р°РЅРёРµ',
      u'organization': u'РћСЂРіР°РЅРёР·Р°С†РёСЏ',
      u'revision': u'Р&nbsp;РµРґР°РєС†РёСЏ',
      u'status': u'РЎС‚Р°С‚СѓСЃ',
      u'tip': u'РџРѕРґСЃРєР°Р·РєР°',
      u'version': u'Р’РµСЂСЃРёСЏ',
      u'warning': u'РџСЂРµРґСѓРїСЂРµР¶РґРµРЅРёРµ'}
"""Mapping of node class name to label text."""

bibliographic_fields = {
      u'Р°РЅРЅРѕС‚Р°С†РёСЏ': u'abstract',
      u'Р°РґСЂРµСЃ': u'address',
      u'Р°РІС‚РѕСЂ': u'author',
      u'Р°РІС‚РѕСЂС‹': u'authors',
      u'РєРѕРЅС‚Р°РєС‚': u'contact',
      u'РїСЂР°РІР° РєРѕРїРёСЂРѕРІР°РЅРёСЏ': u'copyright',
      u'РґР°С‚Р°': u'date',
      u'РїРѕСЃРІСЏС‰РµРЅРёРµ': u'dedication',
      u'РѕСЂРіР°РЅРёР·Р°С†РёСЏ': u'organization',
      u'СЂРµРґР°РєС†РёСЏ': u'revision',
      u'СЃС‚Р°С‚СѓСЃ': u'status',
      u'РІРµСЂСЃРёСЏ': u'version'}
"""Russian (lowcased) to canonical name mapping for bibliographic fields."""

author_separators =  [';', ',']
"""List of separator strings for the 'Authors' bibliographic field. Tried in
order."""
</pre></body></html>