⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 translator_es.h

📁 doxygen(一个自动从源代码生成文档的工具)的源代码
💻 H
📖 第 1 页 / 共 2 页
字号:
/****************************************************************************** * *  * * 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. * *//* * translator_es.h modified by Lucas Cruz (7-julio-2000) * Some notes: * - It's posible that some sentences haven't got meaning because   * some words haven't got translate in spanish. */#ifndef TRANSLATOR_ES_H#define TRANSLATOR_ES_Hclass TranslatorSpanish : public TranslatorAdapter_1_2_7{  public:    virtual QCString idLanguage()    { return "spanish"; }    /*! returns the name of the package that is included by LaTeX */    virtual QCString latexBabelPackage()     { return ""; }    /*! 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 "";    }    /*! return the language charset. This will be used for the HTML output */    virtual QCString idLanguageCharset()    {      return "iso-8859-1";    }    /*! used in the compound documentation before a list of related functions. */    virtual QCString trRelatedFunctions()    { return "Funciones relacionadas"; }    /*! subscript for the related functions. */    virtual QCString trRelatedSubscript()    { return "(Observar que estas no son funciones miembro.)"; }    /*! header that is put before the detailed description of files, classes and namespaces. */    virtual QCString trDetailedDescription()    { return "Descripci髇 detallada"; }    /*! header that is put before the list of typedefs. */    virtual QCString trMemberTypedefDocumentation()    { return "Documentaci髇 de los 'Tipos Definidos' miembros de la clase"; }        /*! header that is put before the list of enumerations. */    virtual QCString trMemberEnumerationDocumentation()    { return "Documentaci髇 de las enumeraciones miembro de la clase"; }        /*! header that is put before the list of member functions. */    virtual QCString trMemberFunctionDocumentation()    { return "Documentaci髇 de las funciones miembro"; }        /*! header that is put before the list of member attributes. */    virtual QCString trMemberDataDocumentation()    { return "Documentaci髇 de los datos miembro"; }    /*! this is the text of a link put after brief descriptions. */    virtual QCString trMore()     { return "M醩..."; }    /*! put in the class documentation */    virtual QCString trListOfAllMembers()    { return "Lista de todos los miembros."; }    /*! used as the title of the "list of all members" page of a class */    virtual QCString trMemberList()    { return "Lista de los miembros"; }    /*! this is the first part of a sentence that is followed by a class name */    virtual QCString trThisIsTheListOfAllMembers()    { return "Esta es la lista completa de miembros para "; }    /*! this is the remainder of the sentence after the class name */    virtual QCString trIncludingInheritedMembers()    { return ", incluyendo todos los miembros heredados."; }        /*! 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="Generado autom醫icamente por Doxygen";      if (s) result+=(QCString)" para "+s;      result+=" del c骴igo fuente.";       return result;    }    /*! put after an enum name in the list of all members */    virtual QCString trEnumName()    { return "nombre de la enumeraci髇"; }        /*! 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 "definido en"; }    /*! 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 es el texto al pie de la letra del archivo "+f+" adjunto."; }        // 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 "M骴ulos"; }        /*! This is put above each page as a link to the class hierarchy */    virtual QCString trClassHierarchy()    { return "Jerarqu韆 de la clase"; }        /*! This is put above each page as a link to the list of annotated classes */    virtual QCString trCompoundList()    { 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 archivos"; }    /*! This is put above each page as a link to the list of all verbatim headers */    virtual QCString trHeaderFiles()    { return "Archivos cabecera"; }    /*! This is put above each page as a link to all members of compounds. */    virtual QCString trCompoundMembers()    { return "Miembros de las clases"; }    /*! This is put above each page as a link to all members of files. */    virtual QCString trFileMembers()    { return "Archivos de los miembros"; }    /*! This is put above each page as a link to all related pages. */    virtual QCString trRelatedPages()    { return "P醙inas relacionadas"; }    /*! This is put above each page as a link to all examples. */    virtual QCString trExamples()    { return "Ejemplos"; }    /*! This is put above each page as a link to the search engine. */    virtual QCString trSearch()    { return "Buscar"; }    /*! This is an introduction to the class hierarchy. */    virtual QCString trClassHierarchyDescription()    { return "Esta lista de herencias esta ordenada rigurosamente, "             "pero no completa, por orden alfab閠ico:";    }    /*! This is an introduction to the list with all files. */    virtual QCString trFileListDescription(bool extractAll)    {      QCString result="Lista de todos los archivos ";      if (!extractAll) result+="documentados y ";      result+="con descripciones breves:";      return result;    }    /*! This is an introduction to the annotated compound list. */    virtual QCString trCompoundListDescription()    { return "Lista de las clases, estructuras, "             "uniones e interfaces con una breve descripci髇:";     }    /*! This is an introduction to the page with all class members. */    virtual QCString trCompoundMembersDescription(bool extractAll)    {      QCString result="Lista de";      if (!extractAll) result+=" toda la documentaci髇 de";      result+=" los miembros de la clase con enlaces a ";      if (extractAll)         result+=" la documentaci髇 de cada clase:";      else         result+=" la clase de la que forman parte:";      return result;    }    /*! This is an introduction to the page with all file members. */    virtual QCString trFileMembersDescription(bool extractAll)    {      QCString result="Lista de ";      if (!extractAll) result+="toda la documentaci髇 de ";      result+="los miembros con enlaces a ";      if (extractAll)         result+="los documentos de cada archivo a los que pertenecen:";      else         result+="los archivos de los que forman parte:";      return result;    }    /*! This is an introduction to the page with the list of all header files. */    virtual QCString trHeaderFilesDescription()    { return "Lista de los archivos cabecera que crean el API:"; }    /*! This is an introduction to the page with the list of all examples */    virtual QCString trExamplesDescription()    { return "Lista de todos los ejemplos:"; }    /*! This is an introduction to the page with the list of related pages */    virtual QCString trRelatedPagesDescription()    { return "Lista de toda la documentaci髇 relacionada:"; }    /*! This is an introduction to the page with the list of class/file groups */    virtual QCString trModulesDescription()    { return "Lista de todos los m骴ulos:"; }    /*! This sentences is used in the annotated class/file lists if no brief     * description is given.      */    virtual QCString trNoDescriptionAvailable()    { return "Descripci髇 no disponible"; }        // index titles (the project name is prepended for these)     /*! This is used in HTML as the title of index.html. */    virtual QCString trDocumentation()    { return "Documentaci髇"; }    /*! This is used in LaTeX as the title of the chapter with the      * index of all groups.     */    virtual QCString trModuleIndex()    { return "Indice de m骴ulos"; }    /*! This is used in LaTeX as the title of the chapter with the      * class hierarchy.     */    virtual QCString trHierarchicalIndex()    { return "Indice jer醨quico"; }    /*! This is used in LaTeX as the title of the chapter with the      * annotated compound index.     */    virtual QCString trCompoundIndex()    { return "Indice de clases"; }    /*! This is used in LaTeX as the title of the chapter with the     * list of all files.     */    virtual QCString trFileIndex()     { return "Indice de archivos"; }    /*! This is used in LaTeX as the title of the chapter containing     *  the documentation of all groups.     */    virtual QCString trModuleDocumentation()    { return "Documentaci髇 de m骴ulos"; }    /*! This is used in LaTeX as the title of the chapter containing     *  the documentation of all classes, structs and unions.     */    virtual QCString trClassDocumentation()    { return "Documentaci髇 de clases"; }    /*! This is used in LaTeX as the title of the chapter containing     *  the documentation of all files.     */    virtual QCString trFileDocumentation()    { return "Documentaci髇 de archivos"; }    /*! This is used in LaTeX as the title of the chapter containing     *  the documentation of all examples.     */    virtual QCString trExampleDocumentation()    { return "Documentaci髇 de ejemplos"; }    /*! This is used in LaTeX as the title of the chapter containing     *  the documentation of all related pages.     */    virtual QCString trPageDocumentation()    { return "Documentaci髇 de p醙inas"; }    /*! This is used in LaTeX as the title of the document */    virtual QCString trReferenceManual()    { return "Manual de referencia"; }        /*! This is used in the documentation of a file as a header before the      *  list of defines     */    virtual QCString trDefines()    { return "Definiciones"; }    /*! This is used in the documentation of a file as a header before the      *  list of function prototypes     */    virtual QCString trFuncProtos()    { return "Funciones prototipo"; }    /*! This is used in the documentation of a file as a header before the      *  list of typedefs     */    virtual QCString trTypedefs()    { return "Tipos definidos"; }    /*! This is used in the documentation of a file as a header before the      *  list of enumerations     */    virtual QCString trEnumerations()    { return "Enumeraciones"; }    /*! This is used in the documentation of a file as a header before the      *  list of (global) functions     */    virtual QCString trFunctions()    { return "Funciones"; }    /*! This is used in the documentation of a file as a header before the      *  list of (global) variables

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -