Mercurial > repos > shellac > sam_consensus_v3
comparison env/lib/python3.9/site-packages/docutils/languages/pl.py @ 0:4f3585e2f14b draft default tip
"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
| author | shellac |
|---|---|
| date | Mon, 22 Mar 2021 18:12:50 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:4f3585e2f14b |
|---|---|
| 1 # $Id$ | |
| 2 # Author: Robert Wojciechowicz <rw@smsnet.pl> | |
| 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 Polish-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'Autorzy', | |
| 20 'organization': u'Organizacja', | |
| 21 'address': u'Adres', | |
| 22 'contact': u'Kontakt', | |
| 23 'version': u'Wersja', | |
| 24 'revision': u'Korekta', | |
| 25 'status': u'Status', | |
| 26 'date': u'Data', | |
| 27 'copyright': u'Copyright', | |
| 28 'dedication': u'Dedykacja', | |
| 29 'abstract': u'Streszczenie', | |
| 30 'attention': u'Uwaga!', | |
| 31 'caution': u'Ostro\u017cnie!', | |
| 32 'danger': u'!Niebezpiecze\u0144stwo!', | |
| 33 'error': u'B\u0142\u0105d', | |
| 34 'hint': u'Wskaz\u00f3wka', | |
| 35 'important': u'Wa\u017cne', | |
| 36 'note': u'Przypis', | |
| 37 'tip': u'Rada', | |
| 38 'warning': u'Ostrze\u017cenie', | |
| 39 'contents': u'Tre\u015b\u0107'} | |
| 40 """Mapping of node class name to label text.""" | |
| 41 | |
| 42 bibliographic_fields = { | |
| 43 # language-dependent: fixed | |
| 44 u'autor': 'author', | |
| 45 u'autorzy': 'authors', | |
| 46 u'organizacja': 'organization', | |
| 47 u'adres': 'address', | |
| 48 u'kontakt': 'contact', | |
| 49 u'wersja': 'version', | |
| 50 u'korekta': 'revision', | |
| 51 u'status': 'status', | |
| 52 u'data': 'date', | |
| 53 u'copyright': 'copyright', | |
| 54 u'dedykacja': 'dedication', | |
| 55 u'streszczenie': 'abstract'} | |
| 56 """Polish (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.""" | |
| 61 | |
| 62 |
