Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/af.py @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:18:57 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d30785e31577 |
---|---|
1 # $Id: af.py 4564 2006-05-21 20:44:42Z wiemann $ | |
2 # Author: Jannie Hofmeyr <jhsh@sun.ac.za> | |
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 Afrikaans-language mappings for language-dependent features of Docutils. | |
12 """ | |
13 | |
14 __docformat__ = 'reStructuredText' | |
15 | |
16 labels = { | |
17 'author': 'Auteur', | |
18 'authors': 'Auteurs', | |
19 'organization': 'Organisasie', | |
20 'address': 'Adres', | |
21 'contact': 'Kontak', | |
22 'version': 'Weergawe', | |
23 'revision': 'Revisie', | |
24 'status': 'Status', | |
25 'date': 'Datum', | |
26 'copyright': 'Kopiereg', | |
27 'dedication': 'Opdrag', | |
28 'abstract': 'Opsomming', | |
29 'attention': 'Aandag!', | |
30 'caution': 'Wees versigtig!', | |
31 'danger': '!GEVAAR!', | |
32 'error': 'Fout', | |
33 'hint': 'Wenk', | |
34 'important': 'Belangrik', | |
35 'note': 'Nota', | |
36 'tip': 'Tip', # hint and tip both have the same translation: wenk | |
37 'warning': 'Waarskuwing', | |
38 'contents': 'Inhoud'} | |
39 """Mapping of node class name to label text.""" | |
40 | |
41 bibliographic_fields = { | |
42 'auteur': 'author', | |
43 'auteurs': 'authors', | |
44 'organisasie': 'organization', | |
45 'adres': 'address', | |
46 'kontak': 'contact', | |
47 'weergawe': 'version', | |
48 'revisie': 'revision', | |
49 'status': 'status', | |
50 'datum': 'date', | |
51 'kopiereg': 'copyright', | |
52 'opdrag': 'dedication', | |
53 'opsomming': 'abstract'} | |
54 """Afrikaans (lowcased) to canonical name mapping for bibliographic fields.""" | |
55 | |
56 author_separators = [';', ','] | |
57 """List of separator strings for the 'Authors' bibliographic field. Tried in | |
58 order.""" |