summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Regel <andreas.regel@newayselectronics.com>2018-01-09 11:20:32 (GMT)
committerAndreas Regel <andreas.regel@newayselectronics.com>2018-01-09 11:55:25 (GMT)
commit9f7406d151e4f5d021558e97f5d87a0d9cacecf9 (patch)
treea073620110feea62920d7842b510d81e4dcf5d67 /src
parentda7ff05881501450be84bc870fdb1931b7e57af2 (diff)
downloadDoxygen-9f7406d151e4f5d021558e97f5d87a0d9cacecf9.zip
Doxygen-9f7406d151e4f5d021558e97f5d87a0d9cacecf9.tar.gz
Doxygen-9f7406d151e4f5d021558e97f5d87a0d9cacecf9.tar.bz2
Return VHDL specific text in trClassHierarchyDescription()
Diffstat (limited to 'src')
-rw-r--r--src/translator_de.h13
-rw-r--r--src/translator_en.h12
2 files changed, 21 insertions, 4 deletions
diff --git a/src/translator_de.h b/src/translator_de.h
index 5103ace..8e6ec2c 100644
--- a/src/translator_de.h
+++ b/src/translator_de.h
@@ -316,8 +316,17 @@ class TranslatorGerman : public Translator
/*! This is an introduction to the class hierarchy. */
virtual QCString trClassHierarchyDescription()
- { return "Die Liste der Ableitungen ist -mit Einschränkungen- "
- "alphabetisch sortiert:";
+ {
+ if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
+ {
+ return "Hier folgt eine hierarchische Auflistung der "
+ "Entwurfseinheiten:";
+ }
+ else
+ {
+ return "Die Liste der Ableitungen ist -mit Einschränkungen- "
+ "alphabetisch sortiert:";
+ }
}
/*! This is an introduction to the list with all files. */
diff --git a/src/translator_en.h b/src/translator_en.h
index a236978..d12621e 100644
--- a/src/translator_en.h
+++ b/src/translator_en.h
@@ -224,8 +224,16 @@ class TranslatorEnglish : public Translator
/*! This is an introduction to the class hierarchy. */
virtual QCString trClassHierarchyDescription()
- { return "This inheritance list is sorted roughly, "
- "but not completely, alphabetically:";
+ {
+ if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
+ {
+ return "Here is a hierarchical list of all entities:";
+ }
+ else
+ {
+ return "This inheritance list is sorted roughly, "
+ "but not completely, alphabetically:";
+ }
}
/*! This is an introduction to the list with all files. */