Blame src/translator_en.h

Packit Service 50c9f2
/******************************************************************************
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Permission to use, copy, modify, and distribute this software and its
Packit Service 50c9f2
 * documentation under the terms of the GNU General Public License is hereby
Packit Service 50c9f2
 * granted. No representations are made about the suitability of this software
Packit Service 50c9f2
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit Service 50c9f2
 * See the GNU General Public License for more details.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Documents produced by Doxygen are derivative works derived from the
Packit Service 50c9f2
 * input used in their production; they are not affected by this license.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
#ifndef TRANSLATOR_EN_H
Packit Service 50c9f2
#define TRANSLATOR_EN_H
Packit Service 50c9f2
Packit Service 50c9f2
/*!
Packit Service 50c9f2
 When defining a translator class for the new language, follow
Packit Service 50c9f2
 the description in the documentation.  One of the steps says
Packit Service 50c9f2
 that you should copy the translator_en.h (this) file to your
Packit Service 50c9f2
 translator_xx.h new file.  Your new language should use the
Packit Service 50c9f2
 Translator class as the base class.  This means that you need to
Packit Service 50c9f2
 implement exactly the same (pure virtual) methods as the
Packit Service 50c9f2
 TranslatorEnglish does.  Because of this, it is a good idea to
Packit Service 50c9f2
 start with the copy of TranslatorEnglish and replace the strings
Packit Service 50c9f2
 one by one.
Packit Service 50c9f2
Packit Service 50c9f2
 It is not necessary to include "translator.h" or
Packit Service 50c9f2
 "translator_adapter.h" here.  The files are included in the
Packit Service 50c9f2
 language.cpp correctly.  Not including any of the mentioned
Packit Service 50c9f2
 files frees the maintainer from thinking about whether the
Packit Service 50c9f2
 first, the second, or both files should be included or not, and
Packit Service 50c9f2
 why.  This holds namely for localized translators because their
Packit Service 50c9f2
 base class is changed occasionally to adapter classes when the
Packit Service 50c9f2
 Translator class changes the interface, or back to the
Packit Service 50c9f2
 Translator class (by the local maintainer) when the localized
Packit Service 50c9f2
 translator is made up-to-date again.
Packit Service 50c9f2
*/
Packit Service 50c9f2
class TranslatorEnglish : public Translator
Packit Service 50c9f2
{
Packit Service 50c9f2
  public:
Packit Service 50c9f2
Packit Service 50c9f2
    // --- Language control methods -------------------
Packit Service 50c9f2
Packit Service 50c9f2
    /*! Used for identification of the language. The identification
Packit Service 50c9f2
     * should not be translated. It should be replaced by the name
Packit Service 50c9f2
     * of the language in English using lower-case characters only
Packit Service 50c9f2
     * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
Packit Service 50c9f2
     * the identification used in language.cpp.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString idLanguage()
Packit Service 50c9f2
    { return "english"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! Used to get the LaTeX command(s) for the language support.
Packit Service 50c9f2
     *  This method should return string with commands that switch
Packit Service 50c9f2
     *  LaTeX to the desired language.  For example
Packit Service 50c9f2
     *  
"\\usepackage[german]{babel}\n"
Packit Service 50c9f2
     *  
Packit Service 50c9f2
     *  or
Packit Service 50c9f2
     *  
"\\usepackage{polski}\n"
Packit Service 50c9f2
     *  "\\usepackage[latin2]{inputenc}\n"
Packit Service 50c9f2
     *  "\\usepackage[T1]{fontenc}\n"
Packit Service 50c9f2
     *  
Packit Service 50c9f2
     *
Packit Service 50c9f2
     * The English LaTeX does not use such commands.  Because of this
Packit Service 50c9f2
     * the empty string is returned in this implementation.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString latexLanguageSupportCommand()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    // --- Language translation methods -------------------
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the compound documentation before a list of related functions. */
Packit Service 50c9f2
    virtual QCString trRelatedFunctions()
Packit Service 50c9f2
    { return "Related Functions"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! subscript for the related functions. */
Packit Service 50c9f2
    virtual QCString trRelatedSubscript()
Packit Service 50c9f2
    { return "(Note that these are not member functions.)"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the detailed description of files, classes and namespaces. */
Packit Service 50c9f2
    virtual QCString trDetailedDescription()
Packit Service 50c9f2
    { return "Detailed Description"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of typedefs. */
Packit Service 50c9f2
    virtual QCString trMemberTypedefDocumentation()
Packit Service 50c9f2
    { return "Member Typedef Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of enumerations. */
Packit Service 50c9f2
    virtual QCString trMemberEnumerationDocumentation()
Packit Service 50c9f2
    { return "Member Enumeration Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of member functions. */
Packit Service 50c9f2
    virtual QCString trMemberFunctionDocumentation()
Packit Service 50c9f2
    { return "Member Function Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of member attributes. */
Packit Service 50c9f2
    virtual QCString trMemberDataDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Field Documentation";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Member Data Documentation";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the text of a link put after brief descriptions. */
Packit Service 50c9f2
    virtual QCString trMore()
Packit Service 50c9f2
    { return "More..."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put in the class documentation */
Packit Service 50c9f2
    virtual QCString trListOfAllMembers()
Packit Service 50c9f2
    { return "List of all members"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the "list of all members" page of a class */
Packit Service 50c9f2
    virtual QCString trMemberList()
Packit Service 50c9f2
    { return "Member List"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the first part of a sentence that is followed by a class name */
Packit Service 50c9f2
    virtual QCString trThisIsTheListOfAllMembers()
Packit Service 50c9f2
    { return "This is the complete list of members for "; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the remainder of the sentence after the class name */
Packit Service 50c9f2
    virtual QCString trIncludingInheritedMembers()
Packit Service 50c9f2
    { return ", including all inherited members."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is put at the author sections at the bottom of man pages.
Packit Service 50c9f2
     *  parameter s is name of the project name.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trGeneratedAutomatically(const char *s)
Packit Service 50c9f2
    { QCString result="Generated automatically by Doxygen";
Packit Service 50c9f2
      if (s) result+=(QCString)" for "+s;
Packit Service 50c9f2
      result+=" from the source code.";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an enum name in the list of all members */
Packit Service 50c9f2
    virtual QCString trEnumName()
Packit Service 50c9f2
    { return "enum name"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an enum value in the list of all members */
Packit Service 50c9f2
    virtual QCString trEnumValue()
Packit Service 50c9f2
    { return "enum value"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an undocumented member in the list of all members */
Packit Service 50c9f2
    virtual QCString trDefinedIn()
Packit Service 50c9f2
    { return "defined in"; }
Packit Service 50c9f2
Packit Service 50c9f2
    // quick reference sections
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of all groups of
Packit Service 50c9f2
     *  compounds or files (see the \\group command).
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trModules()
Packit Service 50c9f2
    { return "Modules"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the class hierarchy */
Packit Service 50c9f2
    virtual QCString trClassHierarchy()
Packit Service 50c9f2
    { return "Class Hierarchy"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of annotated classes */
Packit Service 50c9f2
    virtual QCString trCompoundList()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Data Structures";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Class List";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of documented files */
Packit Service 50c9f2
    virtual QCString trFileList()
Packit Service 50c9f2
    { return "File List"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of compounds. */
Packit Service 50c9f2
    virtual QCString trCompoundMembers()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Data Fields";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Class Members";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of files. */
Packit Service 50c9f2
    virtual QCString trFileMembers()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Globals";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "File Members";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all related pages. */
Packit Service 50c9f2
    virtual QCString trRelatedPages()
Packit Service 50c9f2
    { return "Related Pages"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all examples. */
Packit Service 50c9f2
    virtual QCString trExamples()
Packit Service 50c9f2
    { return "Examples"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the search engine. */
Packit Service 50c9f2
    virtual QCString trSearch()
Packit Service 50c9f2
    { return "Search"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the class hierarchy. */
Packit Service 50c9f2
    virtual QCString trClassHierarchyDescription()
Packit Service 50c9f2
    { return "This inheritance list is sorted roughly, "
Packit Service 50c9f2
             "but not completely, alphabetically:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the list with all files. */
Packit Service 50c9f2
    virtual QCString trFileListDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Here is a list of all ";
Packit Service 50c9f2
      if (!extractAll) result+="documented ";
Packit Service 50c9f2
      result+="files with brief descriptions:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the annotated compound list. */
Packit Service 50c9f2
    virtual QCString trCompoundListDescription()
Packit Service 50c9f2
    {
Packit Service 50c9f2
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Here are the data structures with brief descriptions:";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Here are the classes, structs, "
Packit Service 50c9f2
               "unions and interfaces with brief descriptions:";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all class members. */
Packit Service 50c9f2
    virtual QCString trCompoundMembersDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Here is a list of all ";
Packit Service 50c9f2
      if (!extractAll)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="documented ";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="struct and union fields";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="class members";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=" with links to ";
Packit Service 50c9f2
      if (!extractAll)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="the struct/union documentation for each field:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
        else
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="the class documentation for each member:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="the structures/unions they belong to:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
        else
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="the classes they belong to:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all file members. */
Packit Service 50c9f2
    virtual QCString trFileMembersDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Here is a list of all ";
Packit Service 50c9f2
      if (!extractAll) result+="documented ";
Packit Service 50c9f2
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="functions, variables, defines, enums, and typedefs";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="file members";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=" with links to ";
Packit Service 50c9f2
      if (extractAll)
Packit Service 50c9f2
        result+="the files they belong to:";
Packit Service 50c9f2
      else
Packit Service 50c9f2
        result+="the documentation:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of all examples */
Packit Service 50c9f2
    virtual QCString trExamplesDescription()
Packit Service 50c9f2
    { return "Here is a list of all examples:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of related pages */
Packit Service 50c9f2
    virtual QCString trRelatedPagesDescription()
Packit Service 50c9f2
    { return "Here is a list of all related documentation pages:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of class/file groups */
Packit Service 50c9f2
    virtual QCString trModulesDescription()
Packit Service 50c9f2
    { return "Here is a list of all modules:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    // index titles (the project name is prepended for these)
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in HTML as the title of index.html. */
Packit Service 50c9f2
    virtual QCString trDocumentation()
Packit Service 50c9f2
    { return "Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * index of all groups.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trModuleIndex()
Packit Service 50c9f2
    { return "Module Index"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * class hierarchy.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trHierarchicalIndex()
Packit Service 50c9f2
    { return "Hierarchical Index"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * annotated compound index.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trCompoundIndex()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Data Structure Index";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Class Index";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * list of all files.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFileIndex()
Packit Service 50c9f2
    { return "File Index"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all groups.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trModuleDocumentation()
Packit Service 50c9f2
    { return "Module Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all classes, structs and unions.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trClassDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Data Structure Documentation";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Class Documentation";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all files.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFileDocumentation()
Packit Service 50c9f2
    { return "File Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all examples.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trExampleDocumentation()
Packit Service 50c9f2
    { return "Example Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all related pages.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trPageDocumentation()
Packit Service 50c9f2
    { return "Page Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the document */
Packit Service 50c9f2
    virtual QCString trReferenceManual()
Packit Service 50c9f2
    { return "Reference Manual"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of defines
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trDefines()
Packit Service 50c9f2
    { return "Macros"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of typedefs
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trTypedefs()
Packit Service 50c9f2
    { return "Typedefs"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of enumerations
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trEnumerations()
Packit Service 50c9f2
    { return "Enumerations"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) functions
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFunctions()
Packit Service 50c9f2
    { return "Functions"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trVariables()
Packit Service 50c9f2
    { return "Variables"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trEnumerationValues()
Packit Service 50c9f2
    { return "Enumerator"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file before the list of
Packit Service 50c9f2
     *  documentation blocks for defines
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trDefineDocumentation()
Packit Service 50c9f2
    { return "Macro Definition Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for typedefs
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trTypedefDocumentation()
Packit Service 50c9f2
    { return "Typedef Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for enumeration types
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trEnumerationTypeDocumentation()
Packit Service 50c9f2
    { return "Enumeration Type Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for functions
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFunctionDocumentation()
Packit Service 50c9f2
    { return "Function Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trVariableDocumentation()
Packit Service 50c9f2
    { return "Variable Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace/group before
Packit Service 50c9f2
     *  the list of links to documented compounds
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trCompounds()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Data Structures";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Classes";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the standard footer of each page and indicates when
Packit Service 50c9f2
     *  the page was generated
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trGeneratedAt(const char *date,const char *projName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result=(QCString)"Generated on "+date;
Packit Service 50c9f2
      if (projName) result+=(QCString)" for "+projName;
Packit Service 50c9f2
      result+=(QCString)" by";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is put before a class diagram */
Packit Service 50c9f2
    virtual QCString trClassDiagram(const char *clName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Inheritance diagram for "+clName+":";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\internal command is used. */
Packit Service 50c9f2
    virtual QCString trForInternalUseOnly()
Packit Service 50c9f2
    { return "For internal use only."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\warning command is used. */
Packit Service 50c9f2
    virtual QCString trWarning()
Packit Service 50c9f2
    { return "Warning"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\version command is used. */
Packit Service 50c9f2
    virtual QCString trVersion()
Packit Service 50c9f2
    { return "Version"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\date command is used. */
Packit Service 50c9f2
    virtual QCString trDate()
Packit Service 50c9f2
    { return "Date"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\return command is used. */
Packit Service 50c9f2
    virtual QCString trReturns()
Packit Service 50c9f2
    { return "Returns"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\sa command is used. */
Packit Service 50c9f2
    virtual QCString trSeeAlso()
Packit Service 50c9f2
    { return "See also"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\param command is used. */
Packit Service 50c9f2
    virtual QCString trParameters()
Packit Service 50c9f2
    { return "Parameters"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\exception command is used. */
Packit Service 50c9f2
    virtual QCString trExceptions()
Packit Service 50c9f2
    { return "Exceptions"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is used in the title page of a LaTeX document. */
Packit Service 50c9f2
    virtual QCString trGeneratedBy()
Packit Service 50c9f2
    { return "Generated by"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990307
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of page containing all the index of all namespaces. */
Packit Service 50c9f2
    virtual QCString trNamespaceList()
Packit Service 50c9f2
    { return "Namespace List"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as an introduction to the namespace list */
Packit Service 50c9f2
    virtual QCString trNamespaceListDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Here is a list of all ";
Packit Service 50c9f2
      if (!extractAll) result+="documented ";
Packit Service 50c9f2
      result+="namespaces with brief descriptions:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the class documentation as a header before the list of all
Packit Service 50c9f2
     *  friends of a class
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFriends()
Packit Service 50c9f2
    { return "Friends"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990405
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the class documentation as a header before the list of all
Packit Service 50c9f2
     * related classes
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trRelatedFunctionDocumentation()
Packit Service 50c9f2
    { return "Friends And Related Function Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990425
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a class/struct/union */
Packit Service 50c9f2
    virtual QCString trCompoundReference(const char *clName,
Packit Service 50c9f2
                                    ClassDef::CompoundType compType,
Packit Service 50c9f2
                                    bool isTemplate)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result=(QCString)clName;
Packit Service 50c9f2
      switch(compType)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        case ClassDef::Class:      result+=" Class"; break;
Packit Service 50c9f2
        case ClassDef::Struct:     result+=" Struct"; break;
Packit Service 50c9f2
        case ClassDef::Union:      result+=" Union"; break;
Packit Service 50c9f2
        case ClassDef::Interface:  result+=" Interface"; break;
Packit Service 50c9f2
        case ClassDef::Protocol:   result+=" Protocol"; break;
Packit Service 50c9f2
        case ClassDef::Category:   result+=" Category"; break;
Packit Service 50c9f2
        case ClassDef::Exception:  result+=" Exception"; break;
Packit Service 50c9f2
        default: break;
Packit Service 50c9f2
      }
Packit Service 50c9f2
      if (isTemplate) result+=" Template";
Packit Service 50c9f2
      result+=" Reference";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a file */
Packit Service 50c9f2
    virtual QCString trFileReference(const char *fileName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result=fileName;
Packit Service 50c9f2
      result+=" File Reference";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a namespace */
Packit Service 50c9f2
    virtual QCString trNamespaceReference(const char *namespaceName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result=namespaceName;
Packit Service 50c9f2
      result+=" Namespace Reference";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trPublicMembers()
Packit Service 50c9f2
    { return "Public Member Functions"; }
Packit Service 50c9f2
    virtual QCString trPublicSlots()
Packit Service 50c9f2
    { return "Public Slots"; }
Packit Service 50c9f2
    virtual QCString trSignals()
Packit Service 50c9f2
    { return "Signals"; }
Packit Service 50c9f2
    virtual QCString trStaticPublicMembers()
Packit Service 50c9f2
    { return "Static Public Member Functions"; }
Packit Service 50c9f2
    virtual QCString trProtectedMembers()
Packit Service 50c9f2
    { return "Protected Member Functions"; }
Packit Service 50c9f2
    virtual QCString trProtectedSlots()
Packit Service 50c9f2
    { return "Protected Slots"; }
Packit Service 50c9f2
    virtual QCString trStaticProtectedMembers()
Packit Service 50c9f2
    { return "Static Protected Member Functions"; }
Packit Service 50c9f2
    virtual QCString trPrivateMembers()
Packit Service 50c9f2
    { return "Private Member Functions"; }
Packit Service 50c9f2
    virtual QCString trPrivateSlots()
Packit Service 50c9f2
    { return "Private Slots"; }
Packit Service 50c9f2
    virtual QCString trStaticPrivateMembers()
Packit Service 50c9f2
    { return "Static Private Member Functions"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this function is used to produce a comma-separated list of items.
Packit Service 50c9f2
     *  use generateMarker(i) to indicate where item i should be put.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trWriteList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result;
Packit Service 50c9f2
      int i;
Packit Service 50c9f2
      // the inherits list contain `numEntries' classes
Packit Service 50c9f2
      for (i=0;i
Packit Service 50c9f2
      {
Packit Service 50c9f2
        // use generateMarker to generate placeholders for the class links!
Packit Service 50c9f2
        result+=generateMarker(i); // generate marker for entry i in the list
Packit Service 50c9f2
                                   // (order is left to right)
Packit Service 50c9f2
Packit Service 50c9f2
        if (i!=numEntries-1)  // not the last entry, so we need a separator
Packit Service 50c9f2
        {
Packit Service 50c9f2
          if (i
Packit Service 50c9f2
            result+=", ";
Packit Service 50c9f2
          else                // the fore last entry
Packit Service 50c9f2
            result+=", and ";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in class documentation to produce a list of base classes,
Packit Service 50c9f2
     *  if class diagrams are disabled.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trInheritsList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Inherits "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in class documentation to produce a list of super classes,
Packit Service 50c9f2
     *  if class diagrams are disabled.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trInheritedByList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Inherited by "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in member documentation blocks to produce a list of
Packit Service 50c9f2
     *  members that are hidden by this one.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trReimplementedFromList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Reimplemented from "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in member documentation blocks to produce a list of
Packit Service 50c9f2
     *  all member that overwrite the implementation of this member.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trReimplementedInList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Reimplemented in "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of namespaces. */
Packit Service 50c9f2
    virtual QCString trNamespaceMembers()
Packit Service 50c9f2
    { return "Namespace Members"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all namespace members */
Packit Service 50c9f2
    virtual QCString trNamespaceMemberDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Here is a list of all ";
Packit Service 50c9f2
      if (!extractAll) result+="documented ";
Packit Service 50c9f2
      result+="namespace members with links to ";
Packit Service 50c9f2
      if (extractAll)
Packit Service 50c9f2
        result+="the namespace documentation for each member:";
Packit Service 50c9f2
      else
Packit Service 50c9f2
        result+="the namespaces they belong to:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     *  index of all namespaces.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trNamespaceIndex()
Packit Service 50c9f2
    { return "Namespace Index"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all namespaces.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trNamespaceDocumentation()
Packit Service 50c9f2
    { return "Namespace Documentation"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990522
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation before the list of all
Packit Service 50c9f2
     *  namespaces in a file.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trNamespaces()
Packit Service 50c9f2
    { return "Namespaces"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990728
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put at the bottom of a class documentation page and is
Packit Service 50c9f2
     *  followed by a list of files that were used to generate the page.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType,
Packit Service 50c9f2
        bool single)
Packit Service 50c9f2
    { // single is true implies a single file
Packit Service 50c9f2
      QCString result=(QCString)"The documentation for this ";
Packit Service 50c9f2
      switch(compType)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        case ClassDef::Class:      result+="class"; break;
Packit Service 50c9f2
        case ClassDef::Struct:     result+="struct"; break;
Packit Service 50c9f2
        case ClassDef::Union:      result+="union"; break;
Packit Service 50c9f2
        case ClassDef::Interface:  result+="interface"; break;
Packit Service 50c9f2
        case ClassDef::Protocol:   result+="protocol"; break;
Packit Service 50c9f2
        case ClassDef::Category:   result+="category"; break;
Packit Service 50c9f2
        case ClassDef::Exception:  result+="exception"; break;
Packit Service 50c9f2
        default: break;
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=" was generated from the following file";
Packit Service 50c9f2
      if (single) result+=":"; else result+="s:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990901
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used as the heading text for the retval command. */
Packit Service 50c9f2
    virtual QCString trReturnValues()
Packit Service 50c9f2
    { return "Return values"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is in the (quick) index as a link to the main page (index.html)
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trMainPage()
Packit Service 50c9f2
    { return "Main Page"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in references to page that are put in the LaTeX
Packit Service 50c9f2
     *  documentation. It should be an abbreviation of the word page.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trPageAbbreviation()
Packit Service 50c9f2
    { return "p."; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-991003
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trDefinedAtLineInSourceFile()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Definition at line @0 of file @1.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trDefinedInSourceFile()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Definition in file @0.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-991205
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trDeprecated()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Deprecated";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.0.0
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is put before a collaboration diagram */
Packit Service 50c9f2
    virtual QCString trCollaborationDiagram(const char *clName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Collaboration diagram for "+clName+":";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! this text is put before an include dependency graph */
Packit Service 50c9f2
    virtual QCString trInclDepGraph(const char *fName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Include dependency graph for "+fName+":";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! header that is put before the list of constructor/destructors. */
Packit Service 50c9f2
    virtual QCString trConstructorDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Constructor & Destructor Documentation";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used in the file documentation to point to the corresponding sources. */
Packit Service 50c9f2
    virtual QCString trGotoSourceCode()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Go to the source code of this file.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used in the file sources to point to the corresponding documentation. */
Packit Service 50c9f2
    virtual QCString trGotoDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Go to the documentation of this file.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\pre command */
Packit Service 50c9f2
    virtual QCString trPrecondition()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Precondition";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\post command */
Packit Service 50c9f2
    virtual QCString trPostcondition()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Postcondition";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\invariant command */
Packit Service 50c9f2
    virtual QCString trInvariant()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Invariant";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text shown before a multi-line variable/enum initialization */
Packit Service 50c9f2
    virtual QCString trInitialValue()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Initial value:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text used the source code in the file index */
Packit Service 50c9f2
    virtual QCString trCode()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "code";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trGraphicalHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Graphical Class Hierarchy";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trGotoGraphicalHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Go to the graphical class hierarchy";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trGotoTextualHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Go to the textual class hierarchy";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPageIndex()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Page Index";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.0
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trNote()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Note";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPublicTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Public Types";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPublicAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Data Fields";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Public Attributes";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trStaticPublicAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Static Public Attributes";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trProtectedTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Protected Types";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trProtectedAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Protected Attributes";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trStaticProtectedAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Static Protected Attributes";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPrivateTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Private Types";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPrivateAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Private Attributes";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trStaticPrivateAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Static Private Attributes";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.3
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! Used as a marker that is put before a \\todo item */
Packit Service 50c9f2
    virtual QCString trTodo()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Todo";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used as the header of the todo list */
Packit Service 50c9f2
    virtual QCString trTodoList()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Todo List";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.4
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trReferencedBy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Referenced by";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trRemarks()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Remarks";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trAttention()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Attention";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trInclByDepGraph()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "This graph shows which files directly or "
Packit Service 50c9f2
             "indirectly include this file:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trSince()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Since";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.5
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! title of the graph legend page */
Packit Service 50c9f2
    virtual QCString trLegendTitle()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Graph Legend";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! page explaining how the dot graph's should be interpreted
Packit Service 50c9f2
     *  The %A in the text below are to prevent link to classes called "A".
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trLegendDocs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return
Packit Service 50c9f2
        "This page explains how to interpret the graphs that are generated "
Packit Service 50c9f2
        "by doxygen.

\n"

Packit Service 50c9f2
        "Consider the following example:\n"
Packit Service 50c9f2
        "\\code\n"
Packit Service 50c9f2
        "/*! Invisible class because of truncation */\n"
Packit Service 50c9f2
        "class Invisible { };\n\n"
Packit Service 50c9f2
        "/*! Truncated class, inheritance relation is hidden */\n"
Packit Service 50c9f2
        "class Truncated : public Invisible { };\n\n"
Packit Service 50c9f2
        "/* Class not documented with doxygen comments */\n"
Packit Service 50c9f2
        "class Undocumented { };\n\n"
Packit Service 50c9f2
        "/*! Class that is inherited using public inheritance */\n"
Packit Service 50c9f2
        "class PublicBase : public Truncated { };\n\n"
Packit Service 50c9f2
        "/*! A template class */\n"
Packit Service 50c9f2
        "template<class T> class Templ { };\n\n"
Packit Service 50c9f2
        "/*! Class that is inherited using protected inheritance */\n"
Packit Service 50c9f2
        "class ProtectedBase { };\n\n"
Packit Service 50c9f2
        "/*! Class that is inherited using private inheritance */\n"
Packit Service 50c9f2
        "class PrivateBase { };\n\n"
Packit Service 50c9f2
        "/*! Class that is used by the Inherited class */\n"
Packit Service 50c9f2
        "class Used { };\n\n"
Packit Service 50c9f2
        "/*! Super class that inherits a number of other classes */\n"
Packit Service 50c9f2
        "class Inherited : public PublicBase,\n"
Packit Service 50c9f2
        "                  protected ProtectedBase,\n"
Packit Service 50c9f2
        "                  private PrivateBase,\n"
Packit Service 50c9f2
        "                  public Undocumented,\n"
Packit Service 50c9f2
        "                  public Templ<int>\n"
Packit Service 50c9f2
        "{\n"
Packit Service 50c9f2
        "  private:\n"
Packit Service 50c9f2
        "    Used *m_usedClass;\n"
Packit Service 50c9f2
        "};\n"
Packit Service 50c9f2
        "\\endcode\n"
Packit Service 50c9f2
        "This will result in the following graph:"
Packit Service 50c9f2
        "

<center>\"\"</center>

\n"
Packit Service 50c9f2
        "

\n"

Packit Service 50c9f2
        "The boxes in the above graph have the following meaning:\n"
Packit Service 50c9f2
        "

\n"
Packit Service 50c9f2
        "
    \n"
Packit Service 50c9f2
        "
  • %A filled gray box represents the struct or class for which the "
  • Packit Service 50c9f2
            "graph is generated.\n"
    Packit Service 50c9f2
            "
  • %A box with a black border denotes a documented struct or class.
  • \n"
    Packit Service 50c9f2
            "
  • %A box with a gray border denotes an undocumented struct or class.
  • \n"
    Packit Service 50c9f2
            "
  • %A box with a red border denotes a documented struct or class for"
  • Packit Service 50c9f2
            "which not all inheritance/containment relations are shown. %A graph is "
    Packit Service 50c9f2
            "truncated if it does not fit within the specified boundaries.\n"
    Packit Service 50c9f2
            "\n"
    Packit Service 50c9f2
            "

    \n"

    Packit Service 50c9f2
            "The arrows have the following meaning:\n"
    Packit Service 50c9f2
            "

    \n"
    Packit Service 50c9f2
            "
      \n"
    Packit Service 50c9f2
            "
  • %A dark blue arrow is used to visualize a public inheritance "
  • Packit Service 50c9f2
            "relation between two classes.\n"
    Packit Service 50c9f2
            "
  • %A dark green arrow is used for protected inheritance.
  • \n"
    Packit Service 50c9f2
            "
  • %A dark red arrow is used for private inheritance.
  • \n"
    Packit Service 50c9f2
            "
  • %A purple dashed arrow is used if a class is contained or used "
  • Packit Service 50c9f2
            "by another class. The arrow is labelled with the variable(s) "
    Packit Service 50c9f2
            "through which the pointed class or struct is accessible.\n"
    Packit Service 50c9f2
            "
  • %A yellow dashed arrow denotes a relation between a template instance and "
  • Packit Service 50c9f2
            "the template class it was instantiated from. The arrow is labelled with "
    Packit Service 50c9f2
            "the template parameters of the instance.\n"
    Packit Service 50c9f2
            "\n";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! text for the link to the legend page */
    Packit Service 50c9f2
        virtual QCString trLegend()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "legend";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.0
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a marker that is put before a test item */
    Packit Service 50c9f2
        virtual QCString trTest()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Test";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the header of the test list */
    Packit Service 50c9f2
        virtual QCString trTestList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Test List";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a section header for IDL properties */
    Packit Service 50c9f2
        virtual QCString trProperties()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Properties";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a section header for IDL property documentation */
    Packit Service 50c9f2
        virtual QCString trPropertyDocumentation()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Property Documentation";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.4
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used for Java classes in the summary section of Java packages */
    Packit Service 50c9f2
        virtual QCString trClasses()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Data Structures";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Classes";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the title of a Java package */
    Packit Service 50c9f2
        virtual QCString trPackage(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"Package "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Title of the package index page */
    Packit Service 50c9f2
        virtual QCString trPackageList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Package List";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! The description of the package index page */
    Packit Service 50c9f2
        virtual QCString trPackageListDescription()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Here are the packages with brief descriptions (if available):";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! The link name in the Quick links header for each page */
    Packit Service 50c9f2
        virtual QCString trPackages()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Packages";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Text shown before a multi-line define */
    Packit Service 50c9f2
        virtual QCString trDefineValue()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Value:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.5
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a marker that is put before a \\bug item */
    Packit Service 50c9f2
        virtual QCString trBug()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Bug";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the header of the bug list */
    Packit Service 50c9f2
        virtual QCString trBugList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Bug List";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.6
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as ansicpg for RTF file
    Packit Service 50c9f2
         *
    Packit Service 50c9f2
         * The following table shows the correlation of Charset name, Charset Value and
    Packit Service 50c9f2
         * 
    Packit Service 50c9f2
         * Codepage number:
    Packit Service 50c9f2
         * Charset Name       Charset Value(hex)  Codepage number
    Packit Service 50c9f2
         * ------------------------------------------------------
    Packit Service 50c9f2
         * DEFAULT_CHARSET           1 (x01)
    Packit Service 50c9f2
         * SYMBOL_CHARSET            2 (x02)
    Packit Service 50c9f2
         * OEM_CHARSET             255 (xFF)
    Packit Service 50c9f2
         * ANSI_CHARSET              0 (x00)            1252
    Packit Service 50c9f2
         * RUSSIAN_CHARSET         204 (xCC)            1251
    Packit Service 50c9f2
         * EE_CHARSET              238 (xEE)            1250
    Packit Service 50c9f2
         * GREEK_CHARSET           161 (xA1)            1253
    Packit Service 50c9f2
         * TURKISH_CHARSET         162 (xA2)            1254
    Packit Service 50c9f2
         * BALTIC_CHARSET          186 (xBA)            1257
    Packit Service 50c9f2
         * HEBREW_CHARSET          177 (xB1)            1255
    Packit Service 50c9f2
         * ARABIC _CHARSET         178 (xB2)            1256
    Packit Service 50c9f2
         * SHIFTJIS_CHARSET        128 (x80)             932
    Packit Service 50c9f2
         * HANGEUL_CHARSET         129 (x81)             949
    Packit Service 50c9f2
         * GB2313_CHARSET          134 (x86)             936
    Packit Service 50c9f2
         * CHINESEBIG5_CHARSET     136 (x88)             950
    Packit Service 50c9f2
         * 
    Packit Service 50c9f2
         *
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trRTFansicp()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "1252";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as ansicpg for RTF fcharset
    Packit Service 50c9f2
         *  \see trRTFansicp() for a table of possible values.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trRTFCharSet()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "0";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as header RTF general index */
    Packit Service 50c9f2
        virtual QCString trRTFGeneralIndex()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Index";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trClass(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Class" : "class"));
    Packit Service 50c9f2
          if (!singular)  result+="es";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trFile(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "File" : "file"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trNamespace(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Namespace" : "namespace"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGroup(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Module" : "module"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPage(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Page" : "page"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trMember(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Member" : "member"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGlobal(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Global" : "global"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.7
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is generated when the \\author command is used and
    Packit Service 50c9f2
         *  for the author section in man pages. */
    Packit Service 50c9f2
        virtual QCString trAuthor(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Author" : "author"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.11
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is put before the list of members referenced by a member
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trReferences()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "References";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.13
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used in member documentation blocks to produce a list of
    Packit Service 50c9f2
         *  members that are implemented by this one.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trImplementedFromList(int numEntries)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Implements "+trWriteList(numEntries)+".";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used in member documentation blocks to produce a list of
    Packit Service 50c9f2
         *  all members that implement this abstract member.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trImplementedInList(int numEntries)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Implemented in "+trWriteList(numEntries)+".";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.16
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used in RTF documentation as a heading for the Table
    Packit Service 50c9f2
         *  of Contents.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trRTFTableOfContents()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Table of Contents";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.17
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as the header of the list of item that have been
    Packit Service 50c9f2
         *  flagged deprecated
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDeprecatedList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Deprecated List";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.18
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a header for declaration section of the events found in
    Packit Service 50c9f2
         * a C# program
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trEvents()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Events";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Header used for the documentation section of a class' events. */
    Packit Service 50c9f2
        virtual QCString trEventDocumentation()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Event Documentation";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class types with package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageTypes()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Package Types";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class functions with package
    Packit Service 50c9f2
         * scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageMembers()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Package Functions";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of static Java class functions with
    Packit Service 50c9f2
         *  package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trStaticPackageMembers()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Static Package Functions";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class variables with package
    Packit Service 50c9f2
         * scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageAttribs()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Package Attributes";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of static Java class variables with
    Packit Service 50c9f2
         * package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trStaticPackageAttribs()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Static Package Attributes";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.1
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used in the quick index of a class/file/namespace member list page
    Packit Service 50c9f2
         *  to link to the unfiltered list of all members.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trAll()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "All";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Put in front of the call graph for a function. */
    Packit Service 50c9f2
        virtual QCString trCallGraph()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Here is the call graph for this function:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.3
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This string is used as the title for the page listing the search
    Packit Service 50c9f2
         *  results.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchResultsTitle()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Search Results";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This string is put just before listing the search results. The
    Packit Service 50c9f2
         *  text can be different depending on the number of documents found.
    Packit Service 50c9f2
         *  Inside the text you can put the special marker $num to insert
    Packit Service 50c9f2
         *  the number representing the actual number of search results.
    Packit Service 50c9f2
         *  The @a numDocuments parameter can be either 0, 1 or 2, where the
    Packit Service 50c9f2
         *  value 2 represents 2 or more matches. HTML markup is allowed inside
    Packit Service 50c9f2
         *  the returned string.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchResults(int numDocuments)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          if (numDocuments==0)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Sorry, no documents matching your query.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else if (numDocuments==1)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Found 1 document matching your query.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Found $num documents matching your query. "
    Packit Service 50c9f2
                   "Showing best matches first.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This string is put before the list of matched words, for each search
    Packit Service 50c9f2
         *  result. What follows is the list of words that matched the query.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchMatches()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Matches:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.8
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in HTML as the title of page with source code for file filename
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSourceFile(QCString& filename)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return filename + " Source File";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.9
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the name of the chapter containing the directory
    Packit Service 50c9f2
         *  hierarchy.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirIndex()
    Packit Service 50c9f2
        { return "Directory Hierarchy"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the name of the chapter containing the documentation
    Packit Service 50c9f2
         *  of the directories.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirDocumentation()
    Packit Service 50c9f2
        { return "Directory Documentation"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the title of the directory index and also in the
    Packit Service 50c9f2
         *  Quick links of an HTML page, to link to the directory hierarchy.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirectories()
    Packit Service 50c9f2
        { return "Directories"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns a sentences that introduces the directory hierarchy.
    Packit Service 50c9f2
         *  and the fact that it is sorted alphabetically per level
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirDescription()
    Packit Service 50c9f2
        { return "This directory hierarchy is sorted roughly, "
    Packit Service 50c9f2
                 "but not completely, alphabetically:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns the title of a directory page. The name of the
    Packit Service 50c9f2
         *  directory is passed via \a dirName.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirReference(const char *dirName)
    Packit Service 50c9f2
        { QCString result=dirName; result+=" Directory Reference"; return result; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns the word directory with or without starting capital
    Packit Service 50c9f2
         *  (\a first_capital) and in singular or plural form (\a singular).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDir(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Director" : "director"));
    Packit Service 50c9f2
          if (singular) result+="y"; else result+="ies";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.4.1
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is added to the documentation when the \\overload command
    Packit Service 50c9f2
         *  is used for a overloaded function.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trOverloadText()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
           return "This is an overloaded member function, "
    Packit Service 50c9f2
                  "provided for convenience. It differs from the above "
    Packit Service 50c9f2
                  "function only in what argument(s) it accepts.";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.4.6
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used to introduce a caller (or called-by) graph */
    Packit Service 50c9f2
        virtual QCString trCallerGraph()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Here is the caller graph for this function:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace before the list
    Packit Service 50c9f2
         *  of documentation blocks for enumeration values
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trEnumerationValueDocumentation()
    Packit Service 50c9f2
        { return "Enumerator Documentation"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.5.4 (mainly for Fortran)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! header that is put before the list of member subprograms (Fortran). */
    Packit Service 50c9f2
        virtual QCString trMemberFunctionDocumentationFortran()
    Packit Service 50c9f2
        { return "Member Function/Subroutine Documentation"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to the list of annotated data types (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundListFortran()
    Packit Service 50c9f2
        { return "Data Types List"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to all members of compounds (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundMembersFortran()
    Packit Service 50c9f2
        { return "Data Fields"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the annotated compound list (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundListDescriptionFortran()
    Packit Service 50c9f2
        { return "Here are the data types with brief descriptions:"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the page with all data types (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Here is a list of all ";
    Packit Service 50c9f2
          if (!extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="documented ";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          result+="data types members";
    Packit Service 50c9f2
          result+=" with links to ";
    Packit Service 50c9f2
          if (!extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
             result+="the data structure documentation for each member";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
             result+="the data types they belong to:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter with the
    Packit Service 50c9f2
         * annotated compound index (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trCompoundIndexFortran()
    Packit Service 50c9f2
        { return "Data Type Index"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter containing
    Packit Service 50c9f2
         *  the documentation of all data types (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trTypeDocumentation()
    Packit Service 50c9f2
        { return "Data Type Documentation"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file as a header before the
    Packit Service 50c9f2
         *  list of (global) subprograms (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprograms()
    Packit Service 50c9f2
        { return "Functions/Subroutines"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace before the list
    Packit Service 50c9f2
         *  of documentation blocks for subprograms (Fortran)
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprogramDocumentation()
    Packit Service 50c9f2
        { return "Function/Subroutine Documentation"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace/group before
    Packit Service 50c9f2
         *  the list of links to documented compounds (Fortran)
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
         virtual QCString trDataTypes()
    Packit Service 50c9f2
        { return "Data Types"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as the title of page containing all the index of all modules (Fortran). */
    Packit Service 50c9f2
        virtual QCString trModulesList()
    Packit Service 50c9f2
        { return "Modules List"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as an introduction to the modules list (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesListDescription(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Here is a list of all ";
    Packit Service 50c9f2
          if (!extractAll) result+="documented ";
    Packit Service 50c9f2
          result+="modules with brief descriptions:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as the title of the HTML page of a module/type (Fortran) */
    Packit Service 50c9f2
        virtual QCString trCompoundReferenceFortran(const char *clName,
    Packit Service 50c9f2
                                        ClassDef::CompoundType compType,
    Packit Service 50c9f2
                                        bool isTemplate)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result=(QCString)clName;
    Packit Service 50c9f2
          switch(compType)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            case ClassDef::Class:      result+=" Module"; break;
    Packit Service 50c9f2
            case ClassDef::Struct:     result+=" Type"; break;
    Packit Service 50c9f2
            case ClassDef::Union:      result+=" Union"; break;
    Packit Service 50c9f2
            case ClassDef::Interface:  result+=" Interface"; break;
    Packit Service 50c9f2
            case ClassDef::Protocol:   result+=" Protocol"; break;
    Packit Service 50c9f2
            case ClassDef::Category:   result+=" Category"; break;
    Packit Service 50c9f2
            case ClassDef::Exception:  result+=" Exception"; break;
    Packit Service 50c9f2
            default: break;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          if (isTemplate) result+=" Template";
    Packit Service 50c9f2
          result+=" Reference";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! used as the title of the HTML page of a module (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModuleReference(const char *namespaceName)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result=namespaceName;
    Packit Service 50c9f2
          result+=" Module Reference";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to all members of modules. (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesMembers()
    Packit Service 50c9f2
        { return "Module Members"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the page with all modules members (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesMemberDescription(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Here is a list of all ";
    Packit Service 50c9f2
          if (!extractAll) result+="documented ";
    Packit Service 50c9f2
          result+="module members with links to ";
    Packit Service 50c9f2
          if (extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="the module documentation for each member:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="the modules they belong to:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter with the
    Packit Service 50c9f2
         *  index of all modules (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trModulesIndex()
    Packit Service 50c9f2
        { return "Modules Index"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trModule(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Module" : "module"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put at the bottom of a module documentation page and is
    Packit Service 50c9f2
         *  followed by a list of files that were used to generate the page.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType,
    Packit Service 50c9f2
            bool single)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          // single is true implies a single file
    Packit Service 50c9f2
          QCString result=(QCString)"The documentation for this ";
    Packit Service 50c9f2
          switch(compType)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            case ClassDef::Class:      result+="module"; break;
    Packit Service 50c9f2
            case ClassDef::Struct:     result+="type"; break;
    Packit Service 50c9f2
            case ClassDef::Union:      result+="union"; break;
    Packit Service 50c9f2
            case ClassDef::Interface:  result+="interface"; break;
    Packit Service 50c9f2
            case ClassDef::Protocol:   result+="protocol"; break;
    Packit Service 50c9f2
            case ClassDef::Category:   result+="category"; break;
    Packit Service 50c9f2
            case ClassDef::Exception:  result+="exception"; break;
    Packit Service 50c9f2
            default: break;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          result+=" was generated from the following file";
    Packit Service 50c9f2
          if (single) result+=":"; else result+="s:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trType(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Type" : "type"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprogram(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Subprogram" : "subprogram"));
    Packit Service 50c9f2
          if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! C# Type Constraint list */
    Packit Service 50c9f2
        virtual QCString trTypeConstraints()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Type Constraints";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.6.0 (mainly for the new search engine)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! directory relation for \a name */
    Packit Service 50c9f2
        virtual QCString trDirRelation(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return QCString(name)+" Relation";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Loading message shown when loading search results */
    Packit Service 50c9f2
        virtual QCString trLoading()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Loading...";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Label used for search results in the global namespace */
    Packit Service 50c9f2
        virtual QCString trGlobalNamespace()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Global Namespace";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Message shown while searching */
    Packit Service 50c9f2
        virtual QCString trSearching()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Searching...";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Text shown when no search results are found */
    Packit Service 50c9f2
        virtual QCString trNoMatches()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "No Matches";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.6.3 (missing items for the directory pages)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! when clicking a directory dependency label, a page with a
    Packit Service 50c9f2
         *  table is shown. The heading for the first column mentions the
    Packit Service 50c9f2
         *  source file that has a relation to another file.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trFileIn(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"File in "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! when clicking a directory dependency label, a page with a
    Packit Service 50c9f2
         *  table is shown. The heading for the second column mentions the
    Packit Service 50c9f2
         *  destination file that is included.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trIncludesFileIn(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"Includes file in "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /** Compiles a date string.
    Packit Service 50c9f2
         *  @param year Year in 4 digits
    Packit Service 50c9f2
         *  @param month Month of the year: 1=January
    Packit Service 50c9f2
         *  @param day Day of the Month: 1..31
    Packit Service 50c9f2
         *  @param dayOfWeek Day of the week: 1=Monday..7=Sunday
    Packit Service 50c9f2
         *  @param hour Hour of the day: 0..23
    Packit Service 50c9f2
         *  @param minutes Minutes in the hour: 0..59
    Packit Service 50c9f2
         *  @param seconds Seconds within the minute: 0..59
    Packit Service 50c9f2
         *  @param includeTime Include time in the result string?
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
    Packit Service 50c9f2
                                    int hour,int minutes,int seconds,
    Packit Service 50c9f2
                                    bool includeTime)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          static const char *days[]   = { "Mon","Tue","Wed","Thu","Fri","Sat","Sun" };
    Packit Service 50c9f2
          static const char *months[] = { "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" };
    Packit Service 50c9f2
          QCString sdate;
    Packit Service 50c9f2
          sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
    Packit Service 50c9f2
          if (includeTime)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            QCString stime;
    Packit Service 50c9f2
            stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
    Packit Service 50c9f2
            sdate+=stime;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return sdate;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.7.5
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header for the page with bibliographic citations */
    Packit Service 50c9f2
        virtual QCString trCiteReferences()
    Packit Service 50c9f2
        { return "Bibliography"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Text for copyright paragraph */
    Packit Service 50c9f2
        virtual QCString trCopyright()
    Packit Service 50c9f2
        { return "Copyright"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header for the graph showing the directory dependencies */
    Packit Service 50c9f2
        virtual QCString trDirDepGraph(const char *name)
    Packit Service 50c9f2
        { return QCString("Directory dependency graph for ")+name+":"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.8.0
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Detail level selector shown for hierarchical indices */
    Packit Service 50c9f2
        virtual QCString trDetailLevel()
    Packit Service 50c9f2
        { return "detail level"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Section header for list of template parameters */
    Packit Service 50c9f2
        virtual QCString trTemplateParameters()
    Packit Service 50c9f2
        { return "Template Parameters"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
    Packit Service 50c9f2
        virtual QCString trAndMore(const QCString &number)
    Packit Service 50c9f2
        { return "and "+number+" more..."; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used file list for a Java enum */
    Packit Service 50c9f2
        virtual QCString trEnumGeneratedFromFiles(bool single)
    Packit Service 50c9f2
        { QCString result = "The documentation for this enum was generated from the following file";
    Packit Service 50c9f2
          if (!single) result += "s";
    Packit Service 50c9f2
          result+=":";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header of a Java enum page (Java enums are represented as classes). */
    Packit Service 50c9f2
        virtual QCString trEnumReference(const char *name)
    Packit Service 50c9f2
        { return QCString(name)+" Enum Reference"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used for a section containing inherited members */
    Packit Service 50c9f2
        virtual QCString trInheritedFrom(const char *members,const char *what)
    Packit Service 50c9f2
        { return QCString(members)+" inherited from "+what; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header of the sections with inherited members specific for the
    Packit Service 50c9f2
         *  base class(es)
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trAdditionalInheritedMembers()
    Packit Service 50c9f2
        { return "Additional Inherited Members"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.8.2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a tooltip for the toggle button that appears in the
    Packit Service 50c9f2
         *  navigation tree in the HTML output when GENERATE_TREEVIEW is
    Packit Service 50c9f2
         *  enabled. This tooltip explains the meaning of the button.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPanelSynchronisationTooltip(bool enable)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString opt = enable ? "enable" : "disable";
    Packit Service 50c9f2
          return "click to "+opt+" panel synchronisation";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used in a method of an Objective-C class that is declared in a
    Packit Service 50c9f2
         *  a category. Note that the @1 marker is required and is replaced
    Packit Service 50c9f2
         *  by a link.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trProvidedByCategory()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Provided by category @0.";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used in a method of an Objective-C category that extends a class.
    Packit Service 50c9f2
         *  Note that the @1 marker is required and is replaced by a link to
    Packit Service 50c9f2
         *  the class method.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trExtendsClass()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Extends class @0.";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as the header of a list of class methods in Objective-C.
    Packit Service 50c9f2
         *  These are similar to static public member functions in C++.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trClassMethods()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Class Methods";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as the header of a list of instance methods in Objective-C.
    Packit Service 50c9f2
         *  These are similar to public member functions in C++.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trInstanceMethods()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Instance Methods";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as the header of the member functions of an Objective-C class.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trMethodDocumentation()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Method Documentation";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as the title of the design overview picture created for the
    Packit Service 50c9f2
         *  VHDL output.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDesignOverview()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Design Overview";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.8.4
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /** old style UNO IDL services: implemented interfaces */
    Packit Service 50c9f2
        virtual QCString trInterfaces()
    Packit Service 50c9f2
        { return "Exported Interfaces"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /** old style UNO IDL services: inherited services */
    Packit Service 50c9f2
        virtual QCString trServices()
    Packit Service 50c9f2
        { return "Included Services"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /** UNO IDL constant groups */
    Packit Service 50c9f2
        virtual QCString trConstantGroups()
    Packit Service 50c9f2
        { return "Constant Groups"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /** UNO IDL constant groups */
    Packit Service 50c9f2
        virtual QCString trConstantGroupReference(const char *namespaceName)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result=namespaceName;
    Packit Service 50c9f2
          result+=" Constant Group Reference";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /** UNO IDL service page title */
    Packit Service 50c9f2
        virtual QCString trServiceReference(const char *sName)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result=(QCString)sName;
    Packit Service 50c9f2
          result+=" Service Reference";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /** UNO IDL singleton page title */
    Packit Service 50c9f2
        virtual QCString trSingletonReference(const char *sName)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result=(QCString)sName;
    Packit Service 50c9f2
          result+=" Singleton Reference";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /** UNO IDL service page */
    Packit Service 50c9f2
        virtual QCString trServiceGeneratedFromFiles(bool single)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          // single is true implies a single file
    Packit Service 50c9f2
          QCString result=(QCString)"The documentation for this service "
    Packit Service 50c9f2
                                    "was generated from the following file";
    Packit Service 50c9f2
          if (single) result+=":"; else result+="s:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /** UNO IDL singleton page */
    Packit Service 50c9f2
        virtual QCString trSingletonGeneratedFromFiles(bool single)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          // single is true implies a single file
    Packit Service 50c9f2
          QCString result=(QCString)"The documentation for this singleton "
    Packit Service 50c9f2
                                    "was generated from the following file";
    Packit Service 50c9f2
          if (single) result+=":"; else result+="s:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
    };
    Packit Service 50c9f2
    Packit Service 50c9f2
    #endif