/*
    Structorizer 
    A little tool which you can use to create Nassi-Schneiderman Diagrams (NSD)

    Copyright (C) 2009  Bob Fisch

    This file is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or any
    later version.

    This file is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

    This file is part of the "Structorizer" project. Please read the
    header below to get informed about the contributers of this file.

    ____  ___ ___  ____   ___   ____  ______   ____  ____   ______ 
   |    ||   |   ||    \ /   \ |    \|      | /    ||    \ |      |
    |  | | _   _ ||  o  )     ||  D  )      ||  o  ||  _  ||      |
    |  | |  \_/  ||   _/|  O  ||    /|_|  |_||     ||  |  ||_|  |_|
    |  | |   |   ||  |  |     ||    \  |  |  |  _  ||  |  |  |  |  
    |  | |   |   ||  |  |     ||  .  \ |  |  |  |  ||  |  |  |  |  
   |____||___|___||__|   \___/ |__|\_| |__|  |__|__||__|__|  |__|  

    Please do not edit this file by hand, if you are not absolutely sure about 
    what you are doing. 

    Please use the built-in tool "Translator" (File -> Translator) to edit your
    preferred language, then save your work and send it to me (bob@fisch.lu) for
    integration into the next release.
*/

/******************************************************************************************************
 *
 *      Author:         Yura Lebedev
 *
 *      Description:    The Russian language file
 *
 ******************************************************************************************************
 *
 *      Revision List
 *
 *      Author          Date        Description
 *      ------          ----		-----------
 *      Yura Lebedev    ?           Initial release
 *      Kay Gürtzig     2014.12.02  ExportOptionDialoge and further messages added
 *      Kay Gürtzig     2015.10.06  altPadRight added to Preferences dialog
 *      Kay Gürtzig     2015.10.14  InputBox-specific part enhanced
 *      Kay Gürtzig     2016.03.22  Enh. #84: messages related to FOR-IN loops added, several
 *                                  missing messages inserted
 *      Kay Gürtzig     2016.04.24  Issue #173: New mnemonic configurations added
 *      Kay Gürtzig     2016.09.04  Menu.menuPreferencesLanguage... key structure modified
 *      Kay Gürtzig     2016.09.13  Entries for InputBox and InputBoxFor revised (bugfix #241)
 *      Kay Gürtzig     2016.09.22  AnalyserPreferences numbering modified
 *      Kay Gürtzig     2016.10.11  Enh. 267: Menu.error15 renamed into Menu.error15_1
 *      Kay Gürtzig     2016.10.18  Enh. #267: Analyser check 15 reformulated.
 *      Kay Gürtzig     2016.12.14  Enh. #311: New menu "Debug"
 *
 ******************************************************************************************************
 *
 *      Email: elita.alegator@gmail.com
 *
 ******************************************************************************************************/
