forked from brechtm/rinohtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cs.py
36 lines (29 loc) · 890 Bytes
/
cs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This file is part of rinohtype, the Python document preparation system.
#
# Copyright (c) Brecht Machiels.
#
# Use of this source code is subject to the terms of the GNU Affero General
# Public License v3. See the LICENSE file or http://www.gnu.org/licenses/.
from .cls import Language
CS = Language('cs', 'Česky',
figure='Obrázek',
table='Tabulka',
contents='Obsah',
list_of_figures='Seznam obrázků',
list_of_tables='Seznam tabulek',
chapter='Kapitola',
index='Rejstřík',
# admonitions
attention='Pozor!',
caution='Pozor!',
danger='!NEBEZPEČÍ!',
error='Chyba',
hint='Poznámka',
important='Důležité',
note='Poznámka',
tip='Tip',
warning='Varování',
seealso='Viz také',
)
CS.no_break_after = ("do od u z ze za k ke o na v ve nad pod za po s se "
"a i že až či").split()