summaryrefslogtreecommitdiffstats
path: root/src/translator_es.h
diff options
context:
space:
mode:
authorPetr Prikryl <prikryl@atlas.cz>2013-06-18 07:31:57 (GMT)
committerPetr Prikryl <prikryl@atlas.cz>2013-06-18 07:31:57 (GMT)
commitf2d616203ef5d2cace7b01d794791cf350a8b2c7 (patch)
tree31c01dd07b35126b0c7d34469d4cab777e5390f7 /src/translator_es.h
parente3d21b2da50edbca18087608207c41a4d805a946 (diff)
downloadDoxygen-f2d616203ef5d2cace7b01d794791cf350a8b2c7.zip
Doxygen-f2d616203ef5d2cace7b01d794791cf350a8b2c7.tar.gz
Doxygen-f2d616203ef5d2cace7b01d794791cf350a8b2c7.tar.bz2
Translators for ES and FR -- base class fixed.
Diffstat (limited to 'src/translator_es.h')
-rw-r--r--src/translator_es.h59
1 files changed, 58 insertions, 1 deletions
diff --git a/src/translator_es.h b/src/translator_es.h
index 59a82ac..8654d28 100644
--- a/src/translator_es.h
+++ b/src/translator_es.h
@@ -31,9 +31,10 @@
* Updated to 1.6.4 by Bartomeu Creus Navarro (26-mayo-2010) [(16-jun-2010) grabado en UTF-8]
* Updated to 1.8.0 by Bartomeu Creus Navarro (11-abril-2012)
* Updated to 1.8.2 by Bartomeu Creus Navarro (01-julio-2012)
+ * Updated to 1.8.4 by Bartomeu Creus Navarro (17-julio-2013)
*/
-class TranslatorSpanish : public TranslatorAdapter_1_8_4
+class TranslatorSpanish : public Translator
{
public:
@@ -2056,6 +2057,62 @@ class TranslatorSpanish : public TranslatorAdapter_1_8_4
}
//////////////////////////////////////////////////////////////////////////
+// new since 1.8.4
+//////////////////////////////////////////////////////////////////////////
+
+ /** old style UNO IDL services: implemented interfaces */
+ virtual QCString trInterfaces()
+ { return "Interface exportada"; }
+
+ /** old style UNO IDL services: inherited services */
+ virtual QCString trServices()
+ { return "Servicios incluidos"; }
+
+ /** UNO IDL constant groups */
+ virtual QCString trConstantGroups()
+ { return "Grupos constantes"; }
+
+ /** UNO IDL constant groups */
+ virtual QCString trConstantGroupReference(const char *namespaceName)
+ {
+ QCString result=namespaceName;
+ result+=" referencia de grupos constantes";
+ return result;
+ }
+ /** UNO IDL service page title */
+ virtual QCString trServiceReference(const char *sName)
+ {
+ QCString result=(QCString)sName;
+ result+=" Referencia servicio";
+ return result;
+ }
+ /** UNO IDL singleton page title */
+ virtual QCString trSingletonReference(const char *sName)
+ {
+ QCString result=(QCString)sName;
+ result+=" referencia Singleton";
+ return result;
+ }
+ /** UNO IDL service page */
+ virtual QCString trServiceGeneratedFromFiles(bool single)
+ {
+ // single is true implies a single file
+ QCString result=(QCString)"La documentacion para este servicio "
+ "se ha generado desde ";
+ if (single) result+="el siguiente fichero:"; else result+="los siguientes ficheros:";
+ return result;
+ }
+ /** UNO IDL singleton page */
+ virtual QCString trSingletonGeneratedFromFiles(bool single)
+ {
+ // single is true implies a single file
+ QCString result=(QCString)"La documentación para este singleton "
+ "se ha generado desde ";
+ if (single) result+="el siguiente fichero:"; else result+="los siguientes ficheros:";
+ return result;
+ }
+
+//////////////////////////////////////////////////////////////////////////
};