~ubuntu-branches/ubuntu/karmic/python-docutils/karmic

« back to all changes in this revision

Viewing changes to docutils/languages/ja.py

  • Committer: Bazaar Package Importer
  • Author(s): martin f. krafft
  • Date: 2006-07-10 11:45:05 UTC
  • mfrom: (2.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060710114505-otkhqcslevewxmz5
Tags: 0.4-3
Added build dependency on python-central (closes: #377580).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
# Author: Hisashi Morita
 
3
# Contact: hisashim@kt.rim.or.jp
 
4
# Revision: $Revision: 4167 $
 
5
# Date: $Date: 2005-12-10 03:29:55 +0100 (Sat, 10 Dec 2005) $
 
6
# Copyright: This module has been placed in the public domain.
 
7
 
 
8
# New language mappings are welcome.  Before doing a new translation, please
 
9
# read <http://docutils.sf.net/docs/howto/i18n.html>.  Two files must be
 
10
# translated for each language: one in docutils/languages, the other in
 
11
# docutils/parsers/rst/languages.
 
12
 
 
13
"""
 
14
Japanese-language mappings for language-dependent features of Docutils.
 
15
"""
 
16
 
 
17
__docformat__ = 'reStructuredText'
 
18
 
 
19
labels = {
 
20
      # fixed: language-dependent
 
21
      'author': u'著者',
 
22
      'authors': u'著者',
 
23
      'organization': u'組織',
 
24
      'address': u'住所',
 
25
      'contact': u'連絡先',
 
26
      'version': u'バージョン',
 
27
      'revision': u'リビジョン',
 
28
      'status': u'ステータス',
 
29
      'date': u'日付',
 
30
      'copyright': u'著作権',
 
31
      'dedication': u'献辞',
 
32
      'abstract': u'概要',
 
33
      'attention': u'注目!',
 
34
      'caution': u'注意!',
 
35
      'danger': u'!危険!',
 
36
      'error': u'エラー',
 
37
      'hint': u'ヒント',
 
38
      'important': u'重要',
 
39
      'note': u'備考',
 
40
      'tip': u'通報',
 
41
      'warning': u'警告',
 
42
      'contents': u'目次'}
 
43
"""Mapping of node class name to label text."""
 
44
 
 
45
bibliographic_fields = {
 
46
      # language-dependent: fixed
 
47
      u'著者': 'author',
 
48
      u' n/a': 'authors',
 
49
      u'組織': 'organization',
 
50
      u'住所': 'address',
 
51
      u'連絡先': 'contact',
 
52
      u'バージョン': 'version',
 
53
      u'リビジョン': 'revision',
 
54
      u'ステータス': 'status',
 
55
      u'日付': 'date',
 
56
      u'著作権': 'copyright',
 
57
      u'献辞': 'dedication',
 
58
      u'概要': 'abstract'}
 
59
"""Japanese (lowcased) to canonical name mapping for bibliographic fields."""
 
60
 
 
61
author_separators = [';', ',']
 
62
"""List of separator strings for the 'Authors' bibliographic field. Tried in
 
63
order."""