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.""" |
---|