diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2016-10-04 19:46:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-04 19:46:57 (GMT) |
commit | 5f6ab79b8388054c26facc7fbea1d089451c87fd (patch) | |
tree | a1e0848c486a74ad5196d9f48f2c63bb0a0058ce | |
parent | dc1f826818acaa038dd4291eb3710225bb8982aa (diff) | |
parent | f69eb5d79885788d6bfc6303f34f5f016b326f1c (diff) | |
download | Doxygen-5f6ab79b8388054c26facc7fbea1d089451c87fd.zip Doxygen-5f6ab79b8388054c26facc7fbea1d089451c87fd.tar.gz Doxygen-5f6ab79b8388054c26facc7fbea1d089451c87fd.tar.bz2 |
Merge pull request #534 from imelgrat/patch-1
Fixed typedef and define strings for Spanish translation
-rw-r--r-- | src/translator_es.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/translator_es.h b/src/translator_es.h index 5cdbb1f..8922297 100644 --- a/src/translator_es.h +++ b/src/translator_es.h @@ -406,13 +406,13 @@ class TranslatorSpanish : public Translator * list of defines */ virtual QCString trDefines() - { return "'defines'"; } + { return "defines"; } /*! This is used in the documentation of a file as a header before the * list of typedefs */ virtual QCString trTypedefs() - { return "'typedefs'"; } + { return "typedefs"; } /*! This is used in the documentation of a file as a header before the * list of enumerations |