1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# $Id: local_dummy_lang.py 9030 2022-03-05 23:28:32Z milde $
# Author: David Goodger <goodger@python.org>
# 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.
"""
English-language mappings for language-dependent features of Docutils.
"""
__docformat__ = 'reStructuredText'
labels = {
# fixed: language-dependent
'author': 'dummy Author',
'authors': 'dummy Authors',
'organization': 'dummy Organization',
'address': 'dummy Address',
'contact': 'dummy Contact',
'version': 'dummy Version',
'revision': 'dummy Revision',
'status': 'dummy Status',
'date': 'dummy Date',
'copyright': 'dummy Copyright',
'dedication': 'dummy Dedication',
'abstract': 'dummy Abstract',
'attention': 'dummy Attention!',
'caution': 'dummy Caution!',
'danger': 'dummy !DANGER!',
'error': 'dummy Error',
'hint': 'dummy Hint',
'important': 'dummy Important',
'note': 'dummy Note',
'tip': 'dummy Tip',
'warning': 'dummy Warning',
'contents': 'dummy Contents'}
"""Mapping of node class name to label text."""
bibliographic_fields = {
# language-dependent: fixed
'dummy author': 'author',
'dummy authors': 'authors',
'dummy organization': 'organization',
'dummy address': 'address',
'dummy contact': 'contact',
'dummy version': 'version',
'dummy revision': 'revision',
'dummy status': 'status',
'dummy date': 'date',
'dummy copyright': 'copyright',
'dummy dedication': 'dedication',
'dummy abstract': 'abstract'}
"""English (lowcased) to canonical name mapping for bibliographic fields."""
author_separators = [';', ',']
"""List of separator strings for the 'Authors' bibliographic field. Tried in
order."""
directives = {
# language-dependent: fixed
'dummy-attention': 'attention',
'dummy-caution': 'caution',
'dummy-code': 'code',
'dummy-code-block': 'code',
'dummy-sourcecode': 'code',
'dummy-danger': 'danger',
'dummy-error': 'error',
'dummy-hint': 'hint',
'dummy-important': 'important',
'dummy-note': 'note',
'dummy-tip': 'tip',
'dummy-warning': 'warning',
'dummy-admonition': 'admonition',
'dummy-sidebar': 'sidebar',
'dummy-topic': 'topic',
'dummy-line-block': 'line-block',
'dummy-parsed-literal': 'parsed-literal',
'dummy-rubric': 'rubric',
'dummy-epigraph': 'epigraph',
'dummy-highlights': 'highlights',
'dummy-pull-quote': 'pull-quote',
'dummy-compound': 'compound',
'dummy-container': 'container',
# 'dummy-questions': 'questions',
'dummy-table': 'table',
'dummy-csv-table': 'csv-table',
'dummy-list-table': 'list-table',
# 'dummy-qa': 'questions',
# 'dummy-faq': 'questions',
'dummy-meta': 'meta',
'dummy-math': 'math',
# 'dummy-imagemap': 'imagemap',
'dummy-image': 'image',
'dummy-figure': 'figure',
'dummy-include': 'include',
'dummy-raw': 'raw',
'dummy-replace': 'replace',
'dummy-unicode': 'unicode',
'dummy-date': 'date',
'dummy-class': 'class',
'dummy-role': 'role',
'dummy-default-role': 'default-role',
'dummy-title': 'title',
'dummy-contents': 'contents',
'dummy-sectnum': 'sectnum',
'dummy-section-numbering': 'sectnum',
'dummy-header': 'header',
'dummy-footer': 'footer',
# 'dummy-footnotes': 'footnotes',
# 'dummy-citations': 'citations',
'dummy-target-notes': 'target-notes',
'dummy-restructuredtext-test-directive': 'restructuredtext-test-directive', # noqa: E501
}
"""English name to registered (in directives/__init__.py) directive name
mapping."""
roles = {
# language-dependent: fixed
'dummy abbreviation': 'abbreviation',
'dummy ab': 'abbreviation',
'dummy acronym': 'acronym',
'dummy ac': 'acronym',
'dummy code': 'code',
'dummy index': 'index',
'dummy i': 'index',
'dummy subscript': 'subscript',
'dummy sub': 'subscript',
'dummy superscript': 'superscript',
'dummy sup': 'superscript',
'dummy title-reference': 'title-reference',
'dummy title': 'title-reference',
'dummy t': 'title-reference',
'dummy pep-reference': 'pep-reference',
'dummy pep': 'pep-reference',
'dummy rfc-reference': 'rfc-reference',
'dummy rfc': 'rfc-reference',
'dummy emphasis': 'emphasis',
'dummy strong': 'strong',
'dummy literal': 'literal',
'dummy math': 'math',
'dummy named-reference': 'named-reference',
'dummy anonymous-reference': 'anonymous-reference',
'dummy footnote-reference': 'footnote-reference',
'dummy citation-reference': 'citation-reference',
'dummy substitution-reference': 'substitution-reference',
'dummy target': 'target',
'dummy uri-reference': 'uri-reference',
'dummy uri': 'uri-reference',
'dummy url': 'uri-reference',
'dummy raw': 'raw'}
"""Mapping of English role names to canonical role names for interpreted text.
"""
|