Doxygen
translator_fa.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  * Description : Doxygen Persian (Farsi) Translator
18  * Author : Ali Nadalizadeh < nadalizadeh at gmail dot com >
19  *
20  * ChangeLog :
21  * Thu 06 Jul 2006 11:54:09 PM IRDT <nadalizadeh at gmail dot com>
22  * >> First version of persian language support has been completed.
23  *
24  * Mon 04 Feb 2008 11:52:09 AM IRDT <nadalizadeh at gmail dot com>
25  * >> Obsolete methods removed. Translated more string(s) to persian. Upgraded to 1_5_4 adapter.
26  *
27  * Fri 04 Jun 2010 04:05:24 PM IRDT <nadalizadeh at gmail dot com>
28  * >> Implement missing new methods since 1.6.0.
29  * >> Add English to Persian digit convertor. (for date/time digits)
30  *
31  * Translation feedbacks are really appreciated.
32  */
33 
34 #ifndef TRANSLATOR_FA_H
35 #define TRANSLATOR_FA_H
36 
37 #define HtmlRightToLeft QCString("<div dir=\"rtl\">")
38 #define HtmlLeftToRight QCString("<div dir=\"ltr\">")
39 #define HtmlDivEnd QCString("</div>")
40 
41 
43 {
44  private:
45  /** Converts english digits of an input string to persian equivalents.
46  */
48  {
49  QCString output;
50  const char * PersianDigits[] = { "۰", "۱", "۲", "۳", "۴", "۵", "۶", "۷", "۸", "۹" };
51  for(unsigned i=0; i<str.length(); i++)
52  {
53  if (str.at(i) >= '0' && str.at(i) <= '9')
54  output += PersianDigits[ str.at(i) - '0' ];
55  else
56  output += str.at(i);
57  }
58 
59  return output;
60  }
61 
62  public:
63 
64  // --- Language control methods -------------------
65 
66  /*! Used for identification of the language. The identification
67  * should not be translated. It should be replaced by the name
68  * of the language in Persian using lower-case characters only
69  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
70  * the identification used in language.cpp.
71  */
72  virtual QCString idLanguage()
73  { return "persian"; }
74 
75  /*! Used to get the LaTeX command(s) for the language support.
76  * This method should return string with commands that switch
77  * LaTeX to the desired language. For example
78  * <pre>"\\usepackage[german]{babel}\n"
79  * </pre>
80  * or
81  * <pre>"\\usepackage{polski}\n"
82  * "\\usepackage[latin2]{inputenc}\n"
83  * "\\usepackage[T1]{fontenc}\n"
84  * </pre>
85  *
86  * The Persian LaTeX does not use such commands. Because of this
87  * the empty string is returned in this implementation.
88  */
90  {
91  return "";
92  }
93 
94  virtual QCString trISOLang()
95  {
96  return "fa";
97  }
98 
99  // --- Language translation methods -------------------
100 
101  /*! used in the compound documentation before a list of related functions. */
103  { return "توابع مربوط"; }
104 
105  /*! subscript for the related functions. */
107  { return "(لازم به ذکر است که اينها توابع عضو نيستند)"; }
108 
109  /*! header that is put before the detailed description of files, classes and namespaces. */
111  { return "توضيحات جزئی"; }
112 
113  /*! header that is put before the list of typedefs. */
115  { return "مستندات تعریف گونه ها"; }
116 
117  /*! header that is put before the list of enumerations. */
119  { return "های عضو Enumeration مستندات"; }
120 
121  /*! header that is put before the list of member functions. */
123  { return "توضيحات توابع عضو"; }
124 
125  /*! header that is put before the list of member attributes. */
127  {
128  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
129  {
130  return "Field مستندات";
131  }
132  else
133  {
134  return "مستندات متغيير های عضو";
135  }
136  }
137 
138  /*! this is the text of a link put after brief descriptions. */
139  virtual QCString trMore()
140  { return "بيشتر..."; }
141 
142  /*! put in the class documentation */
144  { return "ليست تمام اعضاء "; }
145 
146  /*! used as the title of the "list of all members" page of a class */
148  { return "ليست اعضاء"; }
149 
150  /*! this is the first part of a sentence that is followed by a class name */
152  { return "اين ليستی کامل از همه اعضای "; }
153 
154  /*! this is the remainder of the sentence after the class name */
156  { return "شامل همه ی اعضای به ارث برده شده می باشد."; }
157 
158  /*! this is put at the author sections at the bottom of man pages.
159  * parameter s is name of the project name.
160  */
162  { QCString result="تولید شده توسط نرم افزار دی اکسیژن ";
163  if (!s.isEmpty()) result+=(QCString)" برای "+s;
164  result+=" از کد برنامه ";
165  return result;
166  }
167 
168  /*! put after an enum name in the list of all members */
170  { return "enum نام"; }
171 
172  /*! put after an enum value in the list of all members */
174  { return "enum مقدار"; }
175 
176  /*! put after an undocumented member in the list of all members */
178  { return "تعریف شده در"; }
179 
180  // quick reference sections
181 
182  /*! This is put above each page as a link to the list of all groups of
183  * compounds or files (see the \\group command).
184  */
185  virtual QCString trModules()
186  { return "Modules"; }
187 
188  /*! This is put above each page as a link to the class hierarchy */
190  { return "سلسله مراتب کلاس ها"; }
191 
192  /*! This is put above each page as a link to the list of annotated classes */
194  {
195  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
196  {
197  return "ساختار های داده ";
198  }
199  else
200  {
201  return "ليست کلاس ها ";
202  }
203  }
204 
205  /*! This is put above each page as a link to the list of documented files */
207  { return "ليست فايل ها"; }
208 
209  /*! This is put above each page as a link to all members of compounds. */
211  {
212  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
213  {
214  return "فضاهای داده ها";
215  }
216  else
217  {
218  return "اعضاء کلاس ها";
219  }
220  }
221 
222  /*! This is put above each page as a link to all members of files. */
224  {
225  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
226  {
227  return "Globals";
228  }
229  else
230  {
231  return "اعضاء پرونده";
232  }
233  }
234 
235  /*! This is put above each page as a link to all related pages. */
237  { return "صفحات مربوط"; }
238 
239  /*! This is put above each page as a link to all examples. */
241  { return "مثال ها"; }
242 
243  /*! This is put above each page as a link to the search engine. */
244  virtual QCString trSearch()
245  { return "جستجو"; }
246 
247  /*! This is an introduction to the class hierarchy. */
249  { return "ليست و سلسله مراتب درختی کلاس ها به صورت مرتب شده :";
250  }
251 
252  /*! This is an introduction to the list with all files. */
253  virtual QCString trFileListDescription(bool extractAll)
254  {
255  QCString result="ليست همه ي پرونده های ";
256  if (!extractAll) result+="(مستند شده) ";
257  result+=" :";
258  return result;
259  }
260 
261  /*! This is an introduction to the annotated compound list. */
263  {
264 
265  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
266  {
267  return "ليست ساختارهای داده به همراه توضيحی کوتاه :";
268  }
269  else
270  {
271  return "ليست کلاس ها ، ساختارهای داده و ... به همراه توضيحات مختصر راجع به آنها :";
272  }
273  }
274 
275  /*! This is an introduction to the page with all class members. */
276  virtual QCString trCompoundMembersDescription(bool extractAll)
277  {
278  QCString result=" در ذيل ليست ";
279  if (!extractAll)
280  {
281  result+="آن اعضايي که مستند شده اند ";
282  }
283  else
284  {
285  result+="همه ی اعضاء ";
286  }
287  result+=" به همراه ارتباطشان با ";
288  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
289  {
290  result+="ساختارهای داده ";
291  }
292  else
293  {
294  result+="كلاس ها ";
295  }
296 
297  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
298  {
299  result+="و مستندات ساختار داده برای هر عضو ";
300  }
301  else
302  {
303  result+="و مستندات کلاس برای هر عضو ";
304  }
305  result+="را مشاهده ميکنيد :";
306  return result;
307  }
308 
309  /*! This is an introduction to the page with all file members. */
310  virtual QCString trFileMembersDescription(bool extractAll)
311  {
312  QCString result="ليست همه ی توابع ، متغيير ها، تعاريف و ... ";
313  if (!extractAll) result+="(مستند شده) ";
314 
315  result+=" به همراه ارتباط آنها ";
316  result+="با پرونده هايی که به آن مربوط اند :";
317  return result;
318  }
319 
320  /*! This is an introduction to the page with the list of all examples */
322  { return "ليست همه ی مثال ها :"; }
323 
324  /*! This is an introduction to the page with the list of related pages */
326  { return "لیست تمام صفحات و مستندات مربوطه :"; }
327 
328  /*! This is an introduction to the page with the list of class/file groups */
330  { return "لیست تمام ماژول ها:"; }
331 
332  // index titles (the project name is prepended for these)
333 
334 
335  /*! This is used in HTML as the title of index.html. */
337  { return "مستندات"; }
338 
339  /*! This is used in LaTeX as the title of the chapter with the
340  * index of all groups.
341  */
343  { return "فهرست ماژول ها"; }
344 
345  /*! This is used in LaTeX as the title of the chapter with the
346  * class hierarchy.
347  */
349  { return "فهرست سلسله مراتب"; }
350 
351  /*! This is used in LaTeX as the title of the chapter with the
352  * annotated compound index.
353  */
355  {
356  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
357  {
358  return "فهرست ساختار داده ها";
359  }
360  else
361  {
362  return "فهرست کلاس های";
363  }
364  }
365 
366  /*! This is used in LaTeX as the title of the chapter with the
367  * list of all files.
368  */
370  { return "فهرست پرونده ها"; }
371 
372  /*! This is used in LaTeX as the title of the chapter containing
373  * the documentation of all groups.
374  */
376  { return "مستندات ماژول"; }
377 
378  /*! This is used in LaTeX as the title of the chapter containing
379  * the documentation of all classes, structs and unions.
380  */
382  {
383  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
384  {
385  return "مستندات ساختار داده ها";
386  }
387  else
388  {
389  return "مستندات کلاس ها";
390  }
391  }
392 
393  /*! This is used in LaTeX as the title of the chapter containing
394  * the documentation of all files.
395  */
397  { return "مستندات فایل"; }
398 
399  /*! This is used in LaTeX as the title of the chapter containing
400  * the documentation of all examples.
401  */
403  { return "مستندات مثال"; }
404 
405  /*! This is used in LaTeX as the title of the chapter containing
406  * the documentation of all related pages.
407  */
409  { return "مستندات صفحه"; }
410 
411  /*! This is used in LaTeX as the title of the document */
413  { return "راهنمای مرجع"; }
414 
415  /*! This is used in the documentation of a file as a header before the
416  * list of defines
417  */
418  virtual QCString trDefines()
419  { return "تعاريف"; }
420 
421  /*! This is used in the documentation of a file as a header before the
422  * list of typedefs
423  */
425  { return "تعریف گونه ها"; }
426 
427  /*! This is used in the documentation of a file as a header before the
428  * list of enumerations
429  */
431  { return "تعاريف"; }
432 
433  /*! This is used in the documentation of a file as a header before the
434  * list of (global) functions
435  */
437  { return "توابع"; }
438 
439  /*! This is used in the documentation of a file as a header before the
440  * list of (global) variables
441  */
443  { return "متغيير ها"; }
444 
445  /*! This is used in the documentation of a file as a header before the
446  * list of (global) variables
447  */
449  { return "معرف ها"; }
450 
451  /*! This is used in the documentation of a file before the list of
452  * documentation blocks for defines
453  */
455  { return "Define Documentation"; }
456 
457  /*! This is used in the documentation of a file/namespace before the list
458  * of documentation blocks for typedefs
459  */
461  { return "Typedef"; }
462 
463  /*! This is used in the documentation of a file/namespace before the list
464  * of documentation blocks for enumeration types
465  */
467  { return "مستندات تعريف"; }
468 
469  /*! This is used in the documentation of a file/namespace before the list
470  * of documentation blocks for enumeration values
471  */
473  { return "مستندات معرف"; }
474 
475  /*! This is used in the documentation of a file/namespace before the list
476  * of documentation blocks for functions
477  */
479  { return "توضيح تابع"; }
480 
481  /*! This is used in the documentation of a file/namespace before the list
482  * of documentation blocks for variables
483  */
485  { return "توضيح متغير"; }
486 
487  /*! This is used in the documentation of a file/namespace/group before
488  * the list of links to documented compounds
489  */
491  {
492  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
493  {
494  return "ساختارهای داده";
495  }
496  else
497  {
498  return "کلاس ها";
499  }
500  }
501 
502  /*! This is used in the standard footer of each page and indicates when
503  * the page was generated
504  */
505  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
506  {
507  QCString result = HtmlDivEnd + HtmlRightToLeft + QCString("توليد شده در ") +date ;
508  if (!projName.isEmpty()) result+=(QCString)" برای "+projName;
509  result+=(QCString)" توسط";
510  return result;
511  }
512 
513  /*! this text is put before a class diagram */
514  virtual QCString trClassDiagram(const QCString &clName)
515  {
516  return (QCString)""+clName+" نمودار وراثت برای :";
517  }
518 
519  /*! this text is generated when the \\internal command is used. */
521  { return ".فقط برای استعمال داخلی"; }
522 
523  /*! this text is generated when the \\warning command is used. */
524  virtual QCString trWarning()
525  { return "اخطار"; }
526 
527  /*! this text is generated when the \\version command is used. */
528  virtual QCString trVersion()
529  { return "نسخه"; }
530 
531  /*! this text is generated when the \\date command is used. */
532  virtual QCString trDate()
533  { return "تاريخ"; }
534 
535  /*! this text is generated when the \\return command is used. */
536  virtual QCString trReturns()
537  { return "خروجی"; }
538 
539  /*! this text is generated when the \\sa command is used. */
540  virtual QCString trSeeAlso()
541  { return "See also"; }
542 
543  /*! this text is generated when the \\param command is used. */
545  { return "پارامترها"; }
546 
547  /*! this text is generated when the \\exception command is used. */
549  { return "استثناء ها"; }
550 
551  /*! this text is used in the title page of a LaTeX document. */
553  { return "توليد شده توسط"; }
554 
555 //////////////////////////////////////////////////////////////////////////
556 // new since 0.49-990307
557 //////////////////////////////////////////////////////////////////////////
558 
559  /*! used as the title of page containing all the index of all namespaces. */
561  { return "ليست فضاهای نام"; }
562 
563  /*! used as an introduction to the namespace list */
564  virtual QCString trNamespaceListDescription(bool extractAll)
565  {
566  QCString result="در ذيل ليستی از همه ی فضاهای نام ";
567  if (!extractAll) result+="(مستند سازی شده) ";
568  result+="به همراه توضيح کوتاه آنها مشاهده می کنيد :";
569  return result;
570  }
571 
572  /*! used in the class documentation as a header before the list of all
573  * friends of a class
574  */
575  virtual QCString trFriends()
576  { return "کلاس های دوست"; }
577 
578 //////////////////////////////////////////////////////////////////////////
579 // new since 0.49-990405
580 //////////////////////////////////////////////////////////////////////////
581 
582  /*! used in the class documentation as a header before the list of all
583  * related classes
584  */
586  { return "مستندات توابع مربوط و دوست"; }
587 
588 //////////////////////////////////////////////////////////////////////////
589 // new since 0.49-990425
590 //////////////////////////////////////////////////////////////////////////
591 
592  /*! used as the title of the HTML page of a class/struct/union */
593  virtual QCString trCompoundReference(const QCString &clName,
594  ClassDef::CompoundType compType,
595  bool isTemplate)
596  {
597  QCString result;
598  switch(compType)
599  {
600  case ClassDef::Class: result=" کلاس"; break;
601  case ClassDef::Struct: result=" ساختار داده"; break;
602  case ClassDef::Union: result=" Union"; break;
603  case ClassDef::Interface: result=" Interface"; break;
604  case ClassDef::Protocol: result=" Protocol"; break;
605  case ClassDef::Category: result=" Category"; break;
606  case ClassDef::Exception: result=" استثناء"; break;
607  default: break;
608  }
609  if (isTemplate) result+=" قالب";
610  result=QCString(clName) + " مرجع" +result ;
611  return result;
612  }
613 
614  /*! used as the title of the HTML page of a file */
615  virtual QCString trFileReference(const QCString &fileName)
616  {
617  QCString result=fileName;
618  result+=" مرجع پرونده";
619  return result;
620  }
621 
622  /*! used as the title of the HTML page of a namespace */
623  virtual QCString trNamespaceReference(const QCString &namespaceName)
624  {
625  QCString result=namespaceName;
626  result+=" مرجع فضای نام";
627  return result;
628  }
629 
631  { return "توابع عمومی عضو کلاس"; }
633  { return "های عمومی Slot"; }
634  virtual QCString trSignals()
635  { return "سيگنال ها"; }
637  { return "توابع ثابت عمومی عضو کلاس"; }
639  { return "توابع خصوصی عضو کلاس"; }
641  { return "های محافظت شده Slot"; }
643  { return "توابع ثابت محافظت شده عضو کلاس"; }
645  { return "توابع خصوصی عضو کلاس"; }
647  { return "های خصوصی Slot"; }
649  { return "توابع خصوصی ثابت عضو کلاس"; }
650 
651  /*! this function is used to produce a comma-separated list of items.
652  * use generateMarker(i) to indicate where item i should be put.
653  */
654  virtual QCString trWriteList(int numEntries)
655  {
656  QCString result;
657  int i;
658  // the inherits list contain `numEntries' classes
659  for (i=0;i<numEntries;i++)
660  {
661  // use generateMarker to generate placeholders for the class links!
662  result+=generateMarker(i); // generate marker for entry i in the list
663  // (order is left to right)
664 
665  if (i!=numEntries-1) // not the last entry, so we need a separator
666  {
667  if (i<numEntries-2) // not the fore last entry
668  result+=", ";
669  else // the fore last entry
670  result+=" و ";
671  }
672  }
673  return result;
674  }
675 
676  /*! used in class documentation to produce a list of base classes,
677  * if class diagrams are disabled.
678  */
679  virtual QCString trInheritsList(int numEntries)
680  {
681  return ".را به ارث می برد "+trWriteList(numEntries)+".";
682  }
683 
684  /*! used in class documentation to produce a list of super classes,
685  * if class diagrams are disabled.
686  */
687  virtual QCString trInheritedByList(int numEntries)
688  {
689  return ".اين کلاس را به ارث برده است "+trWriteList(numEntries)+".";
690  }
691 
692  /*! used in member documentation blocks to produce a list of
693  * members that are hidden by this one.
694  */
695  virtual QCString trReimplementedFromList(int numEntries)
696  {
697  return "Reimplemented from "+trWriteList(numEntries)+".";
698  }
699 
700  /*! used in member documentation blocks to produce a list of
701  * all member that overwrite the implementation of this member.
702  */
703  virtual QCString trReimplementedInList(int numEntries)
704  {
705  return "تعریف شده است "+trWriteList(numEntries)+"دوباره در ";
706  }
707 
708  /*! This is put above each page as a link to all members of namespaces. */
710  { return "اعضای فضاهای نام"; }
711 
712  /*! This is an introduction to the page with all namespace members */
713  virtual QCString trNamespaceMemberDescription(bool extractAll)
714  {
715  QCString result="ليست همه اعضای فضای نام ";
716  if (!extractAll) result+="(مستند شده) ";
717  result+=" با ارتباطشان با";
718  result+="فضاهای نامی که به آن مربوط اند را مشاهده ميکنيد :";
719  return result;
720  }
721  /*! This is used in LaTeX as the title of the chapter with the
722  * index of all namespaces.
723  */
725  { return "فهرست فضاهای نام"; }
726 
727  /*! This is used in LaTeX as the title of the chapter containing
728  * the documentation of all namespaces.
729  */
731  { return "توضيحات فضای نام"; }
732 
733 //////////////////////////////////////////////////////////////////////////
734 // new since 0.49-990522
735 //////////////////////////////////////////////////////////////////////////
736 
737  /*! This is used in the documentation before the list of all
738  * namespaces in a file.
739  */
741  { return "فضاهای نام"; }
742 
743 //////////////////////////////////////////////////////////////////////////
744 // new since 0.49-990728
745 //////////////////////////////////////////////////////////////////////////
746 
747  /*! This is put at the bottom of a class documentation page and is
748  * followed by a list of files that were used to generate the page.
749  */
751  bool single)
752  { // here s is one of " Class", " Struct" or " Union"
753  // single is true implies a single file
754  QCString result=(QCString)"مستندات اين ";
755  switch(compType)
756  {
757  case ClassDef::Class: result+="کلاس"; break;
758  case ClassDef::Struct: result+="ساختار داده"; break;
759  case ClassDef::Union: result+="union"; break;
760  case ClassDef::Interface: result+="interface"; break;
761  case ClassDef::Protocol: result+="protocol"; break;
762  case ClassDef::Category: result+="category"; break;
763  case ClassDef::Exception: result+="exception"; break;
764  default: break;
765  }
766  result+=" از روی پرونده ";
767  if (single) result+=""; else result+="های ";
768  result+="زير توليد شده است :";
769  return result;
770  }
771 
772 //////////////////////////////////////////////////////////////////////////
773 // new since 0.49-990901
774 //////////////////////////////////////////////////////////////////////////
775 
776  /*! This is used as the heading text for the retval command. */
778  { return "مقادير بازگشتی"; }
779 
780  /*! This is in the (quick) index as a link to the main page (index.html)
781  */
783  { return "صفحه ی اصلی"; }
784 
785  /*! This is used in references to page that are put in the LaTeX
786  * documentation. It should be an abbreviation of the word page.
787  */
789  { return "ص."; }
790 
791 //////////////////////////////////////////////////////////////////////////
792 // new since 0.49-991003
793 //////////////////////////////////////////////////////////////////////////
795  {
796  return ".در خط @0 از پرونده @1 تعريف شده است";
797  }
799  {
800  return ".در فايل @0 تعريف شده است";
801  }
802 
803 //////////////////////////////////////////////////////////////////////////
804 // new since 0.49-991205
805 //////////////////////////////////////////////////////////////////////////
806 
808  {
809  return "منسوخ شده";
810  }
811 
812 //////////////////////////////////////////////////////////////////////////
813 // new since 1.0.0
814 //////////////////////////////////////////////////////////////////////////
815 
816  /*! this text is put before a collaboration diagram */
817  virtual QCString trCollaborationDiagram(const QCString &clName)
818  {
819  return (QCString)"Collaboration diagram for "+clName+":";
820  }
821  /*! this text is put before an include dependency graph */
822  virtual QCString trInclDepGraph(const QCString &fName)
823  {
824  return (QCString)"نمودار شامل شدن ها برای "+fName+":";
825  }
826  /*! header that is put before the list of constructor/destructors. */
828  {
829  return "مستندات توباع آغازین و پایانی";
830  }
831  /*! Used in the file documentation to point to the corresponding sources. */
833  {
834  return "کد منبع اين پرونده.";
835  }
836  /*! Used in the file sources to point to the corresponding documentation. */
838  {
839  return "توضيحات اين پرونده.";
840  }
841  /*! Text for the \\pre command */
843  {
844  return "پیش شرط";
845  }
846  /*! Text for the \\post command */
848  {
849  return "پس شرط";
850  }
851  /*! Text for the \\invariant command */
853  {
854  return "Invariant";
855  }
856  /*! Text shown before a multi-line variable/enum initialization */
858  {
859  return "مقدار اوليه :";
860  }
861  /*! Text used the source code in the file index */
862  virtual QCString trCode()
863  {
864  return "کد";
865  }
867  {
868  return "سلسله مراتب گرافيکی کلاس";
869  }
871  {
872  return "نمایش نمودار درختی گرافیکی کلاس";
873  }
875  {
876  return "نمایش نمودار درختی متنی کلاس";
877  }
879  {
880  return "فهرست صفحات";
881  }
882 
883 //////////////////////////////////////////////////////////////////////////
884 // new since 1.1.0
885 //////////////////////////////////////////////////////////////////////////
886 
887  virtual QCString trNote()
888  {
889  return "نکته";
890  }
892  {
893  return "های عمومی Type";
894  }
896  {
897  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
898  {
899  return "فضاهای داده ها";
900  }
901  else
902  {
903  return "خواص (متغييرهای) عمومی";
904  }
905  }
907  {
908  return "خواص (متغييرهای) عمومی ثابت";
909  }
911  {
912  return "های حفاظت شده Type";
913  }
915  {
916  return "خواص (متغييرهای) حفاظت شده";
917  }
919  {
920  return "خواص (متغييرهای) حفاظت شده ثابت";
921  }
923  {
924  return "های خصوصی Type";
925  }
927  {
928  return "خواص (متغييرهای) خصوصی";
929  }
931  {
932  return "خواص (متغييرهای) خصوصی ثابت";
933  }
934 
935 //////////////////////////////////////////////////////////////////////////
936 // new since 1.1.3
937 //////////////////////////////////////////////////////////////////////////
938 
939  /*! Used as a marker that is put before a \\todo item */
940  virtual QCString trTodo()
941  {
942  return "برای انجام";
943  }
944  /*! Used as the header of the todo list */
946  {
947  return "ليست کارهاي آينده";
948  }
949 
950 //////////////////////////////////////////////////////////////////////////
951 // new since 1.1.4
952 //////////////////////////////////////////////////////////////////////////
953 
955  {
956  return " استفاده شده توسط ";
957  }
958  virtual QCString trRemarks()
959  {
960  return "ملاحظات";
961  }
963  {
964  return "توجه";
965  }
967  {
968  return "این نمودار فایل هایی را که این فایل را به طور مستقیم یا غیر مستقیم استفاده کرده اند نشان می دهد";
969  }
970  virtual QCString trSince()
971  {
972  return "از";
973  }
974 
975 //////////////////////////////////////////////////////////////////////////
976 // new since 1.1.5
977 //////////////////////////////////////////////////////////////////////////
978 
979  /*! title of the graph legend page */
981  {
982  return "راهنمای نمودار";
983  }
984  /*! page explaining how the dot graph's should be interpreted
985  * The %A in the text below are to prevent link to classes called "A".
986  */
988  {
989  return
990  "This page explains how to interpret the graphs that are generated "
991  "by doxygen.<p>\n"
992  "Consider the following example:\n"
993  "\\code\n"
994  "/*! Invisible class because of truncation */\n"
995  "class Invisible { };\n\n"
996  "/*! Truncated class, inheritance relation is hidden */\n"
997  "class Truncated : public Invisible { };\n\n"
998  "/* Class not documented with doxygen comments */\n"
999  "class Undocumented { };\n\n"
1000  "/*! Class that is inherited using public inheritance */\n"
1001  "class PublicBase : public Truncated { };\n\n"
1002  "/*! A template class */\n"
1003  "template<class T> class Templ { };\n\n"
1004  "/*! Class that is inherited using protected inheritance */\n"
1005  "class ProtectedBase { };\n\n"
1006  "/*! Class that is inherited using private inheritance */\n"
1007  "class PrivateBase { };\n\n"
1008  "/*! Class that is used by the Inherited class */\n"
1009  "class Used { };\n\n"
1010  "/*! Super class that inherits a number of other classes */\n"
1011  "class Inherited : public PublicBase,\n"
1012  " protected ProtectedBase,\n"
1013  " private PrivateBase,\n"
1014  " public Undocumented\n"
1015  " public Templ<int>\n"
1016  "{\n"
1017  " private:\n"
1018  " Used *m_usedClass;\n"
1019  "};\n"
1020  "\\endcode\n"
1021  "If the \\c MAX_DOT_GRAPH_HEIGHT tag in the configuration file "
1022  "is set to 240 this will result in the following graph:"
1023  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1024  "<p>\n"
1025  "The boxes in the above graph have the following meaning:\n"
1026  "<ul>\n"
1027  "<li>%A filled black box represents the struct or class for which the "
1028  "graph is generated.\n"
1029  "<li>%A box with a black border denotes a documented struct or class.\n"
1030  "<li>%A box with a gray border denotes an undocumented struct or class.\n"
1031  "<li>%A box with a red border denotes a documented struct or class for"
1032  "which not all inheritance/containment relations are shown. %A graph is "
1033  "truncated if it does not fit within the specified boundaries.\n"
1034  "</ul>\n"
1035  "The arrows have the following meaning:\n"
1036  "<ul>\n"
1037  "<li>%A dark blue arrow is used to visualize a public inheritance "
1038  "relation between two classes.\n"
1039  "<li>%A dark green arrow is used for protected inheritance.\n"
1040  "<li>%A dark red arrow is used for private inheritance.\n"
1041  "<li>%A purple dashed arrow is used if a class is contained or used "
1042  "by another class. The arrow is labeled with the variable(s) "
1043  "through which the pointed class or struct is accessible.\n"
1044  "<li>%A yellow dashed arrow denotes a relation between a template instance and "
1045  "the template class it was instantiated from. The arrow is labeled with "
1046  "the template parameters of the instance.\n"
1047  "</ul>\n";
1048  }
1049  /*! text for the link to the legend page */
1050  virtual QCString trLegend()
1051  {
1052  return "راهنما";
1053  }
1054 
1055 //////////////////////////////////////////////////////////////////////////
1056 // new since 1.2.0
1057 //////////////////////////////////////////////////////////////////////////
1058 
1059  /*! Used as a marker that is put before a test item */
1060  virtual QCString trTest()
1061  {
1062  return "تست";
1063  }
1064  /*! Used as the header of the test list */
1066  {
1067  return "Test List";
1068  }
1069 
1070 //////////////////////////////////////////////////////////////////////////
1071 // new since 1.2.2
1072 //////////////////////////////////////////////////////////////////////////
1073 
1074  /*! Used as a section header for IDL properties */
1076  {
1077  return "خاصیت ها";
1078  }
1079  /*! Used as a section header for IDL property documentation */
1081  {
1082  return "مستندات خاصیت";
1083  }
1084 
1085 //////////////////////////////////////////////////////////////////////////
1086 // new since 1.2.4
1087 //////////////////////////////////////////////////////////////////////////
1088 
1089  /*! Used for Java classes in the summary section of Java packages */
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  virtual QCString trPackage(const QCString &name)
1103  {
1104  return (QCString)"Package "+name;
1105  }
1106  /*! Title of the package index page */
1108  {
1109  return "لیست بسته ها";
1110  }
1111  /*! The description of the package index page */
1113  {
1114  return "لیست بسته ها به همراه توضیح مختر در صورت وجود :";
1115  }
1116  /*! The link name in the Quick links header for each page */
1118  {
1119  return "بسته ها";
1120  }
1121  /*! Text shown before a multi-line define */
1123  {
1124  return "مقدار:";
1125  }
1126 
1127 //////////////////////////////////////////////////////////////////////////
1128 // new since 1.2.5
1129 //////////////////////////////////////////////////////////////////////////
1130 
1131  /*! Used as a marker that is put before a \\bug item */
1132  virtual QCString trBug()
1133  {
1134  return "اشکال";
1135  }
1136  /*! Used as the header of the bug list */
1138  {
1139  return "ليست اشکالات";
1140  }
1141 
1142 //////////////////////////////////////////////////////////////////////////
1143 // new since 1.2.6
1144 //////////////////////////////////////////////////////////////////////////
1145 
1146  /*! Used as ansicpg for RTF file
1147  *
1148  * The following table shows the correlation of Charset name, Charset Value and
1149  * <pre>
1150  * Codepage number:
1151  * Charset Name Charset Value(hex) Codepage number
1152  * ------------------------------------------------------
1153  * DEFAULT_CHARSET 1 (x01)
1154  * SYMBOL_CHARSET 2 (x02)
1155  * OEM_CHARSET 255 (xFF)
1156  * ANSI_CHARSET 0 (x00) 1252
1157  * RUSSIAN_CHARSET 204 (xCC) 1251
1158  * EE_CHARSET 238 (xEE) 1250
1159  * GREEK_CHARSET 161 (xA1) 1253
1160  * TURKISH_CHARSET 162 (xA2) 1254
1161  * BALTIC_CHARSET 186 (xBA) 1257
1162  * HEBREW_CHARSET 177 (xB1) 1255
1163  * ARABIC _CHARSET 178 (xB2) 1256
1164  * SHIFTJIS_CHARSET 128 (x80) 932
1165  * HANGEUL_CHARSET 129 (x81) 949
1166  * GB2313_CHARSET 134 (x86) 936
1167  * CHINESEBIG5_CHARSET 136 (x88) 950
1168  * </pre>
1169  *
1170  */
1172  {
1173  return "1256";
1174  }
1175 
1176 
1177  /*! Used as ansicpg for RTF fcharset
1178  * \see trRTFansicp() for a table of possible values.
1179  */
1181  {
1182  return "178";
1183  }
1184 
1185  /*! Used as header RTF general index */
1187  {
1188  return "فهرست";
1189  }
1190 
1191  /*! This is used for translation of the word that will possibly
1192  * be followed by a single name or by a list of names
1193  * of the category.
1194  */
1195  virtual QCString trClass(bool first_capital, bool singular)
1196  {
1197  QCString result((first_capital ? "کلاس" : "کلاس"));
1198  if (!singular) result+="ها";
1199  return result;
1200  }
1201 
1202  /*! This is used for translation of the word that will possibly
1203  * be followed by a single name or by a list of names
1204  * of the category.
1205  */
1206  virtual QCString trFile(bool /*first_capital*/, bool singular)
1207  {
1208  QCString result("پرونده");
1209  if (!singular) result=result+" ها";
1210  return result;
1211  }
1212 
1213  /*! This is used for translation of the word that will possibly
1214  * be followed by a single name or by a list of names
1215  * of the category.
1216  */
1217  virtual QCString trNamespace(bool first_capital, bool singular)
1218  {
1219  QCString result((first_capital ? "فضای نام " : "فضای نام "));
1220  if (!singular) result+="ها";
1221  return result;
1222  }
1223 
1224  /*! This is used for translation of the word that will possibly
1225  * be followed by a single name or by a list of names
1226  * of the category.
1227  */
1228  virtual QCString trGroup(bool first_capital, bool singular)
1229  {
1230  QCString result((first_capital ? "Group" : "group"));
1231  if (!singular) result+="s";
1232  return result;
1233  }
1234 
1235  /*! This is used for translation of the word that will possibly
1236  * be followed by a single name or by a list of names
1237  * of the category.
1238  */
1239  virtual QCString trPage(bool first_capital, bool singular)
1240  {
1241  QCString result((first_capital ? "صفحه" : "صفحه"));
1242  if (!singular) result+=" ها ";
1243  return result;
1244  }
1245 
1246  /*! This is used for translation of the word that will possibly
1247  * be followed by a single name or by a list of names
1248  * of the category.
1249  */
1250  virtual QCString trMember(bool first_capital, bool singular)
1251  {
1252  QCString result((first_capital ? "عضو" : "عضو"));
1253  if (!singular) result+="ها";
1254  return result;
1255  }
1256 
1257  /*! This is used for translation of the word that will possibly
1258  * be followed by a single name or by a list of names
1259  * of the category.
1260  */
1261  virtual QCString trGlobal(bool first_capital, bool singular)
1262  {
1263  QCString result((first_capital ? "Global" : "global"));
1264  if (!singular) result+="s";
1265  return result;
1266  }
1267 
1268 //////////////////////////////////////////////////////////////////////////
1269 // new since 1.2.7
1270 //////////////////////////////////////////////////////////////////////////
1271 
1272  /*! This text is generated when the \\author command is used and
1273  * for the author section in man pages. */
1274  virtual QCString trAuthor(bool first_capital, bool singular)
1275  {
1276  QCString result((first_capital ? "Author" : "author"));
1277  if (!singular) result+="s";
1278  return result;
1279  }
1280 
1281 //////////////////////////////////////////////////////////////////////////
1282 // new since 1.2.11
1283 //////////////////////////////////////////////////////////////////////////
1284 
1285  /*! This text is put before the list of members referenced by a member
1286  */
1288  {
1289  return "را استفاده ميکند ";
1290  }
1291 
1292 //////////////////////////////////////////////////////////////////////////
1293 // new since 1.2.13
1294 //////////////////////////////////////////////////////////////////////////
1295 
1296  /*! used in member documentation blocks to produce a list of
1297  * members that are implemented by this one.
1298  */
1299  virtual QCString trImplementedFromList(int numEntries)
1300  {
1301  return "را تکميل می کند "+trWriteList(numEntries)+".";
1302  }
1303 
1304  /*! used in member documentation blocks to produce a list of
1305  * all members that implement this abstract member.
1306  */
1307  virtual QCString trImplementedInList(int numEntries)
1308  {
1309  return ".تکميل شده است "+trWriteList(numEntries)+" در";
1310  }
1311 
1312 //////////////////////////////////////////////////////////////////////////
1313 // new since 1.2.16
1314 //////////////////////////////////////////////////////////////////////////
1315 
1316  /*! used in RTF documentation as a heading for the Table
1317  * of Contents.
1318  */
1320  {
1321  return "فهرست";
1322  }
1323 
1324 //////////////////////////////////////////////////////////////////////////
1325 // new since 1.2.17
1326 //////////////////////////////////////////////////////////////////////////
1327 
1328  /*! Used as the header of the list of item that have been
1329  * flagged deprecated
1330  */
1332  {
1333  return "لیست آیتم های از رده خارج";
1334  }
1335 
1336 //////////////////////////////////////////////////////////////////////////
1337 // new since 1.2.18
1338 //////////////////////////////////////////////////////////////////////////
1339 
1340  /*! Used as a header for declaration section of the events found in
1341  * a C# program
1342  */
1343  virtual QCString trEvents()
1344  {
1345  return "رویداد ها";
1346  }
1347  /*! Header used for the documentation section of a class' events. */
1349  {
1350  return "مستندات رویداد";
1351  }
1352 
1353 //////////////////////////////////////////////////////////////////////////
1354 // new since 1.3
1355 //////////////////////////////////////////////////////////////////////////
1356 
1357  /*! Used as a heading for a list of Java class types with package scope.
1358  */
1360  {
1361  return "انواع بسته ها";
1362  }
1363  /*! Used as a heading for a list of Java class functions with package
1364  * scope.
1365  */
1367  {
1368  return "توابع بسته ها";
1369  }
1370  /*! Used as a heading for a list of static Java class functions with
1371  * package scope.
1372  */
1374  {
1375  return "Static Package Functions";
1376  }
1377  /*! Used as a heading for a list of Java class variables with package
1378  * scope.
1379  */
1381  {
1382  return "خواص بسته ها";
1383  }
1384  /*! Used as a heading for a list of static Java class variables with
1385  * package scope.
1386  */
1388  {
1389  return "Static Package Attributes";
1390  }
1391 
1392 //////////////////////////////////////////////////////////////////////////
1393 // new since 1.3.1
1394 //////////////////////////////////////////////////////////////////////////
1395 
1396  /*! Used in the quick index of a class/file/namespace member list page
1397  * to link to the unfiltered list of all members.
1398  */
1399  virtual QCString trAll()
1400  {
1401  return "همه";
1402  }
1403  /*! Put in front of the call graph for a function. */
1405  {
1406  return "نمودار صدا زدن برای این تابع :";
1407  }
1408 
1409 //////////////////////////////////////////////////////////////////////////
1410 // new since 1.3.3
1411 //////////////////////////////////////////////////////////////////////////
1412 
1413  /*! This string is used as the title for the page listing the search
1414  * results.
1415  */
1417  {
1418  return "نتايج جستجو";
1419  }
1420  /*! This string is put just before listing the search results. The
1421  * text can be different depending on the number of documents found.
1422  * Inside the text you can put the special marker $num to insert
1423  * the number representing the actual number of search results.
1424  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1425  * value 2 represents 2 or more matches. HTML markup is allowed inside
1426  * the returned string.
1427  */
1428  virtual QCString trSearchResults(int numDocuments)
1429  {
1430  if (numDocuments==0)
1431  {
1432  return "متاسفانه هیچ صفحه ای برای جستجو ی شما یافت نشد.";
1433  }
1434  else if (numDocuments==1)
1435  {
1436  return "یک سند برای این مورد یافت شد.";
1437  }
1438  else
1439  {
1440  return "Found <b>$num</b> documents matching your query. "
1441  "Showing best matches first.";
1442  }
1443  }
1444  /*! This string is put before the list of matched words, for each search
1445  * result. What follows is the list of words that matched the query.
1446  */
1448  {
1449  return "Matches:";
1450  }
1451 
1452 //////////////////////////////////////////////////////////////////////////
1453 // new since 1.3.8
1454 //////////////////////////////////////////////////////////////////////////
1455 
1456  /*! This is used in HTML as the title of page with source code for file filename
1457  */
1458  virtual QCString trSourceFile(QCString& filename)
1459  {
1460  return filename + " کد و پرونده منبع";
1461  }
1462 
1463 //////////////////////////////////////////////////////////////////////////
1464 // new since 1.3.9
1465 //////////////////////////////////////////////////////////////////////////
1466 
1467  /*! This is used as the name of the chapter containing the directory
1468  * hierarchy.
1469  */
1471  { return "ساختار و سلسله مراتب شاخه ها"; }
1472 
1473  /*! This is used as the name of the chapter containing the documentation
1474  * of the directories.
1475  */
1477  { return "مستندات دايرکتوری"; }
1478 
1479  /*! This is used as the title of the directory index and also in the
1480  * Quick links of an HTML page, to link to the directory hierarchy.
1481  */
1483  { return "شاخه ها"; }
1484 
1485  /*! This returns a sentences that introduces the directory hierarchy.
1486  * and the fact that it is sorted alphabetically per level
1487  */
1489  { return "در ذيل ساختار شاخه ها و دايرکتوری ها را نسبتا مرتب شده می بينيد :";
1490  }
1491 
1492  /*! This returns the title of a directory page. The name of the
1493  * directory is passed via \a dirName.
1494  */
1495  virtual QCString trDirReference(const QCString &dirName)
1496  { QCString result=dirName; result+=" مرجع شاخه ی"; return result; }
1497 
1498  /*! This returns the word directory with or without starting capital
1499  * (\a first_capital) and in sigular or plural form (\a singular).
1500  */
1501  virtual QCString trDir(bool /*first_capital*/, bool singular)
1502  {
1503  QCString result("شاخه");
1504  if (singular) result+=" ها "+result;
1505  return result;
1506  }
1507 
1508 //////////////////////////////////////////////////////////////////////////
1509 // new since 1.4.1
1510 //////////////////////////////////////////////////////////////////////////
1511 
1512  /*! This text is added to the documentation when the \\overload command
1513  * is used for a overloaded function.
1514  */
1516  {
1517  return "This is an overloaded member function, "
1518  "provided for convenience. It differs from the above "
1519  "function only in what argument(s) it accepts.";
1520  }
1521 
1522 //////////////////////////////////////////////////////////////////////////
1523 // new since 1.4.6
1524 //////////////////////////////////////////////////////////////////////////
1525 
1526  /*! This is used to introduce a caller (or called-by) graph */
1528  {
1529  return "نمودار صدا زننده های این تابع:";
1530  }
1531 //////////////////////////////////////////////////////////////////////////
1532 // new since 1.5.4 (mainly for Fortran)
1533 //////////////////////////////////////////////////////////////////////////
1534 
1535  /*! header that is put before the list of member subprograms (Fortran). */
1537  { return "مستندات توابع عضو"; }
1538 
1539  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1541  { return "لیست ساختار های داده"; }
1542 
1543  /*! This is put above each page as a link to all members of compounds (Fortran). */
1545  { return "فیلدهای اطلاعات"; }
1546 
1547  /*! This is an introduction to the annotated compound list (Fortran). */
1549  { return "ساختارهای داده به همراه توضیح کوتاه :"; }
1550 
1551  /*! This is an introduction to the page with all data types (Fortran). */
1553  {
1554  return "توضیحات اعضا ساختارها به همراه مستندات ساختار داده ی مربوطه";
1555  }
1556 
1557  /*! This is used in LaTeX as the title of the chapter with the
1558  * annotated compound index (Fortran).
1559  */
1561  { return "Data Type Index"; }
1562 
1563  /*! This is used in LaTeX as the title of the chapter containing
1564  * the documentation of all data types (Fortran).
1565  */
1567  { return "Data Type Documentation"; }
1568 
1569  /*! This is used in the documentation of a file as a header before the
1570  * list of (global) subprograms (Fortran).
1571  */
1573  { return "توابع و زیربرنامه ها"; }
1574 
1575  /*! This is used in the documentation of a file/namespace before the list
1576  * of documentation blocks for subprograms (Fortran)
1577  */
1579  { return "مستندات توابع و زیربرنامه ها"; }
1580 
1581  /*! This is used in the documentation of a file/namespace/group before
1582  * the list of links to documented compounds (Fortran)
1583  */
1585  { return "ساختار های داده"; }
1586 
1587  /*! used as the title of page containing all the index of all modules (Fortran). */
1589  { return "لیست ماژول ها"; }
1590 
1591  /*! used as an introduction to the modules list (Fortran) */
1593  {
1594  QCString result="لیست ماژول ها به همراه توضیحات کوتاه";
1595  return result;
1596  }
1597 
1598  /*! used as the title of the HTML page of a module/type (Fortran) */
1600  ClassDef::CompoundType compType,
1601  bool isTemplate)
1602  {
1603  QCString result=(QCString)clName;
1604  switch(compType)
1605  {
1606  case ClassDef::Class: result+=" Module"; break;
1607  case ClassDef::Struct: result+=" Type"; break;
1608  case ClassDef::Union: result+=" Union"; break;
1609  case ClassDef::Interface: result+=" Interface"; break;
1610  case ClassDef::Protocol: result+=" Protocol"; break;
1611  case ClassDef::Category: result+=" Category"; break;
1612  case ClassDef::Exception: result+=" Exception"; break;
1613  default: break;
1614  }
1615  if (isTemplate) result+=" Template";
1616  result+=" Reference";
1617  return result;
1618  }
1619  /*! used as the title of the HTML page of a module (Fortran) */
1620  virtual QCString trModuleReference(const QCString &namespaceName)
1621  {
1622  QCString result=namespaceName;
1623  result+=" Module Reference";
1624  return result;
1625  }
1626 
1627  /*! This is put above each page as a link to all members of modules. (Fortran) */
1629  { return "اعضاء ماژول"; }
1630 
1631  /*! This is an introduction to the page with all modules members (Fortran) */
1633  {
1634  QCString result="لیست اعضاء ماژول ها به همراه مستندات ماژول مربوطه";
1635  return result;
1636  }
1637 
1638  /*! This is used in LaTeX as the title of the chapter with the
1639  * index of all modules (Fortran).
1640  */
1642  { return "Modules Index"; }
1643 
1644  /*! This is used for translation of the word that will possibly
1645  * be followed by a single name or by a list of names
1646  * of the category.
1647  */
1648  virtual QCString trModule(bool, bool singular)
1649  {
1650  QCString result("ماژول");
1651  if (!singular) result+=" ها";
1652  return result;
1653  }
1654  /*! This is put at the bottom of a module documentation page and is
1655  * followed by a list of files that were used to generate the page.
1656  */
1658  bool single)
1659  { // here s is one of " Module", " Struct" or " Union"
1660  // single is true implies a single file
1661  QCString result=(QCString)"The documentation for this ";
1662  switch(compType)
1663  {
1664  case ClassDef::Class: result+="module"; break;
1665  case ClassDef::Struct: result+="type"; break;
1666  case ClassDef::Union: result+="union"; break;
1667  case ClassDef::Interface: result+="interface"; break;
1668  case ClassDef::Protocol: result+="protocol"; break;
1669  case ClassDef::Category: result+="category"; break;
1670  case ClassDef::Exception: result+="exception"; break;
1671  default: break;
1672  }
1673  result+=" was generated from the following file";
1674  if (single) result+=":"; else result+="s:";
1675  return result;
1676  }
1677  /*! This is used for translation of the word that will possibly
1678  * be followed by a single name or by a list of names
1679  * of the category.
1680  */
1681  virtual QCString trType(bool first_capital, bool singular)
1682  {
1683  QCString result((first_capital ? "Type" : "type"));
1684  if (!singular) result+="s";
1685  return result;
1686  }
1687  /*! This is used for translation of the word that will possibly
1688  * be followed by a single name or by a list of names
1689  * of the category.
1690  */
1691  virtual QCString trSubprogram(bool, bool singular)
1692  {
1693  QCString result("زیربرنامه");
1694  if (!singular) result+=" ها ";
1695  return result;
1696  }
1697 
1698  /*! C# Type Constraint list */
1700  {
1701  return "Type Constraints";
1702  }
1703 
1704 //////////////////////////////////////////////////////////////////////////
1705 // new since 1.6.0 (mainly for the new search engine)
1706 //////////////////////////////////////////////////////////////////////////
1707 
1708  /*! directory relation for \a name */
1709  virtual QCString trDirRelation(const QCString &name)
1710  {
1711  return QCString(name) + " Relation";
1712  }
1713 
1714  /*! Loading message shown when loading search results */
1716  {
1717  return "در حال بارگذاری...";
1718  }
1719 
1720  /*! Label used for search results in the global namespace */
1722  {
1723  return "فضای نام جهانی";
1724  }
1725 
1726  /*! Message shown while searching */
1728  {
1729  return "در حال جستجو...";
1730  }
1731 
1732  /*! Text shown when no search results are found */
1734  {
1735  return "یافت نشد";
1736  }
1737 
1738 //////////////////////////////////////////////////////////////////////////
1739 // new since 1.6.3 (missing items for the directory pages)
1740 //////////////////////////////////////////////////////////////////////////
1741 
1742  /*! when clicking a directory dependency label, a page with a
1743  * table is shown. The heading for the first column mentions the
1744  * source file that has a relation to another file.
1745  */
1746  virtual QCString trFileIn(const QCString &name)
1747  {
1748  return (QCString)"پرونده ای در "+name;
1749  }
1750 
1751  /*! when clicking a directory dependency label, a page with a
1752  * table is shown. The heading for the second column mentions the
1753  * destination file that is included.
1754  */
1755  virtual QCString trIncludesFileIn(const QCString &name)
1756  {
1757  return (QCString)"Includes file in "+name;
1758  }
1759 
1760  /** Compiles a date string.
1761  * @param year Year in 4 digits
1762  * @param month Month of the year: 1=January
1763  * @param day Day of the Month: 1..31
1764  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1765  * @param hour Hour of the day: 0..23
1766  * @param minutes Minutes in the hour: 0..59
1767  * @param seconds Seconds within the minute: 0..59
1768  * @param includeTime Include time in the result string?
1769  */
1770  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1771  int hour,int minutes,int seconds,
1772  bool includeTime)
1773  {
1774  static const char *days[] = { "دوشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه","یکشنبه" };
1775  static const char *months[] = { "ژانویه","فوریه","مارس","آوریل","می","جون","جولای","آگوست","سپتامبر","اکتبر","نوامبر","دسامبر" };
1776  QCString sdate;
1777  sdate.sprintf("%s %d %s %d",days[dayOfWeek-1],day,months[month-1],year);
1778  if (includeTime)
1779  {
1780  QCString stime;
1781  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1782  sdate+=stime;
1783  }
1784  return convertDigitsToFarsi(sdate);
1785  }
1786 
1787 };
1788 
1789 #endif
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorPersian::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_fa.h:560
TranslatorPersian::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_fa.h:1620
TranslatorPersian::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_fa.h:724
TranslatorPersian::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_fa.h:910
TranslatorPersian::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_fa.h:1447
TranslatorPersian::trEnumName
virtual QCString trEnumName()
Definition: translator_fa.h:169
TranslatorPersian::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_fa.h:1536
TranslatorPersian::trDataTypes
virtual QCString trDataTypes()
Definition: translator_fa.h:1584
TranslatorPersian::trProperties
virtual QCString trProperties()
Definition: translator_fa.h:1075
TranslatorPersian::trPrecondition
virtual QCString trPrecondition()
Definition: translator_fa.h:842
TranslatorPersian::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_fa.h:402
TranslatorPersian::trNoMatches
virtual QCString trNoMatches()
Definition: translator_fa.h:1733
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorPersian::trSubprogram
virtual QCString trSubprogram(bool, bool singular)
Definition: translator_fa.h:1691
TranslatorPersian::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_fa.h:874
TranslatorPersian::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_fa.h:593
TranslatorPersian::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_fa.h:623
TranslatorPersian::trVariables
virtual QCString trVariables()
Definition: translator_fa.h:442
TranslatorPersian::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_fa.h:1566
TranslatorPersian::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_fa.h:126
TranslatorPersian::trInvariant
virtual QCString trInvariant()
Definition: translator_fa.h:852
TranslatorPersian::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_fa.h:155
TranslatorPersian::trExamples
virtual QCString trExamples()
Definition: translator_fa.h:240
TranslatorPersian
Definition: translator_fa.h:42
TranslatorPersian::trLoading
virtual QCString trLoading()
Definition: translator_fa.h:1715
TranslatorPersian::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_fa.h:1641
QCString::length
uint length() const
Returns the length of the string, not counting the 0-terminator.
Definition: qcstring.h:147
TranslatorPersian::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_fa.h:321
TranslatorPersian::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_fa.h:1348
TranslatorPersian::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_fa.h:564
TranslatorPersian::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_fa.h:1250
TranslatorPersian::trSince
virtual QCString trSince()
Definition: translator_fa.h:970
TranslatorPersian::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_fa.h:122
TranslatorPersian::trReturnValues
virtual QCString trReturnValues()
Definition: translator_fa.h:777
TranslatorPersian::trPostcondition
virtual QCString trPostcondition()
Definition: translator_fa.h:847
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorPersian::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_fa.h:1746
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorPersian::trCompounds
virtual QCString trCompounds()
Definition: translator_fa.h:490
TranslatorPersian::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_fa.h:654
TranslatorPersian::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_fa.h:750
TranslatorPersian::trDir
virtual QCString trDir(bool, bool singular)
Definition: translator_fa.h:1501
TranslatorPersian::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_fa.h:1359
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorPersian::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_fa.h:1387
TranslatorPersian::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_fa.h:827
TranslatorPersian::trTestList
virtual QCString trTestList()
Definition: translator_fa.h:1065
TranslatorPersian::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_fa.h:926
TranslatorPersian::trDeprecated
virtual QCString trDeprecated()
Definition: translator_fa.h:807
TranslatorPersian::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_fa.h:236
TranslatorPersian::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_fa.h:1373
TranslatorPersian::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_fa.h:1548
TranslatorPersian::trDefines
virtual QCString trDefines()
Definition: translator_fa.h:418
TranslatorPersian::trTest
virtual QCString trTest()
Definition: translator_fa.h:1060
TranslatorPersian::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_fa.h:646
TranslatorPersian::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_fa.h:466
TranslatorPersian::trEnumerations
virtual QCString trEnumerations()
Definition: translator_fa.h:430
TranslatorPersian::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_fa.h:114
QCString::at
char & at(size_t i)
Returns a reference to the character at index i.
Definition: qcstring.h:477
TranslatorPersian::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_fa.h:151
TranslatorPersian::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_fa.h:102
TranslatorPersian::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_fa.h:1628
TranslatorPersian::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_fa.h:1599
TranslatorPersian::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_fa.h:1307
TranslatorPersian::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_fa.h:615
TranslatorPersian::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_fa.h:354
TranslatorPersian::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_fa.h:1770
TranslatorPersian::trEvents
virtual QCString trEvents()
Definition: translator_fa.h:1343
TranslatorAdapter_1_7_5
Adapter class for languages that only contain translations up to version 1.7.5.
Definition: translator_adapter.h:295
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorPersian::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_fa.h:253
TranslatorPersian::trTodo
virtual QCString trTodo()
Definition: translator_fa.h:940
TranslatorPersian::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_fa.h:143
TranslatorPersian::trMemberList
virtual QCString trMemberList()
Definition: translator_fa.h:147
TranslatorPersian::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_fa.h:177
TranslatorPersian::convertDigitsToFarsi
QCString convertDigitsToFarsi(QCString str)
Converts english digits of an input string to persian equivalents.
Definition: translator_fa.h:47
TranslatorPersian::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_fa.h:636
TranslatorPersian::trModule
virtual QCString trModule(bool, bool singular)
Definition: translator_fa.h:1648
TranslatorPersian::trPackageList
virtual QCString trPackageList()
Definition: translator_fa.h:1107
TranslatorPersian::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_fa.h:262
TranslatorPersian::trInitialValue
virtual QCString trInitialValue()
Definition: translator_fa.h:857
TranslatorPersian::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_fa.h:1171
TranslatorPersian::trISOLang
virtual QCString trISOLang()
Definition: translator_fa.h:94
TranslatorPersian::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_fa.h:630
TranslatorPersian::trCallGraph
virtual QCString trCallGraph()
Definition: translator_fa.h:1404
TranslatorPersian::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_fa.h:891
TranslatorPersian::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_fa.h:980
TranslatorPersian::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_fa.h:1709
TranslatorPersian::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_fa.h:505
TranslatorPersian::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_fa.h:638
TranslatorPersian::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_fa.h:478
TranslatorPersian::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_fa.h:1217
TranslatorPersian::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_fa.h:310
TranslatorPersian::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_fa.h:987
TranslatorPersian::trEnumValue
virtual QCString trEnumValue()
Definition: translator_fa.h:173
TranslatorPersian::trCompoundList
virtual QCString trCompoundList()
Definition: translator_fa.h:193
TranslatorPersian::trTodoList
virtual QCString trTodoList()
Definition: translator_fa.h:945
TranslatorPersian::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_fa.h:687
TranslatorPersian::trDefineValue
virtual QCString trDefineValue()
Definition: translator_fa.h:1122
TranslatorPersian::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_fa.h:484
TranslatorPersian::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_fa.h:161
TranslatorPersian::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_fa.h:329
TranslatorPersian::trModulesList
virtual QCString trModulesList()
Definition: translator_fa.h:1588
TranslatorPersian::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_fa.h:448
TranslatorPersian::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_fa.h:514
TranslatorPersian::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_fa.h:798
TranslatorPersian::trBug
virtual QCString trBug()
Definition: translator_fa.h:1132
TranslatorPersian::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_fa.h:106
TranslatorPersian::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_fa.h:709
TranslatorPersian::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_fa.h:1544
TranslatorPersian::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_fa.h:1476
TranslatorPersian::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_fa.h:1458
TranslatorPersian::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_fa.h:552
TranslatorPersian::trFriends
virtual QCString trFriends()
Definition: translator_fa.h:575
TranslatorPersian::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_fa.h:472
TranslatorPersian::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_fa.h:342
TranslatorPersian::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_fa.h:110
TranslatorPersian::trDocumentation
virtual QCString trDocumentation()
Definition: translator_fa.h:336
TranslatorPersian::trModulesListDescription
virtual QCString trModulesListDescription(bool)
Definition: translator_fa.h:1592
TranslatorPersian::trCode
virtual QCString trCode()
Definition: translator_fa.h:862
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorPersian::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_fa.h:1578
TranslatorPersian::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_fa.h:1274
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorPersian::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_fa.h:906
TranslatorPersian::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_fa.h:794
TranslatorPersian::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_fa.h:640
TranslatorPersian::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_fa.h:276
TranslatorPersian::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_fa.h:788
TranslatorPersian::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_fa.h:713
TranslatorPersian::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_fa.h:1657
TranslatorPersian::trOverloadText
virtual QCString trOverloadText()
Definition: translator_fa.h:1515
TranslatorPersian::trSubprograms
virtual QCString trSubprograms()
Definition: translator_fa.h:1572
TranslatorPersian::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_fa.h:1416
TranslatorPersian::trFileList
virtual QCString trFileList()
Definition: translator_fa.h:206
TranslatorPersian::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_fa.h:1331
TranslatorPersian::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_fa.h:585
TranslatorPersian::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_fa.h:895
TranslatorPersian::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_fa.h:703
TranslatorPersian::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_fa.h:1186
TranslatorPersian::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_fa.h:408
TranslatorPersian::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_fa.h:1699
TranslatorPersian::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_fa.h:1239
TranslatorPersian::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_fa.h:1681
TranslatorPersian::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_fa.h:954
TranslatorPersian::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_fa.h:348
TranslatorPersian::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_fa.h:918
TranslatorPersian::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_fa.h:412
TranslatorPersian::trDirDescription
virtual QCString trDirDescription()
Definition: translator_fa.h:1488
TranslatorPersian::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_fa.h:540
TranslatorPersian::trSignals
virtual QCString trSignals()
Definition: translator_fa.h:634
TranslatorPersian::trFileMembers
virtual QCString trFileMembers()
Definition: translator_fa.h:223
TranslatorPersian::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_fa.h:1080
TranslatorPersian::trFile
virtual QCString trFile(bool, bool singular)
Definition: translator_fa.h:1206
TranslatorPersian::trRemarks
virtual QCString trRemarks()
Definition: translator_fa.h:958
TranslatorPersian::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool)
Definition: translator_fa.h:1632
TranslatorPersian::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_fa.h:1299
TranslatorPersian::idLanguage
virtual QCString idLanguage()
Definition: translator_fa.h:72
TranslatorPersian::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_fa.h:396
TranslatorPersian::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_fa.h:381
TranslatorPersian::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_fa.h:1112
TranslatorPersian::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_fa.h:966
TranslatorPersian::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_fa.h:460
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorPersian::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_fa.h:870
TranslatorPersian::trFunctions
virtual QCString trFunctions()
Definition: translator_fa.h:436
TranslatorPersian::trSearching
virtual QCString trSearching()
Definition: translator_fa.h:1727
TranslatorPersian::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_fa.h:832
TranslatorPersian::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_fa.h:1540
TranslatorPersian::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_fa.h:520
TranslatorPersian::trReferences
virtual QCString trReferences()
Definition: translator_fa.h:1287
TranslatorPersian::trMainPage
virtual QCString trMainPage()
Definition: translator_fa.h:782
TranslatorPersian::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_fa.h:1366
TranslatorPersian::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_fa.h:1527
TranslatorPersian::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_fa.h:1102
TranslatorPersian::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_fa.h:1721
TranslatorPersian::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_fa.h:930
TranslatorPersian::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_fa.h:248
TranslatorPersian::trFileIndex
virtual QCString trFileIndex()
Definition: translator_fa.h:369
TranslatorPersian::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_fa.h:189
TranslatorPersian::trBugList
virtual QCString trBugList()
Definition: translator_fa.h:1137
TranslatorPersian::trClasses
virtual QCString trClasses()
Definition: translator_fa.h:1090
TranslatorPersian::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_fa.h:642
TranslatorPersian::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_fa.h:1755
TranslatorPersian::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_fa.h:730
TranslatorPersian::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_fa.h:922
TranslatorPersian::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_fa.h:817
TranslatorPersian::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_fa.h:695
HtmlDivEnd
#define HtmlDivEnd
Definition: translator_fa.h:39
TranslatorPersian::trParameters
virtual QCString trParameters()
Definition: translator_fa.h:544
TranslatorPersian::trModules
virtual QCString trModules()
Definition: translator_fa.h:185
TranslatorPersian::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_fa.h:210
TranslatorPersian::trPageIndex
virtual QCString trPageIndex()
Definition: translator_fa.h:878
TranslatorPersian::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_fa.h:648
TranslatorPersian::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_fa.h:644
TranslatorPersian::trNote
virtual QCString trNote()
Definition: translator_fa.h:887
TranslatorPersian::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_fa.h:866
TranslatorPersian::trWarning
virtual QCString trWarning()
Definition: translator_fa.h:524
TranslatorPersian::trExceptions
virtual QCString trExceptions()
Definition: translator_fa.h:548
TranslatorPersian::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_fa.h:454
TranslatorPersian::trPackages
virtual QCString trPackages()
Definition: translator_fa.h:1117
TranslatorPersian::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_fa.h:632
TranslatorPersian::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_fa.h:118
TranslatorPersian::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_fa.h:679
TranslatorPersian::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_fa.h:1495
TranslatorPersian::trReturns
virtual QCString trReturns()
Definition: translator_fa.h:536
TranslatorPersian::trTypedefs
virtual QCString trTypedefs()
Definition: translator_fa.h:424
TranslatorPersian::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_fa.h:1195
TranslatorPersian::trAttention
virtual QCString trAttention()
Definition: translator_fa.h:962
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorPersian::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_fa.h:837
TranslatorPersian::trDate
virtual QCString trDate()
Definition: translator_fa.h:532
TranslatorPersian::trDirectories
virtual QCString trDirectories()
Definition: translator_fa.h:1482
TranslatorPersian::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_fa.h:1228
TranslatorPersian::trDirIndex
virtual QCString trDirIndex()
Definition: translator_fa.h:1470
TranslatorPersian::trLegend
virtual QCString trLegend()
Definition: translator_fa.h:1050
TranslatorPersian::trNamespaces
virtual QCString trNamespaces()
Definition: translator_fa.h:740
TranslatorPersian::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_fa.h:325
TranslatorPersian::trVersion
virtual QCString trVersion()
Definition: translator_fa.h:528
TranslatorPersian::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_fa.h:1428
TranslatorPersian::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_fa.h:89
TranslatorPersian::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_fa.h:1180
TranslatorPersian::trAll
virtual QCString trAll()
Definition: translator_fa.h:1399
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorPersian::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_fa.h:375
TranslatorPersian::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_fa.h:822
TranslatorPersian::trMore
virtual QCString trMore()
Definition: translator_fa.h:139
TranslatorPersian::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_fa.h:1319
TranslatorPersian::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_fa.h:1380
HtmlRightToLeft
#define HtmlRightToLeft
Definition: translator_fa.h:37
TranslatorPersian::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_fa.h:914
TranslatorPersian::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool)
Definition: translator_fa.h:1552
TranslatorPersian::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_fa.h:1560
TranslatorPersian::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_fa.h:1261
TranslatorPersian::trSearch
virtual QCString trSearch()
Definition: translator_fa.h:244
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108