<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># -*- coding: utf-8 -*-
# $Id: ko.py 8541 2020-08-22 22:16:25Z milde $
# Author: Thomas SJ Kang &lt;thomas.kangsj@ujuc.kr&gt;
# Copyright: This module has been placed in the public domain.

# New language mappings are welcome.  Before doing a new translation, please
# read &lt;http://docutils.sf.net/docs/howto/i18n.html&gt;.  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': u'м&nbsp;Ђмћђ',
      'authors': u'м&nbsp;Ђмћђл“¤',
      'organization': u'мЎ°м§Ѓ',
      'address': u'мЈјм†Њ',
      'contact': u'м—°лќЅмІ',
      'version': u'лІ„м&nbsp;„',
      'revision': u'л¦¬л№„м&nbsp;„',
      'status': u'мѓЃнѓњ',
      'date': u'л‚&nbsp;м§њ',
      'copyright': u'м&nbsp;Ђмћ‘к¶Њ',
      'dedication': u'н—Њм&nbsp;•',
      'abstract': u'мљ”м•Ѕ',
      'attention': u'м§‘м¤‘!',
      'caution': u'мЈјмќ!',
      'danger': u'!мњ„н—!',
      'error': u'м¤лҐ',
      'hint': u'м‹¤л§€л¦¬',
      'important': u'м¤‘мљ”н•њ',
      'note': u'л№„кі&nbsp;',
      'tip': u'нЊЃ',
      'warning': u'кІЅкі&nbsp;',
      'contents': u'лЄ©м°Ё'}
"""Mapping of node class name to label text."""

bibliographic_fields = {
      # language-dependent: fixed
      u'м&nbsp;Ђмћђ': 'author',
      u'м&nbsp;Ђмћђл“¤': 'authors',
      u'мЎ°м§Ѓ': 'organization',
      u'мЈјм†Њ': 'address',
      u'м—°лќЅмІ': 'contact',
      u'лІ„м&nbsp;„': 'version',
      u'л¦¬л№„м&nbsp;„': 'revision',
      u'мѓЃнѓњ': 'status',
      u'л‚&nbsp;м§њ': 'date',
      u'м&nbsp;Ђмћ‘к¶Њ': 'copyright',
      u'н—Њм&nbsp;•': 'dedication',
      u'мљ”м•Ѕ': 'abstract'}
"""Korean to canonical name mapping for bibliographic fields."""

author_separators = [';', ',']
"""List of separator strings for the 'Authors' bibliographic field. Tried in
order."""
</pre></body></html>