Commit ed89f4d 1 parent 80bd53a commit ed89f4d Copy full SHA for ed89f4d
File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ The following languages are supported:
25
25
26
26
.. autodata :: FR
27
27
28
+ .. autodata :: HU
29
+
28
30
.. autodata :: IT
29
31
30
32
.. autodata :: NL
Original file line number Diff line number Diff line change
1
+ # This file is part of rinohtype, the Python document preparation system.
2
+ #
3
+ # Copyright (c) Brecht Machiels.
4
+ #
5
+ # Use of this source code is subject to the terms of the GNU Affero General
6
+ # Public License v3. See the LICENSE file or http://www.gnu.org/licenses/.
7
+
8
+
9
+ from .cls import Language
10
+ from ..structure import SectionTitles , AdmonitionTitles
11
+
12
+
13
+ HU = Language ('hu' , 'Hungarian' )
14
+
15
+ SectionTitles (
16
+ contents = 'Tartalomjegyzék' ,
17
+ list_of_figures = 'Ábrák Listája' ,
18
+ list_of_tables = 'Asztalok Listája' ,
19
+ chapter = 'Fejezet' ,
20
+ index = 'Index' ,
21
+ ) in HU
22
+
23
+ AdmonitionTitles (
24
+ attention = 'Figyelem!' ,
25
+ caution = 'Vigyázat!!' ,
26
+ danger = '!VESZÉLY!' ,
27
+ error = 'Hiba' ,
28
+ hint = 'Tanács' ,
29
+ important = 'Fontos' ,
30
+ note = 'Megjegyzés' ,
31
+ tip = 'Tipp' ,
32
+ warning = 'Figyelmeztetés' ,
33
+ seealso = 'Lásd még' ,
34
+ ) in HU
You can’t perform that action at this time.
0 commit comments