Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/docutils/languages/lv.py @ 2:6af9afd405e9 draft
"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author | shellac |
---|---|
date | Thu, 14 May 2020 14:56:58 -0400 |
parents | 26e78fe6e8c4 |
children |
comparison
equal
deleted
inserted
replaced
1:75ca89e9b81c | 2:6af9afd405e9 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 # $Id: lv.py 7975 2016-10-20 20:00:19Z milde $ | |
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 Latvian-language mappings for language-dependent features of Docutils. | |
12 """ | |
13 | |
14 __docformat__ = 'reStructuredText' | |
15 | |
16 labels = { | |
17 # fixed: language-dependent | |
18 'author': 'Autors', | |
19 'authors': 'Autori', | |
20 'organization': 'Organizācija', | |
21 'address': 'Adrese', | |
22 'contact': 'Kontakti', | |
23 'version': 'Versija', | |
24 'revision': 'Revīzija', | |
25 'status': 'Statuss', | |
26 'date': 'Datums', | |
27 'copyright': 'Copyright', | |
28 'dedication': 'Veltījums', | |
29 'abstract': 'Atreferējums', | |
30 'attention': 'Uzmanību!', | |
31 'caution': 'Piesardzību!', | |
32 'danger': '!BĪSTAMI!', | |
33 'error': 'Kļūda', | |
34 'hint': 'Ieteikums', | |
35 'important': 'Svarīgi', | |
36 'note': 'Piezīme', | |
37 'tip': 'Padoms', | |
38 'warning': 'Brīdinājums', | |
39 'contents': 'Saturs'} | |
40 """Mapping of node class name to label text.""" | |
41 | |
42 bibliographic_fields = { | |
43 # language-dependent: fixed | |
44 'autors': 'author', | |
45 'autori': 'authors', | |
46 'organizācija': 'organization', | |
47 'adrese': 'address', | |
48 'kontakti': 'contact', | |
49 'versija': 'version', | |
50 'revīzija': 'revision', | |
51 'statuss': 'status', | |
52 'datums': 'date', | |
53 'copyright': 'copyright', | |
54 'veltījums': 'dedication', | |
55 'atreferējums': 'abstract'} | |
56 """English (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.""" |