๐ Sid Gifari File Manager Pro
v8.0.5 | 2026-06-17 10:28:50 | PHP 8.1.34
๐
/ (Root)
/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
docutils
/
parsers
/
rst
/
languages
๐ /opt/imunify360/venv/lib/python3.11/site-packages/docutils/parsers/rst/languages
๐ Refresh
โ๏ธ
Editing: ko.py
Read Only
# $Id: ko.py 9030 2022-03-05 23:28:32Z 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 <https://docutils.sourceforge.io/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', # '์ง๋ฌธ': 'questions', 'ํ': 'table', 'csv-ํ': 'csv-table', 'list-ํ': 'list-table', # 'qa': 'questions', # 'faq': 'questions', '๋ฉํ': 'meta', '์ํ': 'math', # '์ด๋ฏธ์ง๋งต': 'imagemap', '์ด๋ฏธ์ง': 'image', '๋ํ': 'figure', 'ํฌํจ': 'include', 'raw': 'raw', '๋์ ํ๋ค': 'replace', '์ ๋์ฝ๋': 'unicode', '๋ ์ง': 'date', 'ํด๋์ค': 'class', '์ญํ ': 'role', '๊ธฐ๋ณธ-์ญํ ': 'default-role', '์ ๋ชฉ': 'title', '๋ด์ฉ': 'contents', 'sectnum': 'sectnum', '์น์ -๋ฒํธ-๋งค๊ธฐ๊ธฐ': 'sectnum', '๋จธ๋ฆฌ๋ง': 'header', '๊ผฌ๋ฆฌ๋ง': 'footer', # '๊ธฑ์ฃผ': 'footnotes', # '์ธ์ฉ๊ตฌ': '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. """
๐พ Save Changes
โ Cancel