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