Doxygen
Loading...
Searching...
No Matches
translator_ar.h
Go to the documentation of this file.
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 * Arabic translation for Doxygen
20 *
21 * Please send your comments on this translation to moazreyad@yahoo.com
22 *
23 * Note : consider this file as Beta version for testing Arabic output with Doxygen.
24 *
25 * Revision history :
26 *
27 * 6/2006 : Created initial version of Arabic translation.
28 */
29
30#ifndef TRANSLATOR_AR_H
31#define TRANSLATOR_AR_H
32
34{
35 public:
36
37 // --- Language control methods -------------------
38
39 /*! Used for identification of the language. The identification
40 * should not be translated. It should be replaced by the name
41 * of the language in English using lower-case characters only
42 * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
43 * the identification used in language.cpp.
44 */
45 QCString idLanguage() override
46 { return "arabic"; }
47
48 /*! Used to get the LaTeX command(s) for the language support.
49 * This method should return string with commands that switch
50 * LaTeX to the desired language. For example
51 * <pre>"\\usepackage[german]{babel}\n"
52 * </pre>
53 * or
54 * <pre>"\\usepackage{polski}\n"
55 * "\\usepackage[latin2]{inputenc}\n"
56 * "\\usepackage[T1]{fontenc}\n"
57 * </pre>
58 *
59 * The English LaTeX does not use such commands. Because of this
60 * the empty string is returned in this implementation.
61 */
62 QCString latexLanguageSupportCommand() override
63 {
64 return "";
65 }
66
67 QCString latexCommandName() override
68 {
69 return p_latexCommandName("xelatex");
70 }
71
72 QCString trISOLang() override
73 { return "ar-EG"; }
74 QCString getLanguageString() override
75 {
76 return "0xC01 Arabic (Egypt)";
77 }
78
79 // --- Language translation methods -------------------
80
81 /*! used in the compound documentation before a list of related functions. */
82 QCString trRelatedFunctions() override
83 { return "دوال ذات صلة"; }
84
85 /*! subscript for the related functions. */
86 QCString trRelatedSubscript() override
87 { return "(لاحظ أن هذه الدوال ليست أعضاء)"; }
88
89 /*! header that is put before the detailed description of files, classes and namespaces. */
90 QCString trDetailedDescription() override
91 { return "وصف تفصيلي"; }
92
93 /*! header that is used when the summary tag is missing inside the details tag */
94 QCString trDetails() override
95 { return "التفاصيل"; }
96
97 /*! header that is put before the list of typedefs. */
98 QCString trMemberTypedefDocumentation() override
99 { return "توثيق تعريفات النوع الأعضاء"; }
100
101 /*! header that is put before the list of enumerations. */
103 { return "توثيق العدديات الأعضاء"; }
104
105 /*! header that is put before the list of member functions. */
107 { return "توثيق الدوال الأعضاء"; }
108
109 /*! header that is put before the list of member attributes. */
110 QCString trMemberDataDocumentation() override
111 {
112 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
113 {
114 return "توثيق الحقل";
115 }
116 else
117 {
118 return "توثيق البيان العضو";
119 }
120 }
121
122 /*! this is the text of a link put after brief descriptions. */
123 QCString trMore() override
124 { return "المزيد ..."; }
125
126 /*! put in the class documentation */
127 QCString trListOfAllMembers() override
128 { return "اعرض كل الأعضاء"; }
129
130 /*! used as the title of the "list of all members" page of a class */
131 QCString trMemberList() override
132 { return "قائمة الأعضاء"; }
133
134 /*! this is the first part of a sentence that is followed by a class name */
135 QCString trThisIsTheListOfAllMembers() override
136 { return "هذه فائمة بكل الأعضاء في"; }
137
138 /*! this is the remainder of the sentence after the class name */
139 QCString trIncludingInheritedMembers() override
140 { return ", متضمنة كل الأعضاء الموروثة"; }
141
142 /*! this is put at the author sections at the bottom of man pages.
143 * parameter s is name of the project name.
144 */
145 QCString trGeneratedAutomatically(const QCString &s) override
146 { QCString result="تم تكوينها آليا بواسطة Doxygen";
147 if (!s.isEmpty()) result+=" لـ "+s;
148 result+=" من ملفات المصدر.";
149 return result;
150 }
151
152 /*! put after an enum name in the list of all members */
153 QCString trEnumName() override
154 { return "الإسم العددي"; }
155
156 /*! put after an enum value in the list of all members */
157 QCString trEnumValue() override
158 { return "القيمة العددية"; }
159
160 /*! put after an undocumented member in the list of all members */
161 QCString trDefinedIn() override
162 { return "معرف في"; }
163
164 // quick reference sections
165
166 /*! This is put above each page as a link to the list of all groups of
167 * compounds or files (see the \\group command).
168 */
169 QCString trModules() override
170 { return "مكونات"; }
171
172 /*! This is put above each page as a link to the class hierarchy */
173 QCString trClassHierarchy() override
174 { return "الشكل الهرمي للفئة"; }
175
176 /*! This is put above each page as a link to the list of annotated classes */
177 QCString trCompoundList() override
178 {
179 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
180 {
181 return "هياكل البيانات";
182 }
183 else
184 {
185 return "قائمة الفئات";
186 }
187 }
188
189 /*! This is put above each page as a link to the list of documented files */
190 QCString trFileList() override
191 { return "قائمة الملفات"; }
192
193 /*! This is put above each page as a link to all members of compounds. */
194 QCString trCompoundMembers() override
195 {
196 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
197 {
198 return "حقول البيانات";
199 }
200 else
201 {
202 return "أعضاء الفئة";
203 }
204 }
205
206 /*! This is put above each page as a link to all members of files. */
207 QCString trFileMembers() override
208 {
209 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
210 {
211 return "العوام";
212 }
213 else
214 {
215 return "أعضاء الملف";
216 }
217 }
218
219 /*! This is put above each page as a link to all related pages. */
220 QCString trRelatedPages() override
221 { return "صفحات ذات صلة"; }
222
223 /*! This is put above each page as a link to all examples. */
224 QCString trExamples() override
225 { return "أمثلة"; }
226
227 /*! This is put above each page as a link to the search engine. */
228 QCString trSearch() override
229 { return "بحث"; }
230
231 /*! This is an introduction to the class hierarchy. */
232 QCString trClassHierarchyDescription() override
233 { return "قائمة التوارث هذه تم ترتيبها أبجديا بصورة تقريبية ، "
234 "ولكن ليس بصورة تامة:";
235 }
236
237 /*! This is an introduction to the list with all files. */
238 QCString trFileListDescription(bool extractAll) override
239 {
240 QCString result="هذه قائمة بكل الملفات";
241 if (!extractAll) result+="الموثقة ";
242 result+="مع وصف مختصر :";
243 return result;
244 }
245
246 /*! This is an introduction to the annotated compound list. */
247 QCString trCompoundListDescription() override
248 {
249
250 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
251 {
252 return "هذه هي هياكل البيانات مع وصف مختصر:";
253 }
254 else
255 {
256 return "هذه هي الفئات ، البناءات ،"
257 "الإتحادات والواجهات مع وصف مختصر:";
258 }
259 }
260
261 /*! This is an introduction to the page with all class members. */
262 QCString trCompoundMembersDescription(bool extractAll) override
263 {
264 QCString result="هذه قائمة بكل ";
265
266 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
267 {
268 result+="حقول البناءات والإتحادات";
269 }
270 else
271 {
272 result+="أعضاء الفئة";
273 }
274 if (!extractAll)
275 {
276 result+=" الموثقة ";
277 }
278 result+=" مع وصلات إلى ";
279 if (!extractAll)
280 {
281 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
282 {
283 result+="توثيق البناء/الإتحاد لكل حقل:";
284 }
285 else
286 {
287 result+="توثيق الفئة لكل عضو:";
288 }
289 }
290 else
291 {
292 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
293 {
294 result+="البناءات/الإتحادات التي ينتمون إليها:";
295 }
296 else
297 {
298 result+="الفئات التي ينتمون إليها:";
299 }
300 }
301 return result;
302 }
303
304 /*! This is an introduction to the page with all file members. */
305 QCString trFileMembersDescription(bool extractAll) override
306 {
307 QCString result="Here is a list of all ";
308 if (!extractAll) result+="documented ";
309
310 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
311 {
312 result+="functions, variables, defines, enums, and typedefs";
313 }
314 else
315 {
316 result+="file members";
317 }
318 result+=" with links to ";
319 if (extractAll)
320 result+="the files they belong to:";
321 else
322 result+="the documentation:";
323 return result;
324 }
325
326 /*! This is an introduction to the page with the list of all examples */
327 QCString trExamplesDescription() override
328 { return "هذه قائمة بكل الأمثلة:"; }
329
330 /*! This is an introduction to the page with the list of related pages */
331 QCString trRelatedPagesDescription() override
332 { return "هذه قائمة بكل صفحات التوثيق ذات الصلة:"; }
333
334 /*! This is an introduction to the page with the list of class/file groups */
335 QCString trModulesDescription() override
336 { return "هذه قائمة بكل المكونات:"; }
337
338
339 /*! This is used in HTML as the title of index.html. */
340 QCString trDocumentation(const QCString &projName) override
341 { return (!projName.isEmpty()?projName + " " : "") + "التوثيق"; }
342
343 /*! This is used in LaTeX as the title of the chapter with the
344 * index of all groups.
345 */
346 QCString trModuleIndex() override
347 { return "فهرس المكونات"; }
348
349 /*! This is used in LaTeX as the title of the chapter with the
350 * class hierarchy.
351 */
352 QCString trHierarchicalIndex() override
353 { return "الفهرس الهرمي"; }
354
355 /*! This is used in LaTeX as the title of the chapter with the
356 * annotated compound index.
357 */
358 QCString trCompoundIndex() override
359 {
360 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
361 {
362 return "فهرس هيكل البيانات";
363 }
364 else
365 {
366 return "فهرس الفئة";
367 }
368 }
369
370 /*! This is used in LaTeX as the title of the chapter with the
371 * list of all files.
372 */
373 QCString trFileIndex() override
374 { return "فهرس الملفات"; }
375
376 /*! This is used in LaTeX as the title of the chapter containing
377 * the documentation of all groups.
378 */
379 QCString trModuleDocumentation() override
380 { return "توثيق المكون"; }
381
382 /*! This is used in LaTeX as the title of the chapter containing
383 * the documentation of all classes, structs and unions.
384 */
385 QCString trClassDocumentation() override
386 {
387 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
388 {
389 return "فهرس هيكل البيانات";
390 }
391 else if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
392 {
394 }
395 else
396 {
397 return "فهرس الفئة";
398 }
399 }
400
401 /*! This is used in LaTeX as the title of the chapter containing
402 * the documentation of all files.
403 */
404 QCString trFileDocumentation() override
405 { return "توثيق الملفات"; }
406
407 /*! This is used in LaTeX as the title of the document */
408 QCString trReferenceManual() override
409 { return "الكتيب المرجعي"; }
410
411 /*! This is used in the documentation of a file as a header before the
412 * list of defines
413 */
414 QCString trDefines() override
415 { return "التعريفات"; }
416
417 /*! This is used in the documentation of a file as a header before the
418 * list of typedefs
419 */
420 QCString trTypedefs() override
421 { return "Typedefs"; }
422
423 /*! This is used in the documentation of a file as a header before the
424 * list of enumerations
425 */
426 QCString trEnumerations() override
427 { return "العدديات"; }
428
429 /*! This is used in the documentation of a file as a header before the
430 * list of (global) functions
431 */
432 QCString trFunctions() override
433 { return "الدوال"; }
434
435 /*! This is used in the documentation of a file as a header before the
436 * list of (global) variables
437 */
438 QCString trVariables() override
439 { return "المتغيرات"; }
440
441 /*! This is used in the documentation of a file as a header before the
442 * list of (global) variables
443 */
444 QCString trEnumerationValues() override
445 { return "Enumerator"; }
446
447 /*! This is used in the documentation of a file before the list of
448 * documentation blocks for defines
449 */
450 QCString trDefineDocumentation() override
451 { return "Define Documentation"; }
452
453 /*! This is used in the documentation of a file/namespace before the list
454 * of documentation blocks for typedefs
455 */
456 QCString trTypedefDocumentation() override
457 { return "Typedef Documentation"; }
458
459 /*! This is used in the documentation of a file/namespace before the list
460 * of documentation blocks for enumeration types
461 */
463 { return "Enumeration Type Documentation"; }
464
465 /*! This is used in the documentation of a file/namespace before the list
466 * of documentation blocks for enumeration values
467 */
469 { return "Enumerator Documentation"; }
470
471 /*! This is used in the documentation of a file/namespace before the list
472 * of documentation blocks for functions
473 */
474 QCString trFunctionDocumentation() override
475 { return "توثيق الدالة"; }
476
477 /*! This is used in the documentation of a file/namespace before the list
478 * of documentation blocks for variables
479 */
480 QCString trVariableDocumentation() override
481 { return "توثيق المتغير"; }
482
483 /*! This is used in the documentation of a file/namespace/group before
484 * the list of links to documented compounds
485 */
486 QCString trCompounds() override
487 {
488 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
489 {
490 return "هياكل البيانات";
491 }
492 else
493 {
494 return "الفئات";
495 }
496 }
497
498 /*! This is used in the standard footer of each page and indicates when
499 * the page was generated
500 */
501 QCString trGeneratedAt(const QCString &date,const QCString &projName) override
502 {
503 QCString result="Generated on "+date;
504 if (!projName.isEmpty()) result+=" for "+projName;
505 result+=" by";
506 return result;
507 }
508
509 /*! this text is put before a class diagram */
510 QCString trClassDiagram(const QCString &clName) override
511 {
512 return "Inheritance diagram for "+clName+":";
513 }
514
515 /*! this text is generated when the \\warning command is used. */
516 QCString trWarning() override
517 { return "تنبيه"; }
518
519 /*! this text is generated when the \\version command is used. */
520 QCString trVersion() override
521 { return "إصدارة"; }
522
523 /*! this text is generated when the \\date command is used. */
524 QCString trDate() override
525 { return "تاريخ"; }
526
527 /*! this text is generated when the \\return command is used. */
528 QCString trReturns() override
529 { return "Returns"; }
530
531 /*! this text is generated when the \\sa command is used. */
532 QCString trSeeAlso() override
533 { return "انظر أيضا"; }
534
535 /*! this text is generated when the \\param command is used. */
536 QCString trParameters() override
537 { return "Parameters"; }
538
539 /*! this text is generated when the \\exception command is used. */
540 QCString trExceptions() override
541 { return "استثناءات"; }
542
543 /*! this text is used in the title page of a LaTeX document. */
544 QCString trGeneratedBy() override
545 { return "انتجت بواسطة"; }
546
547//////////////////////////////////////////////////////////////////////////
548// new since 0.49-990307
549//////////////////////////////////////////////////////////////////////////
550
551 /*! used as the title of page containing all the index of all namespaces. */
552 QCString trNamespaceList() override
553 { return "قائمة مجالات الأسماء"; }
554
555 /*! used as an introduction to the namespace list */
556 QCString trNamespaceListDescription(bool extractAll) override
557 {
558 QCString result="Here is a list of all ";
559 if (!extractAll) result+="documented ";
560 result+="namespaces with brief descriptions:";
561 return result;
562 }
563
564 /*! used in the class documentation as a header before the list of all
565 * friends of a class
566 */
567 QCString trFriends() override
568 { return "Friends"; }
569
570//////////////////////////////////////////////////////////////////////////
571// new since 0.49-990405
572//////////////////////////////////////////////////////////////////////////
573
574 /*! used in the class documentation as a header before the list of all
575 * related classes
576 */
578 { return "Friends And Related Function Documentation"; }
579
580//////////////////////////////////////////////////////////////////////////
581// new since 0.49-990425
582//////////////////////////////////////////////////////////////////////////
583
584 /*! used as the title of the HTML page of a class/struct/union */
585 QCString trCompoundReference(const QCString &clName,
586 ClassDef::CompoundType compType,
587 bool isTemplate) override
588 {
589 QCString result=clName;
590 switch(compType)
591 {
592 case ClassDef::Class: result+=" Class"; break;
593 case ClassDef::Struct: result+=" Struct"; break;
594 case ClassDef::Union: result+=" Union"; break;
595 case ClassDef::Interface: result+=" Interface"; break;
596 case ClassDef::Protocol: result+=" Protocol"; break;
597 case ClassDef::Category: result+=" Category"; break;
598 case ClassDef::Exception: result+=" Exception"; break;
599 default: break;
600 }
601 if (isTemplate) result+=" Template";
602 result+=" Reference";
603 return result;
604 }
605
606 /*! used as the title of the HTML page of a file */
607 QCString trFileReference(const QCString &fileName) override
608 {
609 QCString result=fileName;
610 result+=" File Reference";
611 return result;
612 }
613
614 /*! used as the title of the HTML page of a namespace */
615 QCString trNamespaceReference(const QCString &namespaceName) override
616 {
617 QCString result=namespaceName;
618 result+=" Namespace Reference";
619 return result;
620 }
621
622 QCString trPublicMembers() override
623 { return "Public Member Functions"; }
624 QCString trPublicSlots() override
625 { return "Public Slots"; }
626 QCString trSignals() override
627 { return "Signals"; }
628 QCString trStaticPublicMembers() override
629 { return "Static Public Member Functions"; }
630 QCString trProtectedMembers() override
631 { return "Protected Member Functions"; }
632 QCString trProtectedSlots() override
633 { return "Protected Slots"; }
634 QCString trStaticProtectedMembers() override
635 { return "Static Protected Member Functions"; }
636 QCString trPrivateMembers() override
637 { return "Private Member Functions"; }
638 QCString trPrivateSlots() override
639 { return "Private Slots"; }
640 QCString trStaticPrivateMembers() override
641 { return "Static Private Member Functions"; }
642
643 /*! this function is used to produce a comma-separated list of items.
644 * use generateMarker(i) to indicate where item i should be put.
645 */
646 QCString trWriteList(int numEntries) override
647 {
648 QCString result;
649 // the inherits list contain `numEntries' classes
650 for (int i=0;i<numEntries;i++)
651 {
652 // use generateMarker to generate placeholders for the class links!
653 result+=generateMarker(i); // generate marker for entry i in the list
654 // (order is left to right)
655
656 if (i!=numEntries-1) // not the last entry, so we need a separator
657 {
658 if (i<numEntries-2) // not the fore last entry
659 result+=", ";
660 else // the fore last entry
661 result+=", and ";
662 }
663 }
664 return result;
665 }
666
667 /*! used in class documentation to produce a list of base classes,
668 * if class diagrams are disabled.
669 */
670 QCString trInheritsList(int numEntries) override
671 {
672 return "Inherits "+trWriteList(numEntries)+".";
673 }
674
675 /*! used in class documentation to produce a list of super classes,
676 * if class diagrams are disabled.
677 */
678 QCString trInheritedByList(int numEntries) override
679 {
680 return "Inherited by "+trWriteList(numEntries)+".";
681 }
682
683 /*! used in member documentation blocks to produce a list of
684 * members that are hidden by this one.
685 */
686 QCString trReimplementedFromList(int numEntries) override
687 {
688 return "Reimplemented from "+trWriteList(numEntries)+".";
689 }
690
691 /*! used in member documentation blocks to produce a list of
692 * all member that overwrite the implementation of this member.
693 */
694 QCString trReimplementedInList(int numEntries) override
695 {
696 return "Reimplemented in "+trWriteList(numEntries)+".";
697 }
698
699 /*! This is put above each page as a link to all members of namespaces. */
700 QCString trNamespaceMembers() override
701 { return "Namespace Members"; }
702
703 /*! This is an introduction to the page with all namespace members */
704 QCString trNamespaceMemberDescription(bool extractAll) override
705 {
706 QCString result="Here is a list of all ";
707 if (!extractAll) result+="documented ";
708 result+="namespace members with links to ";
709 if (extractAll)
710 result+="the namespace documentation for each member:";
711 else
712 result+="the namespaces they belong to:";
713 return result;
714 }
715 /*! This is used in LaTeX as the title of the chapter with the
716 * index of all namespaces.
717 */
718 QCString trNamespaceIndex() override
719 { return "فهرس مجالات الأسماء"; }
720
721 /*! This is used in LaTeX as the title of the chapter containing
722 * the documentation of all namespaces.
723 */
724 QCString trNamespaceDocumentation() override
725 { return "توثيق مجالات الأسماء"; }
726
727//////////////////////////////////////////////////////////////////////////
728// new since 0.49-990522
729//////////////////////////////////////////////////////////////////////////
730
731 /*! This is used in the documentation before the list of all
732 * namespaces in a file.
733 */
734 QCString trNamespaces() override
735 { return "مجالات الأسماء"; }
736
737//////////////////////////////////////////////////////////////////////////
738// new since 0.49-990728
739//////////////////////////////////////////////////////////////////////////
740
741 /*! This is put at the bottom of a class documentation page and is
742 * followed by a list of files that were used to generate the page.
743 */
745 bool single) override
746 { // here s is one of " Class", " Struct" or " Union"
747 // single is true implies a single file
748 QCString result="توثيق ";
749 switch(compType)
750 {
751 case ClassDef::Class: result+="هذه الفئة"; break;
752 case ClassDef::Struct: result+="هذا البناء"; break;
753 case ClassDef::Union: result+="هذا الإتحاد"; break;
754 case ClassDef::Interface: result+="هذه الواجهة"; break;
755 case ClassDef::Protocol: result+="هذا البروتوكول"; break;
756 case ClassDef::Category: result+="هذا التصنيف"; break;
757 case ClassDef::Exception: result+="هذا الإستثناء"; break;
758 default: break;
759 }
760 result+=" تم تكوينه من ";
761 if (single) result+="هذا الملف:"; else result+="هذه الملفات:";
762 return result;
763 }
764
765//////////////////////////////////////////////////////////////////////////
766// new since 0.49-990901
767//////////////////////////////////////////////////////////////////////////
768
769 /*! This is used as the heading text for the retval command. */
770 QCString trReturnValues() override
771 { return "قيم العودة"; }
772
773 /*! This is in the (quick) index as a link to the main page (index.html)
774 */
775 QCString trMainPage() override
776 { return "الصفحة الرئيسية"; }
777
778 /*! This is used in references to page that are put in the LaTeX
779 * documentation. It should be an abbreviation of the word page.
780 */
781 QCString trPageAbbreviation() override
782 { return "ص."; }
783
784//////////////////////////////////////////////////////////////////////////
785// new since 0.49-991003
786//////////////////////////////////////////////////////////////////////////
787
788 QCString trDefinedAtLineInSourceFile() override
789 {
790 return "Definition at line @0 of file @1.";
791 }
792 QCString trDefinedInSourceFile() override
793 {
794 return "Definition in file @0.";
795 }
796
797//////////////////////////////////////////////////////////////////////////
798// new since 0.49-991205
799//////////////////////////////////////////////////////////////////////////
800
801 QCString trDeprecated() override
802 {
803 return "Deprecated";
804 }
805
806//////////////////////////////////////////////////////////////////////////
807// new since 1.0.0
808//////////////////////////////////////////////////////////////////////////
809
810 /*! this text is put before a collaboration diagram */
811 QCString trCollaborationDiagram(const QCString &clName) override
812 {
813 return "رسم التعاون لـ "+clName+":";
814 }
815 /*! this text is put before an include dependency graph */
816 QCString trInclDepGraph(const QCString &fName) override
817 {
818 return "رسم اعتمادية التضمين لـ "+fName+":";
819 }
820 /*! header that is put before the list of constructor/destructors. */
821 QCString trConstructorDocumentation() override
822 {
823 return "توثيق دوال البناء والهدم";
824 }
825 /*! Used in the file documentation to point to the corresponding sources. */
826 QCString trGotoSourceCode() override
827 {
828 return "اذهب إلى الكود الخاص بهذا الملف.";
829 }
830 /*! Used in the file sources to point to the corresponding documentation. */
831 QCString trGotoDocumentation() override
832 {
833 return "اذهب إلى توثيق هذا الملف.";
834 }
835 /*! Text for the \\pre command */
836 QCString trPrecondition() override
837 {
838 return "شرط سابق";
839 }
840 /*! Text for the \\post command */
841 QCString trPostcondition() override
842 {
843 return "شرط لاحق";
844 }
845 /*! Text for the \\invariant command */
846 QCString trInvariant() override
847 {
848 return "ثابت";
849 }
850 /*! Text shown before a multi-line variable/enum initialization */
851 QCString trInitialValue() override
852 {
853 return "قيمة مبدئية:";
854 }
855 /*! Text used the source code in the file index */
856 QCString trCode() override
857 {
858 return "كود";
859 }
860 QCString trGraphicalHierarchy() override
861 {
862 return "الشكل الرسومي للفئات";
863 }
864 QCString trGotoGraphicalHierarchy() override
865 {
866 return "اذهب إلى الشكل الهرمي الرسومي للفئات";
867 }
868 QCString trGotoTextualHierarchy() override
869 {
870 return "اذهب إلى الشكل الهرمي النصي للفئات";
871 }
872 QCString trPageIndex() override
873 {
874 return "فهرس الصفحات";
875 }
876
877//////////////////////////////////////////////////////////////////////////
878// new since 1.1.0
879//////////////////////////////////////////////////////////////////////////
880
881 QCString trNote() override
882 {
883 return "ملاحظات";
884 }
885 QCString trPublicTypes() override
886 {
887 return "أنواع عامة";
888 }
889 QCString trPublicAttribs() override
890 {
891 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
892 {
893 return "حقول بيانات";
894 }
895 else
896 {
897 return "صفات عامة";
898 }
899 }
900 QCString trStaticPublicAttribs() override
901 {
902 return "صفات ساكنة عامة";
903 }
904 QCString trProtectedTypes() override
905 {
906 return "أنواع محمية";
907 }
908 QCString trProtectedAttribs() override
909 {
910 return "صفات محمية";
911 }
912 QCString trStaticProtectedAttribs() override
913 {
914 return "صفات ساكنة محمية";
915 }
916 QCString trPrivateTypes() override
917 {
918 return "أنواع خاصة";
919 }
920 QCString trPrivateAttribs() override
921 {
922 return "صفات خاصة";
923 }
924 QCString trStaticPrivateAttribs() override
925 {
926 return "صفات ساكنة خاصة";
927 }
928
929//////////////////////////////////////////////////////////////////////////
930// new since 1.1.3
931//////////////////////////////////////////////////////////////////////////
932
933 /*! Used as a marker that is put before a \\todo item */
934 QCString trTodo() override
935 {
936 return "مهام";
937 }
938 /*! Used as the header of the todo list */
939 QCString trTodoList() override
940 {
941 return "قائمة المهام";
942 }
943
944//////////////////////////////////////////////////////////////////////////
945// new since 1.1.4
946//////////////////////////////////////////////////////////////////////////
947
948 QCString trReferencedBy() override
949 {
950 return "ذكر بواسطة";
951 }
952 QCString trRemarks() override
953 {
954 return "تعليقات";
955 }
956 QCString trAttention() override
957 {
958 return "انتبه";
959 }
960 QCString trInclByDepGraph() override
961 {
962 return "هذا الرسم يوضح الملفات التي ضمنت هذا الملف"
963 "بصورة مباشرة أو غير مباشرة:";
964 }
965 QCString trSince() override
966 {
967 return "منذ";
968 }
969
970//////////////////////////////////////////////////////////////////////////
971// new since 1.1.5
972//////////////////////////////////////////////////////////////////////////
973
974 /*! title of the graph legend page */
975 QCString trLegendTitle() override
976 {
977 return "Graph Legend";
978 }
979 /*! page explaining how the dot graph's should be interpreted
980 * The %A in the text below are to prevent link to classes called "A".
981 */
982 QCString trLegendDocs() override
983 {
984 return
985 "This page explains how to interpret the graphs that are generated "
986 "by doxygen.<p>\n"
987 "Consider the following example:\n"
988 "\\code\n"
989 "/*! Invisible class because of truncation */\n"
990 "class Invisible { };\n\n"
991 "/*! Truncated class, inheritance relation is hidden */\n"
992 "class Truncated : public Invisible { };\n\n"
993 "/* Class not documented with doxygen comments */\n"
994 "class Undocumented { };\n\n"
995 "/*! Class that is inherited using public inheritance */\n"
996 "class PublicBase : public Truncated { };\n\n"
997 "/*! A template class */\n"
998 "template<class T> class Templ { };\n\n"
999 "/*! Class that is inherited using protected inheritance */\n"
1000 "class ProtectedBase { };\n\n"
1001 "/*! Class that is inherited using private inheritance */\n"
1002 "class PrivateBase { };\n\n"
1003 "/*! Class that is used by the Inherited class */\n"
1004 "class Used { };\n\n"
1005 "/*! Super class that inherits a number of other classes */\n"
1006 "class Inherited : public PublicBase,\n"
1007 " protected ProtectedBase,\n"
1008 " private PrivateBase,\n"
1009 " public Undocumented\n"
1010 " public Templ<int>\n"
1011 "{\n"
1012 " private:\n"
1013 " Used *m_usedClass;\n"
1014 "};\n"
1015 "\\endcode\n"
1016 "If the \\c MAX_DOT_GRAPH_HEIGHT tag in the configuration file "
1017 "is set to 240 this will result in the following graph:"
1018 "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1019 "<p>\n"
1020 "The boxes in the above graph have the following meaning:\n"
1021 "<ul>\n"
1022 "<li>%A filled black box represents the struct or class for which the "
1023 "graph is generated.\n"
1024 "<li>%A box with a black border denotes a documented struct or class.\n"
1025 "<li>%A box with a gray border denotes an undocumented struct or class.\n"
1026 "<li>%A box with a red border denotes a documented struct or class for"
1027 "which not all inheritance/containment relations are shown. %A graph is "
1028 "truncated if it does not fit within the specified boundaries.\n"
1029 "</ul>\n"
1030 "The arrows have the following meaning:\n"
1031 "<ul>\n"
1032 "<li>%A dark blue arrow is used to visualize a public inheritance "
1033 "relation between two classes.\n"
1034 "<li>%A dark green arrow is used for protected inheritance.\n"
1035 "<li>%A dark red arrow is used for private inheritance.\n"
1036 "<li>%A purple dashed arrow is used if a class is contained or used "
1037 "by another class. The arrow is labeled with the variable(s) "
1038 "through which the pointed class or struct is accessible.\n"
1039 "<li>%A yellow dashed arrow denotes a relation between a template instance and "
1040 "the template class it was instantiated from. The arrow is labeled with "
1041 "the template parameters of the instance.\n"
1042 "</ul>\n";
1043 }
1044 /*! text for the link to the legend page */
1045 QCString trLegend() override
1046 {
1047 return "legend";
1048 }
1049
1050//////////////////////////////////////////////////////////////////////////
1051// new since 1.2.0
1052//////////////////////////////////////////////////////////////////////////
1053
1054 /*! Used as a marker that is put before a test item */
1055 QCString trTest() override
1056 {
1057 return "اختبار";
1058 }
1059 /*! Used as the header of the test list */
1060 QCString trTestList() override
1061 {
1062 return "قائمة الإختبارات";
1063 }
1064
1065//////////////////////////////////////////////////////////////////////////
1066// new since 1.2.2
1067//////////////////////////////////////////////////////////////////////////
1068
1069 /*! Used as a section header for IDL properties */
1070 QCString trProperties() override
1071 {
1072 return "خصائص";
1073 }
1074 /*! Used as a section header for IDL property documentation */
1075 QCString trPropertyDocumentation() override
1076 {
1077 return "توثيق الخاصية";
1078 }
1079
1080//////////////////////////////////////////////////////////////////////////
1081// new since 1.2.4
1082//////////////////////////////////////////////////////////////////////////
1083
1084 /*! Used for Java interfaces in the summary section of Java packages */
1085 QCString trInterfaces() override
1086 {
1087 return "واجهات";
1088 }
1089 /*! Used for Java classes in the summary section of Java packages */
1090 QCString trClasses() override
1091 {
1092 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1093 {
1094 return "هياكل البيانات";
1095 }
1096 else
1097 {
1098 return "فئات";
1099 }
1100 }
1101 /*! Used as the title of a Java package */
1102 QCString trPackage(const QCString &name) override
1103 {
1104 return "حزمة "+name;
1105 }
1106 /*! The description of the package index page */
1107 QCString trPackageListDescription() override
1108 {
1109 return "هذه هي الحزم مع وصف مختصر لكل منها )إن وجد( :";
1110 }
1111 /*! The link name in the Quick links header for each page */
1112 QCString trPackages() override
1113 {
1114 return "حزم";
1115 }
1116 /*! Text shown before a multi-line define */
1117 QCString trDefineValue() override
1118 {
1119 return "القيمة:";
1120 }
1121
1122//////////////////////////////////////////////////////////////////////////
1123// new since 1.2.5
1124//////////////////////////////////////////////////////////////////////////
1125
1126 /*! Used as a marker that is put before a \\bug item */
1127 QCString trBug() override
1128 {
1129 return "ثغرة";
1130 }
1131 /*! Used as the header of the bug list */
1132 QCString trBugList() override
1133 {
1134 return "قائمة الثغرات";
1135 }
1136
1137//////////////////////////////////////////////////////////////////////////
1138// new since 1.2.6
1139//////////////////////////////////////////////////////////////////////////
1140
1141 /*! Used as ansicpg for RTF file
1142 *
1143 * The following table shows the correlation of Charset name, Charset Value and
1144 * <pre>
1145 * Codepage number:
1146 * Charset Name Charset Value(hex) Codepage number
1147 * ------------------------------------------------------
1148 * DEFAULT_CHARSET 1 (x01)
1149 * SYMBOL_CHARSET 2 (x02)
1150 * OEM_CHARSET 255 (xFF)
1151 * ANSI_CHARSET 0 (x00) 1252
1152 * RUSSIAN_CHARSET 204 (xCC) 1251
1153 * EE_CHARSET 238 (xEE) 1250
1154 * GREEK_CHARSET 161 (xA1) 1253
1155 * TURKISH_CHARSET 162 (xA2) 1254
1156 * BALTIC_CHARSET 186 (xBA) 1257
1157 * HEBREW_CHARSET 177 (xB1) 1255
1158 * ARABIC _CHARSET 178 (xB2) 1256
1159 * SHIFTJIS_CHARSET 128 (x80) 932
1160 * HANGEUL_CHARSET 129 (x81) 949
1161 * GB2313_CHARSET 134 (x86) 936
1162 * CHINESEBIG5_CHARSET 136 (x88) 950
1163 * </pre>
1164 *
1165 */
1166 QCString trRTFansicp() override
1167 {
1168 return "1256";
1169 }
1170
1171
1172 /*! Used as ansicpg for RTF fcharset
1173 * \see trRTFansicp() for a table of possible values.
1174 */
1175 QCString trRTFCharSet() override
1176 {
1177 return "178";
1178 }
1179
1180 /*! Used as header RTF general index */
1181 QCString trRTFGeneralIndex() override
1182 {
1183 return "فهرس";
1184 }
1185
1186 /*! This is used for translation of the word that will possibly
1187 * be followed by a single name or by a list of names
1188 * of the category.
1189 */
1190 QCString trClass(bool /*first_capital*/, bool singular) override
1191 {
1192 QCString result("فئة");
1193 if (!singular) result="فئات";
1194 return result;
1195 }
1196
1197 /*! This is used for translation of the word that will possibly
1198 * be followed by a single name or by a list of names
1199 * of the category.
1200 */
1201 QCString trFile(bool /*first_capital*/, bool singular) override
1202 {
1203 QCString result("ملف");
1204 if (!singular) result="ملفات";
1205 return result;
1206 }
1207
1208 /*! This is used for translation of the word that will possibly
1209 * be followed by a single name or by a list of names
1210 * of the category.
1211 */
1212 QCString trNamespace(bool /*first_capital*/, bool singular) override
1213 {
1214 QCString result("مجال أسماء");
1215 if (!singular) result="مجالات أسماء";
1216 return result;
1217 }
1218
1219 /*! This is used for translation of the word that will possibly
1220 * be followed by a single name or by a list of names
1221 * of the category.
1222 */
1223 QCString trGroup(bool /*first_capital*/, bool singular) override
1224 {
1225 QCString result("مجموعة");
1226 if (!singular) result="مجموعات";
1227 return result;
1228 }
1229
1230 /*! This is used for translation of the word that will possibly
1231 * be followed by a single name or by a list of names
1232 * of the category.
1233 */
1234 QCString trPage(bool /*first_capital*/, bool singular) override
1235 {
1236 QCString result("صفحة");
1237 if (!singular) result="صفحات";
1238 return result;
1239 }
1240
1241 /*! This is used for translation of the word that will possibly
1242 * be followed by a single name or by a list of names
1243 * of the category.
1244 */
1245 QCString trMember(bool /*first_capital*/, bool singular) override
1246 {
1247 QCString result("عضو");
1248 if (!singular) result="أعضاء";
1249 return result;
1250 }
1251
1252 /*! This is used for translation of the word that will possibly
1253 * be followed by a single name or by a list of names
1254 * of the category.
1255 */
1256 QCString trGlobal(bool /*first_capital*/, bool singular) override
1257 {
1258 QCString result("عام");
1259 if (!singular) result="عوام";
1260 return result;
1261 }
1262
1263//////////////////////////////////////////////////////////////////////////
1264// new since 1.2.7
1265//////////////////////////////////////////////////////////////////////////
1266
1267 /*! This text is generated when the \\author command is used and
1268 * for the author section in man pages. */
1269 QCString trAuthor(bool /*first_capital*/, bool singular) override
1270 {
1271 QCString result("المؤلف");
1272 if (!singular) result="المؤلفون";
1273 return result;
1274 }
1275
1276//////////////////////////////////////////////////////////////////////////
1277// new since 1.2.11
1278//////////////////////////////////////////////////////////////////////////
1279
1280 /*! This text is put before the list of members referenced by a member
1281 */
1282 QCString trReferences() override
1283 {
1284 return "مرجعيات";
1285 }
1286
1287//////////////////////////////////////////////////////////////////////////
1288// new since 1.2.13
1289//////////////////////////////////////////////////////////////////////////
1290
1291 /*! used in member documentation blocks to produce a list of
1292 * members that are implemented by this one.
1293 */
1294 QCString trImplementedFromList(int numEntries) override
1295 {
1296 return "Implements "+trWriteList(numEntries)+".";
1297 }
1298
1299 /*! used in member documentation blocks to produce a list of
1300 * all members that implement this abstract member.
1301 */
1302 QCString trImplementedInList(int numEntries) override
1303 {
1304 return "Implemented in "+trWriteList(numEntries)+".";
1305 }
1306
1307//////////////////////////////////////////////////////////////////////////
1308// new since 1.2.16
1309//////////////////////////////////////////////////////////////////////////
1310
1311 /*! used in RTF documentation as a heading for the Table
1312 * of Contents.
1313 */
1314 QCString trRTFTableOfContents() override
1315 {
1316 return "جدول المحتويات";
1317 }
1318
1319//////////////////////////////////////////////////////////////////////////
1320// new since 1.2.17
1321//////////////////////////////////////////////////////////////////////////
1322
1323 /*! Used as the header of the list of item that have been
1324 * flagged deprecated
1325 */
1326 QCString trDeprecatedList() override
1327 {
1328 return "Deprecated List";
1329 }
1330
1331//////////////////////////////////////////////////////////////////////////
1332// new since 1.2.18
1333//////////////////////////////////////////////////////////////////////////
1334
1335 /*! Used as a header for declaration section of the events found in
1336 * a C# program
1337 */
1338 QCString trEvents() override
1339 {
1340 return "الأحداث";
1341 }
1342 /*! Header used for the documentation section of a class' events. */
1343 QCString trEventDocumentation() override
1344 {
1345 return "توثيق الأحداث";
1346 }
1347
1348//////////////////////////////////////////////////////////////////////////
1349// new since 1.3
1350//////////////////////////////////////////////////////////////////////////
1351
1352 /*! Used as a heading for a list of Java class types with package scope.
1353 */
1354 QCString trPackageTypes() override
1355 {
1356 return "أنواع الحزمة";
1357 }
1358 /*! Used as a heading for a list of Java class functions with package
1359 * scope.
1360 */
1361 QCString trPackageFunctions() override
1362 {
1363 return "دوال الحزمة";
1364 }
1365 QCString trPackageMembers() override
1366 {
1367 return "أعضاء الحزمة";
1368 }
1369 /*! Used as a heading for a list of static Java class functions with
1370 * package scope.
1371 */
1372 QCString trStaticPackageFunctions() override
1373 {
1374 return "دوال ساكنة للحزمة";
1375 }
1376 /*! Used as a heading for a list of Java class variables with package
1377 * scope.
1378 */
1379 QCString trPackageAttribs() override
1380 {
1381 return "خصائص الحزمة";
1382 }
1383 /*! Used as a heading for a list of static Java class variables with
1384 * package scope.
1385 */
1386 QCString trStaticPackageAttribs() override
1387 {
1388 return "خصائص ساكنة للحزمة";
1389 }
1390
1391//////////////////////////////////////////////////////////////////////////
1392// new since 1.3.1
1393//////////////////////////////////////////////////////////////////////////
1394
1395 /*! Used in the quick index of a class/file/namespace member list page
1396 * to link to the unfiltered list of all members.
1397 */
1398 QCString trAll() override
1399 {
1400 return "الكل";
1401 }
1402 /*! Put in front of the call graph for a function. */
1403 QCString trCallGraph() override
1404 {
1405 return "هذا هو رسم الاستدعاء لهذه الدالة:";
1406 }
1407
1408//////////////////////////////////////////////////////////////////////////
1409// new since 1.3.3
1410//////////////////////////////////////////////////////////////////////////
1411
1412 /*! This string is used as the title for the page listing the search
1413 * results.
1414 */
1415 QCString trSearchResultsTitle() override
1416 {
1417 return "نتائج البحث";
1418 }
1419 /*! This string is put just before listing the search results. The
1420 * text can be different depending on the number of documents found.
1421 * Inside the text you can put the special marker $num to insert
1422 * the number representing the actual number of search results.
1423 * The @a numDocuments parameter can be either 0, 1 or 2, where the
1424 * value 2 represents 2 or more matches. HTML markup is allowed inside
1425 * the returned string.
1426 */
1427 QCString trSearchResults(int numDocuments) override
1428 {
1429 if (numDocuments==0)
1430 {
1431 return "عفوا ، لا يوجد توثيق ملائم لما بحثت عنه.";
1432 }
1433 else if (numDocuments==1)
1434 {
1435 return "وثيقة مناسبة لما بحثت عنه. <b>1</b> تم العثور على.";
1436 }
1437 else
1438 {
1439 return "وثيقة مطابقة لما بحثت عنه <b>$num</b> تم إيجاد ."
1440 "وتم ترتيبهم بحيث يكون الأقرب لنتيجة البحث أولا.";
1441 }
1442 }
1443 /*! This string is put before the list of matched words, for each search
1444 * result. What follows is the list of words that matched the query.
1445 */
1446 QCString trSearchMatches() override
1447 {
1448 return "يتطابق مع:";
1449 }
1450
1451//////////////////////////////////////////////////////////////////////////
1452// new since 1.3.8
1453//////////////////////////////////////////////////////////////////////////
1454
1455 /*! This is used in HTML as the title of page with source code for file filename
1456 */
1457 QCString trSourceFile(const QCString& filename) override
1458 {
1459 return " ملف المصدر" + filename ;
1460 }
1461
1462//////////////////////////////////////////////////////////////////////////
1463// new since 1.3.9
1464//////////////////////////////////////////////////////////////////////////
1465
1466 /*! This is used as the name of the chapter containing the directory
1467 * hierarchy.
1468 */
1469 QCString trDirIndex() override
1470 { return "شكل هرمي للأدلة"; }
1471
1472 /*! This is used as the name of the chapter containing the documentation
1473 * of the directories.
1474 */
1475 QCString trDirDocumentation() override
1476 { return "توثيق الأدلة"; }
1477
1478 /*! This is used as the title of the directory index and also in the
1479 * Quick links of an HTML page, to link to the directory hierarchy.
1480 */
1481 QCString trDirectories() override
1482 { return "الأدلة"; }
1483
1484 /*! This returns the title of a directory page. The name of the
1485 * directory is passed via \a dirName.
1486 */
1487 QCString trDirReference(const QCString &dirName) override
1488 { QCString result=" مرجع الدليل"; result+=dirName; return result; }
1489
1490 /*! This returns the word directory with or without starting capital
1491 * (\a first_capital) and in sigular or plural form (\a singular).
1492 */
1493 QCString trDir(bool first_capital, bool singular) override
1494 {
1495 QCString result((first_capital ? "Director" : "director"));
1496 if (singular) result+="y"; else result+="ies";
1497 return result;
1498 }
1499
1500//////////////////////////////////////////////////////////////////////////
1501// new since 1.4.1
1502//////////////////////////////////////////////////////////////////////////
1503
1504 /*! This text is added to the documentation when the \\overload command
1505 * is used for a overloaded function.
1506 */
1507 QCString trOverloadText() override
1508 {
1509 return "هذه دالة عضو زائدة التحميل ،"
1510 "وجد أنها ملائمة. إنها تختلف عن الدالة أعلاه"
1511 "فقط في نوعية ال argument(s) التي تقبلها.";
1512 }
1513
1514 QCString trDayOfWeek(int dayOfWeek, bool, bool full) override
1515 {
1516 static const char *days_short[] = { "الإثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد" };
1517 static const char *days_full[] = { "الإثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد" };
1518 return full? days_full[dayOfWeek-1] : days_short[dayOfWeek-1];
1519 }
1520 QCString trMonth(int month, bool, bool full) override
1521 {
1522 static const char *months_short[] = { "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" };
1523 static const char *months_full[] = { "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" };
1524 return full? months_full[month-1] : months_short[month-1];
1525 }
1526 QCString trDayPeriod(bool period) override
1527 {
1528 static const char *dayPeriod[] = { "ص", "م" };
1529 return dayPeriod[period?1:0];
1530 }
1531};
1532
1533#endif
CompoundType
The various compound types.
Definition classdef.h:109
@ Interface
Definition classdef.h:112
@ Exception
Definition classdef.h:115
bool isEmpty() const
Returns TRUE iff the string is empty.
Definition qcstring.h:150
Adapter class for languages that only contain translations up to version 1.4.6.
QCString trDesignUnitDocumentation() override
QCString trInitialValue() override
QCString trCollaborationDiagram(const QCString &clName) override
QCString trSince() override
QCString trInclByDepGraph() override
QCString trGroup(bool, bool singular) override
QCString trRelatedPages() override
QCString trProtectedTypes() override
QCString trDefinedIn() override
QCString trTypedefs() override
QCString trListOfAllMembers() override
QCString trTest() override
QCString trMember(bool, bool singular) override
QCString trRelatedSubscript() override
QCString trGraphicalHierarchy() override
QCString trParameters() override
QCString trHierarchicalIndex() override
QCString trExceptions() override
QCString trTestList() override
QCString trSearch() override
QCString trPackage(const QCString &name) override
QCString trNamespaceMembers() override
QCString trDefineValue() override
QCString trSignals() override
QCString trFileMembers() override
QCString trNamespace(bool, bool singular) override
QCString trFileIndex() override
QCString trEnumerationTypeDocumentation() override
QCString trCompounds() override
QCString trDefineDocumentation() override
QCString trReimplementedFromList(int numEntries) override
QCString trAttention() override
QCString latexLanguageSupportCommand() override
QCString trInvariant() override
QCString trGotoGraphicalHierarchy() override
QCString trCompoundIndex() override
QCString trLegendTitle() override
QCString trEnumValue() override
QCString trDeprecatedList() override
QCString trRTFansicp() override
QCString trProtectedAttribs() override
QCString trPageIndex() override
QCString trInheritsList(int numEntries) override
QCString trRelatedPagesDescription() override
QCString trConstructorDocumentation() override
QCString trDirectories() override
QCString trSearchResultsTitle() override
QCString trThisIsTheListOfAllMembers() override
QCString trPackageFunctions() override
QCString trReferences() override
QCString trStaticPublicMembers() override
QCString trGlobal(bool, bool singular) override
QCString latexCommandName() override
QCString trGotoDocumentation() override
QCString trModuleDocumentation() override
QCString trBug() override
QCString trVariables() override
QCString trStaticPublicAttribs() override
QCString trEnumName() override
QCString trInheritedByList(int numEntries) override
QCString trOverloadText() override
QCString trPackageListDescription() override
QCString trSearchResults(int numDocuments) override
QCString trStaticPrivateAttribs() override
QCString trNamespaces() override
QCString trRTFGeneralIndex() override
QCString trDeprecated() override
QCString trExamples() override
QCString trFileReference(const QCString &fileName) override
QCString trPublicTypes() override
QCString trDetails() override
QCString trTodo() override
QCString trEvents() override
QCString trISOLang() override
QCString trTodoList() override
QCString trNamespaceIndex() override
QCString trInclDepGraph(const QCString &fName) override
QCString trNamespaceListDescription(bool extractAll) override
QCString trPropertyDocumentation() override
QCString idLanguage() override
QCString trModules() override
QCString trPackages() override
QCString trSearchMatches() override
QCString trClassHierarchyDescription() override
QCString trCompoundMembers() override
QCString trWarning() override
QCString trPackageAttribs() override
QCString trGotoTextualHierarchy() override
QCString trPageAbbreviation() override
QCString trPrecondition() override
QCString trDefines() override
QCString trStaticPackageAttribs() override
QCString trCompoundMembersDescription(bool extractAll) override
QCString trRelatedFunctionDocumentation() override
QCString trRTFCharSet() override
QCString trProperties() override
QCString trNamespaceList() override
QCString trNamespaceMemberDescription(bool extractAll) override
QCString trFileMembersDescription(bool extractAll) override
QCString trMemberFunctionDocumentation() override
QCString trReimplementedInList(int numEntries) override
QCString trRelatedFunctions() override
QCString trModuleIndex() override
QCString trReturnValues() override
QCString trMore() override
QCString trMemberDataDocumentation() override
QCString trAll() override
QCString trPackageTypes() override
QCString trClassDiagram(const QCString &clName) override
QCString trInterfaces() override
QCString trNamespaceDocumentation() override
QCString trStaticPackageFunctions() override
QCString trCompoundList() override
QCString trGeneratedAt(const QCString &date, const QCString &projName) override
QCString trDirIndex() override
QCString trRTFTableOfContents() override
QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single) override
QCString trReferencedBy() override
QCString trGeneratedBy() override
QCString trStaticProtectedMembers() override
QCString trEnumerations() override
QCString trImplementedFromList(int numEntries) override
QCString trWriteList(int numEntries) override
QCString trExamplesDescription() override
QCString trFunctions() override
QCString trVariableDocumentation() override
QCString trFriends() override
QCString trPrivateAttribs() override
QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate) override
QCString trDocumentation(const QCString &projName) override
QCString trMemberTypedefDocumentation() override
QCString trCode() override
QCString trSourceFile(const QCString &filename) override
QCString trDayPeriod(bool period) override
QCString getLanguageString() override
language codes for Html help
QCString trMemberEnumerationDocumentation() override
QCString trImplementedInList(int numEntries) override
QCString trClassDocumentation() override
QCString trDirReference(const QCString &dirName) override
QCString trPublicMembers() override
QCString trMemberList() override
QCString trClass(bool, bool singular) override
QCString trEnumerationValueDocumentation() override
QCString trPostcondition() override
QCString trClassHierarchy() override
QCString trPackageMembers() override
QCString trModulesDescription() override
QCString trDir(bool first_capital, bool singular) override
QCString trNote() override
QCString trPage(bool, bool singular) override
QCString trTypedefDocumentation() override
QCString trVersion() override
QCString trAuthor(bool, bool singular) override
QCString trSeeAlso() override
QCString trRemarks() override
QCString trDayOfWeek(int dayOfWeek, bool, bool full) override
QCString trBugList() override
QCString trCallGraph() override
QCString trClasses() override
QCString trEventDocumentation() override
QCString trProtectedMembers() override
QCString trIncludingInheritedMembers() override
QCString trReferenceManual() override
QCString trDefinedAtLineInSourceFile() override
QCString trDefinedInSourceFile() override
QCString trGotoSourceCode() override
QCString trFileListDescription(bool extractAll) override
QCString trEnumerationValues() override
QCString trPrivateMembers() override
QCString trGeneratedAutomatically(const QCString &s) override
QCString trLegendDocs() override
QCString trLegend() override
QCString trNamespaceReference(const QCString &namespaceName) override
QCString trReturns() override
QCString trProtectedSlots() override
QCString trCompoundListDescription() override
QCString trStaticProtectedAttribs() override
QCString trPrivateSlots() override
QCString trMainPage() override
QCString trMonth(int month, bool, bool full) override
QCString trFile(bool, bool singular) override
QCString trDate() override
QCString trStaticPrivateMembers() override
QCString trPublicAttribs() override
QCString trPublicSlots() override
QCString trDetailedDescription() override
QCString trDirDocumentation() override
QCString trFunctionDocumentation() override
QCString trFileDocumentation() override
QCString trPrivateTypes() override
QCString trFileList() override
QCString p_latexCommandName(const QCString &latexCmd)
Definition translator.h:769
#define Config_getBool(name)
Definition config.h:33
QCString generateMarker(int id)
Definition util.cpp:290
QCString getDotImageExtension()
Definition util.cpp:6616