>>>
-----> Structorizer
-----[ Menu ]-----
// Menu "File"
Menu.menuFile.text=Файл
Menu.menuFile.mnemonic=ф
// Submenus of "File"
Menu.menuFileNew.text=Новый
Menu.menuFileOpen.text=Открыть ...
Menu.menuFileOpenRecent.text=Открыть последний файл ...
Menu.menuFileSave.text=Сохранить
Menu.menuFileSaveAs.text=Сохранить как ...
Menu.menuFileExport.text=Экспорт
// Submenu of "File -> Export"
Menu.menuFileExportPicture.text=Изображение ...
Menu.menuFileExportCode.text=Язык (код) ...
Menu.menuFileExportPicturePNG.text=
Menu.menuFileExportPicturePNGmulti.text=
Menu.menuFileExportPictureEMF.text=
Menu.menuFileExportPictureSWF.text=
Menu.menuFileExportPicturePDF.text=
Menu.menuFileExportPictureSVG.text=
Menu.lbFileExportCodeFavorite.text=
Menu.menuFileExportCodeFavorite.tooltip=
Menu.menuFileImport.text=Импорт
// Submenu of "File -> Import"
Menu.menuFileImportPascal.text=Язык Pascal ...
Menu.menuFilePrint.text=Печать ...
Menu.menuFileArrange.text=Распределить к Arranger
Menu.menuFileTranslator.text=Переводчик ...
Menu.menuFileQuit.text=Выход
// Menu "Edit"
Menu.menuEdit.text=Правка
Menu.menuEdit.mnemonic=р
// Submenu of "Edit"
Menu.menuEditUndo.text=Отменить
Menu.menuEditRedo.text=Повторить
Menu.menuEditCut.text=Вырезать
Menu.menuEditCopy.text=Копировать
Menu.menuEditPaste.text=Вставить
Menu.menuEditUpgradeTurtle.text=
Menu.menuEditUpgradeTurtle.tooltip=
Menu.menuEditDowngradeTurtle.text=
Menu.menuEditDowngradeTurtle.tooltip=
Menu.menuEditCopyDiagramPNG.text=Копировать изображение PNG
Menu.menuEditCopyDiagramEMF.text=Копировать изображение EMF
// Menu "Diagram"
Menu.menuDiagram.text=Схема
Menu.menuDiagram.mnemonic=с
// Submenus of "Diagram"
Menu.menuDiagramAdd.text=Добавить
// Submenu "Diagram -> Add -> Before"
Menu.menuDiagramAddBefore.text=До
// Submenus for adding Elements "Before"
Menu.menuDiagramAddBeforeInst.text=Инструкция
Menu.menuDiagramAddBeforeAlt.text=Оператор ветвления IF
Menu.menuDiagramAddBeforeCase.text=Оператор множественного выбора CASE
Menu.menuDiagramAddBeforeFor.text=Цикл FOR
Menu.menuDiagramAddBeforeWhile.text=Цикл WHILE
Menu.menuDiagramAddBeforeRepeat.text=Цикл REPEAT
Menu.menuDiagramAddBeforeForever.text=Цикл ENDLESS
Menu.menuDiagramAddBeforeCall.text=Вызов процедуры
Menu.menuDiagramAddBeforeJump.text=Переход (выход)
Menu.menuDiagramAddBeforePara.text=Паралельный процесс
// Submenu "Diagram -> Add -> After"
Menu.menuDiagramAddAfter.text=После
// Submenus for adding Elements "After"
Menu.menuDiagramAddAfterInst.text=Инструкция
Menu.menuDiagramAddAfterAlt.text=Оператор ветвления IF
Menu.menuDiagramAddAfterCase.text=Оператор множественного выбора CASE
Menu.menuDiagramAddAfterFor.text=Цикл FOR
Menu.menuDiagramAddAfterWhile.text=Цикл WHILE
Menu.menuDiagramAddAfterRepeat.text=Цикл REPEAT
Menu.menuDiagramAddAfterForever.text=Цикл ENDLESS
Menu.menuDiagramAddAfterCall.text=Вызов процедуры
Menu.menuDiagramAddAfterJump.text=Переход (выход)
Menu.menuDiagramAddAfterPara.text=Паралельный процесс
Menu.menuDiagramEdit.text=Изменить
Menu.menuDiagramDelete.text=Удалить
Menu.menuDiagramMoveUp.text=Вверх
Menu.menuDiagramMoveDown.text=Вниз
Menu.menuDiagramTransmute.text=Превратить
Menu.menuDiagramCollapse.text=Сжать
Menu.menuDiagramExpand.text=Увеличить
// Diagram Appearance
Menu.menuDiagramType.text=Тип
Menu.menuDiagramTypeProgram.text=Программа
Menu.menuDiagramTypeFunction.text=Подпрограмма
Menu.menuDiagramNice.text=Поля диаграммы
Menu.menuDiagramComment.text=Показывать комментарии
Menu.menuDiagramSwitchComments.text=Обменить тексты/комментарии
Menu.menuDiagramCommentsPlusText.text=Тексты и комментарии
Menu.menuDiagramSwitchTCTooltip.text=
Menu.menuDiagramMarker.text=Подсвечивать переменные
Menu.menuDiagramDIN.text=DIN
Menu.menuDiagramAnalyser.text=Анализировать схему
Menu.menuDiagramWheel.text=Сжать с колесой?
// Menu "Preferences"
Menu.menuPreferences.text=Настройки
Menu.menuPreferences.mnemonic=н
// Submenu of "Preferences"
Menu.menuPreferencesNotifyUpdate.text=Известить о новых версиях
Menu.menuPreferencesNotifyUpdate.tooltip=
Menu.menuPreferencesFont.text=Шрифт ...
Menu.menuPreferencesColors.text=Цвет ...
Menu.menuPreferencesOptions.text=Структур ...
Menu.menuPreferencesParser.text=Парсер ...
Menu.menuPreferencesAnalyser.text=Анализатор ...
Menu.menuPreferencesSaving.text=Сохранение ...
Menu.menuPreferencesExport.text=Экспорт ...
Menu.menuPreferencesImport.text=Импорт ...
Menu.menuPreferencesLanguage.text=Язык
Menu.menuPreferencesLanguageItems.en.text=Английский
Menu.menuPreferencesLanguageItems.de.text=Германский
Menu.menuPreferencesLanguageItems.fr.text=Француский
Menu.menuPreferencesLanguageItems.nl.text=Голландский
Menu.menuPreferencesLanguageItems.lu.text=Люксембургский
Menu.menuPreferencesLanguageItems.es.text=Испанский
Menu.menuPreferencesLanguageItems.it.text=Итальянский
Menu.menuPreferencesLanguageItems.pt_br.text=Португальский (бразильский)
Menu.menuPreferencesLanguageItems.zh-cn.text=Китайский (упрощен)
Menu.menuPreferencesLanguageItems.zh-tw.text=Китайский (традиционен)
Menu.menuPreferencesLanguageItems.cz.text=Чeшский
Menu.menuPreferencesLanguageItems.ru.text=Русский
Menu.menuPreferencesLanguageItems.pl.text=Польский
Menu.menuPreferencesLanguageFromFile.text=Из файла ...
Menu.menuPreferencesLanguageFromFile.tooltip=

Menu.menuPreferencesLookAndFeel.text=Внешний вид

Menu.menuPreferencesSave.text=Bсе настройки ...
Menu.menuPreferencesSaveAll.text=Сохранить
Menu.menuPreferencesSaveDump.text=Сохранить как ...
Menu.menuPreferencesSaveLoad.text=Ввезти из файла ...

// Menu "View" (not in use right now!)
Menu.menuView.text=

