Blame src/translator_pl.h

Packit Service 50c9f2
/******************************************************************************
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Permission to use, copy, modify, and distribute this software and its
Packit Service 50c9f2
 * documentation under the terms of the GNU General Public License is hereby
Packit Service 50c9f2
 * granted. No representations are made about the suitability of this software
Packit Service 50c9f2
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit Service 50c9f2
 * See the GNU General Public License for more details.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Documents produced by Doxygen are derivative works derived from the
Packit Service 50c9f2
 * input used in their production; they are not affected by this license.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Polish translation was updated to version 1.3.9 by
Packit Service 50c9f2
 * Piotr Kaminski (Piotr.Kaminski@ctm.gdynia.pl)
Packit Service 50c9f2
 * Polish translation was updated since version 1.4.6 by
Packit Service 50c9f2
 * Krzysztof Kral (krzysztof.kral@gmail.com)
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
#ifndef TRANSLATOR_PL_H
Packit Service 50c9f2
#define TRANSLATOR_PL_H
Packit Service 50c9f2
Packit Service 50c9f2
class TranslatorPolish : public TranslatorAdapter_1_8_2
Packit Service 50c9f2
{
Packit Service 50c9f2
  public:
Packit Service 50c9f2
Packit Service 50c9f2
    // --- Language control methods -------------------
Packit Service 50c9f2
Packit Service 50c9f2
    /*! Used for identification of the language. May resemble
Packit Service 50c9f2
     * the string returned by latexBabelPackage(), but it is not used
Packit Service 50c9f2
     * for the same purpose. The identification should not be translated.
Packit Service 50c9f2
     * It should be replaced by the name of the language in English
Packit Service 50c9f2
     * (e.g. Czech, Japanese, Russian, etc.). It should be equal to
Packit Service 50c9f2
     * the identification in language.h.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString idLanguage()
Packit Service 50c9f2
    { return "polish"; }
Packit Service 50c9f2
    /*! Used to get the command(s) for the language support. This method
Packit Service 50c9f2
     *  was designed for languages which do not prefer babel package.
Packit Service 50c9f2
     *  If this methods returns empty string, then the latexBabelPackage()
Packit Service 50c9f2
     *  method is used to generate the command for using the babel package.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString latexLanguageSupportCommand()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "\\usepackage{polski}\n"
Packit Service 50c9f2
             "\\usepackage[T1]{fontenc}\n";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    // --- Language translation methods -------------------
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the compound documentation before a list of related functions. */
Packit Service 50c9f2
    QCString trRelatedFunctions()
Packit Service 50c9f2
    { return "Funkcje powiązane"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! subscript for the related functions. */
Packit Service 50c9f2
    QCString trRelatedSubscript()
Packit Service 50c9f2
    { return "(Zauważ, że to nie są metody klas.)"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the detailed description of files, classes and namespaces. */
Packit Service 50c9f2
    QCString trDetailedDescription()
Packit Service 50c9f2
    { return "Opis szczegółowy"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of typedefs. */
Packit Service 50c9f2
    QCString trMemberTypedefDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja składowych definicji typu"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of enumerations. */
Packit Service 50c9f2
    QCString trMemberEnumerationDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja składowych wyliczanych"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of member functions. */
Packit Service 50c9f2
    QCString trMemberFunctionDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja funkcji składowych"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of member attributes. */
Packit Service 50c9f2
    QCString trMemberDataDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Dokumentacja pól";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Dokumentacja atrybutów składowych";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the text of a link put after brief descriptions. */
Packit Service 50c9f2
    QCString trMore()
Packit Service 50c9f2
    { return "Więcej..."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put in the class documentation */
Packit Service 50c9f2
    QCString trListOfAllMembers()
Packit Service 50c9f2
    { return "Lista wszystkich składowych"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the "list of all members" page of a class */
Packit Service 50c9f2
    QCString trMemberList()
Packit Service 50c9f2
    { return "Lista składowych"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the first part of a sentence that is followed by a class name */
Packit Service 50c9f2
    QCString trThisIsTheListOfAllMembers()
Packit Service 50c9f2
    { return "To jest kompletna lista składowych dla "; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the remainder of the sentence after the class name */
Packit Service 50c9f2
    QCString trIncludingInheritedMembers()
Packit Service 50c9f2
    { return ", uwzględniająca wszystkie dziedziczone składowe."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is put at the author sections at the bottom of man pages.
Packit Service 50c9f2
     *  parameter s is name of the project name.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trGeneratedAutomatically(const char *s)
Packit Service 50c9f2
    { QCString result="Wygenerowano automatycznie z kodu źródłowego programem Doxygen";
Packit Service 50c9f2
      if (s) result+=(QCString)" dla "+s;
Packit Service 50c9f2
      result+=".";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an enum name in the list of all members */
Packit Service 50c9f2
    QCString trEnumName()
Packit Service 50c9f2
    { return "nazwa wyliczenia"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an enum value in the list of all members */
Packit Service 50c9f2
    QCString trEnumValue()
Packit Service 50c9f2
    { return "wartość wyliczenia"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an undocumented member in the list of all members */
Packit Service 50c9f2
    QCString trDefinedIn()
Packit Service 50c9f2
    { return "zdefiniowana w"; }
Packit Service 50c9f2
Packit Service 50c9f2
    // quick reference sections
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of all groups of
Packit Service 50c9f2
     *  compounds or files (see the \\group command).
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trModules()
Packit Service 50c9f2
    { return "Moduły"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the class hierarchy */
Packit Service 50c9f2
    QCString trClassHierarchy()
Packit Service 50c9f2
    { return "Hierarchia klas"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of annotated classes */
Packit Service 50c9f2
    QCString trCompoundList()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Struktury danych";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Lista klas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of documented files */
Packit Service 50c9f2
    QCString trFileList()
Packit Service 50c9f2
    { return "Lista plików"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of all verbatim headers */
Packit Service 50c9f2
    QCString trHeaderFiles()
Packit Service 50c9f2
    { return "Pliki nagłówkowe"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of compounds. */
Packit Service 50c9f2
    QCString trCompoundMembers()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Pola danych";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Składowe klas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of files. */
Packit Service 50c9f2
    QCString trFileMembers()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Globalne";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Składowe plików";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all related pages. */
Packit Service 50c9f2
    QCString trRelatedPages()
Packit Service 50c9f2
    { return "Dodatkowe strony"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all examples. */
Packit Service 50c9f2
    QCString trExamples()
Packit Service 50c9f2
    { return "Przykłady"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the search engine. */
Packit Service 50c9f2
    QCString trSearch()
Packit Service 50c9f2
    { return "Szukaj"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the class hierarchy. */
Packit Service 50c9f2
    QCString trClassHierarchyDescription()
Packit Service 50c9f2
    { return "Ta lista dziedziczenia posortowana jest z grubsza, "
Packit Service 50c9f2
             "choć nie całkowicie, alfabetycznie:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the list with all files. */
Packit Service 50c9f2
    QCString trFileListDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Tutaj znajduje się lista wszystkich ";
Packit Service 50c9f2
      if (!extractAll) result+="udokumentowanych ";
Packit Service 50c9f2
      result+="plików z ich krótkimi opisami:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the annotated compound list. */
Packit Service 50c9f2
    QCString trCompoundListDescription()
Packit Service 50c9f2
    {
Packit Service 50c9f2
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Tutaj znajdują się struktury danych wraz z ich krótkimi opisami:";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Tutaj znajdują się klasy, struktury, "
Packit Service 50c9f2
             "unie i interfejsy wraz z ich krótkimi opisami:";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all class members. */
Packit Service 50c9f2
    QCString trCompoundMembersDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Tutaj znajduje się lista wszystkich ";
Packit Service 50c9f2
      if (!extractAll)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="udokumentowanych ";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="pól struktur i unii";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="składowych";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=" wraz z odnośnikami do ";
Packit Service 50c9f2
      if (!extractAll)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="dokumentacji struktur/unii dla każdego pola:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
        else
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="dokumentacji klas dla każdej składowej:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="struktur/unii, do których dane pole należy:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
        else
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="klas, do których dana składowa należy:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all file members. */
Packit Service 50c9f2
    QCString trFileMembersDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Tutaj znajduje się lista wszystkich ";
Packit Service 50c9f2
      if (!extractAll) result+="udokumentowanych ";
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="funkcji, zmiennych, makr, wyliczeń i definicji typów";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="składowych plików";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=" wraz z odnośnikami do ";
Packit Service 50c9f2
      if (extractAll)
Packit Service 50c9f2
        result+="plików, do których one należą:";
Packit Service 50c9f2
      else
Packit Service 50c9f2
        result+="dokumentacji:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of all header files. */
Packit Service 50c9f2
    QCString trHeaderFilesDescription()
Packit Service 50c9f2
    { return "Tutaj znajdują się pliki nagłówkowe tworzące API:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of all examples */
Packit Service 50c9f2
    QCString trExamplesDescription()
Packit Service 50c9f2
    { return "Tutaj znajduje się lista wszystkich przykładów:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of related pages */
Packit Service 50c9f2
    QCString trRelatedPagesDescription()
Packit Service 50c9f2
    { return "Tutaj znajduje się lista wszystkich stron dokumentacji:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of class/file groups */
Packit Service 50c9f2
    QCString trModulesDescription()
Packit Service 50c9f2
    { return "Tutaj znajduje się lista wszystkich grup:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This sentences is used in the annotated class/file lists if no brief
Packit Service 50c9f2
     * description is given.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trNoDescriptionAvailable()
Packit Service 50c9f2
    { return "Brak opisu"; }
Packit Service 50c9f2
Packit Service 50c9f2
    // index titles (the project name is prepended for these)
Packit Service 50c9f2
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in HTML as the title of index.html. */
Packit Service 50c9f2
    QCString trDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * index of all groups.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trModuleIndex()
Packit Service 50c9f2
    { return "Indeks grup"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * class hierarchy.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trHierarchicalIndex()
Packit Service 50c9f2
    { return "Indeks hierarchiczny"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * annotated compound index.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trCompoundIndex()
Packit Service 50c9f2
    {
Packit Service 50c9f2
     if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Indeks struktur danych";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Indeks klas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * list of all files.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trFileIndex()
Packit Service 50c9f2
    { return "Indeks plików"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all groups.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trModuleDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja grup"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all classes, structs and unions.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trClassDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Dokumentacja struktur danych";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Dokumentacja klas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all files.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trFileDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja plików"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all examples.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trExampleDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja przykładów"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all related pages.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trPageDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja stron"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the document */
Packit Service 50c9f2
    QCString trReferenceManual()
Packit Service 50c9f2
    { return "Podręcznik"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of defines
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trDefines()
Packit Service 50c9f2
    { return "Definicje"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of typedefs
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trTypedefs()
Packit Service 50c9f2
    { return "Definicje typów"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of enumerations
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trEnumerations()
Packit Service 50c9f2
    { return "Wyliczenia"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) functions
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trFunctions()
Packit Service 50c9f2
    { return "Funkcje"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trVariables()
Packit Service 50c9f2
    { return "Zmienne"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trEnumerationValues()
Packit Service 50c9f2
    { return "Wartości wyliczeń"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file before the list of
Packit Service 50c9f2
     *  documentation blocks for defines
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trDefineDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja definicji"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for typedefs
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trTypedefDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja definicji typów"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for enumeration types
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trEnumerationTypeDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja typów wyliczanych"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for functions
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trFunctionDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja funkcji"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trVariableDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja zmiennych"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace/group before
Packit Service 50c9f2
     *  the list of links to documented compounds
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trCompounds()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Struktury danych";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Komponenty";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the standard footer of each page and indicates when
Packit Service 50c9f2
     *  the page was generated
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trGeneratedAt(const char *date,const char *projName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result=(QCString)"Wygenerowano "+date;
Packit Service 50c9f2
      if (projName) result+=(QCString)" dla "+projName;
Packit Service 50c9f2
      result+=(QCString)" programem";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is put before a class diagram */
Packit Service 50c9f2
    QCString trClassDiagram(const char *clName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Diagram dziedziczenia dla "+clName;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\internal command is used. */
Packit Service 50c9f2
    QCString trForInternalUseOnly()
Packit Service 50c9f2
    { return "Tylko do użytku wewnętrznego."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\reimp command is used. */
Packit Service 50c9f2
    QCString trReimplementedForInternalReasons()
Packit Service 50c9f2
    { return "Reimplementowana z wewnętrzych przyczyn; nie dotyczy API."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\warning command is used. */
Packit Service 50c9f2
    QCString trWarning()
Packit Service 50c9f2
    { return "Ostrzeżenie"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\bug command is used. */
Packit Service 50c9f2
    QCString trBugsAndLimitations()
Packit Service 50c9f2
    { return "Błędy i ograniczenia"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\version command is used. */
Packit Service 50c9f2
    QCString trVersion()
Packit Service 50c9f2
    { return "Wersja"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\date command is used. */
Packit Service 50c9f2
    QCString trDate()
Packit Service 50c9f2
    { return "Data"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\return command is used. */
Packit Service 50c9f2
    QCString trReturns()
Packit Service 50c9f2
    { return "Zwraca"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\sa command is used. */
Packit Service 50c9f2
    QCString trSeeAlso()
Packit Service 50c9f2
    { return "Zobacz również"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\param command is used. */
Packit Service 50c9f2
    QCString trParameters()
Packit Service 50c9f2
    { return "Parametry"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\exception command is used. */
Packit Service 50c9f2
    QCString trExceptions()
Packit Service 50c9f2
    { return "Wyjątki"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is used in the title page of a LaTeX document. */
Packit Service 50c9f2
    QCString trGeneratedBy()
Packit Service 50c9f2
    { return "Wygenerowano przez"; }
Packit Service 50c9f2
Packit Service 50c9f2
    // new since 0.49-990307
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of page containing all the index of all namespaces. */
Packit Service 50c9f2
    QCString trNamespaceList()
Packit Service 50c9f2
    { return "Lista przestrzeni nazw"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as an introduction to the namespace list */
Packit Service 50c9f2
    QCString trNamespaceListDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Tutaj znajdują się wszystkie ";
Packit Service 50c9f2
      if (!extractAll) result+="udokumentowane ";
Packit Service 50c9f2
      result+="przestrzenie nazw wraz z ich krótkimi opisami:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the class documentation as a header before the list of all
Packit Service 50c9f2
     *  friends of a class
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trFriends()
Packit Service 50c9f2
    { return "Przyjaciele"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990405
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the class documentation as a header before the list of all
Packit Service 50c9f2
     * related classes
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trRelatedFunctionDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja przyjaciół i funkcji związanych"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990425
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a class/struct/union */
Packit Service 50c9f2
    QCString trCompoundReference(const char *clName,
Packit Service 50c9f2
                                    ClassDef::CompoundType compType,
Packit Service 50c9f2
                                    bool isTemplate)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Dokumentacja";
Packit Service 50c9f2
      if (isTemplate) result+=" szablonu";
Packit Service 50c9f2
      switch(compType)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        case ClassDef::Class:      result+=" klasy "; break;
Packit Service 50c9f2
        case ClassDef::Struct:     result+=" struktury "; break;
Packit Service 50c9f2
        case ClassDef::Union:      result+=" unii "; break;
Packit Service 50c9f2
        case ClassDef::Interface:  result+=" interfejsu "; break;
Packit Service 50c9f2
        case ClassDef::Protocol:   result+=" protokołu "; break;
Packit Service 50c9f2
        case ClassDef::Category:   result+=" kategorii "; break;
Packit Service 50c9f2
        case ClassDef::Exception:  result+=" wyjątku "; break;
Packit Service 50c9f2
        default: break;
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=(QCString)clName;
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a file */
Packit Service 50c9f2
    QCString trFileReference(const char *fileName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Dokumentacja pliku ";
Packit Service 50c9f2
      result+=fileName;
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a namespace */
Packit Service 50c9f2
    QCString trNamespaceReference(const char *namespaceName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Dokumentacja przestrzeni nazw ";
Packit Service 50c9f2
      result+=namespaceName;
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /* these are for the member sections of a class, struct or union */
Packit Service 50c9f2
    QCString trPublicMembers()
Packit Service 50c9f2
    { return "Metody publiczne"; }
Packit Service 50c9f2
    QCString trPublicSlots()
Packit Service 50c9f2
    { return "Sloty publiczne"; }
Packit Service 50c9f2
    QCString trSignals()
Packit Service 50c9f2
    { return "Sygnały"; }
Packit Service 50c9f2
    QCString trStaticPublicMembers()
Packit Service 50c9f2
    { return "Statyczne metody publiczne"; }
Packit Service 50c9f2
    QCString trProtectedMembers()
Packit Service 50c9f2
    { return "Metody chronione"; }
Packit Service 50c9f2
    QCString trProtectedSlots()
Packit Service 50c9f2
    { return "Sloty chronione"; }
Packit Service 50c9f2
    QCString trStaticProtectedMembers()
Packit Service 50c9f2
    { return "Statyczne metody chronione"; }
Packit Service 50c9f2
    QCString trPrivateMembers()
Packit Service 50c9f2
    { return "Metody prywatne"; }
Packit Service 50c9f2
    QCString trPrivateSlots()
Packit Service 50c9f2
    { return "Sloty prywatne"; }
Packit Service 50c9f2
    QCString trStaticPrivateMembers()
Packit Service 50c9f2
    { return "Statyczne metody prywatne"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this function is used to produce a comma-separated list of items.
Packit Service 50c9f2
     *  use generateMarker(i) to indicate where item i should be put.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trWriteList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result;
Packit Service 50c9f2
      int i;
Packit Service 50c9f2
      // the inherits list contain `numEntries' classes
Packit Service 50c9f2
      for (i=0;i
Packit Service 50c9f2
      {
Packit Service 50c9f2
        // use generateMarker to generate placeholders for the class links!
Packit Service 50c9f2
        result+=generateMarker(i); // generate marker for entry i in the list
Packit Service 50c9f2
                                   // (order is left to right)
Packit Service 50c9f2
Packit Service 50c9f2
        if (i!=numEntries-1)  // not the last entry, so we need a separator
Packit Service 50c9f2
        {
Packit Service 50c9f2
          if (i
Packit Service 50c9f2
            result+=", ";
Packit Service 50c9f2
          else                // the fore last entry
Packit Service 50c9f2
            result+=" i ";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in class documentation to produce a list of base classes,
Packit Service 50c9f2
     *  if class diagrams are disabled.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trInheritsList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Dziedziczy "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in class documentation to produce a list of super classes,
Packit Service 50c9f2
     *  if class diagrams are disabled.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trInheritedByList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Dziedziczona przez "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in member documentation blocks to produce a list of
Packit Service 50c9f2
     *  members that are hidden by this one.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trReimplementedFromList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Reimplementowana z "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in member documentation blocks to produce a list of
Packit Service 50c9f2
     *  all member that overwrite the implementation of this member.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trReimplementedInList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Reimplementowana w "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of namespaces. */
Packit Service 50c9f2
    QCString trNamespaceMembers()
Packit Service 50c9f2
    { return "Składowe przestrzeni nazw"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all namespace members */
Packit Service 50c9f2
    QCString trNamespaceMemberDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Tutaj znajduje się lista wszystkich ";
Packit Service 50c9f2
      if (!extractAll) result+="udokumentowanych ";
Packit Service 50c9f2
      result+="składowych wraz z odnośnikami do ";
Packit Service 50c9f2
      if (extractAll)
Packit Service 50c9f2
        result+="dokumentacji przestrzeni nazw dla każdej składowej:";
Packit Service 50c9f2
      else
Packit Service 50c9f2
        result+="przestrzeni nazw do których składowe te należą:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     *  index of all namespaces.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trNamespaceIndex()
Packit Service 50c9f2
    { return "Indeks przestrzeni nazw"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all namespaces.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trNamespaceDocumentation()
Packit Service 50c9f2
    { return "Dokumentacja przestrzeni nazw"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990522
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation before the list of all
Packit Service 50c9f2
     *  namespaces in a file.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trNamespaces()
Packit Service 50c9f2
    { return "Przestrzenie nazw"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990728
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put at the bottom of a class documentation page and is
Packit Service 50c9f2
     *  followed by a list of files that were used to generate the page.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trGeneratedFromFiles(ClassDef::CompoundType compType,
Packit Service 50c9f2
        bool single)
Packit Service 50c9f2
    { // here s is one of " Class", " Struct" or " Union"
Packit Service 50c9f2
      // single is true implies a single file
Packit Service 50c9f2
      QCString result=(QCString)"Dokumentacja dla te";
Packit Service 50c9f2
      switch(compType)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        case ClassDef::Class:      result+="j klasy"; break;
Packit Service 50c9f2
        case ClassDef::Struct:     result+="j struktury"; break;
Packit Service 50c9f2
        case ClassDef::Union:      result+="j unii"; break;
Packit Service 50c9f2
        case ClassDef::Interface:  result+="go interfejsu"; break;
Packit Service 50c9f2
        case ClassDef::Protocol:   result+="go protokołu"; break;
Packit Service 50c9f2
        case ClassDef::Category:   result+="j kategorii"; break;
Packit Service 50c9f2
        case ClassDef::Exception:  result+="go wyjątku"; break;
Packit Service 50c9f2
        default: break;
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=" została wygenerowana z plik";
Packit Service 50c9f2
      if (single) result+="u:"; else result+="ów:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990901
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used as the heading text for the retval command. */
Packit Service 50c9f2
    QCString trReturnValues()
Packit Service 50c9f2
    { return "Zwracane wartości"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is in the (quick) index as a link to the main page (index.html)
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trMainPage()
Packit Service 50c9f2
    { return "Strona główna"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in references to page that are put in the LaTeX
Packit Service 50c9f2
     *  documentation. It should be an abbreviation of the word page.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    QCString trPageAbbreviation()
Packit Service 50c9f2
    { return "str."; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-991003
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    QCString trSources()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Źródła";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trDefinedAtLineInSourceFile()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Definicja w linii @0 pliku @1.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trDefinedInSourceFile()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Definicja w pliku @0.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-991205
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    QCString trDeprecated()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Do wycofania";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.0.0
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is put before a collaboration diagram */
Packit Service 50c9f2
    QCString trCollaborationDiagram(const char *clName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Diagram współpracy dla "+clName+":";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! this text is put before an include dependency graph */
Packit Service 50c9f2
    QCString trInclDepGraph(const char *fName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Wykres zależności załączania dla "+fName+":";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! header that is put before the list of constructor/destructors. */
Packit Service 50c9f2
    QCString trConstructorDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Dokumentacja konstruktora i destruktora";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used in the file documentation to point to the corresponding sources. */
Packit Service 50c9f2
    QCString trGotoSourceCode()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Idź do kodu źródłowego tego pliku.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used in the file sources to point to the corresponding documentation. */
Packit Service 50c9f2
    QCString trGotoDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Idź do dokumentacji tego pliku.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\pre command */
Packit Service 50c9f2
    QCString trPrecondition()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Warunek wstępny";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\post command */
Packit Service 50c9f2
    QCString trPostcondition()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Warunek końcowy";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\invariant command */
Packit Service 50c9f2
    QCString trInvariant()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Niezmiennik";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text shown before a multi-line variable/enum initialization */
Packit Service 50c9f2
    QCString trInitialValue()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Wartość początkowa:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text used the source code in the file index */
Packit Service 50c9f2
    QCString trCode()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "kod źródłowy";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trGraphicalHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Graficzna hierarchia klas";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trGotoGraphicalHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Idź do graficznej hierarchii klas";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trGotoTextualHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Idź do tekstowej hierarchii klas";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trPageIndex()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Indeks stron";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.0
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    QCString trNote()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Nota";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trPublicTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Typy publiczne";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trPublicAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Pola danych";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Atrybuty publiczne";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trStaticPublicAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Statyczne atrybuty publiczne";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trProtectedTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Typy chronione";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trProtectedAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Atrybuty chronione";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trStaticProtectedAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Statyczne atrybuty chronione";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trPrivateTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Typy prywatne";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trPrivateAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Atrybuty prywatne";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trStaticPrivateAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Statyczne atrybuty prywatne";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.3
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! Used as a marker that is put before a todo item */
Packit Service 50c9f2
    QCString trTodo()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Do zrobienia";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used as the header of the todo list */
Packit Service 50c9f2
    QCString trTodoList()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Lista rzeczy do zrobienia";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.4
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    QCString trReferencedBy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Odwołania w";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trRemarks()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Spostrzeżenia";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trAttention()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Uwaga";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trInclByDepGraph()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Ten wykres pokazuje, które pliki bezpośrednio lub "
Packit Service 50c9f2
             "pośrednio załączają ten plik:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    QCString trSince()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Od";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.5
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! title of the graph legend page */
Packit Service 50c9f2
    QCString trLegendTitle()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Legenda wykresu";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! page explaining how the dot graph's should be interpreted */
Packit Service 50c9f2
    QCString trLegendDocs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return
Packit Service 50c9f2
        "Ta strona wyjaśnia jak interpretować wykresy, które są wygenerowane "
Packit Service 50c9f2
        "przez doxygen.

\n"

Packit Service 50c9f2
        "Rozważ następujący przykład:\n"
Packit Service 50c9f2
        "\\code\n"
Packit Service 50c9f2
        "/*! Klasa Niewidzialna z powodu okrojenia */\n"
Packit Service 50c9f2
        "class Niewidzialna { };\n\n"
Packit Service 50c9f2
        "/*! Klasa Okrojona, relacja dziedziczenia jest ukryta */\n"
Packit Service 50c9f2
        "class Okrojona : public Niewidzialna { };\n\n"
Packit Service 50c9f2
        "/* Klasa nie udokumentowana komentarzami doxygen */\n"
Packit Service 50c9f2
        "class Nieudokumentowana { };\n\n"
Packit Service 50c9f2
        "/*! Klasa, która jest dziedziczona publicznie */\n"
Packit Service 50c9f2
        "class PublicznaBaza : public Okrojona { };\n\n"
Packit Service 50c9f2
        "/*! Szablon klasy */\n"
Packit Service 50c9f2
        "template<class T> class Templ { };\n\n"
Packit Service 50c9f2
        "/*! Klasa, która jest dziedziczona przy użyciu dziedziczenia chronionego */\n"
Packit Service 50c9f2
        "class ChronionaBaza { };\n\n"
Packit Service 50c9f2
        "/*! Klasa, która jest dziedziczona prywatnie */\n"
Packit Service 50c9f2
        "class PrywatnaBaza { };\n\n"
Packit Service 50c9f2
        "/*! Klasa, która jest użyta przez klasę Dziedziczona */\n"
Packit Service 50c9f2
        "class Uzyta { };\n\n"
Packit Service 50c9f2
        "/*! Superklasa, która dziedziczy kilka innych klas */\n"
Packit Service 50c9f2
        "class Dziedziczona : public PublicznaBaza,\n"
Packit Service 50c9f2
        "                     protected ChronionaBaza,\n"
Packit Service 50c9f2
        "                     private PrywatnaBaza,\n"
Packit Service 50c9f2
        "                     public Nieudokumentowana,\n"
Packit Service 50c9f2
        "                     public Templ<int>\n"
Packit Service 50c9f2
        "{\n"
Packit Service 50c9f2
        "  private:\n"
Packit Service 50c9f2
        "    Uzyta *m_usedClass;\n"
Packit Service 50c9f2
        "};\n"
Packit Service 50c9f2
        "\\endcode\n"
Packit Service 50c9f2
        "Rezultat na następującym wykresie:"
Packit Service 50c9f2
        "

<center></center>

\n"
Packit Service 50c9f2
        "

\n"

Packit Service 50c9f2
        "Prostokąty w powyższym wykresie mają następujące znaczenie:\n"
Packit Service 50c9f2
        "

\n"
Packit Service 50c9f2
        "
    \n"
Packit Service 50c9f2
        "
  • Wypełniony czarny prostokąt reprezentuje strukturę lub klasę dla "
  • Packit Service 50c9f2
            "której został wygenerowany wykres.\n"
    Packit Service 50c9f2
            "
  • Prostokąt z czarną obwolutą oznacza udokumentowaną strukturę lub klasę.
  • \n"
    Packit Service 50c9f2
            "
  • Prostokąt z szarą obwolutą oznacza nieudokumentowaną strukturę lub klasę.
  • \n"
    Packit Service 50c9f2
            "
  • Prostokąt z czerwoną obwolutą oznacza udokumentowaną strukturę lub klasę dla\n"
  • Packit Service 50c9f2
            "której nie są pokazane wszystkie relacje dziedziczenia/zawierania. Wykres jest "
    Packit Service 50c9f2
            "okrojony, jeśli nie mieści się w określonych brzegach.\n"
    Packit Service 50c9f2
            "\n"
    Packit Service 50c9f2
            "

    \n"

    Packit Service 50c9f2
            "Strzałki mają następujące znaczenie:\n"
    Packit Service 50c9f2
            "

    \n"

    Packit Service 50c9f2
            "
      \n"
    Packit Service 50c9f2
            "
  • Ciemno niebieska strzałka jest używana do wizualizacji relacji "
  • Packit Service 50c9f2
            "dziedziczenia publicznego pomiędzy dwiema klasami.\n"
    Packit Service 50c9f2
            "
  • Ciemno zielona strzałka jest używana dla dziedziczenia chronionego.
  • \n"
    Packit Service 50c9f2
            "
  • Ciemno czerwona strzałka jest używana dla dziedziczenia prywatnego.
  • \n"
    Packit Service 50c9f2
            "
  • Fioletowa przerywana strzałka jest używana jeśli klasa jest zawarta "
  • Packit Service 50c9f2
            "lub użyta przez inną klasę. Strzałka jest podpisana zmienną(ymi) "
    Packit Service 50c9f2
            "przez które wskazywana klasa lub struktura jest dostępna. \n"
    Packit Service 50c9f2
            "\n";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! text for the link to the legend page */
    Packit Service 50c9f2
        QCString trLegend()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "legenda";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.0
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a marker that is put before a test item */
    Packit Service 50c9f2
        QCString trTest()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Test";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the header of the test list */
    Packit Service 50c9f2
        QCString trTestList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Lista testu";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a section header for IDL properties */
    Packit Service 50c9f2
        virtual QCString trProperties()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Właściwości";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a section header for IDL property documentation */
    Packit Service 50c9f2
        virtual QCString trPropertyDocumentation()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Dokumentacja właściwości";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.4
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used for Java interfaces in the summary section of Java packages */
    Packit Service 50c9f2
        virtual QCString trInterfaces()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Interfejsy";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used for Java classes in the summary section of Java packages */
    Packit Service 50c9f2
        virtual QCString trClasses()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Struktury Danych";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Klasy";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the title of a Java package */
    Packit Service 50c9f2
        virtual QCString trPackage(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"Pakiet "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Title of the package index page */
    Packit Service 50c9f2
        virtual QCString trPackageList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Lista Pakietów";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! The description of the package index page */
    Packit Service 50c9f2
        virtual QCString trPackageListDescription()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Oto lista pakietów wraz z krótkim opisem (o ile jest dostępny):";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! The link name in the Quick links header for each page */
    Packit Service 50c9f2
        virtual QCString trPackages()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Pakiety";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a chapter title for Latex & RTF output */
    Packit Service 50c9f2
        virtual QCString trPackageDocumentation()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Dokumentacja Pakietu";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Text shown before a multi-line define */
    Packit Service 50c9f2
        virtual QCString trDefineValue()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Wartość:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.5
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a marker that is put before a \\bug item */
    Packit Service 50c9f2
        virtual QCString trBug()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Błąd";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the header of the bug list */
    Packit Service 50c9f2
        virtual QCString trBugList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Lista błędów";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.6-20010422
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as ansicpg for RTF file */
    Packit Service 50c9f2
        virtual QCString trRTFansicp()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "1250";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as ansicpg for RTF fcharset */
    Packit Service 50c9f2
        virtual QCString trRTFCharSet()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "238";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as header RTF general index */
    Packit Service 50c9f2
        virtual QCString trRTFGeneralIndex()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Indeks";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trClass(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Klas" : "klas"));
    Packit Service 50c9f2
          result+=(singular ? "a" : "y");
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trFile(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Plik" : "plik"));
    Packit Service 50c9f2
          if (!singular)  result+="i";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trNamespace(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Przestrze" : "przestrze"));
    Packit Service 50c9f2
          result+=(singular ? "ń" : "nie");
    Packit Service 50c9f2
          result+=" nazw";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGroup(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Grupa" : "grupa"));
    Packit Service 50c9f2
          result+=(singular ? "a" : "y");
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPage(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Stron" : "stron"));
    Packit Service 50c9f2
          result+=(singular ? "a" : "y");
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trMember(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Składow" : "składow"));
    Packit Service 50c9f2
          result+=(singular ? "a" : "e");
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trField(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Pol" : "pol"));
    Packit Service 50c9f2
          result+=(singular ? "e" : "a");
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGlobal(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Global" : "global"));
    Packit Service 50c9f2
          result+=(singular ? "ny" : "ne");
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.7
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is generated when the \\author command is used and
    Packit Service 50c9f2
         *  for the author section in man pages. */
    Packit Service 50c9f2
        virtual QCString trAuthor(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Auto" : "auto"));
    Packit Service 50c9f2
          result += (singular) ? "r" : "rzy";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.11
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is put before the list of members referenced by a member
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trReferences()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Odwołuje się do";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.13
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
    Packit Service 50c9f2
        virtual QCString trImplementedFromList(int numEntries)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Implementuje "+trWriteList(numEntries)+".";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        virtual QCString trImplementedInList(int numEntries)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Implementowany w "+trWriteList(numEntries)+".";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.16
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used in RTF documentation as a heading for the Table
    Packit Service 50c9f2
         *  of Contents.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trRTFTableOfContents()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Spis treści";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.17
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as the header of the list of item that have been
    Packit Service 50c9f2
         *  flagged deprecated
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDeprecatedList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Lista elementów do wycofania";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.18
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a header for declaration section of the events found in
    Packit Service 50c9f2
         * a C# program
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trEvents()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Zdarzenia";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Header used for the documentation section of a class' events. */
    Packit Service 50c9f2
        virtual QCString trEventDocumentation()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Dokumentacja zdarzeń";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class types with package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageTypes()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Typy pakietu";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class functions with package
    Packit Service 50c9f2
         * scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageMembers()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Funkcje pakietu";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of static Java class functions with
    Packit Service 50c9f2
         *  package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trStaticPackageMembers()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Statyczne funkcje pakietu";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class variables with package
    Packit Service 50c9f2
         * scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageAttribs()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Atrybuty pakietu";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of static Java class variables with
    Packit Service 50c9f2
         * package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trStaticPackageAttribs()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Statyczne atrybuty pakietu";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.1
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used in the quick index of a class/file/namespace member list page
    Packit Service 50c9f2
         *  to link to the unfiltered list of all members.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trAll()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Wszystko";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Put in front of the call graph for a function. */
    Packit Service 50c9f2
        virtual QCString trCallGraph()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Oto graf wywołań dla tej funkcji:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.3
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This string is used as the title for the page listing the search
    Packit Service 50c9f2
         *  results.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchResultsTitle()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Wyniki szukania";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This string is put just before listing the search results. The
    Packit Service 50c9f2
         *  text can be different depending on the number of documents found.
    Packit Service 50c9f2
         *  Inside the text you can put the special marker $num to insert
    Packit Service 50c9f2
         *  the number representing the actual number of search results.
    Packit Service 50c9f2
         *  The @a numDocuments parameter can be either 0, 1 or 2, where the
    Packit Service 50c9f2
         *  value 2 represents 2 or more matches. HTML markup is allowed inside
    Packit Service 50c9f2
         *  the returned string.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchResults(int numDocuments)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          if (numDocuments==0)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Niestety żaden dokument nie pasuje do twojego zapytania.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else if (numDocuments==1)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Znaleziono 1 dokument pasujący do twojego zapytania.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          int count = numDocuments % 10;
    Packit Service 50c9f2
          if ((count>=2) && (count<=4))
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Znaleziono $num dokumenty pasujące do twojego zapytania. "
    Packit Service 50c9f2
                   "Najlepiej pasujące dokumenty wyświetlane są na początku listy.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Znaleziono $num dokumentów pasujących do twojego zapytania. "
    Packit Service 50c9f2
                   "Najlepiej pasujące dokumenty wyświetlane są na początku listy.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This string is put before the list of matched words, for each search
    Packit Service 50c9f2
         *  result. What follows is the list of words that matched the query.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchMatches()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Pasujące słowa:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.8
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in HTML as the title of page with source code for file filename
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSourceFile(QCString& filename)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Plik źródłowy " + filename;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.9
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the name of the chapter containing the directory
    Packit Service 50c9f2
         *  hierarchy.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirIndex()
    Packit Service 50c9f2
        { return "Struktura katalogów"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the name of the chapter containing the documentation
    Packit Service 50c9f2
         *  of the directories.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirDocumentation()
    Packit Service 50c9f2
        { return "Dokumentacja katalogów"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the title of the directory index and also in the
    Packit Service 50c9f2
         *  Quick links of a HTML page, to link to the directory hierarchy.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirectories()
    Packit Service 50c9f2
        { return "Katalogi"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns a sentences that introduces the directory hierarchy.
    Packit Service 50c9f2
         *  and the fact that it is sorted alphabetically per level
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirDescription()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Ta struktura katalogów posortowana jest z grubsza, "
    Packit Service 50c9f2
                 "choć nie całkowicie, alfabetycznie:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns the title of a directory page. The name of the
    Packit Service 50c9f2
         *  directory is passed via \a dirName.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirReference(const char *dirName)
    Packit Service 50c9f2
        { QCString result="Dokumentacja katalogu "; result+=dirName; return result; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns the word directory with or without starting capital
    Packit Service 50c9f2
         *  (\a first_capital) and in sigular or plural form (\a singular).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDir(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Katalog" : "katalog"));
    Packit Service 50c9f2
          if (! singular) result+="i";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.4.1
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is added to the documentation when the \\overload command
    Packit Service 50c9f2
         *  is used for a overloaded function.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trOverloadText()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "To jest metoda przeciążona, udostępniona dla wygody. "
    Packit Service 50c9f2
                 "Różni się od powyższej metody tylko zestawem akceptowanych argumentów.";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.4.6
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used to introduce a caller (or called-by) graph */
    Packit Service 50c9f2
        virtual QCString trCallerGraph()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Oto graf wywoływań tej funkcji:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace before the list
    Packit Service 50c9f2
         *  of documentation blocks for enumeration values
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trEnumerationValueDocumentation()
    Packit Service 50c9f2
        { return "Dokumentacja wyliczeń"; } //TODO check if it is correct translation
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.5.4 (mainly for Fortran)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! header that is put before the list of member subprograms (Fortran). */
    Packit Service 50c9f2
        virtual QCString trMemberFunctionDocumentationFortran()
    Packit Service 50c9f2
        { return "Dokumentacja składowej funkcji/podprogramu"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to the list of annotated data types (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundListFortran()
    Packit Service 50c9f2
        { return "Lista typów danych"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to all members of compounds (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundMembersFortran()
    Packit Service 50c9f2
        { return "Pola danych"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the annotated compound list (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundListDescriptionFortran()
    Packit Service 50c9f2
        { return "Tutaj znajdują się typy danych z ich krótkimi opisami:"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the page with all data types (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Tutaj znajduje się lista wszystkich ";
    Packit Service 50c9f2
          if (!extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="udokumentowanych ";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          result+="składowych typów danych";
    Packit Service 50c9f2
          result+=" wraz z odnośnikami do ";
    Packit Service 50c9f2
          if (!extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
             result+="dokumentacji struktury danych dla każdej składowej";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
             result+="typów danych, do których dana składowa należy:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter with the
    Packit Service 50c9f2
         * annotated compound index (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trCompoundIndexFortran()
    Packit Service 50c9f2
        { return "Indeks typów danych"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter containing
    Packit Service 50c9f2
         *  the documentation of all data types (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trTypeDocumentation()
    Packit Service 50c9f2
        { return "Dokumentacja typów danych"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file as a header before the
    Packit Service 50c9f2
         *  list of (global) subprograms (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprograms()
    Packit Service 50c9f2
        { return "Funkcje/podprogramy"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace before the list
    Packit Service 50c9f2
         *  of documentation blocks for subprograms (Fortran)
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprogramDocumentation()
    Packit Service 50c9f2
        { return "Dokumentacja funkcji/podprogramu"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace/group before
    Packit Service 50c9f2
         *  the list of links to documented compounds (Fortran)
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
         virtual QCString trDataTypes()
    Packit Service 50c9f2
        { return "Typy danych"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as the title of page containing all the index of all modules (Fortran). */
    Packit Service 50c9f2
        virtual QCString trModulesList()
    Packit Service 50c9f2
        { return "Lista modułów"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as an introduction to the modules list (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesListDescription(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Tutaj znajduje się lista wszystkich ";
    Packit Service 50c9f2
          if (!extractAll) result+="udokumentowanych ";
    Packit Service 50c9f2
          result+="modułów z ich krótkimi opisami:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as the title of the HTML page of a module/type (Fortran) */
    Packit Service 50c9f2
        virtual QCString trCompoundReferenceFortran(const char *clName,
    Packit Service 50c9f2
                                        ClassDef::CompoundType compType,
    Packit Service 50c9f2
                                        bool isTemplate)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Dokumentacja";
    Packit Service 50c9f2
          if (isTemplate) result+=" szablonu";
    Packit Service 50c9f2
          switch(compType)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            case ClassDef::Class:      result+=" modułu "; break;
    Packit Service 50c9f2
            case ClassDef::Struct:     result+=" typu "; break;
    Packit Service 50c9f2
            case ClassDef::Union:      result+=" unii "; break;
    Packit Service 50c9f2
            case ClassDef::Interface:  result+=" interfejsu "; break;
    Packit Service 50c9f2
            case ClassDef::Protocol:   result+=" protokołu "; break;
    Packit Service 50c9f2
            case ClassDef::Category:   result+=" kategorii "; break;
    Packit Service 50c9f2
            case ClassDef::Exception:  result+=" wyjątku "; break;
    Packit Service 50c9f2
            default: break;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          result+=(QCString)clName;
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! used as the title of the HTML page of a module (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModuleReference(const char *namespaceName)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Dokumentacja modułu ";
    Packit Service 50c9f2
          result+=namespaceName;
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to all members of modules. (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesMembers()
    Packit Service 50c9f2
        { return "Składowe modułu"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the page with all modules members (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesMemberDescription(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Tutaj znajduje się lista wszystkich ";
    Packit Service 50c9f2
          if (!extractAll) result+="udokumentowanych ";
    Packit Service 50c9f2
          result+="składowych modułów wraz z odnośnikami do ";
    Packit Service 50c9f2
          if (extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="dokumentacji modułu dla każdej składowej:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="modułów, do których składowe te należą:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter with the
    Packit Service 50c9f2
         *  index of all modules (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trModulesIndex()
    Packit Service 50c9f2
        { return "Indeks modułu"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trModule(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Moduł" : "moduł"));
    Packit Service 50c9f2
          if (!singular)  result+="y";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This is put at the bottom of a module documentation page and is
    Packit Service 50c9f2
         *  followed by a list of files that were used to generate the page.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType,
    Packit Service 50c9f2
            bool single)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          // single is true implies a single file
    Packit Service 50c9f2
          QCString result=(QCString)"Dokumentacja dla te";
    Packit Service 50c9f2
          switch(compType)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            case ClassDef::Class:      result+="go modułu"; break;
    Packit Service 50c9f2
            case ClassDef::Struct:     result+="go typu"; break;
    Packit Service 50c9f2
            case ClassDef::Union:      result+="j unii"; break;
    Packit Service 50c9f2
            case ClassDef::Interface:  result+="go interfejsu"; break;
    Packit Service 50c9f2
            case ClassDef::Protocol:   result+="go protokołu"; break;
    Packit Service 50c9f2
            case ClassDef::Category:   result+="j kategorii"; break;
    Packit Service 50c9f2
            case ClassDef::Exception:  result+="go wyjątku"; break;
    Packit Service 50c9f2
            default: break;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          result+=" została wygenerowana z plik";
    Packit Service 50c9f2
          if (single) result+="u:"; else result+="ów:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trType(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Typ" : "typ"));
    Packit Service 50c9f2
          if (!singular)  result+="y";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprogram(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Podprogram" : "podprogram"));
    Packit Service 50c9f2
          if (!singular)  result+="y";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! C# Type Constraint list */
    Packit Service 50c9f2
        virtual QCString trTypeConstraints()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Więzy typów"; //TODO check if it is correct translation
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.6.0 (mainly for the new search engine)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! directory relation for \a name */
    Packit Service 50c9f2
        virtual QCString trDirRelation(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Relacja "+ QCString(name);
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Loading message shown when loading search results */
    Packit Service 50c9f2
        virtual QCString trLoading()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Wczytywanie...";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Label used for search results in the global namespace */
    Packit Service 50c9f2
        virtual QCString trGlobalNamespace()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Globalna przestrzeń nazw";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Message shown while searching */
    Packit Service 50c9f2
        virtual QCString trSearching()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Szukanie...";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Text shown when no search results are found */
    Packit Service 50c9f2
        virtual QCString trNoMatches()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Brak dopasowań";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.6.3 (missing items for the directory pages)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! when clicking a directory dependency label, a page with a
    Packit Service 50c9f2
         *  table is shown. The heading for the first column mentions the
    Packit Service 50c9f2
         *  source file that has a relation to another file.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trFileIn(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"Plik w "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! when clicking a directory dependency label, a page with a
    Packit Service 50c9f2
         *  table is shown. The heading for the second column mentions the
    Packit Service 50c9f2
         *  destination file that is included.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trIncludesFileIn(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"Zawiera plik w "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /** Compiles a date string.
    Packit Service 50c9f2
         *  @param year Year in 4 digits
    Packit Service 50c9f2
         *  @param month Month of the year: 1=January
    Packit Service 50c9f2
         *  @param day Day of the Month: 1..31
    Packit Service 50c9f2
         *  @param dayOfWeek Day of the week: 1=Monday..7=Sunday
    Packit Service 50c9f2
         *  @param hour Hour of the day: 0..23
    Packit Service 50c9f2
         *  @param minutes Minutes in the hour: 0..59
    Packit Service 50c9f2
         *  @param seconds Seconds within the minute: 0..59
    Packit Service 50c9f2
         *  @param includeTime Include time in the result string?
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
    Packit Service 50c9f2
                                    int hour,int minutes,int seconds,
    Packit Service 50c9f2
                                    bool includeTime)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          static const char *days[]   = { "Pn","Wt","Śr","Cz","Pt","So","N" };
    Packit Service 50c9f2
          static const char *months[] = { "sty","lut","mar","kwi","maj","cze","lip","sie","wrz","paź","lis","gru" };
    Packit Service 50c9f2
          QCString sdate;
    Packit Service 50c9f2
          sdate.sprintf("%s, %d %s %d",days[dayOfWeek-1],day,months[month-1],year);
    Packit Service 50c9f2
          if (includeTime)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            QCString stime;
    Packit Service 50c9f2
            stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
    Packit Service 50c9f2
            sdate+=stime;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return sdate;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.7.5
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header for the page with bibliographic citations */
    Packit Service 50c9f2
        virtual QCString trCiteReferences()
    Packit Service 50c9f2
        { return "Odwołania do literatury"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Text for copyright paragraph */
    Packit Service 50c9f2
        virtual QCString trCopyright()
    Packit Service 50c9f2
        { return "Copyright"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header for the graph showing the directory dependencies */
    Packit Service 50c9f2
        virtual QCString trDirDepGraph(const char *name)
    Packit Service 50c9f2
        { return QCString("Wykres zależności katalogu dla ")+name+":"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.8.0
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Detail level selector shown for hierarchical indices */
    Packit Service 50c9f2
        virtual QCString trDetailLevel()
    Packit Service 50c9f2
        { return "poziom szczegółów"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Section header for list of template parameters */
    Packit Service 50c9f2
        virtual QCString trTemplateParameters()
    Packit Service 50c9f2
        { return "Parametry Szablonu"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
    Packit Service 50c9f2
        virtual QCString trAndMore(const QCString &number)
    Packit Service 50c9f2
        { return "i "+number+" więcej..."; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used file list for a Java enum */
    Packit Service 50c9f2
        virtual QCString trEnumGeneratedFromFiles(bool single)
    Packit Service 50c9f2
        { QCString result = "Dokumentacja dla tego wyliczenia została wygenerowana z plik";
    Packit Service 50c9f2
          if (single) result+="u:"; else result+="ów:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header of a Java enum page (Java enums are represented as classes). */
    Packit Service 50c9f2
        virtual QCString trEnumReference(const char *name)
    Packit Service 50c9f2
        { QCString result="Dokumentacja wyliczenia "; result+=name; return result; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used for a section containing inherited members */
    Packit Service 50c9f2
        virtual QCString trInheritedFrom(const char *members,const char *what)
    Packit Service 50c9f2
        { return QCString(members)+" dziedziczone z "+what; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header of the sections with inherited members specific for the
    Packit Service 50c9f2
         *  base class(es)
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trAdditionalInheritedMembers()
    Packit Service 50c9f2
        { return "Dodatkowe Dziedziczone Składowe"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
    };
    Packit Service 50c9f2
    Packit Service 50c9f2
    #endif