# -*- coding: utf-8 -*- # $Id: ko.py 8253 2019-04-15 10:01:10Z milde $ # Author: Thomas SJ Kang <thomas.kangsj@ujuc.kr> # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. """ Korean-language mappings for language-dependent features of reStructuredText. """ __docformat__ = 'reStructuredText' directives = { # language-dependent: fixed '집중': 'attention', '주ì˜': 'caution', '코드': 'code', '코드-블ë¡': 'code', '소스코드': 'code', '위험': 'danger', '오류': 'error', '실마리': 'hint', '중요한': 'important', 'ë¹„ê³ ': 'note', 'íŒ': 'tip', 'ê²½ê³ ': 'warning', 'ê¶Œê³ ': 'admonition', '사ì´ë“œë°”': 'sidebar', 'ì£¼ì œ': 'topic', 'ë¼ì¸-블ë¡': 'line-block', '파싱ëœ-리터럴': 'parsed-literal', '지시문': 'rubric', 'ì œëª…': 'epigraph', '하ì´ë¼ì´': 'highlights', '발췌문': 'pull-quote', '합성어': 'compound', '컨테ì´ë„ˆ': 'container', #u'질문': 'questions', 'í‘œ': 'table', 'csv-í‘œ': 'csv-table', 'list-í‘œ': 'list-table', #u'qa': 'questions', #u'faq': 'questions', '메타': 'meta', '수학': 'math', #u'ì´ë¯¸ì§€ë§µ': 'imagemap', 'ì´ë¯¸ì§€': 'image', 'ë„í‘œ': 'figure', 'í¬í•¨': 'include', 'raw': 'raw', 'ëŒ€ì‹ í•˜ë‹¤': 'replace', 'unicode': 'unicode', 'ë‚ ì§œ': 'date', 'class': 'class', 'ì—í• ': 'role', '기본-ì—í• ': 'default-role', 'ì œëª©': 'title', 'ë‚´ìš©': 'contents', 'sectnum': 'sectnum', '섹션-번호-매기기': 'sectnum', '머리ë§': 'header', '꼬리ë§': 'footer', #u'긱주': 'footnotes', #u'ì¸ìš©êµ¬': 'citations', '목표-노트': 'target-notes', 'restructuredtext 테스트 지시어': 'restructuredtext-test-directive'} """Korean name to registered (in directives/__init__.py) directive name mapping.""" roles = { # language-dependent: fixed '약어': 'abbreviation', 'ab': 'abbreviation', 'ë‘ìŒë¬¸ìž': 'acronym', 'ac': 'acronym', '코드': 'code', '색ì¸': 'index', 'i': 'index', '다리-글ìž': 'subscript', 'sub': 'subscript', '어깨-글ìž': 'superscript', 'sup': 'superscript', 'ì œëª©-참조': 'title-reference', 'ì œëª©': 'title-reference', 't': 'title-reference', 'pep-참조': 'pep-reference', 'pep': 'pep-reference', 'rfc-참조': 'rfc-reference', 'rfc': 'rfc-reference', 'ê°•ì¡°': 'emphasis', '굵게': 'strong', '기울기': 'literal', '수학': 'math', '명명ëœ-참조': 'named-reference', 'ìµëª…-참조': 'anonymous-reference', 'ê°ì£¼-참조': 'footnote-reference', 'ì¸ìš©-참조': 'citation-reference', '대리-참조': 'substitution-reference', '대ìƒ': 'target', 'uri-참조': 'uri-reference', 'uri': 'uri-reference', 'url': 'uri-reference', 'raw': 'raw',} """Mapping of Korean role names to canonical role names for interpreted text. """