summaryrefslogtreecommitdiffstats
path: root/src/translator_en.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_en.h')
-rw-r--r--src/translator_en.h23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/translator_en.h b/src/translator_en.h
index 400e59c..ba26bc7 100644
--- a/src/translator_en.h
+++ b/src/translator_en.h
@@ -74,6 +74,11 @@ class TranslatorEnglish : public Translator
return "";
}
+ virtual QCString trISOLang()
+ {
+ return "en-US";
+ }
+
// --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */
@@ -394,6 +399,10 @@ class TranslatorEnglish : public Translator
{
return "Data Structure Documentation";
}
+ else if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
+ {
+ return trDesignUnitDocumentation();
+ }
else
{
return "Class Documentation";
@@ -1940,14 +1949,6 @@ class TranslatorEnglish : public Translator
return "Method Documentation";
}
- /*! Used as the title of the design overview picture created for the
- * VHDL output.
- */
- virtual QCString trDesignOverview()
- {
- return "Design Overview";
- }
-
//////////////////////////////////////////////////////////////////////////
// new since 1.8.4
//////////////////////////////////////////////////////////////////////////
@@ -2254,6 +2255,12 @@ class TranslatorEnglish : public Translator
}
//////////////////////////////////////////////////////////////////////////
+// new since 1.8.19
+//////////////////////////////////////////////////////////////////////////
+
+ /** VHDL design unit documentation */
+ virtual QCString trDesignUnitDocumentation()
+ { return "Design Unit Documentation"; }
};