Doxygen
translator_nl.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  *
4  *
5  * Copyright (C) 1997-2015 by Dimitri van Heesch.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation under the terms of the GNU General Public License is hereby
9  * granted. No representations are made about the suitability of this software
10  * for any purpose. It is provided "as is" without express or implied warranty.
11  * See the GNU General Public License for more details.
12  *
13  * Documents produced by Doxygen are derivative works derived from the
14  * input used in their production; they are not affected by this license.
15  *
16  */
17 
18 #ifndef TRANSLATOR_NL_H
19 #define TRANSLATOR_NL_H
20 
22 {
23  public:
25  { return "dutch"; }
26  /*! Used to get the LaTeX command(s) for the language support.
27  * This method should return string with commands that switch
28  * LaTeX to the desired language. For example
29  * <pre>"\\usepackage[german]{babel}\n"
30  * </pre>
31  * or
32  * <pre>"\\usepackage{polski}\n"
33  * "\\usepackage[latin2]{inputenc}\n"
34  * "\\usepackage[T1]{fontenc}\n"
35  * </pre>
36  */
38  { return "\\usepackage[dutch]{babel}\n"; }
40  { return "nl"; }
42  { return "Gerelateerde functies"; }
44  { return "(Merk op dat dit geen member functies zijn.)"; }
46  { return "Gedetailleerde Beschrijving"; }
48  { return "Documentatie van type definitie members"; }
50  { return "Documentatie van enumeratie members"; }
52  { return "Documentatie van functie members"; }
54  { return "Documentatie van data members"; }
56  { return "Meer..."; }
58  { return "Lijst van alle members"; }
60  { return "Member Lijst"; }
62  { return "Dit is de complete lijst van alle members voor"; }
64  { return ", inclusief alle overge&euml;rfde members."; }
66  { QCString result="Automatisch gegenereerd door Doxygen";
67  if (!s.isEmpty()) result+=(QCString)" voor "+s;
68  result+=" uit de programmatekst.";
69  return result;
70  }
72  { return "enum naam"; }
74  { return "enum waarde"; }
76  { return "gedefinieerd in"; }
78  { return "Modules"; }
80  { return "Klasse Hi&euml;rarchie"; }
82  { return "Klasse Lijst"; }
84  { return "Bestandslijst"; }
86  { return "Klasse Members"; }
88  { return "Bestand members"; }
90  { return "Gerelateerde pagina's"; }
92  { return "Voorbeelden"; }
94  { return "Zoeken"; }
96  {
97  if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
98  {
99  return "Hieronder is een hi&euml;rarchische lijst met alle entiteiten:";
100  }
101  else
102  {
103  return "Deze inheritance lijst is min of meer alfabetisch gesorteerd:";
104  }
105  }
107  {
108  QCString result="Hieronder volgt de lijst met alle ";
109  if (!extractAll) result+="gedocumenteerde ";
110  result+="bestanden, elk met een korte beschrijving:";
111  return result;
112  }
114  {
115  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
116  {
117  return "Hieronder volgen de structs "
118  "met voor elk een korte beschrijving:";
119  }
120  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
121  {
122  return "Hieronder volgen de klassen "
123  "met voor elk een korte beschrijving:";
124  }
125  else
126  {
127  return "Hieronder volgen de klassen, structs en "
128  "unions met voor elk een korte beschrijving:";
129  }
130  }
131  QCString trCompoundMembersDescription(bool extractAll)
132  {
133  QCString result="Hieronder volgt de lijst met alle ";
134  if (!extractAll) result+="gedocumenteerde ";
135  result+="klasse members met links naar ";
136  if (!extractAll) result+="de klasse documentatie voor elke member:";
137  else result+="de klassen waartoe ze behoren:";
138  return result;
139  }
140  QCString trFileMembersDescription(bool extractAll)
141  {
142  QCString result="Hieronder volgt de lijst met alle ";
143  if (!extractAll) result+="gedocumenteerde ";
144  result+="bestand members met links naar ";
145  if (extractAll) result+="de bestand's documentatie voor elke member:";
146  else result+="de bestanden waartoe ze behoren:";
147  return result;
148  }
150  { return "Hieronder volgt de lijst met alle voorbeelden:"; }
152  { return "Hieronder volgt de lijst met alle pagina's die gerelateerde documentatie bevatten:"; }
154  { return "Hieronder volgt de lijst met alle modules:"; }
155 
157  { return "Documentatie"; }
159  { return "Module Index"; }
161  { return "Hi&euml;rarchische Index"; }
163  { return "Klasse Index"; }
165  { return "Bestand Index"; }
167  { return "Module Documentatie"; }
169  { return "Klassen Documentatie"; }
171  { return "Bestand Documentatie"; }
173  { return "Documentatie van voorbeelden"; }
175  { return "Documentatie van gerelateerde pagina's"; }
177  { return "Naslagwerk"; }
178 
180  { return "Macros"; }
182  { return "Typedefs"; }
184  { return "Enumeraties"; }
186  { return "Functies"; }
188  { return "Variabelen"; }
190  { return "Enumeratie waarden"; }
192  { return "Documentatie van macro's"; }
194  { return "Documentatie van typedefs"; }
196  { return "Documentatie van enumeratie types"; }
198  { return "Documentatie van enumeratie waarden"; }
200  { return "Documentatie van functies"; }
202  { return "Documentatie van variabelen"; }
204  { return "Klassen"; }
205  QCString trGeneratedAt(const QCString &date,const QCString &projName)
206  {
207  QCString result=(QCString)"Gegenereerd op "+date;
208  if (!projName.isEmpty()) result+=(QCString)" voor "+projName;
209  result+=(QCString)" door";
210  return result;
211  }
213  {
214  return (QCString)"Klasse diagram voor "+clName;
215  }
217  { return "Alleen voor intern gebruik."; }
219  { return "Waarschuwing"; }
221  { return "Versie"; }
222  QCString trDate()
223  { return "Datum"; }
225  { return "Retourneert"; }
227  { return "Zie ook"; }
229  { return "Parameters"; }
231  { return "Excepties"; }
233  { return "Gegenereerd door"; }
234 
235 //////////////////////////////////////////////////////////////////////////
236 // new since 0.49-990307
237 //////////////////////////////////////////////////////////////////////////
238 
240  { return "Namespace Lijst"; }
242  {
243  QCString result="Hier is een lijst met alle ";
244  if (!extractAll) result+="gedocumenteerde ";
245  result+="namespaces met voor elk een korte beschrijving:";
246  return result;
247  }
249  { return "Friends"; }
250 
251 //////////////////////////////////////////////////////////////////////////
252 // new since 0.49-990405
253 //////////////////////////////////////////////////////////////////////////
254 
256  { return "Documentatie van friends en gerelateerde functies"; }
257 
258 //////////////////////////////////////////////////////////////////////////
259 // new since 0.49-990425
260 //////////////////////////////////////////////////////////////////////////
261 
262  QCString trCompoundReference(const QCString &clName,
264  bool isTemplate)
265  // used as the title of the HTML page of a class/struct/union
266  {
267  QCString result=(QCString)clName;
268  if (isTemplate) result+=" Template";
269  switch(compType)
270  {
271  case ClassDef::Class: result+=" Class"; break;
272  case ClassDef::Struct: result+=" Struct"; break;
273  case ClassDef::Union: result+=" Union"; break;
274  case ClassDef::Interface: result+=" Interface"; break;
275  case ClassDef::Protocol: result+=" Protocol"; break;
276  case ClassDef::Category: result+=" Category"; break;
277  case ClassDef::Exception: result+=" Exception"; break;
278  default: break;
279  }
280  result+=" Referentie";
281  return result;
282  }
283  QCString trFileReference(const QCString &fileName)
284  // used as the title of the HTML page of a file
285  {
286  QCString result=fileName;
287  result+=" Bestand Referentie";
288  return result;
289  }
290  QCString trNamespaceReference(const QCString &namespaceName)
291  // used as the title of the HTML page of a namespace
292  {
293  QCString result=namespaceName;
294  result+=" Namespace Referentie";
295  return result;
296  }
297 
298  // these are for the member sections of a class, struct or union
300  { return "Public Members"; }
302  { return "Public Slots"; }
304  { return "Signals"; }
306  { return "Static Public Members"; }
308  { return "Protected Members"; }
310  { return "Protected Slots"; }
312  { return "Static Protected Members"; }
314  { return "Private Members"; }
316  { return "Private Slots"; }
318  { return "Static Private Members"; }
319  // end of member sections
320 
321  QCString trWriteList(int numEntries)
322  {
323  // this function is used to produce a comma-separated list of items.
324  // use generateMarker(i) to indicate where item i should be put.
325  QCString result;
326  int i;
327  // the inherits list contain `numEntries' classes
328  for (i=0;i<numEntries;i++)
329  {
330  // use generateMarker to generate placeholders for the class links!
331  result+=generateMarker(i); // generate marker for entry i in the list
332  // (order is left to right)
333 
334  if (i!=numEntries-1) // not the last entry, so we need a separator
335  {
336  if (i<numEntries-2) // not the fore last entry
337  result+=", ";
338  else // the fore last entry
339  result+=" en ";
340  }
341  }
342  return result;
343  }
344 
345  QCString trInheritsList(int numEntries)
346  // used in class documentation to produce a list of base classes,
347  // if class diagrams are disabled.
348  {
349  return "Erft over van "+trWriteList(numEntries)+".";
350  }
351  QCString trInheritedByList(int numEntries)
352  // used in class documentation to produce a list of super classes,
353  // if class diagrams are disabled.
354  {
355  return "Wordt overge&euml;rfd door "+trWriteList(numEntries)+".";
356  }
357  QCString trReimplementedFromList(int numEntries)
358  // used in member documentation blocks to produce a list of
359  // members that are hidden by this one.
360  {
361  return "Nieuwe implementatie van "+trWriteList(numEntries)+".";
362  }
363  QCString trReimplementedInList(int numEntries)
364  {
365  // used in member documentation blocks to produce a list of
366  // all member that overwrite the implementation of this member.
367  return "Opnieuw ge&iuml;mplementeerd in "+trWriteList(numEntries)+".";
368  }
369 
371  // This is put above each page as a link to all members of namespaces.
372  { return "Namespace Members"; }
373  QCString trNamespaceMemberDescription(bool extractAll)
374  // This is an introduction to the page with all namespace members
375  {
376  QCString result="Hier is een lijst van alle ";
377  if (!extractAll) result+="gedocumenteerde ";
378  result+="namespace members met links naar ";
379  if (extractAll)
380  result+="de namespace documentatie voor iedere member:";
381  else
382  result+="de namespaces waartoe ze behoren:";
383  return result;
384  }
386  // This is used in LaTeX as the title of the chapter with the
387  // index of all namespaces.
388  { return "Namespace Index"; }
390  // This is used in LaTeX as the title of the chapter containing
391  // the documentation of all namespaces.
392  { return "Namespace Documentatie"; }
393 
394 //////////////////////////////////////////////////////////////////////////
395 // new since 0.49-990522
396 //////////////////////////////////////////////////////////////////////////
397 
398  /*! This is used in the documentation before the list of all
399  * namespaces in a file.
400  */
402  {
403  return "Namespaces";
404  }
405 
406 //////////////////////////////////////////////////////////////////////////
407 // new since 0.49-990728
408 //////////////////////////////////////////////////////////////////////////
409 
410  /*! This is put at the bottom of a class documentation page and is
411  * followed by a list of files that were used to generate the page.
412  */
414  bool single)
415  { // here s is one of " Class", " Struct" or " Union"
416  // single is true implies a single file
417  QCString result=(QCString)"De documentatie voor ";
418  switch(compType)
419  {
420  case ClassDef::Class: result+="deze klasse"; break;
421  case ClassDef::Struct: result+="deze struct"; break;
422  case ClassDef::Union: result+="deze union"; break;
423  case ClassDef::Interface: result+="dit interface"; break;
424  case ClassDef::Protocol: result+="dit protocol"; break;
425  case ClassDef::Category: result+="deze categorie"; break;
426  case ClassDef::Exception: result+="deze exceptie"; break;
427  default: break;
428  }
429  result+=" is gegenereerd op grond van ";
430  if (single) result+="het"; else result+="de";
431  result+=" volgende bestand";
432  if (single) result+=":"; else result+="en:";
433  return result;
434  }
435 
436 //////////////////////////////////////////////////////////////////////////
437 // new since 0.49-990901
438 //////////////////////////////////////////////////////////////////////////
439 
440  /*! This is used as the heading text for the retval command. */
442  { return "Retour waarden"; }
443 
444  /*! This is in the (quick) index as a link to the main page (index.html)
445  */
447  { return "Hoofd Pagina"; }
448 
449  /*! This is used in references to page that are put in the LaTeX
450  * documentation. It should be an abbreviation of the word page.
451  */
453  { return "p."; }
454 
455 //////////////////////////////////////////////////////////////////////////
456 // new since 0.49-991106
457 //////////////////////////////////////////////////////////////////////////
458 
460  {
461  return "De definitie bevindt zich op regel @0 in het bestand @1.";
462  }
464  {
465  return "De definitie bevindt zich in het bestand @0.";
466  }
467 
468 //////////////////////////////////////////////////////////////////////////
469 // new since 0.49-991205
470 //////////////////////////////////////////////////////////////////////////
471 
473  {
474  return "Verouderd";
475  }
476 
477 //////////////////////////////////////////////////////////////////////////
478 // new since 1.0.0
479 //////////////////////////////////////////////////////////////////////////
480 
481  /*! this text is put before a collaboration diagram */
483  {
484  return (QCString)"Collaboratie diagram voor "+clName+":";
485  }
486  /*! this text is put before an include dependency graph */
488  {
489  return (QCString)"Include afhankelijkheidsgraaf voor "+fName+":";
490  }
491  /*! header that is put before the list of constructor/destructors. */
493  {
494  return "Constructor & Destructor Documentatie";
495  }
496  /*! Used in the file documentation to point to the corresponding sources. */
498  {
499  return "Ga naar de broncode van dit bestand.";
500  }
501  /*! Used in the file sources to point to the corresponding documentation. */
503  {
504  return "Ga naar de documentatie van dit bestand.";
505  }
506  /*! Text for the \\pre command */
508  {
509  return "Preconditie";
510  }
511  /*! Text for the \\post command */
513  {
514  return "Postconditie";
515  }
516  /*! Text for the \\invariant command */
518  {
519  return "Invariant";
520  }
521  /*! Text shown before a multi-line variable/enum initialization */
523  {
524  return "Initi&euml;le waarde:";
525  }
526  /*! Text used the source code in the file index */
528  {
529  return "code";
530  }
532  {
533  return "Grafische Klasse Hi&euml;rarchie";
534  }
536  {
537  return "Ga naar de grafische klasse hi&euml;rarchie";
538  }
540  {
541  return "Ga naar de tekstuele klasse hi&euml;rarchie";
542  }
544  {
545  return "Pagina Index";
546  }
547 
548 //////////////////////////////////////////////////////////////////////////
549 // new since 1.1.0
550 //////////////////////////////////////////////////////////////////////////
551 
552  QCString trNote()
553  {
554  return "Noot";
555  }
557  {
558  return "Public Typen";
559  }
561  {
562  return "Public Attributen";
563  }
565  {
566  return "Static Public Attributen";
567  }
569  {
570  return "Protected Typen";
571  }
573  {
574  return "Protected Attributen";
575  }
577  {
578  return "Static Protected Attributen";
579  }
581  {
582  return "Private Typen";
583  }
585  {
586  return "Private Attributen";
587  }
589  {
590  return "Static Private Attributen";
591  }
592 
593 
594 //////////////////////////////////////////////////////////////////////////
595 // new since 1.1.3
596 //////////////////////////////////////////////////////////////////////////
597 
598  /*! Used as a marker that is put before a todo item */
600  {
601  return "Todo";
602  }
603  /*! Used as the header of the todo list */
605  {
606  return "Todo Lijst";
607  }
608 
609 //////////////////////////////////////////////////////////////////////////
610 // new since 1.1.4
611 //////////////////////////////////////////////////////////////////////////
612 
614  {
615  return "Wordt aangeroepen door";
616  }
618  {
619  return "Opmerkingen";
620  }
622  {
623  return "Attentie";
624  }
626  {
627  return "Deze graaf geeft aan welke bestanden direct of "
628  "indirect afhankelijk zijn van dit bestand:";
629  }
630  QCString trSince()
631  {
632  return "Sinds";
633  }
634 
635 //////////////////////////////////////////////////////////////////////////
636 // new since 1.1.5
637 //////////////////////////////////////////////////////////////////////////
638 
639  /*! title of the graph legend page */
641  {
642  return "Graaf Legenda";
643  }
644  /*! page explaining how the dot graph's should be interpreted */
646  {
647  return
648  "Deze pagina legt uit hoe de grafen die gegenereerd worden door doxygen "
649  "ge&iuml;nterpreteerd dienen te worden.<p>\n"
650  "Beschouw het volgende voorbeeld:\n"
651  "\\code\n"
652  "/*! Onzichtbare klasse vanwege afkappen van de graaf */\n"
653  "class Invisible { };\n\n"
654  "/*! Afgekapte klasse, overervingsrelatie is verborgen */\n"
655  "class Truncated : public Invisible { };\n\n"
656  "/* Klasse is niet gedocumenteerd met doxygen commentaar */\n"
657  "class Undocumented { };\n\n"
658  "/*! Klasse met public inheritance */\n"
659  "class PublicBase : public Truncated { };\n\n"
660  "/*! A template class */\n"
661  "template<class T> class Templ { };\n\n"
662  "/*! Klasse met protected inheritance */\n"
663  "class ProtectedBase { };\n\n"
664  "/*! Klasse met private inheritance */\n"
665  "class PrivateBase { };\n\n"
666  "/*! Klasse die wordt gebruikt door de klasse Inherited */\n"
667  "class Used { };\n\n"
668  "/*! Super klasse die overerft van een aantal andere klassen */\n"
669  "class Inherited : public PublicBase,\n"
670  " protected ProtectedBase,\n"
671  " private PrivateBase,\n"
672  " public Undocumented,\n"
673  " public Templ<int>\n"
674  "{\n"
675  " private:\n"
676  " Used *m_usedClass;\n"
677  "};\n"
678  "\\endcode\n"
679  "Dit voorbeeld zal resulteren in de volgende graaf:"
680  "<p><center><img src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
681  "<p>\n"
682  "De rechthoeken in the bovenstaande graaf hebben de volgende betekenis:\n"
683  "<ul>\n"
684  "<li>Een gevulde grijze rechthoek representeert de structure of klasse waarvoor "
685  "de graaf is gegenereerd.\n"
686  "<li>Een rechthoek met een zwarte rand representeert een gedocumenteerde structure of klasse.\n"
687  "<li>Een rechthoek met een grijze rand representeert een ongedocumenteerde structure of klasse.\n"
688  "<li>Een rechthoek met een rode rand representeert een gedocumenteerde structure or klasse waarvoor\n"
689  "niet alle overervings- of gebruiksrelaties konden worden getoond. Een graaf wordt "
690  "afgekapt als hij niet past binnen de gespecificeerde grenzen."
691  "</ul>\n"
692  "De pijlen hebben de volgende betekenis:\n"
693  "<ul>\n"
694  "<li>Een donkerblauwe pijl visualizeert een public inheritance "
695  "relatie tussen twee klassen.\n"
696  "<li>Een donkergroene pijl wordt gebruikt voor protected inheritance.\n"
697  "<li>Een donkerrode pijl wordt gebruikt voor private inheritance.\n"
698  "<li>Een paars gestippelde pijl wordt gebruikt indien een klasse bevat is of gebruikt wordt "
699  "door een andere klasse. De pijl is gelabeled met de variable(n) "
700  "die toegang geven tot de aangewezen klasse of structure. \n"
701  "<li>Een geel gestippelde pijl wordt gebruikt om een relatie tussen een \n"
702  "template instantie en een template klasse aan te geven. De pijl is gelabeld met \n"
703  "template parameters van de instantie.\n"
704  "</ul>\n";
705  }
706  /*! text for the link to the legend page */
708  {
709  return "legenda";
710  }
711 
712 //////////////////////////////////////////////////////////////////////////
713 // new since 1.2.0
714 //////////////////////////////////////////////////////////////////////////
715 
716  /*! Used as a marker that is put before a test item */
717  QCString trTest()
718  {
719  return "Test";
720  }
721  /*! Used as the header of the test list */
723  {
724  return "Test Lijst";
725  }
726 
727 //////////////////////////////////////////////////////////////////////////
728 // new since 1.2.2
729 //////////////////////////////////////////////////////////////////////////
730 
731  /*! Used as a section header for IDL properties */
733  {
734  return "Properties";
735  }
736  /*! Used as a section header for IDL property documentation */
738  {
739  return "Property Documentatie";
740  }
741 
742 //////////////////////////////////////////////////////////////////////////
743 // new since 1.2.4
744 //////////////////////////////////////////////////////////////////////////
745 
746  /*! Used for Java classes in the summary section of Java packages */
748  {
749  return "Klassen";
750  }
751  /*! Used as the title of a Java package */
753  {
754  return (QCString)"Package "+name;
755  }
756  /*! Title of the package index page */
758  {
759  return "Package Lijst";
760  }
761  /*! The description of the package index page */
763  {
764  return "Hier volgen de packages, elk met een korte beschrijving (indien aanwezig):";
765  }
766  /*! The link name in the Quick links header for each page */
768  {
769  return "Packages";
770  }
771  /*! Text shown before a multi-line define */
773  {
774  return "Waarde:";
775  }
776 
777 //////////////////////////////////////////////////////////////////////////
778 // new since 1.2.5
779 //////////////////////////////////////////////////////////////////////////
780 
781  /*! Used as a marker that is put before a \\bug item */
783  {
784  return "Bug";
785  }
786  /*! Used as the header of the bug list */
788  {
789  return "Bug Lijst";
790  }
791 
792 //////////////////////////////////////////////////////////////////////////
793 // new since 1.2.6
794 //////////////////////////////////////////////////////////////////////////
795 
796  /*! Used as ansicpg for RTF file
797  *
798  * The following table shows the correlation of Charset name, Charset Value and
799  * <pre>
800  * Codepage number:
801  * Charset Name Charset Value(hex) Codepage number
802  * ------------------------------------------------------
803  * DEFAULT_CHARSET 1 (x01)
804  * SYMBOL_CHARSET 2 (x02)
805  * OEM_CHARSET 255 (xFF)
806  * ANSI_CHARSET 0 (x00) 1252
807  * RUSSIAN_CHARSET 204 (xCC) 1251
808  * EE_CHARSET 238 (xEE) 1250
809  * GREEK_CHARSET 161 (xA1) 1253
810  * TURKISH_CHARSET 162 (xA2) 1254
811  * BALTIC_CHARSET 186 (xBA) 1257
812  * HEBREW_CHARSET 177 (xB1) 1255
813  * ARABIC _CHARSET 178 (xB2) 1256
814  * SHIFTJIS_CHARSET 128 (x80) 932
815  * HANGEUL_CHARSET 129 (x81) 949
816  * GB2313_CHARSET 134 (x86) 936
817  * CHINESEBIG5_CHARSET 136 (x88) 950
818  * </pre>
819  *
820  */
821  virtual QCString trRTFansicp()
822  {
823  return "1252";
824  }
825 
826 
827  /*! Used as ansicpg for RTF fcharset
828  * \see trRTFansicp() for a table of possible values.
829  */
830  virtual QCString trRTFCharSet()
831  {
832  return "0";
833  }
834 
835  /*! Used as header RTF general index */
837  {
838  return "Index";
839  }
840 
841  /*! This is used for translation of the word that will possibly
842  * be followed by a single name or by a list of names
843  * of the category.
844  */
845  virtual QCString trClass(bool first_capital, bool singular)
846  {
847  QCString result((first_capital ? "Klasse" : "klass"));
848  if (!singular) result+="n";
849  return result;
850  }
851 
852  /*! This is used for translation of the word that will possibly
853  * be followed by a single name or by a list of names
854  * of the category.
855  */
856  virtual QCString trFile(bool first_capital, bool singular)
857  {
858  QCString result((first_capital ? "Bestand" : "bestand"));
859  if (!singular) result+="en";
860  return result;
861  }
862 
863  /*! This is used for translation of the word that will possibly
864  * be followed by a single name or by a list of names
865  * of the category.
866  */
867  virtual QCString trNamespace(bool first_capital, bool singular)
868  {
869  QCString result((first_capital ? "Namespace" : "namespace"));
870  if (!singular) result+="s";
871  return result;
872  }
873 
874  /*! This is used for translation of the word that will possibly
875  * be followed by a single name or by a list of names
876  * of the category.
877  */
878  virtual QCString trGroup(bool first_capital, bool singular)
879  {
880  QCString result((first_capital ? "Groep" : "groep"));
881  if (!singular) result+="en";
882  return result;
883  }
884 
885  /*! This is used for translation of the word that will possibly
886  * be followed by a single name or by a list of names
887  * of the category.
888  */
889  virtual QCString trPage(bool first_capital, bool singular)
890  {
891  QCString result((first_capital ? "Pagina" : "pagina"));
892  if (!singular) result+="s";
893  return result;
894  }
895 
896  /*! This is used for translation of the word that will possibly
897  * be followed by a single name or by a list of names
898  * of the category.
899  */
900  virtual QCString trMember(bool first_capital, bool singular)
901  {
902  QCString result((first_capital ? "Member" : "member"));
903  if (!singular) result+="s";
904  return result;
905  }
906 
907  /*! This is used for translation of the word that will possibly
908  * be followed by a single name or by a list of names
909  * of the category.
910  */
911  virtual QCString trGlobal(bool first_capital, bool singular)
912  {
913  QCString result((first_capital ? "Globale member" : "globale member"));
914  if (!singular) result+="s";
915  return result;
916  }
917 
918 //////////////////////////////////////////////////////////////////////////
919 // new since 1.2.7
920 //////////////////////////////////////////////////////////////////////////
921 
922  /*! This text is generated when the \\author command is used and
923  * for the author section in man pages. */
924  virtual QCString trAuthor(bool first_capital, bool singular)
925  {
926  QCString result((first_capital ? "Auteur" : "auteur"));
927  if (!singular) result+="s";
928  return result;
929  }
930 
931 //////////////////////////////////////////////////////////////////////////
932 // new since 1.2.11
933 //////////////////////////////////////////////////////////////////////////
934 
935  /*! This text is put before the list of members referenced by a member
936  */
937  virtual QCString trReferences()
938  {
939  return "Gebruikt";
940  }
941 
942 //////////////////////////////////////////////////////////////////////////
943 // new since 1.2.13
944 //////////////////////////////////////////////////////////////////////////
945 
946  /*! used in member documentation blocks to produce a list of
947  * members that are implemented by this one.
948  */
949  virtual QCString trImplementedFromList(int numEntries)
950  {
951  return "Implementeert "+trWriteList(numEntries)+".";
952  }
953 
954  /*! used in member documentation blocks to produce a list of
955  * all members that implementation this member.
956  */
957  virtual QCString trImplementedInList(int numEntries)
958  {
959  return "Wordt ge&iuml;mplementeerd door "+trWriteList(numEntries)+".";
960  }
961 
962 //////////////////////////////////////////////////////////////////////////
963 // new since 1.2.16
964 //////////////////////////////////////////////////////////////////////////
965 
967  { return "Inhoudsopgave"; }
968 
969 //////////////////////////////////////////////////////////////////////////
970 // new since 1.2.17
971 //////////////////////////////////////////////////////////////////////////
972 
973  /*! Used as the header of the list of item that have been
974  * flagged deprecated
975  */
976  virtual QCString trDeprecatedList()
977  {
978  return "Deprecated Lijst";
979  }
980 
981 //////////////////////////////////////////////////////////////////////////
982 // new since 1.2.18
983 //////////////////////////////////////////////////////////////////////////
984 
985  /*! Used as a header for a section of events found in a C# program
986  */
987  virtual QCString trEvents()
988  {
989  return "Events";
990  }
991  /*! Header used for the documentation section of a class' events. */
993  {
994  return "Event Documentatie";
995  }
996 
997 //////////////////////////////////////////////////////////////////////////
998 // new since 1.3
999 //////////////////////////////////////////////////////////////////////////
1000 
1001  /*! Used as a heading for a list of Java class types with package scope.
1002  */
1003  virtual QCString trPackageTypes()
1004  {
1005  return "Package Types";
1006  }
1007  /*! Used as a heading for a list of Java class functions with package
1008  * scope.
1009  */
1010  virtual QCString trPackageMembers()
1011  {
1012  return "Package Functies";
1013  }
1014  /*! Used as a heading for a list of static Java class functions with
1015  * package scope.
1016  */
1018  {
1019  return "Statische Package Functies";
1020  }
1021  /*! Used as a heading for a list of Java class variables with package
1022  * scope.
1023  */
1024  virtual QCString trPackageAttribs()
1025  {
1026  return "Package Attributen";
1027  }
1028  /*! Used as a heading for a list of static Java class variables with
1029  * package scope.
1030  */
1032  {
1033  return "Statische Package Attributen";
1034  }
1035 
1036 //////////////////////////////////////////////////////////////////////////
1037 // new since 1.3.1
1038 //////////////////////////////////////////////////////////////////////////
1040  /*! Used in the quick index of a class/file/namespace member list page
1041  * to link to the unfiltered list of all members.
1042  */
1043  virtual QCString trAll()
1044  {
1045  return "Alle";
1046  }
1047  /*! Put in front of the call graph for a function. */
1048  virtual QCString trCallGraph()
1049  {
1050  return "Hier is de call graaf voor deze functie:";
1051  }
1052 
1053 //////////////////////////////////////////////////////////////////////////
1054 // new since 1.3.3
1055 //////////////////////////////////////////////////////////////////////////
1056 
1057  /*! This string is used as the title for the page listing the search
1058  * results.
1059  */
1060  virtual QCString trSearchResultsTitle()
1061  {
1062  return "Zoek Resultaten";
1063  }
1064  /*! This string is put just before listing the search results. The
1065  * text can be different depending on the number of documents found.
1066  * Inside the text you can put the special marker $num to insert
1067  * the number representing the actual number of search results.
1068  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1069  * value 2 represents 2 or more matches. HTML markup is allowed inside
1070  * the returned string.
1071  */
1072  virtual QCString trSearchResults(int numDocuments)
1073  {
1074  if (numDocuments==0)
1075  {
1076  return "Helaas, er zijn geen documenten gevonden die aan de zoekopdracht voldoen.";
1077  }
1078  else if (numDocuments==1)
1079  {
1080  return "Er is <b>1</b> document gevonden dat aan de zoekopdracht voldoet.";
1081  }
1082  else
1083  {
1084  return "Er zijn <b>$num</b> documenten gevonden die aan de zoekopdracht voldoen. "
1085  "De beste resultaten worden eerst getoond.";
1086  }
1087  }
1088  /*! This string is put before the list of matched words, for each search
1089  * result. What follows is the list of words that matched the query.
1090  */
1091  virtual QCString trSearchMatches()
1092  {
1093  return "Gevonden:";
1094  }
1095 
1096 //////////////////////////////////////////////////////////////////////////
1097 // new since 1.3.8
1098 //////////////////////////////////////////////////////////////////////////
1099 
1100  /*! This is used in HTML as the title of page with source code for file filename
1101  */
1102  virtual QCString trSourceFile(QCString& filename)
1103  {
1104  return filename + " Bron Bestand";
1105  }
1107 //////////////////////////////////////////////////////////////////////////
1108 // new since 1.3.9
1109 //////////////////////////////////////////////////////////////////////////
1110 
1111  /*! This is used as the name of the chapter containing the directory
1112  * hierarchy.
1113  */
1114  virtual QCString trDirIndex()
1115  { return "Folder Hi&euml;rarchie"; }
1116 
1117  /*! This is used as the name of the chapter containing the documentation
1118  * of the directories.
1119  */
1120  virtual QCString trDirDocumentation()
1121  { return "Folder Documentatie"; }
1122 
1123  /*! This is used as the title of the directory index and also in the
1124  * Quick links of a HTML page, to link to the directory hierarchy.
1125  */
1126  virtual QCString trDirectories()
1127  { return "Folders"; }
1128 
1129  /*! This returns a sentences that introduces the directory hierarchy.
1130  * and the fact that it is sorted alphabetically per level
1131  */
1132  virtual QCString trDirDescription()
1133  { return "Deze folder hi&euml;rarchie is min of meer alfabetisch "
1134  "gesorteerd:";
1135  }
1136 
1137  /*! This returns the title of a directory page. The name of the
1138  * directory is passed via \a dirName.
1139  */
1140  virtual QCString trDirReference(const QCString &dirName)
1141  { QCString result=dirName; result+=" Folder Referentie"; return result; }
1142 
1143  /*! This returns the word directory with or without starting capital
1144  * (\a first_capital) and in sigular or plural form (\a singular).
1145  */
1146  virtual QCString trDir(bool first_capital, bool singular)
1147  {
1148  QCString result((first_capital ? "Folder" : "folder"));
1149  if (!singular) result+="s";
1150  return result;
1151  }
1152 
1153 //////////////////////////////////////////////////////////////////////////
1154 // new since 1.4.1
1155 //////////////////////////////////////////////////////////////////////////
1156 
1157  /*! This text is added to the documentation when the \\overload command
1158  * is used for a function.
1159  */
1160  virtual QCString trOverloadText()
1161  {
1162  return "Deze functie is overloaded en is beschikbaar gemaakt om het "
1163  "gebruik te vergemakkelijken. Ze verschilt alleen van de "
1164  "bovenstaande functie wat betreft de parameterlijst.";
1165  }
1166 
1167 //////////////////////////////////////////////////////////////////////////
1168 // new since 1.4.6
1169 //////////////////////////////////////////////////////////////////////////
1170 
1171  /*! Put in front of the call graph for a function. */
1172  virtual QCString trCallerGraph()
1173  {
1174  return "Hier is de caller graaf voor deze functie:";
1175  }
1176 
1177  /*! header that is put before the list of member subprograms (Fortran). */
1179  { return "Member Functie/Subroutine Documentatie"; }
1180 
1181 //////////////////////////////////////////////////////////////////////////
1182 // new since 1.5.4 (mainly for Fortran)
1183 //////////////////////////////////////////////////////////////////////////
1184 
1185  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1187  { return "Lijst met data types"; }
1188 
1189  /*! This is put above each page as a link to all members of compounds (Fortran). */
1191  { return "Data velden"; }
1192 
1193  /*! This is an introduction to the annotated compound list (Fortran). */
1195  { return "Hieronder volgen de data types elk een korte beschrijving:"; }
1196 
1197  /*! This is an introduction to the page with all data types (Fortran). */
1198  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1199  {
1200  QCString result="Hieronder volgt de lijst met alle ";
1201  if (!extractAll) result+="gedocumenteerde ";
1202  result+="data types met links naar ";
1203  if (!extractAll) result+="de klasse documentatie voor elke member:";
1204  else result+="de klassen waartoe ze behoren:";
1205  return result;
1206  }
1207 
1208  /*! This is used in LaTeX as the title of the chapter with the
1209  * annotated compound index (Fortran).
1210  */
1212  { return "Data Type Index"; }
1214  /*! This is used in LaTeX as the title of the chapter containing
1215  * the documentation of all data types (Fortran).
1216  */
1217  virtual QCString trTypeDocumentation()
1218  { return "Data Type Documentatie"; }
1219 
1220  /*! This is used in the documentation of a file as a header before the
1221  * list of (global) subprograms (Fortran).
1222  */
1223  virtual QCString trSubprograms()
1224  { return "Functies/Subroutines"; }
1225 
1226  /*! This is used in the documentation of a file/namespace before the list
1227  * of documentation blocks for subprograms (Fortran)
1228  */
1230  { return "Functie/Subroutine Documentatie"; }
1231 
1232  /*! This is used in the documentation of a file/namespace/group before
1233  * the list of links to documented compounds (Fortran)
1234  */
1235  virtual QCString trDataTypes()
1236  { return "Data Types"; }
1237 
1238  /*! used as the title of page containing all the index of all modules (Fortran). */
1239  virtual QCString trModulesList()
1240  { return "Module Lijst"; }
1241 
1242  /*! used as an introduction to the modules list (Fortran) */
1243  virtual QCString trModulesListDescription(bool extractAll)
1244  {
1245  QCString result="Hieronder volgt de lijst met alle ";
1246  if (!extractAll) result+="gedocumenteerde ";
1247  result+="modulen, elk met een korte beschrijving:";
1248  return result;
1249  }
1251  /*! used as the title of the HTML page of a module/type (Fortran) */
1252  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1253  ClassDef::CompoundType compType,
1254  bool isTemplate)
1255  {
1256  QCString result=(QCString)clName;
1257  switch(compType)
1258  {
1259  case ClassDef::Class: result+=" Module"; break;
1260  case ClassDef::Struct: result+=" Type"; break;
1261  case ClassDef::Union: result+=" Union"; break;
1262  case ClassDef::Interface: result+=" Interface"; break;
1263  case ClassDef::Protocol: result+=" Protocol"; break;
1264  case ClassDef::Category: result+=" Category"; break;
1265  case ClassDef::Exception: result+=" Exception"; break;
1266  default: break;
1267  }
1268  if (isTemplate) result+=" Template";
1269  result+=" Referentie";
1270  return result;
1271  }
1272  /*! used as the title of the HTML page of a module (Fortran) */
1273  virtual QCString trModuleReference(const QCString &namespaceName)
1274  {
1275  QCString result=namespaceName;
1276  result+=" Module Referentie";
1277  return result;
1278  }
1279 
1280  /*! This is put above each page as a link to all members of modules. (Fortran) */
1281  virtual QCString trModulesMembers()
1282  { return "Module Members"; }
1283 
1284  /*! This is an introduction to the page with all modules members (Fortran) */
1285  virtual QCString trModulesMemberDescription(bool extractAll)
1286  {
1287  QCString result="Hier is een lijst van alle ";
1288  if (!extractAll) result+="gedocumenteerde ";
1289  result+="module members met links naar ";
1290  if (extractAll)
1291  result+="de module documentatie voor iedere member:";
1292  else
1293  result+="de module waartoe ze behoren:";
1294  return result;
1295  }
1297  /*! This is used in LaTeX as the title of the chapter with the
1298  * index of all modules (Fortran).
1299  */
1301  { return "Module Index"; }
1302 
1303  /*! This is used for translation of the word that will possibly
1304  * be followed by a single name or by a list of names
1305  * of the category.
1306  */
1307  virtual QCString trModule(bool first_capital, bool singular)
1308  {
1309  QCString result((first_capital ? "Module" : "module"));
1310  if (!singular) result+="n";
1311  return result;
1312  }
1313  /*! This is put at the bottom of a module documentation page and is
1314  * followed by a list of files that were used to generate the page.
1315  */
1317  bool single)
1318  { // here s is one of " Class", " Struct" or " Union"
1319  // single is true implies a single file
1320  QCString result=(QCString)"De documentatie voor ";
1321  switch(compType)
1322  {
1323  case ClassDef::Class: result+="deze module"; break;
1324  case ClassDef::Struct: result+="dit type"; break;
1325  case ClassDef::Union: result+="deze union"; break;
1326  case ClassDef::Interface: result+="dit interface"; break;
1327  case ClassDef::Protocol: result+="dit protocol"; break;
1328  case ClassDef::Category: result+="deze category"; break;
1329  case ClassDef::Exception: result+="deze exception"; break;
1330  default: break;
1331  }
1332  result+=" is gegenereerd op grond van ";
1333  if (single) result+="het"; else result+="de";
1334  result+=" volgende bestand";
1335  if (single) result+=":"; else result+="en:";
1336  return result;
1337  }
1338  /*! This is used for translation of the word that will possibly
1339  * be followed by a single name or by a list of names
1340  * of the category.
1341  */
1342  virtual QCString trType(bool first_capital, bool singular)
1343  {
1344  QCString result((first_capital ? "Type" : "type"));
1345  if (!singular) result+="s";
1346  return result;
1347  }
1348  /*! This is used for translation of the word that will possibly
1349  * be followed by a single name or by a list of names
1350  * of the category.
1351  */
1352  virtual QCString trSubprogram(bool first_capital, bool singular)
1353  {
1354  QCString result((first_capital ? "Subprogramma" : "subprogramma"));
1355  if (!singular) result+="s";
1356  return result;
1357  }
1358 
1359  /*! C# Type Contraint list */
1360  virtual QCString trTypeConstraints()
1361  {
1362  return "Type Beperkingen";
1363  }
1364 
1365 //////////////////////////////////////////////////////////////////////////
1366 // new since 1.6.0
1367 //////////////////////////////////////////////////////////////////////////
1368 
1369  /*! directory relation for \a name */
1370  virtual QCString trDirRelation(const QCString &name)
1371  {
1372  return QCString(name)+" Relatie";
1373  }
1374 
1375  /*! Loading message shown when loading search results */
1376  virtual QCString trLoading()
1377  {
1378  return "Laden...";
1379  }
1380 
1381  /*! Label used for search results in the global namespace */
1382  virtual QCString trGlobalNamespace()
1383  {
1384  return "Globale Namespace";
1385  }
1386 
1387  /*! Message shown while searching */
1388  virtual QCString trSearching()
1389  {
1390  return "Zoeken...";
1391  }
1392 
1393  /*! Text shown when no search results are found */
1394  virtual QCString trNoMatches()
1395  {
1396  return "Niets gevonden";
1397  }
1398 
1399 //////////////////////////////////////////////////////////////////////////
1400 // new since 1.6.3 (missing items for the directory pages)
1401 //////////////////////////////////////////////////////////////////////////
1402 
1403  /*! when clicking a directory dependency label, a page with a
1404  * table is shown. The heading for the first column mentions the
1405  * source file that has a relation to another file.
1406  */
1407  virtual QCString trFileIn(const QCString &name)
1408  {
1409  return (QCString)"Bestand in "+name;
1410  }
1411 
1412  /*! when clicking a directory dependency label, a page with a
1413  * table is shown. The heading for the second column mentions the
1414  * destination file that is included.
1415  */
1416  virtual QCString trIncludesFileIn(const QCString &name)
1417  {
1418  return (QCString)"Includeert bestand in "+name;
1419  }
1420  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1421  int hour,int minutes,int seconds,
1422  bool includeTime)
1423  {
1424  static const char *days[] = { "Ma","Di","Wo","Do","Vr","Za","Zo" };
1425  static const char *months[] = { "Jan","Feb","Maa","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Dec" };
1426  QCString sdate;
1427  sdate.sprintf("%s %d %s %d",days[dayOfWeek-1],day,months[month-1],year);
1428  if (includeTime)
1429  {
1430  QCString stime;
1431  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1432  sdate+=stime;
1433  }
1434  return sdate;
1435  }
1436 
1437 //////////////////////////////////////////////////////////////////////////
1438 // new since 1.7.5
1439 //////////////////////////////////////////////////////////////////////////
1440 
1441  /*! Header for the page with bibliographic citations */
1442  virtual QCString trCiteReferences()
1443  { return "Bibliografie"; }
1444 
1445  /*! Text for copyright paragraph */
1446  virtual QCString trCopyright()
1447  { return "Copyright"; }
1448 
1449  /*! Header for the graph showing the directory dependencies */
1450  virtual QCString trDirDepGraph(const QCString &name)
1451  { return QCString("Folder afhankelijkheidsgraaf voor ")+name+":"; }
1452 
1453 //////////////////////////////////////////////////////////////////////////
1454 // new since 1.8.0
1455 //////////////////////////////////////////////////////////////////////////
1456 
1457  /*! Detail level selector shown for hierarchical indices */
1458  virtual QCString trDetailLevel()
1459  { return "detail niveau"; }
1460 
1461  /*! Section header for list of template parameters */
1462  virtual QCString trTemplateParameters()
1463  { return "Template Parameters"; }
1464 
1465  /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1466  virtual QCString trAndMore(const QCString &number)
1467  { return "en "+number+ " anderen..."; }
1468 
1469  /*! Used file list for a Java enum */
1470  virtual QCString trEnumGeneratedFromFiles(bool single)
1471  { QCString result = "De documentatie voor deze enum is gegenereerd op grond van ";
1472  if (single) result+="het"; else result+="de";
1473  result+=" volgende bestand";
1474  if (single) result+=":"; else result+="en:";
1475  return result;
1476  }
1478  /*! Header of a Java enum page (Java enums are represented as classes). */
1479  virtual QCString trEnumReference(const QCString &name)
1480  { return QCString(name)+" Enum Referentie"; }
1482  /*! Used for a section containing inherited members */
1483  virtual QCString trInheritedFrom(const QCString &members,const QCString &what)
1484  { return QCString(members)+" overge&euml;rfd van "+what; }
1486  /*! Header of the sections with inherited members specific for the
1487  * base class(es)
1488  */
1490  { return "Additionele Overge&euml;rfde Members"; }
1491 
1492 //////////////////////////////////////////////////////////////////////////
1493 // new since 1.8.2
1494 //////////////////////////////////////////////////////////////////////////
1495 
1496  /*! Used as a tooltip for the toggle button that appears in the
1497  * navigation tree in the HTML output when GENERATE_TREEVIEW is
1498  * enabled. This tooltip explains the meaning of the button.
1499  */
1500  virtual QCString trPanelSynchronisationTooltip(bool enable)
1501  {
1502  QCString opt = enable ? "in" : "uit";
1503  return "klik hier de paneel synchronisatie "+opt+" the schakelen";
1504  }
1505 
1506  /*! Used in a method of an Objective-C class that is declared in a
1507  * a category. Note that the @1 marker is required and is replaced
1508  * by a link.
1509  */
1510  virtual QCString trProvidedByCategory()
1511  {
1512  return "Wordt aangeboden door category @0.";
1513  }
1514 
1515  /*! Used in a method of an Objective-C category that extends a class.
1516  * Note that the @1 marker is required and is replaced by a link to
1517  * the class method.
1518  */
1519  virtual QCString trExtendsClass()
1520  {
1521  return "Uitbereiding van klasse @0.";
1522  }
1523 
1524  /*! Used as the header of a list of class methods in Objective-C.
1525  * These are similar to static public member functions in C++.
1526  */
1527  virtual QCString trClassMethods()
1528  {
1529  return "Klasse Methoden";
1530  }
1531 
1532  /*! Used as the header of a list of instance methods in Objective-C.
1533  * These are similar to public member functions in C++.
1534  */
1535  virtual QCString trInstanceMethods()
1536  {
1537  return "Instantie Methoden";
1538  }
1539 
1540  /*! Used as the header of the member functions of an Objective-C class.
1541  */
1543  {
1544  return "Methode Documentatie";
1545  }
1546 
1547 //////////////////////////////////////////////////////////////////////////
1548 // new since 1.8.4
1549 //////////////////////////////////////////////////////////////////////////
1551  /** old style UNO IDL services: implemented interfaces */
1552  virtual QCString trInterfaces()
1553  { return "Ge&euml;porteerde Interfaces"; }
1554 
1555  /** old style UNO IDL services: inherited services */
1556  virtual QCString trServices()
1557  { return "Ge&iuml;ncludeerde Services"; }
1558 
1559  /** UNO IDL constant groups */
1560  virtual QCString trConstantGroups()
1561  { return "Konstanten Groepen"; }
1562 
1563  /** UNO IDL constant groups */
1564  virtual QCString trConstantGroupReference(const QCString &namespaceName)
1565  {
1566  QCString result=namespaceName;
1567  result+=" Konstanten Groepen Referentie";
1568  return result;
1569  }
1570  /** UNO IDL service page title */
1571  virtual QCString trServiceReference(const QCString &sName)
1572  {
1573  QCString result=(QCString)sName;
1574  result+=" Service Referentie";
1575  return result;
1576  }
1577  /** UNO IDL singleton page title */
1578  virtual QCString trSingletonReference(const QCString &sName)
1579  {
1580  QCString result=(QCString)sName;
1581  result+=" Singleton Referentie";
1582  return result;
1583  }
1584  /** UNO IDL service page */
1585  virtual QCString trServiceGeneratedFromFiles(bool single)
1586  { QCString result = "De documentatie voor deze service is gegenereerd op grond van ";
1587  if (single) result+="het"; else result+="de";
1588  result+=" volgende bestand";
1589  if (single) result+=":"; else result+="en:";
1590  return result;
1591  }
1592  /** UNO IDL singleton page */
1594  { QCString result = "De documentatie voor deze singleton is gegenereerd op grond van ";
1595  if (single) result+="het"; else result+="de";
1596  result+=" volgende bestand";
1597  if (single) result+=":"; else result+="en:";
1598  return result;
1599  }
1601 //////////////////////////////////////////////////////////////////////////
1602 // new since 1.8.15
1603 //////////////////////////////////////////////////////////////////////////
1604 
1605  /** VHDL design unit hierarchy */
1607  { return "Ontwerp Eenheid Hi&euml;rarchie"; }
1608  /** VHDL design unit list */
1609  virtual QCString trDesignUnitList()
1610  { return "Ontwerp Eenheid Lijst"; }
1611  /** VHDL design unit members */
1612  virtual QCString trDesignUnitMembers()
1613  { return "Ontwerp Eenheid Members"; }
1614  /** VHDL design unit list description */
1616  {
1617  return "hieronder volgt de lijst met all ontwerp eenheden met links "
1618  "naar de entiteiten waar ze bij behoren:";
1619  }
1620  /** VHDL design unit index */
1622  { return "Ontwerp Eenheid Index"; }
1623  /** VHDL design units */
1625  { return "Ontwerp Eenheden"; }
1626  /** VHDL functions/procedures/processes */
1628  { return "Functies/Procedures/Processen"; }
1629  /** VHDL type */
1630  virtual QCString trVhdlType(uint64 type,bool single)
1631  {
1632  switch(type)
1633  {
1634  case VhdlDocGen::LIBRARY:
1635  if (single) return "Bibliotheek";
1636  else return "Bibliotheken";
1637  case VhdlDocGen::PACKAGE:
1638  if (single) return "Package";
1639  else return "Packages";
1640  case VhdlDocGen::SIGNAL:
1641  if (single) return "Signal";
1642  else return "Signals";
1643  case VhdlDocGen::COMPONENT:
1644  if (single) return "Bestanddeel";
1645  else return "Bestanddelen";
1646  case VhdlDocGen::CONSTANT:
1647  if (single) return "Konstante";
1648  else return "Konstanten";
1649  case VhdlDocGen::ENTITY:
1650  if (single) return "Entiteit";
1651  else return "Entiteiten";
1652  case VhdlDocGen::TYPE:
1653  if (single) return "Type";
1654  else return "Types";
1655  case VhdlDocGen::SUBTYPE:
1656  if (single) return "Ondertype";
1657  else return "Ondertypes";
1658  case VhdlDocGen::FUNCTION:
1659  if (single) return "Funktie";
1660  else return "Funkties";
1661  case VhdlDocGen::RECORD:
1662  if (single) return "Record";
1663  else return "Records";
1664  case VhdlDocGen::PROCEDURE:
1665  if (single) return "Procedure";
1666  else return "Procedures";
1668  if (single) return "Architectuur";
1669  else return "Architecturen";
1670  case VhdlDocGen::ATTRIBUTE:
1671  if (single) return "Attribuut";
1672  else return "Attributen";
1673  case VhdlDocGen::PROCESS:
1674  if (single) return "Proces";
1675  else return "Processen";
1676  case VhdlDocGen::PORT:
1677  if (single) return "Poort";
1678  else return "Porten";
1679  case VhdlDocGen::USE:
1680  if (single) return "gebruiks clausule";
1681  else return "Gebruiks Clausules";
1682  case VhdlDocGen::GENERIC:
1683  if (single) return "Algemeen";
1684  else return "Algemene";
1686  return "Package Body";
1687  case VhdlDocGen::UNITS:
1688  return "Eenheden";
1690  if (single) return "Gedeelde Variable";
1691  else return "Gedeelde Variablen";
1692  case VhdlDocGen::VFILE:
1693  if (single) return "Bestand";
1694  else return "Bestanden";
1695  case VhdlDocGen::GROUP:
1696  if (single) return "Groep";
1697  else return "Groepen";
1699  if (single) return "Instanti&euml;ring";
1700  else return "Instanti&euml;ringen";
1701  case VhdlDocGen::ALIAS:
1702  if (single) return "Alias";
1703  else return "Aliases";
1704  case VhdlDocGen::CONFIG:
1705  if (single) return "Configuratie";
1706  else return "Configuraties";
1708  return "Diverse";
1709  case VhdlDocGen::UCF_CONST:
1710  return "Limiteringen";
1711  default:
1712  return "Klasse";
1713  }
1714  }
1715  virtual QCString trCustomReference(const QCString &name)
1716  { return QCString(name)+" Referentie"; }
1717 
1718  /* Slice */
1719  virtual QCString trConstants()
1720  { return "Konstanten"; }
1722  { return "Documentatie van konstanten"; }
1723  virtual QCString trSequences()
1724  { return "Reeksen"; }
1726  { return "Documentatie van reeksen"; }
1727  virtual QCString trDictionaries()
1728  { return "Vertalingslijsten"; }
1730  { return "Documentatie van vertalingslijsten"; }
1731  virtual QCString trSliceInterfaces()
1732  { return "Interfaces"; }
1733  virtual QCString trInterfaceIndex()
1734  { return "Index van interfaces"; }
1735  virtual QCString trInterfaceList()
1736  { return "Lijst van interfaces"; }
1738  { return "Hieronder volgt de lijst met alle interfaces, elk met een korte beschrijving:"; }
1739  virtual QCString trInterfaceHierarchy()
1740  { return "Interface Hi&euml;rarchie"; }
1742  { return "Deze inheritance lijst is min of meer alfabetisch gesorteerd:"; }
1744  { return "Documentatie van interfaces"; }
1745  virtual QCString trStructs()
1746  { return "Structs"; }
1747  virtual QCString trStructIndex()
1748  { return "Index van struct"; }
1749  virtual QCString trStructList()
1750  { return "Lijst van struct"; }
1752  { return "Hieronder volgt de lijst met alle structs, elk met een korte beschrijving:"; }
1754  { return "Documentatie van structs"; }
1755  virtual QCString trExceptionIndex()
1756  { return "Index van exceptions"; }
1757  virtual QCString trExceptionList()
1758  { return "Lijst van exceptions"; }
1760  { return "Hieronder volgt de lijst met alle exeptions, elk met een korte beschrijving:"; }
1761  virtual QCString trExceptionHierarchy()
1762  { return "Exception Hi&euml;rarchie"; }
1764  { return "Deze inheritance lijst is min of meer alfabetisch gesorteerd:"; }
1766  { return "Documentatie van exceptions"; }
1767  virtual QCString trCompoundReferenceSlice(const QCString &clName, ClassDef::CompoundType compType, bool isLocal)
1768  {
1769  QCString result=(QCString)clName;
1770  if (isLocal) result+=" Lokale";
1771  switch(compType)
1772  {
1773  case ClassDef::Class: result+=" Class"; break;
1774  case ClassDef::Struct: result+=" Struct"; break;
1775  case ClassDef::Union: result+=" Union"; break;
1776  case ClassDef::Interface: result+=" Interface"; break;
1777  case ClassDef::Protocol: result+=" Protocol"; break;
1778  case ClassDef::Category: result+=" Category"; break;
1779  case ClassDef::Exception: result+=" Exception"; break;
1780  default: break;
1781  }
1782  result+=" Referentie";
1783  return result;
1784  }
1785  virtual QCString trOperations()
1786  { return "Bewerkingen"; }
1788  { return "Documentatie van bewerkingen"; }
1789  virtual QCString trDataMembers()
1790  { return "Data members"; }
1792  { return "Documentatie van data members"; }
1793 
1794 //////////////////////////////////////////////////////////////////////////
1795 // new since 1.8.19
1796 //////////////////////////////////////////////////////////////////////////
1798  { return "Ontwerp Eenheid Documentatie"; }
1799 
1800 //////////////////////////////////////////////////////////////////////////
1801 // new since 1.9.2
1802 //////////////////////////////////////////////////////////////////////////
1803  virtual QCString trConcept(bool first_capital, bool singular)
1804  {
1805  QCString result((first_capital ? "Concept" : "concept"));
1806  if (!singular) result+="en";
1807  return result;
1808  }
1809 
1810  virtual QCString trConceptReference(const QCString &conceptName)
1811  {
1812  QCString result=conceptName;
1813  result+=" Concept Referentie";
1814  return result;
1815  }
1816 
1817  virtual QCString trConceptList()
1818  { return "Concept Lijst"; }
1819 
1820  virtual QCString trConceptIndex()
1821  { return "Concept Index"; }
1822 
1824  { return "Concept Documentatie"; }
1826  virtual QCString trConceptListDescription(bool extractAll)
1827  {
1828  QCString result="Hieronder volgt de lijst met alle ";
1829  if (!extractAll) result+="gedocumenteerde ";
1830  result+="concepten, elk met een korte beschrijving:";
1831  return result;
1832  }
1833 
1834  virtual QCString trConceptDefinition()
1835  {
1836  return "Concept definitie";
1837  }
1839 };
1840 
1841 #endif
TranslatorDutch::trTypedefs
QCString trTypedefs()
Definition: translator_nl.h:196
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorDutch::trConstructorDocumentation
QCString trConstructorDocumentation()
Definition: translator_nl.h:507
TranslatorDutch::trSearching
virtual QCString trSearching()
Definition: translator_nl.h:1403
TranslatorDutch::trMemberEnumerationDocumentation
QCString trMemberEnumerationDocumentation()
Definition: translator_nl.h:64
VhdlDocGen::PROCEDURE
@ PROCEDURE
Definition: vhdldocgen.h:95
TranslatorDutch::trMainPage
QCString trMainPage()
Definition: translator_nl.h:461
TranslatorDutch::trTestList
QCString trTestList()
Definition: translator_nl.h:737
TranslatorDutch::trFileDocumentation
QCString trFileDocumentation()
Definition: translator_nl.h:185
TranslatorDutch::trSequenceDocumentation
virtual QCString trSequenceDocumentation()
Definition: translator_nl.h:1740
TranslatorDutch::trTest
QCString trTest()
Definition: translator_nl.h:732
VhdlDocGen::TYPE
@ TYPE
Definition: vhdldocgen.h:91
TranslatorDutch::trVariables
QCString trVariables()
Definition: translator_nl.h:202
TranslatorDutch::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_nl.h:1232
TranslatorDutch::trInheritedFrom
virtual QCString trInheritedFrom(const QCString &members, const QCString &what)
Definition: translator_nl.h:1498
TranslatorDutch::trInterfaceList
virtual QCString trInterfaceList()
Definition: translator_nl.h:1750
TranslatorDutch::trInterfaceHierarchy
virtual QCString trInterfaceHierarchy()
Definition: translator_nl.h:1754
TranslatorDutch::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_nl.h:1267
TranslatorDutch::trModulesList
virtual QCString trModulesList()
Definition: translator_nl.h:1254
VhdlDocGen::COMPONENT
@ COMPONENT
Definition: vhdldocgen.h:89
TranslatorDutch::trReturns
QCString trReturns()
Definition: translator_nl.h:239
TranslatorDutch::trEvents
virtual QCString trEvents()
Definition: translator_nl.h:1002
TranslatorDutch::trInterfaceHierarchyDescription
virtual QCString trInterfaceHierarchyDescription()
Definition: translator_nl.h:1756
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorDutch::trExceptions
QCString trExceptions()
Definition: translator_nl.h:245
TranslatorDutch::trExceptionDocumentation
virtual QCString trExceptionDocumentation()
Definition: translator_nl.h:1780
TranslatorDutch::trTypedefDocumentation
QCString trTypedefDocumentation()
Definition: translator_nl.h:208
TranslatorDutch::trParameters
QCString trParameters()
Definition: translator_nl.h:243
VhdlDocGen::SUBTYPE
@ SUBTYPE
Definition: vhdldocgen.h:92
TranslatorDutch::trEnumValue
QCString trEnumValue()
Definition: translator_nl.h:88
TranslatorDutch::trGeneratedAutomatically
QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_nl.h:80
TranslatorDutch::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_nl.h:1007
TranslatorDutch::trCopyright
virtual QCString trCopyright()
Definition: translator_nl.h:1461
TranslatorDutch::idLanguage
QCString idLanguage()
Definition: translator_nl.h:39
TranslatorDutch::trGotoSourceCode
QCString trGotoSourceCode()
Definition: translator_nl.h:512
TranslatorDutch::trBug
QCString trBug()
Definition: translator_nl.h:797
TranslatorDutch::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_nl.h:1106
TranslatorDutch::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_nl.h:1075
TranslatorDutch::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_nl.h:1025
TranslatorDutch::trCompoundIndex
QCString trCompoundIndex()
Definition: translator_nl.h:177
TranslatorDutch::trPublicTypes
QCString trPublicTypes()
Definition: translator_nl.h:571
TranslatorDutch::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_nl.h:1213
TranslatorDutch::trProvidedByCategory
virtual QCString trProvidedByCategory()
Definition: translator_nl.h:1525
TranslatorDutch::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_nl.h:926
TranslatorDutch::trDetailedDescription
QCString trDetailedDescription()
Definition: translator_nl.h:60
VhdlDocGen::ENTITY
@ ENTITY
Definition: vhdldocgen.h:83
VhdlDocGen::SIGNAL
@ SIGNAL
Definition: vhdldocgen.h:88
TranslatorDutch::trClassDiagram
QCString trClassDiagram(const QCString &clName)
Definition: translator_nl.h:227
TranslatorDutch::trFileMembers
QCString trFileMembers()
Definition: translator_nl.h:102
TranslatorDutch::trConceptListDescription
virtual QCString trConceptListDescription(bool extractAll)
Definition: translator_nl.h:1841
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorDutch::trFileList
QCString trFileList()
Definition: translator_nl.h:98
TranslatorDutch::trPrecondition
QCString trPrecondition()
Definition: translator_nl.h:522
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
VhdlDocGen::CONFIG
@ CONFIG
Definition: vhdldocgen.h:105
VhdlDocGen::GENERIC
@ GENERIC
Definition: vhdldocgen.h:100
TranslatorDutch::trDictionaryDocumentation
virtual QCString trDictionaryDocumentation()
Definition: translator_nl.h:1744
TranslatorDutch::trTemplateParameters
virtual QCString trTemplateParameters()
Definition: translator_nl.h:1477
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorDutch::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_nl.h:1244
TranslatorDutch::trModuleDocumentation
QCString trModuleDocumentation()
Definition: translator_nl.h:181
TranslatorDutch::trDesignUnitIndex
virtual QCString trDesignUnitIndex()
VHDL design unit index
Definition: translator_nl.h:1636
VhdlDocGen::PACKAGE
@ PACKAGE
Definition: vhdldocgen.h:86
TranslatorDutch::trConceptDocumentation
virtual QCString trConceptDocumentation()
Definition: translator_nl.h:1838
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorDutch::trRelatedFunctionDocumentation
QCString trRelatedFunctionDocumentation()
Definition: translator_nl.h:270
TranslatorDutch::trMemberFunctionDocumentation
QCString trMemberFunctionDocumentation()
Definition: translator_nl.h:66
TranslatorDutch::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_nl.h:915
TranslatorDutch::trCompoundList
QCString trCompoundList()
Definition: translator_nl.h:96
TranslatorDutch::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_nl.h:1367
TranslatorDutch::trAdditionalInheritedMembers
virtual QCString trAdditionalInheritedMembers()
Definition: translator_nl.h:1504
TranslatorDutch::trCompounds
QCString trCompounds()
Definition: translator_nl.h:218
TranslatorDutch::trReimplementedInList
QCString trReimplementedInList(int numEntries)
Definition: translator_nl.h:378
TranslatorDutch::trForInternalUseOnly
QCString trForInternalUseOnly()
Definition: translator_nl.h:231
TranslatorDutch::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_nl.h:860
TranslatorDutch::trStaticProtectedAttribs
QCString trStaticProtectedAttribs()
Definition: translator_nl.h:591
TranslatorDutch::trServiceGeneratedFromFiles
virtual QCString trServiceGeneratedFromFiles(bool single)
UNO IDL service page
Definition: translator_nl.h:1600
TranslatorDutch::trConcept
virtual QCString trConcept(bool first_capital, bool singular)
Definition: translator_nl.h:1818
TranslatorDutch::trDetailLevel
virtual QCString trDetailLevel()
Definition: translator_nl.h:1473
TranslatorDutch::trServices
virtual QCString trServices()
old style UNO IDL services: inherited services
Definition: translator_nl.h:1571
TranslatorDutch::trGotoGraphicalHierarchy
QCString trGotoGraphicalHierarchy()
Definition: translator_nl.h:550
TranslatorDutch::trEnumGeneratedFromFiles
virtual QCString trEnumGeneratedFromFiles(bool single)
Definition: translator_nl.h:1485
TranslatorDutch::trDesignUnits
virtual QCString trDesignUnits()
VHDL design units
Definition: translator_nl.h:1639
TranslatorDutch
Definition: translator_nl.h:21
TranslatorDutch::trFunctionDocumentation
QCString trFunctionDocumentation()
Definition: translator_nl.h:214
TranslatorDutch::trPackageList
QCString trPackageList()
Definition: translator_nl.h:772
TranslatorDutch::trInstanceMethods
virtual QCString trInstanceMethods()
Definition: translator_nl.h:1550
TranslatorDutch::trStaticPublicAttribs
QCString trStaticPublicAttribs()
Definition: translator_nl.h:579
TranslatorDutch::trLegend
QCString trLegend()
Definition: translator_nl.h:722
TranslatorDutch::trProtectedMembers
QCString trProtectedMembers()
Definition: translator_nl.h:322
TranslatorDutch::trRelatedFunctions
QCString trRelatedFunctions()
Definition: translator_nl.h:56
TranslatorDutch::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_nl.h:1039
TranslatorDutch::trModules
QCString trModules()
Definition: translator_nl.h:92
VhdlDocGen::VFILE
@ VFILE
Definition: vhdldocgen.h:103
VhdlDocGen::UNITS
@ UNITS
Definition: vhdldocgen.h:99
TranslatorDutch::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_nl.h:851
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorDutch::trEnumName
QCString trEnumName()
Definition: translator_nl.h:86
TranslatorDutch::trFileMembersDescription
QCString trFileMembersDescription(bool extractAll)
Definition: translator_nl.h:155
VhdlDocGen::PORT
@ PORT
Definition: vhdldocgen.h:98
TranslatorDutch::trDefineDocumentation
QCString trDefineDocumentation()
Definition: translator_nl.h:206
TranslatorDutch::trReferenceManual
QCString trReferenceManual()
Definition: translator_nl.h:191
TranslatorDutch::trReferencedBy
QCString trReferencedBy()
Definition: translator_nl.h:628
TranslatorDutch::trClassHierarchyDescription
QCString trClassHierarchyDescription()
Definition: translator_nl.h:110
TranslatorDutch::trCompoundReference
QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_nl.h:277
TranslatorDutch::trFileReference
QCString trFileReference(const QCString &fileName)
Definition: translator_nl.h:298
TranslatorDutch::trConceptIndex
virtual QCString trConceptIndex()
Definition: translator_nl.h:1835
TranslatorDutch::trReturnValues
QCString trReturnValues()
Definition: translator_nl.h:456
TranslatorDutch::trMemberDataDocumentation
QCString trMemberDataDocumentation()
Definition: translator_nl.h:68
TranslatorDutch::trWarning
QCString trWarning()
Definition: translator_nl.h:233
TranslatorDutch::trCustomReference
virtual QCString trCustomReference(const QCString &name)
Definition: translator_nl.h:1730
TranslatorDutch::trPrivateSlots
QCString trPrivateSlots()
Definition: translator_nl.h:330
TranslatorDutch::trDictionaries
virtual QCString trDictionaries()
Definition: translator_nl.h:1742
TranslatorDutch::trModuleIndex
QCString trModuleIndex()
Definition: translator_nl.h:173
TranslatorDutch::trSeeAlso
QCString trSeeAlso()
Definition: translator_nl.h:241
TranslatorDutch::trInheritsList
QCString trInheritsList(int numEntries)
Definition: translator_nl.h:360
TranslatorDutch::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_nl.h:964
TranslatorDutch::trWriteList
QCString trWriteList(int numEntries)
Definition: translator_nl.h:336
TranslatorDutch::trEnumerationValueDocumentation
QCString trEnumerationValueDocumentation()
Definition: translator_nl.h:212
TranslatorDutch::trExampleDocumentation
QCString trExampleDocumentation()
Definition: translator_nl.h:187
TranslatorDutch::trConstants
virtual QCString trConstants()
Definition: translator_nl.h:1734
TranslatorDutch::trVersion
QCString trVersion()
Definition: translator_nl.h:235
TranslatorDutch::trMemberList
QCString trMemberList()
Definition: translator_nl.h:74
TranslatorDutch::trFriends
QCString trFriends()
Definition: translator_nl.h:263
TranslatorDutch::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_nl.h:1018
TranslatorDutch::trServiceReference
virtual QCString trServiceReference(const QCString &sName)
UNO IDL service page title
Definition: translator_nl.h:1586
TranslatorDutch::trSearch
QCString trSearch()
Definition: translator_nl.h:108
TranslatorDutch::trPanelSynchronisationTooltip
virtual QCString trPanelSynchronisationTooltip(bool enable)
Definition: translator_nl.h:1515
TranslatorDutch::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_nl.h:1288
TranslatorDutch::trDesignUnitListDescription
virtual QCString trDesignUnitListDescription()
VHDL design unit list description
Definition: translator_nl.h:1630
TranslatorDutch::trConceptList
virtual QCString trConceptList()
Definition: translator_nl.h:1832
TranslatorDutch::trEnumReference
virtual QCString trEnumReference(const QCString &name)
Definition: translator_nl.h:1494
TranslatorDutch::trSliceInterfaces
virtual QCString trSliceInterfaces()
Definition: translator_nl.h:1746
TranslatorDutch::trPostcondition
QCString trPostcondition()
Definition: translator_nl.h:527
TranslatorDutch::trDirDescription
virtual QCString trDirDescription()
Definition: translator_nl.h:1147
TranslatorDutch::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_nl.h:871
VhdlDocGen::ALIAS
@ ALIAS
Definition: vhdldocgen.h:106
TranslatorDutch::trTodoList
QCString trTodoList()
Definition: translator_nl.h:619
TranslatorDutch::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_nl.h:1226
TranslatorDutch::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_nl.h:1032
TranslatorDutch::trInclDepGraph
QCString trInclDepGraph(const QCString &fName)
Definition: translator_nl.h:502
TranslatorDutch::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_nl.h:836
TranslatorDutch::trRemarks
QCString trRemarks()
Definition: translator_nl.h:632
TranslatorDutch::trDefines
QCString trDefines()
Definition: translator_nl.h:194
TranslatorDutch::trDesignUnitDocumentation
virtual QCString trDesignUnitDocumentation()
Definition: translator_nl.h:1812
Translator
Abstract base class for all translatable text fragments.
Definition: translator.h:25
VhdlDocGen::ARCHITECTURE
@ ARCHITECTURE
Definition: vhdldocgen.h:85
TranslatorDutch::trRelatedSubscript
QCString trRelatedSubscript()
Definition: translator_nl.h:58
TranslatorDutch::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_nl.h:1375
TranslatorDutch::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_nl.h:991
TranslatorDutch::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_nl.h:1135
TranslatorDutch::trNamespaceMembers
QCString trNamespaceMembers()
Definition: translator_nl.h:385
TranslatorDutch::trIncludingInheritedMembers
QCString trIncludingInheritedMembers()
Definition: translator_nl.h:78
TranslatorDutch::trPackageListDescription
QCString trPackageListDescription()
Definition: translator_nl.h:777
TranslatorDutch::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_nl.h:1296
TranslatorDutch::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_nl.h:1357
TranslatorDutch::trFunctionAndProc
virtual QCString trFunctionAndProc()
VHDL functions/procedures/processes
Definition: translator_nl.h:1642
TranslatorDutch::trClasses
QCString trClasses()
Definition: translator_nl.h:762
TranslatorDutch::trStaticProtectedMembers
QCString trStaticProtectedMembers()
Definition: translator_nl.h:326
VhdlDocGen::ATTRIBUTE
@ ATTRIBUTE
Definition: vhdldocgen.h:87
TranslatorDutch::trDocumentation
QCString trDocumentation()
Definition: translator_nl.h:171
TranslatorDutch::trOverloadText
virtual QCString trOverloadText()
Definition: translator_nl.h:1175
TranslatorDutch::trPublicMembers
QCString trPublicMembers()
Definition: translator_nl.h:314
TranslatorDutch::trStructList
virtual QCString trStructList()
Definition: translator_nl.h:1764
TranslatorDutch::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_nl.h:882
TranslatorDutch::trCompoundReferenceSlice
virtual QCString trCompoundReferenceSlice(const QCString &clName, ClassDef::CompoundType compType, bool isLocal)
Definition: translator_nl.h:1782
TranslatorDutch::trVariableDocumentation
QCString trVariableDocumentation()
Definition: translator_nl.h:216
TranslatorDutch::trCallGraph
virtual QCString trCallGraph()
Definition: translator_nl.h:1063
TranslatorDutch::trPackage
QCString trPackage(const QCString &name)
Definition: translator_nl.h:767
TranslatorDutch::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_nl.h:1155
VhdlDocGen::CONSTANT
@ CONSTANT
Definition: vhdldocgen.h:90
TranslatorDutch::trInclByDepGraph
QCString trInclByDepGraph()
Definition: translator_nl.h:640
TranslatorDutch::trPageIndex
QCString trPageIndex()
Definition: translator_nl.h:558
TranslatorDutch::trRelatedPages
QCString trRelatedPages()
Definition: translator_nl.h:104
TranslatorDutch::trProperties
QCString trProperties()
Definition: translator_nl.h:747
TranslatorDutch::trProtectedTypes
QCString trProtectedTypes()
Definition: translator_nl.h:583
TranslatorDutch::trMore
QCString trMore()
Definition: translator_nl.h:70
TranslatorDutch::trPropertyDocumentation
QCString trPropertyDocumentation()
Definition: translator_nl.h:752
VhdlDocGen::PACKAGE_BODY
@ PACKAGE_BODY
Definition: vhdldocgen.h:84
TranslatorDutch::trPrivateMembers
QCString trPrivateMembers()
Definition: translator_nl.h:328
TranslatorDutch::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_nl.h:1422
TranslatorDutch::trFunctions
QCString trFunctions()
Definition: translator_nl.h:200
TranslatorDutch::latexLanguageSupportCommand
QCString latexLanguageSupportCommand()
Definition: translator_nl.h:52
TranslatorDutch::trPackages
QCString trPackages()
Definition: translator_nl.h:782
VhdlDocGen::LIBRARY
@ LIBRARY
Definition: vhdldocgen.h:82
TranslatorDutch::trTodo
QCString trTodo()
Definition: translator_nl.h:614
TranslatorDutch::trInvariant
QCString trInvariant()
Definition: translator_nl.h:532
TranslatorDutch::trDesignUnitHierarchy
virtual QCString trDesignUnitHierarchy()
VHDL design unit hierarchy
Definition: translator_nl.h:1621
TranslatorDutch::trSequences
virtual QCString trSequences()
Definition: translator_nl.h:1738
TranslatorDutch::trExceptionListDescription
virtual QCString trExceptionListDescription()
Definition: translator_nl.h:1774
TranslatorDutch::trDataTypes
virtual QCString trDataTypes()
Definition: translator_nl.h:1250
TranslatorDutch::trClassHierarchy
QCString trClassHierarchy()
Definition: translator_nl.h:94
TranslatorDutch::trDefinedAtLineInSourceFile
QCString trDefinedAtLineInSourceFile()
Definition: translator_nl.h:474
TranslatorDutch::trNamespaceMemberDescription
QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_nl.h:388
TranslatorDutch::trDateTime
virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
Definition: translator_nl.h:1435
TranslatorDutch::trGotoDocumentation
QCString trGotoDocumentation()
Definition: translator_nl.h:517
TranslatorDutch::trExamples
QCString trExamples()
Definition: translator_nl.h:106
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorDutch::trDefinedInSourceFile
QCString trDefinedInSourceFile()
Definition: translator_nl.h:478
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorDutch::trOperationDocumentation
virtual QCString trOperationDocumentation()
Definition: translator_nl.h:1802
VhdlDocGen::UCF_CONST
@ UCF_CONST
Definition: vhdldocgen.h:108
TranslatorDutch::trISOLang
QCString trISOLang()
Definition: translator_nl.h:54
TranslatorDutch::trEnumerations
QCString trEnumerations()
Definition: translator_nl.h:198
TranslatorDutch::trThisIsTheListOfAllMembers
QCString trThisIsTheListOfAllMembers()
Definition: translator_nl.h:76
TranslatorDutch::trPageDocumentation
QCString trPageDocumentation()
Definition: translator_nl.h:189
TranslatorDutch::trDirectories
virtual QCString trDirectories()
Definition: translator_nl.h:1141
TranslatorDutch::trGeneratedAt
QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_nl.h:220
TranslatorDutch::trDefineValue
QCString trDefineValue()
Definition: translator_nl.h:787
TranslatorDutch::trStructs
virtual QCString trStructs()
Definition: translator_nl.h:1760
TranslatorDutch::trNamespaceList
QCString trNamespaceList()
Definition: translator_nl.h:254
TranslatorDutch::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_nl.h:1087
TranslatorDutch::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_nl.h:1315
TranslatorDutch::trAndMore
virtual QCString trAndMore(const QCString &number)
Definition: translator_nl.h:1481
TranslatorDutch::trSingletonGeneratedFromFiles
virtual QCString trSingletonGeneratedFromFiles(bool single)
UNO IDL singleton page
Definition: translator_nl.h:1608
TranslatorDutch::trDate
QCString trDate()
Definition: translator_nl.h:237
TranslatorDutch::trPublicSlots
QCString trPublicSlots()
Definition: translator_nl.h:316
TranslatorDutch::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_nl.h:1187
TranslatorDutch::trGotoTextualHierarchy
QCString trGotoTextualHierarchy()
Definition: translator_nl.h:554
TranslatorDutch::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_nl.h:1331
TranslatorDutch::trInitialValue
QCString trInitialValue()
Definition: translator_nl.h:537
TranslatorDutch::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_nl.h:1201
TranslatorDutch::trSubprograms
virtual QCString trSubprograms()
Definition: translator_nl.h:1238
TranslatorDutch::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_nl.h:1465
TranslatorDutch::trNamespaces
QCString trNamespaces()
Definition: translator_nl.h:416
TranslatorDutch::trMethodDocumentation
virtual QCString trMethodDocumentation()
Definition: translator_nl.h:1557
TranslatorDutch::trCompoundMembersDescription
QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_nl.h:146
TranslatorDutch::trHierarchicalIndex
QCString trHierarchicalIndex()
Definition: translator_nl.h:175
TranslatorDutch::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_nl.h:1161
TranslatorDutch::trStaticPrivateAttribs
QCString trStaticPrivateAttribs()
Definition: translator_nl.h:603
VhdlDocGen::INSTANTIATION
@ INSTANTIATION
Definition: vhdldocgen.h:101
TranslatorDutch::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_nl.h:904
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorDutch::trPublicAttribs
QCString trPublicAttribs()
Definition: translator_nl.h:575
TranslatorDutch::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_nl.h:972
TranslatorDutch::trStaticPublicMembers
QCString trStaticPublicMembers()
Definition: translator_nl.h:320
TranslatorDutch::trClassMethods
virtual QCString trClassMethods()
Definition: translator_nl.h:1542
TranslatorDutch::trDataMembers
virtual QCString trDataMembers()
Definition: translator_nl.h:1804
TranslatorDutch::trCode
QCString trCode()
Definition: translator_nl.h:542
TranslatorDutch::trGeneratedFromFiles
QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_nl.h:428
TranslatorDutch::trPrivateAttribs
QCString trPrivateAttribs()
Definition: translator_nl.h:599
TranslatorDutch::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_nl.h:1117
TranslatorDutch::trSignals
QCString trSignals()
Definition: translator_nl.h:318
TranslatorDutch::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_nl.h:1322
TranslatorDutch::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_nl.h:845
TranslatorDutch::trGraphicalHierarchy
QCString trGraphicalHierarchy()
Definition: translator_nl.h:546
TranslatorDutch::trDefinedIn
QCString trDefinedIn()
Definition: translator_nl.h:90
TranslatorDutch::trInterfaceListDescription
virtual QCString trInterfaceListDescription()
Definition: translator_nl.h:1752
TranslatorDutch::trProtectedAttribs
QCString trProtectedAttribs()
Definition: translator_nl.h:587
TranslatorDutch::trDeprecated
QCString trDeprecated()
Definition: translator_nl.h:487
VhdlDocGen::PROCESS
@ PROCESS
Definition: vhdldocgen.h:97
TranslatorDutch::trStructDocumentation
virtual QCString trStructDocumentation()
Definition: translator_nl.h:1768
TranslatorDutch::trPageAbbreviation
QCString trPageAbbreviation()
Definition: translator_nl.h:467
TranslatorDutch::trExtendsClass
virtual QCString trExtendsClass()
Definition: translator_nl.h:1534
TranslatorDutch::trNote
QCString trNote()
Definition: translator_nl.h:567
TranslatorDutch::trDirIndex
virtual QCString trDirIndex()
Definition: translator_nl.h:1129
TranslatorDutch::trStaticPrivateMembers
QCString trStaticPrivateMembers()
Definition: translator_nl.h:332
TranslatorDutch::trFileIndex
QCString trFileIndex()
Definition: translator_nl.h:179
TranslatorDutch::trExceptionList
virtual QCString trExceptionList()
Definition: translator_nl.h:1772
VhdlDocGen::SHAREDVARIABLE
@ SHAREDVARIABLE
Definition: vhdldocgen.h:104
TranslatorDutch::trReferences
virtual QCString trReferences()
Definition: translator_nl.h:952
TranslatorDutch::trConceptReference
virtual QCString trConceptReference(const QCString &conceptName)
Definition: translator_nl.h:1825
TranslatorDutch::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_nl.h:981
TranslatorDutch::trCompoundListDescription
QCString trCompoundListDescription()
Definition: translator_nl.h:128
TranslatorDutch::trAttention
QCString trAttention()
Definition: translator_nl.h:636
TranslatorDutch::trDataMemberDocumentation
virtual QCString trDataMemberDocumentation()
Definition: translator_nl.h:1806
TranslatorDutch::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_nl.h:893
TranslatorDutch::trGeneratedBy
QCString trGeneratedBy()
Definition: translator_nl.h:247
TranslatorDutch::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_nl.h:1457
TranslatorDutch::trCompoundMembers
QCString trCompoundMembers()
Definition: translator_nl.h:100
TranslatorDutch::trExceptionHierarchyDescription
virtual QCString trExceptionHierarchyDescription()
Definition: translator_nl.h:1778
TranslatorDutch::trInterfaceDocumentation
virtual QCString trInterfaceDocumentation()
Definition: translator_nl.h:1758
TranslatorDutch::trLegendTitle
QCString trLegendTitle()
Definition: translator_nl.h:655
TranslatorDutch::trRelatedPagesDescription
QCString trRelatedPagesDescription()
Definition: translator_nl.h:166
TranslatorDutch::trSingletonReference
virtual QCString trSingletonReference(const QCString &sName)
UNO IDL singleton page title
Definition: translator_nl.h:1593
TranslatorDutch::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_nl.h:1397
TranslatorDutch::trStructListDescription
virtual QCString trStructListDescription()
Definition: translator_nl.h:1766
VhdlDocGen::GROUP
@ GROUP
Definition: vhdldocgen.h:102
TranslatorDutch::trProtectedSlots
QCString trProtectedSlots()
Definition: translator_nl.h:324
TranslatorDutch::trConstantGroupReference
virtual QCString trConstantGroupReference(const QCString &namespaceName)
UNO IDL constant groups
Definition: translator_nl.h:1579
TranslatorDutch::trVhdlType
virtual QCString trVhdlType(uint64 type, bool single)
VHDL type
Definition: translator_nl.h:1645
TranslatorDutch::trNamespaceListDescription
QCString trNamespaceListDescription(bool extractAll)
Definition: translator_nl.h:256
TranslatorDutch::trOperations
virtual QCString trOperations()
Definition: translator_nl.h:1800
TranslatorDutch::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_nl.h:1209
TranslatorDutch::trInterfaces
virtual QCString trInterfaces()
old style UNO IDL services: implemented interfaces
Definition: translator_nl.h:1567
TranslatorDutch::trStructIndex
virtual QCString trStructIndex()
Definition: translator_nl.h:1762
TranslatorDutch::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_nl.h:1046
TranslatorDutch::trConceptDefinition
virtual QCString trConceptDefinition()
Definition: translator_nl.h:1849
TranslatorDutch::trListOfAllMembers
QCString trListOfAllMembers()
Definition: translator_nl.h:72
TranslatorDutch::trNamespaceReference
QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_nl.h:305
TranslatorDutch::trFileListDescription
QCString trFileListDescription(bool extractAll)
Definition: translator_nl.h:121
TranslatorDutch::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_nl.h:939
TranslatorDutch::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_nl.h:1431
TranslatorDutch::trConstantGroups
virtual QCString trConstantGroups()
UNO IDL constant groups
Definition: translator_nl.h:1575
TranslatorDutch::trInterfaceIndex
virtual QCString trInterfaceIndex()
Definition: translator_nl.h:1748
TranslatorDutch::trDesignUnitMembers
virtual QCString trDesignUnitMembers()
VHDL design unit members
Definition: translator_nl.h:1627
VhdlDocGen::USE
@ USE
Definition: vhdldocgen.h:96
TranslatorDutch::trEnumerationValues
QCString trEnumerationValues()
Definition: translator_nl.h:204
TranslatorDutch::trCollaborationDiagram
QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_nl.h:497
TranslatorDutch::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_nl.h:1258
TranslatorDutch::trConstantDocumentation
virtual QCString trConstantDocumentation()
Definition: translator_nl.h:1736
TranslatorDutch::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_nl.h:1193
TranslatorDutch::trEnumerationTypeDocumentation
QCString trEnumerationTypeDocumentation()
Definition: translator_nl.h:210
TranslatorDutch::trExceptionIndex
virtual QCString trExceptionIndex()
Definition: translator_nl.h:1770
TranslatorDutch::trLegendDocs
QCString trLegendDocs()
Definition: translator_nl.h:660
TranslatorDutch::trNamespaceIndex
QCString trNamespaceIndex()
Definition: translator_nl.h:400
TranslatorDutch::trSince
QCString trSince()
Definition: translator_nl.h:645
TranslatorDutch::trBugList
QCString trBugList()
Definition: translator_nl.h:802
TranslatorDutch::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_nl.h:1385
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorDutch::trReimplementedFromList
QCString trReimplementedFromList(int numEntries)
Definition: translator_nl.h:372
TranslatorDutch::trPrivateTypes
QCString trPrivateTypes()
Definition: translator_nl.h:595
TranslatorDutch::trNamespaceDocumentation
QCString trNamespaceDocumentation()
Definition: translator_nl.h:404
TranslatorDutch::trExamplesDescription
QCString trExamplesDescription()
Definition: translator_nl.h:164
TranslatorDutch::trInheritedByList
QCString trInheritedByList(int numEntries)
Definition: translator_nl.h:366
TranslatorDutch::trDesignUnitList
virtual QCString trDesignUnitList()
VHDL design unit list
Definition: translator_nl.h:1624
TranslatorDutch::trMemberTypedefDocumentation
QCString trMemberTypedefDocumentation()
Definition: translator_nl.h:62
TranslatorDutch::trNoMatches
virtual QCString trNoMatches()
Definition: translator_nl.h:1409
TranslatorDutch::trExceptionHierarchy
virtual QCString trExceptionHierarchy()
Definition: translator_nl.h:1776
VhdlDocGen::FUNCTION
@ FUNCTION
Definition: vhdldocgen.h:93
TranslatorDutch::trModulesDescription
QCString trModulesDescription()
Definition: translator_nl.h:168
uint64
uint64_t uint64
Definition: qcstring.h:43
TranslatorDutch::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_nl.h:1205
VhdlDocGen::RECORD
@ RECORD
Definition: vhdldocgen.h:94
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorDutch::trAll
virtual QCString trAll()
Definition: translator_nl.h:1058
TranslatorDutch::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_nl.h:1300
VhdlDocGen::MISCELLANEOUS
@ MISCELLANEOUS
Definition: vhdldocgen.h:107
TranslatorDutch::trLoading
virtual QCString trLoading()
Definition: translator_nl.h:1391
TranslatorDutch::trClassDocumentation
QCString trClassDocumentation()
Definition: translator_nl.h:183
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108