Doxygen
translator_id.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_ID_H
19 #define TRANSLATOR_ID_H
20 
21 /*
22  * Translasi berikut didasarkan pada versi translator_en.h dalam
23  * Doxygen 1.7.5.1.
24  *
25  * Penterjemah: Adhi Hargo <cadmus_sw at yahoo.com>
26  */
28 {
29  public:
30 
31  // --- Language control methods -------------------
32 
33  /*! Used for identification of the language. The identification
34  * should not be translated. It should be replaced by the name
35  * of the language in English using lower-case characters only
36  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
37  * the identification used in language.cpp.
38  */
39  virtual QCString idLanguage()
40  { return "indonesian"; }
41 
42  /*! Used to get the LaTeX command(s) for the language support.
43  * This method should return string with commands that switch
44  * LaTeX to the desired language. For example
45  * <pre>"\\usepackage[german]{babel}\n"
46  * </pre>
47  * or
48  * <pre>"\\usepackage{polski}\n"
49  * "\\usepackage[latin2]{inputenc}\n"
50  * "\\usepackage[T1]{fontenc}\n"
51  * </pre>
52  *
53  * The English LaTeX does not use such commands. Because of this
54  * the empty string is returned in this implementation.
55  */
57  {
58  return "\\usepackage[bahasa]{babel}";
59  }
60 
61  virtual QCString trISOLang()
62  {
63  return "id";
64  }
65 
66  // --- Language translation methods -------------------
67 
68  /*! used in the compound documentation before a list of related functions. */
70  { return "Fungsi-fungsi Terkait"; }
71 
72  /*! subscript for the related functions. */
74  { return "(Perhatikan bahwa fungsi-fungsi tersebut bukan fungsi anggota.)"; }
75 
76  /*! header that is put before the detailed description of files, classes and namespaces. */
78  { return "Keterangan Lengkap"; }
79 
80  /*! header that is put before the list of typedefs. */
82  { return "Dokumentasi Anggota: Tipe"; }
83 
84  /*! header that is put before the list of enumerations. */
86  { return "Dokumentasi Anggota: Enumerasi"; }
87 
88  /*! header that is put before the list of member functions. */
90  { return "Dokumentasi Anggota: Fungsi"; }
91 
92  /*! header that is put before the list of member attributes. */
94  {
95  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
96  {
97  return "Dokumentasi Variabel";
98  }
99  else
100  {
101  return "Dokumentasi Anggota: Data";
102  }
103  }
104 
105  /*! this is the text of a link put after brief descriptions. */
106  virtual QCString trMore()
107  { return "Selengkapnya..."; }
108 
109  /*! put in the class documentation */
110  virtual QCString trListOfAllMembers()
111  { return "Daftar semua anggota"; }
112 
113  /*! used as the title of the "list of all members" page of a class */
114  virtual QCString trMemberList()
115  { return "Daftar anggota"; }
116 
117  /*! this is the first part of a sentence that is followed by a class name */
119  { return "Berikut ini daftar lengkap anggota untuk "; }
120 
121  /*! this is the remainder of the sentence after the class name */
123  { return ", termasuk semua anggota yang diwariskan."; }
124 
125  /*! this is put at the author sections at the bottom of man pages.
126  * parameter s is name of the project name.
127  */
128  virtual QCString trGeneratedAutomatically(const QCString &s)
129  { QCString result="Dibangkitkan secara otomatis oleh Doxygen";
130  if (!s.isEmpty()) result+=(QCString)" untuk "+s;
131  result+=" dari kode sumber.";
132  return result;
133  }
134 
135  /*! put after an enum name in the list of all members */
136  virtual QCString trEnumName()
137  { return "nama enumerasi"; }
138 
139  /*! put after an enum value in the list of all members */
140  virtual QCString trEnumValue()
141  { return "nilai enumerasi"; }
142 
143  /*! put after an undocumented member in the list of all members */
144  virtual QCString trDefinedIn()
145  { return "didefinisikan di"; }
146 
147  // quick reference sections
148 
149  /*! This is put above each page as a link to the list of all groups of
150  * compounds or files (see the \\group command).
151  */
152  virtual QCString trModules()
153  { return "Modul"; }
154 
155  /*! This is put above each page as a link to the class hierarchy */
156  virtual QCString trClassHierarchy()
157  { return "Hierarki Kelas"; }
158 
159  /*! This is put above each page as a link to the list of annotated classes */
160  virtual QCString trCompoundList()
161  {
162  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
163  {
164  return "Struktur Data";
165  }
166  else
167  {
168  return "Daftar Kelas";
169  }
170  }
171 
172  /*! This is put above each page as a link to the list of documented files */
173  virtual QCString trFileList()
174  { return "Daftar File"; }
175 
176  /*! This is put above each page as a link to all members of compounds. */
177  virtual QCString trCompoundMembers()
178  {
179  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
180  {
181  return "Variabel Data";
182  }
183  else
184  {
185  return "Daftar Anggota Kelas";
186  }
187  }
188 
189  /*! This is put above each page as a link to all members of files. */
190  virtual QCString trFileMembers()
191  {
192  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
193  {
194  return "Daftar Definisi Global";
195  }
196  else
197  {
198  return "Daftar Anggota File";
199  }
200  }
201 
202  /*! This is put above each page as a link to all related pages. */
203  virtual QCString trRelatedPages()
204  { return "Halaman Terkait"; }
205 
206  /*! This is put above each page as a link to all examples. */
207  virtual QCString trExamples()
208  { return "Contoh"; }
209 
210  /*! This is put above each page as a link to the search engine. */
211  virtual QCString trSearch()
212  { return "Cari"; }
213 
214  /*! This is an introduction to the class hierarchy. */
216  { return "Hierarki kelas ini diurutkan kurang-lebih"
217  " berdasarkan abjad:";
218  }
219 
220  /*! This is an introduction to the list with all files. */
221  virtual QCString trFileListDescription(bool extractAll)
222  {
223  QCString result="Berikut ini daftar seluruh file";
224  if (!extractAll) result+=" yang didokumentasikan";
225  result += ", dengan penjelasan singkat:";
226  return result;
227  }
228 
229  /*! This is an introduction to the annotated compound list. */
231  {
232 
233  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
234  {
235  return "Berikut ini daftar struktur data, dengan penjelasan singkat:";
236  }
237  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
238  {
239  return "Berikut ini daftar kelas, dengan penjelasan singkat:";
240  }
241  else
242  {
243  return "Berikut ini daftar kelas, struct, union, dan interface, dengan penjelasan singkat:";
244  }
245  }
246 
247  /*! This is an introduction to the page with all class members. */
248  virtual QCString trCompoundMembersDescription(bool extractAll)
249  {
250  QCString result="Berikut ini daftar seluruh ";
251  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
252  {
253  result+="variabel anggota struct dan union";
254  }
255  else
256  {
257  result+="kelas";
258  }
259  if (!extractAll)
260  {
261  result+=" yang didokumentasikan";
262  }
263  result+=", dengan tautan ke ";
264  if (!extractAll)
265  {
266  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
267  {
268  result+="dokumentasi struct/union untuk setiap variabel:";
269  }
270  else
271  {
272  result+="dokumentasi kelas untuk setiap anggota:";
273  }
274  }
275  else
276  {
277  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
278  {
279  result+="struct/union yang memuatnya:";
280  }
281  else
282  {
283  result+="kelas yang memuatnya:";
284  }
285  }
286  return result;
287  }
288 
289  /*! This is an introduction to the page with all file members. */
290  virtual QCString trFileMembersDescription(bool extractAll)
291  {
292  QCString result="Berikut ini daftar ";
293 
294  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
295  {
296  result+="fungsi, variabel, makro definisi, enumerasi, dan tipe";
297  }
298  else
299  {
300  result+="file";
301  }
302  if (!extractAll) result+=" yang didokumentasikan";
303  result+=", dengan tautan ke ";
304  if (extractAll)
305  result+="file yang memuatnya:";
306  else
307  result+="dokumentasinya:";
308  return result;
309  }
310 
311  /*! This is an introduction to the page with the list of all examples */
313  { return "Berikut ini daftar semua contoh:"; }
314 
315  /*! This is an introduction to the page with the list of related pages */
317  { return "Berikut ini daftar semua halaman dokumentasi yang terkait:"; }
318 
319  /*! This is an introduction to the page with the list of class/file groups */
321  { return "Berikut ini daftar semua modul:"; }
322 
323  // index titles (the project name is prepended for these)
324 
325  /*! This is used in HTML as the title of index.html. */
326  virtual QCString trDocumentation()
327  { return "Dokumentasi"; }
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 "Indeks Modul"; }
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 "Indeks Hierarki Kelas"; }
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 "Indeks Struktur Data";
349  }
350  else
351  {
352  return "Indeks Kelas";
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 "Indeks File"; }
361 
362  /*! This is used in LaTeX as the title of the chapter containing
363  * the documentation of all groups.
364  */
366  { return "Dokumentasi Modul"; }
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 "Dokumentasi Struktur Data";
376  }
377  else
378  {
379  return "Dokumentasi Kelas";
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 "Dokumentasi File"; }
388 
389  /*! This is used in LaTeX as the title of the chapter containing
390  * the documentation of all examples.
391  */
393  { return "Dokumentasi Contoh"; }
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 "Dokumentasi Halaman"; }
400 
401  /*! This is used in LaTeX as the title of the document */
402  virtual QCString trReferenceManual()
403  { return "Dokumen Referensi"; }
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 "Makro Definisi"; }
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 "Definisi Tipe"; }
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 "Enumerasi"; }
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 "Fungsi"; }
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 "Variabel"; }
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 "Nilai enumerasi"; }
440 
441  /*! This is used in the documentation of a file before the list of
442  * documentation blocks for defines
443  */
445  { return "Dokumentasi Makro Definisi"; }
446 
447  /*! This is used in the documentation of a file/namespace before the list
448  * of documentation blocks for typedefs
449  */
451  { return "Dokumentasi Definisi Tipe"; }
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 "Dokumentasi Tipe Enumerasi"; }
458 
459  /*! This is used in the documentation of a file/namespace before the list
460  * of documentation blocks for functions
461  */
463  { return "Dokumentasi Fungsi"; }
464 
465  /*! This is used in the documentation of a file/namespace before the list
466  * of documentation blocks for variables
467  */
469  { return "Dokumentasi Variabel"; }
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 "Struktur Data";
479  }
480  else
481  {
482  return "Kelas";
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)"Dibangkitkan pada tanggal "+date;
492  if (!projName.isEmpty()) result+=(QCString)" untuk "+projName;
493  result+=(QCString)" oleh";
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)"Diagram hierarki kelas untuk "+clName+":";
501  }
502 
503  /*! this text is generated when the \\internal command is used. */
505  { return "Hanya untuk digunakan secara internal."; }
506 
507  /*! this text is generated when the \\warning command is used. */
508  virtual QCString trWarning()
509  { return "Peringatan"; }
510 
511  /*! this text is generated when the \\version command is used. */
512  virtual QCString trVersion()
513  { return "Versi"; }
514 
515  /*! this text is generated when the \\date command is used. */
516  virtual QCString trDate()
517  { return "Tanggal"; }
518 
519  /*! this text is generated when the \\return command is used. */
520  virtual QCString trReturns()
521  { return "Mengembalikan"; }
522 
523  /*! this text is generated when the \\sa command is used. */
524  virtual QCString trSeeAlso()
525  { return "Lihat juga"; }
526 
527  /*! this text is generated when the \\param command is used. */
528  virtual QCString trParameters()
529  { return "Parameter"; }
530 
531  /*! this text is generated when the \\exception command is used. */
532  virtual QCString trExceptions()
533  { return "Eksepsi"; }
534 
535  /*! this text is used in the title page of a LaTeX document. */
536  virtual QCString trGeneratedBy()
537  { return "Dibangkitkan oleh"; }
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 "Daftar Namespace"; }
546 
547  /*! used as an introduction to the namespace list */
548  virtual QCString trNamespaceListDescription(bool extractAll)
549  {
550  QCString result="Berikut ini daftar namespace";
551  if (!extractAll) result+=" yang didokumentasikan";
552  result+=", dengan keterangan singkat:";
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 "Friend"; }
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 "Dokumentasi Friend Dan Fungsi Terkait"; }
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="Referensi";
582  switch(compType)
583  {
584  case ClassDef::Class: result+=" Kelas "; break;
585  case ClassDef::Struct: result+=" Struct "; break;
586  case ClassDef::Union: result+=" Union "; break;
587  case ClassDef::Interface: result+=" Interface "; break;
588  case ClassDef::Protocol: result+=" Protokol "; break;
589  case ClassDef::Category: result+=" Kategori "; break;
590  case ClassDef::Exception: result+=" Eksepsi "; break;
591  default: break;
592  }
593  if (isTemplate) result+=" Template ";
594  result+=(QCString)clName;
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="Referensi File ";
602  result+=fileName;
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="Referensi Namespace ";
610  result+=namespaceName;
611  return result;
612  }
613 
615  { return "Fungsi Anggota Publik"; }
616  virtual QCString trPublicSlots()
617  { return "Slot Publik"; }
618  virtual QCString trSignals()
619  { return "Signal"; }
621  { return "Fungsi Anggota Publik Statis"; }
623  { return "Fungsi Anggota Diproteksi"; }
624  virtual QCString trProtectedSlots()
625  { return "Slot Diproteksi"; }
627  { return "Fungsi Anggota Diproteksi Statis"; }
628  virtual QCString trPrivateMembers()
629  { return "Fungsi Anggota Privat"; }
630  virtual QCString trPrivateSlots()
631  { return "Slot Privat"; }
633  { return "Fungsi Anggota Privat Statis"; }
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+=", dan ";
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 "Mewarisi "+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 "Diwariskan ke "+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 "Di-reimplementasikan dari "+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 "Diimplementasikan ulang di "+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 "Anggota Namespace"; }
695 
696  /*! This is an introduction to the page with all namespace members */
697  virtual QCString trNamespaceMemberDescription(bool extractAll)
698  {
699  QCString result="Berikut ini daftar anggota namespace";
700  if (!extractAll) result+=" yang didokumentasikan";
701  result+=", dengan tautan ke ";
702  if (extractAll)
703  result+="dokumentasi namespace untuk setiap anggota:";
704  else
705  result+="namespace yang memuatnya:";
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 "Indeks Namespace"; }
713 
714  /*! This is used in LaTeX as the title of the chapter containing
715  * the documentation of all namespaces.
716  */
718  { return "Dokumentasi Namespace"; }
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 "Daftar Namespace"; }
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)"Dokumentasi untuk ";
742  switch(compType)
743  {
744  case ClassDef::Class: result+="kelas"; break;
745  case ClassDef::Struct: result+="struct"; break;
746  case ClassDef::Union: result+="union"; break;
747  case ClassDef::Interface: result+="interface"; break;
748  case ClassDef::Protocol: result+="protokol"; break;
749  case ClassDef::Category: result+="kategori"; break;
750  case ClassDef::Exception: result+="eksepsi"; break;
751  default: break;
752  }
753  result+=" ini dibangkitkan dari file";
754  result+=single ? "" : "-file";
755  result+=" berikut:";
756  return result;
757  }
758 
759 //////////////////////////////////////////////////////////////////////////
760 // new since 0.49-990901
761 //////////////////////////////////////////////////////////////////////////
762 
763  /*! This is used as the heading text for the retval command. */
764  virtual QCString trReturnValues()
765  { return "Nilai kembali"; }
766 
767  /*! This is in the (quick) index as a link to the main page (index.html)
768  */
769  virtual QCString trMainPage()
770  { return "Halaman Utama"; }
771 
772  /*! This is used in references to page that are put in the LaTeX
773  * documentation. It should be an abbreviation of the word page.
774  */
775  virtual QCString trPageAbbreviation()
776  { return "hal."; }
777 
778 //////////////////////////////////////////////////////////////////////////
779 // new since 0.49-991003
780 //////////////////////////////////////////////////////////////////////////
781 
783  {
784  return "Definisi pada baris @0 dalam file @1.";
785  }
787  {
788  return "Definisi dalam file @0.";
789  }
790 
791 //////////////////////////////////////////////////////////////////////////
792 // new since 0.49-991205
793 //////////////////////////////////////////////////////////////////////////
794 
795  virtual QCString trDeprecated()
796  {
797  return "Kadaluarsa";
798  }
799 
800 //////////////////////////////////////////////////////////////////////////
801 // new since 1.0.0
802 //////////////////////////////////////////////////////////////////////////
803 
804  /*! this text is put before a collaboration diagram */
805  virtual QCString trCollaborationDiagram(const QCString &clName)
806  {
807  return (QCString)"Diagram kolaborasi untuk "+clName+":";
808  }
809  /*! this text is put before an include dependency graph */
810  virtual QCString trInclDepGraph(const QCString &fName)
811  {
812  return (QCString)"Bagan kebergantungan pemuatan untuk "+fName+":";
813  }
814  /*! header that is put before the list of constructor/destructors. */
816  {
817  return "Dokumentasi Konstruktor & Destruktor";
818  }
819  /*! Used in the file documentation to point to the corresponding sources. */
821  {
822  return "Ke kode sumber file ini.";
823  }
824  /*! Used in the file sources to point to the corresponding documentation. */
826  {
827  return "Ke dokumentasi file ini.";
828  }
829  /*! Text for the \\pre command */
831  {
832  return "Kondisi Awal";
833  }
834  /*! Text for the \\post command */
836  {
837  return "Kondisi Akhir";
838  }
839  /*! Text for the \\invariant command */
841  {
842  return "Invarian";
843  }
844  /*! Text shown before a multi-line variable/enum initialization */
846  {
847  return "Nilai awal:";
848  }
849  /*! Text used the source code in the file index */
850  virtual QCString trCode()
851  {
852  return "kode";
853  }
855  {
856  return "Hierarki Kelas Secara Grafis";
857  }
859  {
860  return "Ke bagan grafis hierarki kelas";
861  }
863  {
864  return "Ke bagan tekstual hierarki kelas";
865  }
866  virtual QCString trPageIndex()
867  {
868  return "Indeks Halaman";
869  }
870 
871 //////////////////////////////////////////////////////////////////////////
872 // new since 1.1.0
873 //////////////////////////////////////////////////////////////////////////
874 
875  virtual QCString trNote()
876  {
877  return "Catatan";
878  }
879  virtual QCString trPublicTypes()
880  {
881  return "Tipe Publik";
882  }
883  virtual QCString trPublicAttribs()
884  {
885  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
886  {
887  return "Variabel Data";
888  }
889  else
890  {
891  return "Atribut Publik";
892  }
893  }
895  {
896  return "Atribut Publik Statis";
897  }
899  {
900  return "Tipe Diproteksi";
901  }
902  virtual QCString trProtectedAttribs()
903  {
904  return "Atribut Diproteksi";
905  }
907  {
908  return "Atribut Diproteksi Statis";
909  }
910  virtual QCString trPrivateTypes()
911  {
912  return "Tipe Privat";
913  }
914  virtual QCString trPrivateAttribs()
915  {
916  return "Atribut Privat";
917  }
919  {
920  return "Atribut Privat Statis";
921  }
922 
923 //////////////////////////////////////////////////////////////////////////
924 // new since 1.1.3
925 //////////////////////////////////////////////////////////////////////////
926 
927  /*! Used as a marker that is put before a \\todo item */
928  virtual QCString trTodo()
929  {
930  return "Tugas";
931  }
932  /*! Used as the header of the todo list */
934  {
935  return "Daftar Tugas";
936  }
937 
938 //////////////////////////////////////////////////////////////////////////
939 // new since 1.1.4
940 //////////////////////////////////////////////////////////////////////////
941 
942  virtual QCString trReferencedBy()
943  {
944  return "Direferensikan oleh";
945  }
946  virtual QCString trRemarks()
947  {
948  return "Keterangan";
949  }
950  virtual QCString trAttention()
951  {
952  return "Perhatian";
953  }
954  virtual QCString trInclByDepGraph()
955  {
956  return "Bagan ini menunjukkan file-file yang memuat"
957  " atau menggunakan file ini baik secara langsung maupun"
958  " tidak langsung:";
959  }
960  virtual QCString trSince()
961  {
962  return "Sejak";
963  }
964 
965 //////////////////////////////////////////////////////////////////////////
966 // new since 1.1.5
967 //////////////////////////////////////////////////////////////////////////
968 
969  /*! title of the graph legend page */
970  virtual QCString trLegendTitle()
971  {
972  return "Keterangan Bagan";
973  }
974  /*! page explaining how the dot graph's should be interpreted
975  * The %A in the text below are to prevent link to classes called "A".
976  */
977  virtual QCString trLegendDocs()
978  {
979  return
980  "Halaman ini berisi keterangan cara membaca bagan yang dibangkitkan "
981  "oleh doxygen.<p>\n"
982  "Contoh:\n"
983  "\\code\n"
984  "/*! Invisible class because of truncation */\n"
985  "class Invisible { };\n\n"
986  "/*! Truncated class, inheritance relation is hidden */\n"
987  "class Truncated : public Invisible { };\n\n"
988  "/* Class not documented with doxygen comments */\n"
989  "class Undocumented { };\n\n"
990  "/*! Class that is inherited using public inheritance */\n"
991  "class PublicBase : public Truncated { };\n\n"
992  "/*! A template class */\n"
993  "template<class T> class Templ { };\n\n"
994  "/*! Class that is inherited using protected inheritance */\n"
995  "class ProtectedBase { };\n\n"
996  "/*! Class that is inherited using private inheritance */\n"
997  "class PrivateBase { };\n\n"
998  "/*! Class that is used by the Inherited class */\n"
999  "class Used { };\n\n"
1000  "/*! Super class that inherits a number of other classes */\n"
1001  "class Inherited : public PublicBase,\n"
1002  " protected ProtectedBase,\n"
1003  " private PrivateBase,\n"
1004  " public Undocumented,\n"
1005  " public Templ<int>\n"
1006  "{\n"
1007  " private:\n"
1008  " Used *m_usedClass;\n"
1009  "};\n"
1010  "\\endcode\n"
1011  "Apabila tag \\c MAX_DOT_GRAPH_HEIGHT di file konfigurasi "
1012  "diset ke 240 kode di atas akan menghasilkan bagan berikut:"
1013  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1014  "<p>\n"
1015  "Kotak-kotak pada bagan di atas mempunyai arti sebagai berikut:\n"
1016  "<ul>\n"
1017  "<li>%Kotak hitam merupakan struct atau kelas yang bersangkutan.\n"
1018  "<li>%Kotak berbingkai hitam adalah struct atau kelas yang mempunyai dokumentasi.\n"
1019  "<li>%Kotak dengan bingkai abu-abu adalah struct atau kelas tanpa dokumentasi.\n"
1020  "<li>%Kotak dengan bingkai merah merupakan struct atau kelas yang didokumentasikan tetapi"
1021  "tidak semua relasinya ditampilkan. %Sebuah bagan "
1022  "akan terpotong apabila lebih besar daripada ukuran yang ditentukan.\n"
1023  "</ul>\n"
1024  "Arti dari tanda-tanda panah adalah sebagai berikut:\n"
1025  "<ul>\n"
1026  "<li>%Panah biru tua menandakan pewarisan publik.\n"
1027  "<li>%Panah hijau tua untuk pewarisan diproteksi.\n"
1028  "<li>%Panah merah tua untuk pewarisan privat.\n"
1029  "<li>%Panah ungu putus-putus menandakan kelas tersebut berhubungan dengan kelas lain. "
1030  "Panah tersebut diberi judul sesuai dengan kelas atau struct tujuan.\n"
1031  "<li>%Panah kuning putus-putus menandakan hubungan antara sebuah template kelas dan "
1032  "instance dari template tersebut. Panah tersebut diberi judul sesuai dengan "
1033  "parameter template yang digunakan.\n"
1034  "</ul>\n";
1035  }
1036  /*! text for the link to the legend page */
1037  virtual QCString trLegend()
1038  {
1039  return "keterangan";
1040  }
1041 
1042 //////////////////////////////////////////////////////////////////////////
1043 // new since 1.2.0
1044 //////////////////////////////////////////////////////////////////////////
1045 
1046  /*! Used as a marker that is put before a test item */
1047  virtual QCString trTest()
1048  {
1049  return "Tes";
1050  }
1051  /*! Used as the header of the test list */
1053  {
1054  return "Daftar Tes";
1055  }
1056 
1057 //////////////////////////////////////////////////////////////////////////
1058 // new since 1.2.2
1059 //////////////////////////////////////////////////////////////////////////
1060 
1061  /*! Used as a section header for IDL properties */
1063  {
1064  return "Daftar Property";
1065  }
1066  /*! Used as a section header for IDL property documentation */
1068  {
1069  return "Dokumentasi Property";
1070  }
1071 
1072 //////////////////////////////////////////////////////////////////////////
1073 // new since 1.2.4
1074 //////////////////////////////////////////////////////////////////////////
1075 
1076  /*! Used for Java classes in the summary section of Java packages */
1078  {
1079  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1080  {
1081  return "Struktur Data";
1082  }
1083  else
1084  {
1085  return "Daftar Kelas";
1086  }
1087  }
1088  /*! Used as the title of a Java package */
1089  virtual QCString trPackage(const QCString &name)
1090  {
1091  return (QCString)"Paket "+name;
1092  }
1093  /*! Title of the package index page */
1094  virtual QCString trPackageList()
1095  {
1096  return "Daftar Paket";
1097  }
1098  /*! The description of the package index page */
1100  {
1101  return "Berikut ini daftar paket, dengan keterangan singkat (apabila tersedia):";
1102  }
1103  /*! The link name in the Quick links header for each page */
1105  {
1106  return "Daftar Paket";
1107  }
1108  /*! Text shown before a multi-line define */
1110  {
1111  return "Nilai:";
1112  }
1113 
1114 //////////////////////////////////////////////////////////////////////////
1115 // new since 1.2.5
1116 //////////////////////////////////////////////////////////////////////////
1117 
1118  /*! Used as a marker that is put before a \\bug item */
1119  virtual QCString trBug()
1120  {
1121  return "Bug";
1122  }
1123  /*! Used as the header of the bug list */
1125  {
1126  return "Daftar Bug";
1127  }
1128 
1129 //////////////////////////////////////////////////////////////////////////
1130 // new since 1.2.6
1131 //////////////////////////////////////////////////////////////////////////
1132 
1133  /*! Used as ansicpg for RTF file
1134  *
1135  * The following table shows the correlation of Charset name, Charset Value and
1136  * <pre>
1137  * Codepage number:
1138  * Charset Name Charset Value(hex) Codepage number
1139  * ------------------------------------------------------
1140  * DEFAULT_CHARSET 1 (x01)
1141  * SYMBOL_CHARSET 2 (x02)
1142  * OEM_CHARSET 255 (xFF)
1143  * ANSI_CHARSET 0 (x00) 1252
1144  * RUSSIAN_CHARSET 204 (xCC) 1251
1145  * EE_CHARSET 238 (xEE) 1250
1146  * GREEK_CHARSET 161 (xA1) 1253
1147  * TURKISH_CHARSET 162 (xA2) 1254
1148  * BALTIC_CHARSET 186 (xBA) 1257
1149  * HEBREW_CHARSET 177 (xB1) 1255
1150  * ARABIC _CHARSET 178 (xB2) 1256
1151  * SHIFTJIS_CHARSET 128 (x80) 932
1152  * HANGEUL_CHARSET 129 (x81) 949
1153  * GB2313_CHARSET 134 (x86) 936
1154  * CHINESEBIG5_CHARSET 136 (x88) 950
1155  * </pre>
1156  *
1157  */
1158  virtual QCString trRTFansicp()
1159  {
1160  return "1252";
1161  }
1162 
1163 
1164  /*! Used as ansicpg for RTF fcharset
1165  * \see trRTFansicp() for a table of possible values.
1166  */
1167  virtual QCString trRTFCharSet()
1168  {
1169  return "0";
1170  }
1171 
1172  /*! Used as header RTF general index */
1174  {
1175  return "Indeks";
1176  }
1177 
1178  /*! This is used for translation of the word that will possibly
1179  * be followed by a single name or by a list of names
1180  * of the category.
1181  */
1182  virtual QCString trClass(bool first_capital, bool singular)
1183  {
1184  QCString result((first_capital ? "Kelas" : "kelas"));
1185  if (!singular) result+="-kelas";
1186  return result;
1187  }
1189  /*! This is used for translation of the word that will possibly
1190  * be followed by a single name or by a list of names
1191  * of the category.
1192  */
1193  virtual QCString trFile(bool first_capital, bool singular)
1194  {
1195  QCString result((first_capital ? "File" : "file"));
1196  if (!singular) result+="-file";
1197  return result;
1198  }
1199 
1200  /*! This is used for translation of the word that will possibly
1201  * be followed by a single name or by a list of names
1202  * of the category.
1203  */
1204  virtual QCString trNamespace(bool first_capital, bool)
1205  {
1206  QCString result((first_capital ? "Namespace" : "namespace"));
1207  return result;
1208  }
1209 
1210  /*! This is used for translation of the word that will possibly
1211  * be followed by a single name or by a list of names
1212  * of the category.
1213  */
1214  virtual QCString trGroup(bool first_capital, bool singular)
1215  {
1216  QCString result((first_capital ? "Kelompok" : "kelompok"));
1217  if (!singular) result+="-kelompok";
1218  return result;
1219  }
1220 
1221  /*! This is used for translation of the word that will possibly
1222  * be followed by a single name or by a list of names
1223  * of the category.
1224  */
1225  virtual QCString trPage(bool first_capital, bool singular)
1226  {
1227  QCString result((first_capital ? "Halaman" : "halaman"));
1228  if (!singular) result+="-halaman";
1229  return result;
1230  }
1231 
1232  /*! This is used for translation of the word that will possibly
1233  * be followed by a single name or by a list of names
1234  * of the category.
1235  */
1236  virtual QCString trMember(bool first_capital, bool singular)
1237  {
1238  QCString result((first_capital ? "Anggota" : "anggota"));
1239  if (!singular) result+="-anggota";
1240  return result;
1241  }
1242 
1243  /*! This is used for translation of the word that will possibly
1244  * be followed by a single name or by a list of names
1245  * of the category.
1246  */
1247  virtual QCString trGlobal(bool first_capital, bool singular)
1248  {
1249  QCString result((first_capital ? "Definisi" : "definisi"));
1250  if (!singular) result+="-definisi";
1251  result += " global";
1252  return result;
1253  }
1254 
1255 //////////////////////////////////////////////////////////////////////////
1256 // new since 1.2.7
1257 //////////////////////////////////////////////////////////////////////////
1258 
1259  /*! This text is generated when the \\author command is used and
1260  * for the author section in man pages. */
1261  virtual QCString trAuthor(bool first_capital, bool)
1262  {
1263  QCString result((first_capital ? "Penulis" : "penulis"));
1264  //if (!singular) result+="s";
1265  return result;
1266  }
1267 
1268 //////////////////////////////////////////////////////////////////////////
1269 // new since 1.2.11
1270 //////////////////////////////////////////////////////////////////////////
1271 
1272  /*! This text is put before the list of members referenced by a member
1273  */
1274  virtual QCString trReferences()
1275  {
1276  return "Referensi";
1277  }
1278 
1279 //////////////////////////////////////////////////////////////////////////
1280 // new since 1.2.13
1281 //////////////////////////////////////////////////////////////////////////
1282 
1283  /*! used in member documentation blocks to produce a list of
1284  * members that are implemented by this one.
1285  */
1286  virtual QCString trImplementedFromList(int numEntries)
1287  {
1288  return "Mengimplementasikan "+trWriteList(numEntries)+".";
1289  }
1290 
1291  /*! used in member documentation blocks to produce a list of
1292  * all members that implement this abstract member.
1293  */
1294  virtual QCString trImplementedInList(int numEntries)
1295  {
1296  return "Diimplementasikan di "+trWriteList(numEntries)+".";
1297  }
1298 
1299 //////////////////////////////////////////////////////////////////////////
1300 // new since 1.2.16
1301 //////////////////////////////////////////////////////////////////////////
1302 
1303  /*! used in RTF documentation as a heading for the Table
1304  * of Contents.
1305  */
1306  virtual QCString trRTFTableOfContents()
1307  {
1308  return "Daftar Isi";
1309  }
1310 
1311 //////////////////////////////////////////////////////////////////////////
1312 // new since 1.2.17
1313 //////////////////////////////////////////////////////////////////////////
1314 
1315  /*! Used as the header of the list of item that have been
1316  * flagged deprecated
1317  */
1318  virtual QCString trDeprecatedList()
1319  {
1320  return "Daftar Kadaluarsa";
1321  }
1322 
1323 //////////////////////////////////////////////////////////////////////////
1324 // new since 1.2.18
1325 //////////////////////////////////////////////////////////////////////////
1326 
1327  /*! Used as a header for declaration section of the events found in
1328  * a C# program
1329  */
1330  virtual QCString trEvents()
1331  {
1332  return "Event";
1333  }
1334  /*! Header used for the documentation section of a class' events. */
1335  virtual QCString trEventDocumentation()
1336  {
1337  return "Dokumentasi Event";
1338  }
1339 
1340 //////////////////////////////////////////////////////////////////////////
1341 // new since 1.3
1342 //////////////////////////////////////////////////////////////////////////
1343 
1344  /*! Used as a heading for a list of Java class types with package scope.
1345  */
1346  virtual QCString trPackageTypes()
1347  {
1348  return "Jenis Paket";
1349  }
1350  /*! Used as a heading for a list of Java class functions with package
1351  * scope.
1352  */
1353  virtual QCString trPackageMembers()
1354  {
1355  return "Daftar Fungsi Paket";
1356  }
1357  /*! Used as a heading for a list of static Java class functions with
1358  * package scope.
1359  */
1361  {
1362  return "Daftar Fungsi Statis Paket";
1363  }
1364  /*! Used as a heading for a list of Java class variables with package
1365  * scope.
1366  */
1367  virtual QCString trPackageAttribs()
1368  {
1369  return "Daftar Atribut Paket";
1370  }
1371  /*! Used as a heading for a list of static Java class variables with
1372  * package scope.
1373  */
1375  {
1376  return "Daftar Atribut Statis Paket";
1377  }
1378 
1379 //////////////////////////////////////////////////////////////////////////
1380 // new since 1.3.1
1381 //////////////////////////////////////////////////////////////////////////
1383  /*! Used in the quick index of a class/file/namespace member list page
1384  * to link to the unfiltered list of all members.
1385  */
1386  virtual QCString trAll()
1387  {
1388  return "Semua";
1389  }
1390  /*! Put in front of the call graph for a function. */
1391  virtual QCString trCallGraph()
1392  {
1393  return "Berikut ini bagan fungsi-terpanggil untuk fungsi ini:";
1394  }
1395 
1396 //////////////////////////////////////////////////////////////////////////
1397 // new since 1.3.3
1398 //////////////////////////////////////////////////////////////////////////
1399 
1400  /*! This string is used as the title for the page listing the search
1401  * results.
1402  */
1403  virtual QCString trSearchResultsTitle()
1404  {
1405  return "Hasil Pencarian";
1406  }
1407  /*! This string is put just before listing the search results. The
1408  * text can be different depending on the number of documents found.
1409  * Inside the text you can put the special marker $num to insert
1410  * the number representing the actual number of search results.
1411  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1412  * value 2 represents 2 or more matches. HTML markup is allowed inside
1413  * the returned string.
1414  */
1415  virtual QCString trSearchResults(int numDocuments)
1416  {
1417  if (numDocuments==0)
1418  {
1419  return "Maaf, tidak ada dokumen yang cocok.";
1420  }
1421  else if (numDocuments==1)
1422  {
1423  return "Ditemukan <b>1</b> dokumen yang cocok.";
1424  }
1425  else
1426  {
1427  return "Ditemukan <b>$num</b> documents yang cocok. "
1428  "Menampilkan hasil terbaik lebih awal.";
1429  }
1430  }
1431  /*! This string is put before the list of matched words, for each search
1432  * result. What follows is the list of words that matched the query.
1433  */
1434  virtual QCString trSearchMatches()
1435  {
1436  return "Kecocokan:";
1437  }
1438 
1439 //////////////////////////////////////////////////////////////////////////
1440 // new since 1.3.8
1441 //////////////////////////////////////////////////////////////////////////
1442 
1443  /*! This is used in HTML as the title of page with source code for file filename
1444  */
1445  virtual QCString trSourceFile(QCString& filename)
1446  {
1447  return "Kode Sumber:" + filename;
1448  }
1450 //////////////////////////////////////////////////////////////////////////
1451 // new since 1.3.9
1452 //////////////////////////////////////////////////////////////////////////
1453 
1454  /*! This is used as the name of the chapter containing the directory
1455  * hierarchy.
1456  */
1457  virtual QCString trDirIndex()
1458  { return "Hierarki Direktori"; }
1459 
1460  /*! This is used as the name of the chapter containing the documentation
1461  * of the directories.
1462  */
1463  virtual QCString trDirDocumentation()
1464  { return "Dokumentasi Direktori"; }
1465 
1466  /*! This is used as the title of the directory index and also in the
1467  * Quick links of an HTML page, to link to the directory hierarchy.
1468  */
1469  virtual QCString trDirectories()
1470  { return "Daftar Direktori"; }
1471 
1472  /*! This returns a sentences that introduces the directory hierarchy.
1473  * and the fact that it is sorted alphabetically per level
1474  */
1475  virtual QCString trDirDescription()
1476  { return "Struktur direktori ini diurutkan hampir berdasarkan abjad:";
1477  }
1479  /*! This returns the title of a directory page. The name of the
1480  * directory is passed via \a dirName.
1481  */
1482  virtual QCString trDirReference(const QCString &dirName)
1483  { QCString result="Referensi Direktori "; result+=dirName; return result; }
1485  /*! This returns the word directory with or without starting capital
1486  * (\a first_capital) and in sigular or plural form (\a singular).
1487  */
1488  virtual QCString trDir(bool first_capital, bool)
1489  {
1490  QCString result((first_capital ? "Direktori" : "direktori"));
1491  //if (singular) result+="y"; else result+="ies";
1492  return result;
1493  }
1494 
1495 //////////////////////////////////////////////////////////////////////////
1496 // new since 1.4.1
1497 //////////////////////////////////////////////////////////////////////////
1498 
1499  /*! This text is added to the documentation when the \\overload command
1500  * is used for a overloaded function.
1501  */
1502  virtual QCString trOverloadText()
1503  {
1504  return "Ini adalah fungsi anggota yang di-overload"
1505  " untuk kemudahan. Perbedaannya dengan fungsi di atas"
1506  " hanya pada parameter-parameter yang diterima.";
1507  }
1508 
1509 //////////////////////////////////////////////////////////////////////////
1510 // new since 1.4.6
1511 //////////////////////////////////////////////////////////////////////////
1512 
1513  /*! This is used to introduce a caller (or called-by) graph */
1514  virtual QCString trCallerGraph()
1515  {
1516  return "Berikut ini bagan fungsi-pemanggil untuk fungsi ini:";
1517  }
1518 
1519  /*! This is used in the documentation of a file/namespace before the list
1520  * of documentation blocks for enumeration values
1521  */
1523  { return "Dokumentasi Nilai Enumerasi"; }
1524 
1525 //////////////////////////////////////////////////////////////////////////
1526 // new since 1.5.4 (mainly for Fortran)
1527 //////////////////////////////////////////////////////////////////////////
1528 
1529  /*! header that is put before the list of member subprograms (Fortran). */
1531  { return "Dokumentasi Fungsi/Subrutin Anggota"; }
1532 
1533  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1535  { return "Daftar Tipe Data"; }
1536 
1537  /*! This is put above each page as a link to all members of compounds (Fortran). */
1539  { return "Variabel Data"; }
1540 
1541  /*! This is an introduction to the annotated compound list (Fortran). */
1543  { return "Berikut daftar tipe data, dengan penjelasan singkat:"; }
1544 
1545  /*! This is an introduction to the page with all data types (Fortran). */
1546  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1547  {
1548  QCString result="Berikut daftar semua anggota tipe data ";
1549  if (!extractAll)
1550  {
1551  result+="terdokumentasi ";
1552  }
1553  result+=" dengan tautan ke ";
1554  if (!extractAll)
1555  {
1556  result+="dokumentasi struktur data untuk setiap anggota:";
1557  }
1558  else
1559  {
1560  result+="tipe data yang memuatnya:";
1561  }
1562  return result;
1563  }
1564 
1565  /*! This is used in LaTeX as the title of the chapter with the
1566  * annotated compound index (Fortran).
1567  */
1569  { return "Indeks Tipe Data"; }
1570 
1571  /*! This is used in LaTeX as the title of the chapter containing
1572  * the documentation of all data types (Fortran).
1573  */
1574  virtual QCString trTypeDocumentation()
1575  { return "Dokumentasi Tipe Data"; }
1576 
1577  /*! This is used in the documentation of a file as a header before the
1578  * list of (global) subprograms (Fortran).
1579  */
1580  virtual QCString trSubprograms()
1581  { return "Fungsi/Subrutin"; }
1582 
1583  /*! This is used in the documentation of a file/namespace before the list
1584  * of documentation blocks for subprograms (Fortran)
1585  */
1587  { return "Dokumentasi Fungsi/Subrutin"; }
1588 
1589  /*! This is used in the documentation of a file/namespace/group before
1590  * the list of links to documented compounds (Fortran)
1591  */
1592  virtual QCString trDataTypes()
1593  { return "Tipe Data"; }
1594 
1595  /*! used as the title of page containing all the index of all modules (Fortran). */
1596  virtual QCString trModulesList()
1597  { return "Modules List"; }
1598 
1599  /*! used as an introduction to the modules list (Fortran) */
1600  virtual QCString trModulesListDescription(bool extractAll)
1601  {
1602  QCString result="Berikut daftar semua modul";
1603  if (!extractAll) result+=" terdokumentasi";
1604  result+=", dengan penjelasan singkat:";
1605  return result;
1606  }
1608  /*! used as the title of the HTML page of a module/type (Fortran) */
1609  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1610  ClassDef::CompoundType compType,
1611  bool isTemplate)
1612  {
1613  QCString result="Referensi ";
1614  if (isTemplate) result+="Template ";
1615  switch(compType)
1616  {
1617  case ClassDef::Class: result+="Modul "; break;
1618  case ClassDef::Struct: result+="Tipe "; break;
1619  case ClassDef::Union: result+="Union "; break;
1620  case ClassDef::Interface: result+="Antarmuka "; break;
1621  case ClassDef::Protocol: result+="Protokol "; break;
1622  case ClassDef::Category: result+="Kategori "; break;
1623  case ClassDef::Exception: result+="Eksepsi "; break;
1624  default: break;
1625  }
1626  result+=(QCString)clName;
1627  return result;
1628  }
1629  /*! used as the title of the HTML page of a module (Fortran) */
1630  virtual QCString trModuleReference(const QCString &namespaceName)
1631  {
1632  QCString result="Referensi Modul ";
1633  result+=namespaceName;
1634  return result;
1635  }
1636 
1637  /*! This is put above each page as a link to all members of modules. (Fortran) */
1638  virtual QCString trModulesMembers()
1639  { return "Anggota Modul"; }
1640 
1641  /*! This is an introduction to the page with all modules members (Fortran) */
1642  virtual QCString trModulesMemberDescription(bool extractAll)
1643  {
1644  QCString result="Berikut daftar semua anggota modul ";
1645  if (!extractAll) result+="terdokumentasi ";
1646  result+="dengan tautan ke ";
1647  if (extractAll)
1648  {
1649  result+="dokumentasi modul untuk setiap anggota:";
1650  }
1651  else
1652  {
1653  result+="modul yang memuatnya:";
1654  }
1655  return result;
1656  }
1658  /*! This is used in LaTeX as the title of the chapter with the
1659  * index of all modules (Fortran).
1660  */
1661  virtual QCString trModulesIndex()
1662  { return "Indeks Modul"; }
1663 
1664  /*! This is used for translation of the word that will possibly
1665  * be followed by a single name or by a list of names
1666  * of the category.
1667  */
1668  virtual QCString trModule(bool first_capital, bool singular)
1669  {
1670  QCString result((first_capital ? "Modul" : "modul"));
1671  if (!singular) result+="-modul";
1672  return result;
1673  }
1674  /*! This is put at the bottom of a module documentation page and is
1675  * followed by a list of files that were used to generate the page.
1676  */
1678  bool single)
1679  { // here s is one of " Module", " Struct" or " Union"
1680  // single is true implies a single file
1681  QCString result=(QCString)"Dokumentasi untuk ";
1682  switch(compType)
1683  {
1684  case ClassDef::Class: result+="module"; break;
1685  case ClassDef::Struct: result+="type"; break;
1686  case ClassDef::Union: result+="union"; break;
1687  case ClassDef::Interface: result+="interface"; break;
1688  case ClassDef::Protocol: result+="protocol"; break;
1689  case ClassDef::Category: result+="category"; break;
1690  case ClassDef::Exception: result+="exception"; break;
1691  default: break;
1692  }
1693  result+=" ini dibangkitkan dari file";
1694  if (!single) result+="-file ";
1695  result+="berikut:";
1696  return result;
1697  }
1698  /*! This is used for translation of the word that will possibly
1699  * be followed by a single name or by a list of names
1700  * of the category.
1701  */
1702  virtual QCString trType(bool first_capital, bool singular)
1703  {
1704  QCString result((first_capital ? "Tipe" : "tipe"));
1705  if (!singular) result+="-tipe";
1706  return result;
1707  }
1708  /*! This is used for translation of the word that will possibly
1709  * be followed by a single name or by a list of names
1710  * of the category.
1711  */
1712  virtual QCString trSubprogram(bool first_capital, bool singular)
1713  {
1714  QCString result((first_capital ? "Subprogram" : "subprogram"));
1715  if (!singular) result+="-subprogram";
1716  return result;
1717  }
1718 
1719  /*! C# Type Constraint list */
1720  virtual QCString trTypeConstraints()
1721  {
1722  return "Batasan Tipe";
1723  }
1724 
1725 //////////////////////////////////////////////////////////////////////////
1726 // new since 1.6.0 (mainly for the new search engine)
1727 //////////////////////////////////////////////////////////////////////////
1728 
1729  /*! directory relation for \a name */
1730  virtual QCString trDirRelation(const QCString &name)
1731  {
1732  return "Relasi "+QCString(name);
1733  }
1734 
1735  /*! Loading message shown when loading search results */
1736  virtual QCString trLoading()
1737  {
1738  return "Memuat...";
1739  }
1740 
1741  /*! Label used for search results in the global namespace */
1742  virtual QCString trGlobalNamespace()
1743  {
1744  return "Namespace Global";
1745  }
1746 
1747  /*! Message shown while searching */
1748  virtual QCString trSearching()
1749  {
1750  return "Mencari...";
1751  }
1752 
1753  /*! Text shown when no search results are found */
1754  virtual QCString trNoMatches()
1755  {
1756  return "Tidak Ditemukan";
1757  }
1758 
1759 //////////////////////////////////////////////////////////////////////////
1760 // new since 1.6.3 (missing items for the directory pages)
1761 //////////////////////////////////////////////////////////////////////////
1762 
1763  /*! when clicking a directory dependency label, a page with a
1764  * table is shown. The heading for the first column mentions the
1765  * source file that has a relation to another file.
1766  */
1767  virtual QCString trFileIn(const QCString &name)
1768  {
1769  return (QCString)"File dimuat dalam "+name;
1770  }
1771 
1772  /*! when clicking a directory dependency label, a page with a
1773  * table is shown. The heading for the second column mentions the
1774  * destination file that is included.
1775  */
1776  virtual QCString trIncludesFileIn(const QCString &name)
1777  {
1778  return (QCString)"Memuat file dalam "+name;
1779  }
1780 
1781  /** Compiles a date string.
1782  * @param year Year in 4 digits
1783  * @param month Month of the year: 1=January
1784  * @param day Day of the Month: 1..31
1785  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1786  * @param hour Hour of the day: 0..23
1787  * @param minutes Minutes in the hour: 0..59
1788  * @param seconds Seconds within the minute: 0..59
1789  * @param includeTime Include time in the result string?
1790  */
1791  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1792  int hour,int minutes,int seconds,
1793  bool includeTime)
1794  {
1795  static const char *days[] = { "Senin","Selasa","Rabu","Kamis","Jumat","Sabtu","Minggu" };
1796  static const char *months[] = { "Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember" };
1797  QCString sdate;
1798  sdate.sprintf("%s %d %s %d",days[dayOfWeek-1],day,months[month-1],year);
1799  if (includeTime)
1800  {
1801  QCString stime;
1802  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1803  sdate+=stime;
1804  }
1805  return sdate;
1806  }
1807 
1808 //////////////////////////////////////////////////////////////////////////
1809 // new since 1.7.5
1810 //////////////////////////////////////////////////////////////////////////
1811 
1812  /*! Header for the page with bibliographic citations */
1813  virtual QCString trCiteReferences()
1814  { return "Daftar Pustaka"; }
1815 
1816  /*! Text for copyright paragraph */
1817  virtual QCString trCopyright()
1818  { return "Hak Cipta"; }
1819 
1820  /*! Header for the graph showing the directory dependencies */
1821  virtual QCString trDirDepGraph(const QCString &name)
1822  { return QCString("Bagan dependensi directori untuk ")+name+":"; }
1823 
1824 };
1825 
1826 #endif
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorIndonesian::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_id.h:1828
TranslatorIndonesian::trLoading
virtual QCString trLoading()
Definition: translator_id.h:1751
TranslatorIndonesian::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_id.h:1430
TranslatorIndonesian::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_id.h:519
TranslatorIndonesian::trAuthor
virtual QCString trAuthor(bool first_capital, bool)
Definition: translator_id.h:1276
TranslatorIndonesian::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_id.h:1240
TranslatorIndonesian::trReturnValues
virtual QCString trReturnValues()
Definition: translator_id.h:779
TranslatorIndonesian::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_id.h:96
TranslatorIndonesian::trDataTypes
virtual QCString trDataTypes()
Definition: translator_id.h:1607
TranslatorIndonesian::trDirIndex
virtual QCString trDirIndex()
Definition: translator_id.h:1472
TranslatorIndonesian::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_id.h:236
TranslatorIndonesian::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_id.h:563
TranslatorIndonesian::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_id.h:1389
TranslatorIndonesian::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_id.h:921
TranslatorIndonesian::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_id.h:969
TranslatorIndonesian::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_id.h:752
TranslatorIndonesian::trPageIndex
virtual QCString trPageIndex()
Definition: translator_id.h:881
TranslatorIndonesian::trExamples
virtual QCString trExamples()
Definition: translator_id.h:222
TranslatorIndonesian::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_id.h:1561
TranslatorIndonesian::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_id.h:909
TranslatorIndonesian::trClasses
virtual QCString trClasses()
Definition: translator_id.h:1092
TranslatorIndonesian::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_id.h:465
TranslatorIndonesian::trPackages
virtual QCString trPackages()
Definition: translator_id.h:1119
TranslatorIndonesian::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_id.h:653
TranslatorIndonesian::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_id.h:1735
TranslatorIndonesian::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_id.h:702
TranslatorIndonesian::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_id.h:1497
TranslatorIndonesian::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_id.h:230
TranslatorIndonesian::trNote
virtual QCString trNote()
Definition: translator_id.h:890
TranslatorIndonesian::trOverloadText
virtual QCString trOverloadText()
Definition: translator_id.h:1517
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorIndonesian::trLegend
virtual QCString trLegend()
Definition: translator_id.h:1052
TranslatorIndonesian::trMainPage
virtual QCString trMainPage()
Definition: translator_id.h:784
TranslatorIndonesian::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_id.h:1782
TranslatorIndonesian::trFileIndex
virtual QCString trFileIndex()
Definition: translator_id.h:374
TranslatorIndonesian::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_id.h:1791
TranslatorIndonesian::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_id.h:639
TranslatorIndonesian::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_id.h:359
TranslatorIndonesian::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_id.h:104
TranslatorIndonesian::trFunctions
virtual QCString trFunctions()
Definition: translator_id.h:441
TranslatorIndonesian::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_id.h:1309
TranslatorIndonesian::trSignals
virtual QCString trSignals()
Definition: translator_id.h:633
TranslatorIndonesian::trParameters
virtual QCString trParameters()
Definition: translator_id.h:543
TranslatorIndonesian::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_id.h:1197
TranslatorIndonesian::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_id.h:635
TranslatorIndonesian::trEnumerations
virtual QCString trEnumerations()
Definition: translator_id.h:435
TranslatorIndonesian::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_id.h:1553
TranslatorIndonesian::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_id.h:513
TranslatorIndonesian::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_id.h:1082
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorIndonesian::trSearch
virtual QCString trSearch()
Definition: translator_id.h:226
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorIndonesian::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_id.h:159
TranslatorIndonesian::trDirDescription
virtual QCString trDirDescription()
Definition: translator_id.h:1490
TranslatorIndonesian::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_id.h:539
TranslatorIndonesian::trNoMatches
virtual QCString trNoMatches()
Definition: translator_id.h:1769
TranslatorIndonesian::trWarning
virtual QCString trWarning()
Definition: translator_id.h:523
TranslatorIndonesian::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_id.h:100
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorIndonesian::trDirectories
virtual QCString trDirectories()
Definition: translator_id.h:1484
TranslatorIndonesian::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_id.h:1615
TranslatorIndonesian::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_id.h:125
TranslatorIndonesian::trNamespaces
virtual QCString trNamespaces()
Definition: translator_id.h:742
TranslatorIndonesian::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_id.h:1262
TranslatorIndonesian::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_id.h:1557
TranslatorIndonesian::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_id.h:331
TranslatorIndonesian::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_id.h:825
TranslatorIndonesian::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_id.h:1836
TranslatorIndonesian::trVariables
virtual QCString trVariables()
Definition: translator_id.h:447
TranslatorIndonesian::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_id.h:1717
TranslatorIndonesian::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_id.h:1104
TranslatorIndonesian::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_id.h:622
TranslatorIndonesian::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_id.h:1449
TranslatorIndonesian::trCode
virtual QCString trCode()
Definition: translator_id.h:865
TranslatorIndonesian::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_id.h:894
TranslatorIndonesian::trISOLang
virtual QCString trISOLang()
Definition: translator_id.h:76
TranslatorIndonesian::trBugList
virtual QCString trBugList()
Definition: translator_id.h:1139
TranslatorIndonesian::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_id.h:869
TranslatorIndonesian::trDir
virtual QCString trDir(bool first_capital, bool)
Definition: translator_id.h:1503
TranslatorIndonesian::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_id.h:453
TranslatorIndonesian::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_id.h:380
TranslatorIndonesian::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_id.h:1361
TranslatorIndonesian::trCopyright
virtual QCString trCopyright()
Definition: translator_id.h:1832
TranslatorIndonesian::trTest
virtual QCString trTest()
Definition: translator_id.h:1062
TranslatorIndonesian::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_id.h:694
TranslatorIndonesian::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_id.h:88
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorIndonesian::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_id.h:386
TranslatorIndonesian::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_id.h:1188
TranslatorIndonesian::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_id.h:559
TranslatorIndonesian::trSubprograms
virtual QCString trSubprograms()
Definition: translator_id.h:1595
TranslatorIndonesian::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_id.h:1683
TranslatorIndonesian::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_id.h:1350
TranslatorIndonesian::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_id.h:327
TranslatorIndonesian::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_id.h:1460
TranslatorIndonesian::trFileMembers
virtual QCString trFileMembers()
Definition: translator_id.h:205
TranslatorIndonesian::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_id.h:1745
TranslatorIndonesian::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_id.h:137
TranslatorIndonesian::trDefines
virtual QCString trDefines()
Definition: translator_id.h:423
TranslatorIndonesian::trMemberList
virtual QCString trMemberList()
Definition: translator_id.h:129
TranslatorIndonesian::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_id.h:263
TranslatorIndonesian::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_id.h:1645
TranslatorIndonesian::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_id.h:1529
TranslatorIndonesian::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_id.h:84
TranslatorIndonesian::trTypedefs
virtual QCString trTypedefs()
Definition: translator_id.h:429
TranslatorIndonesian::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_id.h:1321
TranslatorIndonesian::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_id.h:873
TranslatorIndonesian::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_id.h:830
TranslatorIndonesian::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_id.h:504
TranslatorIndonesian::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_id.h:1676
TranslatorIndonesian::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_id.h:614
TranslatorIndonesian::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_id.h:1624
TranslatorIndonesian::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_id.h:1418
TranslatorIndonesian::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_id.h:985
TranslatorIndonesian::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_id.h:929
TranslatorIndonesian::trDate
virtual QCString trDate()
Definition: translator_id.h:531
TranslatorIndonesian::trPrecondition
virtual QCString trPrecondition()
Definition: translator_id.h:845
TranslatorIndonesian::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_id.h:584
TranslatorIndonesian::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_id.h:1537
TranslatorIndonesian::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_id.h:686
TranslatorIndonesian::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_id.h:1549
TranslatorIndonesian::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_id.h:407
TranslatorIndonesian::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_id.h:712
TranslatorIndonesian::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_id.h:592
TranslatorIndonesian::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_id.h:1757
TranslatorIndonesian::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_id.h:1229
TranslatorIndonesian::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_id.h:1657
TranslatorIndonesian::trProperties
virtual QCString trProperties()
Definition: translator_id.h:1077
TranslatorIndonesian::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_id.h:347
TranslatorIndonesian::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_id.h:1545
TranslatorIndonesian::trReturns
virtual QCString trReturns()
Definition: translator_id.h:535
TranslatorIndonesian::trCallGraph
virtual QCString trCallGraph()
Definition: translator_id.h:1406
TranslatorIndonesian::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_id.h:1589
TranslatorIndonesian::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_id.h:645
TranslatorIndonesian::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_id.h:477
TranslatorIndonesian::trBug
virtual QCString trBug()
Definition: translator_id.h:1134
TranslatorIndonesian::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_id.h:726
TranslatorIndonesian::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_id.h:1114
TranslatorIndonesian::trCompounds
virtual QCString trCompounds()
Definition: translator_id.h:489
TranslatorIndonesian::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_id.h:1653
TranslatorIndonesian::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_id.h:1727
TranslatorIndonesian::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_id.h:417
TranslatorIndonesian::trDefineValue
virtual QCString trDefineValue()
Definition: translator_id.h:1124
TranslatorIndonesian::trRemarks
virtual QCString trRemarks()
Definition: translator_id.h:961
TranslatorIndonesian::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_id.h:483
TranslatorIndonesian::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_id.h:708
TranslatorIndonesian::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_id.h:647
TranslatorIndonesian::trModules
virtual QCString trModules()
Definition: translator_id.h:167
TranslatorIndonesian::trAttention
virtual QCString trAttention()
Definition: translator_id.h:965
TranslatorIndonesian::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_id.h:401
TranslatorIndonesian::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_id.h:1333
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorIndonesian::trExceptions
virtual QCString trExceptions()
Definition: translator_id.h:547
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorIndonesian::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_id.h:925
TranslatorIndonesian::trTestList
virtual QCString trTestList()
Definition: translator_id.h:1067
TranslatorIndonesian::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_id.h:1583
TranslatorIndonesian::trSince
virtual QCString trSince()
Definition: translator_id.h:975
TranslatorIndonesian::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_id.h:1301
TranslatorIndonesian::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_id.h:218
TranslatorIndonesian::trTodoList
virtual QCString trTodoList()
Definition: translator_id.h:948
TranslatorIndonesian::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_id.h:335
TranslatorIndonesian::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_id.h:1182
TranslatorIndonesian::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_id.h:413
TranslatorIndonesian::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_id.h:917
TranslatorIndonesian::trEnumValue
virtual QCString trEnumValue()
Definition: translator_id.h:155
TranslatorIndonesian::trTodo
virtual QCString trTodo()
Definition: translator_id.h:943
TranslatorIndonesian::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_id.h:1368
TranslatorIndonesian::trEvents
virtual QCString trEvents()
Definition: translator_id.h:1345
TranslatorIndonesian
Definition: translator_id.h:27
TranslatorIndonesian::trInitialValue
virtual QCString trInitialValue()
Definition: translator_id.h:860
TranslatorIndonesian::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_id.h:92
TranslatorIndonesian::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_id.h:471
TranslatorIndonesian::trModulesList
virtual QCString trModulesList()
Definition: translator_id.h:1611
TranslatorIndonesian::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_id.h:732
TranslatorIndonesian::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_id.h:1375
TranslatorIndonesian::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_id.h:629
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorIndonesian::trSearching
virtual QCString trSearching()
Definition: translator_id.h:1763
TranslatorIndonesian::trFriends
virtual QCString trFriends()
Definition: translator_id.h:574
TranslatorIndonesian::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_id.h:551
TranslatorIndonesian::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_id.h:1208
TranslatorIndonesian::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_id.h:933
TranslatorIndonesian::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_id.h:245
TranslatorIndonesian::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_id.h:790
TranslatorIndonesian::trCompoundList
virtual QCString trCompoundList()
Definition: translator_id.h:175
TranslatorIndonesian::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_id.h:992
TranslatorIndonesian::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_id.h:459
TranslatorIndonesian::trPostcondition
virtual QCString trPostcondition()
Definition: translator_id.h:850
TranslatorIndonesian::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_id.h:877
TranslatorIndonesian::idLanguage
virtual QCString idLanguage()
Definition: translator_id.h:54
TranslatorIndonesian::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_id.h:913
TranslatorIndonesian::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_id.h:1173
TranslatorIndonesian::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_id.h:1382
TranslatorIndonesian::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_id.h:643
TranslatorIndonesian::trVersion
virtual QCString trVersion()
Definition: translator_id.h:527
TranslatorIndonesian::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_id.h:1692
TranslatorIndonesian::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_id.h:797
TranslatorIndonesian::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_id.h:641
TranslatorIndonesian::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_id.h:71
TranslatorIndonesian::trDeprecated
virtual QCString trDeprecated()
Definition: translator_id.h:810
TranslatorIndonesian::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_id.h:820
TranslatorIndonesian::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_id.h:898
TranslatorAdapter_1_8_0
Adapter class for languages that only contain translations up to version 1.8.0.
Definition: translator_adapter.h:263
TranslatorIndonesian::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_id.h:171
TranslatorIndonesian::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_id.h:305
TranslatorIndonesian::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_id.h:1478
TranslatorIndonesian::trDocumentation
virtual QCString trDocumentation()
Definition: translator_id.h:341
TranslatorIndonesian::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_id.h:1601
TranslatorIndonesian::trInvariant
virtual QCString trInvariant()
Definition: translator_id.h:855
TranslatorIndonesian::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_id.h:108
TranslatorIndonesian::trPackageList
virtual QCString trPackageList()
Definition: translator_id.h:1109
TranslatorIndonesian::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_id.h:840
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorIndonesian::trAll
virtual QCString trAll()
Definition: translator_id.h:1401
TranslatorIndonesian::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_id.h:678
TranslatorIndonesian::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_id.h:637
TranslatorIndonesian::trReferences
virtual QCString trReferences()
Definition: translator_id.h:1289
TranslatorIndonesian::trEnumName
virtual QCString trEnumName()
Definition: translator_id.h:151
TranslatorIndonesian::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_id.h:957
TranslatorIndonesian::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_id.h:192
TranslatorIndonesian::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_id.h:631
TranslatorIndonesian::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_id.h:1251
TranslatorIndonesian::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_id.h:353
TranslatorIndonesian::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_id.h:133
TranslatorIndonesian::trNamespace
virtual QCString trNamespace(bool first_capital, bool)
Definition: translator_id.h:1219
TranslatorIndonesian::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_id.h:143
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorIndonesian::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_id.h:801
TranslatorIndonesian::trMore
virtual QCString trMore()
Definition: translator_id.h:121
TranslatorIndonesian::trFileList
virtual QCString trFileList()
Definition: translator_id.h:188
TranslatorIndonesian::trDateTime
virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
Compiles a date string.
Definition: translator_id.h:1806
TranslatorIndonesian::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_id.h:835
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108