# -*- coding: utf-8 -*- # $Id: ru.py 7125 2011-09-16 18:36:18Z milde $ # Author: Roman Suzi <rnd@onego.ru> # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please # read <http://docutils.sf.net/docs/howto/i18n.html>. 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 = { 'abstract': 'ÐннотациÑ', 'address': 'ÐдреÑ', 'attention': 'Внимание!', 'author': 'Ðвтор', 'authors': 'Ðвторы', 'caution': 'ОÑторожно!', 'contact': 'Контакт', 'contents': 'Содержание', 'copyright': 'Права копированиÑ', 'danger': 'ОПÐСÐО!', 'date': 'Дата', 'dedication': 'ПоÑвÑщение', 'error': 'Ошибка', 'hint': 'Совет', 'important': 'Важно', 'note': 'Примечание', 'organization': 'ОрганизациÑ', 'revision': 'РедакциÑ', 'status': 'СтатуÑ', 'tip': 'ПодÑказка', 'version': 'ВерÑиÑ', 'warning': 'Предупреждение'} """Mapping of node class name to label text.""" bibliographic_fields = { 'аннотациÑ': 'abstract', 'адреÑ': 'address', 'автор': 'author', 'авторы': 'authors', 'контакт': 'contact', 'права копированиÑ': 'copyright', 'дата': 'date', 'поÑвÑщение': 'dedication', 'организациÑ': 'organization', 'редакциÑ': 'revision', 'ÑтатуÑ': 'status', 'верÑиÑ': 'version'} """Russian (lowcased) to canonical name mapping for bibliographic fields.""" author_separators = [';', ','] """List of separator strings for the 'Authors' bibliographic field. Tried in order."""