Loading README.md +2 −0 Original line number Diff line number Diff line Loading @@ -31,6 +31,8 @@ Developers --------- * Build Status: <a href="https://travis-ci.org/doxygen/doxygen"><img src="https://secure.travis-ci.org/doxygen/doxygen.png?branch=master"/></a> * Coverity Scan Build Status: <a href="https://scan.coverity.com/projects/2860"> <img alt="Coverity Scan Build Status" src="https://scan.coverity.com/projects/2860/badge.svg"/> </a> * Install * Quick install see (./INSTALL) * else http://www.doxygen.org/manual/install.html Loading src/classdef.cpp +10 −3 Original line number Diff line number Diff line Loading @@ -2052,11 +2052,18 @@ QCString ClassDef::title() const pageTitle = theTranslator->trSingletonReference(displayName()); } else { if (Config_getBool("HIDE_COMPOUND_REFERENCE")) { pageTitle = displayName(); } else { pageTitle = theTranslator->trCompoundReference(displayName(), m_impl->compType == Interface && getLanguage()==SrcLangExt_ObjC ? Class : m_impl->compType, m_impl->tempArgs != 0); } } return pageTitle; } Loading src/config.xml +9 −0 Original line number Diff line number Diff line Loading @@ -883,6 +883,15 @@ Go to the <a href="commands.html">next</a> section or return to the If the \c HIDE_SCOPE_NAMES tag is set to \c NO then doxygen will show members with their full class and namespace scopes in the documentation. If set to \c YES, the scope will be hidden. ]]> </docs> </option> <option type='bool' id='HIDE_COMPOUND_REFERENCE' defval='0'> <docs> <![CDATA[ If the \c HIDE_COMPOUND_REFERENCE tag is set to \c NO (default) then doxygen will append additional text to a page's title, such as Class Reference. If set to \c YES the compound reference will be hidden. ]]> </docs> </option> Loading src/translator_br.h +201 −17 Original line number Diff line number Diff line /****************************************************************************** * Copyright (C) 1997-2014 by Dimitri van Heesch. * Copyright (C) 1997-2013 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby Loading @@ -15,6 +15,10 @@ * Thanks to Jorge Ramos, Fernando Carijo and others for their contributions. * * History: * 20131129: * - Updated to 1.8.5; * - Translation in the method trFileMembers() fixed; * - Translation in the method trEnumerationValues() fixed; * 20110628: * - Updated to 1.7.5; * 20100531: Loading @@ -34,7 +38,7 @@ #ifndef TRANSLATOR_BR_H #define TRANSLATOR_BR_H class TranslatorBrazilian : public TranslatorAdapter_1_8_0 class TranslatorBrazilian : public Translator { public: Loading Loading @@ -194,7 +198,7 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 } else { return "Arquivos Membros"; return "Membros dos Arquivos"; } } Loading Loading @@ -432,7 +436,7 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 * list of (global) variables */ virtual QCString trEnumerationValues() { return "Valores enumerados"; } { return "Valores de enumerações"; } /*! This is used in the documentation of a file before the list of * documentation blocks for defines Loading Loading @@ -1834,5 +1838,185 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 /*! Header for the graph showing the directory dependencies */ virtual QCString trDirDepGraph(const char *name) { return QCString("Grafo de dependências do diretório ")+name+":"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.0 ////////////////////////////////////////////////////////////////////////// /*! Detail level selector shown for hierarchical indices */ virtual QCString trDetailLevel() { return "nível de detalhes"; } /*! Section header for list of template parameters */ virtual QCString trTemplateParameters() { return "Parâmetros de template"; } /*! Used in dot graph when UML_LOOK is enabled and there are many fields */ virtual QCString trAndMore(const QCString &number) { return "e "+number+" mais..."; } /*! Used file list for a Java enum */ virtual QCString trEnumGeneratedFromFiles(bool single) { QCString result = "A documentação para esta enumeração foi gerada a partir"; if (single) { result += "do seguinte arquivo:"; } else { result += "dos seguintes arquivos:"; } return result; } /*! Header of a Java enum page (Java enums are represented as classes). */ virtual QCString trEnumReference(const char *name) { QCString result = "Referência da enumeração "; return result + name; } /*! Used for a section containing inherited members */ virtual QCString trInheritedFrom(const char *members,const char *what) { return QCString(members)+" herdados de "+what; } /*! Header of the sections with inherited members specific for the * base class(es) */ virtual QCString trAdditionalInheritedMembers() { return "Outros membros herdados"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.2 ////////////////////////////////////////////////////////////////////////// /*! Used as a tooltip for the toggle button that appears in the * navigation tree in the HTML output when GENERATE_TREEVIEW is * enabled. This tooltip explains the meaning of the button. */ virtual QCString trPanelSynchronisationTooltip(bool enable) { QCString opt = enable ? "ativar" : "desativar"; return "clique para "+opt+" a sincronização do painel"; } /*! Used in a method of an Objective-C class that is declared in a * a category. Note that the @1 marker is required and is replaced * by a link. */ virtual QCString trProvidedByCategory() { return "Provido pela categoria @1."; } /*! Used in a method of an Objective-C category that extends a class. * Note that the @1 marker is required and is replaced by a link to * the class method. */ virtual QCString trExtendsClass() { return "estende a classe @1."; } /*! Used as the header of a list of class methods in Objective-C. * These are similar to static public member functions in C++. */ virtual QCString trClassMethods() { return "Métodos de classe"; } /*! Used as the header of a list of instance methods in Objective-C. * These are similar to public member functions in C++. */ virtual QCString trInstanceMethods() { return "Métodos de instância"; } /*! Used as the header of the member functions of an Objective-C class. */ virtual QCString trMethodDocumentation() { return "Documentação do método"; } /*! Used as the title of the design overview picture created for the * VHDL output. */ virtual QCString trDesignOverview() { // I'm not sure how to accurately translate it return "Visão geral do design"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.4 ////////////////////////////////////////////////////////////////////////// /** old style UNO IDL services: implemented interfaces */ virtual QCString trInterfaces() { return "Interfaces Exportadas"; } /** old style UNO IDL services: inherited services */ virtual QCString trServices() { return "Serviços Incluídos"; } /** UNO IDL constant groups */ virtual QCString trConstantGroups() { return "Grupos de Constantes"; } /** UNO IDL constant groups */ virtual QCString trConstantGroupReference(const char *namespaceName) { QCString result = "Referência do grupo de constantes "; result += namespaceName; return result; } /** UNO IDL service page title */ virtual QCString trServiceReference(const char *sName) { QCString result = "Referência do serviço "; result += sName; return result; } /** UNO IDL singleton page title */ virtual QCString trSingletonReference(const char *sName) { QCString result = "Referência do Singleton "; result += sName; return result; } /** UNO IDL service page */ virtual QCString trServiceGeneratedFromFiles(bool single) { // single is true implies a single file QCString result=(QCString)"A documentação para este serviço " "foi gerada a partir "; if (single) { result+="do seguinte arquivo:"; } else { result+="dos: seguintes arquivos:"; } return result; } /** UNO IDL singleton page */ virtual QCString trSingletonGeneratedFromFiles(bool single) { // single is true implies a single file QCString result=(QCString)"A documentação para este singleton " "foi gerada a partir "; if (single) { result+="do seguinte arquivo:"; } else { result+="dos: seguintes arquivos:"; } return result; } ////////////////////////////////////////////////////////////////////////// }; #endif src/translator_pt.h +186 −4 Original line number Diff line number Diff line /****************************************************************************** * Copyright (C) 1997-2014 by Dimitri van Heesch. * Copyright (C) 1997-2013 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby Loading @@ -24,6 +24,9 @@ * VERSION HISTORY * --------------- * History: * 20131129: * - Updated to 1.8.5; * - Translation in the method trFileMembers() fixed; * 20110628: * - Updated to 1.7.5; * - All obsolete methods have been removed; Loading Loading @@ -52,7 +55,7 @@ #define TRANSLATOR_PT_H class TranslatorPortuguese : public TranslatorAdapter_1_8_0 class TranslatorPortuguese : public Translator { public: Loading Loading @@ -216,7 +219,7 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 } else { return "Ficheiros membro"; return "Membros dos Ficheiros"; } } Loading Loading @@ -442,7 +445,7 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 * list of (global) variables */ QCString trEnumerationValues() { return "Valores da enumeração"; } { return "Valores de enumerações"; } /*! This is used in the documentation of a file before the list of * documentation blocks for defines Loading Loading @@ -1835,6 +1838,185 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 /*! Header for the graph showing the directory dependencies */ virtual QCString trDirDepGraph(const char *name) { return QCString("Grafo de dependências do directório ")+name+":"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.0 ////////////////////////////////////////////////////////////////////////// /*! Detail level selector shown for hierarchical indices */ virtual QCString trDetailLevel() { return "nível de detalhes"; } /*! Section header for list of template parameters */ virtual QCString trTemplateParameters() { return "Parâmetros de template"; } /*! Used in dot graph when UML_LOOK is enabled and there are many fields */ virtual QCString trAndMore(const QCString &number) { return "e "+number+" mais..."; } /*! Used file list for a Java enum */ virtual QCString trEnumGeneratedFromFiles(bool single) { QCString result = "A documentação para esta enumeração foi gerada a partir"; if (single) { result += "do seguinte ficheiro:"; } else { result += "dos seguintes ficheiros:"; } return result; } /*! Header of a Java enum page (Java enums are represented as classes). */ virtual QCString trEnumReference(const char *name) { QCString result = "Referência da enumeração "; return result + name; } /*! Used for a section containing inherited members */ virtual QCString trInheritedFrom(const char *members,const char *what) { return QCString(members)+" herdados de "+what; } /*! Header of the sections with inherited members specific for the * base class(es) */ virtual QCString trAdditionalInheritedMembers() { return "Outros membros herdados"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.2 ////////////////////////////////////////////////////////////////////////// /*! Used as a tooltip for the toggle button that appears in the * navigation tree in the HTML output when GENERATE_TREEVIEW is * enabled. This tooltip explains the meaning of the button. */ virtual QCString trPanelSynchronisationTooltip(bool enable) { QCString opt = enable ? "ativar" : "desativar"; return "clique para "+opt+" a sincronização do painel"; } /*! Used in a method of an Objective-C class that is declared in a * a category. Note that the @1 marker is required and is replaced * by a link. */ virtual QCString trProvidedByCategory() { return "Provido pela categoria @1."; } /*! Used in a method of an Objective-C category that extends a class. * Note that the @1 marker is required and is replaced by a link to * the class method. */ virtual QCString trExtendsClass() { return "estende a classe @1."; } /*! Used as the header of a list of class methods in Objective-C. * These are similar to static public member functions in C++. */ virtual QCString trClassMethods() { return "Métodos de classe"; } /*! Used as the header of a list of instance methods in Objective-C. * These are similar to public member functions in C++. */ virtual QCString trInstanceMethods() { return "Métodos de instância"; } /*! Used as the header of the member functions of an Objective-C class. */ virtual QCString trMethodDocumentation() { return "Documentação do método"; } /*! Used as the title of the design overview picture created for the * VHDL output. */ virtual QCString trDesignOverview() { // I'm not sure how to accurately translate it return "Visão geral do design"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.4 ////////////////////////////////////////////////////////////////////////// /** old style UNO IDL services: implemented interfaces */ virtual QCString trInterfaces() { return "Interfaces Exportadas"; } /** old style UNO IDL services: inherited services */ virtual QCString trServices() { return "Serviços Incluídos"; } /** UNO IDL constant groups */ virtual QCString trConstantGroups() { return "Grupos de Constantes"; } /** UNO IDL constant groups */ virtual QCString trConstantGroupReference(const char *namespaceName) { QCString result = "Referência do grupo de constantes "; result += namespaceName; return result; } /** UNO IDL service page title */ virtual QCString trServiceReference(const char *sName) { QCString result = "Referência do serviço "; result += sName; return result; } /** UNO IDL singleton page title */ virtual QCString trSingletonReference(const char *sName) { QCString result = "Referência do Singleton "; result += sName; return result; } /** UNO IDL service page */ virtual QCString trServiceGeneratedFromFiles(bool single) { // single is true implies a single file QCString result=(QCString)"A documentação para este serviço " "foi gerada a partir "; if (single) { result+="do seguinte ficheiro:"; } else { result+="dos: seguintes ficheiros:"; } return result; } /** UNO IDL singleton page */ virtual QCString trSingletonGeneratedFromFiles(bool single) { // single is true implies a single file QCString result=(QCString)"A documentação para este singleton " "foi gerada a partir "; if (single) { result+="do seguinte ficheiro:"; } else { result+="dos: seguintes ficheiros:"; } return result; } ////////////////////////////////////////////////////////////////////////// }; #endif Loading
README.md +2 −0 Original line number Diff line number Diff line Loading @@ -31,6 +31,8 @@ Developers --------- * Build Status: <a href="https://travis-ci.org/doxygen/doxygen"><img src="https://secure.travis-ci.org/doxygen/doxygen.png?branch=master"/></a> * Coverity Scan Build Status: <a href="https://scan.coverity.com/projects/2860"> <img alt="Coverity Scan Build Status" src="https://scan.coverity.com/projects/2860/badge.svg"/> </a> * Install * Quick install see (./INSTALL) * else http://www.doxygen.org/manual/install.html Loading
src/classdef.cpp +10 −3 Original line number Diff line number Diff line Loading @@ -2052,11 +2052,18 @@ QCString ClassDef::title() const pageTitle = theTranslator->trSingletonReference(displayName()); } else { if (Config_getBool("HIDE_COMPOUND_REFERENCE")) { pageTitle = displayName(); } else { pageTitle = theTranslator->trCompoundReference(displayName(), m_impl->compType == Interface && getLanguage()==SrcLangExt_ObjC ? Class : m_impl->compType, m_impl->tempArgs != 0); } } return pageTitle; } Loading
src/config.xml +9 −0 Original line number Diff line number Diff line Loading @@ -883,6 +883,15 @@ Go to the <a href="commands.html">next</a> section or return to the If the \c HIDE_SCOPE_NAMES tag is set to \c NO then doxygen will show members with their full class and namespace scopes in the documentation. If set to \c YES, the scope will be hidden. ]]> </docs> </option> <option type='bool' id='HIDE_COMPOUND_REFERENCE' defval='0'> <docs> <![CDATA[ If the \c HIDE_COMPOUND_REFERENCE tag is set to \c NO (default) then doxygen will append additional text to a page's title, such as Class Reference. If set to \c YES the compound reference will be hidden. ]]> </docs> </option> Loading
src/translator_br.h +201 −17 Original line number Diff line number Diff line /****************************************************************************** * Copyright (C) 1997-2014 by Dimitri van Heesch. * Copyright (C) 1997-2013 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby Loading @@ -15,6 +15,10 @@ * Thanks to Jorge Ramos, Fernando Carijo and others for their contributions. * * History: * 20131129: * - Updated to 1.8.5; * - Translation in the method trFileMembers() fixed; * - Translation in the method trEnumerationValues() fixed; * 20110628: * - Updated to 1.7.5; * 20100531: Loading @@ -34,7 +38,7 @@ #ifndef TRANSLATOR_BR_H #define TRANSLATOR_BR_H class TranslatorBrazilian : public TranslatorAdapter_1_8_0 class TranslatorBrazilian : public Translator { public: Loading Loading @@ -194,7 +198,7 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 } else { return "Arquivos Membros"; return "Membros dos Arquivos"; } } Loading Loading @@ -432,7 +436,7 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 * list of (global) variables */ virtual QCString trEnumerationValues() { return "Valores enumerados"; } { return "Valores de enumerações"; } /*! This is used in the documentation of a file before the list of * documentation blocks for defines Loading Loading @@ -1834,5 +1838,185 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 /*! Header for the graph showing the directory dependencies */ virtual QCString trDirDepGraph(const char *name) { return QCString("Grafo de dependências do diretório ")+name+":"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.0 ////////////////////////////////////////////////////////////////////////// /*! Detail level selector shown for hierarchical indices */ virtual QCString trDetailLevel() { return "nível de detalhes"; } /*! Section header for list of template parameters */ virtual QCString trTemplateParameters() { return "Parâmetros de template"; } /*! Used in dot graph when UML_LOOK is enabled and there are many fields */ virtual QCString trAndMore(const QCString &number) { return "e "+number+" mais..."; } /*! Used file list for a Java enum */ virtual QCString trEnumGeneratedFromFiles(bool single) { QCString result = "A documentação para esta enumeração foi gerada a partir"; if (single) { result += "do seguinte arquivo:"; } else { result += "dos seguintes arquivos:"; } return result; } /*! Header of a Java enum page (Java enums are represented as classes). */ virtual QCString trEnumReference(const char *name) { QCString result = "Referência da enumeração "; return result + name; } /*! Used for a section containing inherited members */ virtual QCString trInheritedFrom(const char *members,const char *what) { return QCString(members)+" herdados de "+what; } /*! Header of the sections with inherited members specific for the * base class(es) */ virtual QCString trAdditionalInheritedMembers() { return "Outros membros herdados"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.2 ////////////////////////////////////////////////////////////////////////// /*! Used as a tooltip for the toggle button that appears in the * navigation tree in the HTML output when GENERATE_TREEVIEW is * enabled. This tooltip explains the meaning of the button. */ virtual QCString trPanelSynchronisationTooltip(bool enable) { QCString opt = enable ? "ativar" : "desativar"; return "clique para "+opt+" a sincronização do painel"; } /*! Used in a method of an Objective-C class that is declared in a * a category. Note that the @1 marker is required and is replaced * by a link. */ virtual QCString trProvidedByCategory() { return "Provido pela categoria @1."; } /*! Used in a method of an Objective-C category that extends a class. * Note that the @1 marker is required and is replaced by a link to * the class method. */ virtual QCString trExtendsClass() { return "estende a classe @1."; } /*! Used as the header of a list of class methods in Objective-C. * These are similar to static public member functions in C++. */ virtual QCString trClassMethods() { return "Métodos de classe"; } /*! Used as the header of a list of instance methods in Objective-C. * These are similar to public member functions in C++. */ virtual QCString trInstanceMethods() { return "Métodos de instância"; } /*! Used as the header of the member functions of an Objective-C class. */ virtual QCString trMethodDocumentation() { return "Documentação do método"; } /*! Used as the title of the design overview picture created for the * VHDL output. */ virtual QCString trDesignOverview() { // I'm not sure how to accurately translate it return "Visão geral do design"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.4 ////////////////////////////////////////////////////////////////////////// /** old style UNO IDL services: implemented interfaces */ virtual QCString trInterfaces() { return "Interfaces Exportadas"; } /** old style UNO IDL services: inherited services */ virtual QCString trServices() { return "Serviços Incluídos"; } /** UNO IDL constant groups */ virtual QCString trConstantGroups() { return "Grupos de Constantes"; } /** UNO IDL constant groups */ virtual QCString trConstantGroupReference(const char *namespaceName) { QCString result = "Referência do grupo de constantes "; result += namespaceName; return result; } /** UNO IDL service page title */ virtual QCString trServiceReference(const char *sName) { QCString result = "Referência do serviço "; result += sName; return result; } /** UNO IDL singleton page title */ virtual QCString trSingletonReference(const char *sName) { QCString result = "Referência do Singleton "; result += sName; return result; } /** UNO IDL service page */ virtual QCString trServiceGeneratedFromFiles(bool single) { // single is true implies a single file QCString result=(QCString)"A documentação para este serviço " "foi gerada a partir "; if (single) { result+="do seguinte arquivo:"; } else { result+="dos: seguintes arquivos:"; } return result; } /** UNO IDL singleton page */ virtual QCString trSingletonGeneratedFromFiles(bool single) { // single is true implies a single file QCString result=(QCString)"A documentação para este singleton " "foi gerada a partir "; if (single) { result+="do seguinte arquivo:"; } else { result+="dos: seguintes arquivos:"; } return result; } ////////////////////////////////////////////////////////////////////////// }; #endif
src/translator_pt.h +186 −4 Original line number Diff line number Diff line /****************************************************************************** * Copyright (C) 1997-2014 by Dimitri van Heesch. * Copyright (C) 1997-2013 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby Loading @@ -24,6 +24,9 @@ * VERSION HISTORY * --------------- * History: * 20131129: * - Updated to 1.8.5; * - Translation in the method trFileMembers() fixed; * 20110628: * - Updated to 1.7.5; * - All obsolete methods have been removed; Loading Loading @@ -52,7 +55,7 @@ #define TRANSLATOR_PT_H class TranslatorPortuguese : public TranslatorAdapter_1_8_0 class TranslatorPortuguese : public Translator { public: Loading Loading @@ -216,7 +219,7 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 } else { return "Ficheiros membro"; return "Membros dos Ficheiros"; } } Loading Loading @@ -442,7 +445,7 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 * list of (global) variables */ QCString trEnumerationValues() { return "Valores da enumeração"; } { return "Valores de enumerações"; } /*! This is used in the documentation of a file before the list of * documentation blocks for defines Loading Loading @@ -1835,6 +1838,185 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 /*! Header for the graph showing the directory dependencies */ virtual QCString trDirDepGraph(const char *name) { return QCString("Grafo de dependências do directório ")+name+":"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.0 ////////////////////////////////////////////////////////////////////////// /*! Detail level selector shown for hierarchical indices */ virtual QCString trDetailLevel() { return "nível de detalhes"; } /*! Section header for list of template parameters */ virtual QCString trTemplateParameters() { return "Parâmetros de template"; } /*! Used in dot graph when UML_LOOK is enabled and there are many fields */ virtual QCString trAndMore(const QCString &number) { return "e "+number+" mais..."; } /*! Used file list for a Java enum */ virtual QCString trEnumGeneratedFromFiles(bool single) { QCString result = "A documentação para esta enumeração foi gerada a partir"; if (single) { result += "do seguinte ficheiro:"; } else { result += "dos seguintes ficheiros:"; } return result; } /*! Header of a Java enum page (Java enums are represented as classes). */ virtual QCString trEnumReference(const char *name) { QCString result = "Referência da enumeração "; return result + name; } /*! Used for a section containing inherited members */ virtual QCString trInheritedFrom(const char *members,const char *what) { return QCString(members)+" herdados de "+what; } /*! Header of the sections with inherited members specific for the * base class(es) */ virtual QCString trAdditionalInheritedMembers() { return "Outros membros herdados"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.2 ////////////////////////////////////////////////////////////////////////// /*! Used as a tooltip for the toggle button that appears in the * navigation tree in the HTML output when GENERATE_TREEVIEW is * enabled. This tooltip explains the meaning of the button. */ virtual QCString trPanelSynchronisationTooltip(bool enable) { QCString opt = enable ? "ativar" : "desativar"; return "clique para "+opt+" a sincronização do painel"; } /*! Used in a method of an Objective-C class that is declared in a * a category. Note that the @1 marker is required and is replaced * by a link. */ virtual QCString trProvidedByCategory() { return "Provido pela categoria @1."; } /*! Used in a method of an Objective-C category that extends a class. * Note that the @1 marker is required and is replaced by a link to * the class method. */ virtual QCString trExtendsClass() { return "estende a classe @1."; } /*! Used as the header of a list of class methods in Objective-C. * These are similar to static public member functions in C++. */ virtual QCString trClassMethods() { return "Métodos de classe"; } /*! Used as the header of a list of instance methods in Objective-C. * These are similar to public member functions in C++. */ virtual QCString trInstanceMethods() { return "Métodos de instância"; } /*! Used as the header of the member functions of an Objective-C class. */ virtual QCString trMethodDocumentation() { return "Documentação do método"; } /*! Used as the title of the design overview picture created for the * VHDL output. */ virtual QCString trDesignOverview() { // I'm not sure how to accurately translate it return "Visão geral do design"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.4 ////////////////////////////////////////////////////////////////////////// /** old style UNO IDL services: implemented interfaces */ virtual QCString trInterfaces() { return "Interfaces Exportadas"; } /** old style UNO IDL services: inherited services */ virtual QCString trServices() { return "Serviços Incluídos"; } /** UNO IDL constant groups */ virtual QCString trConstantGroups() { return "Grupos de Constantes"; } /** UNO IDL constant groups */ virtual QCString trConstantGroupReference(const char *namespaceName) { QCString result = "Referência do grupo de constantes "; result += namespaceName; return result; } /** UNO IDL service page title */ virtual QCString trServiceReference(const char *sName) { QCString result = "Referência do serviço "; result += sName; return result; } /** UNO IDL singleton page title */ virtual QCString trSingletonReference(const char *sName) { QCString result = "Referência do Singleton "; result += sName; return result; } /** UNO IDL service page */ virtual QCString trServiceGeneratedFromFiles(bool single) { // single is true implies a single file QCString result=(QCString)"A documentação para este serviço " "foi gerada a partir "; if (single) { result+="do seguinte ficheiro:"; } else { result+="dos: seguintes ficheiros:"; } return result; } /** UNO IDL singleton page */ virtual QCString trSingletonGeneratedFromFiles(bool single) { // single is true implies a single file QCString result=(QCString)"A documentação para este singleton " "foi gerada a partir "; if (single) { result+="do seguinte ficheiro:"; } else { result+="dos: seguintes ficheiros:"; } return result; } ////////////////////////////////////////////////////////////////////////// }; #endif