// Menu "Debug"
Menu.menuDebug.text=Выполнение
Menu.menuDebug.mnemonic=в
// Submenu of "Debug"
Menu.menuDebugTurtle.text=Открыть Turtleizer ...
Menu.menuDebugExecute.text=Выполнить ...
Menu.menuDebugDropBrkpts.text=Удалить все точки останова
Menu.menuDebugBreakpoint.text=Сменить точку останова
Menu.menuDebugBreakTrigger.text=
Menu.menuDebugDisable.text=Подавить

// Menu "Help"
Menu.menuHelp.text=Помощь
Menu.menuHelp.mnemonic=п
// Submenu of "Help"
Menu.menuHelpOnline.text=Руководство пользователя ...
Menu.menuHelpAbout.text=О программе ...
Menu.menuHelpUpdate.text=Обновления ...

// Dialog messages
Menu.msgDialogExpCols.text=
Menu.msgDialogExpRows.text=
Menu.msgOverwriteFile.text=
Menu.msgOverwriteFiles.text=
Menu.btnConfirmOverwrite.text=
Menu.msgRepeatSaveAttempt.text=
Menu.msgErrorFileSave.text=
Menu.msgBreakTriggerPrompt.text=
Menu.msgBreakTriggerIgnored.text=
Menu.msgOpenLangFile.text=
Menu.msgLangFile.text=
Menu.msgGotoHomepage.text=
Menu.msgTitleError.text=
Menu.msgTitleLoadingError.text=
Menu.msgTitleParserError.text=
Menu.msgTitleURLError.text=
Menu.msgTitleQuestion.text=
Menu.msgTitleOpen.text=
Menu.msgTitleSave.text=
Menu.msgTitleSaveAs.text=
Menu.msgTitleImport.text=
Menu.msgTitleWrongInput.text=
Menu.msgSaveChanges.text=
Menu.msgErrorImageSave.text=
Menu.msgErrorUsingGenerator.text=
Menu.msgErrorNoFile.text=
Menu.msgBrowseFailed.text=
Menu.msgRefactoringOffer.text=
Menu.lblRefactorNone.text=
Menu.lblRefactorCurrent.text=
Menu.lblRefactorAll.text=
Menu.msgReplacementsDone.text=
Menu.msgNewerVersionAvail.text=
Menu.msgUpdateInfoHint.text=
Menu.lblOk.text=
Menu.lblSuppressUpdateHint.text=
Menu.lblHint.txt=

// Error messages for analyser
// warning_1 must be consistent with Menu.menuDiagram.text and Menu.menuDiagramSwitchComments.text!
Menu.warning_1.text=ВНИМАНИЕ: ТЕКСТЫ ОБМЕНЕНЫ С КОММЕНТАРИЯМИ! → меню "Обменить тексты/комментарии"
Menu.error01_1.text=ВНИМАНИЕ: Не обнаружено переменной цикла ...
Menu.error01_2.text=ВНИМАНИЕ: Обнаружено более одной переменной цикла: «%»
Menu.error01_3.text=Вы не можете изменить переменную цикла «%» внутри цикла!
Menu.error02.text=Не обноружено изменение переменных в условии. Возможен бесконечный цикл ...
Menu.error03_1.text=Переменная «%» не была инициализирована!
Menu.error03_2.text=Переменная «%» возможно не была инициализирована!
Menu.error04.text=Вы не можете использовать оператор IF с пустым блоком TRUE!
Menu.error05.text=Переменная «%» должна быть написана в верхнем регистре!
Menu.error06.text=Имя программы «%» должно быть написано в верхнем регистре!
Menu.error07_1.text=«%» не является допустимым названием программы или метода!
Menu.error07_2.text=«%» не является допустимым названием параметра!
Menu.error07_3.text=«%» не является допустимым названием переменной!
Menu.error08.text=Не разрешается делать присваивание внутри условия.
Menu.error09.text=Ваша программа («%») не может иметь такое же название как переменная или параметр!
Menu.error10_1.text=Единственная инструкция не должна содержать инструкций ввода/вывода и заданий!
Menu.error10_2.text=Единственная инструкция не должна содержать входные и выходные инструкции!
Menu.error10_3.text=Единственная инструкция не должна содержать входные инструкции и задания!
Menu.error10_4.text=Единственная инструкция не должна содержать выходные инструкции и задания!
Menu.error11.text=Ошибка присвоения значения. Пожалуйста, проверьте эту инструкцию!
Menu.error12.text=Параметр «%» должен начинаться с маленькой буквы "р", а только затем заглавные буквы!
Menu.error13_1.text=Ваша функция не возвращает никакого результата!
Menu.error13_2.text=Ваша функция может не вернуть результат!
Menu.error13_3.text=Ваша функция использловает разные методы отдачи вместе: «%»!
Menu.error14_1.text=Отдельные сведения считающего цикла не подходят к тексту!
Menu.error14_2.text=Шаг «%» считающего цикла не является постоянным целым числом!
Menu.error14_3.text=
Menu.error15_1.text=Вызов процедуры не имеет форм [ <var> <- ] <routine_name>(<arg_list>)!
Menu.error15_2.text=
Menu.error16_1.text=Выходу надо быть пустым или начать со одном из ключевых слов %!
Menu.error16_2.text=Инструкция return должна (разве только на конце диаграммы) быть элементом типа Выход (Переход)!
Menu.error16_3.text=Инструкции типов exit, leave или break должны быть элементами типа Выход (Переход)!
Menu.error16_4.text=Выход не может перепрыгнуть более этажов чем число окружаещемых цикл (%)!
Menu.error16_5.text=Непосредственное возвращение (return) из паралельной отрасли недопустимо!
Menu.error16_6.text=Недопустимый параметр для этого типа Выхода - здесь надо целое число.
Menu.error16_7.text=
Menu.error17.text=Конкурирующий доступ к переменной «%» из разных паралельных отраслей рискует консистенцией!
Menu.error18.text=
Menu.error19.text=
Menu.error20.text=

