diff options
Diffstat (limited to 'src/translator_en.h')
-rw-r--r-- | src/translator_en.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/translator_en.h b/src/translator_en.h index f6f01b1..5d312a4 100644 --- a/src/translator_en.h +++ b/src/translator_en.h @@ -1870,6 +1870,21 @@ class TranslatorEnglish : public Translator return sdate; } +////////////////////////////////////////////////////////////////////////// +// new since 1.7.5 +////////////////////////////////////////////////////////////////////////// + + /*! Header for the page with bibliographic citations */ + virtual QCString trCiteReferences() + { return "Bibliographic References"; } + + /*! Text for copyright paragraph */ + virtual QCString trCopyright() + { return "Copyright"; } + + /*! Header for the graph showing the directory dependencies */ + virtual QCString trDirDepGraph(const char *name) + { return QCString("Directory dependency graph for ")+name+":"; } }; |