1 | # -*- coding: utf-8 -*- |
---|
2 | # Author: Pan Junyong |
---|
3 | # Contact: panjy@zopechina.com |
---|
4 | # Revision: $Revision: 4203 $ |
---|
5 | # Date: $Date: 2005-12-13 23:28:42 +0100 (Tue, 13 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 | Simplified Chinese language mappings for language-dependent features |
---|
15 | of Docutils. |
---|
16 | """ |
---|
17 | |
---|
18 | __docformat__ = 'reStructuredText' |
---|
19 | |
---|
20 | labels = { |
---|
21 | # fixed: language-dependent |
---|
22 | 'author': u'菴懆�, |
---|
23 | 'authors': u'菴懆�セ、', |
---|
24 | 'organization': u'扈�サ�, |
---|
25 | 'address': u'蝨ー蝮', |
---|
26 | 'contact': u'閨皮ウサ', |
---|
27 | 'version': u'迚域悽', |
---|
28 | 'revision': u'菫ョ隶「', |
---|
29 | 'status': u'迥カ諤�, |
---|
30 | 'date': u'譌・譛�, |
---|
31 | 'copyright': u'迚域揀', |
---|
32 | 'dedication': u'迪ョ霎�, |
---|
33 | 'abstract': u'鞫倩ヲ�, |
---|
34 | 'attention': u'豕ィ諢�, |
---|
35 | 'caution': u'蟆丞ソ�, |
---|
36 | 'danger': u'蜊ア髯ゥ', |
---|
37 | 'error': u'髞呵ッッ', |
---|
38 | 'hint': u'謠千、コ', |
---|
39 | 'important': u'驥崎ヲ�, |
---|
40 | 'note': u'豕ィ隗」', |
---|
41 | 'tip': u'謚蟾ァ', |
---|
42 | 'warning': u'隴ヲ蜻�, |
---|
43 | 'contents': u'逶ョ蠖�, |
---|
44 | } |
---|
45 | """Mapping of node class name to label text.""" |
---|
46 | |
---|
47 | bibliographic_fields = { |
---|
48 | # language-dependent: fixed |
---|
49 | u'菴懆�: 'author', |
---|
50 | u'菴懆�セ、': 'authors', |
---|
51 | u'扈�サ�: 'organization', |
---|
52 | u'蝨ー蝮': 'address', |
---|
53 | u'閨皮ウサ': 'contact', |
---|
54 | u'迚域悽': 'version', |
---|
55 | u'菫ョ隶「': 'revision', |
---|
56 | u'迥カ諤�: 'status', |
---|
57 | u'譌カ髣エ': 'date', |
---|
58 | u'迚域揀': 'copyright', |
---|
59 | u'迪ョ霎�: 'dedication', |
---|
60 | u'鞫倩ヲ�: 'abstract'} |
---|
61 | """Simplified Chinese to canonical name mapping for bibliographic fields.""" |
---|
62 | |
---|
63 | author_separators = [';', ',', |
---|
64 | u'\uff1b', # '�� |
---|
65 | u'\uff0c', # '�� |
---|
66 | u'\u3001', # '縲� |
---|
67 | ] |
---|
68 | """List of separator strings for the 'Authors' bibliographic field. Tried in |
---|
69 | order.""" |
---|