-----[ AnalyserPreferences ]-----
AnalyserPreferences.title=Настройки анализатора
AnalyserPreferences.contentPanel.tab.0=Алгоритм
AnalyserPreferences.contentPanel.tab.1=Названия / соглашения
AnalyserPreferences.checkboxes.1.text=Проверять изменение переменной цикла.
AnalyserPreferences.checkboxes.2.text=Проверять конец цикла (возможен бесконечный цикл!).
AnalyserPreferences.checkboxes.3.text=Проверять неинициализированные переменные.
AnalyserPreferences.checkboxes.4.text=Проверять неправильное использлование оператора IF.
AnalyserPreferences.checkboxes.5.text=Проверять переменные на наличие имен в верхнем регистре. (LUX/MEN)
AnalyserPreferences.checkboxes.6.text=Проверять имя программы и функций на наличие имен в верхнем регистре. (LUX/MEN)
AnalyserPreferences.checkboxes.7.text=Проверять правильность идентификаторов.
AnalyserPreferences.checkboxes.8.text=Проверять присваивание в условиях.
AnalyserPreferences.checkboxes.9.text=Проверять, что имя программы/функций не совпадает с любым другим идентификатором.
AnalyserPreferences.checkboxes.10.text=Проверять инструкции с несколькими командами.
AnalyserPreferences.checkboxes.11.text=Проверять ошибки присваивания.
AnalyserPreferences.checkboxes.12.text=Проверять правильность имени параметра. (LUX/MEN)
AnalyserPreferences.checkboxes.13.text=Проверять всегда ли возращается результат.
AnalyserPreferences.checkboxes.14.text=Проверять отдельные сведения считающего цикла подходят ли к тексту.
AnalyserPreferences.checkboxes.15.text=Проверять что каждый Вызов подходящен и вызыванная подпрограмма найдётся.
AnalyserPreferences.checkboxes.16.text=Проверять что элементы типа Выход использлованы корректным образоM.
AnalyserPreferences.checkboxes.17.text=Проверять что не есть конкурирующий паралельный доступ к переменными.
AnalyserPreferences.checkboxes.18.text=
AnalyserPreferences.checkboxes.19.text=
AnalyserPreferences.checkboxes.20.text=
AnalyserPreferences.okButton.text=OK



