Doxygen
translator_fi.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  *
4  *
5  * Copyright (C) 1997-2015 by Dimitri van Heesch.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation under the terms of the GNU General Public License is hereby
9  * granted. No representations are made about the suitability of this software
10  * for any purpose. It is provided "as is" without express or implied warranty.
11  * See the GNU General Public License for more details.
12  *
13  * Documents produced by Doxygen are derivative works derived from the
14  * input used in their production; they are not affected by this license.
15  *
16  */
17 /*
18 ==================================================================================
19 Suomenkielinen käännös:
20 Olli Korhonen ( -> 0.49-990425) <olli.korhonen@ccc.fi>
21 Antti Laine (0.49-990425 -> ) <antti.a.laine@tut.fi>
22 ==================================================================================
23 1999/10/19
24 * Alustava käännös valmis.
25 
26 * Huom: Kaikille termeille on keksitty käännösvastine, mikä ei ehkä ole
27  kaikissa tapauksissa hyvä ratkaisu, ja parempikin termi voi
28  olla vakiintuneessa käytössä.
29 
30 2008-04-08
31 * Käännetty versioon 1.5.5 asti.
32 2008-08-26
33 * MAX_DOT_GRAPH_HEIGHT poistettu, versio 1.5.6
34 * Tekstit muutettu UTF-8:ksi
35 2009-01-17
36 * versio 1.5.8
37 * Kantaluokka vaihdettu TranslatorEnglishistä Translatoriksi
38 * Enumeraatio -> luettelotyyppi
39 * Paranneltu kieltä ja poistettu kirjoitusvirheitä
40 
41 * Tehtävää:
42  - Termien kokoaminen listaksi ja suomennosten järkevyyden tarkastelu. (lista on jo melko kattava)
43  Author = Tekijä
44  Class = Luokka
45  Compound = Kooste
46  Data = Data
47  Documentation = Dokumentaatio
48  Defines = Määrittelyt
49  Description = Selite
50  Detailed = Yksityiskohtainen
51  Diagram = Kaavio
52  Enum = Luettelotyyppi
53  Exceptions = Poikkeukset
54  File = Tiedosto
55  Friends = Ystävät
56  Functions = Funktiot
57  Hierarchical = Hierarkinen
58  Index = Indeksi
59  Inherits = Perii
60  Member = Jäsen
61  Module = Moduli
62  Namespace = Nimiavaruus
63  Parameters = Parametrit
64  Private = Yksityinen
65  Protected = Suojattu
66  Prototypes = Prototyypit
67  Public = Julkinen
68  Reference Manual= Käsikirja
69  Reimplemented = Uudelleen toteutettu
70  Related = Liittyvä
71  Signals = Signaalit
72  Slots = Vastineet
73  Static = Staattinen
74  Struct = Tietue
75  Typedef = Tyyppimäärittely
76  Union = Yhdiste
77  Variables = Muuttujat
78  - Taivutusmuotojen virheettömyyden tarkastelu prepositioiden korvauskohdissa.
79  - Sanasta sanaan käännöskohtien mielekkyyden tarkastelu valmiista dokumentista.
80  - umlaut vastineiden käyttö scandien kohdalla.
81 
82 positiiviset kommentit otetaan ilolla vastaan.
83 ===================================================================================
84 */
85 
86 #ifndef TRANSLATOR_FI_H
87 #define TRANSLATOR_FI_H
88 
90 {
91  public:
92  /*! This method is used to generate a warning message to signal
93  * the user that the translation of his/her language of choice
94  * needs updating.
95  */
96  /*virtual QCString updateNeededMessage()
97  {
98  return "The Finnish translator is really obsolete.\n"
99  "It was not updated since version 1.0.0. As a result,\n"
100  "some sentences may appear in English.\n\n";
101  }*/
102 
103  // --- Language control methods -------------------
104 
105  /*! Used for identification of the language. The identification
106  * should not be translated. It should be replaced by the name
107  * of the language in English using lower-case characters only
108  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
109  * the identification used in language.cpp.
110  */
111  virtual QCString idLanguage()
112  { return "finnish"; }
113 
114  /*! Used to get the LaTeX command(s) for the language support.
115  * This method should return string with commands that switch
116  * LaTeX to the desired language. For example
117  * <pre>"\\usepackage[german]{babel}\n"
118  * </pre>
119  * or
120  * <pre>"\\usepackage{polski}\n"
121  * "\\usepackage[latin2]{inputenc}\n"
122  * "\\usepackage[T1]{fontenc}\n"
123  * </pre>
124  *
125  * The English LaTeX does not use such commands. Because of this
126  * the empty string is returned in this implementation.
127  */
129  {
130  return "\\usepackage[finnish]{babel}\n";
131  }
132 
133  virtual QCString trISOLang()
134  {
135  return "fi";
136  }
137  // --- Language translation methods -------------------
138 
139  /*! used in the compound documentation before a list of related functions. */
140  virtual QCString trRelatedFunctions()
141  { return "Liittyvät funktiot"; } // "Related Functions";
142 
143  /*! subscript for the related functions. */
144  virtual QCString trRelatedSubscript()
145  { return "(Huomaa, että nämä eivät ole jäsenfunktioita.)"; } // "(Note that these are not member functions.)"
146 
147  /*! header that is put before the detailed description of files, classes and namespaces. */
149  { return "Yksityiskohtainen selite"; } // "Detailed Description"
150 
151  /*! header that is put before the list of typedefs. */
153  // header that is put before the list of typedefs.
154  { return "Jäsentyyppimäärittelyiden dokumentaatio"; } // "Member Typedef Documentation"
155 
156  /*! header that is put before the list of enumerations. */
158  { return "Jäsenluettelotyyppien dokumentaatio"; } // "Member Enumeration Documentation"
159 
160  /*! header that is put before the list of member functions. */
162  { return "Jäsenfunktioiden dokumentaatio"; } // "Member Function Documentation"
163 
164  /*! header that is put before the list of member attributes. */
166  {
167  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
168  {
169  return "Kenttien dokumentaatio"; // "Field Documentation";
170  }
171  else
172  {
173  return "Jäsendatan dokumentaatio"; // "Member Data Documentation"
174  }
175  }
176 
177  /*! this is the text of a link put after brief descriptions. */
178  virtual QCString trMore()
179  { return "Lisää..."; } // "More..."
180 
181  /*! put in the class documentation */
182  virtual QCString trListOfAllMembers()
183  { return "Lista kaikista jäsenistä"; } // "List of all members."
184  virtual QCString trMemberList()
185 
186  /*! used as the title of the "list of all members" page of a class */
187  { return "Jäsenlista"; } // "Member List"
188 
189  /*! this is the first part of a sentence that is followed by a class name */
191  { return "Tämä on lista kaikista jäsenistä luokassa "; } // "This is the complete list of members for "
192 
193  /*! this is the remainder of the sentence after the class name */
195  { return ", sisältäen kaikki perityt jäsenet."; } // ", including all inherited members."
196 
197  /*! this is put at the author sections at the bottom of man pages.
198  * parameter s is name of the project name.
199  */
200  virtual QCString trGeneratedAutomatically(const QCString &s)
201  { QCString result=(QCString)"Automaattisesti luotu Doxygenilla "
202  "lähdekoodista projektille "+s; // "Generated automatically by Doxygen" ... "for" ... "from the sourcecode"
203  //if (s) result+=(QCString)" voor "+s;
204  // tässä on ongelma, kuinka taivuttaa parametria, esim. "Jcad"+"in"; "IFC2VRML konversio"+"n"
205  // mutta ratkaistaan ongelma kätevästi kaksoispisteellä -> "Jcad:n" / "IFC2VRML konversio:n"
206  // lopputulos on vähemmän kökkö ja täysin luettava, mutta ei kuitenkaan täydellinen.
207  //
208  // kierretään ongelma taivuttamalla sanaa projekti :)
209  return result;
210  }
211 
212  /*! put after an enum name in the list of all members */
213  virtual QCString trEnumName()
214  { return "luettelotyypin nimi"; } // "enum name"
215 
216  /*! put after an enum value in the list of all members */
217  virtual QCString trEnumValue()
218  { return "luettelotyypin arvo"; } // "enum value"
219 
220  /*! put after an undocumented member in the list of all members */
221  virtual QCString trDefinedIn()
222  { return "määritelty"; } // "defined in"
223 
224  // quick reference sections
225 
226  /*! This is put above each page as a link to the list of all groups of
227  * compounds or files (see the \\group command).
228  */
229  virtual QCString trModules()
230  { return "Moduulit"; } // "Modules"
231 
232  /*! This is put above each page as a link to the class hierarchy */
233  virtual QCString trClassHierarchy()
234  { return "Luokkahierarkia"; } // "Class Hierarchy"
235 
236  /*! This is put above each page as a link to the list of annotated classes */
237  virtual QCString trCompoundList()
238  {
239  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
240  {
241  return "Tietueet"; // "Data Structures"
242  }
243  else
244  {
245  return "Luokkalista"; // "Class List"
246  }
247  }
248 
249  /*! This is put above each page as a link to the list of documented files */
250  virtual QCString trFileList()
251  { return "Tiedostolista"; } // "File List"
252 
253  /*! This is put above each page as a link to all members of compounds. */
254  virtual QCString trCompoundMembers()
255  {
256  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
257  {
258  return "Tietueen kentät"; // "Data Fields"
259  }
260  else
261  {
262  return "Luokan jäsenet"; // "Class Members"
263  }
264  }
265 
266  /*! This is put above each page as a link to all members of files. */
267  virtual QCString trFileMembers()
268  {
269  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
270  {
271  return "Globaalit"; // "Globals"
272  }
273  else
274  {
275  return "Tiedoston jäsenet"; // "File Members"
276  }
277  }
278 
279  /*! This is put above each page as a link to all related pages. */
280  virtual QCString trRelatedPages()
281  { return "Liittyvät sivut"; } // "Related Pages"
282 
283  /*! This is put above each page as a link to all examples. */
284  virtual QCString trExamples()
285  { return "Esimerkit"; } // "Examples"
286 
287  /*! This is put above each page as a link to the search engine. */
288  virtual QCString trSearch()
289  { return "Etsi"; } // "Search"
290 
291  /*! This is an introduction to the class hierarchy. */
293  { return "Tämä periytymislista on päätasoltaan aakkostettu " // "This inheritance list is sorted roughly, "
294  "mutta alijäsenet on aakkostettu itsenäisesti:"; // "but not completely, alphabetically:";
295  }
296 
297  /*! This is an introduction to the list with all files. */
298  virtual QCString trFileListDescription(bool extractAll)
299  {
300  QCString result="Tässä on lista kaikista ";
301  if (!extractAll) result+="dokumentoiduista "; // "documented "
302  result+="tiedostoista lyhyen selitteen kanssa:"; // "files with brief descriptions:"
303  return result;
304  }
305 
306  /*! This is an introduction to the annotated compound list. */
308  {
309 
310  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
311  {
312  return "Tässä ovat tietueet lyhyen selitteen kanssa:"; // "Here are the data structures with brief descriptions:"
313  }
314  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
315  {
316  return "Tässä ovat luokat " // "Here are the classes
317  "lyhyen selitteen kanssa:"; // "with brief descriptions:"
318  }
319  else
320  {
321  return "Tässä ovat luokat, tietueet ja " // "Here are the classes, structs and "
322  "yhdisteet lyhyen selitteen kanssa:"; // "unions with brief descriptions:"
323  }
324  }
325 
326  /*! This is an introduction to the page with all class members. */
327  virtual QCString trCompoundMembersDescription(bool extractAll)
328  {
329  QCString result="Tässä on lista kaikista "; // "Here is a list of all "
330  if (!extractAll)
331  {
332  result+="dokumentoiduista "; // "documented "
333  }
334  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
335  {
336  result+="tietuiden ja yhdisteiden kentistä"; // "struct and union fields"
337  }
338  else
339  {
340  result+="luokkien jäsenistä"; // "class members"
341  }
342  result+=" linkitettyinä "; // " with links to "
343  if (!extractAll)
344  {
345  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
346  {
347  result+="jokaisen kentän tietueen/yhdisteen dokumentaatioon:"; // "the struct/union documentation for each field:"
348  }
349  else
350  {
351  result+="jokaisen jäsenen luokkadokumentaatioon:"; // "the class documentation for each member:"
352  }
353  }
354  else
355  {
356  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
357  {
358  result+= "tietueisiin/yhdisteisiin, joihin ne kuuluvat:"; // "the structures/unions they belong to:"
359  }
360  else
361  {
362  result+="luokkiin, joihin ne kuuluvat"; //"the classes they belong to:"
363  }
364  }
365  return result;
366  }
367 
368  /*! This is an introduction to the page with all file members. */
369  virtual QCString trFileMembersDescription(bool extractAll)
370  {
371  QCString result="Tässä on lista kaikista "; // "Here is a list of all "
372  if (!extractAll) result+="dokumentoiduista "; // "documented "
373 
374  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
375  {
376  result+="funktioista, muuttujista, määrittelyistä, luettelotyypeistä ja tyyppimäärittelyistä"; // "functions, variables, defines, enums, and typedefs"
377  }
378  else
379  {
380  result+="tiedoston jäsenistä"; // "file members"
381  }
382  result+=" linkitettyinä "; // " with links to "
383  if (extractAll)
384  result+="tiedostoihin, joihin ne kuuluvat:"; // "the files they belong to:"
385  else
386  result+="dokumentaatioon:"; // "the documentation:"
387  return result;
388  }
389 
390  /*! This is an introduction to the page with the list of all examples */
392  { return "Tässä on lista kaikista esimerkeistä:"; } // "Here is a list of all examples:"
393 
394  /*! This is an introduction to the page with the list of related pages */
396  { return "Tässä on lista kaikista liittyvistä dokumentaatiosivuista:"; } // "Here is a list of all related documentation pages:"
397 
398  /*! This is an introduction to the page with the list of class/file groups */
400  { return "Tässä on lista kaikista moduleista:"; } // "Here is a list of all modules:"
401 
402  // index titles (the project name is prepended for these)
403 
404  /*! This is used in HTML as the title of index.html. */
405  virtual QCString trDocumentation()
406  { return "Dokumentaatio"; } // "Documentation"
407 
408  /*! This is used in LaTeX as the title of the chapter with the
409  * index of all groups.
410  */
411  virtual QCString trModuleIndex()
412  { return "Moduuliluettelo"; } // "Module Index"
413 
414  /*! This is used in LaTeX as the title of the chapter with the
415  * class hierarchy.
416  */
417  virtual QCString trHierarchicalIndex()
418  { return "Hierarkinen luettelo"; } // "Hierarchical Index"
419 
420  /*! This is used in LaTeX as the title of the chapter with the
421  * annotated compound index.
422  */
423  virtual QCString trCompoundIndex()
424  {
425  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
426  {
427  return "Tietueluettelo"; // "Data Structure Index"
428  }
429  else
430  {
431  return "Luokkaluettelo"; // "Class Index"
432  }
433  }
434 
435  /*! This is used in LaTeX as the title of the chapter with the
436  * list of all files.
437  */
439  { return "Tiedostoluettelo"; } // "File Index"
440 
441  /*! This is used in LaTeX as the title of the chapter containing
442  * the documentation of all groups.
443  */
445  { return "Moduulien dokumentaatio"; } // "Module Documentation"
446 
447  /*! This is used in LaTeX as the title of the chapter containing
448  * the documentation of all classes, structs and unions.
449  */
451  {
452  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
453  {
454  return "Tietueiden dokumentaatio"; // "Data Structure Documentation"
455  }
456  else
457  {
458  return "Luokkien dokumentaatio"; // "Class Documentation"
459  }
460  }
461 
462  /*! This is used in LaTeX as the title of the chapter containing
463  * the documentation of all files.
464  */
466  { return "Tiedostojen dokumentaatio"; } // "File Documentation"
467 
468  /*! This is used in LaTeX as the title of the chapter containing
469  * the documentation of all examples.
470  */
472  { return "Esimerkkien dokumentaatio"; } // "Example Documentation"
473 
474  /*! This is used in LaTeX as the title of the chapter containing
475  * the documentation of all related pages.
476  */
477  virtual QCString trPageDocumentation()
478  { return "Sivujen dokumentaatio"; } // "Page Documentation"
479 
480  /*! This is used in LaTeX as the title of the document */
481  virtual QCString trReferenceManual()
482  { return "Käsikirja"; } // "Reference Manual"
483 
484  /*! This is used in the documentation of a file as a header before the
485  * list of defines
486  */
487  virtual QCString trDefines()
488  { return "Määrittelyt"; } // "Defines"
489 
490  /*! This is used in the documentation of a file as a header before the
491  * list of typedefs
492  */
493  virtual QCString trTypedefs()
494  { return "Tyyppimäärittelyt"; } // "Typedefs"
495 
496  /*! This is used in the documentation of a file as a header before the
497  * list of enumerations
498  */
499  virtual QCString trEnumerations()
500  { return "Luettelotyypit"; } // "Enumerations"
501 
502  /*! This is used in the documentation of a file as a header before the
503  * list of (global) functions
504  */
505  virtual QCString trFunctions()
506  { return "Funktiot"; } // "Functions"
507 
508  /*! This is used in the documentation of a file as a header before the
509  * list of (global) variables
510  */
511  virtual QCString trVariables()
512  { return "Muuttujat"; } // "Variables"
513 
514  /*! This is used in the documentation of a file as a header before the
515  * list of (global) variables
516  */
517  virtual QCString trEnumerationValues()
518  { return "Luettelotyyppien arvot"; } // "Enumerator"
519 
520  /*! This is used in the documentation of a file before the list of
521  * documentation blocks for defines
522  */
524  { return "Määritysten dokumentointi"; } // "Define Documentation"
525 
526  /*! This is used in the documentation of a file/namespace before the list
527  * of documentation blocks for typedefs
528  */
530  { return "Tyyppimääritysten dokumentaatio"; } // "Typedef Documentation"
531 
532  /*! This is used in the documentation of a file/namespace before the list
533  * of documentation blocks for enumeration types
534  */
536  { return "Luettelotyyppien dokumentaatio"; } // "Enumeration Type Documentation"
537 
538  /*! This is used in the documentation of a file/namespace before the list
539  * of documentation blocks for functions
540  */
542  { return "Funktioiden dokumentaatio"; } // "Function Documentation"
543 
544  /*! This is used in the documentation of a file/namespace before the list
545  * of documentation blocks for variables
546  */
548  { return "Muuttujien dokumentaatio"; } // "Variable Documentation"
549 
550  /*! This is used in the documentation of a file/namespace/group before
551  * the list of links to documented compounds
552  */
553  virtual QCString trCompounds()
554  {
555  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
556  {
557  return "Tietueet"; // "Data Structures"
558  }
559  else
560  {
561  return "Luokat"; // "Classes"
562  }
563  }
564 
565  /*! This is used in the standard footer of each page and indicates when
566  * the page was generated
567  */
568  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
569  {
570  // funktio on hiukan vaikea kääntää prepositioihin sidotun rakenteen vuoksi.
571  // Muutetaan siis lauserakennetta suomalaisemmaksi
572  // Generated on $date for $project by:
573  // -> Generated for $project on $date by:
574  QCString result=(QCString)"Generoinut ";
575  if (!projName.isEmpty()) result+=(QCString)"projektille "+projName+" ";
576  result+=(QCString)date+" ";
577  return result;
578  }
579 
580  /*! this text is put before a class diagram */
581  virtual QCString trClassDiagram(const QCString &clName)
582  {
583  return "Luokan "+(QCString)clName+" luokkakaavio"; // "Inheritance diagram for "
584  }
585 
586  /*! this text is generated when the \\internal command is used. */
588  { return "Vain sisäiseen käyttöön."; } // "For internal use only."
589 
590  /*! this text is generated when the \\warning command is used. */
591  virtual QCString trWarning()
592  { return "Varoitus"; } // "Warning"
593 
594  /*! this text is generated when the \\version command is used. */
595  virtual QCString trVersion()
596  { return "Versio"; } // "Version"
597 
598  /*! this text is generated when the \\date command is used. */
599  virtual QCString trDate()
600  { return "Päiväys"; } // "Date"
601 
602  /*! this text is generated when the \\return command is used. */
603  virtual QCString trReturns()
604  { return "Palauttaa"; } // "Returns"
605 
606  /*! this text is generated when the \\sa command is used. */
607  virtual QCString trSeeAlso()
608  { return "Katso myös"; } // "See also"
609 
610  /*! this text is generated when the \\param command is used. */
611  virtual QCString trParameters()
612  { return "Parametrit"; } // "Parameters"
613 
614  /*! this text is generated when the \\exception command is used. */
615  virtual QCString trExceptions()
616  { return "Poikkeukset"; } // "Exceptions"
617 
618  /*! this text is used in the title page of a LaTeX document. */
619  virtual QCString trGeneratedBy()
620  { return "Generoinut"; } // "Generated by"
621 
622 //////////////////////////////////////////////////////////////////////////
623 // new since 0.49-990307
624 //////////////////////////////////////////////////////////////////////////
625 
626  /*! used as the title of page containing all the index of all namespaces. */
627  virtual QCString trNamespaceList()
628  { return "Nimiavaruus Lista"; } // "Namespace List"
629 
630  /*! used as an introduction to the namespace list */
631  virtual QCString trNamespaceListDescription(bool extractAll)
632  {
633  QCString result="Tässä on lista kaikista "; // "Here is a list of all "
634  if (!extractAll) result+="dokumentoiduista "; // "documented "
635  result+="nimiavaruuksista lyhyen selitteen kanssa:"; // "namespaces with brief descriptions:"
636  return result;
637  }
638 
639  /*! used in the class documentation as a header before the list of all
640  * friends of a class
641  */
642  virtual QCString trFriends()
643  { return "Ystävät"; } // "Friends"
644 
645 //////////////////////////////////////////////////////////////////////////
646 // new since 0.49-990405
647 //////////////////////////////////////////////////////////////////////////
648 
649  /*! used in the class documentation as a header before the list of all
650  * related classes
651  */
653  { return "Ystävät ja niihin liittyvien funktioiden dokumentaatio"; } // "Friends And Related Function Documentation"
654 
655 //////////////////////////////////////////////////////////////////////////
656 // new since 0.49-990425
657 //////////////////////////////////////////////////////////////////////////
658 
659  /*! used as the title of the HTML page of a class/struct/union */
660  virtual QCString trCompoundReference(const QCString &clName,
661  ClassDef::CompoundType compType,
662  bool isTemplate)
663  {
664  QCString result=(QCString)clName;
665  switch(compType)
666  {
667  case ClassDef::Class: result+=" luokka"; break; // " Class"
668  case ClassDef::Struct: result+=" tietue"; break; // " Struct"
669  case ClassDef::Union: result+=" yhdiste"; break; // " Union"
670  case ClassDef::Interface: result+=" rajapinta"; break; // " Interface"
671  case ClassDef::Protocol: result+=" protokolla"; break; // " Protocol"
672  case ClassDef::Category: result+=" kategoria"; break; // " Category"
673  case ClassDef::Exception: result+=" poikkeus"; break; // " Exception"
674  default: break;
675  }
676  if (isTemplate) result+="malli"; // " Template"
677  result+="referenssi"; // " Reference"
678  return result;
679  }
680 
681  /*! used as the title of the HTML page of a file */
682  virtual QCString trFileReference(const QCString &fileName)
683  {
684  QCString result=fileName;
685  result+=" tiedostoreferenssi"; // " File Reference"
686  return result;
687  }
688 
689  /*! used as the title of the HTML page of a namespace */
690  virtual QCString trNamespaceReference(const QCString &namespaceName)
691  {
692  QCString result=namespaceName;
693  result+=" nimiavaruusreferenssi"; // " Namespace Reference"
694  return result;
695  }
696 
698  { return "Julkiset jäsenfunktiot"; } // "Public Member Functions"
699  virtual QCString trPublicSlots()
700  { return "Julkiset vastineet"; } // "Public Slots"
701  virtual QCString trSignals()
702  { return "Signaalit"; } // "Signals"
704  { return "Staattiset julkiset jäsenfunktiot"; } // "Static Public Member Functions"
706  { return "Suojatut jäsenfunktiot"; } // "Protected Member Functions"
707  virtual QCString trProtectedSlots()
708  { return "Suojatut vastineet"; } // "Protected Slots"
710  { return "Staattiset suojatut jäsenfunktiot"; } // "Static Protected Member Functions"
711  virtual QCString trPrivateMembers()
712  { return "Yksityiset jäsenfunktiot"; } // "Private Member Functions"
713  virtual QCString trPrivateSlots()
714  { return "Yksityiset vastineet"; } // "Private Slots"
716  { return "Staattiset yksityiset jäsenfunktiot"; } // "Static Private Member Functions"
717 
718  /*! this function is used to produce a comma-separated list of items.
719  * use generateMarker(i) to indicate where item i should be put.
720  */
721  virtual QCString trWriteList(int numEntries)
722  {
723  QCString result;
724  int i;
725  // the inherits list contain `numEntries' classes
726  for (i=0;i<numEntries;i++)
727  {
728  // use generateMarker to generate placeholders for the class links!
729  result+=generateMarker(i); // generate marker for entry i in the list
730  // (order is left to right)
731 
732  if (i!=numEntries-1) // not the last entry, so we need a separator
733  {
734  if (i<numEntries-2) // not the fore last entry
735  result+=", ";
736  else // the fore last entry
737  result+=" ja "; // ", and "
738  }
739  }
740  return result;
741  }
742 
743  /*! used in class documentation to produce a list of base classes,
744  * if class diagrams are disabled.
745  */
746  virtual QCString trInheritsList(int numEntries)
747  {
748  return (QCString)"Periytyy "+(numEntries > 1 ? "luokista " : "luokasta ")+trWriteList(numEntries)+"."; // "Inherits "
749  }
750 
751  /*! used in class documentation to produce a list of super classes,
752  * if class diagrams are disabled.
753  */
754  virtual QCString trInheritedByList(int numEntries)
755  {
756  return (QCString)"Periytetään "+(numEntries > 1 ? "luokissa " : "luokassa ")+trWriteList(numEntries)+"."; // "Inherited by "
757  }
758 
759  /*! used in member documentation blocks to produce a list of
760  * members that are hidden by this one.
761  */
762  virtual QCString trReimplementedFromList(int numEntries)
763  {
764  return (QCString)"Uudelleentoteuttaa "+(numEntries > 1 ? "luokat " : "luokan ")+trWriteList(numEntries)+"."; // "Reimplemented from "
765  }
766 
767  /*! used in member documentation blocks to produce a list of
768  * all member that overwrite the implementation of this member.
769  */
770  virtual QCString trReimplementedInList(int numEntries)
771  {
772  return (QCString)"Uudelleentoteutetaan "+(numEntries > 1 ? "luokissa " : "luokassa ")+trWriteList(numEntries)+"."; // "Reimplemented in "
773  }
774 
775  /*! This is put above each page as a link to all members of namespaces. */
776  virtual QCString trNamespaceMembers()
777  { return "Nimiavaruuden jäsenet"; } // "Namespace Members"
778 
779  /*! This is an introduction to the page with all namespace members */
780  virtual QCString trNamespaceMemberDescription(bool extractAll)
781  {
782  QCString result="Tässä on lista kaikista "; // "Here is a list of all "
783  if (!extractAll) result+="dokumentoiduista "; // "documented "
784  result+="nimiavaruuden jäsenistä linkitettynä "; // "namespace members with links to "
785  if (extractAll)
786  result+="nimiavaruuden dokumentaatioon johon ne kuuluvat:"; // "the namespace documentation for each member:";
787  else
788  result+="nimiavaruuksiin joihin ne kuuluvat:"; // "the namespaces they belong to:"
789  return result;
790  }
791  /*! This is used in LaTeX as the title of the chapter with the
792  * index of all namespaces.
793  */
794  virtual QCString trNamespaceIndex()
795  { return "Nimiavaruuksien luettelo"; } // "Namespace Index"
796 
797  /*! This is used in LaTeX as the title of the chapter containing
798  * the documentation of all namespaces.
799  */
801  { return "Nimiavaruuden dokumentaatio"; } // "Namespace Documentation"
802 
803 //////////////////////////////////////////////////////////////////////////
804 // new since 0.49-990522
805 //////////////////////////////////////////////////////////////////////////
806 
807  /*! This is used in the documentation before the list of all
808  * namespaces in a file.
809  */
810  virtual QCString trNamespaces()
811  { return "Nimiavaruudet"; } // "Namespaces"; }
812 
813 //////////////////////////////////////////////////////////////////////////
814 // new since 0.49-990728
815 //////////////////////////////////////////////////////////////////////////
816 
817  /*! This is put at the bottom of a class documentation page and is
818  * followed by a list of files that were used to generate the page.
819  */
821  bool single)
822  { // here s is one of " Class", " Struct" or " Union"
823  // single is true implies a single file
824  QCString result=(QCString)"Dokumentaatio tälle "; // "The documentation for this "
825  switch(compType)
826  {
827  case ClassDef::Class: result+="luokalle"; break; // "class"
828  case ClassDef::Struct: result+="tietueelle"; break; // "struct"
829  case ClassDef::Union: result+="yhdisteelle"; break; // "union"
830  case ClassDef::Interface: result+="rajapinnalle"; break; // "interface"
831  case ClassDef::Protocol: result+="protokollalle"; break; // "protocol"
832  case ClassDef::Category: result+="kategorialle"; break; // "category"
833  case ClassDef::Exception: result+="poikkeukselle"; break; // "exception"
834  default: break;
835  }
836  if (single) result+=" luotiin seuraavasta tiedostosta:"; // " was generated from the following file"
837  else result+=" luotiin seuraavista tiedostoista:"; // ":" or "s:"
838  return result;
839  }
840 
841 //////////////////////////////////////////////////////////////////////////
842 // new since 0.49-990901
843 //////////////////////////////////////////////////////////////////////////
844 
845  /*! This is used as the heading text for the retval command. */
846  virtual QCString trReturnValues()
847  { return "Paluuarvot"; } // "Return values"
848 
849  /*! This is in the (quick) index as a link to the main page (index.html)
850  */
851  virtual QCString trMainPage()
852  { return "Pääsivu"; } // "Main Page"
853 
854  /*! This is used in references to page that are put in the LaTeX
855  * documentation. It should be an abbreviation of the word page.
856  */
857  virtual QCString trPageAbbreviation()
858  { return "s."; } // "p."
859 
860 //////////////////////////////////////////////////////////////////////////
861 // new since 0.49-991003
862 //////////////////////////////////////////////////////////////////////////
863 
865  {
866  return "Määrittely tiedoston @1 rivillä @0."; // "Definition at line @0 of file @1."
867  }
869  {
870  return "Määrittely tiedostossa @0."; // "Definition in file @0."
871  }
872 
873 //////////////////////////////////////////////////////////////////////////
874 // new since 0.49-991205
875 //////////////////////////////////////////////////////////////////////////
876 
877  virtual QCString trDeprecated()
878  {
879  return "Vanhentunut"; // "Deprecated"
880  }
881 
882 //////////////////////////////////////////////////////////////////////////
883 // new since 1.0.0
884 //////////////////////////////////////////////////////////////////////////
885 
886  /*! this text is put before a collaboration diagram */
887  virtual QCString trCollaborationDiagram(const QCString &clName)
888  {
889  return (QCString)"Yhteistyökaavio luokalle "+clName+":"; // "Collaboration diagram for "+clName+":"
890  }
891  /*! this text is put before an include dependency graph */
892  virtual QCString trInclDepGraph(const QCString &fName)
893  {
894  return (QCString)"Sisällytysriippuvuuskaavio tiedostolle "+fName+":"; // "Include dependency graph for "+fName+":"
895  }
896  /*! header that is put before the list of constructor/destructors. */
898  {
899  return "Rakentajien & purkajien dokumentaatio"; // "Constructor & Destructor Documentation";
900  }
901  /*! Used in the file documentation to point to the corresponding sources. */
903  {
904  return "Siirry tämän tiedoston lähdekoodiin."; // "Go to the source code of this file."
905  }
906  /*! Used in the file sources to point to the corresponding documentation. */
908  {
909  return "Siirry tämän tiedoston dokumentaatioon."; // "Go to the documentation of this file."
910  }
911  /*! Text for the \\pre command */
913  {
914  return "Esiehto"; //"Precondition"
915  }
916  /*! Text for the \\post command */
918  {
919  return "Jälkiehto"; // "Postcondition"
920  }
921  /*! Text for the \\invariant command */
923  {
924  return "Invariantti"; // vai "Pysyväisväittämä"? "Invariant"
925  }
926  /*! Text shown before a multi-line variable/enum initialization */
928  {
929  return "Alkuarvo:"; // "Initial value:"
930  }
931  /*! Text used the source code in the file index */
932  virtual QCString trCode()
933  {
934  return "koodi"; // "code"
935  }
937  {
938  return "Graafinen luokkahierarkia"; // "Graphical Class Hierarchy"
939  }
941  {
942  return "Siirry graafiseen luokkahierarkiaan"; // "Go to the graphical class hierarchy"
943  }
945  {
946  return "Siirry tekstimuotoiseen luokkahierarkiaan"; // "Go to the textual class hierarchy"
947  }
948  virtual QCString trPageIndex()
949  {
950  return "Sivuhakemisto"; // "Page Index"
951  }
952 
953 //////////////////////////////////////////////////////////////////////////
954 // new since 1.1.0
955 //////////////////////////////////////////////////////////////////////////
956 
957  virtual QCString trNote()
958  {
959  // FIXME: Missähän merkityksessä tätä käytetään?
960  return "Huomautus"; // "Note"
961  }
962  virtual QCString trPublicTypes()
963  {
964  return "Julkiset tyypit"; // "Public Types"
965  }
966  virtual QCString trPublicAttribs()
967  {
968  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
969  {
970  return "Tietueen kentät"; // "Data Fields"
971  }
972  else
973  {
974  return "Julkiset attribuutit"; // "Public Attributes"
975  }
976  }
978  {
979  return "Staattiset julkiset attribuutit"; // "Static Public Attributes"
980  }
982  {
983  return "Suojellut tyypit"; // "Protected Types"
984  }
985  virtual QCString trProtectedAttribs()
986  {
987  return "Suojellut attribuutit"; // "Protected Attributes"
988  }
990  {
991  return "Staattiset suojellut attribuutit"; // "Static Protected Attributes"
992  }
993  virtual QCString trPrivateTypes()
994  {
995  return "Yksityiset tyypit"; // "Private Types"
996  }
997  virtual QCString trPrivateAttribs()
998  {
999  return "Yksityiset attribuutit"; // "Private Attributes"
1000  }
1002  {
1003  return "Staattiset yksityiset attribuutit"; // "Static Private Attributes"
1004  }
1005 
1006 //////////////////////////////////////////////////////////////////////////
1007 // new since 1.1.3
1008 //////////////////////////////////////////////////////////////////////////
1009 
1010  /*! Used as a marker that is put before a \\todo item */
1011  virtual QCString trTodo()
1012  {
1013  return "Vielä tehtävänä"; // "Todo"
1014  }
1015  /*! Used as the header of the todo list */
1017  {
1018  return "Tehtävälista"; // "Todo List"
1019  }
1020 
1021 //////////////////////////////////////////////////////////////////////////
1022 // new since 1.1.4
1023 //////////////////////////////////////////////////////////////////////////
1024 
1025  virtual QCString trReferencedBy()
1026  {
1027  return "Viitattu"; // "Referenced by"
1028  }
1029  virtual QCString trRemarks()
1030  {
1031  return "Huomioita"; // "Remarks"
1032  }
1033  virtual QCString trAttention()
1034  {
1035  return "Huomio"; // "Attention"
1036  }
1037  virtual QCString trInclByDepGraph()
1038  {
1039  return "Tämä kaavio näyttää, mitkä tiedostot suorasti "
1040  "tai epäsuorasti sisällyttävät tämän tiedoston";
1041  // "This graph shows which files directly or "
1042  // "indirectly include this file:"
1043  }
1044  virtual QCString trSince()
1045  {
1046  // FIXME: Missä merkityksessä tätä käytetään?
1047  return "Lähtien"; // "Since"
1048  }
1049 
1050 //////////////////////////////////////////////////////////////////////////
1051 // new since 1.1.5
1052 //////////////////////////////////////////////////////////////////////////
1053 
1054  /*! title of the graph legend page */
1055  virtual QCString trLegendTitle()
1056  {
1057  return "Kaavion selite"; // "Graph Legend"
1058  }
1059  /*! page explaining how the dot graph's should be interpreted
1060  * The %A in the text below are to prevent link to classes called "A".
1061  */
1062  virtual QCString trLegendDocs()
1063  {
1064  return
1065  "Tämä sivu selittää, kuinka doxygenin luomia kaavioita tulkitaan.<p>\n"
1066  // "This page explains how to interpret the graphs that are generated "
1067  // "by doxygen.<p>\n"
1068  "Ajattele seuraavaa esimerkkiä:\n"
1069  // "Consider the following example:\n"
1070  "\\code\n"
1071  "/*! Näkymätön luokka katkaisun vuoksi */\n"
1072  // "/*! Invisible class because of truncation */\n"
1073  "class Nakymaton { };\n\n"
1074  // "class Invisible { };\n\n"
1075  "/*! Katkaistu luokka, periytymissuhde on piilotettu */\n"
1076  // "/*! Truncated class, inheritance relation is hidden */\n"
1077  "class Katkaistu : public Nakymaton { };\n\n"
1078  // "class Truncated : public Invisible { };\n\n"
1079  "/* Luokkaa ei ole dokumentoitu doxygen-kommenteilla */\n"
1080  // "/* Class not documented with doxygen comments */\n"
1081  "class Dokumentoimaton { };\n\n"
1082  // "class Undocumented { };\n\n"
1083  "/*! Julkista periyttämistä käyttäen periytetty luokka */\n"
1084  // "/*! Class that is inherited using public inheritance */\n"
1085  "class JulkinenKanta : public Katkaistu { };\n\n"
1086  // "class PublicBase : public Truncated { };\n\n"
1087  "/*! Malliluokka */\n"
1088  // "/*! A template class */\n"
1089  "template<class T> class Malli { };\n\n"
1090  // "template<class T> class Templ { };\n\n"
1091  "/*! Suojeltua periytymistä käyttäen periytetty luokka */\n"
1092  // "/*! Class that is inherited using protected inheritance */\n"
1093  "class SuojeltuKanta { };\n\n"
1094  // "class ProtectedBase { };\n\n"
1095  "/*! Yksityistä periytymistä käyttäen periytetty luokka */\n"
1096  // "/*! Class that is inherited using private inheritance */\n"
1097  "class YksityisKanta { };\n\n"
1098  // "class PrivateBase { };\n\n"
1099  "/*! Luokka jota periytetty luokka käyttää */\n"
1100  // "/*! Class that is used by the Inherited class */\n"
1101  "class Kaytetty { };\n\n"
1102  // "class Used { };\n\n"
1103  "/*! Kantaluokka joka periytyy useasta muusta luokasta */\n"
1104  // "/*! Super class that inherits a number of other classes */\n"
1105  "class Periytetty : public JulkinenKanta,\n"
1106  " : protected SuojeltuKanta,\n"
1107  " : private YksityisKanta,\n"
1108  " : public Dokumentoimaton,\n"
1109  " : public Malli<int>\n"
1110  "{\n"
1111  " private:\n"
1112  " Kaytetty *m_kaytettyLuokka;\n"
1113  "}\n"
1114  // "class Inherited : public PublicBase,\n"
1115  // " protected ProtectedBase,\n"
1116  // " private PrivateBase,\n"
1117  // " public Undocumented,\n"
1118  // " public Templ<int>\n"
1119  // "{\n"
1120  // " private:\n"
1121  // " Used *m_usedClass;\n"
1122  // "};\n"
1123  "\\endcode\n"
1124  "Tuloksena on seuraavanlainen kaavio:"
1125  //"This will result in the following graph:"
1126  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1127  "<p>\n"
1128  "Ylläolevassa kaaviossa laatikoilla on seuraavat merkitykset\n:"
1129  // "The boxes in the above graph have the following meaning:\n"
1130  "<ul>\n"
1131  "<li>Täytetty harmaa laatikko esittää tietuetta tai luokkaa, jolle "
1132  // "<li>%A filled gray box represents the struct or class for which the "
1133  "kaavio on luotu.\n"
1134  // "graph is generated.\n"
1135  "<li>Mustareunainen laatikko merkitsee dokumentoitua tietuetta tai luokkaa.\n"
1136  // "<li>%A box with a black border denotes a documented struct or class.\n"
1137  "<li>Harmaareunainen laatikko merkitsee dokumentoimatonta tietuetta tai luokkaa.\n"
1138  // "<li>%A box with a grey border denotes an undocumented struct or class.\n"
1139  "<li>Punareunainen laatikko merkistee dokumentoitua luokkaa tai structia "
1140  // "<li>%A box with a red border denotes a documented struct or class for"
1141  "jolle ei näytetä kaikkia periytymis-/sisällyssuhteita. Kaavio "
1142  // "which not all inheritance/containment relations are shown. %A graph is "
1143  "katkaistaan, jos se ei mahdu määriteltyjen rajojen sisään.\n"
1144  // "truncated if it does not fit within the specified boundaries.\n"
1145  "</ul>\n"
1146  "Nuolilla on seuraavat merkitykset:\n"
1147  // "The arrows have the following meaning:\n"
1148  "<ul>\n"
1149  "<li>Tummansinistä nuolta käytetään osoittamaan julkista periytymis"
1150  // "<li>%A dark blue arrow is used to visualize a public inheritance "
1151  "suhdetta kahden luokan välillä.\n"
1152  // "relation between two classes.\n"
1153  "<li>Tummanvihreää nuolta käytetään suojellussa periytymisessä.\n"
1154  // "<li>%A dark green arrow is used for protected inheritance.\n"
1155  "<li>Tummanpunaista nuolta käytetään yksityisessä periytymisessä.\n"
1156  // "<li>%A dark red arrow is used for private inheritance.\n"
1157  "<li>Purppuranväristä katkoviivaa käytetään, jos luokka sisältyy tai "
1158  // "<li>%A purple dashed arrow is used if a class is contained or used "
1159  "on toisen luokan käyttämä. Nuoli nimetään sillä muuttujalla/muuttujilla "
1160  // "by another class. The arrow is labeled with the variable(s) "
1161  "jonka läpi osoitettua luokkaa tai tietuetta käytetään.\n"
1162  // "through which the pointed class or struct is accessible.\n"
1163  "<li>Keltainen katkoviivalla piirretty nuoli merkitsee suhdetta mallin esiintymän ja "
1164  // "<li>%A yellow dashed arrow denotes a relation between a template instance and "
1165  "malliluokan välillä. Nuoli nimetään "
1166  // "the template class it was instantiated from. The arrow is labeled with "
1167  "mallin esiintymän malliparametrilla.\n"
1168  // "the template parameters of the instance.\n"
1169  "</ul>\n";
1170  }
1171  /*! text for the link to the legend page */
1172  virtual QCString trLegend()
1173  {
1174  return "selite"; // "legend"
1175  }
1176 
1177 //////////////////////////////////////////////////////////////////////////
1178 // new since 1.2.0
1179 //////////////////////////////////////////////////////////////////////////
1180 
1181  /*! Used as a marker that is put before a test item */
1182  virtual QCString trTest()
1183  {
1184  return "Testi"; // "Test"
1185  }
1186  /*! Used as the header of the test list */
1188  {
1189  return "Testilista"; // "Test List"
1190  }
1191 
1192 //////////////////////////////////////////////////////////////////////////
1193 // new since 1.2.2
1194 //////////////////////////////////////////////////////////////////////////
1195 
1196  /*! Used as a section header for IDL properties */
1198  {
1199  return "Ominaisuudet"; // "Properties"
1200  }
1201  /*! Used as a section header for IDL property documentation */
1203  {
1204  return "Ominaisuuksien dokumentaatio"; // "Property Documentation"
1205  }
1206 
1207 //////////////////////////////////////////////////////////////////////////
1208 // new since 1.2.4
1209 //////////////////////////////////////////////////////////////////////////
1210 
1211  /*! Used for Java classes in the summary section of Java packages */
1213  {
1214  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1215  {
1216  return "Tietueet"; // "Data Structures"
1217  }
1218  else
1219  {
1220  return "Luokat"; // "Classes"
1221  }
1222  }
1223  /*! Used as the title of a Java package */
1224  virtual QCString trPackage(const QCString &name)
1225  {
1226  return (QCString)"Paketti "+name; // "Package "
1227  }
1228  /*! Title of the package index page */
1229  virtual QCString trPackageList()
1230  {
1231  return "Pakettilista"; // "Package List"
1232  }
1233  /*! The description of the package index page */
1235  {
1236  return "Tässä ovat paketit lyhyiden selitysten kanssa (jos saatavilla):"; // "Here are the packages with brief descriptions (if available):"
1237  }
1238  /*! The link name in the Quick links header for each page */
1240  {
1241  return "Paketit"; // "Packages"
1242  }
1243  /*! Text shown before a multi-line define */
1245  {
1246  return "Arvo:"; // "Value:"
1247  }
1248 
1249 //////////////////////////////////////////////////////////////////////////
1250 // new since 1.2.5
1251 //////////////////////////////////////////////////////////////////////////
1252 
1253  /*! Used as a marker that is put before a \\bug item */
1254  virtual QCString trBug()
1255  {
1256  return "Bugi"; // "Bug"
1257  }
1258  /*! Used as the header of the bug list */
1260  {
1261  return "Bugilista"; // "Bug List"
1262  }
1263 
1264 //////////////////////////////////////////////////////////////////////////
1265 // new since 1.2.6
1266 //////////////////////////////////////////////////////////////////////////
1267 
1268  /*! Used as ansicpg for RTF file
1269  *
1270  * The following table shows the correlation of Charset name, Charset Value and
1271  * <pre>
1272  * Codepage number:
1273  * Charset Name Charset Value(hex) Codepage number
1274  * ------------------------------------------------------
1275  * DEFAULT_CHARSET 1 (x01)
1276  * SYMBOL_CHARSET 2 (x02)
1277  * OEM_CHARSET 255 (xFF)
1278  * ANSI_CHARSET 0 (x00) 1252
1279  * RUSSIAN_CHARSET 204 (xCC) 1251
1280  * EE_CHARSET 238 (xEE) 1250
1281  * GREEK_CHARSET 161 (xA1) 1253
1282  * TURKISH_CHARSET 162 (xA2) 1254
1283  * BALTIC_CHARSET 186 (xBA) 1257
1284  * HEBREW_CHARSET 177 (xB1) 1255
1285  * ARABIC _CHARSET 178 (xB2) 1256
1286  * SHIFTJIS_CHARSET 128 (x80) 932
1287  * HANGEUL_CHARSET 129 (x81) 949
1288  * GB2313_CHARSET 134 (x86) 936
1289  * CHINESEBIG5_CHARSET 136 (x88) 950
1290  * </pre>
1291  *
1292  */
1293  virtual QCString trRTFansicp()
1294  {
1295  return "1252";
1296  }
1297 
1298 
1299  /*! Used as ansicpg for RTF fcharset
1300  * \see trRTFansicp() for a table of possible values.
1301  */
1302  virtual QCString trRTFCharSet()
1303  {
1304  return "0";
1305  }
1306 
1307  /*! Used as header RTF general index */
1309  {
1310  return "Hakemisto"; // "Index"
1311  }
1312 
1313  /*! This is used for translation of the word that will possibly
1314  * be followed by a single name or by a list of names
1315  * of the category.
1316  */
1317  virtual QCString trClass(bool first_capital, bool singular)
1318  {
1319  QCString result((first_capital ? "Luokka" : "luokka")); // "Class" / "class"
1320  if (!singular) result=(first_capital ? "Luokat" : "luokat"); // "+es" -> "Classes" / "classes"
1321  return result;
1322  }
1324  /*! This is used for translation of the word that will possibly
1325  * be followed by a single name or by a list of names
1326  * of the category.
1327  */
1328  virtual QCString trFile(bool first_capital, bool singular)
1329  {
1330  QCString result((first_capital ? "Tiedosto" : "tiedosto")); // "File" / "file"
1331  if (!singular) result+="t"; // "+s" -> "Files" / "files"
1332  return result;
1333  }
1334 
1335  /*! This is used for translation of the word that will possibly
1336  * be followed by a single name or by a list of names
1337  * of the category.
1338  */
1339  virtual QCString trNamespace(bool first_capital, bool singular)
1340  {
1341  QCString result((first_capital ? "Nimiavaruus" : "nimiavaruus")); // "Namespace" / "namespace"
1342  if (!singular) result=(first_capital ? "Nimiavaruudet" : "nimiavaruudet"); // "+s"
1343  return result;
1344  }
1345 
1346  /*! This is used for translation of the word that will possibly
1347  * be followed by a single name or by a list of names
1348  * of the category.
1349  */
1350  virtual QCString trGroup(bool first_capital, bool singular)
1351  {
1352  QCString result((first_capital ? "Ryhmä" : "ryhmä")); // "Group" / "group"
1353  if (!singular) result+="t"; // "+s"
1354  return result;
1355  }
1356 
1357  /*! This is used for translation of the word that will possibly
1358  * be followed by a single name or by a list of names
1359  * of the category.
1360  */
1361  virtual QCString trPage(bool first_capital, bool singular)
1362  {
1363  QCString result((first_capital ? "Sivu" : "sivu")); // "Page" / "page"
1364  if (!singular) result+="t"; // "+s"
1365  return result;
1366  }
1367 
1368  /*! This is used for translation of the word that will possibly
1369  * be followed by a single name or by a list of names
1370  * of the category.
1371  */
1372  virtual QCString trMember(bool first_capital, bool singular)
1373  {
1374  QCString result((first_capital ? "Jäsen" : "jäsen")); // "Member" / "member"
1375  if (!singular) result+="et"; // "+s"
1376  return result;
1377  }
1378 
1379  /*! This is used for translation of the word that will possibly
1380  * be followed by a single name or by a list of names
1381  * of the category.
1382  */
1383  virtual QCString trGlobal(bool first_capital, bool singular)
1384  {
1385  QCString result((first_capital ? "Globaali" : "globaali")); // "Global" / "global"
1386  if (!singular) result+="t"; // "+s"
1387  return result;
1388  }
1389 
1390 //////////////////////////////////////////////////////////////////////////
1391 // new since 1.2.7
1392 //////////////////////////////////////////////////////////////////////////
1393 
1394  /*! This text is generated when the \\author command is used and
1395  * for the author section in man pages. */
1396  virtual QCString trAuthor(bool first_capital, bool singular)
1397  {
1398  QCString result((first_capital ? "Tekijä" : "tekijä")); // "Author" / "author"
1399  if (!singular) result+="t"; // "+s"
1400  return result;
1401  }
1402 
1403 //////////////////////////////////////////////////////////////////////////
1404 // new since 1.2.11
1405 //////////////////////////////////////////////////////////////////////////
1406 
1407  /*! This text is put before the list of members referenced by a member
1408  */
1409  virtual QCString trReferences()
1410  {
1411  return "Viittaukset"; // "References"
1412  }
1413 
1414 //////////////////////////////////////////////////////////////////////////
1415 // new since 1.2.13
1416 //////////////////////////////////////////////////////////////////////////
1417 
1418  /*! used in member documentation blocks to produce a list of
1419  * members that are implemented by this one.
1420  */
1421  virtual QCString trImplementedFromList(int numEntries)
1422  {
1423  return "Toteuttaa luokan "+trWriteList(numEntries)+"."; // "Implements "
1424  }
1425 
1426  /*! used in member documentation blocks to produce a list of
1427  * all members that implement this abstract member.
1428  */
1429  virtual QCString trImplementedInList(int numEntries)
1430  {
1431  return "Toteutettu luokassa "+trWriteList(numEntries)+"."; // "Implemented in "
1432  }
1433 
1434 //////////////////////////////////////////////////////////////////////////
1435 // new since 1.2.16
1436 //////////////////////////////////////////////////////////////////////////
1437 
1438  /*! used in RTF documentation as a heading for the Table
1439  * of Contents.
1440  */
1441  virtual QCString trRTFTableOfContents()
1442  {
1443  return "Sisällysluettelo"; // "Table of Contents"
1444  }
1445 
1446 //////////////////////////////////////////////////////////////////////////
1447 // new since 1.2.17
1448 //////////////////////////////////////////////////////////////////////////
1449 
1450  /*! Used as the header of the list of item that have been
1451  * flagged deprecated
1452  */
1453  virtual QCString trDeprecatedList()
1454  {
1455  return "Vanhentuneiden lista"; // "Deprecated List"
1456  }
1457 
1458 //////////////////////////////////////////////////////////////////////////
1459 // new since 1.2.18
1460 //////////////////////////////////////////////////////////////////////////
1461 
1462  /*! Used as a header for declaration section of the events found in
1463  * a C# program
1464  */
1465  virtual QCString trEvents()
1466  {
1467  return "Tapahtumat"; // "Events"
1468  }
1469  /*! Header used for the documentation section of a class' events. */
1470  virtual QCString trEventDocumentation()
1471  {
1472  return "Tapahtumien dokumentaatio"; // "Event Documentation"
1473  }
1474 
1475 //////////////////////////////////////////////////////////////////////////
1476 // new since 1.3
1477 //////////////////////////////////////////////////////////////////////////
1478 
1479  /*! Used as a heading for a list of Java class types with package scope.
1480  */
1481  virtual QCString trPackageTypes()
1482  {
1483  return "Paketin tyypit"; // "Package Types"
1484  }
1485  /*! Used as a heading for a list of Java class functions with package
1486  * scope.
1487  */
1488  virtual QCString trPackageMembers()
1489  {
1490  return "Paketin funktiot"; // "Package Functions"
1491  }
1492  /*! Used as a heading for a list of static Java class functions with
1493  * package scope.
1494  */
1496  {
1497  return "Paketin staattiset funktiot"; // "Static Package Functions"
1498  }
1499  /*! Used as a heading for a list of Java class variables with package
1500  * scope.
1501  */
1502  virtual QCString trPackageAttribs()
1503  {
1504  return "Paketin attribuutit"; // "Package Attributes"
1505  }
1506  /*! Used as a heading for a list of static Java class variables with
1507  * package scope.
1508  */
1510  {
1511  return "Paketin staattiset attribuutit"; // "Static Package Attributes"
1512  }
1513 
1514 //////////////////////////////////////////////////////////////////////////
1515 // new since 1.3.1
1516 //////////////////////////////////////////////////////////////////////////
1518  /*! Used in the quick index of a class/file/namespace member list page
1519  * to link to the unfiltered list of all members.
1520  */
1521  virtual QCString trAll()
1522  {
1523  return "Kaikki"; // "All"
1524  }
1525  /*! Put in front of the call graph for a function. */
1526  virtual QCString trCallGraph()
1527  {
1528  return "Tässä on kutsukaavio tälle funktiolle:"; // "Here is the call graph for this function:"
1529  }
1530 
1531 //////////////////////////////////////////////////////////////////////////
1532 // new since 1.3.3
1533 //////////////////////////////////////////////////////////////////////////
1534 
1535  /*! This string is used as the title for the page listing the search
1536  * results.
1537  */
1538  virtual QCString trSearchResultsTitle()
1539  {
1540  return "Hakutulokset"; // "Search Results"
1541  }
1542  /*! This string is put just before listing the search results. The
1543  * text can be different depending on the number of documents found.
1544  * Inside the text you can put the special marker $num to insert
1545  * the number representing the actual number of search results.
1546  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1547  * value 2 represents 2 or more matches. HTML markup is allowed inside
1548  * the returned string.
1549  */
1550  virtual QCString trSearchResults(int numDocuments)
1551  {
1552  if (numDocuments==0)
1553  {
1554  return "Valitettavasti yksikään dokumentti ei vastannut hakuasi."; // "Sorry, no documents matching your query."
1555  }
1556  else if (numDocuments==1)
1557  {
1558  return "Löytyi <b>1</b> dokumentti, joka vastasi hakuasi."; // "Found <b>1</b> document matching your query.";
1559  }
1560  else
1561  {
1562  return "Löytyi <b>$num</b> dokumenttia, jotka vastasivat hakuasi. " // "Found <b>$num</b> documents matching your query. "
1563  "Parhaat tulokset näytetään ensin."; // "Showing best matches first."
1564  }
1565  }
1566  /*! This string is put before the list of matched words, for each search
1567  * result. What follows is the list of words that matched the query.
1568  */
1569  virtual QCString trSearchMatches()
1570  {
1571  return "Osumat:"; // "Matches:"
1572  }
1573 
1574 //////////////////////////////////////////////////////////////////////////
1575 // new since 1.3.8
1576 //////////////////////////////////////////////////////////////////////////
1577 
1578  /*! This is used in HTML as the title of page with source code for file filename
1579  */
1580  virtual QCString trSourceFile(QCString& filename)
1581  {
1582  return filename + " lähdekooditiedosto"; // " Source File"
1583  }
1585 //////////////////////////////////////////////////////////////////////////
1586 // new since 1.3.9
1587 //////////////////////////////////////////////////////////////////////////
1588 
1589  /*! This is used as the name of the chapter containing the directory
1590  * hierarchy.
1591  */
1592  virtual QCString trDirIndex()
1593  { return "Hakemistohierarkia"; } // "Directory Hierarchy"
1594 
1595  /*! This is used as the name of the chapter containing the documentation
1596  * of the directories.
1597  */
1598  virtual QCString trDirDocumentation()
1599  { return "Hakemistojen dokumentaatio"; } // "Directory Documentation"
1600 
1601  /*! This is used as the title of the directory index and also in the
1602  * Quick links of an HTML page, to link to the directory hierarchy.
1603  */
1604  virtual QCString trDirectories()
1605  { return "Hakemistot"; } // "Directories"
1606 
1607  /*! This returns a sentences that introduces the directory hierarchy.
1608  * and the fact that it is sorted alphabetically per level
1609  */
1610  virtual QCString trDirDescription()
1611  { return "Tämä hakemistohierarkia on järjestetty aakkosellisesti tasoittain:";
1612  //This directory hierarchy is sorted roughly, "
1613  // "but not completely, alphabetically:";
1614  }
1615 
1616  /*! This returns the title of a directory page. The name of the
1617  * directory is passed via \a dirName.
1618  */
1619  virtual QCString trDirReference(const QCString &dirName)
1620  { QCString result=dirName; result+=" hakemistoreferenssi"; return result; }
1621  // " Directory Reference"
1622 
1623  /*! This returns the word directory with or without starting capital
1624  * (\a first_capital) and in sigular or plural form (\a singular).
1625  */
1626  virtual QCString trDir(bool first_capital, bool singular)
1627  {
1628  QCString result((first_capital ? "Hakemisto" : "hakemisto")); // "Director" / "director"
1629  if (singular) result+=""; else result+="t"; // "+y" / "+ies"
1630  return result;
1631  }
1632 
1633 //////////////////////////////////////////////////////////////////////////
1634 // new since 1.4.1
1635 //////////////////////////////////////////////////////////////////////////
1636 
1637  /*! This text is added to the documentation when the \\overload command
1638  * is used for a overloaded function.
1639  */
1640  virtual QCString trOverloadText()
1641  {
1642  return "Tämä on ylikuormitettu jäsenfunktio, ja se tarjotaan "
1643  "käytön helpottamiseksi. Se eroaa ylläolevasta "
1644  "funktiosta ainoastaan hyväksymiltään parametreilta.";
1645  // "This is an overloaded member function, "
1646  // "provided for convenience. It differs from the above "
1647  // "function only in what argument(s) it accepts."
1648  }
1649 
1650 //////////////////////////////////////////////////////////////////////////
1651 // new since 1.4.6
1652 //////////////////////////////////////////////////////////////////////////
1653 
1654  /*! This is used to introduce a caller (or called-by) graph */
1656  {
1657  return "Tässä on kutsukaavio tälle funktiolle:"; // "Here is the caller graph for this function:"
1658  }
1659 
1660  /*! This is used in the documentation of a file/namespace before the list
1661  * of documentation blocks for enumeration values
1662  */
1664  { return "Luettelotyypin dokumentaatio"; } // "Enumerator Documentation"
1665 
1666 //////////////////////////////////////////////////////////////////////////
1667 // new since 1.5.4 (mainly for Fortran)
1668 //////////////////////////////////////////////////////////////////////////
1669 
1670  /*! header that is put before the list of member subprograms (Fortran). */
1672  { return "Jäsenfunktioiden/aliohjelmien dokumentaatio"; } // "Member Function/Subroutine Documentation"
1673 
1674  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1676  { return "Tietotyyppien lista"; } // "Data Types List"
1677 
1678  /*! This is put above each page as a link to all members of compounds (Fortran). */
1680  { return "Kentät"; } // "Data Fields";
1681 
1682  /*! This is an introduction to the annotated compound list (Fortran). */
1684  { return "Tässä ovat tietotyypit lyhyiden selitysten kanssa:"; } // "Here are the data types with brief descriptions:"
1685 
1686  /*! This is an introduction to the page with all data types (Fortran). */
1687  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1688  {
1689  QCString result="Tässä on lista kaikista "; // "Here is a list of all "
1690  if (!extractAll)
1691  {
1692  result+="dokumentoiduista "; // "documented "
1693  }
1694  result+="tietotyyppien jäsenistä"; // "data types members"
1695  result+=", sekä linkit "; // " with links to "
1696  if (!extractAll)
1697  {
1698  result+="tietueen dokumentaatioon jokaiselle jäsenelle"; // "the data structure documentation for each member"
1699  }
1700  else
1701  {
1702  result+="tietotyyppeihin, joihin ne kuuluvat:"; // "the data types they belong to:"
1703  }
1704  return result;
1705  }
1706 
1707  /*! This is used in LaTeX as the title of the chapter with the
1708  * annotated compound index (Fortran).
1709  */
1711  { return "Tietotyyppien hakemisto"; } // "Data Type Index"
1712 
1713  /*! This is used in LaTeX as the title of the chapter containing
1714  * the documentation of all data types (Fortran).
1715  */
1716  virtual QCString trTypeDocumentation()
1717  { return "Tietotyyppien dokumentaatio"; } // "Data Type Documentation"
1718 
1719  /*! This is used in the documentation of a file as a header before the
1720  * list of (global) subprograms (Fortran).
1721  */
1722  virtual QCString trSubprograms()
1723  { return "Funktiot/aliohjelmat"; } // "Functions/Subroutines"
1724 
1725  /*! This is used in the documentation of a file/namespace before the list
1726  * of documentation blocks for subprograms (Fortran)
1727  */
1729  { return "Funktioiden/aliohjelmien dokumentaatio"; } // "Function/Subroutine Documentation"
1730 
1731  /*! This is used in the documentation of a file/namespace/group before
1732  * the list of links to documented compounds (Fortran)
1733  */
1734  virtual QCString trDataTypes()
1735  { return "Tietotyypit"; } // "Data Types"
1736 
1737  /*! used as the title of page containing all the index of all modules (Fortran). */
1738  virtual QCString trModulesList()
1739  { return "Moduulilista"; } // "Modules List"
1740 
1741  /*! used as an introduction to the modules list (Fortran) */
1742  virtual QCString trModulesListDescription(bool extractAll)
1743  {
1744  QCString result="Tässä on lista kaikista "; // "Here is a list of all "
1745  if (!extractAll) result+="dokumentoiduista "; // "documented "
1746  result+="moduuleista lyhyiden selitysten kanssa:"; // "modules with brief descriptions:"
1747  return result;
1748  }
1750  /*! used as the title of the HTML page of a module/type (Fortran) */
1751  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1752  ClassDef::CompoundType compType,
1753  bool isTemplate)
1754  {
1755  QCString result=(QCString)clName;
1756  switch(compType)
1757  {
1758  case ClassDef::Class: result+=" moduuli"; break; // " Module"
1759  case ClassDef::Struct: result+=" tyyppi"; break; // " Type"
1760  case ClassDef::Union: result+=" yhdiste"; break; // " Union"
1761  case ClassDef::Interface: result+=" rajapinta"; break; // " Interface"
1762  case ClassDef::Protocol: result+=" protokolla"; break; // " Protocol"
1763  case ClassDef::Category: result+=" kategoria"; break; // " Category"
1764  case ClassDef::Exception: result+=" poikkeus"; break; // " Exception"
1765  default: break;
1766  }
1767  if (isTemplate) result+="malli"; // " Template"
1768  result+="referenssi"; // " Reference"
1769  return result;
1770  }
1771  /*! used as the title of the HTML page of a module (Fortran) */
1772  virtual QCString trModuleReference(const QCString &namespaceName)
1773  {
1774  QCString result=namespaceName;
1775  result+=" moduulin referenssi"; // " Module Reference"
1776  return result;
1777  }
1778 
1779  /*! This is put above each page as a link to all members of modules. (Fortran) */
1780  virtual QCString trModulesMembers()
1781  { return "Moduulin jäsenet"; } // "Module Members"
1782 
1783  /*! This is an introduction to the page with all modules members (Fortran) */
1784  virtual QCString trModulesMemberDescription(bool extractAll)
1785  {
1786  QCString result="Tässä on lista moduulin kaikista "; // "Here is a list of all "
1787  if (!extractAll) result+="dokumentoiduista"; // "documented "
1788  result+="jäsenistä, sekä linkit "; // "module members with links to "
1789  if (extractAll)
1790  {
1791  result+="moduulin dokumentaatioon jokaiselle jäsenelle:"; // "the module documentation for each member:"
1792  }
1793  else
1794  {
1795  result+="moduuleihin, joihin ne kuuluvat:"; // "the modules they belong to:"
1796  }
1797  return result;
1798  }
1800  /*! This is used in LaTeX as the title of the chapter with the
1801  * index of all modules (Fortran).
1802  */
1803  virtual QCString trModulesIndex()
1804  { return "Moduulien hakemisto"; } // "Modules Index"
1805 
1806  /*! This is used for translation of the word that will possibly
1807  * be followed by a single name or by a list of names
1808  * of the category.
1809  */
1810  virtual QCString trModule(bool first_capital, bool singular)
1811  {
1812  QCString result((first_capital ? "Moduuli" : "moduuli")); // "Module" / "module"
1813  if (!singular) result+="t"; // "+s"
1814  return result;
1815  }
1816  /*! This is put at the bottom of a module documentation page and is
1817  * followed by a list of files that were used to generate the page.
1818  */
1820  bool single)
1821  { // here s is one of " Module", " Struct" or " Union"
1822  // single is true implies a single file
1823  QCString result=(QCString)"Dokumentaatio tälle "; // "The documentation for this "
1824  switch(compType)
1825  {
1826  case ClassDef::Class: result+="moduulille"; break; // "module"
1827  case ClassDef::Struct: result+="tyypille"; break; // "type"
1828  case ClassDef::Union: result+="yhdisteelle"; break; // "union"
1829  case ClassDef::Interface: result+="rajapinnalle"; break; // "interface"
1830  case ClassDef::Protocol: result+="protokollalle"; break; // "protocol"
1831  case ClassDef::Category: result+="kategorialle"; break; // "category"
1832  case ClassDef::Exception: result+="poikkeukselle"; break; // "exception"
1833  default: break;
1834  }
1835  result+=" luotiin "; // " was generated from the following file"
1836  if (single) result+="seuraavasta tiedostosta:"; else result+="seuraavista tiedostoista:"; // ":" / "s:"
1837  return result;
1838  }
1839  /*! This is used for translation of the word that will possibly
1840  * be followed by a single name or by a list of names
1841  * of the category.
1842  */
1843  virtual QCString trType(bool first_capital, bool singular)
1844  {
1845  QCString result((first_capital ? "Tyyppi" : "tyyppi")); // "Type" / "type"
1846  if (!singular) result=(first_capital ? "Tyypit" : "tyypit"); // "+s"
1847  return result;
1848  }
1849  /*! This is used for translation of the word that will possibly
1850  * be followed by a single name or by a list of names
1851  * of the category.
1852  */
1853  virtual QCString trSubprogram(bool first_capital, bool singular)
1854  {
1855  QCString result((first_capital ? "Aliohjelma" : "aliohjelma")); // "Subprogram" / "subprogram"
1856  if (!singular) result+="t"; // "+s"
1857  return result;
1858  }
1859 
1860  /*! C# Type Constraint list */
1861  virtual QCString trTypeConstraints()
1862  {
1863  return "Tyyppien rajoitteet"; // "Type Constraints"
1864  }
1865 
1866 };
1867 
1868 #endif
TranslatorFinnish::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_fi.h:769
TranslatorFinnish::trReturnValues
virtual QCString trReturnValues()
Definition: translator_fi.h:861
TranslatorFinnish::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_fi.h:1686
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorFinnish::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_fi.h:1868
TranslatorFinnish::trTypedefs
virtual QCString trTypedefs()
Definition: translator_fi.h:508
TranslatorFinnish::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_fi.h:215
TranslatorFinnish::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_fi.h:622
TranslatorFinnish::trTodo
virtual QCString trTodo()
Definition: translator_fi.h:1026
TranslatorFinnish::trFunctions
virtual QCString trFunctions()
Definition: translator_fi.h:520
TranslatorFinnish
Definition: translator_fi.h:89
TranslatorFinnish::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_fi.h:922
TranslatorFinnish::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_fi.h:248
TranslatorFinnish::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_fi.h:426
TranslatorFinnish::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_fi.h:544
TranslatorFinnish::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_fi.h:342
TranslatorFinnish::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_fi.h:1731
TranslatorFinnish::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_fi.h:1070
TranslatorFinnish::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_fi.h:809
TranslatorFinnish::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_fi.h:1825
TranslatorFinnish::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_fi.h:981
TranslatorFinnish::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_fi.h:197
TranslatorFinnish::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_fi.h:646
TranslatorFinnish::trAll
virtual QCString trAll()
Definition: translator_fi.h:1536
TranslatorFinnish::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_fi.h:556
TranslatorFinnish::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_fi.h:1818
TranslatorFinnish::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_fi.h:1584
TranslatorFinnish::trExceptions
virtual QCString trExceptions()
Definition: translator_fi.h:630
TranslatorFinnish::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_fi.h:1743
TranslatorFinnish::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_fi.h:1517
TranslatorFinnish::trSignals
virtual QCString trSignals()
Definition: translator_fi.h:716
TranslatorFinnish::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_fi.h:205
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorFinnish::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_fi.h:951
TranslatorFinnish::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_fi.h:143
TranslatorFinnish::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_fi.h:736
TranslatorFinnish::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_fi.h:159
TranslatorFinnish::trFileIndex
virtual QCString trFileIndex()
Definition: translator_fi.h:453
TranslatorFinnish::trFileMembers
virtual QCString trFileMembers()
Definition: translator_fi.h:282
TranslatorFinnish::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_fi.h:1858
TranslatorFinnish::trPostcondition
virtual QCString trPostcondition()
Definition: translator_fi.h:932
TranslatorFinnish::trEnumerations
virtual QCString trEnumerations()
Definition: translator_fi.h:514
TranslatorFinnish::trRemarks
virtual QCString trRemarks()
Definition: translator_fi.h:1044
TranslatorFinnish::trDate
virtual QCString trDate()
Definition: translator_fi.h:614
TranslatorFinnish::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_fi.h:712
TranslatorFinnish::trCode
virtual QCString trCode()
Definition: translator_fi.h:947
TranslatorFinnish::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_fi.h:1398
TranslatorFinnish::trMainPage
virtual QCString trMainPage()
Definition: translator_fi.h:866
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorFinnish::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_fi.h:1249
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorFinnish::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_fi.h:642
TranslatorFinnish::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_fi.h:1000
TranslatorFinnish::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_fi.h:1876
TranslatorFinnish::trDefineValue
virtual QCString trDefineValue()
Definition: translator_fi.h:1259
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorFinnish::trReferences
virtual QCString trReferences()
Definition: translator_fi.h:1424
TranslatorFinnish::trDirIndex
virtual QCString trDirIndex()
Definition: translator_fi.h:1607
TranslatorFinnish::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_fi.h:720
TranslatorFinnish::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_fi.h:1834
TranslatorFinnish::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_fi.h:1343
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorFinnish::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_fi.h:1766
TranslatorFinnish::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_fi.h:959
TranslatorFinnish::trAttention
virtual QCString trAttention()
Definition: translator_fi.h:1048
TranslatorFinnish::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_fi.h:1239
TranslatorFinnish::trPackages
virtual QCString trPackages()
Definition: translator_fi.h:1254
TranslatorFinnish::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_fi.h:176
TranslatorFinnish::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_fi.h:1332
TranslatorFinnish::trDocumentation
virtual QCString trDocumentation()
Definition: translator_fi.h:420
TranslatorFinnish::trPageIndex
virtual QCString trPageIndex()
Definition: translator_fi.h:963
TranslatorFinnish::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_fi.h:761
TranslatorFinnish::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_fi.h:1698
TranslatorFinnish::trPackageList
virtual QCString trPackageList()
Definition: translator_fi.h:1244
TranslatorFinnish::trMore
virtual QCString trMore()
Definition: translator_fi.h:193
TranslatorFinnish::trVersion
virtual QCString trVersion()
Definition: translator_fi.h:610
TranslatorFinnish::trCompoundList
virtual QCString trCompoundList()
Definition: translator_fi.h:252
TranslatorFinnish::trOverloadText
virtual QCString trOverloadText()
Definition: translator_fi.h:1655
TranslatorFinnish::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_fi.h:907
TranslatorFinnish::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_fi.h:1376
TranslatorFinnish::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_fi.h:1456
TranslatorFinnish::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_fi.h:295
TranslatorFinnish::trEvents
virtual QCString trEvents()
Definition: translator_fi.h:1480
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorFinnish::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_fi.h:1040
TranslatorFinnish::trVariables
virtual QCString trVariables()
Definition: translator_fi.h:526
TranslatorFinnish::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_fi.h:1725
TranslatorFinnish::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_fi.h:1016
TranslatorFinnish::trMemberList
virtual QCString trMemberList()
Definition: translator_fi.h:199
TranslatorFinnish::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_fi.h:459
TranslatorFinnish::trProperties
virtual QCString trProperties()
Definition: translator_fi.h:1212
TranslatorFinnish::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_fi.h:438
TranslatorFinnish::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_fi.h:714
TranslatorFinnish::trPrecondition
virtual QCString trPrecondition()
Definition: translator_fi.h:927
TranslatorFinnish::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_fi.h:902
TranslatorFinnish::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_fi.h:996
TranslatorFinnish::trDeprecated
virtual QCString trDeprecated()
Definition: translator_fi.h:892
TranslatorFinnish::trInitialValue
virtual QCString trInitialValue()
Definition: translator_fi.h:942
TranslatorFinnish::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_fi.h:728
TranslatorFinnish::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_fi.h:977
TranslatorFinnish::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_fi.h:602
TranslatorFinnish::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_fi.h:1799
TranslatorFinnish::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_fi.h:667
TranslatorFinnish::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_fi.h:955
TranslatorFinnish::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_fi.h:163
TranslatorFinnish::trFileList
virtual QCString trFileList()
Definition: translator_fi.h:265
TranslatorFinnish::trFriends
virtual QCString trFriends()
Definition: translator_fi.h:657
TranslatorFinnish::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_fi.h:1217
TranslatorFinnish::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_fi.h:1077
TranslatorFinnish::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_fi.h:465
TranslatorFinnish::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_fi.h:1354
TranslatorFinnish::trTestList
virtual QCString trTestList()
Definition: translator_fi.h:1202
TranslatorFinnish::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_fi.h:835
TranslatorFinnish::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_fi.h:532
TranslatorFinnish::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_fi.h:414
TranslatorFinnish::trEnumValue
virtual QCString trEnumValue()
Definition: translator_fi.h:232
TranslatorFinnish::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_fi.h:583
TranslatorFinnish::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_fi.h:167
TranslatorFinnish::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_fi.h:410
TranslatorFinnish::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_fi.h:155
TranslatorFinnish::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_fi.h:322
TranslatorFinnish::trCallGraph
virtual QCString trCallGraph()
Definition: translator_fi.h:1541
TranslatorFinnish::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_fi.h:730
TranslatorFinnish::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_fi.h:486
TranslatorFinnish::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_fi.h:791
TranslatorFinnish::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_fi.h:1510
TranslatorFinnish::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_fi.h:1553
TranslatorFinnish::trDefines
virtual QCString trDefines()
Definition: translator_fi.h:502
TranslatorFinnish::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_fi.h:596
TranslatorFinnish::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_fi.h:1595
TranslatorFinnish::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_fi.h:432
TranslatorFinnish::idLanguage
virtual QCString idLanguage()
Definition: translator_fi.h:126
TranslatorFinnish::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_fi.h:785
TranslatorFinnish::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_fi.h:209
TranslatorFinnish::trNamespaces
virtual QCString trNamespaces()
Definition: translator_fi.h:825
TranslatorFinnish::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_fi.h:1757
TranslatorFinnish::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_fi.h:815
TranslatorFinnish::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_fi.h:562
TranslatorFinnish::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_fi.h:722
TranslatorFinnish::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_fi.h:480
TranslatorFinnish::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_fi.h:1012
TranslatorFinnish::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_fi.h:1678
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorFinnish::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_fi.h:1387
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorFinnish::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_fi.h:1565
TranslatorFinnish::trDataTypes
virtual QCString trDataTypes()
Definition: translator_fi.h:1749
TranslatorFinnish::trSearch
virtual QCString trSearch()
Definition: translator_fi.h:303
TranslatorFinnish::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_fi.h:1641
TranslatorFinnish::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_fi.h:307
TranslatorFinnish::trTest
virtual QCString trTest()
Definition: translator_fi.h:1197
TranslatorFinnish::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_fi.h:634
TranslatorFinnish::trEnumName
virtual QCString trEnumName()
Definition: translator_fi.h:228
TranslatorFinnish::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_fi.h:1496
TranslatorFinnish::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_fi.h:1670
TranslatorFinnish::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_fi.h:1436
TranslatorFinnish::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_fi.h:1317
TranslatorFinnish::trNote
virtual QCString trNote()
Definition: translator_fi.h:972
TranslatorFinnish::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_fi.h:172
TranslatorFinnish::trModules
virtual QCString trModules()
Definition: translator_fi.h:244
TranslatorFinnish::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_fi.h:718
TranslatorFinnish::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_fi.h:872
TranslatorFinnish::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_fi.h:1524
TranslatorFinnish::trParameters
virtual QCString trParameters()
Definition: translator_fi.h:626
TranslatorFinnish::trBug
virtual QCString trBug()
Definition: translator_fi.h:1269
TranslatorFinnish::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_fi.h:313
TranslatorAdapter_1_6_0
Adapter class for languages that only contain translations up to version 1.6.0.
Definition: translator_adapter.h:323
TranslatorFinnish::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_fi.h:1503
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorFinnish::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_fi.h:538
TranslatorFinnish::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_fi.h:705
TranslatorFinnish::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_fi.h:269
TranslatorFinnish::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_fi.h:1787
TranslatorFinnish::trClasses
virtual QCString trClasses()
Definition: translator_fi.h:1227
TranslatorFinnish::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_fi.h:795
TranslatorFinnish::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_fi.h:1485
TranslatorFinnish::trExamples
virtual QCString trExamples()
Definition: translator_fi.h:299
TranslatorFinnish::trReturns
virtual QCString trReturns()
Definition: translator_fi.h:618
TranslatorFinnish::trSubprograms
virtual QCString trSubprograms()
Definition: translator_fi.h:1737
TranslatorFinnish::trWarning
virtual QCString trWarning()
Definition: translator_fi.h:606
TranslatorFinnish::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_fi.h:1613
TranslatorFinnish::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_fi.h:1795
TranslatorFinnish::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_fi.h:1694
TranslatorFinnish::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_fi.h:496
TranslatorFinnish::trTodoList
virtual QCString trTodoList()
Definition: translator_fi.h:1031
TranslatorFinnish::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_fi.h:912
TranslatorFinnish::trLegend
virtual QCString trLegend()
Definition: translator_fi.h:1187
TranslatorFinnish::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_fi.h:1690
TranslatorFinnish::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_fi.h:724
TranslatorFinnish::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_fi.h:492
TranslatorFinnish::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_fi.h:1004
TranslatorFinnish::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_fi.h:406
TranslatorFinnish::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_fi.h:1308
TranslatorFinnish::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_fi.h:1052
TranslatorFinnish::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_fi.h:384
TranslatorFinnish::trSince
virtual QCString trSince()
Definition: translator_fi.h:1059
TranslatorFinnish::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_fi.h:883
TranslatorFinnish::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_fi.h:1468
TranslatorFinnish::trDirectories
virtual QCString trDirectories()
Definition: translator_fi.h:1619
TranslatorFinnish::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_fi.h:236
TranslatorFinnish::trCompounds
virtual QCString trCompounds()
Definition: translator_fi.h:568
TranslatorFinnish::trModulesList
virtual QCString trModulesList()
Definition: translator_fi.h:1753
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorFinnish::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_fi.h:879
TranslatorFinnish::trDirDescription
virtual QCString trDirDescription()
Definition: translator_fi.h:1625
TranslatorFinnish::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_fi.h:777
TranslatorFinnish::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_fi.h:697
TranslatorFinnish::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_fi.h:1008
TranslatorFinnish::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_fi.h:675
TranslatorFinnish::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_fi.h:1634
TranslatorFinnish::trInvariant
virtual QCString trInvariant()
Definition: translator_fi.h:937
TranslatorFinnish::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_fi.h:726
TranslatorFinnish::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_fi.h:1444
TranslatorFinnish::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_fi.h:1702
TranslatorFinnish::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_fi.h:992
TranslatorFinnish::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_fi.h:180
TranslatorFinnish::trISOLang
virtual QCString trISOLang()
Definition: translator_fi.h:148
TranslatorFinnish::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_fi.h:1323
TranslatorFinnish::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_fi.h:1411
TranslatorFinnish::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_fi.h:917
TranslatorFinnish::trBugList
virtual QCString trBugList()
Definition: translator_fi.h:1274
TranslatorFinnish::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_fi.h:1365
TranslatorFinnish::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_fi.h:550
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108