Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/docutils/languages/nl.py @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
| author | shellac |
|---|---|
| date | Mon, 01 Jun 2020 08:59:25 -0400 |
| parents | 79f47841a781 |
| children |
comparison
equal
deleted
inserted
replaced
| 4:79f47841a781 | 5:9b1c78e6ba9c |
|---|---|
| 1 # $Id: nl.py 4564 2006-05-21 20:44:42Z wiemann $ | |
| 2 # Author: Martijn Pieters <mjpieters@users.sourceforge.net> | |
| 3 # Copyright: This module has been placed in the public domain. | |
| 4 | |
| 5 # New language mappings are welcome. Before doing a new translation, please | |
| 6 # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be | |
| 7 # translated for each language: one in docutils/languages, the other in | |
| 8 # docutils/parsers/rst/languages. | |
| 9 | |
| 10 """ | |
| 11 Dutch-language mappings for language-dependent features of Docutils. | |
| 12 """ | |
| 13 | |
| 14 __docformat__ = 'reStructuredText' | |
| 15 | |
| 16 labels = { | |
| 17 # fixed: language-dependent | |
| 18 'author': 'Auteur', | |
| 19 'authors': 'Auteurs', | |
| 20 'organization': 'Organisatie', | |
| 21 'address': 'Adres', | |
| 22 'contact': 'Contact', | |
| 23 'version': 'Versie', | |
| 24 'revision': 'Revisie', | |
| 25 'status': 'Status', | |
| 26 'date': 'Datum', | |
| 27 'copyright': 'Copyright', | |
| 28 'dedication': 'Toewijding', | |
| 29 'abstract': 'Samenvatting', | |
| 30 'attention': 'Attentie!', | |
| 31 'caution': 'Let op!', | |
| 32 'danger': '!GEVAAR!', | |
| 33 'error': 'Fout', | |
| 34 'hint': 'Hint', | |
| 35 'important': 'Belangrijk', | |
| 36 'note': 'Opmerking', | |
| 37 'tip': 'Tip', | |
| 38 'warning': 'Waarschuwing', | |
| 39 'contents': 'Inhoud'} | |
| 40 """Mapping of node class name to label text.""" | |
| 41 | |
| 42 bibliographic_fields = { | |
| 43 # language-dependent: fixed | |
| 44 'auteur': 'author', | |
| 45 'auteurs': 'authors', | |
| 46 'organisatie': 'organization', | |
| 47 'adres': 'address', | |
| 48 'contact': 'contact', | |
| 49 'versie': 'version', | |
| 50 'revisie': 'revision', | |
| 51 'status': 'status', | |
| 52 'datum': 'date', | |
| 53 'copyright': 'copyright', | |
| 54 'toewijding': 'dedication', | |
| 55 'samenvatting': 'abstract'} | |
| 56 """Dutch (lowcased) to canonical name mapping for bibliographic fields.""" | |
| 57 | |
| 58 author_separators = [';', ','] | |
| 59 """List of separator strings for the 'Authors' bibliographic field. Tried in | |
| 60 order.""" |
