diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-07-23 14:06:43 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-07-23 14:06:43 (GMT) |
commit | ea8a1bc7ccbd7b64a31c293caa31240bde7397cf (patch) | |
tree | 8bdbe4421ef1ea29861efd26ccfc83849a184148 /src/translator_cz.h | |
parent | 5346e18047c0e047db2f1b13dc2c767a73c5c305 (diff) | |
download | Doxygen-ea8a1bc7ccbd7b64a31c293caa31240bde7397cf.zip Doxygen-ea8a1bc7ccbd7b64a31c293caa31240bde7397cf.tar.gz Doxygen-ea8a1bc7ccbd7b64a31c293caa31240bde7397cf.tar.bz2 |
Release-1.2.8-20010723
Diffstat (limited to 'src/translator_cz.h')
-rw-r--r-- | src/translator_cz.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/translator_cz.h b/src/translator_cz.h index 7fc8f1a..9ea3ba2 100644 --- a/src/translator_cz.h +++ b/src/translator_cz.h @@ -124,6 +124,10 @@ // - Updated misleading information in trLegendDocs(). // - The trReimplementedInList() updated to fit the context better. // - The trReimplementedFromList() updated to fit the context better. +// +// 2001/07/16 +// - trClassDocumentation() updated as in the English translator. +// // // Todo // ---- @@ -508,7 +512,16 @@ class TranslatorCzech : public Translator * the documentation of all classes, structs and unions. */ virtual QCString trClassDocumentation() - { return decode("Dokumentace tříd"); } + { + if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) + { + return decode("Dokumentace datových struktur"); + } + else + { + return decode("Dokumentace tříd"); + } + } /*! This is used in LaTeX as the title of the chapter containing * the documentation of all files. |