Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/ko.py @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:18:57 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d30785e31577 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 # $Id: ko.py 8253 2019-04-15 10:01:10Z milde $ | |
3 # Author: Thomas SJ Kang <thomas.kangsj@ujuc.kr> | |
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 Korean-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': 'Version', | |
25 'revision': 'Revision', | |
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'저자들': 'authors', | |
47 u'조직': 'organization', | |
48 u'주소': 'address', | |
49 u'연락처': 'contact', | |
50 u'version': 'version', | |
51 u'revision': 'revision', | |
52 u'상태': 'status', | |
53 u'날짜': 'date', | |
54 u'저작권': 'copyright', | |
55 u'헌정': 'dedication', | |
56 u'요약': 'abstract'} | |
57 """Korean 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.""" |