📄 translator_es.h
字号:
*/ virtual QCString trVariables() { return "Variables"; } /*! This is used in the documentation of a file as a header before the * list of (global) variables */ virtual QCString trEnumerationValues() { return "Valores de la enumeraci髇"; } /*! 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 "Documentaci髇 de las definiciones"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for function prototypes */ virtual QCString trFunctionPrototypeDocumentation() { return "Documentaci髇 de las funciones prototipo"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for typedefs */ virtual QCString trTypedefDocumentation() { return "Documentaci髇 de los tipos definidos"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for enumeration types */ virtual QCString trEnumerationTypeDocumentation() { return "Documentaci髇 de las enumeraciones"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for enumeration values */ virtual QCString trEnumerationValueDocumentation() { return "Documentaci髇 de los valores de la enumeraci髇"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for functions */ virtual QCString trFunctionDocumentation() { return "Documentaci髇 de las funciones"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for variables */ virtual QCString trVariableDocumentation() { return "Documentaci髇 de las variables"; } /*! This is used in the documentation of a file/namespace/group before * the list of links to documented compounds */ virtual QCString trCompounds() { return "Clases"; } /*! This is used in the documentation of a group before the list of * links to documented files */ virtual QCString trFiles() { return "Archivos"; } /*! 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)"Generado el "+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 herencias de "+clName; } /*! this text is generated when the \\internal command is used. */ virtual QCString trForInternalUseOnly() { return "Para uso interno exclusivamente."; } /*! this text is generated when the \\reimp command is used. */ virtual QCString trReimplementedForInternalReasons() { return "Reimplementado por razones internas; el API no se ve afectado."; } /*! this text is generated when the \\warning command is used. */ virtual QCString trWarning() { return "Atenci髇"; } /*! this text is generated when the \\bug command is used. */ virtual QCString trBugsAndLimitations() { return "Bugs y limitaciones"; } /*! this text is generated when the \\version command is used. */ virtual QCString trVersion() { return "Versi髇"; } /*! this text is generated when the \\date command is used. */ virtual QCString trDate() { return "Fecha"; } /*! 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 "Devuelve"; } /*! this text is generated when the \\sa command is used. */ virtual QCString trSeeAlso() { return "Ver tambi閚"; } /*! this text is generated when the \\param command is used. */ virtual QCString trParameters() { return "Par醡etros"; } /*! this text is generated when the \\exception command is used. */ virtual QCString trExceptions() { return "Excepciones"; } /*! this text is used in the title page of a LaTeX document. */ virtual QCString trGeneratedBy() { return "Generado 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 namespace"; } /*! used as an introduction to the namespace list */ virtual QCString trNamespaceListDescription(bool extractAll) { QCString result="Lista de "; if (!extractAll) result+="toda la documentaci髇 de "; result+="los namespaces con una breve descripci髇:"; return result; } /*! used in the class documentation as a header before the list of all * friends of a class */ virtual QCString trFriends() { return "Amigas"; } //////////////////////////////////////////////////////////////////////////// new since 0.49-990405////////////////////////////////////////////////////////////////////////// /*! used in the class documentation as a header before the list of all * related classes */ virtual QCString trRelatedFunctionDocumentation() { return "Documentaci髇 de las funciones relacionadas y clases amigas"; } //////////////////////////////////////////////////////////////////////////// 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="Referencia de "; switch(compType) { case ClassDef::Class: result+="la Clase "; break; case ClassDef::Struct: result+="la Estructura "; break; case ClassDef::Union: result+="la Uni髇 "; break; case ClassDef::Interface: result+="la Interfaz "; break; case ClassDef::Exception: result+="la Excepci髇 "; 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="Referencia del Archivo "; result+=fileName; return result; } /*! used as the title of the HTML page of a namespace */ virtual QCString trNamespaceReference(const char *namespaceName) { QCString result="Referencia del Namespace "; result+=namespaceName; return result; } /* these are for the member sections of a class, struct or union */ virtual QCString trPublicMembers() { return "M閠odos p鷅licos"; } virtual QCString trPublicSlots() { return "Slots p鷅licos"; } virtual QCString trSignals() { return "Se馻les"; } virtual QCString trStaticPublicMembers() { return "M閠odos p鷅licos est醫icos"; } virtual QCString trProtectedMembers() { return "M閠odos protegidos"; } virtual QCString trProtectedSlots() { return "Slots protegidos"; } virtual QCString trStaticProtectedMembers() { return "M閠odos protegidos est醫icos"; } virtual QCString trPrivateMembers() { return "M閠odos privados"; } virtual QCString trPrivateSlots() { return "Slots privados"; } virtual QCString trStaticPrivateMembers() { return "M閠odos privados est醫icos"; } /*! 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<numEntries;i++) { // use generateMarker to generate placeholders for the class links! result+=generateMarker(i); // generate marker for entry i in the list // (order is left to right) if (i!=numEntries-1) // not the last entry, so we need a separator { if (i<numEntries-2) // not the fore last entry result+=", "; else // the fore last entry result+=", y "; } } return result; } /*! used in class documentation to produce a list of base classes, * if class diagrams are disabled. */ virtual QCString trInheritsList(int numEntries) { return "Herencias "+trWriteList(numEntries)+"."; } /*! used in class documentation to produce a list of super classes, * if class diagrams are disabled. */ virtual QCString trInheritedByList(int numEntries) { return "Heredado por "+trWriteList(numEntries)+"."; } /*! used in member documentation blocks to produce a list of * members that are hidden by this one. */ virtual QCString trReimplementedFromList(int numEntries) { return "Reimplementado de "+trWriteList(numEntries)+"."; } /*! used in member documentation blocks to produce a list of * all member that overwrite the implementation of this member. */ virtual QCString trReimplementedInList(int numEntries) { return "Reimplementado en "+trWriteList(numEntries)+"."; } /*! This is put above each page as a link to all members of namespaces. */ virtual QCString trNamespaceMembers() { return "Miembros del Namespace "; } /*! This is an introduction to the page with all namespace members */ virtual QCString trNamespaceMemberDescription(bool extractAll) { QCString result="Lista de "; if (!extractAll) result+="toda la documentaci髇 de "; result+="los miembros del namespace con enlace a "; if (extractAll) result+="los namespace de cada miembro:"; else result+="la documentaci髇 de los namespaces pertenecientes a:"; return result; } /*! This is used in LaTeX as the title of the chapter with the * index of all namespaces. */ virtual QCString trNamespaceIndex() { return "Indice de namespace"; } /*! This is used in LaTeX as the title of the chapter containing * the documentation of all namespaces. */ virtual QCString trNamespaceDocumentation() { return "Documentaci髇 de namespace"; }//////////////////////////////////////////////////////////////////////////// new since 0.49-990522////////////////////////////////////////////////////////////////////////// /*! This is used in the documentation before the list of all * namespaces in a file. */ virtual QCString trNamespaces() { return "Namespaces"; }//////////////////////////////////////////////////////////////////////////// new since 0.49-990728////////////////////////////////////////////////////////////////////////// /*! This is put at the bottom of a class documentation page and is * followed by a list of files that were used to generate the page. */ virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single) { // here s is one of " Class", " Struct" or " Union" // single is true implies a single file QCString result=(QCString)"La documentaci髇 para esta "; switch(compType) { case ClassDef::Class: result+="clase"; break; case ClassDef::Struct: result+="estructura"; break; case ClassDef::Union: result+="uni髇"; break; case ClassDef::Interface: result+="interfaz"; break; case ClassDef::Exception: result+="excepci髇"; break; } result+=" fu
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -