/******************************************************************************
*
*
*
* Copyright (C) 1997-2015 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
* Documents produced by Doxygen are derivative works derived from the
* input used in their production; they are not affected by this license.
*
*/
#ifndef TRANSLATOR_CZ_H
#define TRANSLATOR_CZ_H
// Updates:
// --------
// 2022/08/25 - Updated for "new since 1.9.4" by: "\\usepackage[german]{babel}\n"
*
* or
* "\\usepackage{polski}\n"
* "\\usepackage[latin2]{inputenc}\n"
* "\\usepackage[T1]{fontenc}\n"
*
*
* The English LaTeX does not use such commands. Because of this
* the empty string is returned in this implementation.
*/
virtual QCString latexLanguageSupportCommand()
{
return "\\usepackage[T2A]{fontenc}\n"
"\\usepackage[czech]{babel}\n"
"\\usepackage{regexpatch}\n"
"\\makeatletter\n"
"% Change the `-` delimiter to an active character\n"
"\\xpatchparametertext\\@@@cmidrule{-}{\\cA-}{}{}\n"
"\\xpatchparametertext\\@cline{-}{\\cA-}{}{}\n"
"\\makeatother\n";
}
virtual QCString trISOLang()
{
return "cs";
}
virtual QCString getLanguageString()
{
return "0x405 Czech";
}
// --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */
virtual QCString trRelatedFunctions()
{ return "Související funkce"; }
/*! subscript for the related functions. */
virtual QCString trRelatedSubscript()
{ return "(Uvedené funkce nejsou členskými funkcemi.)"; }
/*! header that is put before the detailed description of files, classes and namespaces. */
virtual QCString trDetailedDescription()
{ return "Detailní popis"; }
/*! header that is put before the list of typedefs. */
virtual QCString trMemberTypedefDocumentation()
{ return "Dokumentace členských typů"; }
/*! header that is put before the list of enumerations. */
virtual QCString trMemberEnumerationDocumentation()
{ return "Dokumentace členských výčtů"; }
/*! header that is put before the list of member functions. */
virtual QCString trMemberFunctionDocumentation()
{ return "Dokumentace členských funkcí"; }
/*! header that is put before the list of member attributes. */
virtual QCString trMemberDataDocumentation()
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
return "Dokumentace položek";
}
else
{
return "Dokumentace datových členů";
}
}
/*! this is the text of a link put after brief descriptions. */
virtual QCString trMore()
{ return "..."; }
/*! put in the class documentation */
virtual QCString trListOfAllMembers()
{ return "Seznam všech členů"; }
/*! used as the title of the "list of all members" page of a class */
virtual QCString trMemberList()
{ return "Seznam členů třídy"; }
/*! this is the first part of a sentence that is followed by a class name */
virtual QCString trThisIsTheListOfAllMembers()
{ return "Zde naleznete úplný seznam členů třídy "; }
/*! this is the remainder of the sentence after the class name */
virtual QCString trIncludingInheritedMembers()
{ return ", včetně všech zděděných členů."; }
/*! this is put at the author sections at the bottom of man pages.
* parameter s is name of the project name.
*/
virtual QCString trGeneratedAutomatically(const QCString &s)
{ QCString result="Vygenerováno automaticky programem Doxygen "
"ze zdrojových textů";
if (!s.isEmpty()) result+=" projektu "+s;
result+=".";
return result;
}
/*! put after an enum name in the list of all members */
virtual QCString trEnumName()
{ return "jméno výčtu"; }
/*! put after an enum value in the list of all members */
virtual QCString trEnumValue()
{ return "hodnota výčtu"; }
/*! put after an undocumented member in the list of all members */
virtual QCString trDefinedIn()
{ return "definován v"; }
// quick reference sections
/*! This is put above each page as a link to the list of all groups of
* compounds or files (see the \\group command).
*/
virtual QCString trModules()
{ return "Moduly"; }
/*! This is put above each page as a link to the class hierarchy */
virtual QCString trClassHierarchy()
{ return "Hierarchie tříd"; }
/*! This is put above each page as a link to the list of annotated classes */
virtual QCString trCompoundList()
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
return "Datové struktury";
}
else
{
return "Seznam tříd";
}
}
/*! This is put above each page as a link to the list of documented files */
virtual QCString trFileList()
{ return "Seznam souborů"; }
/*! This is put above each page as a link to all members of compounds. */
virtual QCString trCompoundMembers()
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
return "Datové položky";
}
else
{
return "Seznam členů tříd";
}
}
/*! This is put above each page as a link to all members of files. */
virtual QCString trFileMembers()
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
return "Globální symboly";
}
else
{
return "Symboly v souborech";
}
}
/*! This is put above each page as a link to all related pages. */
virtual QCString trRelatedPages()
{ return "Ostatní stránky"; }
/*! This is put above each page as a link to all examples. */
virtual QCString trExamples()
{ return "Příklady"; }
/*! This is put above each page as a link to the search engine. */
virtual QCString trSearch()
{ return "Hledat"; }
/*! This is an introduction to the class hierarchy. */
virtual QCString trClassHierarchyDescription()
{
if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
{
return "Zde je hierarchický seznam všech entit:";
}
else
{
return "Zde naleznete seznam, vyjadřující vztah dědičnosti tříd. "
"Je seřazen přibližně (ale ne úplně) podle abecedy:";
}
}
/*! This is an introduction to the list with all files. */
virtual QCString trFileListDescription(bool extractAll)
{
QCString result="Zde naleznete seznam všech ";
if (!extractAll) result+="dokumentovaných ";
result+="souborů se stručnými popisy:";
return result;
}
/*! This is an introduction to the annotated compound list. */
virtual QCString trCompoundListDescription()
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
return "Následující seznam obsahuje identifikace datových "
"struktur a jejich stručné popisy:";
}
else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
{
return "Následující seznam obsahuje identifikace tříd. "
"V seznamu jsou uvedeny jejich stručné popisy:";
}
else
{
return "Následující seznam obsahuje především identifikace "
"tříd, ale nacházejí se zde i další netriviální prvky, "
"jako jsou struktury (struct), unie (union) a rozhraní "
"(interface). V seznamu jsou uvedeny jejich stručné "
"popisy:";
}
}
/*! This is an introduction to the page with all class members. */
virtual QCString trCompoundMembersDescription(bool extractAll)
{
QCString result="Zde naleznete seznam všech ";
if (!extractAll)
{
result+="dokumentovaných ";
}
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
result+="položek struktur (struct) a unií (union)";
}
else
{
result+="členů tříd";
}
result+=" s odkazy na ";
if (!extractAll)
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
result+="struktury/unie, ke kterým příslušejí:";
}
else
{
result+="třídy, ke kterým příslušejí:";
}
}
else
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
result+="dokumentaci struktur/unií, ke kterým příslušejí:";
}
else
{
result+="dokumentaci tříd, ke kterým příslušejí:";
}
}
return result;
}
/*! This is an introduction to the page with all file members. */
virtual QCString trFileMembersDescription(bool extractAll)
{
QCString result="Zde naleznete seznam všech ";
if (!extractAll) result+="dokumentovaných ";
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
result+="funkcí, proměnných, maker, výčtů a definic typů (typedef) "
"s odkazy";
}
else
{
result+="symbolů, které jsou definovány na úrovni svých souborů. "
"Pro každý symbol je uveden odkaz";
}
result+=" na ";
if (extractAll)
result+="soubory, ke kterým příslušejí:";
else
result+="dokumentaci:";
return result;
}
/*! This is an introduction to the page with the list of all examples */
virtual QCString trExamplesDescription()
{ return "Zde naleznete seznam všech příkladů:"; }
/*! This is an introduction to the page with the list of related pages */
virtual QCString trRelatedPagesDescription()
{ return "Následující seznam odkazuje na další stránky projektu:"; }
/*! This is an introduction to the page with the list of class/file groups */
virtual QCString trModulesDescription()
{ return "Zde naleznete seznam všech modulů:"; }
// index titles (the project name is prepended for these)
/*! This is used in HTML as the title of index.html. */
virtual QCString trDocumentation()
{ return "Dokumentace"; }
/*! This is used in LaTeX as the title of the chapter with the
* index of all groups.
*/
virtual QCString trModuleIndex()
{ return "Rejstřík modulů"; }
/*! This is used in LaTeX as the title of the chapter with the
* class hierarchy.
*/
virtual QCString trHierarchicalIndex()
{ return "Rejstřík hierarchie"; }
/*! This is used in LaTeX as the title of the chapter with the
* annotated compound index.
*/
virtual QCString trCompoundIndex()
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
return "Rejstřík datových struktur";
}
else
{
return "Rejstřík tříd";
}
}
/*! This is used in LaTeX as the title of the chapter with the
* list of all files.
*/
virtual QCString trFileIndex()
{ return "Rejstřík souborů"; }
/*! This is used in LaTeX as the title of the chapter containing
* the documentation of all groups.
*/
virtual QCString trModuleDocumentation()
{ return "Dokumentace modulů"; }
/*! This is used in LaTeX as the title of the chapter containing
* the documentation of all classes, structs and unions.
*/
virtual QCString trClassDocumentation()
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
return "Dokumentace datových struktur";
}
else if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
{
return trDesignUnitDocumentation();
}
else
{
return "Dokumentace tříd";
}
}
/*! This is used in LaTeX as the title of the chapter containing
* the documentation of all files.
*/
virtual QCString trFileDocumentation()
{ return "Dokumentace souborů"; }
/*! This is used in LaTeX as the title of the chapter containing
* the documentation of all examples.
*/
virtual QCString trExampleDocumentation()
{ return "Dokumentace příkladů"; }
/*! This is used in LaTeX as the title of the document */
virtual QCString trReferenceManual()
{ return "Referenční příručka"; }
/*! This is used in the documentation of a file as a header before the
* list of defines
*/
virtual QCString trDefines()
{ return "Definice maker"; }
/*! This is used in the documentation of a file as a header before the
* list of typedefs
*/
virtual QCString trTypedefs()
{ return "Definice typů"; }
/*! This is used in the documentation of a file as a header before the
* list of enumerations
*/
virtual QCString trEnumerations()
{ return "Výčty"; }
/*! This is used in the documentation of a file as a header before the
* list of (global) functions
*/
virtual QCString trFunctions()
{ return "Funkce"; }
/*! This is used in the documentation of a file as a header before the
* list of (global) variables
*/
virtual QCString trVariables()
{ return "Proměnné"; }
/*! This is used in the documentation of a file as a header before the
* list of (global) variables
*/
virtual QCString trEnumerationValues()
{ return "Hodnoty výčtu"; }
/*! This is used in the documentation of a file before the list of
* documentation blocks for defines
*/
virtual QCString trDefineDocumentation()
{ return "Dokumentace definic maker"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for typedefs
*/
virtual QCString trTypedefDocumentation()
{ return "Dokumentace definic typů"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for enumeration types
*/
virtual QCString trEnumerationTypeDocumentation()
{ return "Dokumentace výčtových typů"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for functions
*/
virtual QCString trFunctionDocumentation()
{ return "Dokumentace funkcí"; }
/*! This is used in the documentation of a file/namespace before the list
* of documentation blocks for variables
*/
virtual QCString trVariableDocumentation()
{ return "Dokumentace proměnných"; }
/*! This is used in the documentation of a file/namespace/group before
* the list of links to documented compounds
*/
virtual QCString trCompounds()
{
if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
{
return "Datové struktury";
}
else
{
return "Třídy";
}
}
/*! This is used in the standard footer of each page and indicates when
* the page was generated
*/
virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
{
QCString result="Vygenerováno dne: "+date;
if (!projName.isEmpty()) result +=", pro projekt: "+projName;
result+=", programem";
return result;
}
/*! this text is put before a class diagram */
virtual QCString trClassDiagram(const QCString &clName)
{
return "Diagram dědičnosti pro třídu "+clName+":";
}
/*! this text is generated when the \\warning command is used. */
virtual QCString trWarning()
{ return "Pozor"; }
/*! this text is generated when the \\version command is used. */
virtual QCString trVersion()
{ return "Verze"; }
/*! this text is generated when the \\date command is used. */
virtual QCString trDate()
{ return "Datum"; }
/*! this text is generated when the \\return command is used. */
virtual QCString trReturns()
{ return "Návratová hodnota"; }
/*! this text is generated when the \\sa command is used. */
virtual QCString trSeeAlso()
{ return "Viz také"; }
/*! this text is generated when the \\param command is used. */
virtual QCString trParameters()
{ return "Parametry"; }
/*! this text is generated when the \\exception command is used. */
virtual QCString trExceptions()
{ return "Výjimky"; }
/*! this text is used in the title page of a LaTeX document. */
virtual QCString trGeneratedBy()
{ return "Vygenerováno programem"; }
//////////////////////////////////////////////////////////////////////////
// new since 0.49-990307
//////////////////////////////////////////////////////////////////////////
/*! used as the title of page containing all the index of all namespaces. */
virtual QCString trNamespaceList()
{ return "Seznam jmenných prostorů"; }
/*! used as an introduction to the namespace list */
virtual QCString trNamespaceListDescription(bool extractAll)
{
QCString result="Zde naleznete seznam všech ";
if (!extractAll) result+="dokumentovaných ";
result+="jmenných prostorů se stručným popisem:";
return result;
}
/*! used in the class documentation as a header before the list of all
* friends of a class
*/
virtual QCString trFriends()
{ return "Přátelé třídy"; }
//////////////////////////////////////////////////////////////////////////
// new since 0.49-990405
//////////////////////////////////////////////////////////////////////////
/*! used in the class documentation as a header before the list of all
* related classes
*/
virtual QCString trRelatedFunctionDocumentation()
{ return "Dokumentace přátel a souvisejících funkcí třídy"; }
//////////////////////////////////////////////////////////////////////////
// new since 0.49-990425
//////////////////////////////////////////////////////////////////////////
/*! used as the title of the HTML page of a class/struct/union */
virtual QCString trCompoundReference(const QCString &clName,
ClassDef::CompoundType compType,
bool isTemplate)
{
QCString result="Dokumentace ";
if (isTemplate) result += "šablony ";
switch(compType)
{
case ClassDef::Class: result+="třídy "; break;
case ClassDef::Struct: result+="struktury "; break;
case ClassDef::Union: result+="unie "; break;
case ClassDef::Interface: result+="rozhraní "; break;
case ClassDef::Protocol: result+="protokolu "; break;
case ClassDef::Category: result+="kategorie "; break;
case ClassDef::Exception: result+="výjimky "; break;
default: break;
}
result += clName;
return result;
}
/*! used as the title of the HTML page of a file */
virtual QCString trFileReference(const QCString &fileName)
{
QCString result="Dokumentace souboru ";
result+=fileName;
return result;
}
/*! used as the title of the HTML page of a namespace */
virtual QCString trNamespaceReference(const QCString &namespaceName)
{
QCString result="Dokumentace jmenného prostoru ";
result+=namespaceName;
return result;
}
/*
* these are for the member sections of a class, struct or union
*/
virtual QCString trPublicMembers()
{ return "Veřejné metody"; }
virtual QCString trPublicSlots()
{ return "Veřejné sloty"; }
virtual QCString trSignals()
{ return "Signály"; }
virtual QCString trStaticPublicMembers()
{ return "Statické veřejné metody"; }
virtual QCString trProtectedMembers()
{ return "Chráněné metody"; }
virtual QCString trProtectedSlots()
{ return "Chráněné sloty"; }
virtual QCString trStaticProtectedMembers()
{ return "Statické chráněné metody"; }
virtual QCString trPrivateMembers()
{ return "Privátní metody"; }
virtual QCString trPrivateSlots()
{ return "Privátní sloty"; }
virtual QCString trStaticPrivateMembers()
{ return "Statické privátní metody"; }
/*! this function is used to produce a comma-separated list of items.
* use generateMarker(i) to indicate where item i should be put.
*/
virtual QCString trWriteList(int numEntries)
{
QCString result;
int i;
// the inherits list contain `numEntries' classes
for (i=0;i
\n" "Bloky (tj. uzly) v uvedeném grafu mají následující význam:\n" "
\n" "\n" "Šipky (tj. hrany grafu) mají následující význam:\n" "
\n" "* Codepage number: * Charset Name Charset Value(hex) Codepage number * ------------------------------------------------------ * DEFAULT_CHARSET 1 (x01) * SYMBOL_CHARSET 2 (x02) * OEM_CHARSET 255 (xFF) * ANSI_CHARSET 0 (x00) 1252 * RUSSIAN_CHARSET 204 (xCC) 1251 * EE_CHARSET 238 (xEE) 1250 * GREEK_CHARSET 161 (xA1) 1253 * TURKISH_CHARSET 162 (xA2) 1254 * BALTIC_CHARSET 186 (xBA) 1257 * HEBREW_CHARSET 177 (xB1) 1255 * ARABIC _CHARSET 178 (xB2) 1256 * SHIFTJIS_CHARSET 128 (x80) 932 * HANGEUL_CHARSET 129 (x81) 949 * GB2313_CHARSET 134 (x86) 936 * CHINESEBIG5_CHARSET 136 (x88) 950 ** */ virtual QCString trRTFansicp() { return "1250"; } /*! Used as ansicpg for RTF fcharset * \see trRTFansicp() for a table of possible values. */ virtual QCString trRTFCharSet() { return "238"; } /*! Used as header RTF general index */ virtual QCString trRTFGeneralIndex() { return "Rejstřík"; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trClass(bool first_capital, bool singular) { QCString result((first_capital ? "Tříd" : "tříd")); result += singular ? "a" : "y"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trFile(bool first_capital, bool singular) { QCString result((first_capital ? "Soubor" : "soubor")); if (!singular) result+="y"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trNamespace(bool first_capital, bool singular) { QCString result((first_capital ? "Jmenn" : "jmenn")); result += singular ? "ý" : "é"; result+=" prostor"; if (!singular) result+="y"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trGroup(bool first_capital, bool singular) { QCString result((first_capital ? "Skupin" : "skupin")); result += singular ? "a" : "y"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trPage(bool first_capital, bool singular) { QCString result((first_capital ? "Stránk" : "stránk")); result += singular ? "a" : "y"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trMember(bool first_capital, bool singular) { QCString result((first_capital ? "Člen" : "člen")); if (!singular) result += "y"; return result; } /*! ??? Jak to prelozit? Bylo by dobre, kdyby se ozval nekdo, kdo to pouziva.*/ /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trGlobal(bool first_capital, bool singular) { QCString result((first_capital ? "Global" : "global")); if (!singular) result+="s"; return result; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.7 ////////////////////////////////////////////////////////////////////////// /*! This text is generated when the \\author command is used and * for the author section in man pages. */ virtual QCString trAuthor(bool first_capital, bool singular) { QCString result((first_capital ? "Auto" : "auto")); result += (singular) ? "r" : "ři"; return result; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.11 ////////////////////////////////////////////////////////////////////////// /*! This text is put before the list of members referenced by a member */ virtual QCString trReferences() { return "Odkazuje se na"; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.13 ////////////////////////////////////////////////////////////////////////// /*! used in member documentation blocks to produce a list of * members that are implemented by this one. */ virtual QCString trImplementedFromList(int numEntries) { return "Implementuje "+trWriteList(numEntries)+"."; } /*! used in member documentation blocks to produce a list of * all members that implement this abstract member. */ virtual QCString trImplementedInList(int numEntries) { return "Implementováno v "+trWriteList(numEntries)+"."; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.16 ////////////////////////////////////////////////////////////////////////// /*! used in RTF documentation as a heading for the Table * of Contents. */ virtual QCString trRTFTableOfContents() { return "Obsah"; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.17 ////////////////////////////////////////////////////////////////////////// /*! Used as the header of the list of item that have been * flagged deprecated */ virtual QCString trDeprecatedList() { return "Seznam zastaralých prvků"; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.18 ////////////////////////////////////////////////////////////////////////// /*! Used as a header for declaration section of the events found in * a C# program */ virtual QCString trEvents() { return "Události"; } /*! Header used for the documentation section of a class' events. */ virtual QCString trEventDocumentation() { return "Dokumentace událostí"; } ////////////////////////////////////////////////////////////////////////// // new since 1.3 ////////////////////////////////////////////////////////////////////////// /*! Used as a heading for a list of Java class types with package scope. */ virtual QCString trPackageTypes() { return "Typy v balíku"; } /*! Used as a heading for a list of Java class functions with package * scope. */ virtual QCString trPackageFunctions() { return "Funkce v balíku"; } virtual QCString trPackageMembers() { return "Členy v balíku"; // ??? not checked in a context } /*! Used as a heading for a list of static Java class functions with * package scope. */ virtual QCString trStaticPackageFunctions() { return "Statické funkce v balíku"; } /*! Used as a heading for a list of Java class variables with package * scope. */ virtual QCString trPackageAttribs() { return "Atributy v balíku"; // ??? not checked in a context } /*! Used as a heading for a list of static Java class variables with * package scope. */ virtual QCString trStaticPackageAttribs() { return "Statické atributy v balíku"; // ??? not checked in a context } ////////////////////////////////////////////////////////////////////////// // new since 1.3.1 ////////////////////////////////////////////////////////////////////////// /*! Used in the quick index of a class/file/namespace member list page * to link to the unfiltered list of all members. */ virtual QCString trAll() { return "Vše"; } /*! Put in front of the call graph for a function. */ virtual QCString trCallGraph() { return "Tato funkce volá..."; } ////////////////////////////////////////////////////////////////////////// // new since 1.3.3 ////////////////////////////////////////////////////////////////////////// /*! This string is used as the title for the page listing the search * results. */ virtual QCString trSearchResultsTitle() { return "Výsledky vyhledávání"; } /*! This string is put just before listing the search results. The * text can be different depending on the number of documents found. * Inside the text you can put the special marker $num to insert * the number representing the actual number of search results. * The @a numDocuments parameter can be either 0, 1 or 2, where the * value 2 represents 2 or more matches. HTML markup is allowed inside * the returned string. */ virtual QCString trSearchResults(int numDocuments) { if (numDocuments==0) { return "Lituji. Vašemu dotazu neodpovídá žádný dokument."; } else if (numDocuments==1) { return "Nalezen jeden dokument, který vyhovuje vašemu dotazu."; } else { return "Nalezeno $num dokumentů, které vyhovují vašemu " "dotazu. Nejlépe odpovídající dokumenty jsou zobrazeny " "jako první."; } } /*! This string is put before the list of matched words, for each search * result. What follows is the list of words that matched the query. */ virtual QCString trSearchMatches() { return "Nalezená slova:"; } ////////////////////////////////////////////////////////////////////////// // new since 1.3.8 ////////////////////////////////////////////////////////////////////////// /*! This is used in HTML as the title of page with source code for file filename */ virtual QCString trSourceFile(QCString& filename) { return "Zdrojový soubor " + filename; } ////////////////////////////////////////////////////////////////////////// // new since 1.3.9 ////////////////////////////////////////////////////////////////////////// /*! This is used as the name of the chapter containing the directory * hierarchy. */ virtual QCString trDirIndex() { return "Hierarchie adresářů"; } /*! This is used as the name of the chapter containing the documentation * of the directories. */ virtual QCString trDirDocumentation() { return "Dokumentace adresářů"; } /*! This is used as the title of the directory index and also in the * Quick links of an HTML page, to link to the directory hierarchy. */ virtual QCString trDirectories() { return "Adresáře"; } /*! This returns the title of a directory page. The name of the * directory is passed via \a dirName. */ virtual QCString trDirReference(const QCString &dirName) { QCString result="Reference k adresáři "; result+=dirName; return result; } /*! This returns the word directory with or without starting capital * (\a first_capital) and in singular or plural form (\a singular). */ virtual QCString trDir(bool first_capital, bool singular) { QCString result((first_capital ? "Adresář" : "adresář")); if (!singular) result+="e"; return result; } ////////////////////////////////////////////////////////////////////////// // new since 1.4.1 ////////////////////////////////////////////////////////////////////////// /*! This text is added to the documentation when the \\overload command * is used for a overloaded function. */ virtual QCString trOverloadText() { return "Jde o přetíženou (overloaded) metodu, " "která má usnadnit používání. Od výše uvedené metody se liší " "pouze jinak zadávanými argumenty."; } ////////////////////////////////////////////////////////////////////////// // new since 1.4.6 ////////////////////////////////////////////////////////////////////////// /*! This is used to introduce a caller (or called-by) graph */ virtual QCString trCallerGraph() { return "Tuto funkci volají..."; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for enumeration values */ virtual QCString trEnumerationValueDocumentation() { return "Dokumentace výčtových hodnot"; } ////////////////////////////////////////////////////////////////////////// // new since 1.5.4 (mainly for Fortran) ////////////////////////////////////////////////////////////////////////// /*! header that is put before the list of member subprograms (Fortran). */ virtual QCString trMemberFunctionDocumentationFortran() { return "Dokumentace členských funkcí/podprogramů"; } /*! This is put above each page as a link to the list of annotated data types (Fortran). */ virtual QCString trCompoundListFortran() { return "Seznam datových typů"; } /*! This is put above each page as a link to all members of compounds (Fortran). */ virtual QCString trCompoundMembersFortran() { return "Datové položky"; } /*! This is an introduction to the annotated compound list (Fortran). */ virtual QCString trCompoundListDescriptionFortran() { return "Datové typy se stručnými popisy:"; } /*! This is an introduction to the page with all data types (Fortran). */ virtual QCString trCompoundMembersDescriptionFortran(bool extractAll) { QCString result="Následuje seznam všech "; if (!extractAll) { result+="dokumentovaných "; } result+="složek datových typů"; result+=" s odkazy na "; if (!extractAll) { result+="dokumentaci datové struktury pro každou složku:"; } else { result+="příslušné datové typy:"; } return result; } /*! This is used in LaTeX as the title of the chapter with the * annotated compound index (Fortran). */ virtual QCString trCompoundIndexFortran() { return "Rejstřík datových typů"; } /*! This is used in LaTeX as the title of the chapter containing * the documentation of all data types (Fortran). */ virtual QCString trTypeDocumentation() { return "Dokumentace datových typů"; } /*! This is used in the documentation of a file as a header before the * list of (global) subprograms (Fortran). */ virtual QCString trSubprograms() { return "Funkce/podprogramy"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for subprograms (Fortran) */ virtual QCString trSubprogramDocumentation() { return "Dokumentace funkce/podprogramu"; } /*! This is used in the documentation of a file/namespace/group before * the list of links to documented compounds (Fortran) */ virtual QCString trDataTypes() { return "Datové typy"; } /*! used as the title of page containing all the index of all modules (Fortran). */ virtual QCString trModulesList() { return "Seznam modulů"; } /*! used as an introduction to the modules list (Fortran) */ virtual QCString trModulesListDescription(bool extractAll) { QCString result="Následuje seznam všech "; if (!extractAll) result+="dokumentovaných "; result+="modulů se stručnými popisy:"; return result; } /*! used as the title of the HTML page of a module/type (Fortran) */ virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate) { QCString result="Dokumentace "; if (isTemplate) result += "šablony "; switch(compType) { case ClassDef::Class: result+="modulu "; break; case ClassDef::Struct: result+="typu "; break; case ClassDef::Union: result+="unie "; break; case ClassDef::Interface: result+="rozhraní "; break; case ClassDef::Protocol: result+="protokolu "; break; case ClassDef::Category: result+="kategorie "; break; case ClassDef::Exception: result+="výjimky "; break; default: break; } result+=clName; return result; } /*! used as the title of the HTML page of a module (Fortran) */ virtual QCString trModuleReference(const QCString &namespaceName) { QCString result="Dokumentace modulu "; result += namespaceName; return result; } /*! This is put above each page as a link to all members of modules. (Fortran) */ virtual QCString trModulesMembers() { return "Části modulu"; } /*! This is an introduction to the page with all modules members (Fortran) */ virtual QCString trModulesMemberDescription(bool extractAll) { QCString result="Následuje seznam všech "; if (!extractAll) result+="dokumentovaných "; result+="částí modulů s odkazy "; if (extractAll) { result+="na dokumentaci modulu pro danou část:"; } else { result+="na moduly, ke kterým část patří:"; } return result; } /*! This is used in LaTeX as the title of the chapter with the * index of all modules (Fortran). */ virtual QCString trModulesIndex() { return "Rejstřík modulů"; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trModule(bool first_capital, bool singular) { QCString result((first_capital ? "Modul" : "modul")); if (!singular) result+="y"; return result; } /*! This is put at the bottom of a module documentation page and is * followed by a list of files that were used to generate the page. */ virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single) { // single is true implies a single file QCString result="Dokumentace pro "; switch(compType) { case ClassDef::Class: result+="tento modul"; break; case ClassDef::Struct: result+="tento typ"; break; case ClassDef::Union: result+="tuto unii"; break; case ClassDef::Interface: result+="toto rozhraní"; break; case ClassDef::Protocol: result+="tento protokol"; break; case ClassDef::Category: result+="tuto kategorii"; break; case ClassDef::Exception: result+="tuto výjimku"; break; default: break; } result+=" byla vygenerována z následující"; if (single) result+="ho souboru:"; else result+="ch souborů:"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trType(bool first_capital, bool singular) { QCString result((first_capital ? "Typ" : "typ")); if (!singular) result+="y"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trSubprogram(bool first_capital, bool singular) { QCString result((first_capital ? "Podprogram" : "podprogram")); if (!singular) result+="y"; return result; } /*! C# Type Constraint list */ virtual QCString trTypeConstraints() { return "Omezení typů (Type Constraints)"; } ////////////////////////////////////////////////////////////////////////// // new since 1.6.0 (mainly for the new search engine) ////////////////////////////////////////////////////////////////////////// /*! directory relation for \a name */ virtual QCString trDirRelation(const QCString &name) { return "Relace "+name; // ??? not checked in a context } /*! Loading message shown when loading search results */ virtual QCString trLoading() { return "Načítám..."; } /*! Label used for search results in the global namespace */ virtual QCString trGlobalNamespace() { return "Globální jmenný prostor"; } /*! Message shown while searching */ virtual QCString trSearching() { return "Vyhledávám..."; } /*! Text shown when no search results are found */ virtual QCString trNoMatches() { return "Nebylo nic nalezeno"; } ////////////////////////////////////////////////////////////////////////// // new since 1.6.3 (missing items for the directory pages) ////////////////////////////////////////////////////////////////////////// /*! when clicking a directory dependency label, a page with a * table is shown. The heading for the first column mentions the * source file that has a relation to another file. */ virtual QCString trFileIn(const QCString &name) { return "Soubor v "+name; } /*! when clicking a directory dependency label, a page with a * table is shown. The heading for the second column mentions the * destination file that is included. */ virtual QCString trIncludesFileIn(const QCString &name) { return "Vkládá (include) soubor z "+name; } /** Compiles a date string. * @param year Year in 4 digits * @param month Month of the year: 1=January * @param day Day of the Month: 1..31 * @param dayOfWeek Day of the week: 1=Monday..7=Sunday * @param hour Hour of the day: 0..23 * @param minutes Minutes in the hour: 0..59 * @param seconds Seconds within the minute: 0..59 * @param includeTime Include time in the result string? */ virtual QCString trDateTime(int year,int month,int day,int dayOfWeek, int hour,int minutes,int seconds, bool includeTime) { static const char *days[] = { "po","út","st","čt","pá","so","ne" }; static const char *months[] = { "led","úno","bře","dub","kvě","čer","čec","srp","zář","říj","lis","pro" }; QCString sdate; sdate.sprintf("%s %d. %s %d",days[dayOfWeek-1],day,months[month-1],year); if (includeTime) { QCString stime; stime.sprintf(" %.2d.%.2d:%.2d",hour,minutes,seconds); sdate+=stime; } return sdate; } virtual QCString trDayOfWeek(int dayOfWeek, bool first_capital, bool full) { static const char *days_short[] = { "po", "út", "st", "čt", "pá", "so", "ne" }; static const char *days_full[] = { "pondělí", "úterý", "středa", "čtvrtek", "pátek", "sobota", "neděle" }; QCString text = full? days_full[dayOfWeek-1] : days_short[dayOfWeek-1]; if (first_capital) return text.mid(0,1).upper()+text.mid(1); else return text; } virtual QCString trMonth(int month, bool first_capital, bool full) { static const char *months_short[] = { "led", "úno", "bře", "dub", "kvě", "čvn", "čvc", "srp", "zář", "říj", "lis", "pro" }; static const char *months_full[] = { "leden", "únor", "březen", "duben", "květen", "červen", "červenec", "srpen", "září", "říjen", "listopad", "prosinec" }; QCString text = full? months_full[month-1] : months_short[month-1]; if (first_capital) return text.mid(0,1).upper()+text.mid(1); else return text; } virtual QCString trDayPeriod(int period) { static const char *dayPeriod[] = { "dop.", "odp." }; return dayPeriod[period]; } ////////////////////////////////////////////////////////////////////////// // new since 1.7.5 ////////////////////////////////////////////////////////////////////////// /*! Header for the page with bibliographic citations */ virtual QCString trCiteReferences() { return "Odkazy na literaturu"; } /*! Text for copyright paragraph */ virtual QCString trCopyright() { return "Copyright"; } /*! Header for the graph showing the directory dependencies */ virtual QCString trDirDepGraph(const QCString &name) { return "Graf závislosti na adresářích pro "+name+":"; } // ??? not checked in a context ////////////////////////////////////////////////////////////////////////// // new since 1.8.0 ////////////////////////////////////////////////////////////////////////// /*! Detail level selector shown for hierarchical indices */ virtual QCString trDetailLevel() { return "úroveň detailů"; } /*! Section header for list of template parameters */ virtual QCString trTemplateParameters() { return "Parametry šablony"; } /*! Used in dot graph when UML_LOOK is enabled and there are many fields */ virtual QCString trAndMore(const QCString &number) { return "a "+number+" další(ch)..."; } /*! Used file list for a Java enum */ virtual QCString trEnumGeneratedFromFiles(bool single) { QCString result = "Dokumentace pro tento výčet byla vygenerována z následující"; if (single) result += "ho souboru:"; else result += "ch souborů:"; return result; } /*! Header of a Java enum page (Java enums are represented as classes). */ virtual QCString trEnumReference(const QCString &name) { return "Reference k výčtu "+name; } /*! Used for a section containing inherited members */ virtual QCString trInheritedFrom(const QCString &members,const QCString &what) { return members+" dědí se z "+what; } /*! Header of the sections with inherited members specific for the * base class(es) */ virtual QCString trAdditionalInheritedMembers() { return "Další zděděné členy"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.2 ////////////////////////////////////////////////////////////////////////// /*! Used as a tooltip for the toggle button that appears in the * navigation tree in the HTML output when GENERATE_TREEVIEW is * enabled. This tooltip explains the meaning of the button. */ virtual QCString trPanelSynchronisationTooltip(bool enable) { QCString opt = enable ? "povolit" : "zakázat"; return opt + " synchronizaci panelů"; } /*! Used in a method of an Objective-C class that is declared in a * a category. Note that the @1 marker is required and is replaced * by a link. */ virtual QCString trProvidedByCategory() { return "Deklarováno v kategorii @0."; } /*! Used in a method of an Objective-C category that extends a class. * Note that the @1 marker is required and is replaced by a link to * the class method. */ virtual QCString trExtendsClass() { return "Rozšiřuje třídu @0."; } /*! Used as the header of a list of class methods in Objective-C. * These are similar to static public member functions in C++. */ virtual QCString trClassMethods() { return "Metody třídy"; } /*! Used as the header of a list of instance methods in Objective-C. * These are similar to public member functions in C++. */ virtual QCString trInstanceMethods() { return "Metody instance"; } /*! Used as the header of the member functions of an Objective-C class. */ virtual QCString trMethodDocumentation() { return "Dokumentace metody"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.4 ////////////////////////////////////////////////////////////////////////// /** old style UNO IDL services: implemented interfaces */ virtual QCString trInterfaces() { return "Exportovaná rozhraní"; } /** old style UNO IDL services: inherited services */ virtual QCString trServices() { return "Začleněné služby"; } /** UNO IDL constant groups */ virtual QCString trConstantGroups() { return "Konstantní skupiny"; } /** UNO IDL constant groups */ virtual QCString trConstantGroupReference(const QCString &namespaceName) { QCString result="Konstantní skupiny z "; result+=namespaceName; return result; } /** UNO IDL service page title */ virtual QCString trServiceReference(const QCString &sName) { QCString result="Popis služby "; result+=sName; return result; } /** UNO IDL singleton page title */ virtual QCString trSingletonReference(const QCString &sName) { QCString result="Popis singletonu "; result+=sName; return result; } /** UNO IDL service page */ virtual QCString trServiceGeneratedFromFiles(bool single) { // single is true implies a single file QCString result="Dokumentace k této službě byla vygenerována z následující"; if (single) result+="ho souboru:"; else result+="ch souborů:"; return result; } /** UNO IDL singleton page */ virtual QCString trSingletonGeneratedFromFiles(bool single) { // single is true implies a single file QCString result="Dokumentace k tomuto singletonu byla vygenerována z následující"; if (single) result+="ho souboru:"; else result+="ch souborů:"; return result; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.15 ////////////////////////////////////////////////////////////////////////// /** VHDL design unit hierarchy */ virtual QCString trDesignUnitHierarchy() { return "Hierarchie návrhových jednotek"; } /** VHDL design unit list */ virtual QCString trDesignUnitList() { return "Seznam návrhových jednotek"; } /** VHDL design unit members */ virtual QCString trDesignUnitMembers() { return "Seznam členů návrhových jednotek"; } /** VHDL design unit list description */ virtual QCString trDesignUnitListDescription() { return "Zde naleznete seznam všech členů návrhové jednotky s odkazy na " "entity, ke kterým příslušejí:"; } /** VHDL design unit index */ virtual QCString trDesignUnitIndex() { return "Rejstřík návrhových jednotek"; } /** VHDL design units */ virtual QCString trDesignUnits() { return "Návrhové jednotky"; } /** VHDL functions/procedures/processes */ virtual QCString trFunctionAndProc() { return "Funkce/Procedury/Procesy"; } /** VHDL type */ virtual QCString trVhdlType(uint64 type,bool single) { switch(type) { case VhdlDocGen::LIBRARY: if (single) return "Knihovna"; else return "Knihovny"; case VhdlDocGen::PACKAGE: if (single) return "Balík"; else return "Balíky"; case VhdlDocGen::SIGNAL: if (single) return "Signál"; else return "Signály"; case VhdlDocGen::COMPONENT: if (single) return "Komponenta"; else return "Komponenty"; case VhdlDocGen::CONSTANT: if (single) return "Konstanta"; else return "Konstanty"; case VhdlDocGen::ENTITY: if (single) return "Entita"; else return "Entity"; case VhdlDocGen::TYPE: if (single) return "Typ"; else return "Typy"; case VhdlDocGen::SUBTYPE: if (single) return "Subtyp"; else return "Subtypy"; case VhdlDocGen::FUNCTION: if (single) return "Funkce"; else return "Funkce"; case VhdlDocGen::RECORD: if (single) return "Záznam"; else return "Záznamy"; case VhdlDocGen::PROCEDURE: if (single) return "Procedura"; else return "Procedury"; case VhdlDocGen::ARCHITECTURE: if (single) return "Architektura"; else return "Architektury"; case VhdlDocGen::ATTRIBUTE: if (single) return "Atribut"; else return "Atributy"; case VhdlDocGen::PROCESS: if (single) return "Proces"; else return "Procesy"; case VhdlDocGen::PORT: if (single) return "Brána"; else return "Brány"; case VhdlDocGen::USE: if (single) return "Klauzule use"; else return "Klauzule use"; case VhdlDocGen::GENERIC: if (single) return "Generický parametr"; else return "Generické parametry"; case VhdlDocGen::PACKAGE_BODY: return "Tělo balíku"; case VhdlDocGen::UNITS: return "Fyzikální jednotky"; case VhdlDocGen::SHAREDVARIABLE: if (single) return "Sdílená proměnná"; else return "Sdílené proměnné"; case VhdlDocGen::VFILE: if (single) return "Soubor"; else return "Soubory"; case VhdlDocGen::GROUP: if (single) return "Skupina"; else return "Skupiny"; case VhdlDocGen::INSTANTIATION: if (single) return "Vložená instance"; else return "Vložené instance"; case VhdlDocGen::ALIAS: if (single) return "Alias"; else return "Aliasy"; case VhdlDocGen::CONFIG: if (single) return "Konfigurace"; else return "Konfigurace"; case VhdlDocGen::MISCELLANEOUS: return "Ostatní"; case VhdlDocGen::UCF_CONST: return "Omezení (constraints)"; default: return "Třída"; } } virtual QCString trCustomReference(const QCString &name) { return "Dokumentace pro "+name; } /* Slice */ virtual QCString trConstants() { return "Konstanty"; } virtual QCString trConstantDocumentation() { return "Dokumentace konstant"; } virtual QCString trSequences() { return "Sekvence"; } virtual QCString trSequenceDocumentation() { return "Dokumentace sekvence"; } virtual QCString trDictionaries() { return "Slovníky"; } virtual QCString trDictionaryDocumentation() { return "Dokumentace slovníku"; } virtual QCString trSliceInterfaces() { return "Rozhraní"; } virtual QCString trInterfaceIndex() { return "Rejstřík rozhraní"; } virtual QCString trInterfaceList() { return "Seznam rozhraní"; } virtual QCString trInterfaceListDescription() { return "Následující seznam obsahuje jména rozhraní a jejich stručné popisy:"; } virtual QCString trInterfaceHierarchy() { return "Hierarchie rozhraní"; } virtual QCString trInterfaceHierarchyDescription() { return "Zde naleznete seznam, vyjadřující vztah dědičnosti rozhraní. Je seřazen přibližně (ale ne úplně) podle abecedy:"; } virtual QCString trInterfaceDocumentation() { return "Dokumentace rozhraní"; } virtual QCString trStructs() { return "Struktury"; } virtual QCString trStructIndex() { return "Rejstřík struktur"; } virtual QCString trStructList() { return "Seznam struktur"; } virtual QCString trStructListDescription() { return "Následující seznam obsahuje jména struktur a jejich stručné popisy:"; } virtual QCString trStructDocumentation() { return "Dokumentace struktur"; } virtual QCString trExceptionIndex() { return "Rejstřík vyjímek"; } virtual QCString trExceptionList() { return "Seznam vyjímek"; } virtual QCString trExceptionListDescription() { return "Následující seznam obsahuje jména výjímek a jejich stručné popisy:"; } virtual QCString trExceptionHierarchy() { return "Hierarchie vyjímek"; } virtual QCString trExceptionHierarchyDescription() { return "Zde naleznete seznam, vyjadřující vztah dědičnosti vyjímek. Je seřazen přibližně (ale ne úplně) podle abecedy:"; } virtual QCString trExceptionDocumentation() { return "Dokumentace vyjímek"; } virtual QCString trCompoundReferenceSlice(const QCString &clName, ClassDef::CompoundType compType, bool isLocal) { QCString result="Dokumentace"; if (isLocal) result+=" lokální"; switch(compType) { case ClassDef::Class: result+=" třídy "; break; case ClassDef::Struct: result+=" struktury "; break; case ClassDef::Union: result+=" unie "; break; case ClassDef::Interface: if (isLocal) result+="ho"; result+=" rozhraní "; break; case ClassDef::Protocol: if (isLocal) result+="ho"; result+=" protokolu "; break; case ClassDef::Category: result+=" kategorie "; break; case ClassDef::Exception: result+=" vyjímky "; break; default: break; } result+=clName; return result; } virtual QCString trOperations() { return "Operace"; } virtual QCString trOperationDocumentation() { return "Dokumentace operace"; } virtual QCString trDataMembers() { return "Datové členy"; } virtual QCString trDataMemberDocumentation() { return "Dokumentace datových členů"; } ////////////////////////////////////////////////////////////////////////// // new since 1.8.19 ////////////////////////////////////////////////////////////////////////// /** VHDL design unit documentation */ virtual QCString trDesignUnitDocumentation() { return "Dokumentace návrhové jednotky"; } ////////////////////////////////////////////////////////////////////////// // new since 1.9.2 ////////////////////////////////////////////////////////////////////////// /** C++20 concept */ virtual QCString trConcept(bool first_capital, bool singular) { QCString result((first_capital ? "Koncept" : "koncept")); if (!singular) result+="y"; return result; } /*! used as the title of the HTML page of a C++20 concept page */ virtual QCString trConceptReference(const QCString &conceptName) { QCString result="Dokumentace konceptu "; result+=conceptName; return result; } /*! used as the title of page containing all the index of all concepts. */ virtual QCString trConceptList() { return "Seznam konceptů"; } /*! used as the title of chapter containing the index listing all concepts. */ virtual QCString trConceptIndex() { return "Rejstřík konceptů"; } /*! used as the title of chapter containing all information about concepts. */ virtual QCString trConceptDocumentation() { return "Dokumentace konceptů"; } /*! used as an introduction to the concept list */ virtual QCString trConceptListDescription(bool extractAll) { QCString result="Následuje seznam všech "; if (!extractAll) result+="dokumentovaných "; result+="konceptů se stručnými popisy:"; return result; } /*! used to introduce the definition of the C++20 concept */ virtual QCString trConceptDefinition() { return "Definice konceptů"; } ////////////////////////////////////////////////////////////////////////// // new since 1.9.4 ////////////////////////////////////////////////////////////////////////// virtual QCString trPackageList() { return "Seznam balíků"; } }; #endif // TRANSLATOR_CZ_H