mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2026-02-04 22:06:22 -06:00
initial commit
This commit is contained in:
@@ -0,0 +1,114 @@
|
||||
# $Id: da.py 9417 2023-06-27 20:04:54Z 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',
|
||||
'varsel': 'admonition',
|
||||
'formaning': 'admonition', # sic! kept for backwards compatibiltity
|
||||
'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.
|
||||
"""
|
||||
Reference in New Issue
Block a user