<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: ja.py 4564 2006-05-21 20:44:42Z wiemann $
# Author: Hisashi Morita &lt;hisashim@kt.rim.or.jp&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.

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

__docformat__ = 'reStructuredText'

labels = {
      # fixed: language-dependent
      'author': u'и‘—иЂ…',
      'authors': u'и‘—иЂ…',
      'organization': u'зµ„з№”',
      'address': u'дЅЏж‰Ђ',
      'contact': u'йЂЈзµЎе…€',
      'version': u'гѓђгѓјг‚ёгѓ§гѓі',
      'revision': u'гѓЄгѓ“г‚ёгѓ§гѓі',
      'status': u'г‚№гѓ†гѓјг‚їг‚№',
      'date': u'ж—Ґд»',
      'copyright': u'и‘—дЅњжЁ©',
      'dedication': u'зЊ®иѕћ',
      'abstract': u'ж¦‚и¦Ѓ',
      'attention': u'жіЁз›®!',
      'caution': u'жіЁж„Џ!',
      'danger': u'!еЌ±й™є!',
      'error': u'г‚Ёгѓ©гѓј',
      'hint': u'гѓ’гѓігѓ€',
      'important': u'й‡Ќи¦Ѓ',
      'note': u'е‚™иЂѓ',
      'tip': u'йЂље&nbsp;±',
      'warning': u'и­¦е‘Љ',
      'contents': u'з›®ж¬Ў'}
"""Mapping of node class name to label text."""

bibliographic_fields = {
      # language-dependent: fixed
      u'и‘—иЂ…': 'author',
      u' n/a': 'authors',
      u'зµ„з№”': 'organization',
      u'дЅЏж‰Ђ': 'address',
      u'йЂЈзµЎе…€': 'contact',
      u'гѓђгѓјг‚ёгѓ§гѓі': 'version',
      u'гѓЄгѓ“г‚ёгѓ§гѓі': 'revision',
      u'г‚№гѓ†гѓјг‚їг‚№': 'status',
      u'ж—Ґд»': 'date',
      u'и‘—дЅњжЁ©': 'copyright',
      u'зЊ®иѕћ': 'dedication',
      u'ж¦‚и¦Ѓ': 'abstract'}
"""Japanese (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>