Doxygen
Loading...
Searching...
No Matches
translator_tr.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
18#ifndef TRANSLATOR_TR_H
19#define TRANSLATOR_TR_H
20
21/*!
22 When defining a translator class for the new language, follow
23 the description in the documentation. One of the steps says
24 that you should copy the translator_en.h (this) file to your
25 translator_xx.h new file. Your new language should use the
26 Translator class as the base class. This means that you need to
27 implement exactly the same (pure virtual) override methods as the
28 TranslatorEnglish does. Because of this, it is a good idea to
29 start with the copy of TranslatorEnglish and replace the strings
30 one by one.
31
32 It is not necessary to include "translator.h" or
33 "translator_adapter.h" here. The files are included in the
34 language.cpp correctly. Not including any of the mentioned
35 files frees the maintainer from thinking about whether the
36 first, the second, or both files should be included or not, and
37 why. This holds namely for localized translators because their
38 base class is changed occasionally to adapter classes when the
39 Translator class changes the interface, or back to the
40 Translator class (by the local maintainer) when the localized
41 translator is made up-to-date again.
42*/
44{
45 public:
46
47 // --- Language control methods -------------------
48
49 /*! Used for identification of the language. The identification
50 * should not be translated. It should be replaced by the name
51 * of the language in English using lower-case characters only
52 * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
53 * the identification used in language.cpp.
54 */
55 QCString idLanguage() override
56 { return "turkish"; }
57
58 /*! Used to get the LaTeX command(s) for the language support.
59 * This method should return string with commands that switch
60 * LaTeX to the desired language. For example
61 * <pre>"\\usepackage[german]{babel}\n"
62 * </pre>
63 * or
64 * <pre>"\\usepackage{polski}\n"
65 * "\\usepackage[latin2]{inputenc}\n"
66 * "\\usepackage[T1]{fontenc}\n"
67 * </pre>
68 *
69 * The English LaTeX does not use such commands. Because of this
70 * the empty string is returned in this implementation.
71 */
72 QCString latexLanguageSupportCommand() override
73 {
74 return "\\usepackage[turkish]{babel}\n";
75 }
76 QCString trISOLang() override
77 {
78 return "tr";
79 }
80 QCString getLanguageString() override
81 {
82 return "0x41F Turkey";
83 }
84
85 // --- Language translation methods -------------------
86
87 /*! used in the compound documentation before a list of related fonksiyonlar. */
88 QCString trRelatedFunctions() override
89 { return "İlgili Fonksiyonlar"; }
90
91 /*! subscript for the related fonksiyonlar. */
92 QCString trRelatedSubscript() override
93 { return "(Not: Bu fonksiyonlar üye fonksiyon değildir.)"; }
94
95 /*! header that is put before the detailed description of files, classes and namespaces. */
96 QCString trDetailedDescription() override
97 { return "Ayrıntılı tanımlama"; }
98
99 /*! header that is used when the summary tag is missing inside the details tag */
100 QCString trDetails() override
101 { return "Ayrıntılar"; }
102
103 /*! header that is put before the list of typedefs. */
105 { return "Üye Typedef Dokümantasyonu"; }
106
107 /*! header that is put before the list of enumerations. */
109 { return "Üye Enümerasyon Dokümantasyonu"; }
110
111 /*! header that is put before the list of member fonksiyonlar. */
113 { return "Üye Fonksiyon Dokümantasyonu"; }
114
115 /*! header that is put before the list of member attributes. */
116 QCString trMemberDataDocumentation() override
117 {
118 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
119 {
120 return "Alan Dokümantasyonu";
121 }
122 else
123 {
124 return "Üye Veri Dokümantasyonu";
125 }
126 }
127
128 /*! this is the text of a link put after brief descriptions. */
129 QCString trMore() override
130 { return "Ayrıntılar..."; }
131
132 /*! put in the class documentation */
133 QCString trListOfAllMembers() override
134 { return "Tüm üyelerin listesi"; }
135
136 /*! used as the title of the "list of all members" page of a class */
137 QCString trMemberList() override
138 { return "Üye Listesi"; }
139
140 /*! this is the first part of a sentence that is followed by a class name */
141 QCString trThisIsTheListOfAllMembers() override
142 { return "Şu sınıfın tüm üyelerinin listesidir:"; }
143
144 /*! this is the remainder of the sentence after the class name */
145 QCString trIncludingInheritedMembers() override
146 { return " (kalıtımla gelen üyeleri de içerir)."; }
147
148 /*! this is put at the author sections at the bottom of man pages.
149 * parameter s is name of the project name.
150 */
151 QCString trGeneratedAutomatically(const QCString &s) override
152 { QCString result="Doxygen tarafından";
153 if (!s.isEmpty()) result+=s+" için ";
154 result+=" kaynak koddan otomatik üretilmiştir.";
155 return result;
156 }
157
158 /*! put after an enum name in the list of all members */
159 QCString trEnumName() override
160 { return "enum adı"; }
161
162 /*! put after an enum value in the list of all members */
163 QCString trEnumValue() override
164 { return "enum değeri"; }
165
166 /*! put after an undocumented member in the list of all members */
167 QCString trDefinedIn() override
168 { return "tanımlandığı yer"; }
169
170 // quick reference sections
171
172 /*! This is put above each page as a link to the list of all groups of
173 * compounds or files (see the \\group command).
174 */
175 QCString trModules() override
176 { return "Modüller"; }
177
178 /*! This is put above each page as a link to the class hierarchy */
179 QCString trClassHierarchy() override
180 { return "Sınıf Hiyerarşisi"; }
181
182 /*! This is put above each page as a link to the list of annotated classes */
183 QCString trCompoundList() override
184 {
185 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
186 {
187 return "Veri Yapıları";
188 }
189 else
190 {
191 return "Sınıf Listesi";
192 }
193 }
194
195 /*! This is put above each page as a link to the list of documented files */
196 QCString trFileList() override
197 { return "Dosya Listesi"; }
198
199 /*! This is put above each page as a link to all members of compounds. */
200 QCString trCompoundMembers() override
201 {
202 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
203 {
204 return "Veri Alanları";
205 }
206 else
207 {
208 return "Sınıf Üyeleri";
209 }
210 }
211
212 /*! This is put above each page as a link to all members of files. */
213 QCString trFileMembers() override
214 {
215 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
216 {
217 return "Globaller";
218 }
219 else
220 {
221 return "Dosya Üyeleri";
222 }
223 }
224
225 /*! This is put above each page as a link to all related pages. */
226 QCString trRelatedPages() override
227 { return "İlgili Sayfalar"; }
228
229 /*! This is put above each page as a link to all examples. */
230 QCString trExamples() override
231 { return "Örnekler"; }
232
233 /*! This is put above each page as a link to the search engine. */
234 QCString trSearch() override
235 { return "Ara"; }
236
237 /*! This is an introduction to the class hierarchy. */
238 QCString trClassHierarchyDescription() override
239 { return "Bu kalıtım listesi tamamen olmasa da yaklaşık "
240 "olarak alfabetik sıraya konulmuştur:";
241 }
242
243 /*! This is an introduction to the list with all files. */
244 QCString trFileListDescription(bool extractAll) override
245 {
246 QCString result="Bu liste tüm ";
247 if (!extractAll) result+="dokümante edilmiş ";
248 result+="dosyaları kısa açıklamalarıyla göstermektedir:";
249 return result;
250 }
251
252 /*! This is an introduction to the annotated compound list. */
253 QCString trCompoundListDescription() override
254 {
255
256 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
257 {
258 return "Kısa tanımlarıyla birlikte veri yapıları:";
259 }
260 else
261 {
262 return "Kısa tanımlarıyla sınıflar, yapılar (struct), "
263 "birleşimler(union) ve arayüzler:";
264 }
265 }
266
267 /*! This is an introduction to the page with all class members. */
268 QCString trCompoundMembersDescription(bool extractAll) override
269 {
270 QCString result="Bu liste tüm ";
271 if (!extractAll)
272 {
273 result+="dokümante edilmiş ";
274 }
275 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
276 {
277 result+="yapı(struct) ve birleşim(union) yapılarını içerir";
278 }
279 else
280 {
281 result+="sınıf üyelerini içerir";
282 }
283 result+=" ve ";
284 if (!extractAll)
285 {
286 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
287 {
288 result+="her alanı yapı(struct)/birleşim(union) dokümantasyonuna bağlar:";
289 }
290 else
291 {
292 result+="her üye için sınıf dokümantasyonuna bağlar:";
293 }
294 }
295 else
296 {
297 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
298 {
299 result+="ait olduğu yapı(struct)/birleşime(union) bağlar:";
300 }
301 else
302 {
303 result+="ait olduğu sınıfa bağlar:";
304 }
305 }
306 return result;
307 }
308
309 /*! This is an introduction to the page with all file members. */
310 QCString trFileMembersDescription(bool extractAll) override
311 {
312 QCString result="Bu liste tüm ";
313 if (!extractAll) result+="dokümante edilmiş ";
314
315 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
316 {
317 result+="fonksiyonları, değişkenleri, makroları, enümerasyonları ve typedef\'leri içerir";
318 }
319 else
320 {
321 result+="dosya üyelerini içerir";
322 }
323 result+=" ve ";
324 if (extractAll)
325 result+="ait olduğu dosyalar bağlar:";
326 else
327 result+="dokümantasyona bağlar:";
328 return result;
329 }
330
331 /*! This is an introduction to the page with the list of all examples */
332 QCString trExamplesDescription() override
333 { return "Tüm örneklerin listesi aşağıdadır:"; }
334
335 /*! This is an introduction to the page with the list of related pages */
336 QCString trRelatedPagesDescription() override
337 { return "İlgili tüm dokümantasyon sayfalarının listesi aşağıdadır:"; }
338
339 /*! This is an introduction to the page with the list of class/file groups */
340 QCString trModulesDescription() override
341 { return "Tüm modüllerin listesi aşağıdadır:"; }
342
343 // index titles (the project name is prepended for these)
344
345 /*! This is used in HTML as the title of index.html. */
346 QCString trDocumentation(const QCString &projName) override
347 { return (!projName.isEmpty()?projName + " " : "") + "Dokümantasyonu"; }
348
349 /*! This is used in LaTeX as the title of the chapter with the
350 * index of all groups.
351 */
352 QCString trModuleIndex() override
353 { return "Modül İndeksi"; }
354
355 /*! This is used in LaTeX as the title of the chapter with the
356 * class hierarchy.
357 */
358 QCString trHierarchicalIndex() override
359 { return "Hiyerarşik İndeksi"; }
360
361 /*! This is used in LaTeX as the title of the chapter with the
362 * annotated compound index.
363 */
364 QCString trCompoundIndex() override
365 {
366 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
367 {
368 return "Veri Yapıları İndeksi";
369 }
370 else
371 {
372 return "Sınıf İndeksi";
373 }
374 }
375
376 /*! This is used in LaTeX as the title of the chapter with the
377 * list of all files.
378 */
379 QCString trFileIndex() override
380 { return "Dosya İndeksi"; }
381
382 /*! This is used in LaTeX as the title of the chapter containing
383 * the documentation of all groups.
384 */
385 QCString trModuleDocumentation() override
386 { return "Modül Dokümantasyonu"; }
387
388 /*! This is used in LaTeX as the title of the chapter containing
389 * the documentation of all classes, structs and unions.
390 */
391 QCString trClassDocumentation() override
392 {
393 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
394 {
395 return "Veri Yapıları Dokümantasyonu";
396 }
397 else if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
398 {
400 }
401 else
402 {
403 return "Sınıf Dokümantasyonu";
404 }
405 }
406
407 /*! This is used in LaTeX as the title of the chapter containing
408 * the documentation of all files.
409 */
410 QCString trFileDocumentation() override
411 { return "Dosya Dokümantasyonu"; }
412
413 /*! This is used in LaTeX as the title of the document */
414 QCString trReferenceManual() override
415 { return "Referans Kitabı"; }
416
417 /*! This is used in the documentation of a file as a header before the
418 * list of defines
419 */
420 QCString trDefines() override
421 { return "Makrolar"; }
422
423 /*! This is used in the documentation of a file as a header before the
424 * list of typedefs
425 */
426 QCString trTypedefs() override
427 { return "Typedef\'ler"; }
428
429 /*! This is used in the documentation of a file as a header before the
430 * list of enumerations
431 */
432 QCString trEnumerations() override
433 { return "Enümerasyonlar"; }
434
435 /*! This is used in the documentation of a file as a header before the
436 * list of (global) functions
437 */
438 QCString trFunctions() override
439 { return "Fonksiyonlar"; }
440
441 /*! This is used in the documentation of a file as a header before the
442 * list of (global) variables
443 */
444 QCString trVariables() override
445 { return "Değişkenler"; }
446
447 /*! This is used in the documentation of a file as a header before the
448 * list of (global) variables
449 */
450 QCString trEnumerationValues() override
451 { return "Enümeratör"; }
452
453 /*! This is used in the documentation of a file before the list of
454 * documentation blocks for defines
455 */
456 QCString trDefineDocumentation() override
457 { return "Makro Dokümantasyonu"; }
458
459 /*! This is used in the documentation of a file/namespace before the list
460 * of documentation blocks for typedefs
461 */
462 QCString trTypedefDocumentation() override
463 { return "Typedef Dokümantasyonu"; }
464
465 /*! This is used in the documentation of a file/namespace before the list
466 * of documentation blocks for enumeration types
467 */
469 { return "Enümerasyon Tipi Dokümantasyonu"; }
470
471 /*! This is used in the documentation of a file/namespace before the list
472 * of documentation blocks for functions
473 */
474 QCString trFunctionDocumentation() override
475 { return "Fonksiyon Dokümantasyonu"; }
476
477 /*! This is used in the documentation of a file/namespace before the list
478 * of documentation blocks for variables
479 */
480 QCString trVariableDocumentation() override
481 { return "Değişken Dokümantasyonu"; }
482
483 /*! This is used in the documentation of a file/namespace/group before
484 * the list of links to documented compounds
485 */
486 QCString trCompounds() override
487 {
488 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
489 {
490 return "Veri Yapıları";
491 }
492 else
493 {
494 return "Sınıflar";
495 }
496 }
497
498 /*! This is used in the standard footer of each page and indicates when
499 * the page was generated
500 */
501 QCString trGeneratedAt(const QCString &date,const QCString &projName) override
502 {
503 QCString result=projName+" için "+date;
504 if (!projName.isEmpty()) result+=" tarihinde ";
505 result+=" üreten: ";
506 return result;
507 }
508
509 /*! this text is put before a class diagram */
510 QCString trClassDiagram(const QCString &clName) override
511 {
512 return clName+" için kalıtım şeması:";
513 }
514
515 /*! this text is generated when the \\warning command is used. */
516 QCString trWarning() override
517 { return "Uyarı"; }
518
519 /*! this text is generated when the \\version command is used. */
520 QCString trVersion() override
521 { return "Sürüm"; }
522
523 /*! this text is generated when the \\date command is used. */
524 QCString trDate() override
525 { return "Tarih"; }
526
527 /*! this text is generated when the \\return command is used. */
528 QCString trReturns() override
529 { return "Döndürdüğü değer"; }
530
531 /*! this text is generated when the \\sa command is used. */
532 QCString trSeeAlso() override
533 { return "Ayrıca Bakınız"; }
534
535 /*! this text is generated when the \\param command is used. */
536 QCString trParameters() override
537 { return "Parametreler"; }
538
539 /*! this text is generated when the \\exception command is used. */
540 QCString trExceptions() override
541 { return "İstisnalar"; }
542
543 /*! this text is used in the title page of a LaTeX document. */
544 QCString trGeneratedBy() override
545 { return "Oluşturan"; }
546
547//////////////////////////////////////////////////////////////////////////
548// new since 0.49-990307
549//////////////////////////////////////////////////////////////////////////
550
551 /*! used as the title of page containing all the index of all namespaces. */
552 QCString trNamespaceList() override
553 { return "Namespace Listesi"; }
554
555 /*! used as an introduction to the namespace list */
556 QCString trNamespaceListDescription(bool extractAll) override
557 {
558 QCString result="Tüm ";
559 if (!extractAll) result+="dokümante edilmiş ";
560 result+="namespace\'lerin kısa tanımlarıyla listesi aşağıdadır:";
561 return result;
562 }
563
564 /*! used in the class documentation as a header before the list of all
565 * friends of a class
566 */
567 QCString trFriends() override
568 { return "Arkadaşları"; }
569
570//////////////////////////////////////////////////////////////////////////
571// new since 0.49-990405
572//////////////////////////////////////////////////////////////////////////
573
574 /*! used in the class documentation as a header before the list of all
575 * related classes
576 */
578 { return "Arkadaş Ve İlgili Fonksiyon Dokümantasyonu"; }
579
580//////////////////////////////////////////////////////////////////////////
581// new since 0.49-990425
582//////////////////////////////////////////////////////////////////////////
583
584 /*! used as the title of the HTML page of a class/struct/union */
585 QCString trCompoundReference(const QCString &clName,
586 ClassDef::CompoundType compType,
587 bool isTemplate) override
588 {
589 QCString result=clName;
590 switch(compType)
591 {
592 case ClassDef::Class: result+=" Sınıf"; break;
593 case ClassDef::Struct: result+=" Yapı(Struct)"; break;
594 case ClassDef::Union: result+=" Birleşim(Union)"; break;
595 case ClassDef::Interface: result+=" Arayüz(Interface)"; break;
596 case ClassDef::Protocol: result+=" Protokol"; break;
597 case ClassDef::Category: result+=" Kategori"; break;
598 case ClassDef::Exception: result+=" İstisna"; break;
599 default: break;
600 }
601 if (isTemplate) result+=" Şablon";
602 result+=" Referans";
603 return result;
604 }
605
606 /*! used as the title of the HTML page of a file */
607 QCString trFileReference(const QCString &fileName) override
608 {
609 QCString result=fileName;
610 result+=" Dosya Referansı";
611 return result;
612 }
613
614 /*! used as the title of the HTML page of a namespace */
615 QCString trNamespaceReference(const QCString &namespaceName) override
616 {
617 QCString result=namespaceName;
618 result+=" Namespace Referansı";
619 return result;
620 }
621
622 QCString trPublicMembers() override
623 { return "Public Üye Fonksiyonlar"; }
624 QCString trPublicSlots() override
625 { return "Public Slotlar"; }
626 QCString trSignals() override
627 { return "Sinyaller"; }
628 QCString trStaticPublicMembers() override
629 { return "Statik Public Üye Fonksiyonlar"; }
630 QCString trProtectedMembers() override
631 { return "Korumalı Üye Fonksiyonlar"; }
632 QCString trProtectedSlots() override
633 { return "Korumalı Slotlar"; }
634 QCString trStaticProtectedMembers() override
635 { return "Statik Korumalı Üye Fonksiyonlar"; }
636 QCString trPrivateMembers() override
637 { return "Özel Üye Fonksiyonlar"; }
638 QCString trPrivateSlots() override
639 { return "Özel Slotlar"; }
640 QCString trStaticPrivateMembers() override
641 { return "Statik Özel Üye Fonksiyonlar"; }
642
643 /*! this function is used to produce a comma-separated list of items.
644 * use generateMarker(i) to indicate where item i should be put.
645 */
646 QCString trWriteList(int numEntries) override
647 {
648 QCString result;
649 // the inherits list contain `numEntries' classes
650 for (int i=0;i<numEntries;i++)
651 {
652 // use generateMarker to generate placeholders for the class links!
653 result+=generateMarker(i); // generate marker for entry i in the list
654 // (order is left to right)
655
656 if (i!=numEntries-1) // not the last entry, so we need a separator
657 {
658 if (i<numEntries-2) // not the fore last entry
659 result+=", ";
660 else // the fore last entry
661 result+=" ve ";
662 }
663 }
664 return result;
665 }
666
667 /*! used in class documentation to produce a list of base classes,
668 * if class diagrams are disabled.
669 */
670 QCString trInheritsList(int numEntries) override
671 {
672 return "Şu sınıflardan türemiştir : "+trWriteList(numEntries)+".";
673 }
674
675 /*! used in class documentation to produce a list of super classes,
676 * if class diagrams are disabled.
677 */
678 QCString trInheritedByList(int numEntries) override
679 {
680 return "Şu sınıfların atasıdır : "+trWriteList(numEntries)+".";
681 }
682
683 /*! used in member documentation blocks to produce a list of
684 * members that are hidden by this one.
685 */
686 QCString trReimplementedFromList(int numEntries) override
687 {
688 return "Şu üyeleri yeniden tanımlar : "+trWriteList(numEntries)+".";
689 }
690
691 /*! used in member documentation blocks to produce a list of
692 * all member that overwrite the implementation of this member.
693 */
694 QCString trReimplementedInList(int numEntries) override
695 {
696 return "Şu üyeler tarafından yeniden tanımlanmıştır : "+trWriteList(numEntries)+".";
697 }
698
699 /*! This is put above each page as a link to all members of namespaces. */
700 QCString trNamespaceMembers() override
701 { return "Namespace Üyeleri"; }
702
703 /*! This is an introduction to the page with all namespace members */
704 QCString trNamespaceMemberDescription(bool extractAll) override
705 {
706 QCString result="Bu liste tüm ";
707 if (!extractAll) result+="dokümante edilmiş ";
708 result+="namespace üyelerini listeler ve ";
709 if (extractAll)
710 result+="her üye için üye dokümantasyonuna bağlar:";
711 else
712 result+="ait olduğu namespace\'lere bağlar:";
713 return result;
714 }
715 /*! This is used in LaTeX as the title of the chapter with the
716 * index of all namespaces.
717 */
718 QCString trNamespaceIndex() override
719 { return "Namespace İndeksi"; }
720
721 /*! This is used in LaTeX as the title of the chapter containing
722 * the documentation of all namespaces.
723 */
724 QCString trNamespaceDocumentation() override
725 { return "Namespace Dokümantasyonu"; }
726
727//////////////////////////////////////////////////////////////////////////
728// new since 0.49-990522
729//////////////////////////////////////////////////////////////////////////
730
731 /*! This is used in the documentation before the list of all
732 * namespaces in a file.
733 */
734 QCString trNamespaces() override
735 { return "Namespace\'ler"; }
736
737//////////////////////////////////////////////////////////////////////////
738// new since 0.49-990728
739//////////////////////////////////////////////////////////////////////////
740
741 /*! This is put at the bottom of a class documentation page and is
742 * followed by a list of files that were used to generate the page.
743 */
745 bool single) override
746 { // here s is one of " Class", " Struct" or " Union"
747 // single is true implies a single file
748 QCString result="Bu ";
749 switch(compType)
750 {
751 case ClassDef::Class: result+="sınıf"; break;
752 case ClassDef::Struct: result+="yapı(struct)"; break;
753 case ClassDef::Union: result+="birleşim(union)"; break;
754 case ClassDef::Interface: result+="arayüz(interface)"; break;
755 case ClassDef::Protocol: result+="protokol"; break;
756 case ClassDef::Category: result+="kategori"; break;
757 case ClassDef::Exception: result+="istisna"; break;
758 default: break;
759 }
760 result+=" için dokümantasyon aşağıdaki dosya";
761 if (single) result+=""; else result+="lar";
762 result+="dan üretilmiştir:";
763 return result;
764 }
765
766//////////////////////////////////////////////////////////////////////////
767// new since 0.49-990901
768//////////////////////////////////////////////////////////////////////////
769
770 /*! This is used as the heading text for the retval command. */
771 QCString trReturnValues() override
772 { return "Döndürdüğü değerler"; }
773
774 /*! This is in the (quick) index as a link to the main page (index.html)
775 */
776 QCString trMainPage() override
777 { return "Ana Sayfa"; }
778
779 /*! This is used in references to page that are put in the LaTeX
780 * documentation. It should be an abbreviation of the word page.
781 */
782 QCString trPageAbbreviation() override
783 { return "sf."; }
784
785//////////////////////////////////////////////////////////////////////////
786// new since 0.49-991003
787//////////////////////////////////////////////////////////////////////////
788
789 QCString trDefinedAtLineInSourceFile() override
790 {
791 return "@1 dosyasının @0 numaralı satırında tanımlanmıştır.";
792 }
793 QCString trDefinedInSourceFile() override
794 {
795 return "@0 dosyasında tanımlanmıştır.";
796 }
797
798//////////////////////////////////////////////////////////////////////////
799// new since 0.49-991205
800//////////////////////////////////////////////////////////////////////////
801
802 QCString trDeprecated() override
803 {
804 return "Kullanımdan kalkmıştır";
805 }
806
807//////////////////////////////////////////////////////////////////////////
808// new since 1.0.0
809//////////////////////////////////////////////////////////////////////////
810
811 /*! this text is put before a collaboration diagram */
812 QCString trCollaborationDiagram(const QCString &clName) override
813 {
814 return clName+" için işbirliği (collaboration) şeması:";
815 }
816 /*! this text is put before an include dependency graph */
817 QCString trInclDepGraph(const QCString &fName) override
818 {
819 return fName+" için içerme bağımlılık grafiği:";
820 }
821 /*! header that is put before the list of constructor/destructors. */
822 QCString trConstructorDocumentation() override
823 {
824 return "Constructor & Destructor Dokümantasyonu";
825 }
826 /*! Used in the file documentation to point to the corresponding sources. */
827 QCString trGotoSourceCode() override
828 {
829 return "Bu dosyanın kaynak koduna git.";
830 }
831 /*! Used in the file sources to point to the corresponding documentation. */
832 QCString trGotoDocumentation() override
833 {
834 return "Bu dosyanın dokümantasyonuna git.";
835 }
836 /*! Text for the \\pre command */
837 QCString trPrecondition() override
838 {
839 return "Ön şart";
840 }
841 /*! Text for the \\post command */
842 QCString trPostcondition() override
843 {
844 return "Son şart (Postcondition)";
845 }
846 /*! Text for the \\invariant command */
847 QCString trInvariant() override
848 {
849 return "Değişmez(Invariant)";
850 }
851 /*! Text shown before a multi-line variable/enum initialization */
852 QCString trInitialValue() override
853 {
854 return "İlk değer:";
855 }
856 /*! Text used the source code in the file index */
857 QCString trCode() override
858 {
859 return "kod";
860 }
861 QCString trGraphicalHierarchy() override
862 {
863 return "Grafiksel Sınıf Hiyerarşisi";
864 }
865 QCString trGotoGraphicalHierarchy() override
866 {
867 return "Grafiksel sınıf hiyerarşisine git";
868 }
869 QCString trGotoTextualHierarchy() override
870 {
871 return "Metinsel sınıf hiyerarşisine git";
872 }
873 QCString trPageIndex() override
874 {
875 return "Sayfa İndeksi";
876 }
877
878//////////////////////////////////////////////////////////////////////////
879// new since 1.1.0
880//////////////////////////////////////////////////////////////////////////
881
882 QCString trNote() override
883 {
884 return "Not";
885 }
886 QCString trPublicTypes() override
887 {
888 return "Public Tipler";
889 }
890 QCString trPublicAttribs() override
891 {
892 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
893 {
894 return "Veri Alanları";
895 }
896 else
897 {
898 return "Public Özellikler(attribute)";
899 }
900 }
901 QCString trStaticPublicAttribs() override
902 {
903 return "Statik Public Özellikler(attribute)";
904 }
905 QCString trProtectedTypes() override
906 {
907 return "Korumalı Tipler";
908 }
909 QCString trProtectedAttribs() override
910 {
911 return "Korumalı Özellikler(attribute)";
912 }
913 QCString trStaticProtectedAttribs() override
914 {
915 return "Statik Korumalı Attributes";
916 }
917 QCString trPrivateTypes() override
918 {
919 return "Özel Tipler";
920 }
921 QCString trPrivateAttribs() override
922 {
923 return "Özel Özellikler(attribute)";
924 }
925 QCString trStaticPrivateAttribs() override
926 {
927 return "Statik Özel Özellikler(attribute)";
928 }
929
930//////////////////////////////////////////////////////////////////////////
931// new since 1.1.3
932//////////////////////////////////////////////////////////////////////////
933
934 /*! Used as a marker that is put before a \\todo item */
935 QCString trTodo() override
936 {
937 return "Yapılacak";
938 }
939 /*! Used as the header of the todo list */
940 QCString trTodoList() override
941 {
942 return "Yapılacaklar Listesi";
943 }
944
945//////////////////////////////////////////////////////////////////////////
946// new since 1.1.4
947//////////////////////////////////////////////////////////////////////////
948
949 QCString trReferencedBy() override
950 {
951 return "Referans veren";
952 }
953 QCString trRemarks() override
954 {
955 return "Dipnotlar";
956 }
957 QCString trAttention() override
958 {
959 return "Dikkat";
960 }
961 QCString trInclByDepGraph() override
962 {
963 return "Bu şekil hangi dosyaların doğrudan ya da "
964 "dolaylı olarak bu dosyayı içerdiğini gösterir:";
965 }
966 QCString trSince() override
967 {
968 return "Şu zamandan beri";
969 }
970
971//////////////////////////////////////////////////////////////////////////
972// new since 1.1.5
973//////////////////////////////////////////////////////////////////////////
974
975 /*! title of the graph legend page */
976 QCString trLegendTitle() override
977 {
978 return "Şekil Lejantı";
979 }
980 /*! page explaining how the dot graph's should be interpreted
981 * The %A in the text below are to prevent link to classes called "A".
982 */
983 QCString trLegendDocs() override
984 {
985 return
986 "Bu dosya doxygen tarafından üretilen grafiklerin nasıl anlaşılacağını "
987 "açıklar.<p>\n"
988 "Aşağıdaki örneğe bakalım:\n"
989 "\\code\n"
990 "/*! Sadeleşme yüzünden görünmeyen sınıf */\n"
991 "class Invisible { };\n\n"
992 "/*! Sadeleşmiş sınıf, kalıtım ilişkisi gizli */\n"
993 "class Truncated : public Invisible { };\n\n"
994 "/* Doxygen yorumlarıyla dokümante edilmemiş sınıf */\n"
995 "class Undocumented { };\n\n"
996 "/*! Public kalıtımla türetilen sınıf */\n"
997 "class PublicBase : public Truncated { };\n\n"
998 "/*! Bir şablon sınıfı */\n"
999 "template<class T> class Templ { };\n\n"
1000 "/*! Korumalı kalıtımla türetilen sınıf */\n"
1001 "class ProtectedBase { };\n\n"
1002 "/*! Özel kalıtımla türetilen sınıf */\n"
1003 "class PrivateBase { };\n\n"
1004 "/*! Türetilen sınıf tarafından kullanılan sınıf */\n"
1005 "class Used { };\n\n"
1006 "/*! Pekçok sınıftan türeyen bir sınıf */\n"
1007 "class Inherited : public PublicBase,\n"
1008 " protected ProtectedBase,\n"
1009 " private PrivateBase,\n"
1010 " public Undocumented,\n"
1011 " public Templ<int>\n"
1012 "{\n"
1013 " private:\n"
1014 " Used *m_usedClass;\n"
1015 "};\n"
1016 "\\endcode\n"
1017 "Bu kod aşağıdaki şemayı oluşturur:"
1018 "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1019 "<p>\n"
1020 "Yukarıdaki şemadaki kutular aşağıda açıklanmıştır:\n"
1021 "<ul>\n"
1022 "<li>Dolu gri kutu şemanın ait olduğu yapı(struct) ya da sınıfı "
1023 "gösterir.\n"
1024 "<li>Siyah çerçeveli bir kutu dokümante edilmiş bir yapı(struct) ya da sınıfı gösterir.\n"
1025 "<li>Gri çerçeveli bir kutu dokümante edilmemiş bir yapı(struct) ya da sınıfı gösterir.\n"
1026 "<li>Kırmızı çerçeveli bir kutu tüm kalıtım/içerme ilişkileri gösterilmemiş ve dokümante "
1027 "edilmiş bir yapı(struct) ya da sınıfı gösterir. %A şema belirlenen sınırlara "
1028 "sığmıyorsa sadeleştirilir.\n"
1029 "</ul>\n"
1030 "Okların anlamı aşağıdaki gibidir:\n"
1031 "<ul>\n"
1032 "<li>Koyu mavi ok iki sınıf arasındaki public kalıtım ilişkisini "
1033 "göstermekte kullanılır.\n"
1034 "<li>Koyu yeşil ok korumalı kalıtımı gösterir.\n"
1035 "<li>Koyu kırmızı ok özel kalıtımı gösterir.\n"
1036 "<li>Mor kesikli çizgi bir sınıfın diğeri tarafından içeriliyor ya da kullanılıyor "
1037 "olduğunu gösterir. Ok işaret edilen sınıfın hangi değişken(ler) tarafından erişildiğini "
1038 "gösteren etiketle işaretleniştir.\n"
1039 "<li>Sarı kesikli çizgi şablondan üretilen bir sınıf ve ilgili şablon sınıfı "
1040 "arasındaki ilişkiyi gösterir. Ok türeyen sınıfın şablon parametreleriyle "
1041 "etiketlenmiştir.\n"
1042 "</ul>\n";
1043 }
1044 /*! text for the link to the legend page */
1045 QCString trLegend() override
1046 {
1047 return "lejant";
1048 }
1049
1050//////////////////////////////////////////////////////////////////////////
1051// new since 1.2.0
1052//////////////////////////////////////////////////////////////////////////
1053
1054 /*! Used as a marker that is put before a test item */
1055 QCString trTest() override
1056 {
1057 return "Test";
1058 }
1059 /*! Used as the header of the test list */
1060 QCString trTestList() override
1061 {
1062 return "Test Listesi";
1063 }
1064
1065//////////////////////////////////////////////////////////////////////////
1066// new since 1.2.2
1067//////////////////////////////////////////////////////////////////////////
1068
1069 /*! Used as a section header for IDL properties */
1070 QCString trProperties() override
1071 {
1072 return "Özellikler";
1073 }
1074 /*! Used as a section header for IDL property documentation */
1075 QCString trPropertyDocumentation() override
1076 {
1077 return "Özellik Dokümantasyonu";
1078 }
1079
1080//////////////////////////////////////////////////////////////////////////
1081// new since 1.2.4
1082//////////////////////////////////////////////////////////////////////////
1083
1084 /*! Used for Java classes in the summary section of Java packages */
1085 QCString trClasses() override
1086 {
1087 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1088 {
1089 return "Veri Yapıları";
1090 }
1091 else
1092 {
1093 return "Sınıflar";
1094 }
1095 }
1096 /*! Used as the title of a Java package */
1097 QCString trPackage(const QCString &name) override
1098 {
1099 return "Paket "+name;
1100 }
1101 /*! The description of the package index page */
1102 QCString trPackageListDescription() override
1103 {
1104 return "Paketler ve kısa tanımları (var ise):";
1105 }
1106 /*! The link name in the Quick links header for each page */
1107 QCString trPackages() override
1108 {
1109 return "Paketler";
1110 }
1111 /*! Text shown before a multi-line define */
1112 QCString trDefineValue() override
1113 {
1114 return "Değer:";
1115 }
1116
1117//////////////////////////////////////////////////////////////////////////
1118// new since 1.2.5
1119//////////////////////////////////////////////////////////////////////////
1120
1121 /*! Used as a marker that is put before a \\bug item */
1122 QCString trBug() override
1123 {
1124 return "Hata";
1125 }
1126 /*! Used as the header of the bug list */
1127 QCString trBugList() override
1128 {
1129 return "Hata Listesi";
1130 }
1131
1132//////////////////////////////////////////////////////////////////////////
1133// new since 1.2.6
1134//////////////////////////////////////////////////////////////////////////
1135
1136 /*! Used as ansicpg for RTF file
1137 *
1138 * The following table shows the correlation of Charset name, Charset Value and
1139 * <pre>
1140 * Codepage number:
1141 * Charset Name Charset Value(hex) Codepage number
1142 * ------------------------------------------------------
1143 * DEFAULT_CHARSET 1 (x01)
1144 * SYMBOL_CHARSET 2 (x02)
1145 * OEM_CHARSET 255 (xFF)
1146 * ANSI_CHARSET 0 (x00) 1252
1147 * RUSSIAN_CHARSET 204 (xCC) 1251
1148 * EE_CHARSET 238 (xEE) 1250
1149 * GREEK_CHARSET 161 (xA1) 1253
1150 * TURKISH_CHARSET 162 (xA2) 1254
1151 * BALTIC_CHARSET 186 (xBA) 1257
1152 * HEBREW_CHARSET 177 (xB1) 1255
1153 * ARABIC _CHARSET 178 (xB2) 1256
1154 * SHIFTJIS_CHARSET 128 (x80) 932
1155 * HANGEUL_CHARSET 129 (x81) 949
1156 * GB2313_CHARSET 134 (x86) 936
1157 * CHINESEBIG5_CHARSET 136 (x88) 950
1158 * </pre>
1159 *
1160 */
1161 QCString trRTFansicp() override
1162 {
1163 return "1254";
1164 }
1165
1166
1167 /*! Used as ansicpg for RTF fcharset
1168 * \see trRTFansicp() for a table of possible values.
1169 */
1170 QCString trRTFCharSet() override
1171 {
1172 return "162";
1173 }
1174
1175 /*! Used as header RTF general index */
1176 QCString trRTFGeneralIndex() override
1177 {
1178 return "İndeks";
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 QCString trClass(bool first_capital, bool singular) override
1186 {
1187 return createNoun(first_capital, singular, "sınıf", "lar");
1188 }
1189
1190 /*! This is used for translation of the word that will possibly
1191 * be followed by a single name or by a list of names
1192 * of the category.
1193 */
1194 QCString trFile(bool first_capital, bool singular) override
1195 {
1196 return createNoun(first_capital, singular, "dosya", "lar");
1197 }
1198
1199 /*! This is used for translation of the word that will possibly
1200 * be followed by a single name or by a list of names
1201 * of the category.
1202 */
1203 QCString trNamespace(bool first_capital, bool singular) override
1204 {
1205 return createNoun(first_capital, singular, "namespace", "\'ler");
1206 }
1207
1208 /*! This is used for translation of the word that will possibly
1209 * be followed by a single name or by a list of names
1210 * of the category.
1211 */
1212 QCString trGroup(bool first_capital, bool singular) override
1213 {
1214 return createNoun(first_capital, singular, "grup", "lar");
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 QCString trPage(bool first_capital, bool singular) override
1222 {
1223 return createNoun(first_capital, singular, "sayfa", "lar");
1224 }
1225
1226 /*! This is used for translation of the word that will possibly
1227 * be followed by a single name or by a list of names
1228 * of the category.
1229 */
1230 QCString trMember(bool first_capital, bool singular) override
1231 {
1232 return createNoun(first_capital, singular, "üye", "ler");
1233 }
1234
1235 /*! This is used for translation of the word that will possibly
1236 * be followed by a single name or by a list of names
1237 * of the category.
1238 */
1239 QCString trGlobal(bool first_capital, bool singular) override
1240 {
1241 return createNoun(first_capital, singular, "global değişken", "ler");
1242 }
1243
1244//////////////////////////////////////////////////////////////////////////
1245// new since 1.2.7
1246//////////////////////////////////////////////////////////////////////////
1247
1248 /*! This text is generated when the \\author command is used and
1249 * for the author section in man pages. */
1250 QCString trAuthor(bool first_capital, bool singular) override
1251 {
1252 return createNoun(first_capital, singular, "yazar", "lar");
1253 }
1254
1255//////////////////////////////////////////////////////////////////////////
1256// new since 1.2.11
1257//////////////////////////////////////////////////////////////////////////
1258
1259 /*! This text is put before the list of members referenced by a member
1260 */
1261 QCString trReferences() override
1262 {
1263 return "Referanslar";
1264 }
1265
1266//////////////////////////////////////////////////////////////////////////
1267// new since 1.2.13
1268//////////////////////////////////////////////////////////////////////////
1269
1270 /*! used in member documentation blocks to produce a list of
1271 * members that are implemented by this one.
1272 */
1273 QCString trImplementedFromList(int numEntries) override
1274 {
1275 return "Şu üyeleri gerçekler: "+trWriteList(numEntries)+".";
1276 }
1277
1278 /*! used in member documentation blocks to produce a list of
1279 * all members that implement this abstract member.
1280 */
1281 QCString trImplementedInList(int numEntries) override
1282 {
1283 return "Şu üyelerce gerçeklenir: "+trWriteList(numEntries)+".";
1284 }
1285
1286//////////////////////////////////////////////////////////////////////////
1287// new since 1.2.16
1288//////////////////////////////////////////////////////////////////////////
1289
1290 /*! used in RTF documentation as a heading for the Table
1291 * of Contents.
1292 */
1293 QCString trRTFTableOfContents() override
1294 {
1295 return "İçindekiler";
1296 }
1297
1298//////////////////////////////////////////////////////////////////////////
1299// new since 1.2.17
1300//////////////////////////////////////////////////////////////////////////
1301
1302 /*! Used as the header of the list of item that have been
1303 * flagged deprecated
1304 */
1305 QCString trDeprecatedList() override
1306 {
1307 return "Kullanımdan Kalkanlar Listesl";
1308 }
1309
1310//////////////////////////////////////////////////////////////////////////
1311// new since 1.2.18
1312//////////////////////////////////////////////////////////////////////////
1313
1314 /*! Used as a header for declaration section of the events found in
1315 * a C# program
1316 */
1317 QCString trEvents() override
1318 {
1319 return "Olaylar";
1320 }
1321 /*! Header used for the documentation section of a class' events. */
1322 QCString trEventDocumentation() override
1323 {
1324 return "Olay Dokümantasyonu";
1325 }
1326
1327//////////////////////////////////////////////////////////////////////////
1328// new since 1.3
1329//////////////////////////////////////////////////////////////////////////
1330
1331 /*! Used as a heading for a list of Java class types with package scope.
1332 */
1333 QCString trPackageTypes() override
1334 {
1335 return "Paket Tipleri";
1336 }
1337 /*! Used as a heading for a list of Java class fonksiyonlar with package
1338 * scope.
1339 */
1340 QCString trPackageFunctions() override
1341 {
1342 return "Paket Fonksiyonlar";
1343 }
1344 QCString trPackageMembers() override
1345 {
1346 return "Paket Üyeler";
1347 }
1348 /*! Used as a heading for a list of static Java class fonksiyonlar with
1349 * package scope.
1350 */
1351 QCString trStaticPackageFunctions() override
1352 {
1353 return "Static Pakat Fonksiyonları";
1354 }
1355 /*! Used as a heading for a list of Java class variables with package
1356 * scope.
1357 */
1358 QCString trPackageAttribs() override
1359 {
1360 return "Packet Özellikleri(attribute)";
1361 }
1362 /*! Used as a heading for a list of static Java class variables with
1363 * package scope.
1364 */
1365 QCString trStaticPackageAttribs() override
1366 {
1367 return "Statik Packet Özellikleri(attribute)";
1368 }
1369
1370//////////////////////////////////////////////////////////////////////////
1371// new since 1.3.1
1372//////////////////////////////////////////////////////////////////////////
1373
1374 /*! Used in the quick index of a class/file/namespace member list page
1375 * to link to the unfiltered list of all members.
1376 */
1377 QCString trAll() override
1378 {
1379 return "Tümü";
1380 }
1381 /*! Put in front of the call graph for a function. */
1382 QCString trCallGraph() override
1383 {
1384 return "Bu fonksiyon için çağırılma şeması:";
1385 }
1386
1387//////////////////////////////////////////////////////////////////////////
1388// new since 1.3.3
1389//////////////////////////////////////////////////////////////////////////
1390
1391 /*! This string is used as the title for the page listing the search
1392 * results.
1393 */
1394 QCString trSearchResultsTitle() override
1395 {
1396 return "Arama sonuçları";
1397 }
1398 /*! This string is put just before listing the search results. The
1399 * text can be different depending on the number of documents found.
1400 * Inside the text you can put the special marker $num to insert
1401 * the number representing the actual number of search results.
1402 * The @a numDocuments parameter can be either 0, 1 or 2, where the
1403 * value 2 represents 2 or more matches. HTML markup is allowed inside
1404 * the returned string.
1405 */
1406 QCString trSearchResults(int numDocuments) override
1407 {
1408 if (numDocuments==0)
1409 {
1410 return "Üzgünüm, sorgunuzla eşleşen doküman bulunamadı.";
1411 }
1412 else if (numDocuments==1)
1413 {
1414 return "Sorgunuzla eşleşen <b>1</b> doküman bulundu.";
1415 }
1416 else
1417 {
1418 return "Sorgunuzla eşleşen <b>$num</b> doküman bulundu. "
1419 "Önce en iyi eşleşmeler gösteriliyor.";
1420 }
1421 }
1422 /*! This string is put before the list of matched words, for each search
1423 * result. What follows is the list of words that matched the query.
1424 */
1425 QCString trSearchMatches() override
1426 {
1427 return "Eşleşme:";
1428 }
1429
1430//////////////////////////////////////////////////////////////////////////
1431// new since 1.3.8
1432//////////////////////////////////////////////////////////////////////////
1433
1434 /*! This is used in HTML as the title of page with source code for file filename
1435 */
1436 QCString trSourceFile(const QCString& filename) override
1437 {
1438 return filename + " Kaynak Dosyası";
1439 }
1440
1441//////////////////////////////////////////////////////////////////////////
1442// new since 1.3.9
1443//////////////////////////////////////////////////////////////////////////
1444
1445 /*! This is used as the name of the chapter containing the directory
1446 * hierarchy.
1447 */
1448 QCString trDirIndex() override
1449 { return "Dizin Hiyerarşisi"; }
1450
1451 /*! This is used as the name of the chapter containing the documentation
1452 * of the directories.
1453 */
1454 QCString trDirDocumentation() override
1455 { return "Dizin Dokümantasyonu"; }
1456
1457 /*! This is used as the title of the directory index and also in the
1458 * Quick links of an HTML page, to link to the directory hierarchy.
1459 */
1460 QCString trDirectories() override
1461 { return "Dizinler"; }
1462
1463 /*! This returns the title of a directory page. The name of the
1464 * directory is passed via \a dirName.
1465 */
1466 QCString trDirReference(const QCString &dirName) override
1467 { QCString result=dirName; result+=" Dizin Referansı"; return result; }
1468
1469 /*! This returns the word directory with or without starting capital
1470 * (\a first_capital) and in sigular or plural form (\a singular).
1471 */
1472 QCString trDir(bool first_capital, bool singular) override
1473 {
1474 return createNoun(first_capital, singular, "dizin", "ler");
1475 }
1476
1477//////////////////////////////////////////////////////////////////////////
1478// new since 1.4.1
1479//////////////////////////////////////////////////////////////////////////
1480
1481 /*! This text is added to the documentation when the \\overload command
1482 * is used for a overloaded function.
1483 */
1484 QCString trOverloadText() override
1485 {
1486 return "Bu çok anlamlı (overloaded) bir üye fonksiyondur, "
1487 "tamamlık açısından burada verilmektedir. Yukarıdaki fonksiyondan "
1488 "sadece aldığı argüman(lar) açısından farklıdır.";
1489 }
1490
1491//////////////////////////////////////////////////////////////////////////
1492// new since 1.4.6
1493//////////////////////////////////////////////////////////////////////////
1494
1495 /*! This is used to introduce a caller (or called-by) graph */
1496 QCString trCallerGraph() override
1497 {
1498 return "Bu fonksiyon için çağırılma şeması:";
1499 }
1500
1501 /*! This is used in the documentation of a file/namespace before the list
1502 * of documentation blocks for enumeration values
1503 */
1505 { return "Enümerasyon Dokümantasyonu"; }
1506
1507//////////////////////////////////////////////////////////////////////////
1508// new since 1.5.4 (mainly for Fortran)
1509//////////////////////////////////////////////////////////////////////////
1510
1511 /*! header that is put before the list of member subprograms (Fortran). */
1513 { return "Üye Fonksiyon/Subroutine Dokümantasyonu"; }
1514
1515 /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1516 QCString trCompoundListFortran() override
1517 { return "Veri Tipleri Listesi"; }
1518
1519 /*! This is put above each page as a link to all members of compounds (Fortran). */
1520 QCString trCompoundMembersFortran() override
1521 { return "Veri Alanları"; }
1522
1523 /*! This is an introduction to the annotated compound list (Fortran). */
1525 { return "Kısa tanımlarıyla veri tipleri:"; }
1526
1527 /*! This is an introduction to the page with all data types (Fortran). */
1528 QCString trCompoundMembersDescriptionFortran(bool extractAll) override
1529 {
1530 QCString result="Bu liste tüm ";
1531 if (!extractAll)
1532 {
1533 result+="dokümante edilmiş ";
1534 }
1535 result+="veri tiplerini içerir ve ";
1536 if (!extractAll)
1537 {
1538 result+="her üyeyi veri yapısı dokümantasyonuna bağlar:";
1539 }
1540 else
1541 {
1542 result+="ait oldukları veri tiplerine bağlar:";
1543 }
1544 return result;
1545 }
1546
1547 /*! This is used in LaTeX as the title of the chapter with the
1548 * annotated compound index (Fortran).
1549 */
1550 QCString trCompoundIndexFortran() override
1551 { return "Veri Tipi İndeksi"; }
1552
1553 /*! This is used in LaTeX as the title of the chapter containing
1554 * the documentation of all data types (Fortran).
1555 */
1556 QCString trTypeDocumentation() override
1557 { return "Veri Tipi Dokümantasyonu"; }
1558
1559 /*! This is used in the documentation of a file as a header before the
1560 * list of (global) subprograms (Fortran).
1561 */
1562 QCString trSubprograms() override
1563 { return "Fonksiyonlar/Subroutine\'ler"; }
1564
1565 /*! This is used in the documentation of a file/namespace before the list
1566 * of documentation blocks for subprograms (Fortran)
1567 */
1568 QCString trSubprogramDocumentation() override
1569 { return "Fonksiyon/Subroutine Dokümantasyonu"; }
1570
1571 /*! This is used in the documentation of a file/namespace/group before
1572 * the list of links to documented compounds (Fortran)
1573 */
1574 QCString trDataTypes() override
1575 { return "Veri Tipleri"; }
1576
1577 /*! used as the title of page containing all the index of all modules (Fortran). */
1578 QCString trModulesList() override
1579 { return "Modüller Listesi"; }
1580
1581 /*! used as an introduction to the modules list (Fortran) */
1582 QCString trModulesListDescription(bool extractAll) override
1583 {
1584 QCString result="Bu liste tüm ";
1585 if (!extractAll) result+="dokümante edilmiş ";
1586 result+="modülleri kısa tanımlarıya içerir:";
1587 return result;
1588 }
1589
1590 /*! used as the title of the HTML page of a module/type (Fortran) */
1591 QCString trCompoundReferenceFortran(const QCString &clName,
1592 ClassDef::CompoundType compType,
1593 bool isTemplate) override
1594 {
1595 QCString result=clName;
1596 switch(compType)
1597 {
1598 case ClassDef::Class: result+=" Modül"; break;
1599 case ClassDef::Struct: result+=" Tip"; break;
1600 case ClassDef::Union: result+=" Birleşim(Union)"; break;
1601 case ClassDef::Interface: result+=" Arayüz"; break;
1602 case ClassDef::Protocol: result+=" Protokol"; break;
1603 case ClassDef::Category: result+=" Kategori"; break;
1604 case ClassDef::Exception: result+=" İstisna"; break;
1605 default: break;
1606 }
1607 if (isTemplate) result+=" Şablon";
1608 result+=" Referans";
1609 return result;
1610 }
1611 /*! used as the title of the HTML page of a module (Fortran) */
1612 QCString trModuleReference(const QCString &namespaceName) override
1613 {
1614 QCString result=namespaceName;
1615 result+=" Modül Referansı";
1616 return result;
1617 }
1618
1619 /*! This is put above each page as a link to all members of modules. (Fortran) */
1620 QCString trModulesMembers() override
1621 { return "Modül Üyeleri"; }
1622
1623 /*! This is an introduction to the page with all modules members (Fortran) */
1624 QCString trModulesMemberDescription(bool extractAll) override
1625 {
1626 QCString result="Bu liste tüm ";
1627 if (!extractAll) result+="dokümante edilmiş ";
1628 result+="modül üyelerini içerir ve ";
1629 if (extractAll)
1630 {
1631 result+="her üyeyi modül dokümantasyonuna bağlar:";
1632 }
1633 else
1634 {
1635 result+="ait oldukları modüllere bağlar:";
1636 }
1637 return result;
1638 }
1639
1640 /*! This is used in LaTeX as the title of the chapter with the
1641 * index of all modules (Fortran).
1642 */
1643 QCString trModulesIndex() override
1644 { return "Modüller Indeksi"; }
1645
1646 /*! This is used for translation of the word that will possibly
1647 * be followed by a single name or by a list of names
1648 * of the category.
1649 */
1650 QCString trModule(bool first_capital, bool singular) override
1651 {
1652 return createNoun(first_capital, singular, "modül", "ler");
1653 }
1654 /*! This is put at the bottom of a module documentation page and is
1655 * followed by a list of files that were used to generate the page.
1656 */
1658 bool single) override
1659 { // here s is one of " Module", " Struct" or " Union"
1660 // single is true implies a single file
1661 QCString result="Bu ";
1662 switch(compType)
1663 {
1664 case ClassDef::Class: result+="modül"; break;
1665 case ClassDef::Struct: result+="tip"; break;
1666 case ClassDef::Union: result+="birleşim(union)"; break;
1667 case ClassDef::Interface: result+="arayüz"; break;
1668 case ClassDef::Protocol: result+="protokol"; break;
1669 case ClassDef::Category: result+="kategori"; break;
1670 case ClassDef::Exception: result+="istisna"; break;
1671 default: break;
1672 }
1673 result+=" için dokümantasyon aşağıdaki dosya";
1674 if (single) result+=":"; else result+="lar";
1675 result="dan üretilmiştir:";
1676 return result;
1677 }
1678 /*! This is used for translation of the word that will possibly
1679 * be followed by a single name or by a list of names
1680 * of the category.
1681 */
1682 QCString trType(bool first_capital, bool singular) override
1683 {
1684 return createNoun(first_capital, singular, "tip", "ler");
1685 }
1686 /*! This is used for translation of the word that will possibly
1687 * be followed by a single name or by a list of names
1688 * of the category.
1689 */
1690 QCString trSubprogram(bool first_capital, bool singular) override
1691 {
1692 return createNoun(first_capital, singular, "alt program", "lar");
1693 }
1694
1695 /*! C# Type Constraint list */
1696 QCString trTypeConstraints() override
1697 {
1698 return "Tip Sınırlamaları";
1699 }
1700
1701
1702 //////////////////////////////////////////////////////////////////////////
1703 // new since 1.6.0 (mainly for the new search engine)
1704 //////////////////////////////////////////////////////////////////////////
1705
1706 /*! directory relation for \a name */
1707 QCString trDirRelation(const QCString &name) override
1708 {
1709 return QCString(name)+" İlişkisi";
1710 }
1711
1712 /*! Loading message shown when loading search results */
1713 QCString trLoading() override
1714 {
1715 return "Yüklüyor...";
1716 }
1717
1718 /*! Label used for search results in the global namespace */
1719 QCString trGlobalNamespace() override
1720 {
1721 return "En Üst Seviye";
1722 }
1723
1724 /*! Message shown while searching */
1725 QCString trSearching() override
1726 {
1727 return "Arıyor...";
1728 }
1729
1730 /*! Text shown when no search results are found */
1731 QCString trNoMatches() override
1732 {
1733 return "Eşleşme Yok";
1734 }
1735
1736 //////////////////////////////////////////////////////////////////////////
1737 // new since 1.6.3 (missing items for the directory pages)
1738 //////////////////////////////////////////////////////////////////////////
1739
1740 /*! when clicking a directory dependency label, a page with a
1741 * table is shown. The heading for the first column mentions the
1742 * source file that has a relation to another file.
1743 */
1744 QCString trFileIn(const QCString &name) override
1745 {
1746 return name+" dizinindeki dosya";
1747 }
1748
1749 /*! when clicking a directory dependency label, a page with a
1750 * table is shown. The heading for the second column mentions the
1751 * destination file that is included.
1752 */
1753 QCString trIncludesFileIn(const QCString &name) override
1754 {
1755 return name + " dizinindeki dosyayı kapsıyor";
1756 }
1757
1758 /** Compiles a date string.
1759 * @param year Year in 4 digits
1760 * @param month Month of the year: 1=January
1761 * @param day Day of the Month: 1..31
1762 * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1763 * @param hour Hour of the day: 0..23
1764 * @param minutes Minutes in the hour: 0..59
1765 * @param seconds Seconds within the minute: 0..59
1766 * @param includeTime Include time in the result string?
1767 */
1768 QCString trDateTime(int year,int month,int day,int dayOfWeek,
1769 int hour,int minutes,int seconds,
1770 DateTimeType includeTime) override
1771 {
1772 static const char *days[] = { "Pzt","Sal","Çar","Per","Cma","Cmt","Pzr" };
1773 static const char *months[] = { "Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Ekm","Kas","Ara" };
1774 QCString sdate;
1775 if (includeTime == DateTimeType::DateTime || includeTime == DateTimeType::Date)
1776 {
1777 sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
1778 }
1779 if (includeTime == DateTimeType::DateTime) sdate += " ";
1780 if (includeTime == DateTimeType::DateTime || includeTime == DateTimeType::Time)
1781 {
1782 QCString stime;
1783 stime.sprintf("%.2d:%.2d:%.2d",hour,minutes,seconds);
1784 sdate+=stime;
1785 }
1786 return sdate;
1787 }
1788 QCString trDayOfWeek(int dayOfWeek, bool, bool full) override
1789 {
1790 static const char *days_short[] = { "Pzt", "Sal", "Çar", "Per", "Cum", "Cmt", "Paz" };
1791 static const char *days_full[] = { "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar" };
1792 QCString text = full? days_full[dayOfWeek-1] : days_short[dayOfWeek-1];
1793 return text;
1794 }
1795 QCString trMonth(int month, bool, bool full) override
1796 {
1797 static const char *months_short[] = { "Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara" };
1798 static const char *months_full[] = { "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" };
1799 QCString text = full? months_full[month-1] : months_short[month-1];
1800 return text;
1801 }
1802 QCString trDayPeriod(bool period) override
1803 {
1804 static const char *dayPeriod[] = { "ÖÖ", "ÖS" };
1805 return dayPeriod[period?1:0];
1806 }
1807
1808};
1809
1810#endif
CompoundType
The various compound types.
Definition classdef.h:109
@ Interface
Definition classdef.h:112
@ Exception
Definition classdef.h:115
bool isEmpty() const
Returns TRUE iff the string is empty.
Definition qcstring.h:150
QCString & sprintf(const char *format,...)
Definition qcstring.cpp:29
Adapter class for languages that only contain translations up to version 1.7.5.
QCString trDesignUnitDocumentation() override
QCString createNoun(bool first_capital, bool singular, const QCString &base, const QCString &plurSuffix, const QCString &singSuffix="")
Definition translator.h:782
QCString trDefineDocumentation() override
QCString trRTFCharSet() override
QCString trInclDepGraph(const QCString &fName) override
QCString trExamplesDescription() override
QCString trInclByDepGraph() override
QCString trPage(bool first_capital, bool singular) override
QCString trClassDiagram(const QCString &clName) override
QCString trExamples() override
QCString trVersion() override
QCString trParameters() override
QCString trCompoundMembers() override
QCString trModuleReference(const QCString &namespaceName) override
QCString trRTFGeneralIndex() override
QCString trReferences() override
QCString trDefineValue() override
QCString trDate() override
QCString trDataTypes() override
QCString trCompoundList() override
QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, DateTimeType includeTime) override
Compiles a date string.
QCString trStaticPublicAttribs() override
QCString trPublicMembers() override
QCString trStaticPackageAttribs() override
QCString trModules() override
QCString trDirIndex() override
QCString trProtectedMembers() override
QCString trRTFTableOfContents() override
QCString trImplementedInList(int numEntries) override
QCString trRelatedFunctionDocumentation() override
QCString trMemberEnumerationDocumentation() override
QCString trCompoundIndexFortran() override
QCString trModulesMemberDescription(bool extractAll) override
QCString trFileMembers() override
QCString trNamespaces() override
QCString trCompoundListDescriptionFortran() override
QCString trMemberFunctionDocumentation() override
QCString trDir(bool first_capital, bool singular) override
QCString trCompoundIndex() override
QCString trNamespaceList() override
QCString trClassDocumentation() override
QCString trMemberList() override
QCString trDirectories() override
QCString idLanguage() override
QCString trModulesDescription() override
QCString trMonth(int month, bool, bool full) override
QCString trModulesList() override
QCString trSearch() override
QCString trVariables() override
QCString trStaticPrivateMembers() override
QCString trGotoTextualHierarchy() override
QCString trInheritedByList(int numEntries) override
QCString trLegendDocs() override
QCString trProperties() override
QCString trCallerGraph() override
QCString trEventDocumentation() override
QCString trReferenceManual() override
QCString trPageIndex() override
QCString trCompoundMembersDescription(bool extractAll) override
QCString trPostcondition() override
QCString trNamespaceReference(const QCString &namespaceName) override
QCString trVariableDocumentation() override
QCString trEnumerationValues() override
QCString trNamespace(bool first_capital, bool singular) override
QCString trGeneratedBy() override
QCString trRelatedPagesDescription() override
QCString trRelatedFunctions() override
QCString trNamespaceDocumentation() override
QCString trEnumValue() override
QCString trPrivateTypes() override
QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate) override
QCString trClasses() override
QCString trTodoList() override
QCString trConstructorDocumentation() override
QCString trPublicTypes() override
QCString trPropertyDocumentation() override
QCString trISOLang() override
QCString trDirReference(const QCString &dirName) override
QCString trEnumerationValueDocumentation() override
QCString trBugList() override
QCString trGeneratedAutomatically(const QCString &s) override
QCString trSearchResultsTitle() override
QCString trLoading() override
QCString trMemberDataDocumentation() override
QCString trRelatedSubscript() override
QCString trEvents() override
QCString trCompoundMembersFortran() override
QCString latexLanguageSupportCommand() override
QCString trSince() override
QCString trSignals() override
QCString trPublicAttribs() override
QCString trCompounds() override
QCString trPackageMembers() override
QCString trCollaborationDiagram(const QCString &clName) override
QCString trSubprogram(bool first_capital, bool singular) override
QCString trRemarks() override
QCString trClassHierarchyDescription() override
QCString trFileList() override
QCString trFileReference(const QCString &fileName) override
QCString trTypedefs() override
QCString trTestList() override
QCString trDeprecatedList() override
QCString trPackageListDescription() override
QCString trSeeAlso() override
QCString trCode() override
QCString trMore() override
QCString trInitialValue() override
QCString trDefinedIn() override
QCString trTodo() override
QCString trEnumerationTypeDocumentation() override
QCString trSourceFile(const QCString &filename) override
QCString trModulesMembers() override
QCString trImplementedFromList(int numEntries) override
QCString getLanguageString() override
language codes for Html help
QCString trFileMembersDescription(bool extractAll) override
QCString trMainPage() override
QCString trMemberFunctionDocumentationFortran() override
QCString trReturnValues() override
QCString trStaticPrivateAttribs() override
QCString trIncludingInheritedMembers() override
QCString trReimplementedInList(int numEntries) override
QCString trStaticProtectedMembers() override
QCString trDetailedDescription() override
QCString trDefines() override
QCString trRelatedPages() override
QCString trHierarchicalIndex() override
QCString trModulesListDescription(bool extractAll) override
QCString trModulesIndex() override
QCString trTest() override
QCString trProtectedAttribs() override
QCString trFileListDescription(bool extractAll) override
QCString trWarning() override
QCString trNote() override
QCString trNoMatches() override
QCString trCompoundListFortran() override
QCString trGlobal(bool first_capital, bool singular) override
QCString trWriteList(int numEntries) override
QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single) override
QCString trSearching() override
QCString trDocumentation(const QCString &projName) override
QCString trModule(bool first_capital, bool singular) override
QCString trGraphicalHierarchy() override
QCString trStaticPublicMembers() override
QCString trInvariant() override
QCString trSearchMatches() override
QCString trAuthor(bool first_capital, bool singular) override
QCString trDeprecated() override
QCString trGlobalNamespace() override
QCString trDayPeriod(bool period) override
QCString trCallGraph() override
QCString trPackageAttribs() override
QCString trGotoSourceCode() override
QCString trFunctionDocumentation() override
QCString trDirRelation(const QCString &name) override
QCString trEnumName() override
QCString trDefinedAtLineInSourceFile() override
QCString trPrivateMembers() override
QCString trOverloadText() override
QCString trListOfAllMembers() override
QCString trInheritsList(int numEntries) override
QCString trDetails() override
QCString trModuleDocumentation() override
QCString trProtectedTypes() override
QCString trGeneratedAt(const QCString &date, const QCString &projName) override
QCString trNamespaceMemberDescription(bool extractAll) override
QCString trFile(bool first_capital, bool singular) override
QCString trBug() override
QCString trEnumerations() override
QCString trFileDocumentation() override
QCString trPrivateSlots() override
QCString trRTFansicp() override
QCString trFriends() override
QCString trMemberTypedefDocumentation() override
QCString trSearchResults(int numDocuments) override
QCString trStaticProtectedAttribs() override
QCString trModuleIndex() override
QCString trNamespaceIndex() override
QCString trTypeDocumentation() override
QCString trClassHierarchy() override
QCString trSubprograms() override
QCString trPackages() override
QCString trGotoGraphicalHierarchy() override
QCString trDefinedInSourceFile() override
QCString trFunctions() override
QCString trCompoundListDescription() override
QCString trReturns() override
QCString trNamespaceListDescription(bool extractAll) override
QCString trLegend() override
QCString trPrivateAttribs() override
QCString trReferencedBy() override
QCString trStaticPackageFunctions() override
QCString trDirDocumentation() override
QCString trThisIsTheListOfAllMembers() override
QCString trGroup(bool first_capital, bool singular) override
QCString trPackage(const QCString &name) override
QCString trPackageTypes() override
QCString trTypeConstraints() override
QCString trPageAbbreviation() override
QCString trClass(bool first_capital, bool singular) override
QCString trNamespaceMembers() override
QCString trTypedefDocumentation() override
QCString trIncludesFileIn(const QCString &name) override
QCString trDayOfWeek(int dayOfWeek, bool, bool full) override
QCString trGotoDocumentation() override
QCString trReimplementedFromList(int numEntries) override
QCString trPackageFunctions() override
QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single) override
QCString trProtectedSlots() override
QCString trSubprogramDocumentation() override
QCString trType(bool first_capital, bool singular) override
QCString trPrecondition() override
QCString trFileIndex() override
QCString trAttention() override
QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate) override
QCString trLegendTitle() override
QCString trAll() override
QCString trExceptions() override
QCString trFileIn(const QCString &name) override
QCString trMember(bool first_capital, bool singular) override
QCString trPublicSlots() override
QCString trCompoundMembersDescriptionFortran(bool extractAll) override
#define Config_getBool(name)
Definition config.h:33
DateTimeType
Definition datetime.h:38
QCString generateMarker(int id)
Definition util.cpp:290
QCString getDotImageExtension()
Definition util.cpp:6616