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