Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/docutils/languages/pl.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 # $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 |