Doxygen
translator_ua.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  * Copyright (C) 1997-2015 by Dimitri van Heesch.
4  *
5  * Permission to use, copy, modify, and distribute this software and its
6  * documentation under the terms of the GNU General Public License is hereby
7  * granted. No representations are made about the suitability of this software
8  * for any purpose. It is provided "as is" without express or implied warranty.
9  * See the GNU General Public License for more details.
10  *
11  * Documents produced by Doxygen are derivative works derived from the
12  * input used in their production; they are not affected by this license.
13  *
14  * The translation into Ukrainian was provided by
15  * Olexij Tkatchenko (olexij.tkatchenko@parcs.de)
16  * Petro Yermolenko (python@i.ua)
17  */
18 
19 #ifndef TRANSLATOR_UA_H
20 #define TRANSLATOR_UA_H
21 
23 {
24  public:
25  /*! Used for identification of the language. */
26  virtual QCString idLanguage()
27  { return "ukrainian"; }
28 
29  /* Used to get the command(s) for the language support. */
31  {
32  return "\\usepackage[T2A]{fontenc}\n\\usepackage[ukrainian]{babel}\n";
33  }
34  virtual QCString trISOLang()
35  {
36  return "uk";
37  }
38 
39  // --- Language translation methods -------------------
40 
41  /*! used in the compound documentation before a list of related functions. */
43  { return "Споріднені фукції"; }
44 
45  /*! subscript for the related functions. */
47  { return "(не методи компонент)"; }
48 
49  /*! header that is put before the detailed description of files, classes and namespaces. */
51  { return "Детальний опис"; }
52 
53  /*! header that is put before the list of typedefs. */
55  { return "Опис типів користувача"; }
56 
57  /*! header that is put before the list of enumerations. */
59  { return "Опис переліків користувача"; }
60 
61  /*! header that is put before the list of member functions. */
63  { return "Опис методів компонент"; }
64 
65  /*! header that is put before the list of member attributes. */
67  {
68  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
69  {
70  return "Поля" ;
71  }
72  else
73  {
74  return "Компонентні дані" ;
75  }
76  }
77 
78  /*! this is the text of a link put after brief descriptions. */
79  virtual QCString trMore()
80  { return "Детальніше..."; }
81 
82  /*! put in the class documentation */
83  /* Isn't used when optimization for C is on. */
85  {
86  return "Список всіх елементів" ;
87  }
88 
89  /*! used as the title of the "list of all members" page of a class */
90  /* Isn't used when optimization for C is on. */
91  virtual QCString trMemberList()
92  {
93  return "Cписок елементів" ;
94  }
95 
96  /*! this is the first part of a sentence that is followed by a class name */
97  /* Isn't used when optimization for C is on. */
99  { return "Повний список елементів"; }
100 
101  /*! this is the remainder of the sentence after the class name */
102  /* Isn't used when optimization for C is on. */
104  { return ", включаючи всі успадковані елементи"; }
105 
106  /*! this is put at the author sections at the bottom of man pages.
107  * parameter s is name of the project name.
108  */
109  virtual QCString trGeneratedAutomatically(const QCString &s)
110  { QCString result="Автоматично створено за допомогою Doxygen";
111  if (!s.isEmpty()) result+=QCString(" для ")+s;
112  result+=" з тексту програми.";
113  return result;
114  }
115 
116  /*! put after an enum name in the list of all members */
117  virtual QCString trEnumName()
118  { return "Перелік"; }
119 
120  /*! put after an enum value in the list of all members */
121  virtual QCString trEnumValue()
122  { return "Елемент переліку"; }
123 
124  /*! put after an undocumented member in the list of all members */
126  { return "визначено в "; }
127 
128  // quick reference sections
129 
130  /*! This is put above each page as a link to the list of all groups of
131  * compounds or files (see the \\group command).
132  */
133  virtual QCString trModules()
134  { return "Програмні модулі"; }
135 
136  /*! This is put above each page as a link to the class hierarchy */
138  { return "Ієрархія класів"; }
139 
140  /*! This is put above each page as a link to the list of annotated classes */
142  {
143  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
144  {
145  return "Структури даних" ;
146  }
147  else
148  {
149  return "Класи" ;
150  }
151  }
152 
153  /*! This is put above each page as a link to the list of documented files */
154  virtual QCString trFileList()
155  { return "Файли"; }
156 
157  /*! This is put above each page as a link to all members of compounds. */
158  virtual QCString trCompoundMembers()
159  {
160  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
161  {
162  return "Поля структур" ;
163  }
164  else
165  {
166  return "Елементи класів" ;
167  }
168  }
169 
170  /*! This is put above each page as a link to all members of files. */
171  /*??*/
172  virtual QCString trFileMembers()
173  {
174  return "Елементи файлу" ;
175  }
176 
177  /*! This is put above each page as a link to all related pages. */
178  virtual QCString trRelatedPages()
179  /* ?? Вариант перевода "См. также: " более удачный, но не в заголовке,
180  как в данном случае. */
181  { return "Додаткова інформація"; }
182 
183  /*! This is put above each page as a link to all examples. */
184  virtual QCString trExamples()
185  { return "Приклади"; }
186 
187  /*! This is put above each page as a link to the search engine. */
188  virtual QCString trSearch()
189  { return "Пошук"; }
190 
191  /*! This is an introduction to the class hierarchy. */
193  { return "Список успадкувань впорядковано наближено до алфавіту"; }
194 
195  /*! This is an introduction to the list with all files. */
196  virtual QCString trFileListDescription(bool extractAll)
197  {
198  QCString result="Повний список ";
199  if (!extractAll) result+="документованих ";
200  result+="файлів.";
201  return result;
202  }
203 
204  /*! This is an introduction to the annotated compound list. */
206  {
207  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
208  {
209  return "Структури даних з коротким описом." ;
210  }
211  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
212  {
213  return "Класи з коротким описом." ;
214  }
215  else
216  {
217  return "Класи, структури, об'єднання та інтерфейси з коротким описом." ;
218  }
219  }
220 
221  /*! This is an introduction to the page with all class members. */
222  virtual QCString trCompoundMembersDescription(bool extractAll)
223  {
224  QCString result="Список всіх ";
225  if(!extractAll) result+="документоаних ";
226  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
227  result+="елементів структур даних з посиланням на ";
228  else
229  result+="елементів класів даних з посиланням на ";
230  if(extractAll)
231  {
232  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
233  result+="документацію по структурі/об'єднанню кожного елементу.";
234  else
235  result+="документацію по класу кожного елементу.";
236  }
237  else
238  {
239  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
240  result += "відповідні структури";
241  else
242  result += "відповідні класи";
243  result+=", до яких вони належать.";
244  }
245  return result ;
246  }
247 
248  /*! This is an introduction to the page with all file members. */
249  virtual QCString trFileMembersDescription(bool extractAll)
250  {
251  QCString result="Список всіх ";
252  if (!extractAll) result+="документованих ";
253 
254  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
255  {
256  result+="функцій, змінних, макровизначень, "
257  "переліків і визначень типів";
258  }
259  else
260  {
261  result+="елементів файлів ";
262  }
263  result+=" з посиланям на ";
264  if (extractAll)
265  result+="файли, до яких вони належать.";
266  else
267  result+="документацію.";
268  return result ;
269  }
270 
271  /*! This is an introduction to the page with the list of all examples */
273  { return "Повний список прикладів."; }
274 
275  /*! This is an introduction to the page with the list of related pages */
277  { return "Повний список додаткових описів."; }
278 
279  /*! This is an introduction to the page with the list of class/file groups */
281  { return "Повний список модулів."; }
282 
283  // index titles (the project name is prepended for these)
284 
285  /*! This is used in HTML as the title of index.html. */
286  virtual QCString trDocumentation()
287  { return "Документація"; }
288 
289  /*! This is used in LaTeX as the title of the chapter with the
290  * index of all groups.
291  */
293  { return "Алфавітний покажчик модулів"; }
294 
295  /*! This is used in LaTeX as the title of the chapter with the
296  * class hierarchy.
297  */
298  virtual QCString trHierarchicalIndex()
299  { return "Ієрархічний покажчик класів"; }
300 
301  /*! This is used in LaTeX as the title of the chapter with the
302  * annotated compound index.
303  */
304  virtual QCString trCompoundIndex()
305  {
306  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
307  {
308  return "Алфавітний покажчик структур даних" ;
309  }
310  else
311  {
312  return "Алфавітний покажчик класів" ;
313  }
314  }
315 
316  /*! This is used in LaTeX as the title of the chapter with the
317  * list of all files.
318  */
319  virtual QCString trFileIndex()
320  { return "Покажчик файлв" ; }
321 
322  /*! This is used in LaTeX as the title of the chapter containing
323  * the documentation of all groups.
324  */
326  { return "Програмні Модулі"; }
327 
328  /*! This is used in LaTeX as the title of the chapter containing
329  * the documentation of all classes, structs and unions.
330  */
332  {
333  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
334  {
335  return "Структури даних" ;
336  }
337  else
338  {
339  return "Класи" ;
340  }
341  }
342 
343  /*! This is used in LaTeX as the title of the chapter containing
344  * the documentation of all files.
345  */
346  virtual QCString trFileDocumentation()
347  { return "Файли"; }
348 
349  /*! This is used in LaTeX as the title of the chapter containing
350  * the documentation of all examples.
351  */
353  { return "Приклади"; }
354 
355  /*! This is used in LaTeX as the title of the chapter containing
356  * the documentation of all related pages.
357  */
358  virtual QCString trPageDocumentation()
359  { return "Документація по темі"; }
360 
361  /*! This is used in LaTeX as the title of the document */
363  { return "Довідковий посібник"; }
364 
365  /*! This is used in the documentation of a file as a header before the
366  * list of defines
367  */
368  virtual QCString trDefines()
369  { return "Макровизначення"; }
370 
371  /*! This is used in the documentation of a file as a header before the
372  * list of typedefs
373  */
375  { return "Визначення типів"; }
376 
377  /*! This is used in the documentation of a file as a header before the
378  * list of enumerations
379  */
380  virtual QCString trEnumerations()
381  { return "Переліки"; }
382 
383  /*! This is used in the documentation of a file as a header before the
384  * list of (global) functions
385  */
386  virtual QCString trFunctions()
387  { return "Функції"; }
388 
389  /*! This is used in the documentation of a file as a header before the
390  * list of (global) variables
391  */
392  virtual QCString trVariables()
393  { return "Змінні"; }
394 
395  /*! This is used in the documentation of a file as a header before the
396  * list of (global) variables
397  */
398  virtual QCString trEnumerationValues()
399  { return "Елементи переліків"; }
400 
401  /*! This is used in the documentation of a file before the list of
402  * documentation blocks for defines
403  */
405  { return "Опис макровизначень"; }
406 
407  /*! This is used in the documentation of a file/namespace before the list
408  * of documentation blocks for typedefs
409  */
411  { return "Опис визначень типів"; }
412 
413  /*! This is used in the documentation of a file/namespace before the list
414  * of documentation blocks for enumeration types
415  */
417  { return "Опис переліків"; }
418 
419  /*! This is used in the documentation of a file/namespace before the list
420  * of documentation blocks for functions
421  */
423  { return "Опис функцій"; }
424 
425  /*! This is used in the documentation of a file/namespace before the list
426  * of documentation blocks for variables
427  */
429  { return "Опис змінних"; }
430 
431  /*! This is used in the documentation of a file/namespace/group before
432  * the list of links to documented compounds
433  */
434  virtual QCString trCompounds()
435  {
436  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
437  {
438  return "Структури даних" ;
439  }
440  else
441  {
442  return "Класи" ;
443  }
444 
445  }
446 
447  /*! This is used in the documentation of a group before the list of
448  * links to documented files
449  */
450  /*! This is used in the standard footer of each page and indicates when
451  * the page was generated
452  */
453  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
454  {
455  QCString result="Документація ";
456  if (!projName.isEmpty()) result+=QCString("до ")+projName;
457  result+=QCString(" створена ")+date;
458  result+=" системою";
459  return result;
460  }
461 
462  /*! this text is put before a class diagram */
463  virtual QCString trClassDiagram(const QCString &clName)
464  {
465  return QCString("Схема успадкувань для ")+clName;
466  }
467 
468  /*! this text is generated when the \\internal command is used. */
470  { return "Тільки для внутрішнього користування"; }
471 
472  /*! this text is generated when the \\warning command is used. */
473  virtual QCString trWarning()
474  { return "Застереження"; }
475 
476  /*! this text is generated when the \\version command is used. */
477  virtual QCString trVersion()
478  { return "Версія"; }
479 
480  /*! this text is generated when the \\date command is used. */
481  virtual QCString trDate()
482  { return "Дата"; }
483 
484  /*! this text is generated when the \\return command is used. */
485  virtual QCString trReturns()
486  { return "Повертає"; }
487 
488  /*! this text is generated when the \\sa command is used. */
489  virtual QCString trSeeAlso()
490  { return "Див. також"; }
491 
492  /*! this text is generated when the \\param command is used. */
494  { return "Аргументи"; }
495 
496  /*! this text is generated when the \\exception command is used. */
498  { return "Обробка виняткових ситуацій"; }
499 
500  /*! this text is used in the title page of a LaTeX document. */
502  { return "Створено системою"; }
503 
504 //////////////////////////////////////////////////////////////////////////
505 // new since 0.49-990307
506 //////////////////////////////////////////////////////////////////////////
507 
508  /*! used as the title of page containing all the index of all namespaces. */
510  { return "Простір імен"; }
511 
512  /*! used as an introduction to the namespace list */
513  virtual QCString trNamespaceListDescription(bool extractAll)
514  {
515  QCString result="Повний список ";
516  if (!extractAll) result+="документованих ";
517  result+="просторів імен.";
518  return result;
519  }
520 
521  /*! used in the class documentation as a header before the list of all
522  * friends of a class
523  */
524  virtual QCString trFriends()
525  { return "Дружні класи"; }
526 
527 //////////////////////////////////////////////////////////////////////////
528 // new since 0.49-990405
529 //////////////////////////////////////////////////////////////////////////
530 
531  /*! used in the class documentation as a header before the list of all
532  * related classes
533  */
535  { return "Документация до дружніх класів та відповідних функцій"; }
536 
537 //////////////////////////////////////////////////////////////////////////
538 // new since 0.49-990425
539 //////////////////////////////////////////////////////////////////////////
540 
541  /*! used as the title of the HTML page of a class/struct/union */
542  virtual QCString trCompoundReference(const QCString &clName,
543  ClassDef::CompoundType compType,
544  bool isTemplate)
545  {
546  QCString result;
547  if (isTemplate)
548  {
549  result="Шаблон ";
550  switch(compType)
551  {
552  case ClassDef::Class: result+="класу"; break;
553  case ClassDef::Struct: result+="структури"; break;
554  case ClassDef::Union: result+="об'єднання"; break;
555  case ClassDef::Interface: result+="інтерфейсу"; break;
556  case ClassDef::Protocol: result+="протоколу"; break;
557  case ClassDef::Category: result+="категорії"; break;
558  case ClassDef::Exception: result+="Виняток"; break;
559  default: break;
560  }
561  }
562  else
563  {
564  switch(compType)
565  {
566  case ClassDef::Class: result+="Клас"; break;
567  case ClassDef::Struct: result+="Структура"; break;
568  case ClassDef::Union: result+="Об'єднання"; break;
569  case ClassDef::Interface: result+="Інтерфейс"; break;
570  case ClassDef::Protocol: result+="Протокол"; break;
571  case ClassDef::Category: result+="Категорія"; break;
572  case ClassDef::Exception: result+="Виняток"; break;
573  default: break;
574  }
575  }
576  result+=" ";
577  return result+clName;
578  }
579 
580  /*! used as the title of the HTML page of a file */
581  virtual QCString trFileReference(const QCString &fileName)
582  {
583  return QCString("Файл ")+fileName;
584  }
585 
586  /*! used as the title of the HTML page of a namespace */
587  virtual QCString trNamespaceReference(const QCString &namespaceName)
588  {
589  return QCString("Простір імен ")+namespaceName;
590  }
591 
592  virtual QCString trPublicMembers()
593  { return "Загальнодоступні елементи"; }
594  virtual QCString trPublicSlots()
595  { return "Загальнодоступні слоти"; }
596  virtual QCString trSignals()
597  { return "Сигнали"; }
599  { return "Загальнодоступні статичні елементи"; }
600  virtual QCString trProtectedMembers()
601  { return "Захищені елементи"; }
602  virtual QCString trProtectedSlots()
603  { return "Захищені слоти"; }
605  { return "Захищені статичні елементи"; }
606  virtual QCString trPrivateMembers()
607  { return "Приватні елементи"; }
609  { return "Приватні слоти"; }
611  { return "Приватні статичні елементи"; }
612 
613  /*! this function is used to produce a comma-separated list of items.
614  * use generateMarker(i) to indicate where item i should be put.
615  */
616  virtual QCString trWriteList(int numEntries)
617  {
618  QCString result;
619  int i;
620  // the inherits list contain `numEntries' classes
621  for (i=0;i<numEntries;i++)
622  {
623  // use generateMarker to generate placeholders for the class links!
624  result+=generateMarker(i); // generate marker for entry i in the list
625  // (order is left to right)
626 
627  if (i!=numEntries-1) // not the last entry, so we need a separator
628  {
629  if (i<numEntries-2) // not the fore last entry
630  result+=", ";
631  else // the fore last entry
632  result+= " і " ;
633  }
634  }
635  return result;
636  }
637 
638  /*! used in class documentation to produce a list of base classes,
639  * if class diagrams are disabled.
640  */
641  virtual QCString trInheritsList(int numEntries)
642  {
643  return "Успадковує клас "+trWriteList(numEntries)+".";
644  }
645 
646  /*! used in class documentation to produce a list of super classes,
647  * if class diagrams are disabled.
648  */
649  virtual QCString trInheritedByList(int numEntries)
650  {
651  return "Успадковано класами "+trWriteList(numEntries)+".";
652  }
653 
654  /*! used in member documentation blocks to produce a list of
655  * members that are hidden by this one.
656  */
657  virtual QCString trReimplementedFromList(int numEntries)
658  {
659  return "Переозначення з "+trWriteList(numEntries)+".";
660  }
661 
662  /*! used in member documentation blocks to produce a list of
663  * all member that overwrite the implementation of this member.
664  */
665  virtual QCString trReimplementedInList(int numEntries)
666  {
667  return "Переозначається в "+trWriteList(numEntries)+".";
668  }
669 
670  /*! This is put above each page as a link to all members of namespaces. */
671  virtual QCString trNamespaceMembers()
672  { return "Елементи простору імен"; }
673 
674  /*! This is an introduction to the page with all namespace members */
675  virtual QCString trNamespaceMemberDescription(bool extractAll)
676  {
677  QCString result="Повний список ";
678  if (!extractAll) result+="документованих ";
679  result+="елеметів простору імен з посиланням ";
680  if (extractAll)
681  result+="на документацію для кожного елементу:";
682  else
683  result+="на простір імен до якого вони належать:";
684  return result;
685  }
686 
687  /*! This is used in LaTeX as the title of the chapter with the
688  * index of all namespaces.
689  */
690  virtual QCString trNamespaceIndex()
691  { return "Алфавітний покажчик простору імен"; }
692 
693  /*! This is used in LaTeX as the title of the chapter containing
694  * the documentation of all namespaces.
695  */
697  { return "Опис простору імен"; }
698 
699 //////////////////////////////////////////////////////////////////////////
700 // new since 0.49-990522
701 //////////////////////////////////////////////////////////////////////////
702 
703  /*! This is used in the documentation before the list of all
704  * namespaces in a file.
705  */
707  { return "Простори імен" ; }
708 
709 //////////////////////////////////////////////////////////////////////////
710 // new since 0.49-990728
711 //////////////////////////////////////////////////////////////////////////
712 
713  /*! This is put at the bottom of a class documentation page and is
714  * followed by a list of files that were used to generate the page.
715  */
717  bool single)
718  { // here s is one of " Class", " Struct" or " Union"
719  // single is true implies a single file
720  QCString result=(QCString)"Документація ";
721  switch(compType)
722  {
723  case ClassDef::Class:
724  if (single) result+="цього класу"; else result+="цих класів";
725  break;
726  case ClassDef::Struct:
727  if (single) result+="цієї структури"; else result+="цих структур";
728  break;
729  case ClassDef::Union:
730  if (single) result+="цього об'єднання"; else result+="цих об'єднань";
731  break;
733  if (single) result+="цього інтерфейсу"; else result+="цих інтерфейсів";
734  break;
735  case ClassDef::Protocol:
736  if (single) result+="цього протоколу"; else result+="цих протоколів";
737  break;
738  case ClassDef::Category:
739  if (single) result+="цієї категорії"; else result+="цих категорій";
740  break;
741  case ClassDef::Exception:
742  if (single) result+="цього винятку"; else result+="цих винятків";
743  break;
744  default:
745  break;
746  }
747  result+=" була створена з файл";
748  if (single) result+="у:"; else result+="ів:";
749  return result;
750  }
751 
752 //////////////////////////////////////////////////////////////////////////
753 // new since 0.49-990901
754 //////////////////////////////////////////////////////////////////////////
755 
756  /*! This is used as the heading text for the retval command. */
757  virtual QCString trReturnValues()
758  { return "Значення, що повертаються"; }
759 
760  /*! This is in the (quick) index as a link to the main page (index.html)
761  */
762  virtual QCString trMainPage()
763  { return "Титульна сторінка"; }
764 
765  /*! This is used in references to page that are put in the LaTeX
766  * documentation. It should be an abbreviation of the word page.
767  */
768  virtual QCString trPageAbbreviation()
769  { return "стор."; }
770 
771 //////////////////////////////////////////////////////////////////////////
772 // new since 0.49-991106
773 //////////////////////////////////////////////////////////////////////////
774 
776  {
777  return "Див. визначення в файлі @1, рядок @0";
778  }
780  {
781  return "Див. визначення в файлі @0";
782  }
783 
784 //////////////////////////////////////////////////////////////////////////
785 // new since 0.49-991205
786 //////////////////////////////////////////////////////////////////////////
787 
788  virtual QCString trDeprecated()
789  {
790  return "Не рекомендовано";
791  }
792 
793 //////////////////////////////////////////////////////////////////////////
794 // new since 1.0.0
795 //////////////////////////////////////////////////////////////////////////
796 
797  /*! this text is put before a collaboration diagram */
798  virtual QCString trCollaborationDiagram(const QCString &clName)
799  {
800  return (QCString)"Діаграма зв'язків класу "+clName+":";
801  }
802  /*! this text is put before an include dependency graph */
803  virtual QCString trInclDepGraph(const QCString &fName)
804  {
805  return QCString("Діаграма включених заголовочних файлів для ")+fName+":";
806  }
807  /*! header that is put before the list of constructor/destructors. */
809  {
810  return "Конструктор(и)";
811  }
812  /*! Used in the file documentation to point to the corresponding sources. */
813  virtual QCString trGotoSourceCode()
814  {
815  return "Див. вихідні тексти.";
816  }
817  /*! Used in the file sources to point to the corresponding documentation. */
818  virtual QCString trGotoDocumentation()
819  {
820  return "Див. документацію.";
821  }
822  /*! Text for the \\pre command */
823  virtual QCString trPrecondition()
824  {
825  return "Передумови";
826  }
827  /*! Text for the \\post command */
828  virtual QCString trPostcondition()
829  {
830  return "Післяумови";
831  }
832  /*! Text for the \\invariant command */
833  virtual QCString trInvariant()
834  {
835  return "Інваріант";
836  }
837  /*! Text shown before a multi-line variable/enum initialization */
838  virtual QCString trInitialValue()
839  {
840  return "Початкові значення";
841  }
842  /*! Text used the source code in the file index */
843  virtual QCString trCode()
844  {
845  return "Вихідні тексти";
846  }
848  {
849  return "Графічна ієрархія класів";
850  }
852  {
853  return "див. графічну ієрархію";
854  }
856  {
857  return "див. текстову ієрархію";
858  }
860  {
861  return "Алфавітний покажчик тематичних описів";
862  }
863 
864 //////////////////////////////////////////////////////////////////////////
865 // new since 1.1.0
866 //////////////////////////////////////////////////////////////////////////
867 
868  virtual QCString trNote()
869  {
870  return "Нотатки";
871  }
872  virtual QCString trPublicTypes()
873  {
874  return "Загальнодоступні типи";
875  }
876  virtual QCString trPublicAttribs()
877  {
878  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
879  {
880  return "Поля даних" ;
881  }
882  else
883  {
884  return "Загальнодоступні атрибути" ;
885  }
886  }
888  {
889  return "Статичні загальнодоступні данні";
890  }
891  virtual QCString trProtectedTypes()
892  {
893  return "Захищені типи";
894  }
895  virtual QCString trProtectedAttribs()
896  {
897  return "Захищені дані";
898  }
900  {
901  return "Статичні захищені дані";
902  }
904  {
905  return "Приватні типи";
906  }
908  {
909  return "Приватні дані";
910  }
912  {
913  return "Приватні статичні дані";
914  }
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  {
925  return "Необхідно зробити";
926  }
927  /*! Used as the header of the todo list */
928  virtual QCString trTodoList()
929  /*??*/
930  {
931  return "Список завдань";
932  }
933 
934 //////////////////////////////////////////////////////////////////////////
935 // new since 1.1.4
936 //////////////////////////////////////////////////////////////////////////
937 
939  {
940  return "Вживається в";
941  }
942  virtual QCString trRemarks()
943  {
944  return "Прим.";
945  }
946  virtual QCString trAttention()
947  {
948  return "Увага";
949  }
950  virtual QCString trInclByDepGraph()
951  {
952  return "Граф файлів, які включають цей файл:";
953  }
954  virtual QCString trSince()
955  /*??*/
956  {
957  return "Починаючи з";
958  }
959 
960 //////////////////////////////////////////////////////////////////////////
961 // new since 1.1.5
962 //////////////////////////////////////////////////////////////////////////
963 
964  /*! title of the graph legend page */
965  virtual QCString trLegendTitle()
966  {
967  return "Легенда";
968  }
969  /*! page explaining how the dot graph's should be interpreted */
971  {
972  return
973  "Позначення, що використовуються у графах.<p>\n"
974  "Розглянемо наступний приклад:\n"
975  "\\code\n"
976  "/*! Невидимий клас через зрізання */\n"
977  "class Invisible { };\n\n"
978  "/*! Обмежений клас, відношення успадкування приховане */\n"
979  "class Truncated : public Invisible { };\n\n"
980  "/* Недокументований клас */\n"
981  "class Undocumented { };\n\n"
982  "/*! Загальнодоступне успадкування */\n"
983  "class PublicBase : public Truncated { };\n\n"
984  "/*! A template class */\n"
985  "template<class T> class Templ { };\n\n"
986  "/*! Захищене успадкування */\n"
987  "class ProtectedBase { };\n\n"
988  "/*! Приватне успадкування */\n"
989  "class PrivateBase { };\n\n"
990  "/*! Клас, що використовується класом Inherited */\n"
991  "class Used { };\n\n"
992  "/*! Клас, що успадковує інші класи */\n"
993  "class Inherited : public PublicBase,\n"
994  " protected ProtectedBase,\n"
995  " private PrivateBase,\n"
996  " public Undocumented,\n"
997  " public Templ<int>\n"
998  "{\n"
999  " private:\n"
1000  " Used *m_usedClass;\n"
1001  "};\n"
1002  "\\endcode\n"
1003  "Таким чином, отримуємо наступний граф:"
1004  "<p><center><img src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1005  "<p>\n"
1006  "Прямокутники в цьому графі мають наступний зміст:\n"
1007  "<ul>\n"
1008  "<li>Заповнений чорний прямокутник відображає структуру або клас, "
1009  "для якого створено граф.\n"
1010  "<li>Прямокутник з чорною межею відображає документовану структуру або клас.\n"
1011  "<li>Прямокутник з сірою межею відображає недокументовану структуру або клас.\n"
1012  "<li>Прямокутник з червоною межею відображає документовану структуру або клас, для яких\n"
1013  " не всі співвідношення успадкування/змісту показані. Граф зрізаниЙ, "
1014  "якщо він не вміщається у вказані межі."
1015  "</ul>\n"
1016  "Стрілки мають наступний зміст:\n"
1017  "<ul>\n"
1018  "<li>Темносиня стрілка відображає відношення загальнодоступного успадкування "
1019  "між двома класами.\n"
1020  "<li>Темнозелена стрілка використовується при захищеному успадкуванні.\n"
1021  "<li>Темночервона стрілка використовується при приватному успадкуванні.\n"
1022  "<li>Пурпурна стрілка використовується, якщо клас міститься в"
1023  "іншому класі або ним використовується."
1024  "Стрілка етикетується змінною, "
1025  "через яку відбувається доступ до вказаної структури або класу. \n"
1026  "</ul>\n";
1027  }
1028  /*! text for the link to the legend page */
1029  virtual QCString trLegend()
1030  {
1031  return "див. легенду";
1032  }
1033 
1034 //////////////////////////////////////////////////////////////////////////
1035 // new since 1.2.0
1036 //////////////////////////////////////////////////////////////////////////
1037 
1038  /*! Used as a marker that is put before a test item */
1039  virtual QCString trTest()
1040  {
1041  return "Тест";
1042  }
1043  /*! Used as the header of the test list */
1044  virtual QCString trTestList()
1045  {
1046  return "Список тестів";
1047  }
1048 
1049 //////////////////////////////////////////////////////////////////////////
1050 // new since 1.2.2
1051 //////////////////////////////////////////////////////////////////////////
1052 
1053  /*! Used as a section header for IDL properties */
1054  virtual QCString trProperties()
1055  {
1056  return "Властивості";
1057  }
1058  /*! Used as a section header for IDL property documentation */
1060  {
1061  return "Повний список властивостей";
1062  }
1063 
1064 //////////////////////////////////////////////////////////////////////////
1065 // new since 1.2.4
1066 //////////////////////////////////////////////////////////////////////////
1067 
1068  /*! Used for Java classes in the summary section of Java packages */
1069  virtual QCString trClasses()
1070  {
1071  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1072  {
1073  return "Структури даних" ;
1074  }
1075  else
1076  {
1077  return "Класи" ;
1078  }
1079  }
1080  /*! Used as the title of a Java package */
1081  virtual QCString trPackage(const QCString &name)
1082  {
1083  return QCString("Пакет ")+name;
1084  }
1085  /*! Title of the package index page */
1086  virtual QCString trPackageList()
1087  {
1088  return "Повний список пакетів";
1089  }
1090  /*! The description of the package index page */
1092  {
1093  return "Повний список документованих пакетів.";
1094  }
1095  /*! The link name in the Quick links header for each page */
1096  virtual QCString trPackages()
1097  {
1098  return "Пакети";
1099  }
1100  /*! Text shown before a multi-line define */
1101  virtual QCString trDefineValue()
1102  {
1103  return "Макровизначення:";
1104  }
1105 
1106 //////////////////////////////////////////////////////////////////////////
1107 // new since 1.2.5
1108 //////////////////////////////////////////////////////////////////////////
1109 
1110  /*! Used as a marker that is put before a \\bug item */
1111  virtual QCString trBug()
1112  {
1113  return "Дефект";
1114  }
1115  /*! Used as the header of the bug list */
1116  virtual QCString trBugList()
1117  {
1118  return "Список дефектів";
1119  }
1120 
1121 //////////////////////////////////////////////////////////////////////////
1122 // new since 1.2.6
1123 //////////////////////////////////////////////////////////////////////////
1124  /*! Used as ansicpg for RTF file */
1125  virtual QCString trRTFansicp()
1126  {
1127  return "1251";
1128  }
1129  /*! Used as ansicpg for RTF fcharset */
1130  virtual QCString trRTFCharSet()
1131  {
1132  return "204";
1133  }
1134  /*! Used as header RTF general index */
1135  virtual QCString trRTFGeneralIndex()
1136  {
1137  return "Предметний покажчик";
1138  }
1139 
1140  /*! This is used for translation of the word that will possibly
1141  * be followed by a single name or by a list of names
1142  * of the category.
1143  */
1144  virtual QCString trClass(bool first_capital, bool singular)
1145  {
1146  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1147  {
1148  QCString result((first_capital ? "Структури даних" : "структури даних"));
1149  return result;
1150  }
1151  else
1152  {
1153  QCString result((first_capital ? "Клас" : "клас"));
1154  if(!singular) result+="и";
1155  return result;
1156  }
1157  }
1158 
1159  /*! This is used for translation of the word that will possibly
1160  * be followed by a single name or by a list of names
1161  * of the category.
1162  */
1163  virtual QCString trFile(bool first_capital, bool singular)
1164  {
1165  QCString result((first_capital ? "Файл" : "файл"));
1166  if (!singular) result+="и";
1167  return result;
1168  }
1169 
1170  /*! This is used for translation of the word that will possibly
1171  * be followed by a single name or by a list of names
1172  * of the category.
1173  */
1174  virtual QCString trNamespace(bool first_capital, bool singular)
1175  {
1176  QCString result((first_capital ? "Прост" : "прост"));
1177  result+=(singular?"ір імен":"ори імен");
1178  return result;
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 trGroup(bool first_capital, bool singular)
1186  {
1187  QCString result((first_capital ? "Груп" : "груп"));
1188  result+=(singular ? "а" : "и");
1189  return result;
1190  }
1191 
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 trPage(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 trMember(bool first_capital, bool singular)
1208  {
1209  QCString result((first_capital ? "Елемент" : "елемент"));
1210  if (!singular) result+="и";
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 trGlobal(bool first_capital, bool singular)
1219  {
1220  QCString result((first_capital ? "Глобальн" : "глобальн"));
1221  result+=(singular ? "ий" : "і");
1222  return result;
1223  }
1224 
1225 //////////////////////////////////////////////////////////////////////////
1226 // new since 1.2.7
1227 //////////////////////////////////////////////////////////////////////////
1228 
1229  /*! This text is generated when the \\author command is used and
1230  * for the author section in man pages. */
1231  virtual QCString trAuthor(bool first_capital, bool singular)
1232  {
1233  QCString result((first_capital ? "Автор" : "автор"));
1234  if (!singular) result+="и";
1235  return result;
1236  }
1237 
1238 //////////////////////////////////////////////////////////////////////////
1239 // new since 1.2.11
1240 //////////////////////////////////////////////////////////////////////////
1241 
1242  /*! This text is put before the list of members referenced by a member
1243  */
1244  virtual QCString trReferences()
1245  {
1246  return "Використовує";
1247  }
1248 
1249 //////////////////////////////////////////////////////////////////////////
1250 // new since 1.2.13
1251 //////////////////////////////////////////////////////////////////////////
1252 
1253  /*! used in member documentation blocks to produce a list of
1254  * members that are implemented by this one.
1255  */
1256  virtual QCString trImplementedFromList(int numEntries)
1257  {
1258  return "Реалізує " + trWriteList(numEntries) + ".";
1259  }
1261  /*! used in member documentation blocks to produce a list of
1262  * all members that implement this abstract member.
1263  */
1264  virtual QCString trImplementedInList(int numEntries)
1265  {
1266  return "Реалізує в " + trWriteList(numEntries) + ".";
1267  }
1268 
1269 //////////////////////////////////////////////////////////////////////////
1270 // new since 1.2.16
1271 //////////////////////////////////////////////////////////////////////////
1273  /*! used in RTF documentation as a heading for the Table
1274  * of Contents.
1275  */
1276  virtual QCString trRTFTableOfContents()
1277  {
1278  return "Зміст";
1279  }
1281 //////////////////////////////////////////////////////////////////////////
1282 // new since 1.2.17
1283 //////////////////////////////////////////////////////////////////////////
1284 
1285  /*! Used as the header of the list of item that have been
1286  * flagged deprecated
1287  */
1288  virtual QCString trDeprecatedList()
1289  {
1290  return "Застарілі елементи";
1291  }
1293 //////////////////////////////////////////////////////////////////////////
1294 // new since 1.2.18
1295 //////////////////////////////////////////////////////////////////////////
1296 
1297  /*! Used as a header for declaration section of the events found in
1298  * a C# program
1299  */
1300  virtual QCString trEvents()
1301  {
1302  return "Події";
1303  }
1305  /*! Header used for the documentation section of a class' events. */
1306  virtual QCString trEventDocumentation()
1307  {
1308  return "Документація подій";
1309  }
1310 
1311 //////////////////////////////////////////////////////////////////////////
1312 // new since 1.3
1313 //////////////////////////////////////////////////////////////////////////
1314 
1315  /*! Used as a heading for a list of Java class types with package scope.
1316  */
1317  virtual QCString trPackageTypes()
1318  {
1319  return "Типи пакетів";
1320  }
1321 
1322  /*! Used as a heading for a list of Java class functions with package
1323  * scope.
1324  */
1325  virtual QCString trPackageMembers()
1326  {
1327  return "Функції пакетів";
1328  }
1329 
1330  /*! Used as a heading for a list of static Java class functions with
1331  * package scope.
1332  */
1334  {
1335  return "Статичні функцію пакетів";
1336  }
1337 
1338  /*! Used as a heading for a list of Java class variables with package
1339  * scope.
1340  */
1342  {
1343  return "Атрибути пакетів";
1344  }
1345 
1346  /*! Used as a heading for a list of static Java class variables with
1347  * package scope.
1348  */
1350  {
1351  return "Статичні атрибути пакетів";
1352  }
1353 
1354 //////////////////////////////////////////////////////////////////////////
1355 // new since 1.3.1
1356 //////////////////////////////////////////////////////////////////////////
1358  /*! Used in the quick index of a class/file/namespace member list page
1359  * to link to the unfiltered list of all members.
1360  */
1361  virtual QCString trAll()
1362  {
1363  return "Всі";
1364  }
1365  /*! Put in front of the call graph for a function. */
1366  virtual QCString trCallGraph()
1367  {
1368  return "Граф всіх викликів цієї функції:";
1369  }
1370 
1371 //////////////////////////////////////////////////////////////////////////
1372 // new since 1.3.3
1373 //////////////////////////////////////////////////////////////////////////
1374 
1375  /*! This string is used as the title for the page listing the search
1376  * results.
1377  */
1378  virtual QCString trSearchResultsTitle()
1379  {
1380  return "Результати пошуку";
1381  }
1382  /*! This string is put just before listing the search results. The
1383  * text can be different depending on the number of documents found.
1384  * Inside the text you can put the special marker $num to insert
1385  * the number representing the actual number of search results.
1386  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1387  * value 2 represents 2 or more matches. HTML markup is allowed inside
1388  * the returned string.
1389  */
1390  virtual QCString trSearchResults(int numDocuments)
1391  {
1392  if (numDocuments==0)
1393  {
1394  return "Не знайдено документів відповідно до вашого запиту.";
1395  }
1396  else if (numDocuments==1)
1397  {
1398  return "Було знайдено <b>1</b> документ відповідно до вашого запиту.";
1399  }
1400  else
1401  {
1402  return "Було знайдено <b>$num</b> документів відповідно до вашого запиту. "
1403  "Найкращі відповідності показано спочатку.";
1404  }
1405  }
1406  /*! This string is put before the list of matched words, for each search
1407  * result. What follows is the list of words that matched the query.
1408  */
1409  virtual QCString trSearchMatches()
1410  {
1411  return "Відповідність:";
1412  }
1413 
1414 //////////////////////////////////////////////////////////////////////////
1415 // new since 1.3.8
1416 //////////////////////////////////////////////////////////////////////////
1417 
1418  /*! This is used in HTML as the title of page with source code for file filename
1419  */
1420  virtual QCString trSourceFile(QCString& filename)
1421  {
1422  return "Текст програми "+filename;
1423  }
1424 
1425 //////////////////////////////////////////////////////////////////////////
1426 // new since 1.3.9
1427 //////////////////////////////////////////////////////////////////////////
1428 
1429  /*! This is used as the name of the chapter containing the directory
1430  * hierarchy.
1431  */
1432  virtual QCString trDirIndex()
1433  { return "Дерево каталогів"; }
1434 
1435  /*! This is used as the name of the chapter containing the documentation
1436  * of the directories.
1437  */
1438  virtual QCString trDirDocumentation()
1439  { return "Документація каталогів"; }
1440 
1441  /*! This is used as the title of the directory index and also in the
1442  * Quick links of a HTML page, to link to the directory hierarchy.
1443  */
1444  virtual QCString trDirectories()
1445  { return "Каталоги"; }
1446 
1447  /*! This returns a sentences that introduces the directory hierarchy.
1448  * and the fact that it is sorted alphabetically per level
1449  */
1450  virtual QCString trDirDescription()
1451  { return "Дерево каталогів впорядковано наближено "
1452  "до алфавіту:";
1453  }
1455  /*! This returns the title of a directory page. The name of the
1456  * directory is passed via \a dirName.
1457  */
1458  virtual QCString trDirReference(const QCString &dirName)
1459  { QCString result="Довідник каталогу "; result+=dirName; return result; }
1461  /*! This returns the word directory with or without starting capital
1462  * (\a first_capital) and in sigular or plural form (\a singular).
1463  */
1464  virtual QCString trDir(bool, bool singular)
1465  {
1466  QCString result("Каталог");
1467  if (!singular) result+="и";
1468  return result;
1469  }
1470 
1471 //////////////////////////////////////////////////////////////////////////
1472 // new since 1.4.1
1473 //////////////////////////////////////////////////////////////////////////
1475  /*! This text is added to the documentation when the \\overload command
1476  * is used for a overloaded function.
1477  */
1478  virtual QCString trOverloadText()
1479  {
1480  return "Це перезавантажуваний метод, "
1481  "ввкдкний для зручності. Він відрізняється від "
1482  "описаної вище функції лише списком аргуметнів.";
1483  }
1484 
1485 //////////////////////////////////////////////////////////////////////////
1486 // new since 1.4.6
1487 //////////////////////////////////////////////////////////////////////////
1488 
1489  /*! This is used to introduce a caller (or called-by) graph */
1490  virtual QCString trCallerGraph()
1491  {
1492  return "Граф викликів для цієї функції:";
1493  }
1495  /*! This is used in the documentation of a file/namespace before the list
1496  * of documentation blocks for enumeration values
1497  */
1499  { return "Документація переліку"; }
1500 
1501 //////////////////////////////////////////////////////////////////////////
1502 // new since 1.5.4 (mainly for Fortran)
1503 //////////////////////////////////////////////////////////////////////////
1504 
1505  /*! header that is put before the list of member subprograms (Fortran). */
1507  { return "Документація функції/підпрограми"; }
1508 
1509  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1511  { return "Список типів даних"; }
1512 
1513  /*! This is put above each page as a link to all members of compounds (Fortran). */
1515  { return "Поля даних"; }
1516 
1517  /*! This is an introduction to the annotated compound list (Fortran). */
1519  { return "Типи даних з коротким описом:"; }
1520 
1521  /*! This is an introduction to the page with all data types (Fortran). */
1523  {
1524  QCString result="Список усіх ";
1525  if (!extractAll)
1526  {
1527  result+="задокументованих ";
1528  }
1529  result+="елементів типів даних";
1530  result+=" з посиланнями на ";
1531  if (!extractAll)
1532  {
1533  result+="документацію структури даних кожного елемента";
1534  }
1535  else
1536  {
1537  result+="типи даних, до яких вони належать:";
1538  }
1539  return result;
1540  }
1541 
1542  /*! This is used in LaTeX as the title of the chapter with the
1543  * annotated compound index (Fortran).
1544  */
1546  { return "Список типів даних"; }
1547 
1548  /*! This is used in LaTeX as the title of the chapter containing
1549  * the documentation of all data types (Fortran).
1550  */
1551  virtual QCString trTypeDocumentation()
1552  { return "Документація типів даних"; }
1553 
1554  /*! This is used in the documentation of a file as a header before the
1555  * list of (global) subprograms (Fortran).
1556  */
1557  virtual QCString trSubprograms()
1558  { return "Функції/підпрограми"; }
1559 
1560  /*! This is used in the documentation of a file/namespace before the list
1561  * of documentation blocks for subprograms (Fortran)
1562  */
1564  { return "Документація функцій/підпрограм"; }
1565 
1566  /*! This is used in the documentation of a file/namespace/group before
1567  * the list of links to documented compounds (Fortran)
1568  */
1569  virtual QCString trDataTypes()
1570  { return "Типи даних"; }
1571 
1572  /*! used as the title of page containing all the index of all modules (Fortran). */
1574  { return "Список модулів"; }
1575 
1576  /*! used as an introduction to the modules list (Fortran) */
1577  virtual QCString trModulesListDescription(bool extractAll)
1578  {
1579  QCString result="Список усіх ";
1580  if (!extractAll) result+="задокументованих ";
1581  result+="модулів з коротким описом:";
1582  return result;
1583  }
1584 
1585  /*! used as the title of the HTML page of a module/type (Fortran) */
1586  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1587  ClassDef::CompoundType compType,
1588  bool isTemplate)
1589  {
1590  QCString result=(QCString)clName;
1591  if (isTemplate)
1592  {
1593  switch(compType)
1594  {
1595  case ClassDef::Class: result+=" Модуль"; break;
1596  case ClassDef::Struct: result+=" Тип"; break;
1597  case ClassDef::Union: result+=" Об'єднання"; break;
1598  case ClassDef::Interface: result+=" Інтерфейс"; break;
1599  case ClassDef::Protocol: result+=" Протокол"; break;
1600  case ClassDef::Category: result+=" Категорія"; break;
1601  case ClassDef::Exception: result+=" Виняток"; break;
1602  default: break;
1603  }
1604  }
1605  else
1606  {
1607  result+=" Шаблон ";
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  }
1620  return result;
1621  }
1622  /*! used as the title of the HTML page of a module (Fortran) */
1623  virtual QCString trModuleReference(const QCString &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) */
1631  virtual QCString trModulesMembers()
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  */
1654  virtual QCString trModulesIndex()
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  result+=(singular? "ь": "і");
1665  return result;
1666  }
1667 
1668  /*! This is put at the bottom of a module documentation page and is
1669  * followed by a list of files that were used to generate the page.
1670  */
1672  bool single)
1673  {
1674  // single is true implies a single file
1675  QCString result=(QCString)"Документацію для ";
1676  switch(compType)
1677  {
1678  case ClassDef::Class: result+="цього модуля"; break;
1679  case ClassDef::Struct: result+="цього типу"; break;
1680  case ClassDef::Union: result+="цього об'єднання"; break;
1681  case ClassDef::Interface: result+="цього інтерфейсу"; break;
1682  case ClassDef::Protocol: result+="цього протоколу"; break;
1683  case ClassDef::Category: result+="цієї категорії"; break;
1684  case ClassDef::Exception: result+="цього винятку"; break;
1685  default: break;
1686  }
1687  result+=" було згенеровано з ";
1688  if (single) result+="наступного файлу:"; else result+="наступних файлів:";
1689  return result;
1690  }
1691 
1692  /*! This is used for translation of the word that will possibly
1693  * be followed by a single name or by a list of names
1694  * of the category.
1695  */
1696  virtual QCString trType(bool first_capital, bool singular)
1697  {
1698  QCString result((first_capital ? "Тип" : "тип"));
1699  if (!singular) result+="и";
1700  return result;
1701  }
1702 
1703  /*! This is used for translation of the word that will possibly
1704  * be followed by a single name or by a list of names
1705  * of the category.
1706  */
1707  virtual QCString trSubprogram(bool first_capital, bool singular)
1708  {
1709  QCString result((first_capital ? "Підпрограм" : "підпрограм"));
1710  result+= (singular? "а": "и");
1711  return result;
1712  }
1713 
1714  /*! C# Type Constraint list */
1715  virtual QCString trTypeConstraints()
1716  {
1717  return "Обмеження типу";
1718  }
1719 
1720 //////////////////////////////////////////////////////////////////////////
1721 // new since 1.6.0 (mainly for the new search engine)
1722 //////////////////////////////////////////////////////////////////////////
1724  /*! directory relation for \a name */
1725  virtual QCString trDirRelation(const QCString &name)
1726  {
1727  return "Зв'язок з "+QCString(name);
1728  }
1729 
1730  /*! Loading message shown when loading search results */
1732  {
1733  return "Завантаження...";
1734  }
1735 
1736  /*! Label used for search results in the global namespace */
1737  virtual QCString trGlobalNamespace()
1738  {
1739  return "Глобальний простір імен";
1740  }
1742  /*! Message shown while searching */
1743  virtual QCString trSearching()
1744  {
1745  return "Пошук...";
1746  }
1748  /*! Text shown when no search results are found */
1749  virtual QCString trNoMatches()
1750  {
1751  return "Нічого не знайдено";
1752  }
1754 //////////////////////////////////////////////////////////////////////////
1755 // new since 1.6.3 (missing items for the directory pages)
1756 //////////////////////////////////////////////////////////////////////////
1757 
1758  /*! when clicking a directory dependency label, a page with a
1759  * table is shown. The heading for the first column mentions the
1760  * source file that has a relation to another file.
1761  */
1762  virtual QCString trFileIn(const QCString &name)
1763  {
1764  return (QCString)"Файл у "+name;
1765  }
1766 
1767  /*! when clicking a directory dependency label, a page with a
1768  * table is shown. The heading for the second column mentions the
1769  * destination file that is included.
1770  */
1771  virtual QCString trIncludesFileIn(const QCString &name)
1772  {
1773  return (QCString)"Включає файли в "+name;
1774  }
1775 
1776  /** Compiles a date string.
1777  * @param year Year in 4 digits
1778  * @param month Month of the year: 1=January
1779  * @param day Day of the Month: 1..31
1780  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1781  * @param hour Hour of the day: 0..23
1782  * @param minutes Minutes in the hour: 0..59
1783  * @param seconds Seconds within the minute: 0..59
1784  * @param includeTime Include time in the result string?
1785  */
1786  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1787  int hour,int minutes,int seconds,
1788  bool includeTime)
1789  {
1790  static const char *days[] = { "Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота","Неділя" };
1791  static const char *months[] = { "січня","лютого","березня","квітня","травня","червня","липня","серпня","вересня","жотня","листопада","грудня" };
1792  QCString sdate;
1793  sdate.sprintf("%s, %d %s %d",days[dayOfWeek-1],day,months[month-1],year);
1794  if (includeTime)
1795  {
1796  QCString stime;
1797  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1798  sdate+=stime;
1799  }
1800  return sdate;
1801  }
1803 //////////////////////////////////////////////////////////////////////////
1804 // new since 1.7.5
1805 //////////////////////////////////////////////////////////////////////////
1806 
1807  /*! Header for the page with bibliographic citations */
1808  virtual QCString trCiteReferences()
1809  { return "Бібліографічні посилання"; }
1810 
1811  /*! Text for copyright paragraph */
1812  virtual QCString trCopyright()
1813  { return "Копірайт"; }
1814 
1815  /*! Header for the graph showing the directory dependencies */
1816  virtual QCString trDirDepGraph(const QCString &name)
1817  { return QCString("Граф залежностей каталогу для ")+name+":"; }
1818 
1819 //////////////////////////////////////////////////////////////////////////
1820 // new since 1.8.0
1821 //////////////////////////////////////////////////////////////////////////
1822 
1823  /*! Detail level selector shown for hierarchical indices */
1825  { return "рівень елемента"; }
1826 
1827  /*! Section header for list of template parameters */
1829  { return "Параметри шаблона"; }
1830 
1831  /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1832  virtual QCString trAndMore(const QCString &number)
1833  { return "і ще "+number+"..."; }
1834 
1835  /*! Used file list for a Java enum */
1836  virtual QCString trEnumGeneratedFromFiles(bool single)
1837  { QCString result = "Документацію для цього переліку булозгенеровано з ";
1838  result += (single? "наступного файла": "наступних файлів");
1839  result+=":";
1840  return result;
1841  }
1842 
1843  /*! Header of a Java enum page (Java enums are represented as classes). */
1844  virtual QCString trEnumReference(const QCString &name)
1845  { return QCString(name)+" Перелік"; }
1846 
1847  /*! Used for a section containing inherited members */
1848  virtual QCString trInheritedFrom(const QCString &members,const QCString &what)
1849  { return QCString(members)+" успадковано з "+what; }
1850 
1851  /*! Header of the sections with inherited members specific for the
1852  * base class(es)
1853  */
1855  { return "Додаткові успадковані елементи"; }
1856 
1857 //////////////////////////////////////////////////////////////////////////
1858 // new since 1.8.2
1859 //////////////////////////////////////////////////////////////////////////
1861  /*! Used as a tooltip for the toggle button that appears in the
1862  * navigation tree in the HTML output when GENERATE_TREEVIEW is
1863  * enabled. This tooltip explains the meaning of the button.
1864  */
1865  virtual QCString trPanelSynchronisationTooltip(bool enable)
1866  {
1867  QCString opt = enable ? "дозволити" : "заборонити";
1868  return "клацніть мишкою, щоб "+opt+" синхронізацію панелі";
1869  }
1871  /*! Used in a method of an Objective-C class that is declared in a
1872  * a category. Note that the @1 marker is required and is replaced
1873  * by a link.
1874  */
1875  virtual QCString trProvidedByCategory()
1876  {
1877  return "Забезпечено категорією @0.";
1878  }
1879 
1880  /*! Used in a method of an Objective-C category that extends a class.
1881  * Note that the @1 marker is required and is replaced by a link to
1882  * the class method.
1883  */
1884  virtual QCString trExtendsClass()
1885  {
1886  return "Розширює клас @0.";
1887  }
1888 
1889  /*! Used as the header of a list of class methods in Objective-C.
1890  * These are similar to static public member functions in C++.
1891  */
1892  virtual QCString trClassMethods()
1893  {
1894  return "Методи класу";
1895  }
1896 
1897  /*! Used as the header of a list of instance methods in Objective-C.
1898  * These are similar to public member functions in C++.
1899  */
1901  {
1902  return "Методи об'єкта";
1903  }
1904 
1905  /*! Used as the header of the member functions of an Objective-C class.
1906  */
1908  {
1909  return "Документація метода";
1910  }
1911 
1912  /*! Used as the title of the design overview picture created for the
1913  * VHDL output.
1914  */
1915  virtual QCString trDesignOverview()
1916  {
1917  return "Огляд дизайну проекту";
1918  }
1919 
1920 };
1921 
1922 #endif
TranslatorUkrainian::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_ua.h:1712
TranslatorUkrainian::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_ua.h:374
TranslatorUkrainian::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_ua.h:791
TranslatorUkrainian::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_ua.h:66
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorUkrainian::trDeprecated
virtual QCString trDeprecated()
Definition: translator_ua.h:804
TranslatorUkrainian::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_ua.h:296
TranslatorUkrainian::trEnumGeneratedFromFiles
virtual QCString trEnumGeneratedFromFiles(bool single)
Definition: translator_ua.h:1852
TranslatorUkrainian::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_ua.h:923
TranslatorUkrainian::trInitialValue
virtual QCString trInitialValue()
Definition: translator_ua.h:854
TranslatorUkrainian::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_ua.h:1741
TranslatorUkrainian::trClasses
virtual QCString trClasses()
Definition: translator_ua.h:1085
TranslatorUkrainian::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_ua.h:82
TranslatorUkrainian::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_ua.h:657
TranslatorUkrainian::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_ua.h:834
TranslatorUkrainian::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_ua.h:141
TranslatorUkrainian::trExtendsClass
virtual QCString trExtendsClass()
Definition: translator_ua.h:1900
TranslatorUkrainian::trSignals
virtual QCString trSignals()
Definition: translator_ua.h:612
TranslatorUkrainian::trDefines
virtual QCString trDefines()
Definition: translator_ua.h:384
TranslatorUkrainian::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_ua.h:292
TranslatorUkrainian::trBug
virtual QCString trBug()
Definition: translator_ua.h:1127
TranslatorUkrainian::trRemarks
virtual QCString trRemarks()
Definition: translator_ua.h:958
TranslatorUkrainian::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_ua.h:597
TranslatorUkrainian::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_ua.h:954
TranslatorUkrainian::trBugList
virtual QCString trBugList()
Definition: translator_ua.h:1132
TranslatorUkrainian::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_ua.h:1201
TranslatorUkrainian::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_ua.h:1687
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorUkrainian::trPageIndex
virtual QCString trPageIndex()
Definition: translator_ua.h:875
TranslatorUkrainian::trTodoList
virtual QCString trTodoList()
Definition: translator_ua.h:944
TranslatorUkrainian::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_ua.h:819
TranslatorUkrainian::trEnumReference
virtual QCString trEnumReference(const QCString &name)
Definition: translator_ua.h:1860
TranslatorUkrainian::trTodo
virtual QCString trTodo()
Definition: translator_ua.h:938
TranslatorUkrainian::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_ua.h:100
TranslatorUkrainian::trInstanceMethods
virtual QCString trInstanceMethods()
Definition: translator_ua.h:1916
TranslatorUkrainian::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_ua.h:221
TranslatorUkrainian::trPrecondition
virtual QCString trPrecondition()
Definition: translator_ua.h:839
TranslatorUkrainian::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_ua.h:1514
TranslatorUkrainian::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_ua.h:550
TranslatorUkrainian::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_ua.h:78
TranslatorUkrainian::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_ua.h:1639
TranslatorUkrainian::trDir
virtual QCString trDir(bool, bool singular)
Definition: translator_ua.h:1480
TranslatorUkrainian::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_ua.h:610
TranslatorUkrainian::trExamples
virtual QCString trExamples()
Definition: translator_ua.h:200
TranslatorUkrainian::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_ua.h:1341
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorUkrainian::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_ua.h:1454
TranslatorUkrainian::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_ua.h:1179
TranslatorUkrainian::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_ua.h:784
TranslatorUkrainian::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_ua.h:1406
TranslatorUkrainian::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_ua.h:681
TranslatorUkrainian::trProperties
virtual QCString trProperties()
Definition: translator_ua.h:1070
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorUkrainian::trMainPage
virtual QCString trMainPage()
Definition: translator_ua.h:778
TranslatorUkrainian::trAdditionalInheritedMembers
virtual QCString trAdditionalInheritedMembers()
Definition: translator_ua.h:1870
TranslatorUkrainian::idLanguage
virtual QCString idLanguage()
Definition: translator_ua.h:42
TranslatorUkrainian::trDateTime
virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
Compiles a date string.
Definition: translator_ua.h:1802
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorUkrainian::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_ua.h:903
TranslatorUkrainian::trModulesList
virtual QCString trModulesList()
Definition: translator_ua.h:1589
TranslatorUkrainian::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_ua.h:1304
TranslatorUkrainian::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_ua.h:320
TranslatorUkrainian::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_ua.h:46
TranslatorUkrainian::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_ua.h:426
TranslatorUkrainian::trDetailLevel
virtual QCString trDetailLevel()
Definition: translator_ua.h:1840
TranslatorUkrainian::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_ua.h:1824
TranslatorUkrainian::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_ua.h:795
TranslatorUkrainian::trMore
virtual QCString trMore()
Definition: translator_ua.h:95
TranslatorUkrainian::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_ua.h:981
TranslatorUkrainian::trDesignOverview
virtual QCString trDesignOverview()
Definition: translator_ua.h:1931
TranslatorUkrainian::trCode
virtual QCString trCode()
Definition: translator_ua.h:859
TranslatorUkrainian::trMethodDocumentation
virtual QCString trMethodDocumentation()
Definition: translator_ua.h:1923
TranslatorUkrainian::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_ua.h:1602
TranslatorUkrainian::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_ua.h:1333
TranslatorUkrainian::trDirectories
virtual QCString trDirectories()
Definition: translator_ua.h:1460
TranslatorUkrainian::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_ua.h:1651
TranslatorUkrainian::trEnumName
virtual QCString trEnumName()
Definition: translator_ua.h:133
TranslatorUkrainian::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_ua.h:1190
TranslatorUkrainian::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_ua.h:616
TranslatorUkrainian::trProvidedByCategory
virtual QCString trProvidedByCategory()
Definition: translator_ua.h:1891
TranslatorUkrainian::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_ua.h:558
TranslatorUkrainian::trPackageList
virtual QCString trPackageList()
Definition: translator_ua.h:1102
TranslatorUkrainian::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_ua.h:1234
TranslatorUkrainian::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_ua.h:265
TranslatorUkrainian::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_ua.h:1832
TranslatorUkrainian::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_ua.h:414
TranslatorUkrainian::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_ua.h:341
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorUkrainian::trDataTypes
virtual QCString trDataTypes()
Definition: translator_ua.h:1585
TranslatorUkrainian::trSubprograms
virtual QCString trSubprograms()
Definition: translator_ua.h:1573
TranslatorUkrainian::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_ua.h:1534
TranslatorUkrainian::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_ua.h:1474
TranslatorUkrainian::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_ua.h:58
TranslatorUkrainian::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_ua.h:622
TranslatorUkrainian::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_ua.h:1506
TranslatorUkrainian::trTest
virtual QCString trTest()
Definition: translator_ua.h:1055
TranslatorUkrainian::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_ua.h:618
TranslatorUkrainian::trEvents
virtual QCString trEvents()
Definition: translator_ua.h:1316
TranslatorUkrainian::trReferences
virtual QCString trReferences()
Definition: translator_ua.h:1260
TranslatorUkrainian::trCallGraph
virtual QCString trCallGraph()
Definition: translator_ua.h:1382
TranslatorUkrainian::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_ua.h:907
TranslatorUkrainian::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_ua.h:1247
TranslatorUkrainian::trDirIndex
virtual QCString trDirIndex()
Definition: translator_ua.h:1448
TranslatorUkrainian::trDefineValue
virtual QCString trDefineValue()
Definition: translator_ua.h:1117
TranslatorUkrainian::trReturns
virtual QCString trReturns()
Definition: translator_ua.h:501
TranslatorUkrainian::trVariables
virtual QCString trVariables()
Definition: translator_ua.h:408
TranslatorUkrainian::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_ua.h:1322
TranslatorUkrainian::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_ua.h:1151
TranslatorUkrainian::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_ua.h:314
TranslatorUkrainian::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_ua.h:125
TranslatorUkrainian::trDate
virtual QCString trDate()
Definition: translator_ua.h:497
TranslatorUkrainian::trEnumValue
virtual QCString trEnumValue()
Definition: translator_ua.h:137
TranslatorUkrainian::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_ua.h:1075
TranslatorUkrainian::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_ua.h:1753
TranslatorAdapter_1_8_4
Definition: translator_adapter.h:203
TranslatorUkrainian::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_ua.h:378
TranslatorUkrainian::trNamespaces
virtual QCString trNamespaces()
Definition: translator_ua.h:722
TranslatorUkrainian::trEnumerations
virtual QCString trEnumerations()
Definition: translator_ua.h:396
TranslatorUkrainian::trClassMethods
virtual QCString trClassMethods()
Definition: translator_ua.h:1908
TranslatorUkrainian::trInvariant
virtual QCString trInvariant()
Definition: translator_ua.h:849
TranslatorUkrainian::trTemplateParameters
virtual QCString trTemplateParameters()
Definition: translator_ua.h:1844
TranslatorUkrainian::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_ua.h:208
TranslatorUkrainian::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_ua.h:732
TranslatorUkrainian::trFileMembers
virtual QCString trFileMembers()
Definition: translator_ua.h:188
TranslatorUkrainian::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_ua.h:153
TranslatorUkrainian::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_ua.h:114
TranslatorUkrainian::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_ua.h:915
TranslatorUkrainian::trTypedefs
virtual QCString trTypedefs()
Definition: translator_ua.h:390
TranslatorUkrainian::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_ua.h:194
TranslatorUkrainian::trSearching
virtual QCString trSearching()
Definition: translator_ua.h:1759
TranslatorUkrainian::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_ua.h:438
TranslatorUkrainian::trSearch
virtual QCString trSearch()
Definition: translator_ua.h:204
TranslatorUkrainian::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_ua.h:479
TranslatorUkrainian::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_ua.h:888
TranslatorUkrainian::trPackages
virtual QCString trPackages()
Definition: translator_ua.h:1112
TranslatorUkrainian::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_ua.h:1561
TranslatorUkrainian::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_ua.h:1141
TranslatorUkrainian::trPanelSynchronisationTooltip
virtual QCString trPanelSynchronisationTooltip(bool enable)
Definition: translator_ua.h:1881
TranslatorUkrainian::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_ua.h:829
TranslatorUkrainian::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_ua.h:525
TranslatorUkrainian::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_ua.h:1223
TranslatorUkrainian::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_ua.h:966
TranslatorUkrainian::trInheritedFrom
virtual QCString trInheritedFrom(const QCString &members, const QCString &what)
Definition: translator_ua.h:1864
TranslatorUkrainian::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_ua.h:238
TranslatorUkrainian::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_ua.h:1731
TranslatorUkrainian::trPostcondition
virtual QCString trPostcondition()
Definition: translator_ua.h:844
TranslatorUkrainian::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_ua.h:1212
TranslatorUkrainian::trAll
virtual QCString trAll()
Definition: translator_ua.h:1377
TranslatorUkrainian::trSince
virtual QCString trSince()
Definition: translator_ua.h:970
TranslatorUkrainian::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_ua.h:368
TranslatorUkrainian::trCopyright
virtual QCString trCopyright()
Definition: translator_ua.h:1828
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorUkrainian::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_ua.h:1107
TranslatorUkrainian::trFileIndex
virtual QCString trFileIndex()
Definition: translator_ua.h:335
TranslatorUkrainian::trFunctions
virtual QCString trFunctions()
Definition: translator_ua.h:402
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorUkrainian::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_ua.h:1778
TranslatorUkrainian::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_ua.h:1425
TranslatorUkrainian::trFileList
virtual QCString trFileList()
Definition: translator_ua.h:170
TranslatorUkrainian::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_ua.h:432
TranslatorUkrainian::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_ua.h:867
TranslatorUkrainian::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_ua.h:814
TranslatorUkrainian::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_ua.h:469
TranslatorUkrainian::trExceptions
virtual QCString trExceptions()
Definition: translator_ua.h:513
TranslatorUkrainian::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_ua.h:624
TranslatorUkrainian::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_ua.h:603
TranslatorUkrainian::trReturnValues
virtual QCString trReturnValues()
Definition: translator_ua.h:773
TranslatorUkrainian::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_ua.h:1146
TranslatorUkrainian::trCompoundList
virtual QCString trCompoundList()
Definition: translator_ua.h:157
TranslatorUkrainian::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_ua.h:1677
TranslatorUkrainian::trISOLang
virtual QCString trISOLang()
Definition: translator_ua.h:50
TranslatorUkrainian::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_ua.h:620
TranslatorUkrainian::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_ua.h:1097
TranslatorUkrainian::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_ua.h:1723
TranslatorUkrainian::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_ua.h:608
TranslatorUkrainian::trLegend
virtual QCString trLegend()
Definition: translator_ua.h:1045
TranslatorUkrainian::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_ua.h:1526
TranslatorUkrainian::trTestList
virtual QCString trTestList()
Definition: translator_ua.h:1060
TranslatorUkrainian::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_ua.h:1579
TranslatorUkrainian::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_ua.h:1349
TranslatorUkrainian::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_ua.h:1787
TranslatorUkrainian::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_ua.h:347
TranslatorUkrainian::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_ua.h:614
TranslatorUkrainian::trVersion
virtual QCString trVersion()
Definition: translator_ua.h:493
TranslatorUkrainian::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_ua.h:626
TranslatorUkrainian::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_ua.h:1593
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorUkrainian::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_ua.h:687
TranslatorUkrainian::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_ua.h:1292
TranslatorUkrainian::trAttention
virtual QCString trAttention()
Definition: translator_ua.h:962
TranslatorUkrainian::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_ua.h:1670
TranslatorUkrainian::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_ua.h:673
TranslatorUkrainian::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_ua.h:1647
TranslatorUkrainian::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_ua.h:119
TranslatorUkrainian::trWarning
virtual QCString trWarning()
Definition: translator_ua.h:489
TranslatorUkrainian::trParameters
virtual QCString trParameters()
Definition: translator_ua.h:509
TranslatorUkrainian::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_ua.h:986
TranslatorUkrainian::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_ua.h:863
TranslatorUkrainian::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_ua.h:1280
TranslatorUkrainian::trModules
virtual QCString trModules()
Definition: translator_ua.h:149
TranslatorUkrainian::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_ua.h:1357
TranslatorUkrainian::trNoMatches
virtual QCString trNoMatches()
Definition: translator_ua.h:1765
TranslatorUkrainian::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_ua.h:212
TranslatorUkrainian::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_ua.h:927
TranslatorUkrainian::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_ua.h:1567
TranslatorUkrainian::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_ua.h:517
TranslatorUkrainian::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_ua.h:444
TranslatorUkrainian::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_ua.h:308
TranslatorUkrainian::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_ua.h:485
TranslatorUkrainian::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_ua.h:1365
TranslatorUkrainian::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_ua.h:892
TranslatorUkrainian::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_ua.h:288
TranslatorUkrainian::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_ua.h:911
TranslatorUkrainian::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_ua.h:1436
TranslatorUkrainian::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_ua.h:70
TranslatorUkrainian
Definition: translator_ua.h:22
TranslatorUkrainian::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_ua.h:1160
TranslatorUkrainian::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_ua.h:712
TranslatorUkrainian::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_ua.h:706
TranslatorUkrainian::trLoading
virtual QCString trLoading()
Definition: translator_ua.h:1747
TranslatorUkrainian::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_ua.h:362
TranslatorUkrainian::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_ua.h:632
TranslatorUkrainian::trAndMore
virtual QCString trAndMore(const QCString &number)
Definition: translator_ua.h:1848
TranslatorUkrainian::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_ua.h:505
TranslatorUkrainian::trDocumentation
virtual QCString trDocumentation()
Definition: translator_ua.h:302
TranslatorUkrainian::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_ua.h:691
TranslatorUkrainian::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_ua.h:1522
TranslatorUkrainian::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_ua.h:420
TranslatorUkrainian::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_ua.h:529
TranslatorUkrainian::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_ua.h:1272
TranslatorUkrainian::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_ua.h:74
TranslatorUkrainian::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_ua.h:665
TranslatorUkrainian::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_ua.h:871
TranslatorUkrainian::trNote
virtual QCString trNote()
Definition: translator_ua.h:884
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorUkrainian::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_ua.h:174
TranslatorUkrainian::trCompounds
virtual QCString trCompounds()
Definition: translator_ua.h:450
TranslatorUkrainian::trFriends
virtual QCString trFriends()
Definition: translator_ua.h:540
TranslatorUkrainian::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_ua.h:824
TranslatorUkrainian::trMemberList
virtual QCString trMemberList()
Definition: translator_ua.h:107
TranslatorUkrainian::trOverloadText
virtual QCString trOverloadText()
Definition: translator_ua.h:1494
TranslatorUkrainian::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_ua.h:1394
TranslatorUkrainian::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_ua.h:1530
TranslatorUkrainian::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_ua.h:1538
TranslatorUkrainian::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_ua.h:62
TranslatorUkrainian::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_ua.h:919
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorUkrainian::trDirDescription
virtual QCString trDirDescription()
Definition: translator_ua.h:1466
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108