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