nl.py 1.8 KB

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