123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- # $Id: da.py 9030 2022-03-05 23:28:32Z milde $
- # Author: E D
- # 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.
- """
- Danish-language mappings for language-dependent features of
- reStructuredText.
- """
- __docformat__ = 'reStructuredText'
- directives = {
- # language-dependent: fixed
- 'giv agt': 'attention',
- 'pas på': 'caution',
- 'kode': 'code',
- 'kode-blok': 'code',
- 'kildekode': 'code',
- 'fare': 'danger',
- 'fejl': 'error',
- 'vink': 'hint',
- 'vigtigt': 'important',
- 'bemærk': 'note',
- 'tips': 'tip',
- 'advarsel': 'warning',
- 'formaning': 'admonition',
- 'sidebjælke': 'sidebar',
- 'emne': 'topic',
- 'linje-blok': 'line-block',
- 'linie-blok': 'line-block',
- 'parset-literal': 'parsed-literal',
- 'rubrik': 'rubric',
- 'epigraf': 'epigraph',
- 'fremhævninger': 'highlights',
- 'pull-quote (translation required)': 'pull-quote',
- 'compound (translation required)': 'compound',
- 'container (translation required)': 'container',
- # 'questions': 'questions',
- 'tabel': 'table',
- 'csv-tabel': 'csv-table',
- 'liste-tabel': 'list-table',
- # 'qa': 'questions',
- # 'faq': 'questions',
- 'meta': 'meta',
- 'math (translation required)': 'math',
- # 'imagemap': 'imagemap',
- 'billede': 'image',
- 'figur': 'figure',
- 'inkludér': 'include',
- 'inkluder': 'include',
- 'rå': 'raw',
- 'erstat': 'replace',
- 'unicode': 'unicode',
- 'dato': 'date',
- 'klasse': 'class',
- 'rolle': 'role',
- 'forvalgt-rolle': 'default-role',
- 'titel': 'title',
- 'indhold': 'contents',
- 'sektnum': 'sectnum',
- 'sektions-nummerering': 'sectnum',
- 'sidehovede': 'header',
- 'sidefod': 'footer',
- # 'footnotes': 'footnotes',
- # 'citations': 'citations',
- 'target-notes (translation required)': 'target-notes',
- 'restructuredtext-test-direktiv': 'restructuredtext-test-directive'}
- """Danish name to registered (in directives/__init__.py) directive name
- mapping."""
- roles = {
- # language-dependent: fixed
- 'forkortelse': 'abbreviation',
- 'fork': 'abbreviation',
- 'akronym': 'acronym',
- 'ac (translation required)': 'acronym',
- 'kode': 'code',
- 'indeks': 'index',
- 'i': 'index',
- 'subscript (translation required)': 'subscript',
- 'sub (translation required)': 'subscript',
- 'superscript (translation required)': 'superscript',
- 'sup (translation required)': 'superscript',
- 'titel-reference': 'title-reference',
- 'titel': 'title-reference',
- 't': 'title-reference',
- 'pep-reference': 'pep-reference',
- 'pep': 'pep-reference',
- 'rfc-reference': 'rfc-reference',
- 'rfc': 'rfc-reference',
- 'emfase': 'emphasis',
- 'kraftig': 'strong',
- 'literal': 'literal',
- 'math (translation required)': 'math',
- 'navngivet-reference': 'named-reference',
- 'anonym-reference': 'anonymous-reference',
- 'fodnote-reference': 'footnote-reference',
- 'citation-reference (translation required)': 'citation-reference',
- 'substitutions-reference': 'substitution-reference',
- 'target (translation required)': 'target',
- 'uri-reference': 'uri-reference',
- 'uri': 'uri-reference',
- 'url': 'uri-reference',
- 'rå': 'raw',
- }
- """Mapping of Danish role names to canonical role names for interpreted text.
- """
|