diff options
Diffstat (limited to 'src/translator_pl.h')
-rw-r--r-- | src/translator_pl.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/translator_pl.h b/src/translator_pl.h index 71ff0b3..54777ea 100644 --- a/src/translator_pl.h +++ b/src/translator_pl.h @@ -18,9 +18,9 @@ #ifndef TRANSLATOR_PL_H #define TRANSLATOR_PL_H -#include "translator.h" +#include "translator_adapter.h" -class TranslatorPolish : public Translator +class TranslatorPolish : public TranslatorAdapter_1_2_1 { public: @@ -427,47 +427,47 @@ class TranslatorPolish : public Translator return (QCString)"Diagram dziedziczenia dla "+clName; } - /*! this text is generated when the \internal command is used. */ + /*! this text is generated when the \\internal command is used. */ QCString trForInternalUseOnly() { return "Tylko do użytku wewnętrznego."; } - /*! this text is generated when the \reimp command is used. */ + /*! this text is generated when the \\reimp command is used. */ QCString trReimplementedForInternalReasons() { return "Reimplementowana z wewnętrzych przyczyn; nie dotyczy API."; } - /*! this text is generated when the \warning command is used. */ + /*! this text is generated when the \\warning command is used. */ QCString trWarning() { return "Ostrzeżenie"; } - /*! this text is generated when the \bug command is used. */ + /*! this text is generated when the \\bug command is used. */ QCString trBugsAndLimitations() { return "Błędy i ograniczenia"; } - /*! this text is generated when the \version command is used. */ + /*! this text is generated when the \\version command is used. */ QCString trVersion() { return "Wersja"; } - /*! this text is generated when the \date command is used. */ + /*! this text is generated when the \\date command is used. */ QCString trDate() { return "Data"; } - /*! this text is generated when the \author command is used. */ + /*! this text is generated when the \\author command is used. */ QCString trAuthors() { return "Autorzy"; } - /*! this text is generated when the \return command is used. */ + /*! this text is generated when the \\return command is used. */ QCString trReturns() { return "Powroty"; } - /*! this text is generated when the \sa command is used. */ + /*! this text is generated when the \\sa command is used. */ QCString trSeeAlso() { return "Zobacz również"; } - /*! this text is generated when the \param command is used. */ + /*! this text is generated when the \\param command is used. */ QCString trParameters() { return "Parametry"; } - /*! this text is generated when the \exception command is used. */ + /*! this text is generated when the \\exception command is used. */ QCString trExceptions() { return "Wyjątki"; } |