Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/parsers/rst/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 | |
13 reStructuredText. | |
14 """ | |
15 | |
16 __docformat__ = 'reStructuredText' | |
17 | |
18 | |
19 directives = { | |
20 # language-dependent: fixed | |
21 u'집중': 'attention', | |
22 u'주의': 'caution', | |
23 u'코드': 'code', | |
24 u'코드-블록': 'code', | |
25 u'소스코드': 'code', | |
26 u'위험': 'danger', | |
27 u'오류': 'error', | |
28 u'실마리': 'hint', | |
29 u'중요한': 'important', | |
30 u'비고': 'note', | |
31 u'팁': 'tip', | |
32 u'경고': 'warning', | |
33 u'권고': 'admonition', | |
34 u'사이드바': 'sidebar', | |
35 u'주제': 'topic', | |
36 u'라인-블록': 'line-block', | |
37 u'파싱된-리터럴': 'parsed-literal', | |
38 u'지시문': 'rubric', | |
39 u'제명': 'epigraph', | |
40 u'하이라이': 'highlights', | |
41 u'발췌문': 'pull-quote', | |
42 u'합성어': 'compound', | |
43 u'컨테이너': 'container', | |
44 #u'질문': 'questions', | |
45 u'표': 'table', | |
46 u'csv-표': 'csv-table', | |
47 u'list-표': 'list-table', | |
48 #u'qa': 'questions', | |
49 #u'faq': 'questions', | |
50 u'메타': 'meta', | |
51 u'수학': 'math', | |
52 #u'이미지맵': 'imagemap', | |
53 u'이미지': 'image', | |
54 u'도표': 'figure', | |
55 u'포함': 'include', | |
56 'raw': 'raw', | |
57 u'대신하다': 'replace', | |
58 'unicode': 'unicode', | |
59 u'날짜': 'date', | |
60 'class': 'class', | |
61 u'역할': 'role', | |
62 u'기본-역할': 'default-role', | |
63 u'제목': 'title', | |
64 u'내용': 'contents', | |
65 'sectnum': 'sectnum', | |
66 u'섹션-번호-매기기': 'sectnum', | |
67 u'머리말': 'header', | |
68 u'꼬리말': 'footer', | |
69 #u'긱주': 'footnotes', | |
70 #u'인용구': 'citations', | |
71 u'목표-노트': 'target-notes', | |
72 u'restructuredtext 테스트 지시어': 'restructuredtext-test-directive'} | |
73 """Korean name to registered (in directives/__init__.py) directive name | |
74 mapping.""" | |
75 | |
76 roles = { | |
77 # language-dependent: fixed | |
78 u'약어': 'abbreviation', | |
79 u'ab': 'abbreviation', | |
80 u'두음문자': 'acronym', | |
81 u'ac': 'acronym', | |
82 u'코드': 'code', | |
83 u'색인': 'index', | |
84 u'i': 'index', | |
85 u'다리-글자': 'subscript', | |
86 u'sub': 'subscript', | |
87 u'어깨-글자': 'superscript', | |
88 u'sup': 'superscript', | |
89 u'제목-참조': 'title-reference', | |
90 u'제목': 'title-reference', | |
91 u't': 'title-reference', | |
92 u'pep-참조': 'pep-reference', | |
93 u'pep': 'pep-reference', | |
94 u'rfc-참조': 'rfc-reference', | |
95 u'rfc': 'rfc-reference', | |
96 u'강조': 'emphasis', | |
97 u'굵게': 'strong', | |
98 u'기울기': 'literal', | |
99 u'수학': 'math', | |
100 u'명명된-참조': 'named-reference', | |
101 u'익명-참조': 'anonymous-reference', | |
102 u'각주-참조': 'footnote-reference', | |
103 u'인용-참조': 'citation-reference', | |
104 u'대리-참조': 'substitution-reference', | |
105 u'대상': 'target', | |
106 u'uri-참조': 'uri-reference', | |
107 u'uri': 'uri-reference', | |
108 u'url': 'uri-reference', | |
109 'raw': 'raw',} | |
110 """Mapping of Korean role names to canonical role names for interpreted text. | |
111 """ |