Browsing Russian translation

Don't show this notice anymore
Before translating, be sure to go through Launchpad Translators instructions and Russian guidelines.
110 of 14 results
1.
Text Editor Integration
Интеграция текстового редактора
Translated and reviewed by theadmin
Located in ../../source/editor.rst:8
2.
Ren'Py uses a text editor to allow the user to edit game scripts from the launcher, and to report errors to the user. By default, Ren'Py uses jEdit as the text editor when launched from the launcher and the system default editor otherwise. This can be customized by the user as necessary.
Ren'Py использует текстовый редактор чтобы позволить пользователю редактировать игровые сценарии из Launcher и чтобы докладывать об ошибках. По умолчанию, Ren'Py использует Editra как редактор при запуске из Launcher. Пользователь может изменить эту настройку.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:10
3.
The editor is customized by creating an Editor class in a .edit.py file. This class contains methods that are called to manage text editing.
Редактор настраивается созданием класса Editor в файле .edit.py. Этот класс содержит методы, вызываемые для редактирования текста.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:15
4.
When run directly, Ren'Py first looks at the RENPY_EDIT_PY environment variable to find an .edit.py file to use. If it can find one, it uses the Editor class defined in that file. If not, it uses a built-in editor class that launches the editor in a system-specific manner.
Когда запущено напрямую, Ren'Py смотрит на переменную среды RENPY_EDIT_PY чтобы найти файл .edit.py. Если он найден, используется класс Editor из этого файла. В противном случае, используется встроенный класс, который запускает редактор определенный системой.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:18
5.
When the Ren'Py Launcher is run, it scans subdirectories of the projects directory and Ren'Py directory to find files of the form `name`.edit.py. (For example, it would find launcher/jEdit.edit.py and myeditor/MyEditor.edit.py.) The latest editor with a given `name` is presented to the creator as part of the launcher options. The launcher also sets RENPY_EDIT_PY to the selected file, so that games launched from the launcher will use the selected editor.
Когда запускается Ren'Py Launcher, он сканирует все подпапки папки проектов и папки установки Ren'Py и ищет файлы с именами вида `name`.edit.py. Например, он бы нашел launcher/jEdit.edit.py и myeditor/MyEditor.edit.py. Последний из редакторов с одинаковыми `name` будет представлен пользователю как часть настроек Launcher. Launcher также устанавливает RENPY_EDIT_PY, чтобы игры запускаемые из него использовали этот редактор.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:23
6.
Writing an .edit.py File
Написание файла .edit.py.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:32
7.
An edit.py file is a Python (not Ren'Py) file that must define a single class, named Editor. Ren'Py will call methods on this class to cause editing to occur.
edit.py - файл кода Python (не Ren'Py), который должен определять один класс, называемый Editor. Ren'Py будет вызывать методы этого класса для редактирования.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:34
8.
Use of the editor is done as part of an editor transaction, which groups related operations together. For example, if an editor transaction asks for a new window, all of the files in that transaction should be opened in the same new window. An editor transaction starts with a call to the begin method, may contain one or more calls to operation methods, and ends with a call to the end method.
Использование редактора является частью транзакции правки, сочетающей соответствующие операции. Например, если транзакция правки требует новое окно, все файлы этой транзакции должны открываться в одном (новом) окне. Транзакция начинается с вызова метода begin, содержит один или более вызовов метода операции, и завершается вызовом метода end.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:38
9.
The edit.py file should import renpy.editor, and the Editor class should inherit from renpy.editor.Editor. As additional keyword arguments may be added to methods, each method you define should ignore unknown keyword arguments. Since you're expected to define your own Editor subclass, we present the methods with the `self` parameter.
Файл edit.py должен импортировать renpy.editor, и класс Editor должен наследоваться от renpy.editor.Editor. Дополнительные ключевые параметры могут быть добавлены к методам, каждый метод, определяемый вами, должен игнорировать неизвестные ключевые аргументы. Так как ожидается, что вы создадите сообственный подкласс Editor, мы представляем методы с параметром `self`.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:45
10.
Starts an editor transaction.
Начинает транзакцию правки.
Translated and reviewed by theadmin
Located in ../../source/editor.rst:55
110 of 14 results

This translation is managed by Russian Launchpad Translators, assigned by Launchpad Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: theadmin.