diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-19 20:28:02 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-19 20:28:02 (GMT) |
commit | 970ea53d322e183c44b062657aef74101a7602c1 (patch) | |
tree | d0216fc133019d007dd616568b5311b6e969eec6 /src | |
parent | 4677c707462be2cc359e8a10ade803edbfe7b7fa (diff) | |
download | Doxygen-970ea53d322e183c44b062657aef74101a7602c1.zip Doxygen-970ea53d322e183c44b062657aef74101a7602c1.tar.gz Doxygen-970ea53d322e183c44b062657aef74101a7602c1.tar.bz2 |
Release 1.1.1-20000319
Diffstat (limited to 'src')
-rw-r--r-- | src/translator_ru.h | 144 |
1 files changed, 144 insertions, 0 deletions
diff --git a/src/translator_ru.h b/src/translator_ru.h new file mode 100644 index 0000000..92c097c --- /dev/null +++ b/src/translator_ru.h @@ -0,0 +1,144 @@ +/****************************************************************************** + * + * $Id$ + * + * Copyright (C) 1997-1999 by Dimitri van Heesch. + * + * Permission to use, copy, modify, and distribute this software and its + * documentation under the terms of the GNU General Public License is hereby + * granted. No representations are made about the suitability of this software + * for any purpose. It is provided "as is" without express or implied warranty. + * See the GNU General Public License for more details. + * + * All output generated with Doxygen is not covered by this license. + * + */ + +#ifndef TRANSLATOR_RU_H +#define TRANSLATOR_RU_H + +#include "translator.h" + +class TranslatorRussian : public Translator +{ + public: + QCString latexBabelPackage() + { return "russian"; } + QCString trRelatedFunctions() + { + return "Связанные Функции"; + } + QCString trRelatedSubscript() + { + return "(Обратите внимание, что эти функции не члены класса)"; + } + QCString trDetailedDescription() + { + return "Детальное Описание"; + } + QCString trMemberTypedefDocumentation() + { + return "Описание Членов typedef"; + } + QCString trMemberEnumerationDocumentation() + { + return "Описание Членов Перечислимого Типа"; + } + QCString trMemberFunctionDocumentation() + { + return "Описание Функции Члена"; + } + QCString trMemberDataDocumentation() + { + return "Описание Данных Члена"; + } + QCString trMore() + { + return "Еще..."; + } + QCString trListOfAllMembers() + { + return "Cписок всех членов класса"; + } + QCString trMemberList() + { + return "Список Членов"; + } + QCString trThisIsTheListOfAllMembers() + { + return "Это полный список членов "; + } + QCString trIncludeIncludingInheritedMembers() + { + return ", включая все унаследованные методы."; + } + QCString trGeneratedAutomatically(const char *s) + { QCString result="Автоматически создано системой Doxygen"; + if (s) result+=(QCString)" для "+s; + result+=" из исходного текста."; + return result; + } + QCString trEnumName() + { + return "имя перечисления"; + } + QCString trEnumValue() + { + return "значение перечисления"; + } + QCString trDefinedIn() + { + return "определено в"; + } + QCString trVerbatimText(const char* f) + { + return (QCString)"Это прямая вставка текста из "+f+"включаемого файла"; + } + QCString trModules() + { + return "Модули"; + } + QCString trClassHierarchy() + { + return "Иерархия классов"; + } + QCString trCompoundList() + { + return "Составной список (compound list)"; + } + QCString trFileList() + { + return "Список Файлов"; + } + QCString trHeaderFiles() + { + return "Список Заголовочных Файлов"; + } + QCString trCompoundMembers() + { + return "Составные члены (compound members)"; + } + QCString trFileMembers() + { + return "Члены Файла"; + } + QCString trRelatedPages() + { + return "Связанные Страницы"; + } + QCString trExamples() + { + return "Примеры"; + } + QCString trSearch() + { + return "Поиск"; + } + QCString trClassHierarchyDescription() + { + return "Этот список (inheritance) тупо отсортирован, почти по алфафиту"; + } + +}; + +#endif |