summaryrefslogtreecommitdiffstats
path: root/src/translator_nl.h
blob: 25e7ed47972de12508f320b0d3f59f5485a53597 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/******************************************************************************
 *
 * $Id$
 *
 * Copyright (C) 1997-1999 by Dimitri van Heesch.
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation under the terms of the GNU General Public License is hereby 
 * granted. No representations are made about the suitability of this software 
 * for any purpose. It is provided "as is" without express or implied warranty.
 * See the GNU General Public License for more details.
 *
 * All output generated with Doxygen is not covered by this license.
 *
 */

#ifndef TRANSLATOR_NL_H
#define TRANSLATOR_NL_H

#include <qstring.h>

class TranslatorDutch : public Translator
{
  public:
    QString latexBabelPackage()
    { return "dutch"; }
    QString trInherits()
    { return "Erft over van"; }
    QString trAnd()
    { return "en"; }
    QString trInheritedBy()
    { return "Wordt overge&euml;rfd door"; }
    QString trRelatedFunctions()
    { return "Gerelateerde functies"; }
    QString trRelatedSubscript()
    { return "(Merk op dat dit geen member functies zijn.)"; }
    QString trDetailedDescription()
    { return "Gedetaileerde Beschrijving"; }
    QString trMemberTypedefDocumentation()
    { return "Documentatie van type definitie members"; }
    QString trMemberEnumerationDocumentation()
    { return "Documentatie van enumeratie members"; }
    QString trEnumerationValueDocumentation()
    { return "Documentatie van enumeratie waarden"; }
    QString trMemberFunctionDocumentation()
    { return "Documentatie van functie members"; }
    QString trMemberDataDocumentation()
    { return "Documentatie van data members"; }
    QString trGeneratedFrom(const char *s,bool single)
    { 
      QString result=(QString)"De documentatie voor deze"+s+
                     " is gegenereerd op grond van de volgende file";
      if (single) result+=":";   else result+="s:";
      return result;
    }
    QString trMore()
    { return "Meer..."; }
    QString trReference()
    { return "Referentie"; }
    QString trListOfAllMembers()
    { return "Lijst van alle members."; }
    QString trMemberList()
    { return "Member Lijst"; }
    QString trThisIsTheListOfAllMembers()
    { return "Dit is de complete lijst van alle members voor"; }
    QString trIncludingInheritedMembers()
    { return "inclusief alle overge&euml;rfde members."; }
    QString trGeneratedAutomatically(const char *s)
    { QString result="Automatisch gegenereerd door Doxygen"; 
      if (s) result+=(QString)" voor "+s;
      result+=" uit de programmacode."; 
      return result;
    }
    QString trEnumName()
    { return "enum naam"; }
    QString trEnumValue()
    { return "enum waarde"; }
    QString trDefinedIn()
    { return "gedefinieerd in"; }
    QString trIncludeFile()
    { return "Include File"; }
    QString trVerbatimText(const char *f)
    { return (QString)"Dit is de letterlijke tekst van de include file "+f+"."; }
    QString trModules()
    { return "Modules"; }
    QString trClassHierarchy()
    { return "Klasse Hi&euml;rarchie"; }
    QString trCompoundList()
    { return "Compound Lijst"; }
    QString trFileList()
    { return "File Lijst"; }
    QString trHeaderFiles()
    { return "Header Lijst"; }
    QString trCompoundMembers()
    { return "Compound Members"; }
    QString trFileMembers()
    { return "File members"; }
    QString trRelatedPages()
    { return "Gerelateerde pagina's"; }
    QString trExamples()
    { return "Voorbeelden"; }
    QString trSearch()
    { return "Zoeken"; }
    QString trClassHierarchyDescription()
    { return "Deze inheritance lijst is min of meer alfabetisch "
             "gesorteerd:";
    }
    QString trFileListDescription(bool extractAll)
    {
      QString result="Hieronder volgt de lijst met alle ";
      if (!extractAll) result+="gedocumenteerde ";
      result+="files, elk met een korte beschrijving:";
      return result;
    }
    QString trCompoundListDescription()
    { return "Hieronder volgen de klassen, structs en "
             "unions met voor elk een korte beschrijving:"; 
    }
    QString trCompoundMembersDescription(bool extractAll)
    {
      QString result="Hieronder volgt de lijst met alle ";
      if (!extractAll) result+="gedocumenteerde ";
      result+="klasse members met links naar ";
      if (extractAll) result+="de klasse documentatie voor elke member:";
      else result+="de klassen waartoe ze behoren:";
      return result;
    }
    QString trFileMembersDescription(bool extractAll)
    {
      QString result="Hieronder volgt de lijst met alle ";
      if (!extractAll) result+="gedocumenteerde ";
      result+="file members met links naar ";
      if (extractAll) result+="de file documentatie voor elke member:";
      else result+="de files waartoe ze behoren:";
      return result;
    }
    QString trHeaderFilesDescription()
    { return "Hieronder volgen de header files die de API vormen:"; }
    QString trExamplesDescription()
    { return "Hieronder volgt de lijst met alle voorbeelden:"; }
    QString trRelatedPagesDescription()
    { return "Hieronder volgt de lijst met alle pagina's die gerelateerde documentatie bevatten:"; }
    QString trModulesDescription()
    { return "Hieronder volgt de lijst met alle modules:"; }
    QString trNoDescriptionAvailable()
    { return "Geen korte beschrijving beschikbaar"; }