-----[ Diagram ]-----
// Buttons
// I/O
Editor.btnNew.tooltip=Создать новую пустую схему.
Editor.btnOpen.tooltip=Открыть схему.
Editor.btnSave.tooltip=Сохранить схему.
// InsertBefore
Editor.btnBeforeInst.tooltip=Добавить новую инструкцию перед выбранным элементом.
Editor.btnBeforeAlt.tooltip=Добавить оператор IF перед выбранным элементом.
Editor.btnBeforeFor.tooltip=Добавить цикл FOR перед выбранным элементом.
Editor.btnBeforeWhile.tooltip=Добавить цикл WHILE перед выбранным элементом.
Editor.btnBeforeRepeat.tooltip=Добавить цикл REPEAT перед выбранным элементом.
Editor.btnBeforeForever.tooltip=Добавить цикл ENDLESS перед выбранным элементом.
Editor.btnBeforeCall.tooltip=Добавить новый вызов процедуры перед выбранным элементом.
Editor.btnBeforeJump.tooltip=Добавить новый выход JUMP перед выбранным элементом.
Editor.btnBeforeCase.tooltip=Добавить новый оператор CASE перед выбранным элементом.
Editor.btnBeforePara.tooltip=Добавить новый "Параллельный процесс" перед выбранным элементом.
// InsertAfter
Editor.btnAfterInst.tooltip=Добавить новую инструкцию после выбранного элемента.
Editor.btnAfterAlt.tooltip=Добавить оператор IF после выбранного элемента.
Editor.btnAfterFor.tooltip=Добавить цикл FOR после выбранного элемента.
Editor.btnAfterWhile.tooltip=Добавить цикл WHILE после выбранного элемента.
Editor.btnAfterRepeat.tooltip=Добавить цикл REPEAT после выбранного элемента.
Editor.btnAfterForever.tooltip=Добавить цикл ENDLESS после выбранного элемента.
Editor.btnAfterCall.tooltip=Добавить новый "вызов процедуры" после выбранного элемента.
Editor.btnAfterJump.tooltip=Добавить новый выход JUMP после выбранного элемента.
Editor.btnAfterCase.tooltip=Добавить новый оператор CASE после выбранного элемента.
Editor.btnAfterPara.tooltip=Добавить новый "Параллельный процесс" после выбранного элемента.
// undo & redo
Editor.btnUndo.tooltip=Отменить последнее действие.
Editor.btnRedo.tooltip=Повторить последнее действие.
// copy & paste
Editor.btnCut.tooltip=Вырезать выбранный элемент.
Editor.btnCopy.tooltip=Скопировать выбранный элемент.
Editor.btnPaste.tooltip=Вставить скопированный или вырезанный элемент.
// style
Editor.btnNice.tooltip=Переключить визуальный стиль схемы.
Editor.btnFunction.tooltip=Подпрограмма (закругленные углы).
Editor.btnProgram.tooltip=Программа (прямые углы).
// editing
Editor.btnEdit.tooltip=Изменить выбранный элемент.
Editor.btnDelete.tooltip=Удалить выбранный элемент.
Editor.btnMoveUp.tooltip=Переместить выбранный элемент на одну позицию вверх.
Editor.btnMoveDown.tooltip=Переместить выбранный элемент на одну позицию вниз.
Editor.btnTransmute.tooltip=
//printing
Editor.btnPrint.tooltip=Распечатать схему.
Editor.btnArrange.tooltip=
// font
Editor.btnFontUp.tooltip=Увеличить размера шрифта.
Editor.btnFontDown.tooltip=Уменьшить размера шрифта.
// copyright
Editor.btnAbout.tooltip=Показать информационное сообщение о Structorizer.
// colors
Editor.btnColor0.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor1.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor2.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor3.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor4.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor5.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor6.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor7.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor8.tooltip=Окрасить выбранный элемент этим цветом.
Editor.btnColor9.tooltip=Окрасить выбранный элемент этим цветом.
// collapsing
Editor.btnCollapse.tooltip=Сжать выбранный элемент.
Editor.btnExpand.tooltip=Увеличить выбранный элемент .
Editor.btnDisable.tooltip=
// turtleizer & executor
Editor.btnTurtle.tooltip=Открыть Turtleizer ...
Editor.btnMake.tooltip=Выполнить ...
Editor.btnDropBrk.tooltip=Удалить все остановочные точки
// Popup menu
Editor.popupCut.text=Вырезать
Editor.popupCopy.text=Копировать
Editor.popupPaste.text=Вставить
Editor.popupAdd.text=Добавить
// Submenu of "Add"
Editor.popupAddBefore.text=До
// Submenus of "Add -> Before"
Editor.popupAddBeforeInst.text=Инструкцию
Editor.popupAddBeforeAlt.text=Ветвление IF
Editor.popupAddBeforeCase.text=Выбор CASE
Editor.popupAddBeforeFor.text=Цикл FOR loop
Editor.popupAddBeforeWhile.text=Цикл WHILE loop
Editor.popupAddBeforeRepeat.text=Цикл REPEAT loop
Editor.popupAddBeforeForever.text=Цикл ENDLESS loop
Editor.popupAddBeforeCall.text=Вызов процедуры
Editor.popupAddBeforeJump.text=Переход (Выход)
Editor.popupAddBeforePara.text=Параллельный процесс
// After
Editor.popupAddAfter.text=После
// Submenus of "Add -> After"
Editor.popupAddAfterInst.text=Инструкцию
Editor.popupAddAfterAlt.text=Ветвление IF
Editor.popupAddAfterCase.text=Выбор CASE
Editor.popupAddAfterFor.text=Цикл FOR
Editor.popupAddAfterWhile.text=Цикл WHILE
Editor.popupAddAfterRepeat.text=Цикл REPEAT
Editor.popupAddAfterForever.text=Цикл ENDLESS
Editor.popupAddAfterCall.text=Вызов процедуры
Editor.popupAddAfterJump.text=Переход (Выход)
Editor.popupAddAfterPara.text=Параллельный процесс
// Edit
Editor.popupEdit.text=Изменить
Editor.popupDelete.text=Удалить
Editor.popupMoveUp.text=Переместить вверх
Editor.popupMoveDown.text=Переместить вниз
Editor.popupTransmute.text=Превратить
// Collapsing
Editor.popupCollapse.text=Сжать
Editor.popupExpand.text=Увеличить
Editor.popupDisable.text=
// Breakpoint
Editor.popupBreakpoint.text=Сменить точку останова
Editor.popupBreakTrigger.text=

