Commit 30b01891 authored by Petr Prikryl's avatar Petr Prikryl

Afrikaans translator converted to UTF-8.

The ë replaced by the character.
parent 0651fff2
...@@ -381,7 +381,7 @@ bool setTranslator(const char *langName) ...@@ -381,7 +381,7 @@ bool setTranslator(const char *langName)
#ifdef LANG_ZA #ifdef LANG_ZA
else if (L_EQUAL("afrikaans")) else if (L_EQUAL("afrikaans"))
{ {
theTranslator=new TranslatorDecoder(new TranslatorAfrikaans); theTranslator=new TranslatorAfrikaans;
} }
#endif #endif
#ifdef LANG_AR #ifdef LANG_AR
......
/****************************************************************************** /******************************************************************************
* *
* *
* *
* Copyright (C) 1997-2013 by Dimitri van Heesch. * Copyright (C) 1997-2013 by Dimitri van Heesch.
* *
* Permission to use, copy, modify, and distribute this software and its * Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby * documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software * granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty. * for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details. * See the GNU General Public License for more details.
* *
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
/* /*
* Bronne vir hierdie vertaling (Sources for this translation): * Bronne vir hierdie vertaling (Sources for this translation):
* Die Stigting vir Afrikaans se rekenaartermelys: * Die Stigting vir Afrikaans se rekenaartermelys:
* - http://www.afrikaans.com/rekenaarterme.html * - http://www.afrikaans.com/rekenaarterme.html
* Werkgroep vir Afrikaanse IT-terme: * Werkgroep vir Afrikaanse IT-terme:
* - http://www.vertaal.org/index.html * - http://www.vertaal.org/index.html
...@@ -31,19 +31,19 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -31,19 +31,19 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
public: public:
// --- Language control methods ------------------- // --- Language control methods -------------------
/*! Used for identification of the language. The identification /*! Used for identification of the language. The identification
* should not be translated. It should be replaced by the name * should not be translated. It should be replaced by the name
* of the language in English using lower-case characters only * of the language in English using lower-case characters only
* (e.g. "czech", "japanese", "russian", etc.). It should be equal to * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
* the identification used in language.cpp. * the identification used in language.cpp.
*/ */
virtual QCString idLanguage() virtual QCString idLanguage()
{ return "afrikaans"; } { return "afrikaans"; }
/*! Used to get the LaTeX command(s) for the language support. /*! Used to get the LaTeX command(s) for the language support.
* This method should return string with commands that switch * This method should return string with commands that switch
* LaTeX to the desired language. For example * LaTeX to the desired language. For example
* <pre>"\\usepackage[german]{babel}\n" * <pre>"\\usepackage[german]{babel}\n"
* </pre> * </pre>
* or * or
...@@ -51,7 +51,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -51,7 +51,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
* "\\usepackage[latin2]{inputenc}\n" * "\\usepackage[latin2]{inputenc}\n"
* "\\usepackage[T1]{fontenc}\n" * "\\usepackage[T1]{fontenc}\n"
* </pre> * </pre>
* *
* The Afrikaans LaTeX does not use such commands. Because of this * The Afrikaans LaTeX does not use such commands. Because of this
* the empty string is returned in this implementation. * the empty string is returned in this implementation.
*/ */
...@@ -65,7 +65,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -65,7 +65,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! return the language charset. This will be used for the HTML output */ /*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset() virtual QCString idLanguageCharset()
{ {
return "iso-8859-1"; return "utf-8";
} }
// --- Language translation methods ------------------- // --- Language translation methods -------------------
...@@ -85,30 +85,30 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -85,30 +85,30 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! header that is put before the list of typedefs. */ /*! header that is put before the list of typedefs. */
virtual QCString trMemberTypedefDocumentation() virtual QCString trMemberTypedefDocumentation()
{ return "Lede Typedef Dokumentasie"; } { return "Lede Typedef Dokumentasie"; }
/*! header that is put before the list of enumerations. */ /*! header that is put before the list of enumerations. */
virtual QCString trMemberEnumerationDocumentation() virtual QCString trMemberEnumerationDocumentation()
{ return "Lede Enumerasie Dokumentasie"; } { return "Lede Enumerasie Dokumentasie"; }
/*! header that is put before the list of member functions. */ /*! header that is put before the list of member functions. */
virtual QCString trMemberFunctionDocumentation() virtual QCString trMemberFunctionDocumentation()
{ return "Lede Funksie Dokumentasie"; } { return "Lede Funksie Dokumentasie"; }
/*! header that is put before the list of member attributes. */ /*! header that is put before the list of member attributes. */
virtual QCString trMemberDataDocumentation() virtual QCString trMemberDataDocumentation()
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
return "Veld Dokumentasie"; return "Veld Dokumentasie";
} }
else else
{ {
return "Lede Data Dokumentasie"; return "Lede Data Dokumentasie";
} }
} }
/*! this is the text of a link put after brief descriptions. */ /*! this is the text of a link put after brief descriptions. */
virtual QCString trMore() virtual QCString trMore()
{ return "Meer detail..."; } { return "Meer detail..."; }
/*! put in the class documentation */ /*! put in the class documentation */
...@@ -126,81 +126,81 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -126,81 +126,81 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! this is the remainder of the sentence after the class name */ /*! this is the remainder of the sentence after the class name */
virtual QCString trIncludingInheritedMembers() virtual QCString trIncludingInheritedMembers()
{ return ", insluitend alle afgeleide lede."; } { return ", insluitend alle afgeleide lede."; }
/*! this is put at the author sections at the bottom of man pages. /*! this is put at the author sections at the bottom of man pages.
* parameter s is name of the project name. * parameter s is name of the project name.
*/ */
virtual QCString trGeneratedAutomatically(const char *s) virtual QCString trGeneratedAutomatically(const char *s)
{ QCString result="Automaties gegenereer deur Doxygen"; { QCString result="Automaties gegenereer deur Doxygen";
if (s) result+=(QCString)" vir "+s; if (s) result+=(QCString)" vir "+s;
result+=" van die bron kode af."; result+=" van die bron kode af.";
return result; return result;
} }
/*! put after an enum name in the list of all members */ /*! put after an enum name in the list of all members */
virtual QCString trEnumName() virtual QCString trEnumName()
{ return "enum naam"; } { return "enum naam"; }
/*! put after an enum value in the list of all members */ /*! put after an enum value in the list of all members */
virtual QCString trEnumValue() virtual QCString trEnumValue()
{ return "enum waarde"; } { return "enum waarde"; }
/*! put after an undocumented member in the list of all members */ /*! put after an undocumented member in the list of all members */
virtual QCString trDefinedIn() virtual QCString trDefinedIn()
{ return "gedefinie&euml;r in"; } { return "gedefinieër in"; }
// quick reference sections // quick reference sections
/*! This is put above each page as a link to the list of all groups of /*! This is put above each page as a link to the list of all groups of
* compounds or files (see the \\group command). * compounds or files (see the \\group command).
*/ */
virtual QCString trModules() virtual QCString trModules()
{ return "Modules"; } { return "Modules"; }
/*! This is put above each page as a link to the class hierarchy */ /*! This is put above each page as a link to the class hierarchy */
virtual QCString trClassHierarchy() virtual QCString trClassHierarchy()
{ return "Klas Hierargie"; } { return "Klas Hierargie"; }
/*! This is put above each page as a link to the list of annotated classes */ /*! This is put above each page as a link to the list of annotated classes */
virtual QCString trCompoundList() virtual QCString trCompoundList()
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
return "Data Strukture"; return "Data Strukture";
} }
else else
{ {
return "Klas Lys"; return "Klas Lys";
} }
} }
/*! This is put above each page as a link to the list of documented files */ /*! This is put above each page as a link to the list of documented files */
virtual QCString trFileList() virtual QCString trFileList()
{ return "Le&euml;r Lys"; } { return "Leër Lys"; }
/*! This is put above each page as a link to all members of compounds. */ /*! This is put above each page as a link to all members of compounds. */
virtual QCString trCompoundMembers() virtual QCString trCompoundMembers()
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
return "Data Velde"; return "Data Velde";
} }
else else
{ {
return "Klas Lede"; return "Klas Lede";
} }
} }
/*! This is put above each page as a link to all members of files. */ /*! This is put above each page as a link to all members of files. */
virtual QCString trFileMembers() virtual QCString trFileMembers()
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
return "Globals"; return "Globals";
} }
else else
{ {
return "Le&euml;r Lede"; return "Leër Lede";
} }
} }
...@@ -218,7 +218,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -218,7 +218,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! This is an introduction to the class hierarchy. */ /*! This is an introduction to the class hierarchy. */
virtual QCString trClassHierarchyDescription() virtual QCString trClassHierarchyDescription()
{ {
return "Hierdie afgeleide lys word rofweg gesorteer: "; return "Hierdie afgeleide lys word rofweg gesorteer: ";
} }
...@@ -227,22 +227,22 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -227,22 +227,22 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ {
QCString result="Hier is 'n lys van alle "; QCString result="Hier is 'n lys van alle ";
if (!extractAll) result+="gedokumenteerde "; if (!extractAll) result+="gedokumenteerde ";
result+="le&euml;rs met kort beskrywings:"; result+="leërs met kort beskrywings:";
return result; return result;
} }
/*! This is an introduction to the annotated compound list. */ /*! This is an introduction to the annotated compound list. */
virtual QCString trCompoundListDescription() virtual QCString trCompoundListDescription()
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
return " Data strukture met kort beskrywings:"; return " Data strukture met kort beskrywings:";
} }
else else
{ {
return "Klasse, structs, " return "Klasse, structs, "
"unions en intervlakke met kort beskrywings:"; "unions en intervlakke met kort beskrywings:";
} }
} }
...@@ -263,7 +263,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -263,7 +263,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
result+="klas lede"; result+="klas lede";
} }
result+=" met skakels na "; result+=" met skakels na ";
if (!extractAll) if (!extractAll)
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
...@@ -274,7 +274,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -274,7 +274,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
result+="die klas dokumentasie vir elke lid:"; result+="die klas dokumentasie vir elke lid:";
} }
} }
else else
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
...@@ -293,19 +293,19 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -293,19 +293,19 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ {
QCString result="'n Lys van alle "; QCString result="'n Lys van alle ";
if (!extractAll) result+="gedokumenteerde "; if (!extractAll) result+="gedokumenteerde ";
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
result+="funksies, veranderlikes, defines, enums, en typedefs"; result+="funksies, veranderlikes, defines, enums, en typedefs";
} }
else else
{ {
result+="le&euml;r lede"; result+="leër lede";
} }
result+=" met skakels na "; result+=" met skakels na ";
if (extractAll) if (extractAll)
result+="die le&euml;rs waaraan hulle behoort:"; result+="die leërs waaraan hulle behoort:";
else else
result+="die dokumentasie:"; result+="die dokumentasie:";
return result; return result;
} }
...@@ -326,38 +326,38 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -326,38 +326,38 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
virtual QCString trDocumentation() virtual QCString trDocumentation()
{ return "Dokumentasie"; } { return "Dokumentasie"; }
/*! This is used in LaTeX as the title of the chapter with the /*! This is used in LaTeX as the title of the chapter with the
* index of all groups. * index of all groups.
*/ */
virtual QCString trModuleIndex() virtual QCString trModuleIndex()
{ return "Module Indeks"; } { return "Module Indeks"; }
/*! This is used in LaTeX as the title of the chapter with the /*! This is used in LaTeX as the title of the chapter with the
* class hierarchy. * class hierarchy.
*/ */
virtual QCString trHierarchicalIndex() virtual QCString trHierarchicalIndex()
{ return "Hierargiese Indeks"; } { return "Hierargiese Indeks"; }
/*! This is used in LaTeX as the title of the chapter with the /*! This is used in LaTeX as the title of the chapter with the
* annotated compound index. * annotated compound index.
*/ */
virtual QCString trCompoundIndex() virtual QCString trCompoundIndex()
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
return "Data Strukture Indeks"; return "Data Strukture Indeks";
} }
else else
{ {
return "Klas Indeks"; return "Klas Indeks";
} }
} }
/*! This is used in LaTeX as the title of the chapter with the /*! This is used in LaTeX as the title of the chapter with the
* list of all files. * list of all files.
*/ */
virtual QCString trFileIndex() virtual QCString trFileIndex()
{ return "Le&euml;r Indeks"; } { return "Leër Indeks"; }
/*! This is used in LaTeX as the title of the chapter containing /*! This is used in LaTeX as the title of the chapter containing
* the documentation of all groups. * the documentation of all groups.
...@@ -369,14 +369,14 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -369,14 +369,14 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
* the documentation of all classes, structs and unions. * the documentation of all classes, structs and unions.
*/ */
virtual QCString trClassDocumentation() virtual QCString trClassDocumentation()
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
return "Data Strukture Dokumentasie"; return "Data Strukture Dokumentasie";
} }
else else
{ {
return "Klas Dokumentasie"; return "Klas Dokumentasie";
} }
} }
...@@ -384,7 +384,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -384,7 +384,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
* the documentation of all files. * the documentation of all files.
*/ */
virtual QCString trFileDocumentation() virtual QCString trFileDocumentation()
{ return "Le&euml;r Dokumentasie"; } { return "Leër Dokumentasie"; }
/*! This is used in LaTeX as the title of the chapter containing /*! This is used in LaTeX as the title of the chapter containing
* the documentation of all examples. * the documentation of all examples.
...@@ -401,105 +401,105 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -401,105 +401,105 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! This is used in LaTeX as the title of the document */ /*! This is used in LaTeX as the title of the document */
virtual QCString trReferenceManual() virtual QCString trReferenceManual()
{ return "Verwysings Handleiding"; } { return "Verwysings Handleiding"; }
/*! This is used in the documentation of a file as a header before the /*! This is used in the documentation of a file as a header before the
* list of defines * list of defines
*/ */
virtual QCString trDefines() virtual QCString trDefines()
{ return "Definiesies"; } { return "Definiesies"; }
/*! This is used in the documentation of a file as a header before the /*! This is used in the documentation of a file as a header before the
* list of function prototypes * list of function prototypes
*/ */
virtual QCString trFuncProtos() virtual QCString trFuncProtos()
{ return "Funksie Prototipes"; } { return "Funksie Prototipes"; }
/*! This is used in the documentation of a file as a header before the /*! This is used in the documentation of a file as a header before the
* list of typedefs * list of typedefs
*/ */
virtual QCString trTypedefs() virtual QCString trTypedefs()
{ return "Typedefs"; } { return "Typedefs"; }
/*! This is used in the documentation of a file as a header before the /*! This is used in the documentation of a file as a header before the
* list of enumerations * list of enumerations
*/ */
virtual QCString trEnumerations() virtual QCString trEnumerations()
{ return "Enumerations"; } { return "Enumerations"; }
/*! This is used in the documentation of a file as a header before the /*! This is used in the documentation of a file as a header before the
* list of (global) functions * list of (global) functions
*/ */
virtual QCString trFunctions() virtual QCString trFunctions()
{ return "Funksies"; } { return "Funksies"; }
/*! This is used in the documentation of a file as a header before the /*! This is used in the documentation of a file as a header before the
* list of (global) variables * list of (global) variables
*/ */
virtual QCString trVariables() virtual QCString trVariables()
{ return "Veranderlikes"; } { return "Veranderlikes"; }
/*! This is used in the documentation of a file as a header before the /*! This is used in the documentation of a file as a header before the
* list of (global) variables * list of (global) variables
*/ */
virtual QCString trEnumerationValues() virtual QCString trEnumerationValues()
{ return "Enumeration waardes"; } { return "Enumeration waardes"; }
/*! This is used in the documentation of a file before the list of /*! This is used in the documentation of a file before the list of
* documentation blocks for defines * documentation blocks for defines
*/ */
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Define Documentation"; } { return "Define Documentation"; }
/*! This is used in the documentation of a file/namespace before the list /*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes * of documentation blocks for function prototypes
*/ */
virtual QCString trFunctionPrototypeDocumentation() virtual QCString trFunctionPrototypeDocumentation()
{ return "Funksie Prototipe Dokumentasie"; } { return "Funksie Prototipe Dokumentasie"; }
/*! This is used in the documentation of a file/namespace before the list /*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for typedefs * of documentation blocks for typedefs
*/ */
virtual QCString trTypedefDocumentation() virtual QCString trTypedefDocumentation()
{ return "Typedef Dokumentasie"; } { return "Typedef Dokumentasie"; }
/*! This is used in the documentation of a file/namespace before the list /*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for enumeration types * of documentation blocks for enumeration types
*/ */
virtual QCString trEnumerationTypeDocumentation() virtual QCString trEnumerationTypeDocumentation()
{ return "Enumeration Type Dokumentasie"; } { return "Enumeration Type Dokumentasie"; }
/*! This is used in the documentation of a file/namespace before the list /*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for functions * of documentation blocks for functions
*/ */
virtual QCString trFunctionDocumentation() virtual QCString trFunctionDocumentation()
{ return "Funksie Dokumentasie"; } { return "Funksie Dokumentasie"; }
/*! This is used in the documentation of a file/namespace before the list /*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for variables * of documentation blocks for variables
*/ */
virtual QCString trVariableDocumentation() virtual QCString trVariableDocumentation()
{ return "Veranderlike Dokumentasie"; } { return "Veranderlike Dokumentasie"; }
/*! This is used in the documentation of a file/namespace/group before /*! This is used in the documentation of a file/namespace/group before
* the list of links to documented compounds * the list of links to documented compounds
*/ */
virtual QCString trCompounds() virtual QCString trCompounds()
{ {
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{ {
return "Data Strukture"; return "Data Strukture";
} }
else else
{ {
return "Klasse"; return "Klasse";
} }
} }
/*! This is used in the standard footer of each page and indicates when /*! This is used in the standard footer of each page and indicates when
* the page was generated * the page was generated
*/ */
virtual QCString trGeneratedAt(const char *date,const char *projName) virtual QCString trGeneratedAt(const char *date,const char *projName)
{ {
QCString result=(QCString)"Gegenereer op "+date; QCString result=(QCString)"Gegenereer op "+date;
if (projName) result+=(QCString)" vir "+projName; if (projName) result+=(QCString)" vir "+projName;
result+=(QCString)" deur"; result+=(QCString)" deur";
...@@ -517,7 +517,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -517,7 +517,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ {
return (QCString)"Afleidings diagram vir "+clName+":"; return (QCString)"Afleidings diagram vir "+clName+":";
} }
/*! this text is generated when the \\internal command is used. */ /*! this text is generated when the \\internal command is used. */
virtual QCString trForInternalUseOnly() virtual QCString trForInternalUseOnly()
{ return "Slegs vir interne gebruik."; } { return "Slegs vir interne gebruik."; }
...@@ -549,7 +549,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -549,7 +549,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! this text is generated when the \\exception command is used. */ /*! this text is generated when the \\exception command is used. */
virtual QCString trExceptions() virtual QCString trExceptions()
{ return "Exceptions"; } { return "Exceptions"; }
/*! this text is used in the title page of a LaTeX document. */ /*! this text is used in the title page of a LaTeX document. */
virtual QCString trGeneratedBy() virtual QCString trGeneratedBy()
{ return "Gegenereer deur"; } { return "Gegenereer deur"; }
...@@ -557,7 +557,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -557,7 +557,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990307 // new since 0.49-990307
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! used as the title of page containing all the index of all namespaces. */ /*! used as the title of page containing all the index of all namespaces. */
virtual QCString trNamespaceList() virtual QCString trNamespaceList()
{ return "Namespace Lys"; } { return "Namespace Lys"; }
...@@ -576,17 +576,17 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -576,17 +576,17 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
*/ */
virtual QCString trFriends() virtual QCString trFriends()
{ return "Friends"; } { return "Friends"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990405 // new since 0.49-990405
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! used in the class documentation as a header before the list of all /*! used in the class documentation as a header before the list of all
* related classes * related classes
*/ */
virtual QCString trRelatedFunctionDocumentation() virtual QCString trRelatedFunctionDocumentation()
{ return "Friends En Verwante Funksie Dokumentasie"; } { return "Friends En Verwante Funksie Dokumentasie"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990425 // new since 0.49-990425
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -617,7 +617,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -617,7 +617,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
virtual QCString trFileReference(const char *fileName) virtual QCString trFileReference(const char *fileName)
{ {
QCString result=fileName; QCString result=fileName;
result+=" Le&euml;r Verwysing"; result+=" Leër Verwysing";
return result; return result;
} }
...@@ -628,7 +628,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -628,7 +628,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
result+=" Namespace Verwysing"; result+=" Namespace Verwysing";
return result; return result;
} }
virtual QCString trPublicMembers() virtual QCString trPublicMembers()
{ return "Publieke Lede Funksies"; } { return "Publieke Lede Funksies"; }
virtual QCString trPublicSlots() virtual QCString trPublicSlots()
...@@ -649,7 +649,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -649,7 +649,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ return "Private Slots"; } { return "Private Slots"; }
virtual QCString trStaticPrivateMembers() virtual QCString trStaticPrivateMembers()
{ return "Statiese Private Lede Funksies"; } { return "Statiese Private Lede Funksies"; }
/*! this function is used to produce a comma-separated list of items. /*! this function is used to produce a comma-separated list of items.
* use generateMarker(i) to indicate where item i should be put. * use generateMarker(i) to indicate where item i should be put.
*/ */
...@@ -658,23 +658,23 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -658,23 +658,23 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
QCString result; QCString result;
int i; int i;
// the inherits list contain `numEntries' classes // the inherits list contain `numEntries' classes
for (i=0;i<numEntries;i++) for (i=0;i<numEntries;i++)
{ {
// use generateMarker to generate placeholders for the class links! // use generateMarker to generate placeholders for the class links!
result+=generateMarker(i); // generate marker for entry i in the list result+=generateMarker(i); // generate marker for entry i in the list
// (order is left to right) // (order is left to right)
if (i!=numEntries-1) // not the last entry, so we need a separator if (i!=numEntries-1) // not the last entry, so we need a separator
{ {
if (i<numEntries-2) // not the fore last entry if (i<numEntries-2) // not the fore last entry
result+=", "; result+=", ";
else // the fore last entry else // the fore last entry
result+=", en "; result+=", en ";
} }
} }
return result; return result;
} }
/*! used in class documentation to produce a list of base classes, /*! used in class documentation to produce a list of base classes,
* if class diagrams are disabled. * if class diagrams are disabled.
*/ */
...@@ -691,7 +691,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -691,7 +691,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
return "Afgelei van"+trWriteList(numEntries)+"."; return "Afgelei van"+trWriteList(numEntries)+".";
} }
/*! used in member documentation blocks to produce a list of /*! used in member documentation blocks to produce a list of
* members that are hidden by this one. * members that are hidden by this one.
*/ */
virtual QCString trReimplementedFromList(int numEntries) virtual QCString trReimplementedFromList(int numEntries)
...@@ -713,17 +713,17 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -713,17 +713,17 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! This is an introduction to the page with all namespace members */ /*! This is an introduction to the page with all namespace members */
virtual QCString trNamespaceMemberDescription(bool extractAll) virtual QCString trNamespaceMemberDescription(bool extractAll)
{ {
QCString result="'n Lys van alle "; QCString result="'n Lys van alle ";
if (!extractAll) result+="gedokumenteerde "; if (!extractAll) result+="gedokumenteerde ";
result+="namespace lede met skakels na "; result+="namespace lede met skakels na ";
if (extractAll) if (extractAll)
result+="die namespace dokumentasie vir elke lid:"; result+="die namespace dokumentasie vir elke lid:";
else else
result+="die namespaces waaraan hulle behoort:"; result+="die namespaces waaraan hulle behoort:";
return result; return result;
} }
/*! This is used in LaTeX as the title of the chapter with the /*! This is used in LaTeX as the title of the chapter with the
* index of all namespaces. * index of all namespaces.
*/ */
virtual QCString trNamespaceIndex() virtual QCString trNamespaceIndex()
...@@ -768,7 +768,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -768,7 +768,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
case ClassDef::Exception: result+="eksepsie"; break; case ClassDef::Exception: result+="eksepsie"; break;
default: break; default: break;
} }
result+=" is gegenereer vanaf die volgende le&euml;r"; result+=" is gegenereer vanaf die volgende leër";
if (single) result+=":"; else result+="s:"; if (single) result+=":"; else result+="s:";
return result; return result;
} }
...@@ -792,7 +792,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -792,7 +792,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
virtual QCString trMainPage() virtual QCString trMainPage()
{ return "Hoof Bladsy"; } { return "Hoof Bladsy"; }
/*! This is used in references to page that are put in the LaTeX /*! This is used in references to page that are put in the LaTeX
* documentation. It should be an abbreviation of the word page. * documentation. It should be an abbreviation of the word page.
*/ */
virtual QCString trPageAbbreviation() virtual QCString trPageAbbreviation()
...@@ -804,11 +804,11 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -804,11 +804,11 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
virtual QCString trDefinedAtLineInSourceFile() virtual QCString trDefinedAtLineInSourceFile()
{ {
return "Gedefinie&euml;r by lyn @0 van le&euml;r @1."; return "Gedefinieër by lyn @0 van leër @1.";
} }
virtual QCString trDefinedInSourceFile() virtual QCString trDefinedInSourceFile()
{ {
return "Definisie in le&euml;r @0."; return "Definisie in leër @0.";
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -837,17 +837,17 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -837,17 +837,17 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! header that is put before the list of constructor/destructors. */ /*! header that is put before the list of constructor/destructors. */
virtual QCString trConstructorDocumentation() virtual QCString trConstructorDocumentation()
{ {
return "Konstruktor & Destruktor Dokumentasie"; return "Konstruktor & Destruktor Dokumentasie";
} }
/*! Used in the file documentation to point to the corresponding sources. */ /*! Used in the file documentation to point to the corresponding sources. */
virtual QCString trGotoSourceCode() virtual QCString trGotoSourceCode()
{ {
return "Skakel na die bron kode van hierdie le&euml;r."; return "Skakel na die bron kode van hierdie leër.";
} }
/*! Used in the file sources to point to the corresponding documentation. */ /*! Used in the file sources to point to the corresponding documentation. */
virtual QCString trGotoDocumentation() virtual QCString trGotoDocumentation()
{ {
return "Skakel na die dokumentasie van hierdie le&euml;r."; return "Skakel na die dokumentasie van hierdie leër.";
} }
/*! Text for the \\pre command */ /*! Text for the \\pre command */
virtual QCString trPrecondition() virtual QCString trPrecondition()
...@@ -894,7 +894,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -894,7 +894,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.1.0 // new since 1.1.0
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
virtual QCString trNote() virtual QCString trNote()
{ {
return "Nota"; return "Nota";
...@@ -976,14 +976,14 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -976,14 +976,14 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
} }
virtual QCString trInclByDepGraph() virtual QCString trInclByDepGraph()
{ {
return "Hierdie diagram verduidelik watter le&euml;rs direk of" return "Hierdie diagram verduidelik watter leërs direk of"
"indirek hierdie le&euml;r insluit:"; "indirek hierdie leër insluit:";
} }
virtual QCString trSince() virtual QCString trSince()
{ {
return "Sederd"; return "Sederd";
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.1.5 // new since 1.1.5
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -993,12 +993,12 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -993,12 +993,12 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ {
return "Diagram beskrywing"; return "Diagram beskrywing";
} }
/*! page explaining how the dot graph's should be interpreted /*! page explaining how the dot graph's should be interpreted
* The %A in the text below are to prevent link to classes called "A". * The %A in the text below are to prevent link to classes called "A".
*/ */
virtual QCString trLegendDocs() virtual QCString trLegendDocs()
{ {
return return
"Hierdie bladsy beskryf die diagram konvensies wat gebruik word " "Hierdie bladsy beskryf die diagram konvensies wat gebruik word "
"deur doxygen.<p>\n" "deur doxygen.<p>\n"
"in hierdie voorbeeld:\n" "in hierdie voorbeeld:\n"
...@@ -1030,7 +1030,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1030,7 +1030,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
" Used *m_usedClass;\n" " Used *m_usedClass;\n"
"};\n" "};\n"
"\\endcode\n" "\\endcode\n"
"As die \\c MAX_DOT_GRAPH_HEIGHT merker in die konfigurasie le&euml;r " "As die \\c MAX_DOT_GRAPH_HEIGHT merker in die konfigurasie leër "
"aan 240 gelyk gestel is, word die volgende diagram geproduseer:" "aan 240 gelyk gestel is, word die volgende diagram geproduseer:"
"<p><center><img alt=\"\" src=\"graph_legend."+Config_getEnum("DOT_IMAGE_FORMAT")+"\"></center>\n" "<p><center><img alt=\"\" src=\"graph_legend."+Config_getEnum("DOT_IMAGE_FORMAT")+"\"></center>\n"
"<p>\n" "<p>\n"
...@@ -1063,11 +1063,11 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1063,11 +1063,11 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ {
return "beskrywing"; return "beskrywing";
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.0 // new since 1.2.0
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! Used as a marker that is put before a test item */ /*! Used as a marker that is put before a test item */
virtual QCString trTest() virtual QCString trTest()
{ {
...@@ -1145,11 +1145,11 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1145,11 +1145,11 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ {
return "Waarde:"; return "Waarde:";
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.5 // new since 1.2.5
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! Used as a marker that is put before a \\bug item */ /*! Used as a marker that is put before a \\bug item */
virtual QCString trBug() virtual QCString trBug()
{ {
...@@ -1165,9 +1165,9 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1165,9 +1165,9 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
// new since 1.2.6 // new since 1.2.6
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! Used as ansicpg for RTF file /*! Used as ansicpg for RTF file
* *
* The following table shows the correlation of Charset name, Charset Value and * The following table shows the correlation of Charset name, Charset Value and
* <pre> * <pre>
* Codepage number: * Codepage number:
* Charset Name Charset Value(hex) Codepage number * Charset Name Charset Value(hex) Codepage number
...@@ -1188,15 +1188,15 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1188,15 +1188,15 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
* GB2313_CHARSET 134 (x86) 936 * GB2313_CHARSET 134 (x86) 936
* CHINESEBIG5_CHARSET 136 (x88) 950 * CHINESEBIG5_CHARSET 136 (x88) 950
* </pre> * </pre>
* *
*/ */
virtual QCString trRTFansicp() virtual QCString trRTFansicp()
{ {
return "1252"; return "1252";
} }
/*! Used as ansicpg for RTF fcharset
/*! Used as ansicpg for RTF fcharset
* \see trRTFansicp() for a table of possible values. * \see trRTFansicp() for a table of possible values.
*/ */
virtual QCString trRTFCharSet() virtual QCString trRTFCharSet()
...@@ -1209,82 +1209,82 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1209,82 +1209,82 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ {
return "Indeks"; return "Indeks";
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trClass(bool first_capital, bool singular) virtual QCString trClass(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Klas" : "klas")); QCString result((first_capital ? "Klas" : "klas"));
if (!singular) result+="se"; if (!singular) result+="se";
return result; return result;
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trFile(bool first_capital, bool singular) virtual QCString trFile(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Le&euml;r" : "le&euml;r")); QCString result((first_capital ? "Leër" : "leër"));
if (!singular) result+="s"; if (!singular) result+="s";
return result; return result;
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trNamespace(bool first_capital, bool singular) virtual QCString trNamespace(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Namespace" : "namespace")); QCString result((first_capital ? "Namespace" : "namespace"));
if (!singular) result+="s"; if (!singular) result+="s";
return result; return result;
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trGroup(bool first_capital, bool singular) virtual QCString trGroup(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Groep" : "groep")); QCString result((first_capital ? "Groep" : "groep"));
if (!singular) result+="e"; if (!singular) result+="e";
return result; return result;
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trPage(bool first_capital, bool singular) virtual QCString trPage(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Bladsy" : "bladsy")); QCString result((first_capital ? "Bladsy" : "bladsy"));
if (!singular) result+="e"; if (!singular) result+="e";
return result; return result;
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trMember(bool first_capital, bool singular) virtual QCString trMember(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Lid" : "lid")); QCString result((first_capital ? "Lid" : "lid"));
if (!singular) result = (first_capital ? "Lede" : "lede"); if (!singular) result = (first_capital ? "Lede" : "lede");
return result; return result;
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trGlobal(bool first_capital, bool singular) virtual QCString trGlobal(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Global" : "global")); QCString result((first_capital ? "Global" : "global"));
if (!singular) result+="s"; if (!singular) result+="s";
return result; return result;
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1294,10 +1294,10 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1294,10 +1294,10 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! This text is generated when the \\author command is used and /*! This text is generated when the \\author command is used and
* for the author section in man pages. */ * for the author section in man pages. */
virtual QCString trAuthor(bool first_capital, bool singular) virtual QCString trAuthor(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Outeur" : "outeur")); QCString result((first_capital ? "Outeur" : "outeur"));
if (!singular) result+="s"; if (!singular) result+="s";
return result; return result;
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1315,7 +1315,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1315,7 +1315,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
// new since 1.2.13 // new since 1.2.13
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! used in member documentation blocks to produce a list of /*! used in member documentation blocks to produce a list of
* members that are implemented by this one. * members that are implemented by this one.
*/ */
virtual QCString trImplementedFromList(int numEntries) virtual QCString trImplementedFromList(int numEntries)
...@@ -1347,8 +1347,8 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1347,8 +1347,8 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
// new since 1.2.17 // new since 1.2.17
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! Used as the header of the list of item that have been /*! Used as the header of the list of item that have been
* flagged deprecated * flagged deprecated
*/ */
virtual QCString trDeprecatedList() virtual QCString trDeprecatedList()
{ {
...@@ -1359,7 +1359,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1359,7 +1359,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
// new since 1.2.18 // new since 1.2.18
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! Used as a header for declaration section of the events found in /*! Used as a header for declaration section of the events found in
* a C# program * a C# program
*/ */
virtual QCString trEvents() virtual QCString trEvents()
...@@ -1379,43 +1379,43 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1379,43 +1379,43 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
/*! Used as a heading for a list of Java class types with package scope. /*! Used as a heading for a list of Java class types with package scope.
*/ */
virtual QCString trPackageTypes() virtual QCString trPackageTypes()
{ {
return "Pakket Tipes"; return "Pakket Tipes";
} }
/*! Used as a heading for a list of Java class functions with package /*! Used as a heading for a list of Java class functions with package
* scope. * scope.
*/ */
virtual QCString trPackageMembers() virtual QCString trPackageMembers()
{ {
return "Pakket Funksies"; return "Pakket Funksies";
} }
/*! Used as a heading for a list of static Java class functions with /*! Used as a heading for a list of static Java class functions with
* package scope. * package scope.
*/ */
virtual QCString trStaticPackageMembers() virtual QCString trStaticPackageMembers()
{ {
return "Statiese Pakket Funksies"; return "Statiese Pakket Funksies";
} }
/*! Used as a heading for a list of Java class variables with package /*! Used as a heading for a list of Java class variables with package
* scope. * scope.
*/ */
virtual QCString trPackageAttribs() virtual QCString trPackageAttribs()
{ {
return "Pakket Eienskappe"; return "Pakket Eienskappe";
} }
/*! Used as a heading for a list of static Java class variables with /*! Used as a heading for a list of static Java class variables with
* package scope. * package scope.
*/ */
virtual QCString trStaticPackageAttribs() virtual QCString trStaticPackageAttribs()
{ {
return "Statiese Pakket Eienskappe"; return "Statiese Pakket Eienskappe";
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.3.1 // new since 1.3.1
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! Used in the quick index of a class/file/namespace member list page /*! Used in the quick index of a class/file/namespace member list page
* to link to the unfiltered list of all members. * to link to the unfiltered list of all members.
*/ */
virtual QCString trAll() virtual QCString trAll()
...@@ -1432,9 +1432,9 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1432,9 +1432,9 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! When the search engine is enabled this text is put in the header /*! When the search engine is enabled this text is put in the header
* of each page before the field where one can enter the text to search * of each page before the field where one can enter the text to search
* for. * for.
*/ */
virtual QCString trSearchForIndex() virtual QCString trSearchForIndex()
{ {
...@@ -1451,7 +1451,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1451,7 +1451,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
* text can be different depending on the number of documents found. * text can be different depending on the number of documents found.
* Inside the text you can put the special marker $num to insert * Inside the text you can put the special marker $num to insert
* the number representing the actual number of search results. * the number representing the actual number of search results.
* The @a numDocuments parameter can be either 0, 1 or 2, where the * The @a numDocuments parameter can be either 0, 1 or 2, where the
* value 2 represents 2 or more matches. HTML markup is allowed inside * value 2 represents 2 or more matches. HTML markup is allowed inside
* the returned string. * the returned string.
*/ */
...@@ -1465,13 +1465,13 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1465,13 +1465,13 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
{ {
return "Die soektog het <b>1</b> dokument gevind na gelang van jou navraag."; return "Die soektog het <b>1</b> dokument gevind na gelang van jou navraag.";
} }
else else
{ {
return "Die soektog het <b>$num</b> dokumente gevind na gelang van jou navraag. " return "Die soektog het <b>$num</b> dokumente gevind na gelang van jou navraag. "
"Beste resultate eerste."; "Beste resultate eerste.";
} }
} }
/*! This string is put before the list of matched words, for each search /*! This string is put before the list of matched words, for each search
* result. What follows is the list of words that matched the query. * result. What follows is the list of words that matched the query.
*/ */
virtual QCString trSearchMatches() virtual QCString trSearchMatches()
...@@ -1487,7 +1487,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1487,7 +1487,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
*/ */
virtual QCString trSourceFile(QCString& filename) virtual QCString trSourceFile(QCString& filename)
{ {
return filename + " Bron kode Le&euml;r"; return filename + " Bron kode Leër";
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1498,7 +1498,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1498,7 +1498,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
* hierarchy. * hierarchy.
*/ */
virtual QCString trDirIndex() virtual QCString trDirIndex()
{ return "Directory Hi&euml;rargie"; } { return "Directory Hiërargie"; }
/*! This is used as the name of the chapter containing the documentation /*! This is used as the name of the chapter containing the documentation
* of the directories. * of the directories.
...@@ -1512,11 +1512,11 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1512,11 +1512,11 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
virtual QCString trDirectories() virtual QCString trDirectories()
{ return "Directories"; } { return "Directories"; }
/*! This returns a sentences that introduces the directory hierarchy. /*! This returns a sentences that introduces the directory hierarchy.
* and the fact that it is sorted alphabetically per level * and the fact that it is sorted alphabetically per level
*/ */
virtual QCString trDirDescription() virtual QCString trDirDescription()
{ return "Hierdie directory hi&euml;rargie is min of meer alfabeties " { return "Hierdie directory hiërargie is min of meer alfabeties "
"gesorteer:"; "gesorteer:";
} }
...@@ -1530,10 +1530,10 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1530,10 +1530,10 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
* (\a first_capital) and in sigular or plural form (\a singular). * (\a first_capital) and in sigular or plural form (\a singular).
*/ */
virtual QCString trDir(bool first_capital, bool singular) virtual QCString trDir(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Director" : "director")); QCString result((first_capital ? "Director" : "director"));
if (singular) result+="y"; else result+="ies"; if (singular) result+="y"; else result+="ies";
return result; return result;
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1560,7 +1560,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1560,7 +1560,7 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
return "Hier is die roep skema vir die funksie:"; return "Hier is die roep skema vir die funksie:";
} }
/*! This is used in the documentation of a file/namespace before the list /*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for enumeration values * of documentation blocks for enumeration values
*/ */
virtual QCString trEnumerationValueDocumentation() virtual QCString trEnumerationValueDocumentation()
...@@ -1569,12 +1569,12 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1569,12 +1569,12 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.5.4 (mainly for Fortran) // new since 1.5.4 (mainly for Fortran)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! header that is put before the list of member subprograms (Fortran). */ /*! header that is put before the list of member subprograms (Fortran). */
virtual QCString trMemberFunctionDocumentationFortran() virtual QCString trMemberFunctionDocumentationFortran()
{ return "Lede Funksie/Subroetine Dokumentasie"; } { return "Lede Funksie/Subroetine Dokumentasie"; }
/*! This is put above each page as a link to the list of annotated data types (Fortran). */ /*! This is put above each page as a link to the list of annotated data types (Fortran). */
virtual QCString trCompoundListFortran() virtual QCString trCompoundListFortran()
{ return "Data Tipes Lys"; } { return "Data Tipes Lys"; }
...@@ -1596,18 +1596,18 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1596,18 +1596,18 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
} }
result+="data tipe lede"; result+="data tipe lede";
result+=" met skakels na "; result+=" met skakels na ";
if (!extractAll) if (!extractAll)
{ {
result+="die data strukture dokumentasie vir elke lid"; result+="die data strukture dokumentasie vir elke lid";
} }
else else
{ {
result+="die data tipes waaraan hulle behoort:"; result+="die data tipes waaraan hulle behoort:";
} }
return result; return result;
} }
/*! This is used in LaTeX as the title of the chapter with the /*! This is used in LaTeX as the title of the chapter with the
* annotated compound index (Fortran). * annotated compound index (Fortran).
*/ */
virtual QCString trCompoundIndexFortran() virtual QCString trCompoundIndexFortran()
...@@ -1619,24 +1619,24 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1619,24 +1619,24 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
virtual QCString trTypeDocumentation() virtual QCString trTypeDocumentation()
{ return "Data Tipe Dokumentasie"; } { return "Data Tipe Dokumentasie"; }
/*! This is used in the documentation of a file as a header before the /*! This is used in the documentation of a file as a header before the
* list of (global) subprograms (Fortran). * list of (global) subprograms (Fortran).
*/ */
virtual QCString trSubprograms() virtual QCString trSubprograms()
{ return "Funksies/Subroetines"; } { return "Funksies/Subroetines"; }
/*! This is used in the documentation of a file/namespace before the list /*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for subprograms (Fortran) * of documentation blocks for subprograms (Fortran)
*/ */
virtual QCString trSubprogramDocumentation() virtual QCString trSubprogramDocumentation()
{ return "Funksies/Subroetine Dokumentasie"; } { return "Funksies/Subroetine Dokumentasie"; }
/*! This is used in the documentation of a file/namespace/group before /*! This is used in the documentation of a file/namespace/group before
* the list of links to documented compounds (Fortran) * the list of links to documented compounds (Fortran)
*/ */
virtual QCString trDataTypes() virtual QCString trDataTypes()
{ return "Data Tipes"; } { return "Data Tipes"; }
/*! used as the title of page containing all the index of all modules (Fortran). */ /*! used as the title of page containing all the index of all modules (Fortran). */
virtual QCString trModulesList() virtual QCString trModulesList()
{ return "Modules Lys"; } { return "Modules Lys"; }
...@@ -1675,46 +1675,46 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1675,46 +1675,46 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
virtual QCString trModuleReference(const char *namespaceName) virtual QCString trModuleReference(const char *namespaceName)
{ {
QCString result=namespaceName; QCString result=namespaceName;
result+=" Module Bron"; result+=" Module Bron";
return result; return result;
} }
/*! This is put above each page as a link to all members of modules. (Fortran) */ /*! This is put above each page as a link to all members of modules. (Fortran) */
virtual QCString trModulesMembers() virtual QCString trModulesMembers()
{ return "Module Lede"; } { return "Module Lede"; }
/*! This is an introduction to the page with all modules members (Fortran) */ /*! This is an introduction to the page with all modules members (Fortran) */
virtual QCString trModulesMemberDescription(bool extractAll) virtual QCString trModulesMemberDescription(bool extractAll)
{ {
QCString result="Hier is 'n lys van alle "; QCString result="Hier is 'n lys van alle ";
if (!extractAll) result+="gedokumenteerde "; if (!extractAll) result+="gedokumenteerde ";
result+="module lede met skakels na "; result+="module lede met skakels na ";
if (extractAll) if (extractAll)
{ {
result+="die module dokumentasie vir elke lid:"; result+="die module dokumentasie vir elke lid:";
} }
else else
{ {
result+="die modules waaraan hulle behoort:"; result+="die modules waaraan hulle behoort:";
} }
return result; return result;
} }
/*! This is used in LaTeX as the title of the chapter with the /*! This is used in LaTeX as the title of the chapter with the
* index of all modules (Fortran). * index of all modules (Fortran).
*/ */
virtual QCString trModulesIndex() virtual QCString trModulesIndex()
{ return "Modules Indeks"; } { return "Modules Indeks"; }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trModule(bool first_capital, bool singular) virtual QCString trModule(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Module" : "module")); QCString result((first_capital ? "Module" : "module"));
if (!singular) result+="s"; if (!singular) result+="s";
return result; return result;
} }
/*! This is put at the bottom of a module documentation page and is /*! This is put at the bottom of a module documentation page and is
* followed by a list of files that were used to generate the page. * followed by a list of files that were used to generate the page.
...@@ -1740,24 +1740,24 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0 ...@@ -1740,24 +1740,24 @@ class TranslatorAfrikaans : public TranslatorAdapter_1_6_0
return result; return result;
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trType(bool first_capital, bool singular) virtual QCString trType(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Tipe" : "tipe")); QCString result((first_capital ? "Tipe" : "tipe"));
if (!singular) result+="s"; if (!singular) result+="s";
return result; return result;
} }
/*! This is used for translation of the word that will possibly /*! This is used for translation of the word that will possibly
* be followed by a single name or by a list of names * be followed by a single name or by a list of names
* of the category. * of the category.
*/ */
virtual QCString trSubprogram(bool first_capital, bool singular) virtual QCString trSubprogram(bool first_capital, bool singular)
{ {
QCString result((first_capital ? "Subprogram" : "subprogram")); QCString result((first_capital ? "Subprogram" : "subprogram"));
if (!singular) result+="me"; if (!singular) result+="me";
return result; return result;
} }
/*! C# Type Constraint list */ /*! C# Type Constraint list */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment