Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
lib
/
python3
/
dist-packages
/
docutils
/
languages
π€ Upload
π New File
π New Folder
Close
Editing: ko.py
# -*- coding: utf-8 -*- # $Id: ko.py 8541 2020-08-22 22:16:25Z 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': u'μ μ', 'authors': u'μ μλ€', 'organization': u'μ‘°μ§', 'address': u'μ£Όμ', 'contact': u'μ°λ½μ²', 'version': u'λ²μ ', 'revision': u'리λΉμ ', 'status': u'μν', 'date': u'λ μ§', 'copyright': u'μ μκΆ', 'dedication': u'νμ ', 'abstract': u'μμ½', 'attention': u'μ§μ€!', 'caution': u'μ£Όμ!', 'danger': u'!μν!', 'error': u'μ€λ₯', 'hint': u'μ€λ§λ¦¬', 'important': u'μ€μν', 'note': u'λΉκ³ ', 'tip': u'ν', 'warning': u'κ²½κ³ ', 'contents': u'λͺ©μ°¨'} """Mapping of node class name to label text.""" bibliographic_fields = { # language-dependent: fixed u'μ μ': 'author', u'μ μλ€': 'authors', u'μ‘°μ§': 'organization', u'μ£Όμ': 'address', u'μ°λ½μ²': 'contact', u'λ²μ ': 'version', u'리λΉμ ': 'revision', u'μν': 'status', u'λ μ§': 'date', u'μ μκΆ': 'copyright', u'νμ ': '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."""
Save
Cancel