-----[ InputBox ]-----
InputBox.title=
InputBox.lblText.text=Пожалуйста, введите текст
InputBox.lblText.tooltip=
InputBox.lblComment.text=Комментарий
InputBox.lblComment.tooltip=
InputBox.txtText.tooltip=Содержание элемента.
InputBox.txtComment.tooltip=Комментарий элемента.
InputBox.btnOK.text=OK
InputBox.btnOK.tooltip=Подтвердить ваш выбор.
InputBox.btnCancel.text=Отменить
InputBox.btnCancel.tooltip=Отменить ваш выбор.
InputBox.chkDisabled.text=
InputBox.chkBreakpoint.text=Точка останова?
InputBox.lblBreakTriggerText.text=
InputBox.lblText.text[elementType:Alternative]=Пожалуйста, введите условие
InputBox.lblText.text[elementType:While]=Пожалуйста, введите условие входа
InputBox.lblText.text[elementType:Repeat]=Пожалуйста, введите условие выхода
InputBox.lblText.text[elementType:Case]=Пожалуйста, введите выражение выбора и случайные константы (построчно)
InputBox.lblText.text[elementType:Parallel]=
InputBox.title[elementType:Root]=Изменить название Программы...
InputBox.title[elementType:Function]=Изменить название и парaметры Подпрограммы...
InputBox.title[elementType:Instruction,getInsertionType():insert]=Добавить новую инструкцию...
InputBox.title[elementType:Alternative,getInsertionType():insert]=Добавить оператор IF...
InputBox.title[elementType:Case,getInsertionType():insert]=Добавить новый оператор CASE...
InputBox.title[elementType:Forever,getInsertionType():insert]=Добавить цикл ENDLESS...
InputBox.title[elementType:Repeat,getInsertionType():insert]=Добавить цикл REPEAT...
InputBox.title[elementType:While,getInsertionType():insert]=Добавить цикл WHILE...
InputBox.title[elementType:Call,getInsertionType():insert]=Добавить новый вызов процедуры...
InputBox.title[elementType:Jump,getInsertionType():insert]=Добавить новый JUMP...
InputBox.title[elementType:Parallel,getInsertionType():insert]=Добавить новый "Параллельный процесс"...
InputBox.title[elementType:Instruction,getInsertionType():update]=Изменить инструкцию...
InputBox.title[elementType:Alternative,getInsertionType():update]=Изменить оператор IF...
InputBox.title[elementType:Case,getInsertionType():update]=Изменить оператор CASE...
InputBox.title[elementType:Forever,getInsertionType():update]=Изменить цикл ENDLESS...
InputBox.title[elementType:Repeat,getInsertionType():update]=Изменить цикл REPEAT...
InputBox.title[elementType:While,getInsertionType():update]=Изменить цикл WHILE...
InputBox.title[elementType:Call,getInsertionType():update]=Изменить вызов процедуры...
InputBox.title[elementType:Jump,getInsertionType():update]=Изменить JUMP...
InputBox.title[elementType:Parallel,getInsertionType():update]=Изменить "Параллельный процесс"...

-----[ InputBox For ]-----
InputBoxFor.title[getInsertionType():insert]=Добавить новый цикл FOR...
InputBoxFor.title[getInsertionType():update]=Изменить цикл FOR...
InputBoxFor.rbCounting.tooltip=
InputBoxFor.rbTraversing.tooltip=
InputBoxFor.lblVariable.text=Переменная цикла
InputBoxFor.lblStartVal.text=Исходная величина
InputBoxFor.lblEndVal.text=Конечная величина
InputBoxFor.lblIncr.text=Шаг
InputBoxFor.lblTraversingVariable.text=
InputBoxFor.lblValueList.text=
InputBoxFor.chkTextInput.text=Изменить как текст
InputBoxFor.chkTextInput.tooltip=
InputBoxFor.lblComment.text=Комментарий
InputBoxFor.lblComment.tooltip=Комментарий элемента.
InputBoxFor.txtText.tooltip=Заглавие цикла текстом.
InputBoxFor.txtComment.tooltip=Комментарий элемента.
InputBoxFor.btnOK.text=OK
InputBoxFor.btnOK.tooltip=Подтвердить ваш выбор.
InputBoxFor.btnCancel.text=Отменить
InputBoxFor.btnCancel.tooltip=Отменить ваш выбор.
InputBoxFor.chkDisabled.text=
InputBoxFor.chkBreakpoint.text=Точка останова?
InputBoxFor.lblBreakTriggerText.text=
InputBoxFor.msgInvalidIncrement.text=
InputBoxFor.msgMissingBrace1.text=
InputBoxFor.msgMissingBrace2.text=
InputBoxFor.msgSeparateWithComma.text=
InputBoxFor.msgEnsureReturnedArray.text=
InputBoxFor.msgEnsureVariableIsArray.text=
InputBoxFor.msgEnterValueList.text=
InputBoxFor.msgDiscardData.text=
InputBoxFor.msgAttention.text=

-----[ Preferences ]-----
Preferences.title=Настройка структур
Preferences.pnlAlt.border=Оператор IF
Preferences.pnlAlt.tooltip=
Preferences.lblAltT.text=Метка TRUE
Preferences.lblAltT.tooltip=Метка левой стороны.
Preferences.lblAltF.text=Метка FALSE
Preferences.lblAltF.tooltip=Метка правой стороны.
Preferences.lblAltContent.text=Содержимое по умолчанию
Preferences.lblAltContent.tooltip=Содержимое по умолчанию для IF.
Preferences.altPadRight.text=Расширять FALSE
Preferences.pnlCase.border=Оператор CASE
Preferences.pnlCase.tooltip=
Preferences.lblCase.text=Содержимое по умолчанию
Preferences.lblCase.tooltip=Содержимое по умолчанию для CASE.
Preferences.pnlFor.border=Цикл FOR
Preferences.pnlFor.tooltip=
Preferences.lblFor.text=Содержимое по умолчанию
Preferences.lblFor.tooltip=Содержимое по умолчанию для FOR.
Preferences.pnlWhile.border=Цикл WHILE
Preferences.pnlWhile.tooltip=
Preferences.lblWhile.text=Содержимое по умолчанию
Preferences.lblWhile.tooltip=Содержимое по умолчанию для WHILE.
Preferences.pnlRepeat.border=Цикл REPEAT
Preferences.pnlRepeat.tooltip=
Preferences.lblRepeat.text=Содержимое по умолчанию
Preferences.lblRepeat.tooltip=Содержимое по умолчанию для REPEAT.
Preferences.btnOK.text=OK
Preferences.btnOK.tooltip=Подтвердите свой выбор.


