blob: 2633956a9d8738f91c33d4b48fa290e7db92a91f (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
\ProvidesFile{gloss-dutch.ldf}[polyglossia: module for dutch]
\PolyglossiaSetup{dutch}{
hyphennames={dutch},
hyphenmins={2,2},
frenchspacing=true,
fontsetup=true,
}
\define@boolkey{dutch}[dutch@]{babelshorthands}[true]{}
\ifsystem@babelshorthands
\setkeys{dutch}{babelshorthands=true}
\else
\setkeys{dutch}{babelshorthands=false}
\fi
\ifcsundef{initiate@active@char}{%
\input{babelsh.def}%
\initiate@active@char{"}%
}{}
\def\dutch@shorthands{%
\bbl@activate{"}%
\def\language@group{dutch}%
\declare@shorthand{dutch}{"-}{\nobreak-\bbl@allowhyphens}
\declare@shorthand{dutch}{"~}{\textormath{\leavevmode\hbox{-}}{-}}
\declare@shorthand{dutch}{"|}{%
\textormath{\discretionary{-}{}{\kern.03em}}{}}
\declare@shorthand{dutch}{""}{\hskip\z@skip}
\declare@shorthand{dutch}{"/}{\textormath
{\bbl@allowhyphens\discretionary{/}{}{/}\bbl@allowhyphens}{}}%
\def\-{\bbl@allowhyphens\discretionary{-}{}{}\bbl@allowhyphens}%
}
\def\nodutch@shorthands{%
\@ifundefined{initiate@active@char}{}{\bbl@deactivate{"}}%
\def\-{\discretionary{-}{}{}}% << original def in latex.ltx
}
\def\captionsdutch{%
\def\prefacename{Voorwoord}%
\def\refname{Referenties}%
\def\abstractname{Samenvatting}%
\def\bibname{Bibliografie}%
\def\chaptername{Hoofdstuk}%
\def\appendixname{Bijlage}%
\def\contentsname{Inhoudsopgave}%
\def\listfigurename{Lijst van figuren}%
\def\listtablename{Lijst van tabellen}%
\def\indexname{Index}%
\def\figurename{Figuur}%
\def\tablename{Tabel}%
\def\partname{Deel}%
\def\enclname{Bijlage(n)}%
\def\ccname{cc}%
\def\headtoname{Aan}%
\def\pagename{Pagina}%
\def\seename{zie}%
\def\alsoname{zie ook}%
\def\proofname{Bewijs}%
\def\glossaryname{Verklarende woordenlijst}%
\def\today{\number\day~\ifcase\month%
\or januari\or februari\or maart\or april\or mei\or juni\or
juli\or augustus\or september\or oktober\or november\or
december\fi
\space \number\year}}
\def\noextras@dutch{%
\nodutch@shorthands%
}
\def\blockextras@dutch{%
\ifdutch@babelshorthands\dutch@shorthands\fi%
}
\def\inlineextras@dutch{%
\ifdutch@babelshorthands\dutch@shorthands\fi%
}
\endinput
|