Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/cs.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: cs.py 4564 2006-05-21 20:44:42Z wiemann $ | |
| 2 # Author: Marek Blaha <mb@dat.cz> | |
| 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 Czech-language mappings for language-dependent features of Docutils. | |
| 12 """ | |
| 13 | |
| 14 __docformat__ = 'reStructuredText' | |
| 15 | |
| 16 labels = { | |
| 17 # fixed: language-dependent | |
| 18 'author': u'Autor', | |
| 19 'authors': u'Auto\u0159i', | |
| 20 'organization': u'Organizace', | |
| 21 'address': u'Adresa', | |
| 22 'contact': u'Kontakt', | |
| 23 'version': u'Verze', | |
| 24 'revision': u'Revize', | |
| 25 'status': u'Stav', | |
| 26 'date': u'Datum', | |
| 27 'copyright': u'Copyright', | |
| 28 'dedication': u'V\u011Bnov\u00E1n\u00ED', | |
| 29 'abstract': u'Abstrakt', | |
| 30 'attention': u'Pozor!', | |
| 31 'caution': u'Opatrn\u011B!', | |
| 32 'danger': u'!NEBEZPE\u010C\u00CD!', | |
| 33 'error': u'Chyba', | |
| 34 'hint': u'Rada', | |
| 35 'important': u'D\u016Fle\u017Eit\u00E9', | |
| 36 'note': u'Pozn\u00E1mka', | |
| 37 'tip': u'Tip', | |
| 38 'warning': u'Varov\u00E1n\u00ED', | |
| 39 'contents': u'Obsah'} | |
| 40 """Mapping of node class name to label text.""" | |
| 41 | |
| 42 bibliographic_fields = { | |
| 43 # language-dependent: fixed | |
| 44 u'autor': 'author', | |
| 45 u'auto\u0159i': 'authors', | |
| 46 u'organizace': 'organization', | |
| 47 u'adresa': 'address', | |
| 48 u'kontakt': 'contact', | |
| 49 u'verze': 'version', | |
| 50 u'revize': 'revision', | |
| 51 u'stav': 'status', | |
| 52 u'datum': 'date', | |
| 53 u'copyright': 'copyright', | |
| 54 u'v\u011Bnov\u00E1n\u00ED': 'dedication', | |
| 55 u'abstrakt': 'abstract'} | |
| 56 """Czech (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.""" | 
