/****************************************************************************** * Copyright (C) 1997-2001 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 * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * * Documents produced by Doxygen are derivative works derived from the * input used in their production; they are not affected by this license. * * Brazilian Portuguese version by * Fabio "FJTC" Jun Takada Chino * Version: 1.2.6.1 (2001/04/13) */ #ifndef TRANSLATOR_BR_H #define TRANSLATOR_BR_H class TranslatorBrazilian: public Translator { public: // --- Language control methods ------------------- /*! Used for identification of the language. May resemble * the string returned by latexBabelPackage(), but it is not used * for the same purpose. The identification should not be translated. * It should be replaced by the name of the language in English * (e.g. Czech, Japanese, Russian, etc.). It should be equal to * the identification in language.h. */ virtual QCString idLanguage() { return "portuges"; /* I'm not sure if it is correct. I did not found the documentation of BabelPackage*/ } /*! Used to get the command(s) for the language support. This method * was designed for languages which do not prefer babel package. * If this methods returns empty string, then the latexBabelPackage() * method is used to generate the command for using the babel package. */ virtual QCString latexLanguageSupportCommand() { return "Brazilian"; } /*! returns the name of the package that is included by LaTeX */ virtual QCString latexBabelPackage() { return ""; } /*! return the language charset. This will be used for the HTML output */ virtual QCString idLanguageCharset() { return "iso-8859-1"; } // --- Language translation methods ------------------- /*! used in the compound documentation before a list of related functions. */ virtual QCString trRelatedFunctions() { return "Funções Relacionadas"; } /*! subscript for the related functions. */ virtual QCString trRelatedSubscript() { return "(Note que estes não são funções membros.)"; } /*! header that is put before the detailed description of files, classes and namespaces. */ virtual QCString trDetailedDescription() { return "Descrição Detalhada"; } /*! header that is put before the list of typedefs. */ virtual QCString trMemberTypedefDocumentation() { return "Definições de Tipos"; } /*! header that is put before the list of enumerations. */ virtual QCString trMemberEnumerationDocumentation() { return "Enumerações"; } /*! header that is put before the list of member functions. */ virtual QCString trMemberFunctionDocumentation() { return "Métodos"; } /*! header that is put before the list of member attributes. */ virtual QCString trMemberDataDocumentation() { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { return "Campos e Atributos"; } else { return "Constantes"; } } /*! this is the text of a link put after brief descriptions. */ virtual QCString trMore() { return "Mais..."; } /*! put in the class documentation */ virtual QCString trListOfAllMembers() { return "Lista de todos os Membros."; } /*! used as the title of the "list of all members" page of a class */ virtual QCString trMemberList() { return "Lista de Membros"; } /*! this is the first part of a sentence that is followed by a class name */ virtual QCString trThisIsTheListOfAllMembers() { return "Esta é a lista completa dos membros da "; } /*! this is the remainder of the sentence after the class name */ virtual QCString trIncludingInheritedMembers() { return ", incluindo todos os membros herdados."; } /*! this is put at the author sections at the bottom of man pages. * parameter s is name of the project name. */ virtual QCString trGeneratedAutomatically(const char *s) { QCString result="Gerado automaticamente por Doxygen"; if (s) result+=(QCString)" para "+s; result+=" a partir do código-fonte."; return result; } /*! put after an enum name in the list of all members */ virtual QCString trEnumName() { return "Nome da enumeração"; } /*! put after an enum value in the list of all members */ virtual QCString trEnumValue() { return "Valor enumerado"; } /*! put after an undocumented member in the list of all members */ virtual QCString trDefinedIn() { return "definida em"; } /*! put as in introduction in the verbatim header file of a class. * parameter f is the name of the include file. */ virtual QCString trVerbatimText(const char *f) { return (QCString)"Este é o texto original do arquivo "+f+"."; } // quick reference sections /*! This is put above each page as a link to the list of all groups of * compounds or files (see the \\group command). */ virtual QCString trModules() { return "Modulos"; } /*! This is put above each page as a link to the class hierarchy */ virtual QCString trClassHierarchy() { return "Hierarquia de Classes"; } /*! This is put above each page as a link to the list of annotated classes */ virtual QCString trCompoundList() { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { return "Estrutura de Dados"; } else { return "Lista de Componentes"; } } /*! This is put above each page as a link to the list of documented files */ virtual QCString trFileList() { return "Lista de Arquivos"; } /*! This is put above each page as a link to the list of all verbatim headers */ virtual QCString trHeaderFiles() { return "Arquivos de Cabeçalho (Headers)"; } /*! This is put above each page as a link to all members of compounds. */ virtual QCString trCompoundMembers() { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { return "Campos de Dados"; } else { return "Componentes Membros"; } } /*! This is put above each page as a link to all members of files. */ virtual QCString trFileMembers() { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { return "Globais"; } else { return "Arquivos Membros"; } } /*! This is put above each page as a link to all related pages. */ virtual QCString trRelatedPages() { return "Páginas relacionadas"; } /*! This is put above each page as a link to all examples. */ virtual QCString trExamples() { return "Exemplos"; } /*! This is put above each page as a link to the search engine. */ virtual QCString trSearch() { return "Busca"; } /*! This is an introduction to the class hierarchy. */ virtual QCString trClassHierarchyDescription() { return "Esta lista de hierarquia é parcialmente ordenada em ordem alfabética:"; } /*! This is an introduction to the list with all files. */ virtual QCString trFileListDescription(bool extractAll) { QCString result="Aqui está a lista de todos os arquivos "; if (!extractAll) result+="documentados "; result+="com suas respectivas descrições:"; return result; } /*! This is an introduction to the annotated compound list. */ virtual QCString trCompoundListDescription() { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { return "Aqui estão as estruturas de dados e suas respectivas descrições:"; } else { return "Aqui estão as classes, estruturas, uniões e interfaces e suas respectivas descrições:"; } } /*! This is an introduction to the page with all class members. */ virtual QCString trCompoundMembersDescription(bool extractAll) { QCString result="Aqui está a lista de todos os membros de classes "; if (!extractAll) result+="documentados "; result+="com links para "; if (extractAll) result+="a documentação de suas respectivas classes:"; else result+="suas respectivas classes:"; return result; } /*! This is an introduction to the page with all file members. */ virtual QCString trFileMembersDescription(bool extractAll) { QCString result="Aqui esta a lista de "; if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { result+="tadas as funções, variáveis, definições, enumerações e definições de tipos "; if (!extractAll) result+="documentadas "; } else { result+="todos os membros dos arquivos "; if (!extractAll) result+="documentados "; } result+="com links para "; if (extractAll) result+="seus respectivos arquivos:"; else result+="suas respectivas documentações:"; return result; } /*! This is an introduction to the page with the list of all header files. */ virtual QCString trHeaderFilesDescription() { return "Aqui estão os arquivos de cabeçalho que compõe a API:"; } /*! This is an introduction to the page with the list of all examples */ virtual QCString trExamplesDescription() { return "Aqui está a lista de todos os exemplos:"; } /*! This is an introduction to the page with the list of related pages */ virtual QCString trRelatedPagesDescription() { return "Aqui está a lista de toda a documentação relacionadas:"; } /*! This is an introduction to the page with the list of class/file groups */ virtual QCString trModulesDescription() { return "Aqui está a lista de todos os médulos:"; } /*! This sentences is used in the annotated class/file lists if no brief * description is given. */ virtual QCString trNoDescriptionAvailable() { return "Sem descriçãodisponível"; } // index titles (the project name is prepended for these) /*! This is used in HTML as the title of index.html. */ virtual QCString trDocumentation() { return "Documentação"; } /*! This is used in LaTeX as the title of the chapter with the * index of all groups. */ virtual QCString trModuleIndex() { return "Índice de Módulos"; } /*! This is used in LaTeX as the title of the chapter with the * class hierarchy. */ virtual QCString trHierarchicalIndex() { return "Índice Hierárquico"; } /*! This is used in LaTeX as the title of the chapter with the * annotated compound index. */ virtual QCString trCompoundIndex() { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { return "Índice das Estruturas de Dados"; } else { return "Índice dos Componentes"; } } /*! This is used in LaTeX as the title of the chapter with the * list of all files. */ virtual QCString trFileIndex() { return "Índice dos Arquivos"; } /*! This is used in LaTeX as the title of the chapter containing * the documentation of all groups. */ virtual QCString trModuleDocumentation() { return "Módulos"; } /*! This is used in LaTeX as the title of the chapter containing * the documentation of all classes, structs and unions. */ virtual QCString trClassDocumentation() { return "Classes"; } /*! This is used in LaTeX as the title of the chapter containing * the documentation of all files. */ virtual QCString trFileDocumentation() { return "Arquivos"; } /*! This is used in LaTeX as the title of the chapter containing * the documentation of all examples. */ virtual QCString trExampleDocumentation() { return "Exemplos"; } /*! This is used in LaTeX as the title of the chapter containing * the documentation of all related pages. */ virtual QCString trPageDocumentation() { return "Documentação Relacionada"; } /*! This is used in LaTeX as the title of the document */ virtual QCString trReferenceManual() { return "Manual de Referência"; } /*! This is used in the documentation of a file as a header before the * list of defines */ virtual QCString trDefines() { return "Definições e Macros"; } /*! This is used in the documentation of a file as a header before the * list of function prototypes */ virtual QCString trFuncProtos() { return "Protótipos de Funções"; } /*! This is used in the documentation of a file as a header before the * list of typedefs */ virtual QCString trTypedefs() { return "Definições de Tipos"; } /*! This is used in the documentation of a file as a header before the * list of enumerations */ virtual QCString trEnumerations() { return "Enumerações"; } /*! This is used in the documentation of a file as a header before the * list of (global) functions */ virtual QCString trFunctions() { return "Funções"; } /*! This is used in the documentation of a file as a header before the * list of (global) variables */ virtual QCString trVariables() { return "Variáveis"; } /*! This is used in the documentation of a file as a header before the * list of (global) variables */ virtual QCString trEnumerationValues() { return "Valores Enumerados"; } /*! This is used in man pages as the author section. */ virtual QCString trAuthor() { return "Autor"; } /*! This is used in the documentation of a file before the list of * documentation blocks for defines */ virtual QCString trDefineDocumentation() { return "Deinições e macros"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for function prototypes */ virtual QCString trFunctionPrototypeDocumentation() { return "Protótipos de funções"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for typedefs */ virtual QCString trTypedefDocumentation() { return "Definições de tipos"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for enumeration types */ virtual QCString trEnumerationTypeDocumentation() { return "Enumerações"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for enumeration values */ virtual QCString trEnumerationValueDocumentation() { return "Valores enumerados"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for functions */ virtual QCString trFunctionDocumentation() { return "Funções"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for variables */ virtual QCString trVariableDocumentation() { return "Variáveis"; } /*! This is used in the documentation of a file/namespace/group before * the list of links to documented compounds */ virtual QCString trCompounds() { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { return "Estruturas de Dados"; } else { return "Componentes"; } } /*! This is used in the documentation of a group before the list of * links to documented files */ virtual QCString trFiles() { return "Arquivos"; } /*! This is used in the standard footer of each page and indicates when * the page was generated */ virtual QCString trGeneratedAt(const char *date,const char *projName) { QCString result=(QCString)"Gerado em "+date; if (projName) result+=(QCString)" para "+projName; result+=(QCString)" por"; return result; } /*! This is part of the sentence used in the standard footer of each page. */ virtual QCString trWrittenBy() { return "escrito por"; } /*! this text is put before a class diagram */ virtual QCString trClassDiagram(const char *clName) { return (QCString)"Diagrama de Hierarquia para "+clName+":"; } /*! this text is generated when the \\internal command is used. */ virtual QCString trForInternalUseOnly() { return "Apenas para uso interno."; } /*! this text is generated when the \\reimp command is used. */ virtual QCString trReimplementedForInternalReasons() { return "Reimplementado por razões internas. A API não foi modificada."; } /*! this text is generated when the \\warning command is used. */ virtual QCString trWarning() { return "Aviso"; } /*! this text is generated when the \\bug command is used. */ virtual QCString trBugsAndLimitations() { return "Bugs e limitações"; } /*! this text is generated when the \\version command is used. */ virtual QCString trVersion() { return "Versão"; } /*! this text is generated when the \\date command is used. */ virtual QCString trDate() { return "Data"; } /*! this text is generated when the \\author command is used. */ virtual QCString trAuthors() { return "Autor(es)"; } /*! this text is generated when the \\return command is used. */ virtual QCString trReturns() { return "Retorna"; } /*! this text is generated when the \\sa command is used. */ virtual QCString trSeeAlso() { return "Veja também"; } /*! this text is generated when the \\param command is used. */ virtual QCString trParameters() { return "Parâmetros"; } /*! this text is generated when the \\exception command is used. */ virtual QCString trExceptions() { return "Exceções"; } /*! this text is used in the title page of a LaTeX document. */ virtual QCString trGeneratedBy() { return "Gerado por"; } ////////////////////////////////////////////////////////////////////////// // new since 0.49-990307 ////////////////////////////////////////////////////////////////////////// /*! used as the title of page containing all the index of all namespaces. */ virtual QCString trNamespaceList() { return "Lista de Namespaces"; } /*! used as an introduction to the namespace list */ virtual QCString trNamespaceListDescription(bool extractAll) { QCString result="Aqui esta a lista de todos os Namespaces "; if (!extractAll) result+="documentados "; result+="com suas respectivas descrições:"; return result; } /*! used in the class documentation as a header before the list of all * friends of a class */ virtual QCString trFriends() { return "Amigos"; } ////////////////////////////////////////////////////////////////////////// // new since 0.49-990405 ////////////////////////////////////////////////////////////////////////// /*! used in the class documentation as a header before the list of all * related classes */ virtual QCString trRelatedFunctionDocumentation() { return "Amigos e Funções Relacionadas"; } ////////////////////////////////////////////////////////////////////////// // new since 0.49-990425 ////////////////////////////////////////////////////////////////////////// /*! used as the title of the HTML page of a class/struct/union */ virtual QCString trCompoundReference(const char *clName, ClassDef::CompoundType compType, bool isTemplate) { QCString result="Referência da"; if (isTemplate) result+=" Template de"; switch(compType) { case ClassDef::Class: result+=" Classe "; break; case ClassDef::Struct: result+=" Estrutura "; break; case ClassDef::Union: result+=" União "; break; case ClassDef::Interface: result+=" Interface "; break; case ClassDef::Exception: result+=" Exceção "; break; } result+=(QCString)clName; return result; } /*! used as the title of the HTML page of a file */ virtual QCString trFileReference(const char *fileName) { QCString result = "Referência do Arquivo "; result += fileName; return result; } /*! used as the title of the HTML page of a namespace */ virtual QCString trNamespaceReference(const char *namespaceName) { QCString result ="Refência do Namespace "; result += namespaceName; return result; } /* these are for the member sections of a class, struct or union */ virtual QCString trPublicMembers() { return "Métodos Públicos"; } virtual QCString trPublicSlots() { return "Slots Públicos"; } virtual QCString trSignals() { return "Signals"; } virtual QCString trStaticPublicMembers() { return "Métodos Públicos Estáticos"; } virtual QCString trProtectedMembers() { return "Métodos Protegidos"; } virtual QCString trProtectedSlots() { return "Slots Protegidos"; } virtual QCString trStaticProtectedMembers() { return "Métodos Protegidos Estáticos"; } virtual QCString trPrivateMembers() { return "Métodos Privados"; } virtual QCString trPrivateSlots() { return "Slots Privados"; } virtual QCString trStaticPrivateMembers() { return "Métodos Privados Estáticos"; } /*! this function is used to produce a comma-separated list of items. * use generateMarker(i) to indicate where item i should be put. */ virtual QCString trWriteList(int numEntries) { QCString result; int i; // the inherits list contain `numEntries' classes for (i=0;i