Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/docutils/languages/da.py @ 0:26e78fe6e8c4 draft
"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author | shellac |
---|---|
date | Sat, 02 May 2020 07:14:21 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:26e78fe6e8c4 |
---|---|
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.""" |