123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- # $Id: nl.py 9030 2022-03-05 23:28:32Z milde $
- # Author: Martijn Pieters <mjpieters@users.sourceforge.net>
- # 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.
- """
- Dutch-language mappings for language-dependent features of
- reStructuredText.
- """
- __docformat__ = 'reStructuredText'
- directives = {
- # language-dependent: fixed
- 'attentie': 'attention',
- 'let-op': 'caution',
- 'code (translation required)': 'code',
- 'gevaar': 'danger',
- 'fout': 'error',
- 'hint': 'hint',
- 'belangrijk': 'important',
- 'opmerking': 'note',
- 'tip': 'tip',
- 'waarschuwing': 'warning',
- 'aanmaning': 'admonition',
- 'katern': 'sidebar',
- 'onderwerp': 'topic',
- 'lijn-blok': 'line-block',
- 'letterlijk-ontleed': 'parsed-literal',
- 'rubriek': 'rubric',
- 'opschrift': 'epigraph',
- 'hoogtepunten': 'highlights',
- 'pull-quote': 'pull-quote', # Dutch printers use the english term
- 'samenstelling': 'compound',
- 'verbinding': 'compound',
- 'container (translation required)': 'container',
- # 'vragen': 'questions',
- 'tabel': 'table',
- 'csv-tabel': 'csv-table',
- 'lijst-tabel': 'list-table',
- # 'veelgestelde-vragen': 'questions',
- 'meta': 'meta',
- 'math (translation required)': 'math',
- # 'imagemap': 'imagemap',
- 'beeld': 'image',
- 'figuur': 'figure',
- 'opnemen': 'include',
- 'onbewerkt': 'raw',
- 'vervang': 'replace',
- 'vervanging': 'replace',
- 'unicode': 'unicode',
- 'datum': 'date',
- 'klasse': 'class',
- 'rol': 'role',
- 'default-role (translation required)': 'default-role',
- 'title (translation required)': 'title',
- 'inhoud': 'contents',
- 'sectnum': 'sectnum',
- 'sectie-nummering': 'sectnum',
- 'hoofdstuk-nummering': 'sectnum',
- 'header (translation required)': 'header',
- 'footer (translation required)': 'footer',
- # 'voetnoten': 'footnotes',
- # 'citaten': 'citations',
- 'verwijzing-voetnoten': 'target-notes',
- 'restructuredtext-test-instructie': 'restructuredtext-test-directive'}
- """Dutch name to registered (in directives/__init__.py) directive name
- mapping."""
- roles = {
- # language-dependent: fixed
- 'afkorting': 'abbreviation',
- # 'ab': 'abbreviation',
- 'acroniem': 'acronym',
- 'ac': 'acronym',
- 'code (translation required)': 'code',
- 'index': 'index',
- 'i': 'index',
- 'inferieur': 'subscript',
- 'inf': 'subscript',
- 'superieur': 'superscript',
- 'sup': 'superscript',
- 'titel-referentie': 'title-reference',
- 'titel': 'title-reference',
- 't': 'title-reference',
- 'pep-referentie': 'pep-reference',
- 'pep': 'pep-reference',
- 'rfc-referentie': 'rfc-reference',
- 'rfc': 'rfc-reference',
- 'nadruk': 'emphasis',
- 'extra': 'strong',
- 'extra-nadruk': 'strong',
- 'vet': 'strong',
- 'letterlijk': 'literal',
- 'math (translation required)': 'math',
- 'benoemde-referentie': 'named-reference',
- 'anonieme-referentie': 'anonymous-reference',
- 'voetnoot-referentie': 'footnote-reference',
- 'citaat-referentie': 'citation-reference',
- 'substitie-reference': 'substitution-reference',
- 'verwijzing': 'target',
- 'uri-referentie': 'uri-reference',
- 'uri': 'uri-reference',
- 'url': 'uri-reference',
- 'onbewerkt': 'raw',
- }
- """Mapping of Dutch role names to canonical role names for interpreted text.
- """
|