-----[ About ]-----
About.title=About
About.pnlTabbed.tab.0=Участники проекта
About.pnlTabbed.tab.1=Изменения
About.pnlTabbed.tab.2=
About.btnOK.text=OK
About.btnOK.tooltip=Подтвердите свой выбор.


-----[ FontChooser ]-----
FontChooser.title=Шрифт
FontChooser.lblTest.tooltip=Тестовая строка. Так шрифт будет выглядеть позднее в редакторе.
FontChooser.lblName.text=Имя
FontChooser.lblName.tooltip=Название выбранного шрифта.
FontChooser.lblSize.text=Размер
FontChooser.lblSize.tooltip=Рамер выбранного шрифта.
FontChooser.btnOK.text=OK
FontChooser.btnOK.tooltip=Подтвердите свой выбор.


-----[ Colors ]-----
Colors.title=Настройки цвета
Colors.lblColor0.text=Цвет 0
Colors.lblColor1.text=Цвет 1
Colors.lblColor2.text=Цвет 2
Colors.lblColor3.text=Цвет 3
Colors.lblColor4.text=Цвет 4
Colors.lblColor5.text=Цвет 5
Colors.lblColor6.text=Цвет 6
Colors.lblColor7.text=Цвет 7
Colors.lblColor8.text=Цвет 8
Colors.lblColor9.text=Цвет 9
Colors.lblColor0.tooltip=Ваш выбор для цвета nˇ 0.
Colors.lblColor1.tooltip=Ваш выбор для цвета nˇ 1.
Colors.lblColor2.tooltip=Ваш выбор для цвета nˇ 2.
Colors.lblColor3.tooltip=Ваш выбор для цвета nˇ 3.
Colors.lblColor4.tooltip=Ваш выбор для цвета nˇ 4.
Colors.lblColor5.tooltip=Ваш выбор для цвета nˇ 5.
Colors.lblColor6.tooltip=Ваш выбор для цвета nˇ 6.
Colors.lblColor7.tooltip=Ваш выбор для цвета nˇ 7.
Colors.lblColor8.tooltip=Ваш выбор для цвета nˇ 8.
Colors.lblColor9.tooltip=Ваш выбор для цвета nˇ 9.
Colors.color0.tooltip=Нажмите чтобы изменить ...
Colors.color1.tooltip=Нажмите чтобы изменить ...
Colors.color2.tooltip=Нажмите чтобы изменить ...
Colors.color3.tooltip=Нажмите чтобы изменить ...
Colors.color4.tooltip=Нажмите чтобы изменить ...
Colors.color5.tooltip=Нажмите чтобы изменить ...
Colors.color6.tooltip=Нажмите чтобы изменить ...
Colors.color7.tooltip=Нажмите чтобы изменить ...
Colors.color8.tooltip=Нажмите чтобы изменить ...
Colors.color9.tooltip=Нажмите чтобы изменить ...
Colors.btnOK.text=OK
Colors.btnOK.tooltip=Подтвердите свой выбор.


-----[ ColorChooser ]-----
ColorChooser.title=Изменение цвета
ColorChooser.btnCancel.text=Отменить
ColorChooser.btnCancel.tooltip=Отвенить выбор.
ColorChooser.btnOK.text=OK
ColorChooser.btnOK.tooltip=Подтвердите свой выбор.


-----[ ParserPreferences ]-----
ParserPreferences.title=Parser Preferences
ParserPreferences.lblPre.text=Перед
ParserPreferences.lblPre.tooltip=
ParserPreferences.lblPost.text=После
ParserPreferences.lblPost.tooltip=
ParserPreferences.lblAlt.text=Оператор IF
ParserPreferences.lblAlt.tooltip=
ParserPreferences.lblCase.text=Оператор CASE
ParserPreferences.lblCase.tooltip=
ParserPreferences.lblFor.text=Цикл FOR
ParserPreferences.lblFor.tooltip=
ParserPreferences.lblForStep.text=
ParserPreferences.lblForIn.text=
ParserPreferences.lblForIn.tooltip=
ParserPreferences.edtForInPre.tooltip=
ParserPreferences.edtForInPost.tooltip=
ParserPreferences.lblWhile.text=Цикл WHILE
ParserPreferences.lblWhile.tooltip=
ParserPreferences.lblRepeat.text=Цикл REPEAT
ParserPreferences.lblRepeat.tooltip=
ParserPreferences.lblJump.text=
ParserPreferences.lblJump.tooltip=
ParserPreferences.lblJumpLeave.text=
ParserPreferences.lblJumpReturn.text=
ParserPreferences.lblJumpExit.text=
ParserPreferences.lblInput.text=Ввод
ParserPreferences.lblInput.tooltip=
ParserPreferences.lblOutput.text=Вывод
ParserPreferences.lblOutput.tooltip=
ParserPreferences.chkIgnoreCase.text=
ParserPreferences.btnOK.text=OK
ParserPreferences.btnOK.tooltip=Подтвердите свой выбор.
ParserPreferences.lblErrorSign.text=
ParserPreferences.lblErrorSign2.text=

