📄 translator_pt.h
字号:
/****************************************************************************** * * $Id: translator_pt.h,v 1.2 2001/03/19 19:27:42 root Exp $ * * 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. * * The translation into Portuguese was provided by * Rui Godinho Lopes <ruiglopes@yahoo.com> * * VERSION HISTORY * --------------- * 001 20 july 2001 * - Updated for doxygen v1.2.8.1 * 000 ? * - Initial translation for doxygen v1.1.5 */#ifndef TRANSLATOR_PT_H#define TRANSLATOR_PT_Hclass TranslatorPortuguese : public TranslatorAdapter_1_2_11{ public: // --- Language control methods ------------------- /*! Used for identification of the language. The identification * should not be translated. It should be replaced by the name * of the language in English using lower-case characters only * (e.g. "czech", "japanese", "russian", etc.). It should be equal to * the identification used in language.cpp. */ QCString idLanguage() { return "portuguese"; } /*! Used to get the LaTeX command(s) for the language support. * This method should return string with commands that switch * LaTeX to the desired language. For example * <pre>"\\usepackage[german]{babel}\n" * </pre> * or * <pre>"\\usepackage{polski}\n" * "\\usepackage[latin2]{inputenc}\n" * "\\usepackage[T1]{fontenc}\n" * </pre> * * The English LaTeX does not use such commands. Because of this * the empty string is returned in this implementation. */ virtual QCString latexLanguageSupportCommand() { return "Portuguese"; } /*! returns the name of the package that is included by LaTeX */ QCString latexBabelPackage() { return "portuguese"; } /*! 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. */ QCString trRelatedFunctions() { return "Fun珲es associadas"; } /*! subscript for the related functions. */ QCString trRelatedSubscript() { return "(Note que n鉶 s鉶 fun珲es membro)"; } /*! header that is put before the detailed description of files, classes and namespaces. */ QCString trDetailedDescription() { return "Descri玢o detalhada"; } /*! header that is put before the list of typedefs. */ QCString trMemberTypedefDocumentation() { return "Documenta玢o das defini珲es de tipo"; } /*! header that is put before the list of enumerations. */ QCString trMemberEnumerationDocumentation() { return "Documenta玢o das enumera珲es"; } /*! header that is put before the list of member functions. */ QCString trMemberFunctionDocumentation() { return "Documenta玢o dos m閠odos"; } /*! header that is put before the list of member attributes. */ QCString trMemberDataDocumentation() { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { return "Documenta玢o dos campos e atributos"; } else { return "Documenta玢o dos dados membro"; } } /*! this is the text of a link put after brief descriptions. */ QCString trMore() { return "Mais..."; } /*! put in the class documentation */ QCString trListOfAllMembers() { return "Mostrar lista completa dos membros"; } /*! used as the title of the "list of all members" page of a class */ QCString trMemberList() { return "Lista dos membros"; } /*! this is the first part of a sentence that is followed by a class name */ QCString trThisIsTheListOfAllMembers() { return "Esta
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -