Stop generating invalid doctree if "use_latex_toc" setting is True.
[docutils.git] / docutils / docutils / languages / cs.py
blob74fcd048a0c89c5f9ab615098cca409791d3adf4
1 # $Id$
2 # Author: Marek Blaha <mb@dat.cz>
3 # Copyright: This module has been placed in the public domain.
5 # New language mappings are welcome. Before doing a new translation, please
6 # read <https://docutils.sourceforge.io/docs/howto/i18n.html>.
7 # Two files must be translated for each language: one in docutils/languages,
8 # the other in docutils/parsers/rst/languages.
10 """
11 Czech-language mappings for language-dependent features of Docutils.
12 """
14 __docformat__ = 'reStructuredText'
16 labels = {
17 # fixed: language-dependent
18 'author': 'Autor',
19 'authors': 'Autoři',
20 'organization': 'Organizace',
21 'address': 'Adresa',
22 'contact': 'Kontakt',
23 'version': 'Verze',
24 'revision': 'Revize',
25 'status': 'Stav',
26 'date': 'Datum',
27 'copyright': 'Copyright',
28 'dedication': 'Věnování',
29 'abstract': 'Abstrakt',
30 'attention': 'Pozor!',
31 'caution': 'Opatrně!',
32 'danger': '!NEBEZPEČÍ!',
33 'error': 'Chyba',
34 'hint': 'Rada',
35 'important': 'Důležité',
36 'note': 'Poznámka',
37 'tip': 'Tip',
38 'warning': 'Varování',
39 'contents': 'Obsah'}
40 """Mapping of node class name to label text."""
42 bibliographic_fields = {
43 # language-dependent: fixed
44 'autor': 'author',
45 'autoři': 'authors',
46 'organizace': 'organization',
47 'adresa': 'address',
48 'kontakt': 'contact',
49 'verze': 'version',
50 'revize': 'revision',
51 'stav': 'status',
52 'datum': 'date',
53 'copyright': 'copyright',
54 'věnování': 'dedication',
55 'abstrakt': 'abstract'}
56 """Czech (lowcased) to canonical name mapping for bibliographic fields."""
58 author_separators = [';', ',']
59 """List of separator strings for the 'Authors' bibliographic field. Tried in
60 order."""