Doxygen
translator_za.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  /*
19  * Bronne vir hierdie vertaling (Sources for this translation):
20  * Die Stigting vir Afrikaans se rekenaartermelys:
21  * - http://www.afrikaans.com/rekenaarterme.html
22  * Werkgroep vir Afrikaanse IT-terme:
23  * - http://www.vertaal.org/index.html
24  */
25 
26 #ifndef TRANSLATOR_ZA_H
27 #define TRANSLATOR_ZA_H
28 
30 {
31  public:
32 
33  // --- Language control methods -------------------
34 
35  /*! Used for identification of the language. The identification
36  * should not be translated. It should be replaced by the name
37  * of the language in English using lower-case characters only
38  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
39  * the identification used in language.cpp.
40  */
41  virtual QCString idLanguage()
42  { return "afrikaans"; }
43 
44  /*! Used to get the LaTeX command(s) for the language support.
45  * This method should return string with commands that switch
46  * LaTeX to the desired language. For example
47  * <pre>"\\usepackage[german]{babel}\n"
48  * </pre>
49  * or
50  * <pre>"\\usepackage{polski}\n"
51  * "\\usepackage[latin2]{inputenc}\n"
52  * "\\usepackage[T1]{fontenc}\n"
53  * </pre>
54  *
55  * The Afrikaans LaTeX does not use such commands. Because of this
56  * the empty string is returned in this implementation.
57  */
59  {
60  return "\\usepackage[afrikaans]{babel}\n";
61  }
62  virtual QCString trISOLang()
63  {
64  return "af";
65  }
66 
67  // --- Language translation methods -------------------
68 
69  /*! used in the compound documentation before a list of related functions. */
71  { return "Verwante Funksies"; }
72 
73  /*! subscript for the related functions. */
75  { return "(Let daarop dat hierdie nie lede funksies is nie.)"; }
76 
77  /*! header that is put before the detailed description of files, classes and namespaces. */
79  { return "Detail Beskrywing"; }
80 
81  /*! header that is put before the list of typedefs. */
83  { return "Lede Typedef Dokumentasie"; }
84 
85  /*! header that is put before the list of enumerations. */
87  { return "Lede Enumerasie Dokumentasie"; }
88 
89  /*! header that is put before the list of member functions. */
91  { return "Lede Funksie Dokumentasie"; }
92 
93  /*! header that is put before the list of member attributes. */
95  {
96  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
97  {
98  return "Veld Dokumentasie";
99  }
100  else
101  {
102  return "Lede Data Dokumentasie";
103  }
104  }
105 
106  /*! this is the text of a link put after brief descriptions. */
107  virtual QCString trMore()
108  { return "Meer detail..."; }
109 
110  /*! put in the class documentation */
111  virtual QCString trListOfAllMembers()
112  { return "Lys van alle lede"; }
113 
114  /*! used as the title of the "list of all members" page of a class */
115  virtual QCString trMemberList()
116  { return "Lede Lys"; }
117 
118  /*! this is the first part of a sentence that is followed by a class name */
120  { return "Hierdie is 'n volledige lys van lede vir "; }
121 
122  /*! this is the remainder of the sentence after the class name */
124  { return ", insluitend alle afgeleide lede."; }
125 
126  /*! this is put at the author sections at the bottom of man pages.
127  * parameter s is name of the project name.
128  */
129  virtual QCString trGeneratedAutomatically(const QCString &s)
130  { QCString result="Automaties gegenereer deur Doxygen";
131  if (!s.isEmpty()) result+=(QCString)" vir "+s;
132  result+=" van die bron kode af.";
133  return result;
134  }
135 
136  /*! put after an enum name in the list of all members */
137  virtual QCString trEnumName()
138  { return "enum naam"; }
139 
140  /*! put after an enum value in the list of all members */
141  virtual QCString trEnumValue()
142  { return "enum waarde"; }
143 
144  /*! put after an undocumented member in the list of all members */
145  virtual QCString trDefinedIn()
146  { return "gedefinieër in"; }
147 
148  // quick reference sections
149 
150  /*! This is put above each page as a link to the list of all groups of
151  * compounds or files (see the \\group command).
152  */
153  virtual QCString trModules()
154  { return "Modules"; }
155 
156  /*! This is put above each page as a link to the class hierarchy */
157  virtual QCString trClassHierarchy()
158  { return "Klas Hierargie"; }
159 
160  /*! This is put above each page as a link to the list of annotated classes */
161  virtual QCString trCompoundList()
162  {
163  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
164  {
165  return "Data Strukture";
166  }
167  else
168  {
169  return "Klas Lys";
170  }
171  }
172 
173  /*! This is put above each page as a link to the list of documented files */
174  virtual QCString trFileList()
175  { return "Leër Lys"; }
176 
177  /*! This is put above each page as a link to all members of compounds. */
178  virtual QCString trCompoundMembers()
179  {
180  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
181  {
182  return "Data Velde";
183  }
184  else
185  {
186  return "Klas Lede";
187  }
188  }
189 
190  /*! This is put above each page as a link to all members of files. */
191  virtual QCString trFileMembers()
192  {
193  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
194  {
195  return "Globals";
196  }
197  else
198  {
199  return "Leër Lede";
200  }
201  }
202 
203  /*! This is put above each page as a link to all related pages. */
204  virtual QCString trRelatedPages()
205  { return "Verwante Bladsye"; }
206 
207  /*! This is put above each page as a link to all examples. */
208  virtual QCString trExamples()
209  { return "Voorbeelde"; }
210 
211  /*! This is put above each page as a link to the search engine. */
212  virtual QCString trSearch()
213  { return "Soek"; }
214 
215  /*! This is an introduction to the class hierarchy. */
217  {
218  return "Hierdie afgeleide lys word rofweg gesorteer: ";
219  }
220 
221  /*! This is an introduction to the list with all files. */
222  virtual QCString trFileListDescription(bool extractAll)
223  {
224  QCString result="Hier is 'n lys van alle ";
225  if (!extractAll) result+="gedokumenteerde ";
226  result+="leërs met kort beskrywings:";
227  return result;
228  }
229 
230  /*! This is an introduction to the annotated compound list. */
232  {
233 
234  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
235  {
236  return " Data strukture met kort beskrywings:";
237  }
238  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
239  {
240  return "Klasse met kort beskrywings:";
241  }
242  else
243  {
244  return "Klasse, structs, "
245  "unions en intervlakke met kort beskrywings:";
246  }
247  }
248 
249  /*! This is an introduction to the page with all class members. */
250  virtual QCString trCompoundMembersDescription(bool extractAll)
251  {
252  QCString result="'n Lys van alle ";
253  if (!extractAll)
254  {
255  result+="gedokumenteerde ";
256  }
257  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
258  {
259  result+="struct en union velde";
260  }
261  else
262  {
263  result+="klas lede";
264  }
265  result+=" met skakels na ";
266  if (!extractAll)
267  {
268  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
269  {
270  result+="die struct/union dokumentasie vir elke veld:";
271  }
272  else
273  {
274  result+="die klas dokumentasie vir elke lid:";
275  }
276  }
277  else
278  {
279  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
280  {
281  result+="die structures/unions waaraan hulle behoort:";
282  }
283  else
284  {
285  result+="die klasse waaraan hulle behoort:";
286  }
287  }
288  return result;
289  }
290 
291  /*! This is an introduction to the page with all file members. */
292  virtual QCString trFileMembersDescription(bool extractAll)
293  {
294  QCString result="'n Lys van alle ";
295  if (!extractAll) result+="gedokumenteerde ";
296 
297  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
298  {
299  result+="funksies, veranderlikes, defines, enums, en typedefs";
300  }
301  else
302  {
303  result+="leër lede";
304  }
305  result+=" met skakels na ";
306  if (extractAll)
307  result+="die leërs waaraan hulle behoort:";
308  else
309  result+="die dokumentasie:";
310  return result;
311  }
312 
313  /*! This is an introduction to the page with the list of all examples */
315  { return "'n Lys van alle voorbeelde:"; }
316 
317  /*! This is an introduction to the page with the list of related pages */
319  { return "'n Lys van alle verwante dokumentasie:"; }
320 
321  /*! This is an introduction to the page with the list of class/file groups */
323  { return "'n Lys van alle modules:"; }
324 
325  /*! This is used in HTML as the title of index.html. */
326  virtual QCString trDocumentation()
327  { return "Dokumentasie"; }
328 
329  /*! This is used in LaTeX as the title of the chapter with the
330  * index of all groups.
331  */
332  virtual QCString trModuleIndex()
333  { return "Module Indeks"; }
334 
335  /*! This is used in LaTeX as the title of the chapter with the
336  * class hierarchy.
337  */
338  virtual QCString trHierarchicalIndex()
339  { return "Hierargiese Indeks"; }
340 
341  /*! This is used in LaTeX as the title of the chapter with the
342  * annotated compound index.
343  */
344  virtual QCString trCompoundIndex()
345  {
346  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
347  {
348  return "Data Strukture Indeks";
349  }
350  else
351  {
352  return "Klas Indeks";
353  }
354  }
355 
356  /*! This is used in LaTeX as the title of the chapter with the
357  * list of all files.
358  */
360  { return "Leër Indeks"; }
361 
362  /*! This is used in LaTeX as the title of the chapter containing
363  * the documentation of all groups.
364  */
366  { return "Module Dokumentasie"; }
367 
368  /*! This is used in LaTeX as the title of the chapter containing
369  * the documentation of all classes, structs and unions.
370  */
372  {
373  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
374  {
375  return "Data Strukture Dokumentasie";
376  }
377  else
378  {
379  return "Klas Dokumentasie";
380  }
381  }
382 
383  /*! This is used in LaTeX as the title of the chapter containing
384  * the documentation of all files.
385  */
387  { return "Leër Dokumentasie"; }
388 
389  /*! This is used in LaTeX as the title of the chapter containing
390  * the documentation of all examples.
391  */
393  { return "Voorbeeld Dokumentasie"; }
394 
395  /*! This is used in LaTeX as the title of the chapter containing
396  * the documentation of all related pages.
397  */
398  virtual QCString trPageDocumentation()
399  { return "Bladsy Dokumentasie"; }
400 
401  /*! This is used in LaTeX as the title of the document */
402  virtual QCString trReferenceManual()
403  { return "Verwysings Handleiding"; }
404 
405  /*! This is used in the documentation of a file as a header before the
406  * list of defines
407  */
408  virtual QCString trDefines()
409  { return "Definiesies"; }
410 
411  /*! This is used in the documentation of a file as a header before the
412  * list of typedefs
413  */
414  virtual QCString trTypedefs()
415  { return "Typedefs"; }
416 
417  /*! This is used in the documentation of a file as a header before the
418  * list of enumerations
419  */
420  virtual QCString trEnumerations()
421  { return "Enumerations"; }
422 
423  /*! This is used in the documentation of a file as a header before the
424  * list of (global) functions
425  */
426  virtual QCString trFunctions()
427  { return "Funksies"; }
428 
429  /*! This is used in the documentation of a file as a header before the
430  * list of (global) variables
431  */
432  virtual QCString trVariables()
433  { return "Veranderlikes"; }
434 
435  /*! This is used in the documentation of a file as a header before the
436  * list of (global) variables
437  */
438  virtual QCString trEnumerationValues()
439  { return "Enumeration waardes"; }
440 
441  /*! This is used in the documentation of a file before the list of
442  * documentation blocks for defines
443  */
445  { return "Define Documentation"; }
446 
447  /*! This is used in the documentation of a file/namespace before the list
448  * of documentation blocks for typedefs
449  */
451  { return "Typedef Dokumentasie"; }
452 
453  /*! This is used in the documentation of a file/namespace before the list
454  * of documentation blocks for enumeration types
455  */
457  { return "Enumeration Type Dokumentasie"; }
458 
459  /*! This is used in the documentation of a file/namespace before the list
460  * of documentation blocks for functions
461  */
463  { return "Funksie Dokumentasie"; }
464 
465  /*! This is used in the documentation of a file/namespace before the list
466  * of documentation blocks for variables
467  */
469  { return "Veranderlike Dokumentasie"; }
470 
471  /*! This is used in the documentation of a file/namespace/group before
472  * the list of links to documented compounds
473  */
474  virtual QCString trCompounds()
475  {
476  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
477  {
478  return "Data Strukture";
479  }
480  else
481  {
482  return "Klasse";
483  }
484  }
485 
486  /*! This is used in the standard footer of each page and indicates when
487  * the page was generated
488  */
489  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
490  {
491  QCString result=(QCString)"Gegenereer op "+date;
492  if (!projName.isEmpty()) result+=(QCString)" vir "+projName;
493  result+=(QCString)" deur";
494  return result;
495  }
496 
497  /*! this text is put before a class diagram */
498  virtual QCString trClassDiagram(const QCString &clName)
499  {
500  return (QCString)"Afleidings diagram vir "+clName+":";
501  }
502 
503  /*! this text is generated when the \\internal command is used. */
505  { return "Slegs vir interne gebruik."; }
506 
507  /*! this text is generated when the \\warning command is used. */
508  virtual QCString trWarning()
509  { return "Waarskuwing"; }
510 
511  /*! this text is generated when the \\version command is used. */
512  virtual QCString trVersion()
513  { return "Weergawe"; }
514 
515  /*! this text is generated when the \\date command is used. */
516  virtual QCString trDate()
517  { return "Datum"; }
518 
519  /*! this text is generated when the \\return command is used. */
520  virtual QCString trReturns()
521  { return "Returns"; }
522 
523  /*! this text is generated when the \\sa command is used. */
524  virtual QCString trSeeAlso()
525  { return "Sien ook"; }
526 
527  /*! this text is generated when the \\param command is used. */
528  virtual QCString trParameters()
529  { return "Parameters"; }
530 
531  /*! this text is generated when the \\exception command is used. */
532  virtual QCString trExceptions()
533  { return "Exceptions"; }
534 
535  /*! this text is used in the title page of a LaTeX document. */
536  virtual QCString trGeneratedBy()
537  { return "Gegenereer deur"; }
538 
539 //////////////////////////////////////////////////////////////////////////
540 // new since 0.49-990307
541 //////////////////////////////////////////////////////////////////////////
542 
543  /*! used as the title of page containing all the index of all namespaces. */
544  virtual QCString trNamespaceList()
545  { return "Namespace Lys"; }
546 
547  /*! used as an introduction to the namespace list */
548  virtual QCString trNamespaceListDescription(bool extractAll)
549  {
550  QCString result="'n Lys van alle ";
551  if (!extractAll) result+="gedokumenteerde ";
552  result+="namespaces met kort beskrywings:";
553  return result;
554  }
555 
556  /*! used in the class documentation as a header before the list of all
557  * friends of a class
558  */
559  virtual QCString trFriends()
560  { return "Friends"; }
561 
562 //////////////////////////////////////////////////////////////////////////
563 // new since 0.49-990405
564 //////////////////////////////////////////////////////////////////////////
565 
566  /*! used in the class documentation as a header before the list of all
567  * related classes
568  */
570  { return "Friends En Verwante Funksie Dokumentasie"; }
571 
572 //////////////////////////////////////////////////////////////////////////
573 // new since 0.49-990425
574 //////////////////////////////////////////////////////////////////////////
575 
576  /*! used as the title of the HTML page of a class/struct/union */
577  virtual QCString trCompoundReference(const QCString &clName,
578  ClassDef::CompoundType compType,
579  bool isTemplate)
580  {
581  QCString result=(QCString)clName;
582  switch(compType)
583  {
584  case ClassDef::Class: result+=" klas"; break;
585  case ClassDef::Struct: result+=" Struct"; break;
586  case ClassDef::Union: result+=" Union"; break;
587  case ClassDef::Interface: result+=" Intervlak"; break;
588  case ClassDef::Protocol: result+=" Protocol"; break;
589  case ClassDef::Category: result+=" Kategorie"; break;
590  case ClassDef::Exception: result+=" Exception"; break;
591  default: break;
592  }
593  if (isTemplate) result+=" Template";
594  result+=" Verwysing";
595  return result;
596  }
597 
598  /*! used as the title of the HTML page of a file */
599  virtual QCString trFileReference(const QCString &fileName)
600  {
601  QCString result=fileName;
602  result+=" Leër Verwysing";
603  return result;
604  }
605 
606  /*! used as the title of the HTML page of a namespace */
607  virtual QCString trNamespaceReference(const QCString &namespaceName)
608  {
609  QCString result=namespaceName;
610  result+=" Namespace Verwysing";
611  return result;
612  }
613 
615  { return "Publieke Lede Funksies"; }
616  virtual QCString trPublicSlots()
617  { return "Publieke Slots"; }
618  virtual QCString trSignals()
619  { return "Signals"; }
621  { return "Statiese Publieke Lede Funksies"; }
623  { return "Beskermde Lede Funksies"; }
624  virtual QCString trProtectedSlots()
625  { return "Beskermde Slots"; }
627  { return "Statiese Beskermde Lede Funksies"; }
628  virtual QCString trPrivateMembers()
629  { return "Private Lede Funksies"; }
630  virtual QCString trPrivateSlots()
631  { return "Private Slots"; }
633  { return "Statiese Private Lede Funksies"; }
634 
635  /*! this function is used to produce a comma-separated list of items.
636  * use generateMarker(i) to indicate where item i should be put.
637  */
638  virtual QCString trWriteList(int numEntries)
639  {
640  QCString result;
641  int i;
642  // the inherits list contain `numEntries' classes
643  for (i=0;i<numEntries;i++)
644  {
645  // use generateMarker to generate placeholders for the class links!
646  result+=generateMarker(i); // generate marker for entry i in the list
647  // (order is left to right)
648 
649  if (i!=numEntries-1) // not the last entry, so we need a separator
650  {
651  if (i<numEntries-2) // not the fore last entry
652  result+=", ";
653  else // the fore last entry
654  result+=", en ";
655  }
656  }
657  return result;
658  }
659 
660  /*! used in class documentation to produce a list of base classes,
661  * if class diagrams are disabled.
662  */
663  virtual QCString trInheritsList(int numEntries)
664  {
665  return "Afgelei van"+trWriteList(numEntries)+".";
666  }
667 
668  /*! used in class documentation to produce a list of super classes,
669  * if class diagrams are disabled.
670  */
671  virtual QCString trInheritedByList(int numEntries)
672  {
673  return "Afgelei van"+trWriteList(numEntries)+".";
674  }
675 
676  /*! used in member documentation blocks to produce a list of
677  * members that are hidden by this one.
678  */
679  virtual QCString trReimplementedFromList(int numEntries)
680  {
681  return "Hergeimplimenteer van "+trWriteList(numEntries)+".";
682  }
683 
684  /*! used in member documentation blocks to produce a list of
685  * all member that overwrite the implementation of this member.
686  */
687  virtual QCString trReimplementedInList(int numEntries)
688  {
689  return "Hergeimplimenter in "+trWriteList(numEntries)+".";
690  }
691 
692  /*! This is put above each page as a link to all members of namespaces. */
693  virtual QCString trNamespaceMembers()
694  { return "Namespace Lede"; }
695 
696  /*! This is an introduction to the page with all namespace members */
697  virtual QCString trNamespaceMemberDescription(bool extractAll)
698  {
699  QCString result="'n Lys van alle ";
700  if (!extractAll) result+="gedokumenteerde ";
701  result+="namespace lede met skakels na ";
702  if (extractAll)
703  result+="die namespace dokumentasie vir elke lid:";
704  else
705  result+="die namespaces waaraan hulle behoort:";
706  return result;
707  }
708  /*! This is used in LaTeX as the title of the chapter with the
709  * index of all namespaces.
710  */
711  virtual QCString trNamespaceIndex()
712  { return "Namespace Indeks"; }
713 
714  /*! This is used in LaTeX as the title of the chapter containing
715  * the documentation of all namespaces.
716  */
718  { return "Namespace Dokumentasie"; }
719 
720 //////////////////////////////////////////////////////////////////////////
721 // new since 0.49-990522
722 //////////////////////////////////////////////////////////////////////////
723 
724  /*! This is used in the documentation before the list of all
725  * namespaces in a file.
726  */
727  virtual QCString trNamespaces()
728  { return "Namespaces"; }
729 
730 //////////////////////////////////////////////////////////////////////////
731 // new since 0.49-990728
732 //////////////////////////////////////////////////////////////////////////
733 
734  /*! This is put at the bottom of a class documentation page and is
735  * followed by a list of files that were used to generate the page.
736  */
738  bool single)
739  { // here s is one of " Class", " Struct" or " Union"
740  // single is true implies a single file
741  QCString result=(QCString)"Die dokumentasie vir hierdie ";
742  switch(compType)
743  {
744  case ClassDef::Class: result+="klas"; break;
745  case ClassDef::Struct: result+="struct"; break;
746  case ClassDef::Union: result+="union"; break;
747  case ClassDef::Interface: result+="intervlak"; break;
748  case ClassDef::Protocol: result+="protokol"; break;
749  case ClassDef::Category: result+="kategorie"; break;
750  case ClassDef::Exception: result+="eksepsie"; break;
751  default: break;
752  }
753  result+=" is gegenereer vanaf die volgende leër";
754  if (single) result+=":"; else result+="s:";
755  return result;
756  }
757 
758 //////////////////////////////////////////////////////////////////////////
759 // new since 0.49-990901
760 //////////////////////////////////////////////////////////////////////////
761 
762  /*! This is used as the heading text for the retval command. */
763  virtual QCString trReturnValues()
764  { return "Return waardes"; }
765 
766  /*! This is in the (quick) index as a link to the main page (index.html)
767  */
768  virtual QCString trMainPage()
769  { return "Hoof Bladsy"; }
770 
771  /*! This is used in references to page that are put in the LaTeX
772  * documentation. It should be an abbreviation of the word page.
773  */
774  virtual QCString trPageAbbreviation()
775  { return "p."; }
776 
777 //////////////////////////////////////////////////////////////////////////
778 // new since 0.49-991003
779 //////////////////////////////////////////////////////////////////////////
780 
782  {
783  return "Gedefinieër by lyn @0 van leër @1.";
784  }
786  {
787  return "Definisie in leër @0.";
788  }
789 
790 //////////////////////////////////////////////////////////////////////////
791 // new since 0.49-991205
792 //////////////////////////////////////////////////////////////////////////
793 
794  virtual QCString trDeprecated()
795  {
796  return "Verouderd";
797  }
798 
799 //////////////////////////////////////////////////////////////////////////
800 // new since 1.0.0
801 //////////////////////////////////////////////////////////////////////////
802 
803  /*! this text is put before a collaboration diagram */
804  virtual QCString trCollaborationDiagram(const QCString &clName)
805  {
806  return (QCString)"Samewerkings diagram vir "+clName+":";
807  }
808  /*! this text is put before an include dependency graph */
809  virtual QCString trInclDepGraph(const QCString &fName)
810  {
811  return (QCString)"Insluitings afhanklikheid diagram vir "+fName+":";
812  }
813  /*! header that is put before the list of constructor/destructors. */
815  {
816  return "Konstruktor & Destruktor Dokumentasie";
817  }
818  /*! Used in the file documentation to point to the corresponding sources. */
820  {
821  return "Skakel na die bron kode van hierdie leër.";
822  }
823  /*! Used in the file sources to point to the corresponding documentation. */
825  {
826  return "Skakel na die dokumentasie van hierdie leër.";
827  }
828  /*! Text for the \\pre command */
830  {
831  return "Prekondisie";
832  }
833  /*! Text for the \\post command */
835  {
836  return "Postkondisie";
837  }
838  /*! Text for the \\invariant command */
840  {
841  return "Invariant";
842  }
843  /*! Text shown before a multi-line variable/enum initialization */
845  {
846  return "Oorspronklike waarde:";
847  }
848  /*! Text used the source code in the file index */
849  virtual QCString trCode()
850  {
851  return "kode";
852  }
854  {
855  return "Grafiese Klasse Hierargie";
856  }
858  {
859  return "Skakel na die grafiese klasse hierargie";
860  }
862  {
863  return "Skakel na die teks klasse hierargie";
864  }
865  virtual QCString trPageIndex()
866  {
867  return "Bladsy Indeks";
868  }
869 
870 //////////////////////////////////////////////////////////////////////////
871 // new since 1.1.0
872 //////////////////////////////////////////////////////////////////////////
873 
874  virtual QCString trNote()
875  {
876  return "Nota";
877  }
878  virtual QCString trPublicTypes()
879  {
880  return "Publieke Tipes";
881  }
882  virtual QCString trPublicAttribs()
883  {
884  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
885  {
886  return "Data Velde";
887  }
888  else
889  {
890  return "Publieke Public Attributes";
891  }
892  }
894  {
895  return "Statiese Publieke Attribute";
896  }
898  {
899  return "Beskermde Tipes";
900  }
901  virtual QCString trProtectedAttribs()
902  {
903  return "Beskermde Attribute";
904  }
906  {
907  return "Statiese Beskermde Attribute";
908  }
909  virtual QCString trPrivateTypes()
910  {
911  return "Private Tipes";
912  }
913  virtual QCString trPrivateAttribs()
914  {
915  return "Private Attribute";
916  }
918  {
919  return "Statiese Private Attribute";
920  }
921 
922 //////////////////////////////////////////////////////////////////////////
923 // new since 1.1.3
924 //////////////////////////////////////////////////////////////////////////
925 
926  /*! Used as a marker that is put before a \\todo item */
927  virtual QCString trTodo()
928  {
929  return "Aksies";
930  }
931  /*! Used as the header of the todo list */
933  {
934  return "Aksie Lys";
935  }
936 
937 //////////////////////////////////////////////////////////////////////////
938 // new since 1.1.4
939 //////////////////////////////////////////////////////////////////////////
940 
941  virtual QCString trReferencedBy()
942  {
943  return "Verwysing van";
944  }
945  virtual QCString trRemarks()
946  {
947  return "Opmerkings";
948  }
949  virtual QCString trAttention()
950  {
951  return "Aandag";
952  }
953  virtual QCString trInclByDepGraph()
954  {
955  return "Hierdie diagram verduidelik watter leërs direk of"
956  "indirek hierdie leër insluit:";
957  }
958  virtual QCString trSince()
959  {
960  return "Sederd";
961  }
962 
963 //////////////////////////////////////////////////////////////////////////
964 // new since 1.1.5
965 //////////////////////////////////////////////////////////////////////////
966 
967  /*! title of the graph legend page */
969  {
970  return "Diagram beskrywing";
971  }
972  /*! page explaining how the dot graph's should be interpreted
973  * The %A in the text below are to prevent link to classes called "A".
974  */
975  virtual QCString trLegendDocs()
976  {
977  return
978  "Hierdie bladsy beskryf die diagram konvensies wat gebruik word "
979  "deur doxygen.<p>\n"
980  "in hierdie voorbeeld:\n"
981  "\\code\n"
982  "/*! Onsigbare klas weens afkorting */\n"
983  "class Invisible { };\n\n"
984  "/*! Afgekorte klas, afgeleide verwantskap word versteek */\n"
985  "class Truncated : public Invisible { };\n\n"
986  "/* Ongedokumenteerde Klas, geen doxygen kommentaar nie */\n"
987  "class Undocumented{ };\n\n"
988  "/*! 'n Klas wat afgelei is met 'n publieke verwantskap */\n"
989  "class PublicBase : public Truncated { };\n\n"
990  "/*! 'n template klas */\n"
991  "template<class T> class Templ { };\n\n"
992  "/*! 'n Klas wat afgelei is met 'n beskermde verwantskap */\n"
993  "class ProtectedBase { };\n\n"
994  "/*! 'n Klas wat afgelei is met 'n private verwantskap */\n"
995  "class PrivateBase { };\n\n"
996  "/*! 'n Klas wat gebrui word deur die Afgeleide klas */\n"
997  "class GebruikMy { };\n\n"
998  "/*! 'n Super klas wat afgelei word van 'n aantal basis klasse */\n"
999  "class Inherited : public PublicBase,\n"
1000  " protected ProtectedBase,\n"
1001  " private PrivateBase,\n"
1002  " public Ongedokumenteer,\n"
1003  " public Templ<int>\n"
1004  "{\n"
1005  " private:\n"
1006  " Used *m_usedClass;\n"
1007  "};\n"
1008  "\\endcode\n"
1009  "As die \\c MAX_DOT_GRAPH_HEIGHT merker in die konfigurasie leër "
1010  "aan 240 gelyk gestel is, word die volgende diagram geproduseer:"
1011  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1012  "<p>\n"
1013  "Die reghoeke in die diagram het die volgende betekenis:\n"
1014  "<ul>\n"
1015  "<li>%'n Soliede swart reghoek verteenwoordig die klas waarvoor "
1016  "die diagram gegenereer is.\n"
1017  "<li>%'n Reghoek met 'n swart omlyning verteenwoordig 'n gedokumenteerde klas.\n"
1018  "<li>%'n Reghoek met 'n grys omlyning verteenwoordig 'n ongedokumenteerde klas.\n"
1019  "<li>%'n Reghoek met 'n rooi omlyning verteenwoordig 'n gedokumenteerde klas waarvoor"
1020  "alle verwante klasse (afgeleide of gebruik) nie getoon word nie. %'n Diagram word "
1021  "op hierie manier afgekort as dit nie in die gespesifiseerde raam pas nie.\n"
1022  "</ul>\n"
1023  "Die pyltjies het die volgende betekenis:\n"
1024  "<ul>\n"
1025  "<li>%'n Donker blou pyltjie verteenwoordig 'n publieke afgeleide "
1026  "verwantskap tussen twee klasse.\n"
1027  "<li>%'n Donker groen pyltjie word gebruik vir 'n beskermde verwantskap.\n"
1028  "<li>%'n Donker rooi pyltjie verteenwoordig private verwantskappe.\n"
1029  "<li>%'n Pers pyltjie word gebruik as 'n klas gebruik of bevat word "
1030  "deur 'n ander klas. Die pyltjie word gemerk met die veranderlike(s) waar deur "
1031  "die verwysde klass verkrygbaar is.\n"
1032  "<li>%'n Geel stippel pyl verteenwoordig die verwantslap tussen 'n template instansie en "
1033  "die template waarvan die klas vervaardig is. Die pyltjie word gemerk met die "
1034  "template parameters van die instansie.\n"
1035  "</ul>\n";
1036  }
1037  /*! text for the link to the legend page */
1038  virtual QCString trLegend()
1039  {
1040  return "beskrywing";
1041  }
1042 
1043 //////////////////////////////////////////////////////////////////////////
1044 // new since 1.2.0
1045 //////////////////////////////////////////////////////////////////////////
1046 
1047  /*! Used as a marker that is put before a test item */
1048  virtual QCString trTest()
1049  {
1050  return "Toets";
1051  }
1052  /*! Used as the header of the test list */
1054  {
1055  return "Toets Lys";
1056  }
1057 
1058 //////////////////////////////////////////////////////////////////////////
1059 // new since 1.2.2
1060 //////////////////////////////////////////////////////////////////////////
1061 
1062  /*! Used as a section header for IDL properties */
1064  {
1065  return "Eienskappe";
1066  }
1067  /*! Used as a section header for IDL property documentation */
1069  {
1070  return "Eienskap Dokumentasie";
1071  }
1072 
1073 //////////////////////////////////////////////////////////////////////////
1074 // new since 1.2.4
1075 //////////////////////////////////////////////////////////////////////////
1076 
1077  /*! Used for Java classes in the summary section of Java packages */
1079  {
1080  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1081  {
1082  return "Data Strukture";
1083  }
1084  else
1085  {
1086  return "Klasse";
1087  }
1088  }
1089  /*! Used as the title of a Java package */
1090  virtual QCString trPackage(const QCString &name)
1091  {
1092  return (QCString)"Pakket "+name;
1093  }
1094  /*! Title of the package index page */
1095  virtual QCString trPackageList()
1096  {
1097  return "Pakket Lys";
1098  }
1099  /*! The description of the package index page */
1101  {
1102  return "Die pakkette met kort beskrywings (indien beskikbaar):";
1103  }
1104  /*! The link name in the Quick links header for each page */
1106  {
1107  return "Pakkette";
1108  }
1109  /*! Text shown before a multi-line define */
1111  {
1112  return "Waarde:";
1113  }
1114 
1115 //////////////////////////////////////////////////////////////////////////
1116 // new since 1.2.5
1117 //////////////////////////////////////////////////////////////////////////
1118 
1119  /*! Used as a marker that is put before a \\bug item */
1120  virtual QCString trBug()
1121  {
1122  return "Bug";
1123  }
1124  /*! Used as the header of the bug list */
1126  {
1127  return "Bug Lys";
1128  }
1129 
1130 //////////////////////////////////////////////////////////////////////////
1131 // new since 1.2.6
1132 //////////////////////////////////////////////////////////////////////////
1133 
1134  /*! Used as ansicpg for RTF file
1135  *
1136  * The following table shows the correlation of Charset name, Charset Value and
1137  * <pre>
1138  * Codepage number:
1139  * Charset Name Charset Value(hex) Codepage number
1140  * ------------------------------------------------------
1141  * DEFAULT_CHARSET 1 (x01)
1142  * SYMBOL_CHARSET 2 (x02)
1143  * OEM_CHARSET 255 (xFF)
1144  * ANSI_CHARSET 0 (x00) 1252
1145  * RUSSIAN_CHARSET 204 (xCC) 1251
1146  * EE_CHARSET 238 (xEE) 1250
1147  * GREEK_CHARSET 161 (xA1) 1253
1148  * TURKISH_CHARSET 162 (xA2) 1254
1149  * BALTIC_CHARSET 186 (xBA) 1257
1150  * HEBREW_CHARSET 177 (xB1) 1255
1151  * ARABIC _CHARSET 178 (xB2) 1256
1152  * SHIFTJIS_CHARSET 128 (x80) 932
1153  * HANGEUL_CHARSET 129 (x81) 949
1154  * GB2313_CHARSET 134 (x86) 936
1155  * CHINESEBIG5_CHARSET 136 (x88) 950
1156  * </pre>
1157  *
1158  */
1159  virtual QCString trRTFansicp()
1160  {
1161  return "1252";
1162  }
1163 
1164 
1165  /*! Used as ansicpg for RTF fcharset
1166  * \see trRTFansicp() for a table of possible values.
1167  */
1168  virtual QCString trRTFCharSet()
1169  {
1170  return "0";
1171  }
1172 
1173  /*! Used as header RTF general index */
1175  {
1176  return "Indeks";
1177  }
1178 
1179  /*! This is used for translation of the word that will possibly
1180  * be followed by a single name or by a list of names
1181  * of the category.
1182  */
1183  virtual QCString trClass(bool first_capital, bool singular)
1184  {
1185  QCString result((first_capital ? "Klas" : "klas"));
1186  if (!singular) result+="se";
1187  return result;
1188  }
1190  /*! This is used for translation of the word that will possibly
1191  * be followed by a single name or by a list of names
1192  * of the category.
1193  */
1194  virtual QCString trFile(bool first_capital, bool singular)
1195  {
1196  QCString result((first_capital ? "Leër" : "leër"));
1197  if (!singular) result+="s";
1198  return result;
1199  }
1200 
1201  /*! This is used for translation of the word that will possibly
1202  * be followed by a single name or by a list of names
1203  * of the category.
1204  */
1205  virtual QCString trNamespace(bool first_capital, bool singular)
1206  {
1207  QCString result((first_capital ? "Namespace" : "namespace"));
1208  if (!singular) result+="s";
1209  return result;
1210  }
1211 
1212  /*! This is used for translation of the word that will possibly
1213  * be followed by a single name or by a list of names
1214  * of the category.
1215  */
1216  virtual QCString trGroup(bool first_capital, bool singular)
1217  {
1218  QCString result((first_capital ? "Groep" : "groep"));
1219  if (!singular) result+="e";
1220  return result;
1221  }
1222 
1223  /*! This is used for translation of the word that will possibly
1224  * be followed by a single name or by a list of names
1225  * of the category.
1226  */
1227  virtual QCString trPage(bool first_capital, bool singular)
1228  {
1229  QCString result((first_capital ? "Bladsy" : "bladsy"));
1230  if (!singular) result+="e";
1231  return result;
1232  }
1233 
1234  /*! This is used for translation of the word that will possibly
1235  * be followed by a single name or by a list of names
1236  * of the category.
1237  */
1238  virtual QCString trMember(bool first_capital, bool singular)
1239  {
1240  QCString result((first_capital ? "Lid" : "lid"));
1241  if (!singular) result = (first_capital ? "Lede" : "lede");
1242  return result;
1243  }
1244 
1245  /*! This is used for translation of the word that will possibly
1246  * be followed by a single name or by a list of names
1247  * of the category.
1248  */
1249  virtual QCString trGlobal(bool first_capital, bool singular)
1250  {
1251  QCString result((first_capital ? "Global" : "global"));
1252  if (!singular) result+="s";
1253  return result;
1254  }
1255 
1256 //////////////////////////////////////////////////////////////////////////
1257 // new since 1.2.7
1258 //////////////////////////////////////////////////////////////////////////
1259 
1260  /*! This text is generated when the \\author command is used and
1261  * for the author section in man pages. */
1262  virtual QCString trAuthor(bool first_capital, bool singular)
1263  {
1264  QCString result((first_capital ? "Outeur" : "outeur"));
1265  if (!singular) result+="s";
1266  return result;
1267  }
1268 
1269 //////////////////////////////////////////////////////////////////////////
1270 // new since 1.2.11
1271 //////////////////////////////////////////////////////////////////////////
1272 
1273  /*! This text is put before the list of members referenced by a member
1274  */
1275  virtual QCString trReferences()
1276  {
1277  return "Verwysings";
1278  }
1279 
1280 //////////////////////////////////////////////////////////////////////////
1281 // new since 1.2.13
1282 //////////////////////////////////////////////////////////////////////////
1283 
1284  /*! used in member documentation blocks to produce a list of
1285  * members that are implemented by this one.
1286  */
1287  virtual QCString trImplementedFromList(int numEntries)
1288  {
1289  return "Implimenteer "+trWriteList(numEntries)+".";
1290  }
1291 
1292  /*! used in member documentation blocks to produce a list of
1293  * all members that implement this abstract member.
1294  */
1295  virtual QCString trImplementedInList(int numEntries)
1296  {
1297  return "Geimplimenteer in "+trWriteList(numEntries)+".";
1298  }
1299 
1300 //////////////////////////////////////////////////////////////////////////
1301 // new since 1.2.16
1302 //////////////////////////////////////////////////////////////////////////
1303 
1304  /*! used in RTF documentation as a heading for the Table
1305  * of Contents.
1306  */
1307  virtual QCString trRTFTableOfContents()
1308  {
1309  return "Inhoudsopgawe";
1310  }
1311 
1312 //////////////////////////////////////////////////////////////////////////
1313 // new since 1.2.17
1314 //////////////////////////////////////////////////////////////////////////
1315 
1316  /*! Used as the header of the list of item that have been
1317  * flagged deprecated
1318  */
1319  virtual QCString trDeprecatedList()
1320  {
1321  return "Verouderde Lys";
1322  }
1323 
1324 //////////////////////////////////////////////////////////////////////////
1325 // new since 1.2.18
1326 //////////////////////////////////////////////////////////////////////////
1327 
1328  /*! Used as a header for declaration section of the events found in
1329  * a C# program
1330  */
1331  virtual QCString trEvents()
1332  {
1333  return "Events";
1334  }
1335  /*! Header used for the documentation section of a class' events. */
1336  virtual QCString trEventDocumentation()
1337  {
1338  return "Event Dokumentasie";
1339  }
1340 
1341 //////////////////////////////////////////////////////////////////////////
1342 // new since 1.3
1343 //////////////////////////////////////////////////////////////////////////
1344 
1345  /*! Used as a heading for a list of Java class types with package scope.
1346  */
1347  virtual QCString trPackageTypes()
1348  {
1349  return "Pakket Tipes";
1350  }
1351  /*! Used as a heading for a list of Java class functions with package
1352  * scope.
1353  */
1354  virtual QCString trPackageMembers()
1355  {
1356  return "Pakket Funksies";
1357  }
1358  /*! Used as a heading for a list of static Java class functions with
1359  * package scope.
1360  */
1362  {
1363  return "Statiese Pakket Funksies";
1364  }
1365  /*! Used as a heading for a list of Java class variables with package
1366  * scope.
1367  */
1368  virtual QCString trPackageAttribs()
1369  {
1370  return "Pakket Eienskappe";
1371  }
1372  /*! Used as a heading for a list of static Java class variables with
1373  * package scope.
1374  */
1376  {
1377  return "Statiese Pakket Eienskappe";
1378  }
1379 
1380 //////////////////////////////////////////////////////////////////////////
1381 // new since 1.3.1
1382 //////////////////////////////////////////////////////////////////////////
1384  /*! Used in the quick index of a class/file/namespace member list page
1385  * to link to the unfiltered list of all members.
1386  */
1387  virtual QCString trAll()
1388  {
1389  return "Alle Lede";
1390  }
1391  /*! Put in front of the call graph for a function. */
1392  virtual QCString trCallGraph()
1393  {
1394  return "'n gebruiks diagram vir hierdie funksie:";
1395  }
1396 
1397 //////////////////////////////////////////////////////////////////////////
1398 // new since 1.3.3
1399 //////////////////////////////////////////////////////////////////////////
1400 
1401  /*! This string is used as the title for the page listing the search
1402  * results.
1403  */
1404  virtual QCString trSearchResultsTitle()
1405  {
1406  return "Soektog Resultate";
1407  }
1408  /*! This string is put just before listing the search results. The
1409  * text can be different depending on the number of documents found.
1410  * Inside the text you can put the special marker $num to insert
1411  * the number representing the actual number of search results.
1412  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1413  * value 2 represents 2 or more matches. HTML markup is allowed inside
1414  * the returned string.
1415  */
1416  virtual QCString trSearchResults(int numDocuments)
1417  {
1418  if (numDocuments==0)
1419  {
1420  return "Geen dokumente na gelang van jou navraag nie.";
1421  }
1422  else if (numDocuments==1)
1423  {
1424  return "Die soektog het <b>1</b> dokument gevind na gelang van jou navraag.";
1425  }
1426  else
1427  {
1428  return "Die soektog het <b>$num</b> dokumente gevind na gelang van jou navraag. "
1429  "Beste resultate eerste.";
1430  }
1431  }
1432  /*! This string is put before the list of matched words, for each search
1433  * result. What follows is the list of words that matched the query.
1434  */
1435  virtual QCString trSearchMatches()
1436  {
1437  return "Teikens:";
1438  }
1439 
1440 //////////////////////////////////////////////////////////////////////////
1441 // new since 1.3.8
1442 //////////////////////////////////////////////////////////////////////////
1443 
1444  /*! This is used in HTML as the title of page with source code for file filename
1445  */
1446  virtual QCString trSourceFile(QCString& filename)
1447  {
1448  return filename + " Bron kode Leër";
1449  }
1451 //////////////////////////////////////////////////////////////////////////
1452 // new since 1.3.9
1453 //////////////////////////////////////////////////////////////////////////
1454 
1455  /*! This is used as the name of the chapter containing the directory
1456  * hierarchy.
1457  */
1458  virtual QCString trDirIndex()
1459  { return "Directory Hiërargie"; }
1460 
1461  /*! This is used as the name of the chapter containing the documentation
1462  * of the directories.
1463  */
1464  virtual QCString trDirDocumentation()
1465  { return "Directory Documentasie"; }
1466 
1467  /*! This is used as the title of the directory index and also in the
1468  * Quick links of a HTML page, to link to the directory hierarchy.
1469  */
1470  virtual QCString trDirectories()
1471  { return "Directories"; }
1472 
1473  /*! This returns a sentences that introduces the directory hierarchy.
1474  * and the fact that it is sorted alphabetically per level
1475  */
1476  virtual QCString trDirDescription()
1477  { return "Hierdie directory hiërargie is min of meer alfabeties "
1478  "gesorteer:";
1479  }
1480 
1481  /*! This returns the title of a directory page. The name of the
1482  * directory is passed via \a dirName.
1483  */
1484  virtual QCString trDirReference(const QCString &dirName)
1485  { QCString result=dirName; result+=" Directory Verwysing"; return result; }
1486 
1487  /*! This returns the word directory with or without starting capital
1488  * (\a first_capital) and in sigular or plural form (\a singular).
1489  */
1490  virtual QCString trDir(bool first_capital, bool singular)
1491  {
1492  QCString result((first_capital ? "Director" : "director"));
1493  if (singular) result+="y"; else result+="ies";
1494  return result;
1495  }
1496 
1497 //////////////////////////////////////////////////////////////////////////
1498 // new since 1.4.1
1499 //////////////////////////////////////////////////////////////////////////
1500 
1501  /*! This text is added to the documentation when the \\overload command
1502  * is used for a overloaded function.
1503  */
1504  virtual QCString trOverloadText()
1505  {
1506  return "Hierdie is 'n oorlaaide lede funksie, "
1507  "vertoon vir volledigheid. Dit verskil slegs van die bogegewe "
1508  "funksie in die argument(e) wat dit aanvaar.";
1509  }
1510 
1511 //////////////////////////////////////////////////////////////////////////
1512 // new since 1.4.6
1513 //////////////////////////////////////////////////////////////////////////
1514 
1515  /*! This is used to introduce a caller (or called-by) graph */
1516  virtual QCString trCallerGraph()
1517  {
1518  return "Hier is die roep skema vir die funksie:";
1519  }
1520 
1521  /*! This is used in the documentation of a file/namespace before the list
1522  * of documentation blocks for enumeration values
1523  */
1525  { return "Enumerator Dokumentasie"; }
1526 
1527 //////////////////////////////////////////////////////////////////////////
1528 // new since 1.5.4 (mainly for Fortran)
1529 //////////////////////////////////////////////////////////////////////////
1530 
1531  /*! header that is put before the list of member subprograms (Fortran). */
1533  { return "Lede Funksie/Subroetine Dokumentasie"; }
1534 
1535  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1537  { return "Data Tipes Lys"; }
1538 
1539  /*! This is put above each page as a link to all members of compounds (Fortran). */
1541  { return "Data Velde"; }
1542 
1543  /*! This is an introduction to the annotated compound list (Fortran). */
1545  { return "Hier is die data tipes met kort beskrywings:"; }
1546 
1547  /*! This is an introduction to the page with all data types (Fortran). */
1548  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1549  {
1550  QCString result="Hier is 'n lys van alle ";
1551  if (!extractAll)
1552  {
1553  result+="gedokumenteerde ";
1554  }
1555  result+="data tipe lede";
1556  result+=" met skakels na ";
1557  if (!extractAll)
1558  {
1559  result+="die data strukture dokumentasie vir elke lid";
1560  }
1561  else
1562  {
1563  result+="die data tipes waaraan hulle behoort:";
1564  }
1565  return result;
1566  }
1567 
1568  /*! This is used in LaTeX as the title of the chapter with the
1569  * annotated compound index (Fortran).
1570  */
1572  { return "Data Tipe Indeks"; }
1573 
1574  /*! This is used in LaTeX as the title of the chapter containing
1575  * the documentation of all data types (Fortran).
1576  */
1577  virtual QCString trTypeDocumentation()
1578  { return "Data Tipe Dokumentasie"; }
1579 
1580  /*! This is used in the documentation of a file as a header before the
1581  * list of (global) subprograms (Fortran).
1582  */
1583  virtual QCString trSubprograms()
1584  { return "Funksies/Subroetines"; }
1585 
1586  /*! This is used in the documentation of a file/namespace before the list
1587  * of documentation blocks for subprograms (Fortran)
1588  */
1590  { return "Funksies/Subroetine Dokumentasie"; }
1591 
1592  /*! This is used in the documentation of a file/namespace/group before
1593  * the list of links to documented compounds (Fortran)
1594  */
1595  virtual QCString trDataTypes()
1596  { return "Data Tipes"; }
1597 
1598  /*! used as the title of page containing all the index of all modules (Fortran). */
1599  virtual QCString trModulesList()
1600  { return "Modules Lys"; }
1601 
1602  /*! used as an introduction to the modules list (Fortran) */
1603  virtual QCString trModulesListDescription(bool extractAll)
1604  {
1605  QCString result="Hier is 'n lys van alle ";
1606  if (!extractAll) result+="gedokumenteerde ";
1607  result+="modules met kort beskrywings:";
1608  return result;
1609  }
1611  /*! used as the title of the HTML page of a module/type (Fortran) */
1612  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1613  ClassDef::CompoundType compType,
1614  bool isTemplate)
1615  {
1616  QCString result=(QCString)clName;
1617  switch(compType)
1618  {
1619  case ClassDef::Class: result+=" Module"; break;
1620  case ClassDef::Struct: result+=" Tipe"; break;
1621  case ClassDef::Union: result+=" Unie"; break;
1622  case ClassDef::Interface: result+=" Interflak"; break;
1623  case ClassDef::Protocol: result+=" Protokol"; break;
1624  case ClassDef::Category: result+=" Kategorie"; break;
1625  case ClassDef::Exception: result+=" Eksepsie"; break;
1626  default: break;
1627  }
1628  if (isTemplate) result+=" Template";
1629  result+=" Bron";
1630  return result;
1631  }
1632  /*! used as the title of the HTML page of a module (Fortran) */
1633  virtual QCString trModuleReference(const QCString &namespaceName)
1634  {
1635  QCString result=namespaceName;
1636  result+=" Module Bron";
1637  return result;
1638  }
1639 
1640  /*! This is put above each page as a link to all members of modules. (Fortran) */
1641  virtual QCString trModulesMembers()
1642  { return "Module Lede"; }
1643 
1644  /*! This is an introduction to the page with all modules members (Fortran) */
1645  virtual QCString trModulesMemberDescription(bool extractAll)
1646  {
1647  QCString result="Hier is 'n lys van alle ";
1648  if (!extractAll) result+="gedokumenteerde ";
1649  result+="module lede met skakels na ";
1650  if (extractAll)
1651  {
1652  result+="die module dokumentasie vir elke lid:";
1653  }
1654  else
1655  {
1656  result+="die modules waaraan hulle behoort:";
1657  }
1658  return result;
1659  }
1661  /*! This is used in LaTeX as the title of the chapter with the
1662  * index of all modules (Fortran).
1663  */
1664  virtual QCString trModulesIndex()
1665  { return "Modules Indeks"; }
1666 
1667  /*! This is used for translation of the word that will possibly
1668  * be followed by a single name or by a list of names
1669  * of the category.
1670  */
1671  virtual QCString trModule(bool first_capital, bool singular)
1672  {
1673  QCString result((first_capital ? "Module" : "module"));
1674  if (!singular) result+="s";
1675  return result;
1676  }
1677  /*! This is put at the bottom of a module documentation page and is
1678  * followed by a list of files that were used to generate the page.
1679  */
1681  bool single)
1682  {
1683  // single is true implies a single file
1684  QCString result=(QCString)"The documentation for this ";
1685  switch(compType)
1686  {
1687  case ClassDef::Class: result+="module"; break;
1688  case ClassDef::Struct: result+="tipe"; break;
1689  case ClassDef::Union: result+="unie"; break;
1690  case ClassDef::Interface: result+="Interflak"; break;
1691  case ClassDef::Protocol: result+="protokcol"; break;
1692  case ClassDef::Category: result+="kategorie"; break;
1693  case ClassDef::Exception: result+="eksepsie"; break;
1694  default: break;
1695  }
1696  result+=" is gegenereer vanaf die foldende leer";
1697  if (single) result+=":"; else result+="s:";
1698  return result;
1699  }
1700  /*! This is used for translation of the word that will possibly
1701  * be followed by a single name or by a list of names
1702  * of the category.
1703  */
1704  virtual QCString trType(bool first_capital, bool singular)
1705  {
1706  QCString result((first_capital ? "Tipe" : "tipe"));
1707  if (!singular) result+="s";
1708  return result;
1709  }
1710  /*! This is used for translation of the word that will possibly
1711  * be followed by a single name or by a list of names
1712  * of the category.
1713  */
1714  virtual QCString trSubprogram(bool first_capital, bool singular)
1715  {
1716  QCString result((first_capital ? "Subprogram" : "subprogram"));
1717  if (!singular) result+="me";
1718  return result;
1719  }
1720 
1721  /*! C# Type Constraint list */
1722  virtual QCString trTypeConstraints()
1723  {
1724  return "Tipe Limiete";
1725  }
1726 
1727 };
1728 
1729 #endif
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorAfrikaans::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_za.h:1660
TranslatorAfrikaans::trDeprecated
virtual QCString trDeprecated()
Definition: translator_za.h:809
TranslatorAfrikaans::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_za.h:712
TranslatorAfrikaans::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_za.h:1189
TranslatorAfrikaans::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_za.h:645
TranslatorAfrikaans::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_za.h:897
TranslatorAfrikaans::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_za.h:752
TranslatorAfrikaans::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_za.h:920
TranslatorAfrikaans::trModulesList
virtual QCString trModulesList()
Definition: translator_za.h:1614
TranslatorAfrikaans::trEnumerations
virtual QCString trEnumerations()
Definition: translator_za.h:435
TranslatorAfrikaans::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_za.h:231
TranslatorAfrikaans::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_za.h:928
TranslatorAfrikaans::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_za.h:126
TranslatorAfrikaans::trDirectories
virtual QCString trDirectories()
Definition: translator_za.h:1485
TranslatorAfrikaans::trClasses
virtual QCString trClasses()
Definition: translator_za.h:1093
TranslatorAfrikaans::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_za.h:1351
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorAfrikaans::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_za.h:876
TranslatorAfrikaans::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_za.h:1302
TranslatorAfrikaans::trExamples
virtual QCString trExamples()
Definition: translator_za.h:223
TranslatorAfrikaans::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_za.h:789
TranslatorAfrikaans::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_za.h:1686
TranslatorAfrikaans::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_za.h:1310
TranslatorAfrikaans::trTest
virtual QCString trTest()
Definition: translator_za.h:1063
TranslatorAfrikaans::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_za.h:483
TranslatorAfrikaans::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_za.h:641
TranslatorAfrikaans::trMemberList
virtual QCString trMemberList()
Definition: translator_za.h:130
TranslatorAfrikaans::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_za.h:1555
TranslatorAfrikaans::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_za.h:796
TranslatorAfrikaans::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_za.h:73
TranslatorAfrikaans::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_za.h:1277
TranslatorAfrikaans::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_za.h:1563
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorAfrikaans::trSearch
virtual QCString trSearch()
Definition: translator_za.h:227
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorAfrikaans::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_za.h:407
TranslatorAfrikaans::trBugList
virtual QCString trBugList()
Definition: translator_za.h:1140
TranslatorAfrikaans::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_za.h:413
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorAfrikaans::trDefines
virtual QCString trDefines()
Definition: translator_za.h:423
TranslatorAfrikaans::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_za.h:1334
TranslatorAfrikaans::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_za.h:109
TranslatorAfrikaans::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_za.h:1729
TranslatorAfrikaans::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_za.h:1362
TranslatorAfrikaans::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_za.h:386
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorAfrikaans::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_za.h:924
TranslatorAfrikaans::trTodoList
virtual QCString trTodoList()
Definition: translator_za.h:947
TranslatorAfrikaans::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_za.h:819
TranslatorAfrikaans::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_za.h:702
TranslatorAfrikaans::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_za.h:459
TranslatorAfrikaans::trCompoundList
virtual QCString trCompoundList()
Definition: translator_za.h:176
TranslatorAfrikaans::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_za.h:138
TranslatorAfrikaans::trFileIndex
virtual QCString trFileIndex()
Definition: translator_za.h:374
TranslatorAfrikaans::trAll
virtual QCString trAll()
Definition: translator_za.h:1402
TranslatorAfrikaans::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_za.h:1531
TranslatorAfrikaans::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_za.h:1586
TranslatorAfrikaans::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_za.h:1618
TranslatorAfrikaans::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_za.h:908
TranslatorAfrikaans::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_za.h:932
TranslatorAfrikaans::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_za.h:1559
TranslatorAfrikaans::trParameters
virtual QCString trParameters()
Definition: translator_za.h:543
TranslatorAfrikaans::trReferences
virtual QCString trReferences()
Definition: translator_za.h:1290
TranslatorAfrikaans::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_za.h:1737
TranslatorAfrikaans::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_za.h:329
TranslatorAfrikaans::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_za.h:353
TranslatorAfrikaans::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_za.h:1431
TranslatorAfrikaans::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_za.h:465
TranslatorAfrikaans::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_za.h:1719
TranslatorAfrikaans::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_za.h:829
TranslatorAfrikaans::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_za.h:653
TranslatorAfrikaans::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_za.h:1376
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorAfrikaans::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_za.h:504
TranslatorAfrikaans::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_za.h:160
TranslatorAfrikaans::trTodo
virtual QCString trTodo()
Definition: translator_za.h:942
TranslatorAfrikaans::trPostcondition
virtual QCString trPostcondition()
Definition: translator_za.h:849
TranslatorAfrikaans::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_za.h:872
TranslatorAfrikaans::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_za.h:1419
TranslatorAfrikaans::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_za.h:1231
TranslatorAfrikaans::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_za.h:629
TranslatorAfrikaans::trNote
virtual QCString trNote()
Definition: translator_za.h:889
TranslatorAfrikaans::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_za.h:839
TranslatorAfrikaans::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_za.h:893
TranslatorAfrikaans::trFriends
virtual QCString trFriends()
Definition: translator_za.h:574
TranslatorAfrikaans::trFileList
virtual QCString trFileList()
Definition: translator_za.h:189
TranslatorAfrikaans::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_za.h:1174
TranslatorAfrikaans::trPrecondition
virtual QCString trPrecondition()
Definition: translator_za.h:844
TranslatorAfrikaans::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_za.h:563
TranslatorAfrikaans::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_za.h:694
TranslatorAfrikaans
Definition: translator_za.h:29
TranslatorAfrikaans::trProperties
virtual QCString trProperties()
Definition: translator_za.h:1078
TranslatorAfrikaans::trDocumentation
virtual QCString trDocumentation()
Definition: translator_za.h:341
TranslatorAfrikaans::trSignals
virtual QCString trSignals()
Definition: translator_za.h:633
TranslatorAfrikaans::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_za.h:519
TranslatorAfrikaans::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_za.h:144
TranslatorAfrikaans::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_za.h:380
TranslatorAfrikaans::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_za.h:834
TranslatorAfrikaans::trAttention
virtual QCString trAttention()
Definition: translator_za.h:964
TranslatorAfrikaans::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_za.h:333
TranslatorAfrikaans::trMore
virtual QCString trMore()
Definition: translator_za.h:122
TranslatorAfrikaans::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_za.h:635
TranslatorAfrikaans::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_za.h:105
TranslatorAfrikaans::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_za.h:401
TranslatorAfrikaans::trPackages
virtual QCString trPackages()
Definition: translator_za.h:1120
TranslatorAfrikaans::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_za.h:1383
TranslatorAfrikaans::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_za.h:956
TranslatorAfrikaans::trEvents
virtual QCString trEvents()
Definition: translator_za.h:1346
TranslatorAfrikaans::trModules
virtual QCString trModules()
Definition: translator_za.h:168
TranslatorAfrikaans::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_za.h:592
TranslatorAfrikaans::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_za.h:708
TranslatorAfrikaans::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_za.h:513
TranslatorAfrikaans::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_za.h:471
TranslatorAfrikaans::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_za.h:453
TranslatorAfrikaans::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_za.h:1499
TranslatorAfrikaans::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_za.h:912
TranslatorAfrikaans::trCode
virtual QCString trCode()
Definition: translator_za.h:864
TranslatorAfrikaans::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_za.h:678
TranslatorAfrikaans::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_za.h:172
TranslatorAfrikaans::trVersion
virtual QCString trVersion()
Definition: translator_za.h:527
TranslatorAfrikaans::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_za.h:347
TranslatorAfrikaans::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_za.h:265
TranslatorAfrikaans::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_za.h:1551
TranslatorAfrikaans::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_za.h:101
TranslatorAfrikaans::trTestList
virtual QCString trTestList()
Definition: translator_za.h:1068
TranslatorAfrikaans::trReturns
virtual QCString trReturns()
Definition: translator_za.h:535
TranslatorAfrikaans::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_za.h:1505
TranslatorAfrikaans::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_za.h:983
TranslatorAfrikaans::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_za.h:584
TranslatorAfrikaans::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_za.h:1656
TranslatorAfrikaans::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_za.h:539
TranslatorAfrikaans::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_za.h:631
TranslatorAfrikaans::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_za.h:1322
TranslatorAfrikaans::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_za.h:1209
TranslatorAfrikaans::trEnumName
virtual QCString trEnumName()
Definition: translator_za.h:152
TranslatorAfrikaans::trExceptions
virtual QCString trExceptions()
Definition: translator_za.h:547
TranslatorAfrikaans::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_za.h:359
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorAfrikaans::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_za.h:559
TranslatorAfrikaans::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_za.h:622
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorAfrikaans::trSince
virtual QCString trSince()
Definition: translator_za.h:973
TranslatorAfrikaans::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_za.h:1695
TranslatorAfrikaans::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_za.h:1242
TranslatorAfrikaans::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_za.h:85
TranslatorAfrikaans::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_za.h:1679
TranslatorAfrikaans::trPageIndex
virtual QCString trPageIndex()
Definition: translator_za.h:880
TranslatorAfrikaans::trLegend
virtual QCString trLegend()
Definition: translator_za.h:1053
TranslatorAfrikaans::trISOLang
virtual QCString trISOLang()
Definition: translator_za.h:77
TranslatorAfrikaans::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_za.h:1369
TranslatorAfrikaans::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_za.h:307
TranslatorAfrikaans::trWarning
virtual QCString trWarning()
Definition: translator_za.h:523
TranslatorAfrikaans::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_za.h:551
TranslatorAfrikaans::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_za.h:1198
TranslatorAfrikaans::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_za.h:193
TranslatorAfrikaans::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_za.h:1539
TranslatorAfrikaans::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_za.h:1547
TranslatorAfrikaans::trBug
virtual QCString trBug()
Definition: translator_za.h:1135
TranslatorAfrikaans::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_za.h:1220
TranslatorAfrikaans::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_za.h:1648
TranslatorAfrikaans::trDirIndex
virtual QCString trDirIndex()
Definition: translator_za.h:1473
TranslatorAfrikaans::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_za.h:732
TranslatorAfrikaans::trDate
virtual QCString trDate()
Definition: translator_za.h:531
TranslatorAfrikaans::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_za.h:1105
TranslatorAfrikaans::trRemarks
virtual QCString trRemarks()
Definition: translator_za.h:960
TranslatorAdapter_1_6_0
Adapter class for languages that only contain translations up to version 1.6.0.
Definition: translator_adapter.h:323
TranslatorAfrikaans::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_za.h:1264
TranslatorAfrikaans::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_za.h:89
TranslatorAfrikaans::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_za.h:93
TranslatorAfrikaans::trReturnValues
virtual QCString trReturnValues()
Definition: translator_za.h:778
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorAfrikaans::trMainPage
virtual QCString trMainPage()
Definition: translator_za.h:783
TranslatorAfrikaans::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_za.h:477
TranslatorAfrikaans::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_za.h:1461
TranslatorAfrikaans::trPackageList
virtual QCString trPackageList()
Definition: translator_za.h:1110
TranslatorAfrikaans::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_za.h:800
TranslatorAfrikaans::trCallGraph
virtual QCString trCallGraph()
Definition: translator_za.h:1407
TranslatorAfrikaans::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_za.h:968
TranslatorAfrikaans::trFunctions
virtual QCString trFunctions()
Definition: translator_za.h:441
TranslatorAfrikaans::trCompounds
virtual QCString trCompounds()
Definition: translator_za.h:489
TranslatorAfrikaans::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_za.h:686
TranslatorAfrikaans::trEnumValue
virtual QCString trEnumValue()
Definition: translator_za.h:156
TranslatorAfrikaans::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_za.h:637
TranslatorAfrikaans::trInvariant
virtual QCString trInvariant()
Definition: translator_za.h:854
TranslatorAfrikaans::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_za.h:237
TranslatorAfrikaans::trTypedefs
virtual QCString trTypedefs()
Definition: translator_za.h:429
TranslatorAfrikaans::trNamespaces
virtual QCString trNamespaces()
Definition: translator_za.h:742
TranslatorAfrikaans::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_za.h:246
TranslatorAfrikaans::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_za.h:337
TranslatorAfrikaans::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_za.h:219
TranslatorAfrikaans::trOverloadText
virtual QCString trOverloadText()
Definition: translator_za.h:1519
TranslatorAfrikaans::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_za.h:1592
TranslatorAfrikaans::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_za.h:1183
TranslatorAfrikaans::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_za.h:868
TranslatorAfrikaans::trDirDescription
virtual QCString trDirDescription()
Definition: translator_za.h:1491
TranslatorAfrikaans::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_za.h:726
TranslatorAfrikaans::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_za.h:643
TranslatorAfrikaans::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_za.h:1115
TranslatorAfrikaans::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_za.h:639
TranslatorAfrikaans::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_za.h:824
TranslatorAfrikaans::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_za.h:1390
TranslatorAfrikaans::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_za.h:1627
TranslatorAfrikaans::trSubprograms
virtual QCString trSubprograms()
Definition: translator_za.h:1598
TranslatorAfrikaans::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_za.h:1450
TranslatorAfrikaans::idLanguage
virtual QCString idLanguage()
Definition: translator_za.h:56
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorAfrikaans::trInitialValue
virtual QCString trInitialValue()
Definition: translator_za.h:859
TranslatorAfrikaans::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_za.h:134
TranslatorAfrikaans::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_za.h:1604
TranslatorAfrikaans::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_za.h:1253
TranslatorAfrikaans::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_za.h:614
TranslatorAfrikaans::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_za.h:916
TranslatorAfrikaans::trDataTypes
virtual QCString trDataTypes()
Definition: translator_za.h:1610
TranslatorAfrikaans::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_za.h:97
TranslatorAfrikaans::trVariables
virtual QCString trVariables()
Definition: translator_za.h:447
TranslatorAfrikaans::trDefineValue
virtual QCString trDefineValue()
Definition: translator_za.h:1125
TranslatorAfrikaans::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_za.h:990
TranslatorAfrikaans::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_za.h:1479
TranslatorAfrikaans::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_za.h:417
TranslatorAfrikaans::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_za.h:647
TranslatorAfrikaans::trFileMembers
virtual QCString trFileMembers()
Definition: translator_za.h:206
TranslatorAfrikaans::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_za.h:1083
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108