diff options
author | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 1999-12-15 19:36:24 (GMT) |
---|---|---|
committer | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 1999-12-15 19:36:24 (GMT) |
commit | d4bdeb54df648007d9a2b4a9ec5c2ef3b84f1a3b (patch) | |
tree | c32965e6b0858adc9a1f108b7b4d909568efd52e /src/translator.h | |
parent | 79bf453de665e12ad859d8e24ddbec7ffbdb8e24 (diff) | |
download | Doxygen-d4bdeb54df648007d9a2b4a9ec5c2ef3b84f1a3b.zip Doxygen-d4bdeb54df648007d9a2b4a9ec5c2ef3b84f1a3b.tar.gz Doxygen-d4bdeb54df648007d9a2b4a9ec5c2ef3b84f1a3b.tar.bz2 |
mods for doxygen-0.49-991003
Diffstat (limited to 'src/translator.h')
-rw-r--r-- | src/translator.h | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/src/translator.h b/src/translator.h index e81ff92..6d91eac 100644 --- a/src/translator.h +++ b/src/translator.h @@ -687,7 +687,7 @@ class Translator case ClassDef::Union: result+="union"; break; case ClassDef::Interface: result+="interface"; break; } - result+="was generated from the following file"; + result+=" was generated from the following file"; if (single) result+=":"; else result+="s:"; return result; } @@ -696,9 +696,26 @@ class Translator * list. */ virtual QCString trAlphabeticalList() - { - return "Alphabetical List"; - } + { return "Alphabetical List"; } + +////////////////////////////////////////////////////////////////////////// +// new since 0.49-990901 +////////////////////////////////////////////////////////////////////////// + + /*! This is used as the heading text for the retval command. */ + virtual QCString trReturnValues() + { return "Return values"; } + + /*! This is in the (quick) index as a link to the main page (index.html) + */ + virtual QCString trMainPage() + { return "Main Page"; } + + /*! This is used in references to page that are put in the LaTeX + * documentation. It should be an abbreviation of the word page. + */ + virtual QCString trPageAbbreviation() + { return "p."; } }; |