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