forked from brechtm/rinohtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pl.py
32 lines (27 loc) · 788 Bytes
/
pl.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
# 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
PL = Language('pl', 'Polski',
figure='Ilustracja',
table='Tabela',
contents='Spis Treści',
list_of_figures='Spis Ilustracji',
list_of_tables='Spis Tabel',
chapter='Rozdział',
index='Skorowidz',
# admonitions
attention='Uwaga!',
caution='Ostrożnie!',
danger='!NIEBEZPIECZEŃSTWO!',
error='Błąd',
hint='Wskazówka',
important='Ważne',
note='Notatka',
tip='Porada',
warning='Ostrzeżenie',
seealso='Zobacz również',
)