Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/lv.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 # -*- 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.""" |
