diff options
Diffstat (limited to 'src/translator_es.h')
-rw-r--r-- | src/translator_es.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/translator_es.h b/src/translator_es.h index ceea071..374b387 100644 --- a/src/translator_es.h +++ b/src/translator_es.h @@ -25,9 +25,9 @@ #ifndef TRANSLATOR_ES_H #define TRANSLATOR_ES_H -#include "translator.h" +#include "translator_adapter.h" -class TranslatorSpanish : public Translator +class TranslatorSpanish : public TranslatorAdapter_1_1_5 { public: virtual QCString idLanguage() @@ -413,31 +413,31 @@ class TranslatorSpanish : public Translator return (QCString)"Diagrama de herencias de "+clName; } - /*! this text is generated when the \internal command is used. */ + /*! 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. */ + /*! 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. */ + /*! this text is generated when the \\warning command is used. */ virtual QCString trWarning() { return "Atención"; } - /*! this text is generated when the \bug command is used. */ + /*! 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. */ + /*! this text is generated when the \\version command is used. */ virtual QCString trVersion() { return "Versión"; } - /*! this text is generated when the \date command is used. */ + /*! 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. */ + /*! this text is generated when the \\author command is used. */ virtual QCString trAuthors() { return "Autor(es)"; } @@ -445,15 +445,15 @@ class TranslatorSpanish : public Translator virtual QCString trReturns() { return "Devuelve"; } - /*! this text is generated when the \sa command is used. */ + /*! this text is generated when the \\sa command is used. */ virtual QCString trSeeAlso() { return "Ver también"; } - /*! this text is generated when the \param command is used. */ + /*! 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. */ + /*! this text is generated when the \\exception command is used. */ virtual QCString trExceptions() { return "Excepciones"; } |