-----[ PrintPreview ]-----
PrintPreview.title=Предварительный просмотр
PrintPreview.btnOrientation.text=Переключение ориентации
PrintPreview.btnOrientation.tooltip=Повернуть страницу на 90°.
PrintPreview.btnCancel.text=Отменить
PrintPreview.btnCancel.tooltip=Отменить печать.
PrintPreview.btnOK.text=Печать
PrintPreview.btnOK.tooltip=Распечатать схему.

-----[ ExportOptionDialoge ]-----
ExportOptionDialoge.title=Настройки экспортa
ExportOptionDialoge.noConversionCheckBox.text=
ExportOptionDialoge.noConversionCheckBox.tooltip=
ExportOptionDialoge.commentsCheckBox.text=Экспортировать инструкции кaк комментарии.
ExportOptionDialoge.bracesCheckBox.text=
ExportOptionDialoge.lineNumbersCheckBox.text=
ExportOptionDialoge.chkExportSubroutines.text=
ExportOptionDialoge.lbPrefGenerator.text=
ExportOptionDialoge.lbCharset.text=
ExportOptionDialoge.chkCharsetAll.text=
ExportOptionDialoge.jLabel1.text=Выборите настройки, которые хочете активировать...
ExportOptionDialoge.jButton1.text=OK
ExportOptionDialoge.jButton1.tooltip=Сохранить настройки.

-----[ ImportOptionDialog ]-----
ImportOptionDialog.title=Настройки импортa
ImportOptionDialog.lbIntro.text=Выборите настройки, которые хочете активировать...
ImportOptionDialog.pnlCode.border=
ImportOptionDialog.pnlNSD.border=
ImportOptionDialog.pnlPreference.border=
ImportOptionDialog.lbCharset.text=
ImportOptionDialog.chkCharsetAll.text=
ImportOptionDialog.chkRefactorOnLoading.text=
ImportOptionDialog.chkRefactorOnLoading.tooltip=
ImportOptionDialog.btnOk.text=OK
ImportOptionDialog.btnOk.tooltip=Сохранить настройки.

-----[ SaveOptionDialog ]-----
SaveOptionDialog.title=Настройки сохранения ...
SaveOptionDialog.lbIntro.text=Выборите настройки, которые хочете активировать...
SaveOptionDialog.pnlAutoSave.border=
SaveOptionDialog.pnlBackup.border=
SaveOptionDialog.chkAutoSaveClose.text=
SaveOptionDialog.chkAutoSaveExecute.text=
SaveOptionDialog.chkBackupFile.text=
SaveOptionDialog.btnOk.text=OK
SaveOptionDialog.btnOk.tooltip=

-----> Arranger
Surface.msgFileLoadError.text=
Surface.msgSavePortable.text=
Surface.msgSaveDialogTitle.text=
Surface.msgSaveError.text=
Surface.msgLoadDialogTitle.text=
Surface.msgExtractDialogTitle.text=
Surface.msgArrLoadError.text=
Surface.msgExportDialogTitle.text=
Surface.msgExportError.text=
Surface.msgParseError.text=
Surface.msgResetCovered.text=
Surface.msgCoverageError.text=
Surface.msgUnsavedDiagrams.text=
Surface.msgUnsavedHint.text=
Surface.msgUnsavedContinue.text=
Surface.msgNoArrFile.text=
Surface.msgDefectiveArr.text=
Surface.msgDefectiveArrz.text=

-----> Executor
-----[ Control ]-----
Control.lblSpeed.text=
Control.btnCallStack.text=
Control.lblCallLevel.text=
Control.chkCollectRuntimeData.text=
Control.cbRunDataDisplay.item.0=
Control.cbRunDataDisplay.item.1=
Control.cbRunDataDisplay.item.2=
Control.cbRunDataDisplay.item.3=
Control.cbRunDataDisplay.item.4=
Control.cbRunDataDisplay.item.5=
Control.cbRunDataDisplay.item.6=
Control.cbRunDataDisplay.item.7=
Control.chkOutputToTextWindow.text=
Control.lbStopRunningProc.text=
Control.lbInputValue.text=
Control.lbInputPaused.text=
Control.lbInputCancelled.text=
Control.lbManuallySet.text=
Control.lbEmptyLine.text=
Control.lbReturnedResult.text=
Control.lbOutput.text=
Control.lbInput.text=
Control.lbAcknowledge.text=
Control.msgTitleError.text=
Control.msgTitleQuestion.text=
Control.msgTitleParallel.text=
Control.msgNoSubroutine.text=
Control.msgInvalidExpr.text=
Control.msgInvalidBool.text=
Control.msgIllFunction.text=
Control.msgManualBreak.text=
Control.msgIllegalLeave.text=
Control.msgWrongExit.text=
Control.msgExitCode.text=
Control.msgIllegalJump.text=
Control.msgTooManyLevels.text=
Control.msgJumpOutParallel.text=
Control.msgForLoopManipulation.text=
Control.tblVar.header.0=
Control.tblVar.header.1=

-----[ OutputConsole ]-----
OutputConsole.menu.text=
OutputConsole.menuFont.text=
OutputConsole.menuFontUp.text=
OutputConsole.menuFontDown.text=

