# -*- 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 Docutils. """ __docformat__ = 'reStructuredText' labels = { # fixed: language-dependent 'author': 'ì €ìž', 'authors': 'ì €ìžë“¤', 'organization': 'ì¡°ì§', 'address': '주소', 'contact': 'ì—°ë½ì²˜', 'version': 'Version', 'revision': 'Revision', 'status': 'ìƒíƒœ', 'date': 'ë‚ ì§œ', 'copyright': 'ì €ìž‘ê¶Œ', 'dedication': 'í—Œì •', 'abstract': '요약', 'attention': '집중!', 'caution': '주ì˜!', 'danger': '!위험!', 'error': '오류', 'hint': '실마리', 'important': '중요한', 'note': 'ë¹„ê³ ', 'tip': 'íŒ', 'warning': 'ê²½ê³ ', 'contents': '목차'} """Mapping of node class name to label text.""" bibliographic_fields = { # language-dependent: fixed 'ì €ìž': 'author', 'ì €ìžë“¤': 'authors', 'ì¡°ì§': 'organization', '주소': 'address', 'ì—°ë½ì²˜': 'contact', 'version': 'version', 'revision': 'revision', 'ìƒíƒœ': 'status', 'ë‚ ì§œ': 'date', 'ì €ìž‘ê¶Œ': 'copyright', 'í—Œì •': 'dedication', '요약': 'abstract'} """Korean to canonical name mapping for bibliographic fields.""" author_separators = [';', ','] """List of separator strings for the 'Authors' bibliographic field. Tried in order."""