Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/sk.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: sk.py 4564 2006-05-21 20:44:42Z wiemann $ | |
| 2 # Author: Miroslav Vasko <zemiak@zoznam.sk> | |
| 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 Slovak-language mappings for language-dependent features of Docutils. | |
| 12 """ | |
| 13 | |
| 14 __docformat__ = 'reStructuredText' | |
| 15 | |
| 16 labels = { | |
| 17 'author': u'Autor', | |
| 18 'authors': u'Autori', | |
| 19 'organization': u'Organiz\u00E1cia', | |
| 20 'address': u'Adresa', | |
| 21 'contact': u'Kontakt', | |
| 22 'version': u'Verzia', | |
| 23 'revision': u'Rev\u00EDzia', | |
| 24 'status': u'Stav', | |
| 25 'date': u'D\u00E1tum', | |
| 26 'copyright': u'Copyright', | |
| 27 'dedication': u'Venovanie', | |
| 28 'abstract': u'Abstraktne', | |
| 29 'attention': u'Pozor!', | |
| 30 'caution': u'Opatrne!', | |
| 31 'danger': u'!NEBEZPE\u010cENSTVO!', | |
| 32 'error': u'Chyba', | |
| 33 'hint': u'Rada', | |
| 34 'important': u'D\u00F4le\u017Eit\u00E9', | |
| 35 'note': u'Pozn\u00E1mka', | |
| 36 'tip': u'Tip', | |
| 37 'warning': u'Varovanie', | |
| 38 'contents': u'Obsah'} | |
| 39 """Mapping of node class name to label text.""" | |
| 40 | |
| 41 bibliographic_fields = { | |
| 42 u'autor': 'author', | |
| 43 u'autori': 'authors', | |
| 44 u'organiz\u00E1cia': 'organization', | |
| 45 u'adresa': 'address', | |
| 46 u'kontakt': 'contact', | |
| 47 u'verzia': 'version', | |
| 48 u'rev\u00EDzia': 'revision', | |
| 49 u'stav': 'status', | |
| 50 u'd\u00E1tum': 'date', | |
| 51 u'copyright': 'copyright', | |
| 52 u'venovanie': 'dedication', | |
| 53 u'abstraktne': 'abstract'} | |
| 54 """Slovak (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.""" |