    QString trDocumentation()
    { return "Documentatie"; }
    QString trModuleIndex()
    { return "Module Index"; }
    QString trHierarchicalIndex()
    { return "Hi&euml;rarchische Index"; }
    QString trCompoundIndex()
    { return "Compound Index"; }
    QString trFileIndex() 
    { return "File Index"; }
    QString trModuleDocumentation()
    { return "Module Documentatie"; }
    QString trClassDocumentation()
    { return "Klasse Documentatie"; }
    QString trFileDocumentation()
    { return "File Documentatie"; }
    QString trExampleDocumentation()
    { return "Documentatie van voorbeelden"; }
    QString trPageDocumentation()
    { return "Documentatie van gerelateerde pagina's"; }
    QString trReferenceManual()
    { return "Naslagwerk"; }

    QString trDefines()
    { return "Defines"; }
    QString trFuncProtos()
    { return "Functie Prototypes"; }
    QString trTypedefs()
    { return "Typedefs"; }
    QString trEnumerations()
    { return "Enumeraties"; }
    QString trFunctions()
    { return "Functies"; }
    QString trVariables()
    { return "Variabelen"; }
    QString trEnumerationValues()
    { return "Enumeratie waarden"; }
    QString trReimplementedFrom()
    { return "Nieuwe implementatie van"; }
    QString trReimplementedIn()
    { return "Opnieuw ge&iuml;mplementeerd in"; }
    QString trAuthor()
    { return "auteur"; }
    QString trDefineDocumentation()
    { return "Documentatie van defines"; }
    QString trFunctionPrototypeDocumentation()
    { return "Documentatie van functie Prototypes"; }
    QString trTypedefDocumentation()
    { return "Documentatie van typedefs"; }
    QString trEnumerationTypeDocumentation()
    { return "Documentatie van enumeratie types"; }
    QString trFunctionDocumentation()
    { return "Documentatie van functies"; }
    QString trVariableDocumentation()
    { return "Documentatie van variabelen"; }
    QString trCompounds()
    { return "Compounds"; }
    QString trFiles()
    { return "Files"; }
    QString trGeneratedAt(const char *date,const char *projName)
    { 
      QString result=(QString)"Gegenereerd op "+date;
      if (projName) result+=(QString)" voor "+projName;
      result+=(QString)" door";
      return result;
    }
    QString trWrittenBy()
    {
      return "geschreven door";
    }
    QString trClassDiagram(const char *clName)
    {
      return (QString)"Klasse diagram voor "+clName;
    }
    QString trForInternalUseOnly()
    { return "Alleen voor intern gebruik."; }
    QString trReimplementedForInternalReasons()
    { return "Om interne rederene opnieuwd ge&iuml;mplemented; "
             "de API wordt er niet door be&iuml;nvloed."; 
    }
    QString trWarning()
    { return "Waarschuwing"; }
    QString trBugsAndLimitations()
    { return "Fouten en beperkingen"; }
    QString trVersion()
    { return "Versie"; }
    QString trDate()
    { return "Datum"; }
    QString trAuthors()
    { return "Auteur(s)"; }
    QString trReturns()
    { return "Retourneerd"; }
    QString trSeeAlso()
    { return "Zie ook"; }
    QString trParameters()
    { return "Parameters"; }
    QString trExceptions()
    { return "Excepties"; }
    QString trGeneratedBy()
    { return "Gegenereerd door"; }
    
    // new since 0.49-990307 
    
    QString trNamespaces()
    { return "Namespaces"; }
    QString trNamespaceList()
    { return "Namespace Lijst"; }
    QString trNamespaceListDescription(bool extractAll)
    {
      QString result="Hier is een lijst met alle ";
      if (!extractAll) result+="gedocumenteerde ";
      result+="namespaces met voor elk een korte beschrijving:";
      return result;
    }
    QString trFriends()
    { return "Friends"; }
};

#endif