diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2005-05-16 10:07:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2005-05-16 10:07:22 (GMT) |
commit | 530402f723b5426086bc8efdb9b7c6513e2ed3fa (patch) | |
tree | 4031df0b930759962f9126116d333cec031ca5cb /src/translator_ca.h | |
parent | 5bd970b12ec39636593453d12e5b64bd935bbf38 (diff) | |
download | Doxygen-530402f723b5426086bc8efdb9b7c6513e2ed3fa.zip Doxygen-530402f723b5426086bc8efdb9b7c6513e2ed3fa.tar.gz Doxygen-530402f723b5426086bc8efdb9b7c6513e2ed3fa.tar.bz2 |
Release-1.4.3
Diffstat (limited to 'src/translator_ca.h')
-rw-r--r-- | src/translator_ca.h | 69 |
1 files changed, 15 insertions, 54 deletions
diff --git a/src/translator_ca.h b/src/translator_ca.h index 3980309..4676a6c 100644 --- a/src/translator_ca.h +++ b/src/translator_ca.h @@ -39,7 +39,7 @@ // Translator class (by the local maintainer) when the localized // translator is made up-to-date again. -class TranslatorCatalan : public TranslatorAdapter_1_4_1 +class TranslatorCatalan : public Translator { public: @@ -189,10 +189,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 virtual QCString trFileList() { return "Llista dels Fitxers"; } - /*! This is put above each page as a link to the list of all verbatim headers */ - virtual QCString trHeaderFiles() - { return "Fitxers d'encapçalaments"; } - /*! This is put above each page as a link to all members of compounds. */ virtual QCString trCompoundMembers() { @@ -324,10 +320,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 return result; } - /*! This is an introduction to the page with the list of all header files. */ - virtual QCString trHeaderFilesDescription() - { return "Aquests són els fitxers d'encapçalament que constitueixen l'API:"; } - /*! This is an introduction to the page with the list of all examples */ virtual QCString trExamplesDescription() { return "Aquesta és la llista de tots els exemples:"; } @@ -339,12 +331,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 /*! This is an introduction to the page with the list of class/file groups */ virtual QCString trModulesDescription() { return "Aquesta és la llista de mòduls:"; } - - /*! This sentences is used in the annotated class/file lists if no brief - * description is given. - */ - virtual QCString trNoDescriptionAvailable() - { return "No hi ha cap descripció disponible"; } // index titles (the project name is prepended for these) @@ -496,12 +482,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 { return "Documentació dels Tipus de les Enumeracions"; } /*! This is used in the documentation of a file/namespace before the list - * of documentation blocks for enumeration values - */ - virtual QCString trEnumerationValueDocumentation() - { return "Documentació dels Valors de les Enumeracions"; } - - /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for functions */ virtual QCString trFunctionDocumentation() @@ -555,18 +535,10 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 virtual QCString trForInternalUseOnly() { return "Tan sols per a ús intern."; } - /*! this text is generated when the \\reimp command is used. */ - virtual QCString trReimplementedForInternalReasons() - { return "Reimplementat per raons internes; l'API no es veu afectada."; } - /*! this text is generated when the \\warning command is used. */ virtual QCString trWarning() { return "Atenció"; } - /*! this text is generated when the \\bug command is used. */ - virtual QCString trBugsAndLimitations() - { return "Errors i limitacions"; } - /*! this text is generated when the \\version command is used. */ virtual QCString trVersion() { return "Versió"; } @@ -845,10 +817,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 // new since 0.49-991003 ////////////////////////////////////////////////////////////////////////// - virtual QCString trSources() - { - return "Codi Font"; - } virtual QCString trDefinedAtLineInSourceFile() { return "Definició a la línia @0 del fitxer @1."; @@ -1148,11 +1116,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 // new since 1.2.4 ////////////////////////////////////////////////////////////////////////// - /*! Used for Java interfaces in the summary section of Java packages */ - virtual QCString trInterfaces() - { - return "Interfícies"; - } /*! Used for Java classes in the summary section of Java packages */ virtual QCString trClasses() { @@ -1185,11 +1148,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 { return "Paquets"; } - /*! Used as a chapter title for Latex & RTF output */ - virtual QCString trPackageDocumentation() - { - return "Documentació dels Paquets"; - } /*! Text shown before a multi-line define */ virtual QCString trDefineValue() { @@ -1330,17 +1288,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 * be followed by a single name or by a list of names * of the category. */ - virtual QCString trField(bool first_capital, bool singular) - { - QCString result((first_capital ? "Camp" : "camp")); - if (!singular) result+="s"; - return result; - } - - /*! This is used for translation of the word that will possibly - * be followed by a single name or by a list of names - * of the category. - */ virtual QCString trGlobal(bool first_capital, bool singular) { QCString result((first_capital ? "Global" : "global")); @@ -1596,6 +1543,20 @@ class TranslatorCatalan : public TranslatorAdapter_1_4_1 if (!singular) result+="s"; return result; } + +////////////////////////////////////////////////////////////////////////// +// new since 1.4.1 +////////////////////////////////////////////////////////////////////////// + + /*! This text is added to the documentation when the \\overload command + * is used for a overloaded function. + */ + virtual QCString trOverloadText() + { + return "Aquesta és una funció membre sobrecarregada, " + "proveïda per conveniència. Es diferencia de la funció " + "anterior només en els arguments que accepta."; + } }; #endif |