diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-09-13 17:26:00 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-09-13 17:26:00 (GMT) |
commit | f97a27a623aa6b8bfd8371630acf3b58efec251f (patch) | |
tree | e74e4a8d2b3a92ce8032ad6114a63f1ddb8fed48 /src/translator_en.h | |
parent | bc6161ea636d54342e82f1f96b8d534dbd99c78b (diff) | |
download | Doxygen-f97a27a623aa6b8bfd8371630acf3b58efec251f.zip Doxygen-f97a27a623aa6b8bfd8371630acf3b58efec251f.tar.gz Doxygen-f97a27a623aa6b8bfd8371630acf3b58efec251f.tar.bz2 |
Release-1.3.8-20040913
Diffstat (limited to 'src/translator_en.h')
-rw-r--r-- | src/translator_en.h | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/src/translator_en.h b/src/translator_en.h index e327541..4fba718 100644 --- a/src/translator_en.h +++ b/src/translator_en.h @@ -1560,16 +1560,41 @@ class TranslatorEnglish : public Translator // new since 1.3.9 ////////////////////////////////////////////////////////////////////////// + /*! This is used as the name of the chapter containing the directory + * hierarchy. + */ virtual QCString trDirIndex() - { return "Directories"; } + { return "Directory Hierarchy"; } + + /*! This is used as the name of the chapter containing the documentation + * of the directories. + */ virtual QCString trDirDocumentation() { return "Directory Documentation"; } + + /*! This is used as the title of the directory index and also in the + * Quick links of a HTML page, to link to the directory hierarchy. + */ virtual QCString trDirectories() { return "Directories"; } + + /*! This returns a sentences that introduces the directory hierarchy. + * and the fact that it is sorted alphabetically per level + */ virtual QCString trDirDescription() - { return "Here is a list of all directories:"; } + { return "This directory hierarchy is sorted roughly, " + "but not completely, alphabetically:"; + } + + /*! This returns the title of a directory page. The name of the + * directory is passed via \a dirName. + */ virtual QCString trDirReference(const char *dirName) { QCString result=dirName; result+=" Directory Reference"; return result; } + + /*! This returns the word directory with or without starting capital + * (\a first_capital) and in sigular or plural form (\a singular). + */ virtual QCString trDir(bool first_capital, bool singular) { QCString result((first_capital ? "Director" : "director")); |