comparison env/lib/python3.9/site-packages/docutils/languages/da.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 # -*- coding: utf-8 -*-
2 # $Id: da.py 7678 2013-07-03 09:57:36Z milde $
3 # Author: E D
4 # Copyright: This module has been placed in the public domain.
5
6 # New language mappings are welcome. Before doing a new translation, please
7 # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be
8 # translated for each language: one in docutils/languages, the other in
9 # docutils/parsers/rst/languages.
10
11 """
12 Danish-language mappings for language-dependent features of Docutils.
13 """
14
15 __docformat__ = 'reStructuredText'
16
17 labels = {
18 # fixed: language-dependent
19 'author': u'Forfatter',
20 'authors': u'Forfattere',
21 'organization': u'Organisation',
22 'address': u'Adresse',
23 'contact': u'Kontakt',
24 'version': u'Version',
25 'revision': u'Revision',
26 'status': u'Status',
27 'date': u'Dato',
28 'copyright': u'Copyright',
29 'dedication': u'Dedikation',
30 'abstract': u'Resumé',
31 'attention': u'Giv agt!',
32 'caution': u'Pas på!',
33 'danger': u'!FARE!',
34 'error': u'Fejl',
35 'hint': u'Vink',
36 'important': u'Vigtigt',
37 'note': u'Bemærk',
38 'tip': u'Tips',
39 'warning': u'Advarsel',
40 'contents': u'Indhold'}
41 """Mapping of node class name to label text."""
42
43 bibliographic_fields = {
44 # language-dependent: fixed
45 u'forfatter': 'author',
46 u'forfattere': 'authors',
47 u'organisation': 'organization',
48 u'adresse': 'address',
49 u'kontakt': 'contact',
50 u'version': 'version',
51 u'revision': 'revision',
52 u'status': 'status',
53 u'dato': 'date',
54 u'copyright': 'copyright',
55 u'dedikation': 'dedication',
56 u'resume': 'abstract',
57 u'resumé': 'abstract'}
58 """Danish (lowcased) to canonical name mapping for bibliographic fields."""
59
60 author_separators = [';', ',']
61 """List of separator strings for the 'Authors' bibliographic field. Tried in
62 order."""