Commit 3fd821c2 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge branch 'master' of https://github.com/pepr/doxygen into pepr

Conflicts:
	src/libdoxygen.pro.in
	winbuild/Doxygen.vcproj
parents 10dc9dd5 78b905a4
...@@ -42,6 +42,7 @@ Makefile ...@@ -42,6 +42,7 @@ Makefile
/src/pyscanner.cpp /src/pyscanner.cpp
/src/scanner.cpp /src/scanner.cpp
/src/tclscanner.cpp /src/tclscanner.cpp
/src/unistd.h
/src/version.cpp /src/version.cpp
/src/vhdlcode.cpp /src/vhdlcode.cpp
/src/vhdlparser.cpp /src/vhdlparser.cpp
......
...@@ -61,6 +61,7 @@ ...@@ -61,6 +61,7 @@
2010/09/27 - The underscore in \latexonly part of the generated language.doc 2010/09/27 - The underscore in \latexonly part of the generated language.doc
was prefixed by backslash (was LaTeX related error). was prefixed by backslash (was LaTeX related error).
2013/02/19 - Better diagnostics when translator_xx.h is too crippled. 2013/02/19 - Better diagnostics when translator_xx.h is too crippled.
2013/06/25 - TranslatorDecoder checks removed after removing the class.
""" """
from __future__ import generators from __future__ import generators
...@@ -185,7 +186,6 @@ class Transl: ...@@ -185,7 +186,6 @@ class Transl:
self.missingMethods = None # list of prototypes to be implemented self.missingMethods = None # list of prototypes to be implemented
self.implementedMethods = None # list of implemented required methods self.implementedMethods = None # list of implemented required methods
self.adaptMinClass = None # The newest adapter class that can be used self.adaptMinClass = None # The newest adapter class that can be used
self.isDecodedTranslator = None # Flag related to internal usage of UTF-8
def __tokenGenerator(self): def __tokenGenerator(self):
"""Generator that reads the file and yields tokens as 4-tuples. """Generator that reads the file and yields tokens as 4-tuples.
...@@ -1117,13 +1117,6 @@ class Transl: ...@@ -1117,13 +1117,6 @@ class Transl:
else: else:
self.missingMethods.append(p) self.missingMethods.append(p)
# Set the least important note first if the translator is decoded.
# If yes, then it means that the implementation should be switched
# to UTF-8 later (suggestion).
self.isDecodedTranslator = self.classId in self.manager.decodedTranslators
if self.isDecodedTranslator:
self.note = 'Reimplementation using UTF-8 suggested.'
# Check whether adapter must be used or suggest the newest one. # Check whether adapter must be used or suggest the newest one.
# Change the status and set the note accordingly. # Change the status and set the note accordingly.
if self.baseClassId != 'Translator': if self.baseClassId != 'Translator':
...@@ -1307,44 +1300,10 @@ class TrManager: ...@@ -1307,44 +1300,10 @@ class TrManager:
self.numLang = None # excluding coupled En-based self.numLang = None # excluding coupled En-based
self.doxVersion = None # Doxygen version self.doxVersion = None # Doxygen version
# Capture the knowledge about translators that are not implemented
# to use UTF-8 internally.
self.decodedTranslators = self.getDecodedTranslators()
# Build objects where each one is responsible for one translator. # Build objects where each one is responsible for one translator.
self.__build() self.__build()
def getDecodedTranslators(self):
"""Parses language.cpp to find what translators do not use UTF-8 yet"""
decodedTranslators = []
# Regular expression to detect the lines like
# theTranslator=new TranslatorDecoder(new TranslatorSwedish);
rex = re.compile(r'^\s*theTranslator\s*=\s*new\s+.*$')
# Regular expression to get the (optional) TranslatorDecoder and TranslatorXXX
rex2 = re.compile(r'\bTranslator\w+')
# Parse the lines in the specific source code.
f = open(os.path.join(self.src_path, 'language.cpp'), 'rU')
for line in f:
if rex.match(line):
lst = rex2.findall(line)
if lst[0] == 'TranslatorDecoder':
decodedTranslators.append(lst[1])
f.close()
# Display warning when all translator implementations were converted
# to UTF-8.
if len(decodedTranslators) == 0:
print 'This script should be updated. All translators do use UTF-8'
print 'internally. The TranslatorDecoder adapter should be removed'
print 'from the code and its usage should not be checked any more.'
return decodedTranslators
def __build(self): def __build(self):
"""Find the translator files and build the objects for translators.""" """Find the translator files and build the objects for translators."""
......
This diff is collapsed.
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include "language.h" #include "language.h"
#include "lang_cfg.h" #include "lang_cfg.h"
#include "translator.h" #include "translator.h"
#include "translatordecoder.h"
#include "translator_en.h" #include "translator_en.h"
#if !defined(ENGLISH_ONLY) #if !defined(ENGLISH_ONLY)
#include "translator_adapter.h" #include "translator_adapter.h"
...@@ -231,7 +230,7 @@ bool setTranslator(const char *langName) ...@@ -231,7 +230,7 @@ bool setTranslator(const char *langName)
#ifdef LANG_JE #ifdef LANG_JE
else if (L_EQUAL("japanese-en")) else if (L_EQUAL("japanese-en"))
{ {
theTranslator=new TranslatorDecoder(new TranslatorJapaneseEn); theTranslator=new TranslatorJapaneseEn;
} }
#endif #endif
#ifdef LANG_ES #ifdef LANG_ES
...@@ -285,7 +284,7 @@ bool setTranslator(const char *langName) ...@@ -285,7 +284,7 @@ bool setTranslator(const char *langName)
#ifdef LANG_KE #ifdef LANG_KE
else if (L_EQUAL("korean-en")) else if (L_EQUAL("korean-en"))
{ {
theTranslator=new TranslatorDecoder(new TranslatorKoreanEn); theTranslator=new TranslatorKoreanEn;
} }
#endif #endif
#ifdef LANG_RO #ifdef LANG_RO
......
...@@ -260,7 +260,6 @@ SOURCES = arguments.cpp \ ...@@ -260,7 +260,6 @@ SOURCES = arguments.cpp \
tclscanner.cpp \ tclscanner.cpp \
textdocvisitor.cpp \ textdocvisitor.cpp \
tooltip.cpp \ tooltip.cpp \
translator.cpp \
util.cpp \ util.cpp \
version.cpp \ version.cpp \
vhdlcode.cpp \ vhdlcode.cpp \
......
/*! \file translator.cpp
* \brief Implementation of generally used translator methods.
*
* This file contains implementation of the translator methods that
* are not expected to be reimplemented by derived translator classes.
* It also contains static data tables used by the methods.
*
*/
#include "translator.h"
#include <stdio.h>
/*! The translation table used by Win1250ToISO88592() method. */
const char Translator::Win1250ToISO88592Tab[] =
{
'\x80', '\x81', '\x82', '\x83', '\x84', '\x85', '\x86', '\x87',
'\x88', '\x89', '\xA9', '\x8B', '\xA6', '\xAB', '\xAE', '\xAC',
'\x90', '\x91', '\x92', '\x93', '\x94', '\x2E', '\x96', '\x97',
'\x98', '\x99', '\xB9', '\x9B', '\xB6', '\xBB', '\xBE', '\xBC',
'\xA0', '\x20', '\x20', '\xA3', '\xA4', '\xA1', '\xA6', '\xA7',
'\x22', '\xA9', '\xAA', '\x3C', '\xAC', '\x2D', '\xAE', '\xAF',
'\x2E', '\x2B', '\x20', '\xB3', '\x27', '\x75', '\xB6', '\xB7',
'\x20', '\xB1', '\xBA', '\x3E', '\xA5', '\x22', '\xB5', '\xBF',
'\xC0', '\xC1', '\xC2', '\xC3', '\xC4', '\xC5', '\xC6', '\xC7',
'\xC8', '\xC9', '\xCA', '\xCB', '\xCC', '\xCD', '\xCE', '\xCF',
'\xD0', '\xD1', '\xD2', '\xD3', '\xD4', '\xD5', '\xD6', '\xD7',
'\xD8', '\xD9', '\xDA', '\xDB', '\xDC', '\xDD', '\xDE', '\xDF',
'\xE0', '\xE1', '\xE2', '\xE3', '\xE4', '\xE5', '\xE6', '\xE7',
'\xE8', '\xE9', '\xEA', '\xEB', '\xEC', '\xED', '\xEE', '\xEF',
'\xF0', '\xF1', '\xF2', '\xF3', '\xF4', '\xF5', '\xF6', '\x2D',
'\xF8', '\xF9', '\xFA', '\xFB', '\xFC', '\xFD', '\xFE', '\xFF',
'\0'
};
/*! The translation table used by ISO88592ToWin1250() method. */
const char Translator::ISO88592ToWin1250Tab[] = {
'\x80', '\x81', '\x82', '\x83', '\x84', '\x85', '\x86', '\x87',
'\x88', '\x89', '\x8A', '\x8B', '\x8C', '\x8D', '\x8E', '\x8F',
'\x90', '\x91', '\x92', '\x93', '\x94', '\x95', '\x96', '\x97',
'\x98', '\x99', '\x9A', '\x9B', '\x9C', '\x9D', '\x9E', '\x9F',
'\xA0', '\xA5', '\xA2', '\xA3', '\xA4', '\xBC', '\x8C', '\xA7',
'\xA8', '\x8A', '\xAA', '\x8D', '\x8F', '\xAD', '\x8E', '\xAF',
'\xB0', '\xB9', '\xB2', '\xB3', '\xB4', '\xBE', '\x9C', '\xB7',
'\xB8', '\x9A', '\xBA', '\x9D', '\x9F', '\xBD', '\x9E', '\xBF',
'\xC0', '\xC1', '\xC2', '\xC3', '\xC4', '\xC5', '\xC6', '\xC7',
'\xC8', '\xC9', '\xCA', '\xCB', '\xCC', '\xCD', '\xCE', '\xCF',
'\xD0', '\xD1', '\xD2', '\xD3', '\xD4', '\xD5', '\xD6', '\xD7',
'\xD8', '\xD9', '\xDA', '\xDB', '\xDC', '\xDD', '\xDE', '\xDF',
'\xE0', '\xE1', '\xE2', '\xE3', '\xE4', '\xE5', '\xE6', '\xE7',
'\xE8', '\xE9', '\xEA', '\xEB', '\xEC', '\xED', '\xEE', '\xEF',
'\xF0', '\xF1', '\xF2', '\xF3', '\xF4', '\xF5', '\xF6', '\xF7',
'\xF8', '\xF9', '\xFA', '\xFB', '\xFC', '\xFD', '\xFE', '\xFF',
'\0'
};
/*! The translation table used by Koi8RToWindows1251() method. */
const unsigned char Translator::Koi8RToWindows1251Tab[128] =
{ 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,
144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,
160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,
176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,
254,224,225,246,228,229,244,227,245,232,233,234,235,236,237,238,
239,255,240,241,242,243,230,226,252,251,231,248,253,249,247,250,
222,192,193,214,196,197,212,195,213,200,201,202,203,204,205,206,
207,223,208,209,210,211,198,194,220,219,199,216,221,217,215,218
};
/*! The translation table used by Windows1251ToKoi8R() method. */
const unsigned char Translator::Windows1251ToKoi8RTab[128] =
{ 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,
144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,
160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,
176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,
225,226,247,231,228,229,246,250,233,234,235,236,237,238,239,240,
242,243,244,245,230,232,227,254,251,253,255,249,248,252,224,241,
193,194,215,199,196,197,214,218,201,202,203,204,205,206,207,208,
210,211,212,213,198,200,195,222,219,221,223,217,216,220,192,209
};
/*! Returns the string converted from windows-1250 to iso-8859-2. */
/* The method was designed initially for translator_cz.h.
* It is used for on-line encoding conversion related to
* conditional compilation in Unix/MS Windows environments
* (both use different encoding). Later, the translator_hr.h
* (by Boris Bralo) used and improved the same style. As the
* method with the translation table was the same, the
* decision to move it to this base class was made. The same
* holds for ISO88592ToWin1250() method.
*
* Alexandr Chelpanov used the same approach for
* Koi8RToWindows1251() and Windows1251ToKoi8R() methods. Notice,
* that he uses Unicode tables.
*
* It is recommended for possibly other similar methods in future.
*/
QCString Translator::Win1250ToISO88592(const QCString & sInput)
{
// The conversion table for characters >127
//
QCString result;
int len = sInput.length();
for (int i = 0; i < len; ++i)
{
unsigned int c = sInput[i];
result += (c > 127) ? Win1250ToISO88592Tab[c & 0x7F] : c;
}
return result;
}
/*! returns the string converted from iso-8859-2 to windows-1250 */
/* See the comments of the Win1250ToISO88592() method for details. */
QCString Translator::ISO88592ToWin1250(const QCString & sInput)
{
// The conversion table for characters >127
//
QCString result;
int len = sInput.length();
for (int i = 0; i < len; ++i)
{
unsigned int c = sInput[i];
result += (c > 127) ? ISO88592ToWin1250Tab[c & 0x7F] : c;
}
return result;
}
/*! Returns the string converted from koi8-r to windows-1251. */
/* The method was designed initially for translator_cz.h.
It is used for on-line encoding conversion related to conditional
compilation in Unix/MS Windows environments (both use different
encoding). Encoding table got from QT:qtextcodec.cpp
*/
QCString Translator::Koi8RToWindows1251( const QCString & sInput )
{
QCString result(sInput);
int len = sInput.length();
const unsigned char * c = (const unsigned char *)(const char*)sInput;
unsigned char *dc = (unsigned char*)(const char*)result;
for( int i=0; i<len; i++ ) {
if ( c[i] > 127 )
dc[i] = Koi8RToWindows1251Tab[c[i]-128];
}
return result;
}
/*! returns the string converted from Windows-1251 to koi8-r */
/* See the comments of the Koi8RToWindows1251() method for details.
Encoding table got from QT:qtextcodec.cpp */
QCString Translator::Windows1251ToKoi8R( const QCString & sInput )
{
QCString result(sInput);
int len = sInput.length();
const unsigned char * c = (const unsigned char *)(const char*)sInput;
unsigned char *dc = (unsigned char*)(const char*)result;
for( int i=0; i<len; i++ ) {
if ( c[i] > 127 )
dc[i] = Windows1251ToKoi8RTab[c[i]-128];
}
return result;
}
/*! returns the caracter converted from hankaku-kana to zenkakukana.
Thanks Yongmao Ni http://alfin.mine.utsunomiya-u.ac.jp/~niy/algo/ */
unsigned int hankaku2zen(int hankaku)
{
static unsigned int z[64] = {
0x2121,0x2123,0x2156,0x2157,0x2122,0x2126,0x2572,0x2521,
0x2523,0x2525,0x2527,0x2529,0x2563,0x2565,0x2567,0x2543,
0x213c,0x2522,0x2524,0x2526,0x2528,0x252a,0x252b,0x252d,
0x252f,0x2531,0x2533,0x2535,0x2537,0x2539,0x253b,0x253d,
0x253f,0x2541,0x2544,0x2546,0x2548,0x254a,0x254b,0x254c,
0x254d,0x254e,0x254f,0x2552,0x2555,0x2558,0x255b,0x255e,
0x255f,0x2560,0x2561,0x2562,0x2564,0x2566,0x2568,0x2569,
0x256a,0x256b,0x256c,0x256d,0x256f,0x2573,0x212b,0x212c };
if (hankaku < 0xa0 || hankaku > 0xdf) return 0;
return z[hankaku - 0xa0];
}
/*! returns the character converted from japaneseEUC to SJIS
Thanks Yongmao Ni http://alfin.mine.utsunomiya-u.ac.jp/~niy/algo/ */
unsigned int euc2sjis(unsigned int euc)
{
unsigned int jis;
unsigned int hib, lob;
if ((euc & 0xff00) == 0x8e00)
jis = hankaku2zen(euc & 0xff);
else jis = euc & ~0x8080;
hib = (jis >> 8) & 0xff;
lob = jis & 0xff;
lob += (hib & 1) ? 0x1f : 0x7d;
if (lob >= 0x7f) lob++;
hib = ((hib - 0x21) >> 1) + 0x81;
if (hib > 0x9f) hib += 0x40;
return (hib << 8) | lob;
}
/*! returns the string converted from Japanese-EUC to SJIS */
QCString Translator::JapaneseEucToSjis( const QCString & sInput )
{
QString result;
int len = sInput.length();
int c1,c2,sj;
result.setUnicode(0, len);
QChar* uc = (QChar*)result.unicode(); // const_cast
const unsigned char * c = (const unsigned char *)(const char*)sInput;
for( int i=0; i<len;)
{
c1 = c[i];
if( c1 == EOF ) break;
/* if MSB=0 then the character is ascii */
if(!( c1 & 0x80))
{
uc[i] = c[i];
i=i+1;
}
else
{
c2 = c[i+1];
if( c2 == EOF ) break;
sj = euc2sjis( (c1 << 8) + c2 );
uc[i] = sj >> 8;
uc[i+1] = sj & 0xff;
i+=2;
}
}
return result.latin1();
}
...@@ -23,29 +23,6 @@ ...@@ -23,29 +23,6 @@
/** Abstract base class for all translatable text fragments. */ /** Abstract base class for all translatable text fragments. */
class Translator class Translator
{ {
private:
/* Tables for encoding conversions. */
static const char Win1250ToISO88592Tab[];
static const char ISO88592ToWin1250Tab[];
static const unsigned char Koi8RToWindows1251Tab[128];
static const unsigned char Windows1251ToKoi8RTab[128];
protected:
/*! Returns the string converted from windows-1250 to iso-8859-2. */
QCString Win1250ToISO88592(const QCString & sInput);
/*! Returns the string converted from iso-8859-2 to windows-1250. */
QCString ISO88592ToWin1250(const QCString & sInput);
/*! Returns the string converted from koi8-r to windows-1251. */
QCString Koi8RToWindows1251( const QCString & sInput );
/*! Returns the string converted from windows-1251 to koi8-r. */
QCString Windows1251ToKoi8R( const QCString & sInput );
/*! Returns the string converted from Japanese-EUC to SJIS. */
QCString JapaneseEucToSjis( const QCString & sInput );
public: public:
/*! This method is used to provide warning message that is displayed /*! This method is used to provide warning message that is displayed
...@@ -64,7 +41,6 @@ class Translator ...@@ -64,7 +41,6 @@ class Translator
virtual QCString idLanguage() = 0; virtual QCString idLanguage() = 0;
virtual QCString latexLanguageSupportCommand() = 0; virtual QCString latexLanguageSupportCommand() = 0;
virtual QCString idLanguageCharset() = 0;
// --- Language translation methods ------------------- // --- Language translation methods -------------------
...@@ -122,21 +98,21 @@ class Translator ...@@ -122,21 +98,21 @@ class Translator
virtual QCString trPageDocumentation() = 0; virtual QCString trPageDocumentation() = 0;
virtual QCString trReferenceManual() = 0; virtual QCString trReferenceManual() = 0;
virtual QCString trDefines() = 0; virtual QCString trDefines() = 0;
virtual QCString trFuncProtos() = 0; //virtual QCString trFuncProtos() = 0;
virtual QCString trTypedefs() = 0; virtual QCString trTypedefs() = 0;
virtual QCString trEnumerations() = 0; virtual QCString trEnumerations() = 0;
virtual QCString trFunctions() = 0; virtual QCString trFunctions() = 0;
virtual QCString trVariables() = 0; virtual QCString trVariables() = 0;
virtual QCString trEnumerationValues() = 0; virtual QCString trEnumerationValues() = 0;
virtual QCString trDefineDocumentation() = 0; virtual QCString trDefineDocumentation() = 0;
virtual QCString trFunctionPrototypeDocumentation() = 0; //virtual QCString trFunctionPrototypeDocumentation() = 0;
virtual QCString trTypedefDocumentation() = 0; virtual QCString trTypedefDocumentation() = 0;
virtual QCString trEnumerationTypeDocumentation() = 0; virtual QCString trEnumerationTypeDocumentation() = 0;
virtual QCString trFunctionDocumentation() = 0; virtual QCString trFunctionDocumentation() = 0;
virtual QCString trVariableDocumentation() = 0; virtual QCString trVariableDocumentation() = 0;
virtual QCString trCompounds() = 0; virtual QCString trCompounds() = 0;
virtual QCString trGeneratedAt(const char *date,const char *projName) = 0; virtual QCString trGeneratedAt(const char *date,const char *projName) = 0;
virtual QCString trWrittenBy() = 0; //virtual QCString trWrittenBy() = 0;
virtual QCString trClassDiagram(const char *clName) = 0; virtual QCString trClassDiagram(const char *clName) = 0;
virtual QCString trForInternalUseOnly() = 0; virtual QCString trForInternalUseOnly() = 0;
//virtual QCString trReimplementedForInternalReasons() = 0; //virtual QCString trReimplementedForInternalReasons() = 0;
...@@ -207,7 +183,7 @@ class Translator ...@@ -207,7 +183,7 @@ class Translator
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType,
bool single) = 0; bool single) = 0;
virtual QCString trAlphabeticalList() = 0; //virtual QCString trAlphabeticalList() = 0;
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
...@@ -302,7 +278,7 @@ class Translator ...@@ -302,7 +278,7 @@ class Translator
// new since 1.2.1 // new since 1.2.1
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
virtual QCString trDCOPMethods() = 0; //virtual QCString trDCOPMethods() = 0;
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
...@@ -464,7 +440,7 @@ class Translator ...@@ -464,7 +440,7 @@ class Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
virtual QCString trSearchForIndex() = 0; //virtual QCString trSearchForIndex() = 0;
virtual QCString trSearchResultsTitle() = 0; virtual QCString trSearchResultsTitle() = 0;
virtual QCString trSearchResults(int numDocuments) = 0; virtual QCString trSearchResults(int numDocuments) = 0;
virtual QCString trSearchMatches() = 0; virtual QCString trSearchMatches() = 0;
...@@ -543,7 +519,7 @@ class Translator ...@@ -543,7 +519,7 @@ class Translator
// new since 1.6.3 // new since 1.6.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
virtual QCString trDirDependency(const char *name) = 0; //virtual QCString trDirDependency(const char *name) = 0;
virtual QCString trFileIn(const char *name) = 0; virtual QCString trFileIn(const char *name) = 0;
virtual QCString trIncludesFileIn(const char *name) = 0; virtual QCString trIncludesFileIn(const char *name) = 0;
virtual QCString trDateTime(int year,int month,int day,int dayOfWeek, virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
......
...@@ -161,8 +161,6 @@ class TranslatorAdapter_1_6_3 : public TranslatorAdapter_1_7_5 ...@@ -161,8 +161,6 @@ class TranslatorAdapter_1_6_3 : public TranslatorAdapter_1_7_5
virtual QCString updateNeededMessage() virtual QCString updateNeededMessage()
{ return createUpdateNeededMessage(idLanguage(),"release 1.6.3"); } { return createUpdateNeededMessage(idLanguage(),"release 1.6.3"); }
virtual QCString trDirDependency(const char *name)
{ return english.trDirDependency(name); }
virtual QCString trFileIn(const char *name) virtual QCString trFileIn(const char *name)
{ return english.trFileIn(name); } { return english.trFileIn(name); }
virtual QCString trIncludesFileIn(const char *name) virtual QCString trIncludesFileIn(const char *name)
......
...@@ -36,12 +36,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -36,12 +36,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
"\\usepackage[armscii8]{inputenc}\n</pre>"; "\\usepackage[armscii8]{inputenc}\n</pre>";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -380,12 +374,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -380,12 +374,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Մակրոսներ"; } { return "Մակրոսներ"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Ֆունկցիաների նախատիպեր"; }
/*! 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
*/ */
...@@ -422,12 +410,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -422,12 +410,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Մակրոսներ"; } { return "Մակրոսներ"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Ֆունկցիաների նախատիպեր"; }
/*! 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
*/ */
...@@ -465,7 +447,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -465,7 +447,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
{ {
return "Դասեր"; return "Դասեր";
} }
} }
/*! This is used in the documentation of a group before the list of /*! This is used in the documentation of a group before the list of
...@@ -481,12 +462,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -481,12 +462,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
result+=(QCString)" հետևյալ համակարգով."; result+=(QCString)" հետևյալ համակարգով.";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "Հեղինակ - ";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -764,12 +739,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -764,12 +739,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Այբբենական ցուցակ"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1071,16 +1040,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -1071,16 +1040,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
return "Թեստերի ցուցակ"; return "Թեստերի ցուցակ";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP անդամ ֆունկցիաներ";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1402,14 +1361,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -1402,14 +1361,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Որոնում";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1785,12 +1736,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0 ...@@ -1785,12 +1736,6 @@ class TranslatorArmenian : public TranslatorAdapter_1_8_0
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)name + " -ի կախվածությունների գծագիր";
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -68,12 +68,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6 ...@@ -68,12 +68,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6
return ""; return "";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -432,12 +426,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6 ...@@ -432,12 +426,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6
virtual QCString trDefines() virtual QCString trDefines()
{ return "التعريفات"; } { return "التعريفات"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Function Prototypes"; }
/*! 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
*/ */
...@@ -474,12 +462,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6 ...@@ -474,12 +462,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6
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
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Function Prototype 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 typedefs * of documentation blocks for typedefs
*/ */
...@@ -535,12 +517,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6 ...@@ -535,12 +517,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6
result+=(QCString)" by"; result+=(QCString)" by";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "كتب بواسطة";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -811,12 +787,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6 ...@@ -811,12 +787,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "قائمة أبجدية"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1121,16 +1091,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6 ...@@ -1121,16 +1091,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6
return "قائمة الإختبارات"; return "قائمة الإختبارات";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Member Functions";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1495,14 +1455,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6 ...@@ -1495,14 +1455,6 @@ class TranslatorArabic : public TranslatorAdapter_1_4_6
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "بحث عن";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -62,12 +62,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 ...@@ -62,12 +62,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0
return "\\usepackage[brazil]{babel}"; return "\\usepackage[brazil]{babel}";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -410,12 +404,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 ...@@ -410,12 +404,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Definições e Macros"; } { return "Definições e Macros"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Protótipos de Funções"; }
/*! 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
*/ */
...@@ -452,12 +440,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 ...@@ -452,12 +440,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Definições e macros"; } { return "Definições e macros"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Protótipos das funções"; }
/*! 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
*/ */
...@@ -507,12 +489,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 ...@@ -507,12 +489,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0
result+=(QCString)" por"; result+=(QCString)" por";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "escrito por";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -775,12 +751,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 ...@@ -775,12 +751,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Lista Alfabética"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1078,16 +1048,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 ...@@ -1078,16 +1048,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0
return "Lista de Testes"; return "Lista de Testes";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Métodos DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1439,14 +1399,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 ...@@ -1439,14 +1399,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Procurar por";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1818,12 +1770,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0 ...@@ -1818,12 +1770,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_0
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Grafo de dependência de diretórios para "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -75,12 +75,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0 ...@@ -75,12 +75,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0
return "\\usepackage[catalan]{babel}\n"; return "\\usepackage[catalan]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -423,12 +417,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0 ...@@ -423,12 +417,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Definicions"; } { return "Definicions"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Prototipus de Funcions"; }
/*! 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
*/ */
...@@ -465,12 +453,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0 ...@@ -465,12 +453,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Documentació de les Definicions"; } { return "Documentació de les Definicions"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Documentació de les Funcions Prototipus"; }
/*! 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
*/ */
...@@ -520,12 +502,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0 ...@@ -520,12 +502,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0
result+=(QCString)" per"; result+=(QCString)" per";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "escrit per";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -792,12 +768,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0 ...@@ -792,12 +768,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Llista Alfabètica"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1091,16 +1061,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0 ...@@ -1091,16 +1061,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0
return "Llista de proves"; return "Llista de proves";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Mètodes DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1444,14 +1404,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0 ...@@ -1444,14 +1404,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Buscar";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1825,12 +1777,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0 ...@@ -1825,12 +1777,6 @@ class TranslatorCatalan : public TranslatorAdapter_1_8_0
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Graf de dependència de directoris per a "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -56,11 +56,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2 ...@@ -56,11 +56,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2
return ""; return "";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{ return "UTF-8"; }
/*! used in the compound documentation before a list of related functions. /*! used in the compound documentation before a list of related functions.
*/ */
virtual QCString trRelatedFunctions() virtual QCString trRelatedFunctions()
...@@ -338,9 +333,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2 ...@@ -338,9 +333,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2
virtual QCString trDefines() virtual QCString trDefines()
{ return "宏定义"; } { return "宏定义"; }
virtual QCString trFuncProtos()
{ return "函数原型"; }
virtual QCString trTypedefs() virtual QCString trTypedefs()
{ return "类型定义"; } { return "类型定义"; }
...@@ -360,9 +352,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2 ...@@ -360,9 +352,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "宏定义说明"; } { return "宏定义说明"; }
virtual QCString trFunctionPrototypeDocumentation()
{ return "函数原型说明"; }
virtual QCString trTypedefDocumentation() virtual QCString trTypedefDocumentation()
{ return "类型定义说明"; } { return "类型定义说明"; }
...@@ -393,11 +382,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2 ...@@ -393,11 +382,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2
return result; return result;
} }
virtual QCString trWrittenBy()
{
return "作者";
}
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
{ {
return (QCString)"类"CN_SPC+clName+CN_SPC"继承关系图:"; return (QCString)"类"CN_SPC+clName+CN_SPC"继承关系图:";
...@@ -650,12 +634,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2 ...@@ -650,12 +634,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "按字典顺序排序的列表"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -977,15 +955,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2 ...@@ -977,15 +955,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2
return "测试列表"; return "测试列表";
} }
//////////////////////////////////////////////////////////////////////////
//// new since 1.2.1
////////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP"CN_SPC"成员函数";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
//// new since 1.2.2 //// new since 1.2.2
//////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////
...@@ -1368,14 +1337,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2 ...@@ -1368,14 +1337,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "搜索"CN_SPC;
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1750,11 +1711,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2 ...@@ -1750,11 +1711,6 @@ class TranslatorChinese : public TranslatorAdapter_1_8_2
// new since 1.6.3 // new since 1.6.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
virtual QCString trDirDependency(const char *name)
{
return QCString(name)+CN_SPC"的目录依赖关系图";
}
virtual QCString trFileIn(const char *name) virtual QCString trFileIn(const char *name)
{ {
return (QCString)"文件在"+CN_SPC+name; return (QCString)"文件在"+CN_SPC+name;
......
...@@ -99,12 +99,6 @@ class TranslatorCzech : public Translator ...@@ -99,12 +99,6 @@ class TranslatorCzech : public Translator
"\\usepackage[czech]{babel}\n"; "\\usepackage[czech]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -459,12 +453,6 @@ class TranslatorCzech : public Translator ...@@ -459,12 +453,6 @@ class TranslatorCzech : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "Definice maker"; } { return "Definice maker"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Prototypy"; }
/*! 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
*/ */
...@@ -501,12 +489,6 @@ class TranslatorCzech : public Translator ...@@ -501,12 +489,6 @@ class TranslatorCzech : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Dokumentace k definicím maker"; } { return "Dokumentace k definicím maker"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Dokumentace prototypů"; }
/*! 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
*/ */
...@@ -558,12 +540,6 @@ class TranslatorCzech : public Translator ...@@ -558,12 +540,6 @@ class TranslatorCzech : public Translator
result += " programem"; result += " programem";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return " -- autor ";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -839,12 +815,6 @@ class TranslatorCzech : public Translator ...@@ -839,12 +815,6 @@ class TranslatorCzech : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Rejstřík tříd"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1157,16 +1127,6 @@ class TranslatorCzech : public Translator ...@@ -1157,16 +1127,6 @@ class TranslatorCzech : public Translator
return "Seznam testů"; return "Seznam testů";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Metody DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1477,13 +1437,6 @@ class TranslatorCzech : public Translator ...@@ -1477,13 +1437,6 @@ class TranslatorCzech : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! When the search engine is enabled this text is put in the index
* of each page before the search field.
*/
virtual QCString trSearchForIndex()
{
return "Vyhledat";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1862,12 +1815,6 @@ class TranslatorCzech : public Translator ...@@ -1862,12 +1815,6 @@ class TranslatorCzech : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Graf závislosti adresářů pro "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -156,12 +156,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4 ...@@ -156,12 +156,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4
return "\\usepackage[ngerman]{babel}\n"; return "\\usepackage[ngerman]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -484,12 +478,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4 ...@@ -484,12 +478,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4
virtual QCString trDefines() virtual QCString trDefines()
{ return "Makrodefinitionen"; } { return "Makrodefinitionen"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Funktionsprototypen"; }
/*! 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
*/ */
...@@ -526,12 +514,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4 ...@@ -526,12 +514,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Makro-Dokumentation"; } { return "Makro-Dokumentation"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Funktionsprototypen Dokumentation"; }
/*! 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
*/ */
...@@ -582,13 +564,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4 ...@@ -582,13 +564,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "geschrieben von";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
{ {
...@@ -859,12 +834,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4 ...@@ -859,12 +834,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Alphabetische Liste"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1203,16 +1172,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4 ...@@ -1203,16 +1172,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4
return "Test-Liste"; return "Test-Liste";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Methoden";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1544,14 +1503,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4 ...@@ -1544,14 +1503,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Suchen nach";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1922,12 +1873,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4 ...@@ -1922,12 +1873,6 @@ class TranslatorGerman : public TranslatorAdapter_1_8_4
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Diagramm der Verzeichnisabhängigkeiten für "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -120,12 +120,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0 ...@@ -120,12 +120,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0
"\\usepackage[T1]{fontenc}\n"; "\\usepackage[T1]{fontenc}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -433,12 +427,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0 ...@@ -433,12 +427,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "#Defines"; } { return "#Defines"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Funktionsprototyper"; }
/*! 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
*/ */
...@@ -475,12 +463,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0 ...@@ -475,12 +463,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "#Define-dokumentation"; } { return "#Define-dokumentation"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Dokumentation af funktionsprototyper"; }
/*! 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
*/ */
...@@ -533,10 +515,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0 ...@@ -533,10 +515,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0
result+=(QCString)" af"; result+=(QCString)" af";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{ return "skrevet af"; }
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -797,12 +775,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0 ...@@ -797,12 +775,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Alfabetisk oversigt"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1073,16 +1045,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0 ...@@ -1073,16 +1045,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0
return "Testliste"; return "Testliste";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP-metoder";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1367,15 +1329,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0 ...@@ -1367,15 +1329,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Søg efter";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1749,12 +1702,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0 ...@@ -1749,12 +1702,6 @@ class TranslatorDanish : public TranslatorAdapter_1_8_0
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Afhængighedsgraf for "+name; // "Directory dependency graph for "
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -74,13 +74,6 @@ class TranslatorEnglish : public Translator ...@@ -74,13 +74,6 @@ class TranslatorEnglish : public Translator
return ""; return "";
} }
/*! return the language charset. This will be used
when transcoding the translatable strings in this file to UTF-8 */
virtual QCString idLanguageCharset()
{
return "iso-8859-1";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -423,12 +416,6 @@ class TranslatorEnglish : public Translator ...@@ -423,12 +416,6 @@ class TranslatorEnglish : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "Macros"; } { return "Macros"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Function Prototypes"; }
/*! 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
*/ */
...@@ -465,12 +452,6 @@ class TranslatorEnglish : public Translator ...@@ -465,12 +452,6 @@ class TranslatorEnglish : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Macro Definition Documentation"; } { return "Macro Definition Documentation"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Function Prototype 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 typedefs * of documentation blocks for typedefs
*/ */
...@@ -520,12 +501,6 @@ class TranslatorEnglish : public Translator ...@@ -520,12 +501,6 @@ class TranslatorEnglish : public Translator
result+=(QCString)" by"; result+=(QCString)" by";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "written by";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -787,12 +762,6 @@ class TranslatorEnglish : public Translator ...@@ -787,12 +762,6 @@ class TranslatorEnglish : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Alphabetical List"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1095,16 +1064,6 @@ class TranslatorEnglish : public Translator ...@@ -1095,16 +1064,6 @@ class TranslatorEnglish : public Translator
return "Test List"; return "Test List";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Member Functions";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1448,14 +1407,6 @@ class TranslatorEnglish : public Translator ...@@ -1448,14 +1407,6 @@ class TranslatorEnglish : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Search for";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1823,12 +1774,6 @@ class TranslatorEnglish : public Translator ...@@ -1823,12 +1774,6 @@ class TranslatorEnglish : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Directory dependency graph for "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -76,12 +76,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4 ...@@ -76,12 +76,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4
return "\\usepackage[esperanto]{babel}\n"; return "\\usepackage[esperanto]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -424,12 +418,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4 ...@@ -424,12 +418,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4
virtual QCString trDefines() virtual QCString trDefines()
{ return "Difinoj"; } { return "Difinoj"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Funkciaj Prototipoj"; }
/*! 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
*/ */
...@@ -466,12 +454,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4 ...@@ -466,12 +454,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Difina Dokumentado"; } { return "Difina Dokumentado"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Dokumentado de Funkciaj Prototipoj"; }
/*! 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
*/ */
...@@ -521,12 +503,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4 ...@@ -521,12 +503,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4
result+=(QCString)" de"; result+=(QCString)" de";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "skribita de";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -789,12 +765,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4 ...@@ -789,12 +765,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Alfabeta Listo"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1094,16 +1064,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4 ...@@ -1094,16 +1064,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4
return "Testa Listo"; return "Testa Listo";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Membraj Funkcioj";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1447,14 +1407,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4 ...@@ -1447,14 +1407,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Serĉi";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1819,12 +1771,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4 ...@@ -1819,12 +1771,6 @@ class TranslatorEsperanto : public TranslatorAdapter_1_8_4
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Diagramo de dependecoj dosierujaj por "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -68,12 +68,6 @@ class TranslatorSpanish : public Translator ...@@ -68,12 +68,6 @@ class TranslatorSpanish : public Translator
return "\\usepackage[spanish]{babel}"; return "\\usepackage[spanish]{babel}";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -414,12 +408,6 @@ class TranslatorSpanish : public Translator ...@@ -414,12 +408,6 @@ class TranslatorSpanish : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "'defines'"; } { return "'defines'"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Funciones prototipo"; }
/*! 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
*/ */
...@@ -456,12 +444,6 @@ class TranslatorSpanish : public Translator ...@@ -456,12 +444,6 @@ class TranslatorSpanish : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Documentación de los 'defines'"; } { return "Documentación de los 'defines'"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Documentación de las funciones prototipo"; }
/*! 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
*/ */
...@@ -512,13 +494,6 @@ class TranslatorSpanish : public Translator ...@@ -512,13 +494,6 @@ class TranslatorSpanish : public Translator
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "escrito por";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
{ {
...@@ -790,12 +765,6 @@ class TranslatorSpanish : public Translator ...@@ -790,12 +765,6 @@ class TranslatorSpanish : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Lista alfabética"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1127,16 +1096,6 @@ class TranslatorSpanish : public Translator ...@@ -1127,16 +1096,6 @@ class TranslatorSpanish : public Translator
return "Lista de pruebas"; return "Lista de pruebas";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Métodos DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1493,15 +1452,6 @@ class TranslatorSpanish : public Translator ...@@ -1493,15 +1452,6 @@ class TranslatorSpanish : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Buscar";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1883,12 +1833,6 @@ class TranslatorSpanish : public Translator ...@@ -1883,12 +1833,6 @@ class TranslatorSpanish : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Gráfico de dependencias para el directorio "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -91,12 +91,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5 ...@@ -91,12 +91,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5
return ""; return "";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -419,12 +413,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5 ...@@ -419,12 +413,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5
virtual QCString trDefines() virtual QCString trDefines()
{ return "تعاريف"; } { return "تعاريف"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "پیش تعریف های توابع"; }
/*! 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
*/ */
...@@ -461,12 +449,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5 ...@@ -461,12 +449,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5
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
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "مستندات تعاریف اولیه توابع"; }
/*! 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
*/ */
...@@ -522,12 +504,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5 ...@@ -522,12 +504,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5
result+=(QCString)" توسط"; result+=(QCString)" توسط";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "نوشته شده توسط";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -788,12 +764,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5 ...@@ -788,12 +764,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "ليست الفبايي"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1092,16 +1062,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5 ...@@ -1092,16 +1062,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5
return "Test List"; return "Test List";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP توابع عضو";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1445,14 +1405,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5 ...@@ -1445,14 +1405,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "جستجو برای";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1782,12 +1734,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5 ...@@ -1782,12 +1734,6 @@ class TranslatorPersian : public TranslatorAdapter_1_7_5
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"نمودار وابستگی دایرکتوری ها برای "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -130,12 +130,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0 ...@@ -130,12 +130,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0
return "\\usepackage[finnish]{babel}\n"; return "\\usepackage[finnish]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -484,12 +478,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0 ...@@ -484,12 +478,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Määrittelyt"; } // "Defines" { return "Määrittelyt"; } // "Defines"
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Funktioiden prototyypit"; } // "Function Prototypes"
/*! 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
*/ */
...@@ -526,12 +514,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0 ...@@ -526,12 +514,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Määritysten dokumentointi"; } // "Define Documentation" { return "Määritysten dokumentointi"; } // "Define Documentation"
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Funktioprototyyppien dokumentaatio"; } // "Function Prototype 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 typedefs * of documentation blocks for typedefs
*/ */
...@@ -585,12 +567,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0 ...@@ -585,12 +567,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0
result+=(QCString)date+" "; result+=(QCString)date+" ";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "kirjoittanut"; // "written by"
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -853,12 +829,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0 ...@@ -853,12 +829,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Aakkosellinen lista"; } // "Alphabetical List"
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1210,16 +1180,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0 ...@@ -1210,16 +1180,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0
return "Testilista"; // "Test List" return "Testilista"; // "Test List"
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP-jäsenfunktiot"; // "DCOP Member Functions"
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1563,14 +1523,6 @@ class TranslatorFinnish : public TranslatorAdapter_1_6_0 ...@@ -1563,14 +1523,6 @@ class TranslatorFinnish : 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
* of each page before the field where one can enter the text to search
* for.
*/
virtual QCString trSearchForIndex()
{
return "Etsi"; // "Search for"
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -134,13 +134,6 @@ class TranslatorFrench : public Translator ...@@ -134,13 +134,6 @@ class TranslatorFrench : public Translator
return "\\usepackage[french]{babel}\n"; return "\\usepackage[french]{babel}\n";
} }
/*! return the language charset. This will be used
when transcoding the translatable strings in this file to UTF-8 */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -481,12 +474,6 @@ class TranslatorFrench : public Translator ...@@ -481,12 +474,6 @@ class TranslatorFrench : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "Macros"; } { return "Macros"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Prototypes de fonction"; }
/*! 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
*/ */
...@@ -523,12 +510,6 @@ class TranslatorFrench : public Translator ...@@ -523,12 +510,6 @@ class TranslatorFrench : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Documentation des macros"; } { return "Documentation des macros"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Documentation des prototypes de fonction"; }
/*! 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
*/ */
...@@ -578,12 +559,6 @@ class TranslatorFrench : public Translator ...@@ -578,12 +559,6 @@ class TranslatorFrench : public Translator
result+=(QCString)" par"; result+=(QCString)" par";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "écrit par";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -850,12 +825,6 @@ class TranslatorFrench : public Translator ...@@ -850,12 +825,6 @@ class TranslatorFrench : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Liste alphabétique"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1156,16 +1125,6 @@ class TranslatorFrench : public Translator ...@@ -1156,16 +1125,6 @@ class TranslatorFrench : public Translator
return "Liste des tests"; return "Liste des tests";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Fonctions membres DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1510,14 +1469,6 @@ class TranslatorFrench : public Translator ...@@ -1510,14 +1469,6 @@ class TranslatorFrench : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Rechercher";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1884,12 +1835,6 @@ class TranslatorFrench : public Translator ...@@ -1884,12 +1835,6 @@ class TranslatorFrench : public Translator
// new since 1.6.3 // new since 1.6.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Graphe des dépendances de répertoire pour "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -47,12 +47,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4 ...@@ -47,12 +47,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4
return "\\usepackage[greek,english]{babel}\n"; return "\\usepackage[greek,english]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -394,12 +388,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4 ...@@ -394,12 +388,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4
virtual QCString trDefines() virtual QCString trDefines()
{ return "Ορισμοί"; } { return "Ορισμοί"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Πρωτοτυπήσεις Συναρτήσεων"; }
/*! 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
*/ */
...@@ -436,12 +424,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4 ...@@ -436,12 +424,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Τεκμηρίωση Ορισμών"; } { return "Τεκμηρίωση Ορισμών"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Τεκμηρίωση Πρωτοτυπήσεων των Συναρτήσεων"; }
/*! 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
*/ */
...@@ -491,12 +473,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4 ...@@ -491,12 +473,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4
result+=(QCString)" από"; result+=(QCString)" από";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "γραμμένο από τον ";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -759,12 +735,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4 ...@@ -759,12 +735,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Αλφαβητική Λίστα"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1067,16 +1037,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4 ...@@ -1067,16 +1037,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4
return "Λίστα Δοκιμαστικών"; return "Λίστα Δοκιμαστικών";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Μέδοδοι DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1419,14 +1379,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4 ...@@ -1419,14 +1379,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Αναζήτηση για";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1792,12 +1744,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4 ...@@ -1792,12 +1744,6 @@ class TranslatorGreek : public TranslatorAdapter_1_8_4
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Διάγραμμα εξάρτησης φακέλου για το "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -90,10 +90,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2 ...@@ -90,10 +90,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2
public: public:
QCString idLanguage() QCString idLanguage()
{ return "croatian"; } { return "croatian"; }
QCString idLanguageCharset()
{
return "utf-8";
}
QCString latexLanguageSupportCommand() QCString latexLanguageSupportCommand()
{ return "\\usepackage[croatian]{babel}\n"; } { return "\\usepackage[croatian]{babel}\n"; }
QCString trRelatedFunctions() QCString trRelatedFunctions()
...@@ -265,8 +261,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2 ...@@ -265,8 +261,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2
QCString trDefines() QCString trDefines()
{ return "Definicije"; } { return "Definicije"; }
QCString trFuncProtos()
{ return "Prototipi funkcija"; }
QCString trTypedefs() QCString trTypedefs()
{ return "Typedef-ovi"; } { return "Typedef-ovi"; }
QCString trEnumerations() QCString trEnumerations()
...@@ -279,8 +273,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2 ...@@ -279,8 +273,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2
{ return "Vrijednosti enumeracija"; } { return "Vrijednosti enumeracija"; }
QCString trDefineDocumentation() QCString trDefineDocumentation()
{ return "Dokumentacija definicija"; } { return "Dokumentacija definicija"; }
QCString trFunctionPrototypeDocumentation()
{ return "Dokumentacija prototipa funkcije"; }
QCString trTypedefDocumentation() QCString trTypedefDocumentation()
{ return "Dokumentacija typedef-a"; } { return "Dokumentacija typedef-a"; }
QCString trEnumerationTypeDocumentation() QCString trEnumerationTypeDocumentation()
...@@ -298,10 +290,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2 ...@@ -298,10 +290,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2
result+=" generator: "; result+=" generator: ";
return result; return result;
} }
QCString trWrittenBy()
{
return "napisao ";
}
QCString trClassDiagram(const char *clName) QCString trClassDiagram(const char *clName)
{ {
return QCString("Dijagram klasa za ")+clName; return QCString("Dijagram klasa za ")+clName;
...@@ -523,12 +511,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2 ...@@ -523,12 +511,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
QCString trAlphabeticalList()
{ return "Abecedni popis"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -816,15 +798,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2 ...@@ -816,15 +798,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2
} }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP metode";
}
//////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1131,14 +1104,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2 ...@@ -1131,14 +1104,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Traži";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1504,12 +1469,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2 ...@@ -1504,12 +1469,6 @@ class TranslatorCroatian : public TranslatorAdapter_1_8_2
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Graf povezanih direktorija za "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -58,12 +58,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6 ...@@ -58,12 +58,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6
"\\usepackage[magyar]{babel}\n"; "\\usepackage[magyar]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "iso-8859-2";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -404,12 +398,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6 ...@@ -404,12 +398,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6
virtual QCString trDefines() virtual QCString trDefines()
{ return "Makródefiníciók"; } { return "Makródefiníciók"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Függvény-prototípusok"; }
/*! 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
*/ */
...@@ -446,12 +434,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6 ...@@ -446,12 +434,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Makródefiníciók dokumentációja"; } { return "Makródefiníciók dokumentációja"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Függvény-prototípusok dokumentációja"; }
/*! 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
*/ */
...@@ -501,12 +483,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6 ...@@ -501,12 +483,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6
result+=(QCString)" Készült: "+date+" Készítette: "; result+=(QCString)" Készült: "+date+" Készítette: ";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return " melyet írt ";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -770,12 +746,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6 ...@@ -770,12 +746,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Betűrendes lista"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1072,16 +1042,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6 ...@@ -1072,16 +1042,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6
return "Tesztlista"; return "Tesztlista";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP tagfüggvények";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1425,14 +1385,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6 ...@@ -1425,14 +1385,6 @@ class TranslatorHungarian : public TranslatorAdapter_1_4_6
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Keresési kulcs";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -58,12 +58,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0 ...@@ -58,12 +58,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0
return "\\usepackage[bahasa]{babel}"; return "\\usepackage[bahasa]{babel}";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -405,12 +399,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0 ...@@ -405,12 +399,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Makro Definisi"; } { return "Makro Definisi"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Prototipe Fungsi"; }
/*! 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
*/ */
...@@ -447,12 +435,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0 ...@@ -447,12 +435,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Dokumentasi Makro Definisi"; } { return "Dokumentasi Makro Definisi"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Dokumentasi Prototipe Fungsi"; }
/*! 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
*/ */
...@@ -502,12 +484,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0 ...@@ -502,12 +484,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0
result+=(QCString)" oleh"; result+=(QCString)" oleh";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "ditulis oleh";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -771,12 +747,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0 ...@@ -771,12 +747,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Daftar Berdasarkan Abjad"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1075,16 +1045,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0 ...@@ -1075,16 +1045,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0
return "Daftar Tes"; return "Daftar Tes";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Fungsi Anggota: DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1428,14 +1388,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0 ...@@ -1428,14 +1388,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Cari";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1799,12 +1751,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0 ...@@ -1799,12 +1751,6 @@ class TranslatorIndonesian : public TranslatorAdapter_1_8_0
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Bagan dependensi direktori untuk "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -108,12 +108,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2 ...@@ -108,12 +108,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2
return "\\usepackage[italian]{babel}\n"; return "\\usepackage[italian]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "UTF-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -433,12 +427,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2 ...@@ -433,12 +427,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2
QCString trDefines() QCString trDefines()
{ return "Definizioni"; } { return "Definizioni"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
QCString trFuncProtos()
{ return "Prototipi delle funzioni"; }
/*! 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
*/ */
...@@ -475,12 +463,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2 ...@@ -475,12 +463,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2
QCString trDefineDocumentation() QCString trDefineDocumentation()
{ return "Documentazione delle definizioni"; } { return "Documentazione delle definizioni"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
QCString trFunctionPrototypeDocumentation()
{ return "Documentazione dei prototipi delle funzioni"; }
/*! 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
*/ */
...@@ -530,12 +512,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2 ...@@ -530,12 +512,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2
result+=(QCString)" da"; result+=(QCString)" da";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
QCString trWrittenBy()
{
return "scritto da";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
QCString trClassDiagram(const char *clName) QCString trClassDiagram(const char *clName)
...@@ -803,12 +779,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2 ...@@ -803,12 +779,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
QCString trAlphabeticalList()
{ return "Lista in ordine alfabetico";}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1102,16 +1072,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2 ...@@ -1102,16 +1072,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2
return "Lista dei test"; return "Lista dei test";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Metodi DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1427,14 +1387,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2 ...@@ -1427,14 +1387,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Cerca";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1801,12 +1753,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2 ...@@ -1801,12 +1753,6 @@ class TranslatorItalian : public TranslatorAdapter_1_8_2
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Grafo di dipendenza delle directory per "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -38,18 +38,6 @@ class TranslatorJapaneseEn : public TranslatorEnglish ...@@ -38,18 +38,6 @@ class TranslatorJapaneseEn : public TranslatorEnglish
{ {
return "platex"; return "platex";
} }
/*! returns the name of the package that is included by LaTeX */
virtual QCString idLanguageCharset()
{
//if (Config_getBool("USE_WINDOWS_ENCODING"))
//{
// return "Shift_JIS";
//}
//else
//{
return "euc-jp";
//}
}
virtual QCString trRTFansicp() virtual QCString trRTFansicp()
{ {
return "932"; return "932";
......
...@@ -37,15 +37,11 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0 ...@@ -37,15 +37,11 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0
public: public:
virtual QCString idLanguage() virtual QCString idLanguage()
{ return "japanese"; } { return "japanese"; }
virtual QCString latexLanguageSupportCommand() virtual QCString latexLanguageSupportCommand()
{ {
return ""; return "";
} }
/*! returns the name of the package that is included by LaTeX */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
virtual QCString trRelatedFunctions() virtual QCString trRelatedFunctions()
...@@ -377,12 +373,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0 ...@@ -377,12 +373,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "マクロ定義"; } { return "マクロ定義"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "関数プロトタイプ"; }
/*! 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
*/ */
...@@ -418,12 +408,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0 ...@@ -418,12 +408,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "マクロ定義"; } { return "マクロ定義"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "関数プロトタイプ"; }
/*! 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
*/ */
...@@ -472,12 +456,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0 ...@@ -472,12 +456,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0
result+=(QCString)date+"に生成されました。"; result+=(QCString)date+"に生成されました。";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "作者";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -744,12 +722,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0 ...@@ -744,12 +722,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "アルファベット順一覧"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1048,16 +1020,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0 ...@@ -1048,16 +1020,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0
return "テスト一覧"; return "テスト一覧";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOPメソッド";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1405,14 +1367,6 @@ class TranslatorJapanese : public TranslatorAdapter_1_6_0 ...@@ -1405,14 +1367,6 @@ class TranslatorJapanese : 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
* of each page before the field where one can enter the text to search
* for.
*/
virtual QCString trSearchForIndex()
{
return "検索";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -37,11 +37,6 @@ class TranslatorKoreanEn : public TranslatorEnglish ...@@ -37,11 +37,6 @@ class TranslatorKoreanEn : public TranslatorEnglish
{ {
return "\\usepackage{hfont}\n"; return "\\usepackage{hfont}\n";
} }
/*! returns the name of the package that is included by LaTeX */
virtual QCString idLanguageCharset()
{
return "euc-kr";
}
virtual QCString trRTFansicp() virtual QCString trRTFansicp()
{ {
return "949"; return "949";
......
...@@ -89,12 +89,6 @@ class TranslatorKorean : public Translator ...@@ -89,12 +89,6 @@ class TranslatorKorean : public Translator
return "\\usepackage{hfont}\n"; return "\\usepackage{hfont}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -443,12 +437,6 @@ class TranslatorKorean : public Translator ...@@ -443,12 +437,6 @@ class TranslatorKorean : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "매크로"; } { return "매크로"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "함수 원형"; }
/*! 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
*/ */
...@@ -485,12 +473,6 @@ class TranslatorKorean : public Translator ...@@ -485,12 +473,6 @@ class TranslatorKorean : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "매크로 문서화"; } { return "매크로 문서화"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "함수 원형 문서화"; }
/*! 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
*/ */
...@@ -540,12 +522,6 @@ class TranslatorKorean : public Translator ...@@ -540,12 +522,6 @@ class TranslatorKorean : public Translator
result+=(QCString)", 생성자 : "; result+=(QCString)", 생성자 : ";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "작성자 : ";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -809,12 +785,6 @@ class TranslatorKorean : public Translator ...@@ -809,12 +785,6 @@ class TranslatorKorean : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "알파벳순 목록"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1108,16 +1078,6 @@ class TranslatorKorean : public Translator ...@@ -1108,16 +1078,6 @@ class TranslatorKorean : public Translator
return "테스트 목록"; return "테스트 목록";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP 멤버 함수";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1461,14 +1421,6 @@ class TranslatorKorean : public Translator ...@@ -1461,14 +1421,6 @@ class TranslatorKorean : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "검색";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1834,12 +1786,6 @@ class TranslatorKorean : public Translator ...@@ -1834,12 +1786,6 @@ class TranslatorKorean : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return QCString(name) + "에 대한 디렉토리 의존 그래프";
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -65,12 +65,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6 ...@@ -65,12 +65,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6
"\\usepackage[lithuanian]{babel}\n"; "\\usepackage[lithuanian]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -413,12 +407,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6 ...@@ -413,12 +407,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6
virtual QCString trDefines() virtual QCString trDefines()
{ return "Apibrėžimai"; } { return "Apibrėžimai"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Funkcijų Prototipai"; }
/*! 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
*/ */
...@@ -455,12 +443,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6 ...@@ -455,12 +443,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Apibrėžimų Dokumentacija"; } { return "Apibrėžimų Dokumentacija"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Funkcijų Prototipų Dokumentacija"; }
/*! 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
*/ */
...@@ -510,12 +492,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6 ...@@ -510,12 +492,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6
result+=(QCString)" ";/*FIXME*/ result+=(QCString)" ";/*FIXME*/
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "parašyta";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -777,12 +753,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6 ...@@ -777,12 +753,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Abėcėlinis Sąrašas"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1083,16 +1053,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6 ...@@ -1083,16 +1053,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6
return "Testo Sąrašas"; return "Testo Sąrašas";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Metodai";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1442,14 +1402,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6 ...@@ -1442,14 +1402,6 @@ class TranslatorLithuanian : public TranslatorAdapter_1_4_6
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Ieškoti";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -80,13 +80,6 @@ class TranslatorLatvian : public Translator ...@@ -80,13 +80,6 @@ class TranslatorLatvian : public Translator
"\\usepackage[latvian]{babel}\n"; "\\usepackage[latvian]{babel}\n";
} }
/*! return the language charset. This will be used
when transcoding the translatable strings in this file to UTF-8 */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -429,12 +422,6 @@ class TranslatorLatvian : public Translator ...@@ -429,12 +422,6 @@ class TranslatorLatvian : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "Makro"; } { return "Makro"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Funkciju prototipi"; }
/*! 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
*/ */
...@@ -471,12 +458,6 @@ class TranslatorLatvian : public Translator ...@@ -471,12 +458,6 @@ class TranslatorLatvian : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Makro definīcijas dokumentācija"; } { return "Makro definīcijas dokumentācija"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Funkcijas prototipu dokumentācija"; }
/*! 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
*/ */
...@@ -526,12 +507,6 @@ class TranslatorLatvian : public Translator ...@@ -526,12 +507,6 @@ class TranslatorLatvian : public Translator
result+=(QCString)" ar"; result+=(QCString)" ar";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "uzrakstījis";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -791,12 +766,6 @@ class TranslatorLatvian : public Translator ...@@ -791,12 +766,6 @@ class TranslatorLatvian : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Alfabētiskais saraksts"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1099,16 +1068,6 @@ class TranslatorLatvian : public Translator ...@@ -1099,16 +1068,6 @@ class TranslatorLatvian : public Translator
return "Testu saraksts"; return "Testu saraksts";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP elementu funkcijas";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1452,14 +1411,6 @@ class TranslatorLatvian : public Translator ...@@ -1452,14 +1411,6 @@ class TranslatorLatvian : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Meklēt";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1825,12 +1776,6 @@ class TranslatorLatvian : public Translator ...@@ -1825,12 +1776,6 @@ class TranslatorLatvian : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Direktoriju atkarību grafs priekš "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -66,12 +66,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0 ...@@ -66,12 +66,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0
return "\\usepackage[macedonian]{babel}\n"; return "\\usepackage[macedonian]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "UTF-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -409,12 +403,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0 ...@@ -409,12 +403,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Дефинирања"; } { return "Дефинирања"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Прототипи на Функции"; }
/*! 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
*/ */
...@@ -451,12 +439,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0 ...@@ -451,12 +439,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Документција на Дефиниции"; } { return "Документција на Дефиниции"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Документација на Прототип на Функции"; }
/*! 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
*/ */
...@@ -506,12 +488,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0 ...@@ -506,12 +488,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0
result+=(QCString)" од"; result+=(QCString)" од";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "напишано од";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -774,12 +750,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0 ...@@ -774,12 +750,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Азбучен Список"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1079,16 +1049,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0 ...@@ -1079,16 +1049,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0
return "Листа на Тестови"; return "Листа на Тестови";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Функции Членови";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1432,14 +1392,6 @@ class TranslatorMacedonian : public TranslatorAdapter_1_6_0 ...@@ -1432,14 +1392,6 @@ class TranslatorMacedonian : 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
* of each page before the field where one can enter the text to search
* for.
*/
virtual QCString trSearchForIndex()
{
return "Пребарај";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -38,12 +38,6 @@ class TranslatorDutch : public Translator ...@@ -38,12 +38,6 @@ class TranslatorDutch : public Translator
{ {
return "\\usepackage[dutch]{babel}\n"; return "\\usepackage[dutch]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
QCString idLanguageCharset()
{
return "iso-8859-1";
}
QCString trRelatedFunctions() QCString trRelatedFunctions()
{ return "Gerelateerde functies"; } { return "Gerelateerde functies"; }
QCString trRelatedSubscript() QCString trRelatedSubscript()
...@@ -163,8 +157,6 @@ class TranslatorDutch : public Translator ...@@ -163,8 +157,6 @@ class TranslatorDutch : public Translator
QCString trDefines() QCString trDefines()
{ return "Macros"; } { return "Macros"; }
QCString trFuncProtos()
{ return "Functie Prototypes"; }
QCString trTypedefs() QCString trTypedefs()
{ return "Typedefs"; } { return "Typedefs"; }
QCString trEnumerations() QCString trEnumerations()
...@@ -177,8 +169,6 @@ class TranslatorDutch : public Translator ...@@ -177,8 +169,6 @@ class TranslatorDutch : public Translator
{ return "Enumeratie waarden"; } { return "Enumeratie waarden"; }
QCString trDefineDocumentation() QCString trDefineDocumentation()
{ return "Documentatie van macro's"; } { return "Documentatie van macro's"; }
QCString trFunctionPrototypeDocumentation()
{ return "Documentatie van functie Prototypes"; }
QCString trTypedefDocumentation() QCString trTypedefDocumentation()
{ return "Documentatie van typedefs"; } { return "Documentatie van typedefs"; }
QCString trEnumerationTypeDocumentation() QCString trEnumerationTypeDocumentation()
...@@ -198,10 +188,6 @@ class TranslatorDutch : public Translator ...@@ -198,10 +188,6 @@ class TranslatorDutch : public Translator
result+=(QCString)" door"; result+=(QCString)" door";
return result; return result;
} }
QCString trWrittenBy()
{
return "geschreven door";
}
QCString trClassDiagram(const char *clName) QCString trClassDiagram(const char *clName)
{ {
return (QCString)"Klasse diagram voor "+clName; return (QCString)"Klasse diagram voor "+clName;
...@@ -426,12 +412,6 @@ class TranslatorDutch : public Translator ...@@ -426,12 +412,6 @@ class TranslatorDutch : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
QCString trAlphabeticalList()
{ return "Alphabetical List"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -723,16 +703,6 @@ class TranslatorDutch : public Translator ...@@ -723,16 +703,6 @@ class TranslatorDutch : public Translator
return "Test Lijst"; return "Test Lijst";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
QCString trDCOPMethods()
{
return "DCOP Methoden";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1063,13 +1033,6 @@ class TranslatorDutch : public Translator ...@@ -1063,13 +1033,6 @@ class TranslatorDutch : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! When the search engine is enabled this text is put in the index
* of each page before the search field.
*/
virtual QCString trSearchForIndex()
{
return "Zoek naar";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1416,12 +1379,6 @@ class TranslatorDutch : public Translator ...@@ -1416,12 +1379,6 @@ class TranslatorDutch : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Folder afhankelijkheidsgraaf voor "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -76,12 +76,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6 ...@@ -76,12 +76,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6
"\\usepackage[T1]{fontenc}\n"; "\\usepackage[T1]{fontenc}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -438,12 +432,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6 ...@@ -438,12 +432,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6
virtual QCString trDefines() virtual QCString trDefines()
{ return "Definisjoner"; } { return "Definisjoner"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Funksjonprototyper"; }
/*! 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
*/ */
...@@ -480,12 +468,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6 ...@@ -480,12 +468,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Define-dokumentasjon"; } { return "Define-dokumentasjon"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Funksjonsprototypedokumentasjon"; }
/*! 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
*/ */
...@@ -541,12 +523,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6 ...@@ -541,12 +523,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6
result+=(QCString)" av"; result+=(QCString)" av";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "skrevet av";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -817,12 +793,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6 ...@@ -817,12 +793,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Alfabetisk Liste"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1121,16 +1091,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6 ...@@ -1121,16 +1091,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6
return "Test-liste"; return "Test-liste";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP-metoder";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.1 // new since 1.2.1
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1495,14 +1455,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6 ...@@ -1495,14 +1455,6 @@ class TranslatorNorwegian : public TranslatorAdapter_1_4_6
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Søk etter";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -48,12 +48,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2 ...@@ -48,12 +48,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2
"\\usepackage[T1]{fontenc}\n"; "\\usepackage[T1]{fontenc}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -410,12 +404,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2 ...@@ -410,12 +404,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2
QCString trDefines() QCString trDefines()
{ return "Definicje"; } { return "Definicje"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
QCString trFuncProtos()
{ return "Prototypy funkcji"; }
/*! 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
*/ */
...@@ -452,12 +440,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2 ...@@ -452,12 +440,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2
QCString trDefineDocumentation() QCString trDefineDocumentation()
{ return "Dokumentacja definicji"; } { return "Dokumentacja definicji"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
QCString trFunctionPrototypeDocumentation()
{ return "Dokumentacja prototypów funkcji"; }
/*! 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
*/ */
...@@ -507,12 +489,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2 ...@@ -507,12 +489,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2
result+=(QCString)" programem"; result+=(QCString)" programem";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
QCString trWrittenBy()
{
return "napisanym przez";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
QCString trClassDiagram(const char *clName) QCString trClassDiagram(const char *clName)
...@@ -782,12 +758,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2 ...@@ -782,12 +758,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
QCString trAlphabeticalList()
{ return "Lista alfabetyczna"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1088,15 +1058,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2 ...@@ -1088,15 +1058,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2
{ {
return "Lista testu"; return "Lista testu";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Metody DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
...@@ -1431,14 +1392,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2 ...@@ -1431,14 +1392,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Szukaj";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1809,12 +1762,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2 ...@@ -1809,12 +1762,6 @@ class TranslatorPolish : public TranslatorAdapter_1_8_2
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Wykres zależności katalogu dla "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -84,10 +84,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 ...@@ -84,10 +84,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0
virtual QCString latexLanguageSupportCommand() virtual QCString latexLanguageSupportCommand()
{ return "Portuguese"; } { return "Portuguese"; }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{ return "utf-8"; }
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -418,12 +414,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 ...@@ -418,12 +414,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0
QCString trDefines() QCString trDefines()
{ return "Macros"; } { return "Macros"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
QCString trFuncProtos()
{ return "Protótipos de funções"; }
/*! 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
*/ */
...@@ -460,12 +450,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 ...@@ -460,12 +450,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0
QCString trDefineDocumentation() QCString trDefineDocumentation()
{ return "Documentação das macros"; } { return "Documentação das macros"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
QCString trFunctionPrototypeDocumentation()
{ return "Documentação dos protótipos de funções"; }
/*! 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
*/ */
...@@ -515,12 +499,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 ...@@ -515,12 +499,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0
result+=(QCString)" por"; result+=(QCString)" por";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
QCString trWrittenBy()
{
return "escrito por";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
QCString trClassDiagram(const char *clName) QCString trClassDiagram(const char *clName)
...@@ -787,15 +765,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 ...@@ -787,15 +765,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{
return "Lista alfabética";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1088,16 +1057,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 ...@@ -1088,16 +1057,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0
return "Lista de teste"; return "Lista de teste";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Métodos DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1441,14 +1400,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 ...@@ -1441,14 +1400,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0
// new since 1.3.3 - Based on the Brazilian Portuguese Translation // new since 1.3.3 - Based on the Brazilian Portuguese Translation
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Procurar por";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1820,12 +1771,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0 ...@@ -1820,12 +1771,6 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_0
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Grafo de dependência de diretórios para " + name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -75,12 +75,6 @@ class TranslatorRomanian : public Translator ...@@ -75,12 +75,6 @@ class TranslatorRomanian : public Translator
return "\\usepackage[romanian]{babel}\n"; return "\\usepackage[romanian]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -435,12 +429,6 @@ class TranslatorRomanian : public Translator ...@@ -435,12 +429,6 @@ class TranslatorRomanian : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "Definiţii"; } { return "Definiţii"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Prototipuri de funcţii"; }
/*! 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
*/ */
...@@ -477,12 +465,6 @@ class TranslatorRomanian : public Translator ...@@ -477,12 +465,6 @@ class TranslatorRomanian : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Documentaţia definiţiilor"; } { return "Documentaţia definiţiilor"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Documentaţia prototipurilor de funcţii"; }
/*! 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
*/ */
...@@ -533,12 +515,6 @@ class TranslatorRomanian : public Translator ...@@ -533,12 +515,6 @@ class TranslatorRomanian : public Translator
result+=(QCString)" de către"; result+=(QCString)" de către";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "scris de";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -803,12 +779,6 @@ class TranslatorRomanian : public Translator ...@@ -803,12 +779,6 @@ class TranslatorRomanian : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Listă Alfabetică"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1105,16 +1075,6 @@ class TranslatorRomanian : public Translator ...@@ -1105,16 +1075,6 @@ class TranslatorRomanian : public Translator
return "Listă de teste"; return "Listă de teste";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Metode DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1458,14 +1418,6 @@ class TranslatorRomanian : public Translator ...@@ -1458,14 +1418,6 @@ class TranslatorRomanian : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Caută";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1835,12 +1787,6 @@ class TranslatorRomanian : public Translator ...@@ -1835,12 +1787,6 @@ class TranslatorRomanian : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Grafic de dependență a directoarelor pentru "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -39,12 +39,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5 ...@@ -39,12 +39,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5
return "\\usepackage[T2A]{fontenc}\n\\usepackage[russian]{babel}\n"; return "\\usepackage[T2A]{fontenc}\n\\usepackage[russian]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -374,12 +368,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5 ...@@ -374,12 +368,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5
virtual QCString trDefines() virtual QCString trDefines()
{ return "Макросы"; } { return "Макросы"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Прототипы функций"; }
/*! 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
*/ */
...@@ -416,12 +404,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5 ...@@ -416,12 +404,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Макросы"; } { return "Макросы"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Прототипы функций"; }
/*! 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
*/ */
...@@ -476,12 +458,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5 ...@@ -476,12 +458,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5
result+=". Создано системой"; result+=". Создано системой";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "Автор:";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -775,12 +751,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5 ...@@ -775,12 +751,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Алфавитный указатель"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1082,16 +1052,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5 ...@@ -1082,16 +1052,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5
return "Список тестов"; return "Список тестов";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Методы";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1413,14 +1373,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5 ...@@ -1413,14 +1373,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Поиск";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1798,12 +1750,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5 ...@@ -1798,12 +1750,6 @@ class TranslatorRussian : public TranslatorAdapter_1_7_5
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Диаграмма каталогов для "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -74,12 +74,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0 ...@@ -74,12 +74,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0
return ""; return "";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -422,12 +416,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0 ...@@ -422,12 +416,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Дефиниције"; } { return "Дефиниције"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Декларације функција"; }
/*! 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
*/ */
...@@ -464,12 +452,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0 ...@@ -464,12 +452,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Документација дефиниције"; } { return "Документација дефиниције"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Документација декларације функције"; }
/*! 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
*/ */
...@@ -519,12 +501,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0 ...@@ -519,12 +501,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0
result+=(QCString)" помоћу"; result+=(QCString)" помоћу";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "написао";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -804,12 +780,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0 ...@@ -804,12 +780,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Абецедни списак"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1110,16 +1080,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0 ...@@ -1110,16 +1080,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0
return "Списак тестова"; return "Списак тестова";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP функције чланице";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1463,14 +1423,6 @@ class TranslatorSerbianCyrilic : public TranslatorAdapter_1_6_0 ...@@ -1463,14 +1423,6 @@ class TranslatorSerbianCyrilic : 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
* of each page before the field where one can enter the text to search
* for.
*/
virtual QCString trSearchForIndex()
{
return "Тражим";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -38,10 +38,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6 ...@@ -38,10 +38,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6
{ {
return "\\usepackage[slovene]{babel}\n\\usepackage[T1]{fontenc}\n"; return "\\usepackage[slovene]{babel}\n\\usepackage[T1]{fontenc}\n";
} }
QCString idLanguageCharset()
{
return "utf-8";
}
QCString trRelatedFunctions() QCString trRelatedFunctions()
{ return "Povezane funkcije"; } { return "Povezane funkcije"; }
QCString trRelatedSubscript() QCString trRelatedSubscript()
...@@ -168,8 +164,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6 ...@@ -168,8 +164,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6
QCString trDefines() QCString trDefines()
{ return "Makro deklaracije"; } { return "Makro deklaracije"; }
QCString trFuncProtos()
{ return "Prototipi funkcij"; }
QCString trTypedefs() QCString trTypedefs()
{ return "Uporabniško definirani tipi"; } { return "Uporabniško definirani tipi"; }
QCString trEnumerations() QCString trEnumerations()
...@@ -182,8 +176,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6 ...@@ -182,8 +176,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6
{ return "Vrednosti naštevnih tipov"; } { return "Vrednosti naštevnih tipov"; }
QCString trDefineDocumentation() QCString trDefineDocumentation()
{ return "Opis makro definicije"; } { return "Opis makro definicije"; }
QCString trFunctionPrototypeDocumentation()
{ return "Opis prototipa funkcije"; }
QCString trTypedefDocumentation() QCString trTypedefDocumentation()
{ return "Opis uporabniško definiranega tipa"; } { return "Opis uporabniško definiranega tipa"; }
QCString trEnumerationTypeDocumentation() QCString trEnumerationTypeDocumentation()
...@@ -201,10 +193,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6 ...@@ -201,10 +193,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6
result+=(QCString)" generator: "; result+=(QCString)" generator: ";
return result; return result;
} }
QCString trWrittenBy()
{
return "napisal ";
}
QCString trClassDiagram(const char *clName) QCString trClassDiagram(const char *clName)
{ {
return (QCString)"Diagram razredov za "+clName; return (QCString)"Diagram razredov za "+clName;
...@@ -434,12 +422,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6 ...@@ -434,12 +422,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
QCString trAlphabeticalList()
{ return "abecedni seznam"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -746,16 +728,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6 ...@@ -746,16 +728,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6
return "Test List"; return "Test List";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP metode";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1120,14 +1092,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6 ...@@ -1120,14 +1092,6 @@ class TranslatorSlovene : public TranslatorAdapter_1_4_6
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Išči";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -43,12 +43,6 @@ class TranslatorSlovak : public Translator ...@@ -43,12 +43,6 @@ class TranslatorSlovak : public Translator
virtual QCString latexLanguageSupportCommand() virtual QCString latexLanguageSupportCommand()
{ return "\\usepackage[slovak]{babel}\n"; } { return "\\usepackage[slovak]{babel}\n"; }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -396,12 +390,6 @@ class TranslatorSlovak : public Translator ...@@ -396,12 +390,6 @@ class TranslatorSlovak : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "Definícia makier"; } { return "Definícia makier"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Prototypy"; }
/*! 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
*/ */
...@@ -438,12 +426,6 @@ class TranslatorSlovak : public Translator ...@@ -438,12 +426,6 @@ class TranslatorSlovak : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Dokumentácia k definíciám makier"; } { return "Dokumentácia k definíciám makier"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Dokumentácia prototypov"; }
/*! 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
*/ */
...@@ -494,13 +476,6 @@ class TranslatorSlovak : public Translator ...@@ -494,13 +476,6 @@ class TranslatorSlovak : public Translator
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return " -- autor ";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
{ {
...@@ -775,12 +750,6 @@ class TranslatorSlovak : public Translator ...@@ -775,12 +750,6 @@ class TranslatorSlovak : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Register tried"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1087,16 +1056,6 @@ class TranslatorSlovak : public Translator ...@@ -1087,16 +1056,6 @@ class TranslatorSlovak : public Translator
return "Zoznam testov"; return "Zoznam testov";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "Metódy DCOP";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1407,13 +1366,6 @@ class TranslatorSlovak : public Translator ...@@ -1407,13 +1366,6 @@ class TranslatorSlovak : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! When the search engine is enabled this text is put in the index
* of each page before the search field.
*/
virtual QCString trSearchForIndex()
{
return "Vyhľadať";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1788,12 +1740,6 @@ class TranslatorSlovak : public Translator ...@@ -1788,12 +1740,6 @@ class TranslatorSlovak : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Graf závislosti adresárov pre "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -59,12 +59,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0 ...@@ -59,12 +59,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0
return result; return result;
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -407,12 +401,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0 ...@@ -407,12 +401,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Makro zamene"; } { return "Makro zamene"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Deklaracije funkcija"; }
/*! 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
*/ */
...@@ -449,12 +437,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0 ...@@ -449,12 +437,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Dokumentacija makro zamene"; } { return "Dokumentacija makro zamene"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Dokumentacija deklaracije funkcije"; }
/*! 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
*/ */
...@@ -504,12 +486,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0 ...@@ -504,12 +486,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0
result+=(QCString)" upotrebom "; result+=(QCString)" upotrebom ";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "napisao";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -772,12 +748,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0 ...@@ -772,12 +748,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Abecedni spisak"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1077,16 +1047,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0 ...@@ -1077,16 +1047,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0
return "Spisak testova"; return "Spisak testova";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP metode";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1431,14 +1391,6 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0 ...@@ -1431,14 +1391,6 @@ class TranslatorSerbian : 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
* of each page before the field where one can enter the text to search
* for.
*/
virtual QCString trSearchForIndex()
{
return "Traži";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -95,12 +95,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0 ...@@ -95,12 +95,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0
return "\\usepackage[swedish]{babel}\n"; return "\\usepackage[swedish]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
virtual QCString trRelatedFunctions() virtual QCString trRelatedFunctions()
{ return "Besläktade funktioner"; } { return "Besläktade funktioner"; }
...@@ -376,8 +370,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0 ...@@ -376,8 +370,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0
virtual QCString trDefines() virtual QCString trDefines()
{ return "Definitioner"; } { return "Definitioner"; }
virtual QCString trFuncProtos()
{ return "Funktionsprototyper"; }
virtual QCString trTypedefs() virtual QCString trTypedefs()
{ return "Typdefinitioner"; } { return "Typdefinitioner"; }
virtual QCString trEnumerations() virtual QCString trEnumerations()
...@@ -393,9 +385,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0 ...@@ -393,9 +385,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Dokumentation över definitioner"; } { return "Dokumentation över definitioner"; }
virtual QCString trFunctionPrototypeDocumentation()
{ return "Dokumentation över funktionsprototyper"; }
virtual QCString trTypedefDocumentation() virtual QCString trTypedefDocumentation()
{ return "Dokumentation över typdefinitioner"; } { return "Dokumentation över typdefinitioner"; }
...@@ -431,11 +420,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0 ...@@ -431,11 +420,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0
return result; return result;
} }
virtual QCString trWrittenBy()
{
return "skriven av";
}
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
{ {
return (QCString)"Klassdiagram för "+clName; return (QCString)"Klassdiagram för "+clName;
...@@ -658,13 +642,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0 ...@@ -658,13 +642,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{
return "Alfabetisk lista";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -978,16 +955,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0 ...@@ -978,16 +955,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0
return "Testlista"; return "Testlista";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP metoder";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1314,14 +1281,6 @@ class TranslatorSwedish : public TranslatorAdapter_1_6_0 ...@@ -1314,14 +1281,6 @@ class TranslatorSwedish : 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
* of each page before the field where one can enter the text to search
* for.
*/
virtual QCString trSearchForIndex()
{
return "Sök efter";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
......
...@@ -74,12 +74,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5 ...@@ -74,12 +74,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5
return ""; return "";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related fonksiyonlar. */ /*! used in the compound documentation before a list of related fonksiyonlar. */
...@@ -422,12 +416,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5 ...@@ -422,12 +416,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5
virtual QCString trDefines() virtual QCString trDefines()
{ return "Makrolar"; } { return "Makrolar"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Fonksiyon Prototipleri"; }
/*! 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
*/ */
...@@ -464,12 +452,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5 ...@@ -464,12 +452,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Makro Dokümantasyonu"; } { return "Makro Dokümantasyonu"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Fonksiyon Prototip Dokümantasyonu"; }
/*! 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
*/ */
...@@ -519,12 +501,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5 ...@@ -519,12 +501,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5
result+=(QCString)" üreten: "; result+=(QCString)" üreten: ";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "yazan";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -788,12 +764,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5 ...@@ -788,12 +764,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Alfabetik Liste"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1093,16 +1063,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5 ...@@ -1093,16 +1063,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5
return "Test Listesi"; return "Test Listesi";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Üye Fonksiyonlar";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1446,14 +1406,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5 ...@@ -1446,14 +1406,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Arama yapılacak metin";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1819,12 +1771,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5 ...@@ -1819,12 +1771,6 @@ class TranslatorTurkish : public TranslatorAdapter_1_7_5
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)(name) + (QCString)" için dizin bağımlılık grafiği";
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -75,12 +75,6 @@ class TranslatorChinesetraditional : public Translator ...@@ -75,12 +75,6 @@ class TranslatorChinesetraditional : public Translator
return ""; return "";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -423,12 +417,6 @@ class TranslatorChinesetraditional : public Translator ...@@ -423,12 +417,6 @@ class TranslatorChinesetraditional : public Translator
virtual QCString trDefines() virtual QCString trDefines()
{ return "定義"; } { return "定義"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "函式原型"; }
/*! 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
*/ */
...@@ -465,12 +453,6 @@ class TranslatorChinesetraditional : public Translator ...@@ -465,12 +453,6 @@ class TranslatorChinesetraditional : public Translator
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "定義巨集說明文件"; } { return "定義巨集說明文件"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "函式原型說明文件"; }
/*! 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
*/ */
...@@ -526,12 +508,6 @@ class TranslatorChinesetraditional : public Translator ...@@ -526,12 +508,6 @@ class TranslatorChinesetraditional : public Translator
result+=(QCString)", 產生器:"; result+=(QCString)", 產生器:";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "撰寫人:";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -794,12 +770,6 @@ class TranslatorChinesetraditional : public Translator ...@@ -794,12 +770,6 @@ class TranslatorChinesetraditional : public Translator
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "字母順序列表"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1100,16 +1070,6 @@ class TranslatorChinesetraditional : public Translator ...@@ -1100,16 +1070,6 @@ class TranslatorChinesetraditional : public Translator
return "測試項目列表"; return "測試項目列表";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP方法";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1438,14 +1398,6 @@ class TranslatorChinesetraditional : public Translator ...@@ -1438,14 +1398,6 @@ class TranslatorChinesetraditional : public Translator
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "搜尋索引";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1796,12 +1748,6 @@ class TranslatorChinesetraditional : public Translator ...@@ -1796,12 +1748,6 @@ class TranslatorChinesetraditional : public Translator
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)name+"的目錄關連圖";
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
...@@ -32,12 +32,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4 ...@@ -32,12 +32,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4
return "\\usepackage[T2A]{fontenc}\n\\usepackage[ukrainian]{babel}\n"; return "\\usepackage[T2A]{fontenc}\n\\usepackage[ukrainian]{babel}\n";
} }
/*! return the language charset. This will be used for the HTML output */
virtual QCString idLanguageCharset()
{
return "utf-8";
}
// --- Language translation methods ------------------- // --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */ /*! used in the compound documentation before a list of related functions. */
...@@ -366,12 +360,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4 ...@@ -366,12 +360,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4
virtual QCString trDefines() virtual QCString trDefines()
{ return "Макровизначення"; } { return "Макровизначення"; }
/*! This is used in the documentation of a file as a header before the
* list of function prototypes
*/
virtual QCString trFuncProtos()
{ return "Прототипи фукцій"; }
/*! 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
*/ */
...@@ -408,12 +396,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4 ...@@ -408,12 +396,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4
virtual QCString trDefineDocumentation() virtual QCString trDefineDocumentation()
{ return "Опис макровизначень"; } { return "Опис макровизначень"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for function prototypes
*/
virtual QCString trFunctionPrototypeDocumentation()
{ return "Опис прототипів функцій"; }
/*! 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
*/ */
...@@ -468,12 +450,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4 ...@@ -468,12 +450,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4
result+=" системою"; result+=" системою";
return result; return result;
} }
/*! This is part of the sentence used in the standard footer of each page.
*/
virtual QCString trWrittenBy()
{
return "Автор:";
}
/*! this text is put before a class diagram */ /*! this text is put before a class diagram */
virtual QCString trClassDiagram(const char *clName) virtual QCString trClassDiagram(const char *clName)
...@@ -765,12 +741,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4 ...@@ -765,12 +741,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4
return result; return result;
} }
/*! This is in the (quick) index as a link to the alphabetical compound
* list.
*/
virtual QCString trAlphabeticalList()
{ return "Алфавітний покажчик"; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 0.49-990901 // new since 0.49-990901
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1068,16 +1038,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4 ...@@ -1068,16 +1038,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4
return "Список тестів"; return "Список тестів";
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////
/*! Used as a section header for KDE-2 IDL methods */
virtual QCString trDCOPMethods()
{
return "DCOP Методи";
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// new since 1.2.2 // new since 1.2.2
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
...@@ -1404,14 +1364,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4 ...@@ -1404,14 +1364,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4
// new since 1.3.3 // new since 1.3.3
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! 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
* for.
*/
virtual QCString trSearchForIndex()
{
return "Шукати";
}
/*! This string is used as the title for the page listing the search /*! This string is used as the title for the page listing the search
* results. * results.
*/ */
...@@ -1795,12 +1747,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4 ...@@ -1795,12 +1747,6 @@ class TranslatorUkrainian : public TranslatorAdapter_1_8_4
// new since 1.6.3 (missing items for the directory pages) // new since 1.6.3 (missing items for the directory pages)
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
/*! introduction text for the directory dependency graph */
virtual QCString trDirDependency(const char *name)
{
return (QCString)"Граф залежностей каталогу для "+name;
}
/*! when clicking a directory dependency label, a page with a /*! when clicking a directory dependency label, a page with a
* table is shown. The heading for the first column mentions the * table is shown. The heading for the first column mentions the
* source file that has a relation to another file. * source file that has a relation to another file.
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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